From 967fb6a225f5be1eb6d5bbc5508311cc2c89400d Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 14 Mar 2020 11:09:10 -0400 Subject: [PATCH 01/81] 3.10 offsets - first pass --- Core/PoEMemory/Components/Player.cs | 28 +++++----- Core/PoEMemory/FileInMemory.cs | 6 +-- Core/PoEMemory/MemoryObjects/Entity.cs | 2 +- Core/PoEMemory/Offsets.cs | 46 +++++++--------- GameOffsets/ActorComponentOffsets.cs | 8 +-- GameOffsets/BuffOffsets.cs | 6 +-- GameOffsets/CameraOffsets.cs | 12 ++--- GameOffsets/FilesOffsets.cs | 12 ++--- GameOffsets/IngameDataOffsets.cs | 6 +-- GameOffsets/IngameStateOffsets.cs | 36 ++++++------- GameOffsets/IngameUElementsOffsets.cs | 6 +-- GameOffsets/LifeComponentOffsets.cs | 28 +++++----- GameOffsets/MapElement.cs | 14 ++--- GameOffsets/ModRecordOffsets.cs | 15 ++++-- GameOffsets/ModsComponentOffsets.cs | 25 ++++----- GameOffsets/NormalInventoryItemOffsets.cs | 14 ++--- GameOffsets/ServerDataOffsets.cs | 65 ++++++++++++----------- 17 files changed, 165 insertions(+), 164 deletions(-) diff --git a/Core/PoEMemory/Components/Player.cs b/Core/PoEMemory/Components/Player.cs index 5be59e52..24f59c81 100644 --- a/Core/PoEMemory/Components/Player.cs +++ b/Core/PoEMemory/Components/Player.cs @@ -11,22 +11,22 @@ namespace ExileCore.PoEMemory.Components { public class Player : Component { - public string PlayerName => NativeStringReader.ReadString(Address + 0x58, M); - public uint XP => Address != 0 ? M.Read(Address + 0x7C) : 0; - public int Strength => Address != 0 ? M.Read(Address + 0x80) : 0; - public int Dexterity => Address != 0 ? M.Read(Address + 0x84) : 0; - public int Intelligence => Address != 0 ? M.Read(Address + 0x88) : 0; - public int Level => Address != 0 ? M.Read(Address + 0xA8) : 1; - public int AllocatedLootId => Address != 0 ? M.Read(Address + 0x7C) : 1; - public int HideoutLevel => M.Read(Address + 0x28E); - public byte PropheciesCount => M.Read(Address + 0x112); + public string PlayerName => NativeStringReader.ReadString(Address + 0x158, M); + public uint XP => Address != 0 ? M.Read(Address + 0x17C) : 0; + public int Strength => Address != 0 ? M.Read(Address + 0x180) : 0; + public int Dexterity => Address != 0 ? M.Read(Address + 0x184) : 0; + public int Intelligence => Address != 0 ? M.Read(Address + 0x188) : 0; + public int Level => Address != 0 ? M.Read(Address + 0x1A8) : 1; + public int AllocatedLootId => Address != 0 ? M.Read(Address + 0x16C) : 1; + public int HideoutLevel => M.Read(Address + 0x38E); + public byte PropheciesCount => M.Read(Address + 0x212); public IList Prophecies { get { var result = new List(); - var readAddr = Address + 0x114; + var readAddr = Address + 0x214; for (var i = 0; i < 7; i++) { @@ -47,9 +47,9 @@ public IList Prophecies } } - public HideoutWrapper Hideout => ReadObject(Address + 0x268); - public PantheonGod PantheonMinor => (PantheonGod) M.Read(Address + 0x93); - public PantheonGod PantheonMajor => (PantheonGod) M.Read(Address + 0x94); + public HideoutWrapper Hideout => ReadObject(Address + 0x368); + public PantheonGod PantheonMinor => (PantheonGod) M.Read(Address + 0x193); + public PantheonGod PantheonMajor => (PantheonGod) M.Read(Address + 0x194); private IList AllocatedPassivesM() { @@ -113,7 +113,7 @@ private BitArray TrialPassStates { get { - var stateBuff = M.ReadBytes(Address + 0x1B4, 36); // (286+) bytes of info. + var stateBuff = M.ReadBytes(Address + 0x2B4, 36); // (286+) bytes of info. return new BitArray(stateBuff); } } diff --git a/Core/PoEMemory/FileInMemory.cs b/Core/PoEMemory/FileInMemory.cs index 339af5a0..0c2000c7 100644 --- a/Core/PoEMemory/FileInMemory.cs +++ b/Core/PoEMemory/FileInMemory.cs @@ -17,7 +17,7 @@ protected FileInMemory(IMemory m, Func address) public IMemory M { get; } public long Address { get; } - private int NumberOfRecords => M.Read(fAddress() + 0x38, 0x20); + private int NumberOfRecords => M.Read(fAddress() + 0x30, 0x18); protected IEnumerable RecordAddresses() { @@ -35,8 +35,8 @@ protected IEnumerable RecordAddresses() yield break; } - var firstRec = M.Read(fAddress() + 0x38, 0x0); - var lastRec = M.Read(fAddress() + 0x38, 0x8); + var firstRec = M.Read(fAddress() + 0x30, 0x0); + var lastRec = M.Read(fAddress() + 0x30, 0x8); var recLen = (lastRec - firstRec) / cnt; diff --git a/Core/PoEMemory/MemoryObjects/Entity.cs b/Core/PoEMemory/MemoryObjects/Entity.cs index ce03c3fe..4aa14d67 100644 --- a/Core/PoEMemory/MemoryObjects/Entity.cs +++ b/Core/PoEMemory/MemoryObjects/Entity.cs @@ -370,7 +370,7 @@ private long ComponentLookup if (_componentLookup != null) return _componentLookup.Value; - return (long) (_componentLookup = M.Read(Address + 0x8, 0x38, 0x30)); + return (long) (_componentLookup = M.Read(Address + 0x8, 0x30, 0x40)); } } diff --git a/Core/PoEMemory/Offsets.cs b/Core/PoEMemory/Offsets.cs index e8a97ccb..d6283ccc 100644 --- a/Core/PoEMemory/Offsets.cs +++ b/Core/PoEMemory/Offsets.cs @@ -42,9 +42,13 @@ public class Offsets private static readonly Pattern fileRootPattern = new Pattern(new byte[] { - 0x65, 0x48, 0x8b, 0x04, 0x25, 0x58, 0x00, 0x00, 0x00, 0x48, 0x8b, 0x08, 0x48, 0x8d, 0x35, 0x09, 0x9b, 0x25, 0x01 - }, "xxxxx????xxxxxx????", "File Root", - 13930000); + 0x65, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x48, 0x8b, 0x08, + 0x48, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8B, 0x04, 0x0E, + 0x39, 0x05 + }, "xxxxx????xxxxx?????xxxxx", "File Root", + 14630000); /* Area Change 00007FF63317CE40 | 48 83 EC 58 | sub rsp,58 | @@ -67,26 +71,16 @@ public class Offsets private static readonly Pattern areaChangePattern = new Pattern( new byte[] - { - 0x0f, 0xc1, 0x41, 0x44, - 0x8b, 0x05, 0x16, 0x67, 0x56, 0x01, - 0x89, 0x41, 0x40, - 0x44, 0x8b, 0x7c, 0x24, 0x54, - 0x49, 0x8b, 0x7d, 0x08, - 0x48, 0x8b, 0xdf, - 0x48, 0x89, 0x5d, 0x10, - 0x48, 0x85, 0xff, - 0x74, 0x1c, - 0xb8, 0x01, 0x00, 0x00, 0x00, - 0xf0, - 0x0f, 0xc1, 0x47, 0x44, - 0x8b, 0x05, 0xee, 0x66, 0x56, 0x01, - 0x89, 0x47, 0x40, - 0x48, 0x8b, 0x5d, 0x10, - 0x44, 0x8b, 0x7c, 0x24, 0x54, - 0x48, 0x85, 0xff, - 0x74, 0x15 - }, "xx??x?????x???x????x???x??x???x?x??????xxx??x?????x???x???x????x?x?", "Area change", 9430000); + { + 0x74, 0x11, + 0x41, 0x8b, 0xc7, + 0xf0, + 0x0f, 0xc1, 0x01, + 0x8b, 0x05, 0x01, 0x7d, 0x61, 0x01, + 0x41, 0x89, 0x40, 0x38, + 0x49, 0x8b, 0x55, 0x08, + 0x48, 0x85, 0xd2 + }, "x??x?xxx?x??????x???x???x?", "Area change", 9430000); /* PathOfExile_x64.exe+853E28 - 48 89 05 E9ABC400 - mov [PathOfExile_x64.exe+149EA18],rax { [00000000] } @@ -107,8 +101,8 @@ public class Offsets new byte[] { 0x48, 0x83, 0xec, 0x50, 0x48, 0xc7, 0x44, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x89, 0x9c, 0x24, 0x00, 0x00, 0x00, 0x00, 0x48, - 0x8b, 0xf9, 0x33, 0xed, 0x48, 0x39, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0f, 0x85, 0x00, 0x00, 0x00, 0x00 - }, "xxxxxxxx?????xxxx????xxxxxxx????xxx????", "Game State", 1240000); + 0x8b, 0xf9, 0x33, 0xed, 0x48, 0x39 + }, "xxxxxxxx?????xxxx????xxxxxxx", "Game State", 1240000); /* PathOfExile_x64.exe+118FD9 - 4C 8B 35 48255B01 - mov r14,[PathOfExile_x64.exe+16CB528] { [C6151734A0] }< DoPatternScans(IMemory m) // System.Console.WriteLine("FileRoot Pointer: " + (FileRoot + m.AddressOfProcess).ToString("x8")); - AreaChangeCount = m.Read(baseAddress + array[index] + 6) + array[index] + 10; + AreaChangeCount = m.Read(baseAddress + array[index] + 11) + array[index] + 15; index++; // System.Console.WriteLine("AreaChangeCount: " + m.ReadInt(AreaChangeCount + m.AddressOfProcess).ToString()); diff --git a/GameOffsets/ActorComponentOffsets.cs b/GameOffsets/ActorComponentOffsets.cs index e74fe8d3..56c49131 100644 --- a/GameOffsets/ActorComponentOffsets.cs +++ b/GameOffsets/ActorComponentOffsets.cs @@ -6,8 +6,8 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct ActorComponentOffsets { - [FieldOffset(0xA8)] public long ActionPtr; - [FieldOffset(0x108)] public short ActionId; + [FieldOffset(0x1A8)] public long ActionPtr; + [FieldOffset(0x208)] public short ActionId; // [FieldOffset(0xFA)] public short TotalActionCounterA; // [FieldOffset(0xFC)] public int TotalActionCounterB; @@ -15,12 +15,12 @@ public struct ActorComponentOffsets // [FieldOffset(0x100)] public float TotalTimeInAction; // some unknown timer whos value keep resetting to zero. // [FieldOffset(0x104)] public float UnknownTimer; - [FieldOffset(0x120)] public int AnimationId; + [FieldOffset(0x230)] public int AnimationId; // Use the one inside the ActionPtr struct (i.e. ActionWrapperOffsets). // That one works for all kind of skills. // [FieldOffset(0x128)] public Vector2 SkillDestination; - [FieldOffset(0x408)] public NativePtrArray ActorSkillsArray; + [FieldOffset(0x510)] public NativePtrArray ActorSkillsArray; // Broken Offset, remove comment on fixup. // [FieldOffset(0x418)] public NativePtrArray ActorVaalSkills; diff --git a/GameOffsets/BuffOffsets.cs b/GameOffsets/BuffOffsets.cs index b9430ad4..e434799a 100644 --- a/GameOffsets/BuffOffsets.cs +++ b/GameOffsets/BuffOffsets.cs @@ -8,8 +8,8 @@ public struct BuffOffsets [FieldOffset(0x8)] public long Name; [FieldOffset(0x10)] public byte IsInvisible; [FieldOffset(0x11)] public byte IsRemovable; - [FieldOffset(0x2C)] public byte Charges; [FieldOffset(0x10)] public float MaxTime; - [FieldOffset(0x14)] public float Timer; - } + [FieldOffset(0x14)] public float Timer; + [FieldOffset(0x2C)] public byte Charges; + } } diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 46a9f744..7f927a67 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -8,11 +8,11 @@ public struct CameraOffsets { [FieldOffset(0x4)] public int Width; [FieldOffset(0x8)] public int Height; - [FieldOffset(0x1C8)] public float ZFar; - [FieldOffset(0xD4)] public Vector3 Position; - - //First value is changing when we change the screen size (ratio) - //4 bytes before the matrix doesn't change - [FieldOffset(0x7C)] public Matrix MatrixBytes; + [FieldOffset(0x11C)] public Vector3 Position; + [FieldOffset(0x210)] public float ZFar; + + //First value is changing when we change the screen size (ratio) + //4 bytes before the matrix doesn't change + [FieldOffset(0x7C)] public Matrix MatrixBytes; } } diff --git a/GameOffsets/FilesOffsets.cs b/GameOffsets/FilesOffsets.cs index a9a6a358..b8672ae0 100644 --- a/GameOffsets/FilesOffsets.cs +++ b/GameOffsets/FilesOffsets.cs @@ -20,11 +20,11 @@ public struct FilesOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct FileInformation { - [FieldOffset(0x10)] public NativeStringU String; - [FieldOffset(0x20)] public long Size; - [FieldOffset(0x28)] public long Capacity; - [FieldOffset(0x38)] public int Test1; - [FieldOffset(0x40)] public int AreaCount; - [FieldOffset(0x48)] public int Test2; + [FieldOffset(0x08)] public NativeStringU String; + [FieldOffset(0x18)] public long Size; + [FieldOffset(0x20)] public long Capacity; + [FieldOffset(0x30)] public int Test1; + [FieldOffset(0x38)] public int AreaCount; + [FieldOffset(0x40)] public int Test2; } } diff --git a/GameOffsets/IngameDataOffsets.cs b/GameOffsets/IngameDataOffsets.cs index 675270e0..aa0bc420 100644 --- a/GameOffsets/IngameDataOffsets.cs +++ b/GameOffsets/IngameDataOffsets.cs @@ -8,9 +8,9 @@ public struct IngameDataOffsets { [FieldOffset(0x60)] public long CurrentArea; [FieldOffset(0x78)] public byte CurrentAreaLevel; - [FieldOffset(0xE0)] public NativePtrArray MapStats; - [FieldOffset(0xDC)] public uint CurrentAreaHash; - [FieldOffset(0x408)] public long LocalPlayer; + [FieldOffset(0xDC)] public uint CurrentAreaHash; + [FieldOffset(0xF0)] public NativePtrArray MapStats; + [FieldOffset(0x408)] public long LocalPlayer; [FieldOffset(0x11C)] public long LabDataPtr; [FieldOffset(0x490)] public long EntityList; [FieldOffset(0x498)] public long EntitiesCount; diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index 8af544b9..31f98a1a 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -4,28 +4,28 @@ namespace GameOffsets { [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct IngameStateOffsets - { - [FieldOffset(0x370)] public long Data; + { + [FieldOffset(0x80)] public long IngameUi; + [FieldOffset(0xA0)] public long EntityLabelMap; + [FieldOffset(0x370)] public long Data; [FieldOffset(0x378)] public long ServerData; - [FieldOffset(0x78)] public long IngameUi; - [FieldOffset(0x4A0)] public long UIRoot; - [FieldOffset(0x4E8)] public long UIHover; + [FieldOffset(0x4A8)] public long UIRoot; + [FieldOffset(0x4F0)] public long UIHover; [FieldOffset(0x51C)] public float UIHoverX; [FieldOffset(0x520)] public float UIHoverY; - [FieldOffset(0x4E8)] public long UIHoverTooltip; - [FieldOffset(0x4E0)] public float CurentUElementPosX; - [FieldOffset(0x4E4)] public float CurentUElementPosY; - [FieldOffset(0x98)] public long EntityLabelMap; - [FieldOffset(0x568)] public int DiagnosticInfoType; - [FieldOffset(0x798)] public long LatencyRectangle; - [FieldOffset(0xC28)] public long FrameTimeRectangle; - [FieldOffset(0xE70)] public long FPSRectangle; + [FieldOffset(0x4E0)] public long UIHoverTooltip; + [FieldOffset(0x4E8)] public float CurentUElementPosX; + [FieldOffset(0x4EC)] public float CurentUElementPosY; + [FieldOffset(0x570)] public int DiagnosticInfoType; + [FieldOffset(0x7A0)] public long LatencyRectangle; + [FieldOffset(0xC30)] public long FrameTimeRectangle; + [FieldOffset(0xE78)] public long FPSRectangle; [FieldOffset(0x554)] public float TimeInGame; [FieldOffset(0x558)] public float TimeInGameF; - [FieldOffset(0xF4C)] public int Camera; - [FieldOffset(0x524)] public int MouseXGlobal; - [FieldOffset(0x524)] public int MouseYGlobal; - [FieldOffset(0x524)] public float MouseXInGame; - [FieldOffset(0x528)] public float MouseYInGame; + [FieldOffset(0xFE4)] public int Camera; + [FieldOffset(0x518)] public int MouseXGlobal; + [FieldOffset(0x51C)] public int MouseYGlobal; + [FieldOffset(0x52C)] public float MouseXInGame; + [FieldOffset(0x530)] public float MouseYInGame; } } diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index 98f59699..703809a1 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -8,8 +8,8 @@ public struct IngameUElementsOffsets [FieldOffset(0x210)] public long GetQuests; [FieldOffset(0x250)] public long GameUI; [FieldOffset(0x368)] public long Mouse; - [FieldOffset(0x378)] public long HiddenSkillBar; [FieldOffset(0x370)] public long SkillBar; + [FieldOffset(0x378)] public long HiddenSkillBar; [FieldOffset(0x478)] public long QuestTracker; [FieldOffset(0x4E0 /*4F0*/)] public long OpenLeftPanel; [FieldOffset(0x4E8 /*4F8*/)] public long OpenRightPanel; @@ -17,6 +17,7 @@ public struct IngameUElementsOffsets [FieldOffset(0x520)] public long StashElement; [FieldOffset(0x548)] public long TreePanel; [FieldOffset(0x550)] public long AtlasPanel; + [FieldOffset(0x580)] public long WorldMap; [FieldOffset(0x5A0)] public long Map; [FieldOffset(0x5A8)] public long itemsOnGroundLabelRoot; [FieldOffset(0x640)] public long PurchaseWindow; @@ -31,10 +32,9 @@ public struct IngameUElementsOffsets [FieldOffset(0x768)] public long SynthesisWindow; [FieldOffset(0x778)] public long MetamorphWindow; [FieldOffset(0x7C8)] public long AreaInstanceUi; - [FieldOffset(0x8E8)] public long GemLvlUpPanel; [FieldOffset(0x8A0)] public long InvitesPanel; + [FieldOffset(0x8F8)] public long GemLvlUpPanel; [FieldOffset(0x990)] public long ItemOnGroundTooltip; - [FieldOffset(0x0/*0xCC0*/)] public long WorldMap;//TOFO: Fixme. Cause reading errors [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors } } diff --git a/GameOffsets/LifeComponentOffsets.cs b/GameOffsets/LifeComponentOffsets.cs index 99c3cce6..847ee53d 100644 --- a/GameOffsets/LifeComponentOffsets.cs +++ b/GameOffsets/LifeComponentOffsets.cs @@ -6,19 +6,19 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct LifeComponentOffsets { - [FieldOffset(0x8)] public long Owner; - [FieldOffset(0x154)] public int MaxHP; - [FieldOffset(0x15C)] public int CurHP; - [FieldOffset(0x90)] public float Regen; - [FieldOffset(0x158)] public int ReservedFlatHP; - [FieldOffset(0x160)] public int ReservedPercentHP; - [FieldOffset(0xBC)] public int MaxMana; - [FieldOffset(0xC4)] public int CurMana; - [FieldOffset(0xB8)] public float ManaRegen; - [FieldOffset(0xC0)] public int ReservedFlatMana; - [FieldOffset(0xC8)] public int ReservedPercentMana; - [FieldOffset(0xF4)] public int MaxES; - [FieldOffset(0xFC)] public int CurES; - [FieldOffset(0x80)] public NativePtrArray Buffs; + [FieldOffset(0x8)] public long Owner; + [FieldOffset(0x180)] public NativePtrArray Buffs; + [FieldOffset(0x190)] public float Regen; + [FieldOffset(0x1BC)] public int MaxMana; + [FieldOffset(0x1B8)] public float ManaRegen; + [FieldOffset(0x1C0)] public int ReservedFlatMana; + [FieldOffset(0x1C4)] public int CurMana; + [FieldOffset(0x1C8)] public int ReservedPercentMana; + [FieldOffset(0x1F4)] public int MaxES; + [FieldOffset(0x1FC)] public int CurES; + [FieldOffset(0x254)] public int MaxHP; + [FieldOffset(0x258)] public int ReservedFlatHP; + [FieldOffset(0x25C)] public int CurHP; + [FieldOffset(0x260)] public int ReservedPercentHP; } } diff --git a/GameOffsets/MapElement.cs b/GameOffsets/MapElement.cs index 553512af..12d5ff00 100644 --- a/GameOffsets/MapElement.cs +++ b/GameOffsets/MapElement.cs @@ -5,29 +5,29 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct MapElement { - [FieldOffset(0x324 + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x230 + ElementOffsets.OffsetBuffers)] public long LargeMap; - [FieldOffset(0x32C + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x238 + ElementOffsets.OffsetBuffers)] public long SmallMinMap; - [FieldOffset(0x344 + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x250 + ElementOffsets.OffsetBuffers)] public long OrangeWords; - [FieldOffset(0x37C + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x2B8 + ElementOffsets.OffsetBuffers)] public long BlueWords; } [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct LargeSmallMapElement { - [FieldOffset(0x2B4 + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x1C0 + ElementOffsets.OffsetBuffers)] public float LargeMapShiftX; - [FieldOffset(0x2B8 + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x1C4 + ElementOffsets.OffsetBuffers)] public float LargeMapShiftY; - [FieldOffset(0x2F8 + ElementOffsets.OffsetBuffers)] + [FieldOffset(0x204 + ElementOffsets.OffsetBuffers)] public float LargeMapZoom; } } diff --git a/GameOffsets/ModRecordOffsets.cs b/GameOffsets/ModRecordOffsets.cs index e588edfb..b0aaf874 100644 --- a/GameOffsets/ModRecordOffsets.cs +++ b/GameOffsets/ModRecordOffsets.cs @@ -7,9 +7,9 @@ namespace GameOffsets public struct ModsRecordOffsets { [FieldOffset(0x0)] public NativeStringU Key; - [FieldOffset(0x8)] public long Unknown8; - [FieldOffset(0x1C)] public int MinLevel; - [FieldOffset(0x14)] public long TypeName; + [FieldOffset(0x8)] public long Unknown8; + [FieldOffset(0x14)] public long TypeName; + [FieldOffset(0x1C)] public int MinLevel; [FieldOffset(0x28)] public long StatNames1; [FieldOffset(0x38)] public long StatNames2; [FieldOffset(0x48)] public long StatNames3; @@ -29,8 +29,13 @@ public struct ModsRecordOffsets [FieldOffset(0x98)] public long Tags; [FieldOffset(0xA0)] public long ta; [FieldOffset(0xA8)] public int TagChances; - [FieldOffset(0xB0)] public long tc; - [FieldOffset(0x1AC)] public byte IsEssence; + [FieldOffset(0xB0)] public long tc; + [FieldOffset(0xB8)] public long BuffDefinitionsPtr; + [FieldOffset(0xC0)] public long BuffDefinitions; + [FieldOffset(0xC8)] public int BuffValue; + [FieldOffset(0xCC)] public long tgcCount; + [FieldOffset(0xC4)] public long tgcPtr; + [FieldOffset(0x1AC)] public byte IsEssence; [FieldOffset(0x1C5)] public long Tier; } } diff --git a/GameOffsets/ModsComponentOffsets.cs b/GameOffsets/ModsComponentOffsets.cs index 4d795e8f..c0d15edf 100644 --- a/GameOffsets/ModsComponentOffsets.cs +++ b/GameOffsets/ModsComponentOffsets.cs @@ -8,17 +8,18 @@ public struct ModsComponentOffsets { public static readonly int HumanStats = 0x20; [FieldOffset(0x30)] public long UniqueName; - [FieldOffset(0x88)] public bool Identified; - [FieldOffset(0x8C)] public int ItemRarity; - [FieldOffset(0x90)] public NativePtrArray implicitMods; - [FieldOffset(0xA8)] public NativePtrArray explicitMods; - [FieldOffset(0x170)] public NativePtrArray GetImplicitStats; - [FieldOffset(0x1A0)] public NativePtrArray GetStats; - [FieldOffset(0x1B8)] public NativePtrArray GetCraftedStats; - [FieldOffset(0x1D0)] public NativePtrArray GetFracturedStats; - [FieldOffset(0x434)] public int ItemLevel; - [FieldOffset(0x438)] public int RequiredLevel; - [FieldOffset(0x370)] public byte IsUsable; - [FieldOffset(0x371)] public byte IsMirrored; + [FieldOffset(0xA8)] public bool Identified; + [FieldOffset(0xAC)] public int ItemRarity; + [FieldOffset(0xB0)] public NativePtrArray implicitMods; + [FieldOffset(0xC8)] public NativePtrArray explicitMods; + [FieldOffset(0xE0)] public NativePtrArray enchantMods; + [FieldOffset(0x190)] public NativePtrArray GetImplicitStats; + [FieldOffset(0x1C0)] public NativePtrArray GetStats; + [FieldOffset(0x1D8)] public NativePtrArray GetCraftedStats; + [FieldOffset(0x1F0)] public NativePtrArray GetFracturedStats; + [FieldOffset(0x46C)] public int ItemLevel; + [FieldOffset(0x470)] public int RequiredLevel; + [FieldOffset(0x474)] public byte IsUsable; + [FieldOffset(0x475)] public byte IsMirrored; } } diff --git a/GameOffsets/NormalInventoryItemOffsets.cs b/GameOffsets/NormalInventoryItemOffsets.cs index 11e07f2b..99a11b5f 100644 --- a/GameOffsets/NormalInventoryItemOffsets.cs +++ b/GameOffsets/NormalInventoryItemOffsets.cs @@ -5,11 +5,11 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct NormalInventoryItemOffsets { - [FieldOffset(0x390)] public int InventPosX; - [FieldOffset(0x394)] public int InventPosY; - [FieldOffset(0x398)] public int Width; - [FieldOffset(0x39c)] public int Height; - [FieldOffset(0x388)] public long Item; - [FieldOffset(0x14)] public int ToolTip; - } + [FieldOffset(0x14)] public int ToolTip; + [FieldOffset(0x388)] public long Item; + [FieldOffset(0x390)] public int InventPosX; + [FieldOffset(0x394)] public int InventPosY; + [FieldOffset(0x398)] public int Width; + [FieldOffset(0x39c)] public int Height; + } } diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 219bd066..9b644e71 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -26,39 +26,40 @@ public struct ServerDataOffsets { public const int Skip = 0x5000; public const int ATLAS_REGION_UPGRADES = 0x7782; - [FieldOffset(0x6E98 - Skip)] public NativeStringU League; - [FieldOffset(0x6E20 - Skip)] public NativePtrArray PassiveSkillIds; - [FieldOffset(0x6BC0 - Skip)] public byte PlayerClass; - [FieldOffset(0x6BC4 - Skip)] public int CharacterLevel; - [FieldOffset(0x6BC8 - Skip)] public int PassiveRefundPointsLeft; - [FieldOffset(0x6BCC - Skip)] public int QuestPassiveSkillPoints; - [FieldOffset(0x63D0 - Skip)] public int FreePassiveSkillPointsLeft;//TODO: 3.8.1 fix me - [FieldOffset(0x6BD4 - Skip)] public int TotalAscendencyPoints; - [FieldOffset(0x6BD8 - Skip)] public int SpentAscendencyPoints; - [FieldOffset(0x6DD8 - Skip)] public byte PartyStatusType; - [FieldOffset(0x6F00 - Skip)] public byte NetworkState; - [FieldOffset(0x6DF8 - Skip)] public byte PartyAllocationType; - [FieldOffset(0x6C98 - Skip)] public float TimeInGame; - [FieldOffset(0x6CA0 - Skip)] public int Latency; - [FieldOffset(0x7168 - Skip)] public SkillBarIdsStruct SkillBarIds; - [FieldOffset(0x6CB0 - Skip)] public NativePtrArray PlayerStashTabs; - [FieldOffset(0x73E0 - Skip)] public NativePtrArray GuildStashTabs; - [FieldOffset(0x71C0 - Skip)] public NativePtrArray NearestPlayers; - [FieldOffset(0x72C0 - Skip)] public NativePtrArray PlayerInventories; - [FieldOffset(0x7390 - Skip)] public NativePtrArray NPCInventories; - [FieldOffset(0x7460 - Skip)] public NativePtrArray GuildInventories; - [FieldOffset(0x7270 - Skip)] public ushort TradeChatChannel; - [FieldOffset(0x7278 - Skip)] public ushort GlobalChatChannel; - [FieldOffset(0x76A0 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset - [FieldOffset(0x7660 - Skip)] public long BonusCompletedAreas; + [FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; + [FieldOffset(0x7108 - Skip)] public byte PlayerClass; + [FieldOffset(0x710C - Skip)] public int CharacterLevel; + [FieldOffset(0x7110 - Skip)] public int PassiveRefundPointsLeft; + [FieldOffset(0x7114 - Skip)] public int QuestPassiveSkillPoints; + [FieldOffset(0x7118 - Skip)] public int FreePassiveSkillPointsLeft;//TODO: 3.8.1 fix me + [FieldOffset(0x711C - Skip)] public int TotalAscendencyPoints; + [FieldOffset(0x7120 - Skip)] public int SpentAscendencyPoints; + [FieldOffset(0x7188 - Skip)] public byte NetworkState; + [FieldOffset(0x71A0 - Skip)] public NativeStringU League; + [FieldOffset(0x7220 - Skip)] public float TimeInGame; + [FieldOffset(0x7228 - Skip)] public int Latency; + [FieldOffset(0x7238 - Skip)] public NativePtrArray PlayerStashTabs; + [FieldOffset(0x7250 - Skip)] public NativePtrArray GuildStashTabs; + [FieldOffset(0x7350 - Skip)] public byte PartyStatusType; + [FieldOffset(0x7360 - Skip)] public byte PartyAllocationType; + [FieldOffset(0x7360 - Skip)] public long GuildName; + [FieldOffset(0x73F0 - Skip)] public SkillBarIdsStruct SkillBarIds; + [FieldOffset(0x7440 - Skip)] public NativePtrArray NearestPlayers; + [FieldOffset(0x7520 - Skip)] public NativePtrArray PlayerInventories; + [FieldOffset(0x7618 - Skip)] public NativePtrArray NPCInventories; + [FieldOffset(0x76D0 - Skip)] public NativePtrArray GuildInventories; + [FieldOffset(0x7828 - Skip)] public ushort TradeChatChannel; + [FieldOffset(0x7830 - Skip)] public ushort GlobalChatChannel; + [FieldOffset(0x787C - Skip)] public ushort LastActionId;//Do we need this? + [FieldOffset(0x78F0 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset + [FieldOffset(0x78F8 - Skip)] public long BonusCompletedAreas; [FieldOffset(0x7440 - Skip)] public long ElderInfluencedAreas; - [FieldOffset(0)] public long MasterAreas; [FieldOffset(0x7660 - Skip)] public long ElderGuardiansAreas; //Maybe wrong not tested - [FieldOffset(0x7660 - Skip)] public long ShapedAreas; //Maybe wrong not tested - [FieldOffset(0x6E77 - Skip)] public ushort LastActionId;//Do we need this? - [FieldOffset(0x7E5C - Skip)] public byte MonsterLevel; - [FieldOffset(0x7E5D - Skip)] public byte MonstersRemaining; - [FieldOffset(0x7F10 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested - [FieldOffset(0x7F00 - Skip)] public int CurrentAzuriteAmount; + [FieldOffset(0x7930 - Skip)] public long ShapedAreas; //Maybe wrong not tested + [FieldOffset(0)] public long MasterAreas; + [FieldOffset(0x842C - Skip)] public byte MonsterLevel; + [FieldOffset(0x842D - Skip)] public byte MonstersRemaining; + [FieldOffset(0x84E0 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested + [FieldOffset(0x84EC - Skip)] public int CurrentAzuriteAmount; } } From 9c4d0dddf96c2f7637aa9b9a20f4a61d5216c4e9 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 14 Mar 2020 12:37:07 -0400 Subject: [PATCH 02/81] More updated offsets --- Core/PoEMemory/FilesInMemory/StatsDat.cs | 22 ++++++++--------- GameOffsets/ObjectMagicPropertiesOffsets.cs | 4 ++-- GameOffsets/PositionedComponentOffsets.cs | 26 ++++++++++----------- GameOffsets/RenderComponentOffsets.cs | 21 +++++------------ GameOffsets/ServerDataOffsets.cs | 4 ++-- GameOffsets/ServerStashTabOffsets.cs | 10 ++++---- GameOffsets/SkillGemOffsets.cs | 10 ++++---- GameOffsets/StatsComponentOffsets.cs | 2 +- GameOffsets/Structs.cs | 10 ++++---- 9 files changed, 50 insertions(+), 59 deletions(-) diff --git a/Core/PoEMemory/FilesInMemory/StatsDat.cs b/Core/PoEMemory/FilesInMemory/StatsDat.cs index 5fe8c0d0..effb277f 100644 --- a/Core/PoEMemory/FilesInMemory/StatsDat.cs +++ b/Core/PoEMemory/FilesInMemory/StatsDat.cs @@ -40,13 +40,13 @@ public StatRecord(IMemory m, long addr, int iCounter) Address = addr; Key = RemoteMemoryObject.Cache.StringCache.Read($"{nameof(StatsDat)}{addr + 0}", - () => m.ReadStringU(m.Read(addr + 0), 255)); - - Unknown4 = m.Read(addr + 0x8) != 0; - Unknown5 = m.Read(addr + 0x9) != 0; - Unknown6 = m.Read(addr + 0xA) != 0; - Type = Key.Contains("%") ? StatType.Percents : (StatType) m.Read(addr + 0xB); - UnknownB = m.Read(addr + 0xF) != 0; + () => m.ReadStringU(m.Read(addr + 0), 255)); + + Flag0 = m.Read(addr + 0x8) != 0; + IsLocal = m.Read(addr + 0x9) != 0; + IsWeaponLocal = m.Read(addr + 0xA) != 0; + Type = Key.Contains("%") ? StatType.Percents : (StatType) m.Read(addr + 0xB); + Flag3 = m.Read(addr + 0xF) != 0; UserFriendlyName = RemoteMemoryObject.Cache.StringCache.Read($"{nameof(StatsDat)}{addr + 0x10}", @@ -58,10 +58,10 @@ public StatRecord(IMemory m, long addr, int iCounter) public string Key { get; } public long Address { get; } public StatType Type { get; } - public bool Unknown4 { get; } - public bool Unknown5 { get; } - public bool Unknown6 { get; } - public bool UnknownB { get; } + public bool Flag0 { get; } + public bool IsLocal { get; } + public bool IsWeaponLocal { get; } + public bool Flag3 { get; } public string UserFriendlyName { get; } // more fields can be added (see in visualGGPK) diff --git a/GameOffsets/ObjectMagicPropertiesOffsets.cs b/GameOffsets/ObjectMagicPropertiesOffsets.cs index 2c48c215..1a0a4721 100644 --- a/GameOffsets/ObjectMagicPropertiesOffsets.cs +++ b/GameOffsets/ObjectMagicPropertiesOffsets.cs @@ -6,7 +6,7 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct ObjectMagicPropertiesOffsets { - [FieldOffset(0x7C)] public int Rarity; - [FieldOffset(0x98)] public NativePtrArray Mods; + [FieldOffset(0x9C)] public int Rarity; + [FieldOffset(0xB8)] public NativePtrArray Mods; } } diff --git a/GameOffsets/PositionedComponentOffsets.cs b/GameOffsets/PositionedComponentOffsets.cs index 0eeedc91..e836017c 100644 --- a/GameOffsets/PositionedComponentOffsets.cs +++ b/GameOffsets/PositionedComponentOffsets.cs @@ -6,17 +6,17 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct PositionedComponentOffsets { - [FieldOffset(0x8)] public long OwnerAddress; - [FieldOffset(0xE0)] public Vector2 GridPosition; - [FieldOffset(0xE0)] public int GridX; - [FieldOffset(0xE4)] public int GridY; - [FieldOffset(0x110)] public Vector2 WorldPosition; - [FieldOffset(0x110)] public float WorldX; - [FieldOffset(0x114)] public float WorldY; - [FieldOffset(0x64)] public int Size; - [FieldOffset(0xE8)] public float Rotation; - - //[FieldOffset(0x138)] public byte Reaction; - [FieldOffset(0x58)] public byte Reaction; - } + [FieldOffset(8)] public long OwnerAddress; + [FieldOffset(0x158)] public byte Reaction; + [FieldOffset(0x164)] public int Size; + [FieldOffset(0x1AC)] public Vector2 PrevPosition; + [FieldOffset(0x1C4)] public Vector2 RelativeCoord; + [FieldOffset(0x1E0)] public Vector2 GridPosition; + [FieldOffset(0x1E0)] public int GridX; + [FieldOffset(0x1E4)] public int GridY; + [FieldOffset(0x1E8)] public float Rotation; + [FieldOffset(0x210)] public Vector2 WorldPosition; + [FieldOffset(0x210)] public float WorldX; + [FieldOffset(0x214)] public float WorldY; + } } diff --git a/GameOffsets/RenderComponentOffsets.cs b/GameOffsets/RenderComponentOffsets.cs index 13421f53..d12db4a2 100644 --- a/GameOffsets/RenderComponentOffsets.cs +++ b/GameOffsets/RenderComponentOffsets.cs @@ -7,19 +7,10 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct RenderComponentOffsets { - [FieldOffset((int) Offsets.RenderComponentOffsetsPos)] - public Vector3 Pos; - - [FieldOffset((int) Offsets.RenderComponentOffsetsBounds)] - public Vector3 Bounds; - - [FieldOffset((int) Offsets.RenderComponentOffsetsName)] - public NativeStringU Name; - - [FieldOffset((int) Offsets.RenderComponentOffsetsRotation)] - public Vector3 Rotation; - - [FieldOffset((int) Offsets.RenderComponentOffsetsHeight)] - public float Height; - } + [FieldOffset(0x80)] public Vector3 Pos; + [FieldOffset(0x8C)] public Vector3 Bounds; + [FieldOffset(0xA0)] public NativeStringU Name; + [FieldOffset(0xC0)] public Vector3 Rotation; + [FieldOffset(0xE8)] public float Height; + } } diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 9b644e71..3c06ad44 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -26,7 +26,8 @@ public struct ServerDataOffsets { public const int Skip = 0x5000; public const int ATLAS_REGION_UPGRADES = 0x7782; - [FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; + [FieldOffset(0)] public long MasterAreas; + [FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; [FieldOffset(0x7108 - Skip)] public byte PlayerClass; [FieldOffset(0x710C - Skip)] public int CharacterLevel; [FieldOffset(0x7110 - Skip)] public int PassiveRefundPointsLeft; @@ -56,7 +57,6 @@ public struct ServerDataOffsets [FieldOffset(0x7440 - Skip)] public long ElderInfluencedAreas; [FieldOffset(0x7660 - Skip)] public long ElderGuardiansAreas; //Maybe wrong not tested [FieldOffset(0x7930 - Skip)] public long ShapedAreas; //Maybe wrong not tested - [FieldOffset(0)] public long MasterAreas; [FieldOffset(0x842C - Skip)] public byte MonsterLevel; [FieldOffset(0x842D - Skip)] public byte MonstersRemaining; [FieldOffset(0x84E0 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested diff --git a/GameOffsets/ServerStashTabOffsets.cs b/GameOffsets/ServerStashTabOffsets.cs index a88135ed..63c5664d 100644 --- a/GameOffsets/ServerStashTabOffsets.cs +++ b/GameOffsets/ServerStashTabOffsets.cs @@ -7,11 +7,11 @@ namespace GameOffsets public struct ServerStashTabOffsets { [FieldOffset(0x8)] public NativeStringU Name; - [FieldOffset(0x2c)] public uint Color; - [FieldOffset(0x3C)] public uint MemberFlags; - [FieldOffset(0x34)] public uint OfficerFlags; - [FieldOffset(0x34)] public uint TabType; - [FieldOffset(0x38)] public ushort DisplayIndex; + [FieldOffset(0x2c)] public uint Color; + [FieldOffset(0x34)] public uint OfficerFlags; + [FieldOffset(0x34)] public uint TabType; + [FieldOffset(0x38)] public ushort DisplayIndex; + [FieldOffset(0x3C)] public uint MemberFlags; [FieldOffset(0x3D)] public byte Flags; } } diff --git a/GameOffsets/SkillGemOffsets.cs b/GameOffsets/SkillGemOffsets.cs index 3f94a5cd..ed1c7d49 100644 --- a/GameOffsets/SkillGemOffsets.cs +++ b/GameOffsets/SkillGemOffsets.cs @@ -7,11 +7,11 @@ public struct SkillGemOffsets { // Token: 0x04004664 RID: 18020 [FieldOffset(0x0)] public InitObjectOffsets Head; - [FieldOffset(0x28)] public long AdvanceInformation; - [FieldOffset(0x30)] public uint TotalExpGained; - [FieldOffset(0x34)] public uint Level; - [FieldOffset(0x38)] public uint ExperiencePrevLevel; - [FieldOffset(0x3C)] public uint ExperienceMaxLevel; + [FieldOffset(0x20)] public long AdvanceInformation; + [FieldOffset(0x28)] public uint TotalExpGained; + [FieldOffset(0x2C)] public uint Level; + [FieldOffset(0x30)] public uint ExperiencePrevLevel; + [FieldOffset(0x34)] public uint ExperienceMaxLevel; } [StructLayout(LayoutKind.Explicit, Pack = 1)] diff --git a/GameOffsets/StatsComponentOffsets.cs b/GameOffsets/StatsComponentOffsets.cs index 62e53b7f..9190fb9c 100644 --- a/GameOffsets/StatsComponentOffsets.cs +++ b/GameOffsets/StatsComponentOffsets.cs @@ -7,6 +7,6 @@ namespace GameOffsets public struct StatsComponentOffsets { [FieldOffset(0x8)] public long Owner; - [FieldOffset(0x98)] public NativePtrArray Stats; + [FieldOffset(0x118)] public NativePtrArray Stats; } } diff --git a/GameOffsets/Structs.cs b/GameOffsets/Structs.cs index ddc073b9..6b4b742f 100644 --- a/GameOffsets/Structs.cs +++ b/GameOffsets/Structs.cs @@ -2,10 +2,10 @@ { public enum Offsets { - RenderComponentOffsetsPos = 0x78, - RenderComponentOffsetsBounds = 0x84, - RenderComponentOffsetsName = 0x98, - RenderComponentOffsetsRotation = 0xB8, - RenderComponentOffsetsHeight = 0xD4 + RenderComponentOffsetsPos = 0x80, + RenderComponentOffsetsBounds = 0x8C, + RenderComponentOffsetsName = 0xA0, + RenderComponentOffsetsRotation = 0xC0, + RenderComponentOffsetsHeight = 0xE8 } } From 574a7ba560bc4cf25c0ef772c69ba719c691c319 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 14 Mar 2020 13:49:14 -0400 Subject: [PATCH 03/81] Updated IngameStateOffsetsstate --- GameOffsets/IngameStateOffsets.cs | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index 31f98a1a..d0a67f9d 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -7,25 +7,25 @@ public struct IngameStateOffsets { [FieldOffset(0x80)] public long IngameUi; [FieldOffset(0xA0)] public long EntityLabelMap; - [FieldOffset(0x370)] public long Data; - [FieldOffset(0x378)] public long ServerData; + [FieldOffset(0x378)] public long Data; + [FieldOffset(0x380)] public long ServerData; [FieldOffset(0x4A8)] public long UIRoot; - [FieldOffset(0x4F0)] public long UIHover; - [FieldOffset(0x51C)] public float UIHoverX; - [FieldOffset(0x520)] public float UIHoverY; - [FieldOffset(0x4E0)] public long UIHoverTooltip; - [FieldOffset(0x4E8)] public float CurentUElementPosX; - [FieldOffset(0x4EC)] public float CurentUElementPosY; - [FieldOffset(0x570)] public int DiagnosticInfoType; + [FieldOffset(0x4E0)] public long UIHoverTooltip; + [FieldOffset(0x4E8)] public float CurentUElementPosX; + [FieldOffset(0x4EC)] public float CurentUElementPosY; + [FieldOffset(0x4F0)] public long UIHover; + [FieldOffset(0x518)] public int MouseXGlobal; + [FieldOffset(0x51C)] public int MouseYGlobal; + [FieldOffset(0x524)] public float UIHoverX; + [FieldOffset(0x528)] public float UIHoverY; + [FieldOffset(0x52C)] public float MouseXInGame; + [FieldOffset(0x530)] public float MouseYInGame; + [FieldOffset(0x554)] public float TimeInGame; + [FieldOffset(0x55C)] public float TimeInGameF; + [FieldOffset(0x570)] public int DiagnosticInfoType; [FieldOffset(0x7A0)] public long LatencyRectangle; [FieldOffset(0xC30)] public long FrameTimeRectangle; [FieldOffset(0xE78)] public long FPSRectangle; - [FieldOffset(0x554)] public float TimeInGame; - [FieldOffset(0x558)] public float TimeInGameF; [FieldOffset(0xFE4)] public int Camera; - [FieldOffset(0x518)] public int MouseXGlobal; - [FieldOffset(0x51C)] public int MouseYGlobal; - [FieldOffset(0x52C)] public float MouseXInGame; - [FieldOffset(0x530)] public float MouseYInGame; } } From 4a9683ce920137744c51527eec0474b9ca6ba038 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 14 Mar 2020 15:50:53 -0400 Subject: [PATCH 04/81] More 3.10 offsets --- Core/PoEMemory/FileInMemory.cs | 2 +- Core/PoEMemory/MemoryObjects/Entity.cs | 2 +- GameOffsets/CameraOffsets.cs | 10 +++++----- GameOffsets/IngameStateOffsets.cs | 4 ++-- GameOffsets/PathEntityOffsets.cs | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Core/PoEMemory/FileInMemory.cs b/Core/PoEMemory/FileInMemory.cs index 0c2000c7..9bf1a313 100644 --- a/Core/PoEMemory/FileInMemory.cs +++ b/Core/PoEMemory/FileInMemory.cs @@ -17,7 +17,7 @@ protected FileInMemory(IMemory m, Func address) public IMemory M { get; } public long Address { get; } - private int NumberOfRecords => M.Read(fAddress() + 0x30, 0x18); + private int NumberOfRecords => M.Read(fAddress() + 0x30, 0x20); protected IEnumerable RecordAddresses() { diff --git a/Core/PoEMemory/MemoryObjects/Entity.cs b/Core/PoEMemory/MemoryObjects/Entity.cs index 4aa14d67..c8bd596b 100644 --- a/Core/PoEMemory/MemoryObjects/Entity.cs +++ b/Core/PoEMemory/MemoryObjects/Entity.cs @@ -370,7 +370,7 @@ private long ComponentLookup if (_componentLookup != null) return _componentLookup.Value; - return (long) (_componentLookup = M.Read(Address + 0x8, 0x30, 0x40)); + return (long) (_componentLookup = M.Read(Address + 0x8, 0x30, 0x30)); } } diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 7f927a67..832798c2 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -7,12 +7,12 @@ namespace GameOffsets public struct CameraOffsets { [FieldOffset(0x4)] public int Width; - [FieldOffset(0x8)] public int Height; - [FieldOffset(0x11C)] public Vector3 Position; - [FieldOffset(0x210)] public float ZFar; - + [FieldOffset(0x8)] public int Height; //First value is changing when we change the screen size (ratio) //4 bytes before the matrix doesn't change - [FieldOffset(0x7C)] public Matrix MatrixBytes; + [FieldOffset(0xA4)] public Matrix MatrixBytes; + [FieldOffset(0x11C)] public Vector3 Position; + [FieldOffset(0x210)] public float ZFar; + } } diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index d0a67f9d..3f011eb8 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -24,8 +24,8 @@ public struct IngameStateOffsets [FieldOffset(0x55C)] public float TimeInGameF; [FieldOffset(0x570)] public int DiagnosticInfoType; [FieldOffset(0x7A0)] public long LatencyRectangle; - [FieldOffset(0xC30)] public long FrameTimeRectangle; - [FieldOffset(0xE78)] public long FPSRectangle; + [FieldOffset(0xC40)] public long FrameTimeRectangle; + [FieldOffset(0xE90)] public long FPSRectangle; [FieldOffset(0xFE4)] public int Camera; } } diff --git a/GameOffsets/PathEntityOffsets.cs b/GameOffsets/PathEntityOffsets.cs index 218401c4..7009c2ce 100644 --- a/GameOffsets/PathEntityOffsets.cs +++ b/GameOffsets/PathEntityOffsets.cs @@ -5,7 +5,7 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct PathEntityOffsets { - [FieldOffset(0x10)] public StringPtr Path; + [FieldOffset(0x08)] public StringPtr Path; [FieldOffset(0x20)] public long Length; /*public string ToString(IMemory mem) { From bca218e86473a90b525a130407d69db575e8e13c Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 15 Mar 2020 01:26:11 -0400 Subject: [PATCH 05/81] Fixed PlayerInventories Offset and Currency/Fragment stash tab parent/children count --- Core/PoEMemory/MemoryObjects/Inventory.cs | 4 ++-- GameOffsets/ServerDataOffsets.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/MemoryObjects/Inventory.cs b/Core/PoEMemory/MemoryObjects/Inventory.cs index 65a9c358..79feecad 100644 --- a/Core/PoEMemory/MemoryObjects/Inventory.cs +++ b/Core/PoEMemory/MemoryObjects/Inventory.cs @@ -202,10 +202,10 @@ private InventoryType GetInvType() case 0x6f: _cacheInventoryType = InventoryType.EssenceStash; break; - case 0x3c: + case 0x45: _cacheInventoryType = InventoryType.CurrencyStash; break; - case 0x55: + case 0x58: _cacheInventoryType = InventoryType.FragmentStash; break; case 0x5: diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 3c06ad44..3922975e 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -46,7 +46,7 @@ public struct ServerDataOffsets [FieldOffset(0x7360 - Skip)] public long GuildName; [FieldOffset(0x73F0 - Skip)] public SkillBarIdsStruct SkillBarIds; [FieldOffset(0x7440 - Skip)] public NativePtrArray NearestPlayers; - [FieldOffset(0x7520 - Skip)] public NativePtrArray PlayerInventories; + [FieldOffset(0x7548 - Skip)] public NativePtrArray PlayerInventories; [FieldOffset(0x7618 - Skip)] public NativePtrArray NPCInventories; [FieldOffset(0x76D0 - Skip)] public NativePtrArray GuildInventories; [FieldOffset(0x7828 - Skip)] public ushort TradeChatChannel; From 80732b26e23e628051204c3783937ca03ff9aefd Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 15 Mar 2020 18:41:06 -0400 Subject: [PATCH 06/81] Fixed Actor offsets and Added some Delirium support. --- Core/PoEMemory/MemoryObjects/ActorSkill.cs | 20 ++++++++++---------- Core/PoEMemory/MemoryObjects/Entity.cs | 6 ++++-- Core/Shared/Enums/League.cs | 3 ++- GameOffsets/ActorComponentOffsets.cs | 4 ++-- GameOffsets/ChestComponentOffsets.cs | 10 +++++----- 5 files changed, 23 insertions(+), 20 deletions(-) diff --git a/Core/PoEMemory/MemoryObjects/ActorSkill.cs b/Core/PoEMemory/MemoryObjects/ActorSkill.cs index b2ea3258..a3f2b5c3 100644 --- a/Core/PoEMemory/MemoryObjects/ActorSkill.cs +++ b/Core/PoEMemory/MemoryObjects/ActorSkill.cs @@ -9,15 +9,15 @@ public class ActorSkill : RemoteMemoryObject { public ushort Id => M.Read(Address + 0x10); public GrantedEffectsPerLevel EffectsPerLevel => ReadObject(Address + 0x20); - public bool CanBeUsedWithWeapon => M.Read(Address + 0x46) > 0; - public bool CanBeUsed => M.Read(Address + 0x47) == 0; - public int Cost => M.Read(Address + 0x4C); + public bool CanBeUsedWithWeapon => M.Read(Address + 0x50) > 0; + public bool CanBeUsed => M.Read(Address + 0x52) == 0; + public int Cost => M.Read(Address + 0x54); //public int Unknown_Old_MaxUses => M.Read(Address + 0x4c); - public int TotalUses => M.Read(Address + 0x50); - public float Cooldown => M.Read(Address + 0x58) / 100f; //Converted milliseconds to seconds - public int SoulsPerUse => M.Read(Address + 0x68); - public int TotalVaalUses => M.Read(Address + 0x6c); + public int TotalUses => M.Read(Address + 0x58); + public float Cooldown => M.Read(Address + 0x60) / 100f; //Converted milliseconds to seconds + public int SoulsPerUse => M.Read(Address + 0x70); + public int TotalVaalUses => M.Read(Address + 0x74); public bool IsOnSkillBar => SkillSlotIndex != -1; public int SkillSlotIndex => TheGame.IngameState.ServerData.SkillBarIds.IndexOf(Id); @@ -157,7 +157,7 @@ public Dictionary Stats { get { - var statsPtr = M.Read(Address + 0x78); + var statsPtr = M.Read(Address + 0x80); var result = new Dictionary(); ReadStats(result, statsPtr); @@ -171,8 +171,8 @@ public Dictionary Stats internal void ReadStats(Dictionary stats, long address) { - var statPtrStart = M.Read(address + 0x68); - var statPtrEnd = M.Read(address + 0x70); + var statPtrStart = M.Read(address + 0x30); + var statPtrEnd = M.Read(address + 0x38); var key = 0; var value = 0; diff --git a/Core/PoEMemory/MemoryObjects/Entity.cs b/Core/PoEMemory/MemoryObjects/Entity.cs index c8bd596b..72642728 100644 --- a/Core/PoEMemory/MemoryObjects/Entity.cs +++ b/Core/PoEMemory/MemoryObjects/Entity.cs @@ -686,8 +686,10 @@ private EntityType ParseType() { if (Path.StartsWith("Metadata/Monsters/LegionLeague/", StringComparison.Ordinal)) League = LeagueType.Legion; - - return EntityType.Monster; + if (Path.StartsWith("Metadata/Monsters/LeagueAffliction/", StringComparison.Ordinal)) + League = LeagueType.Delirium; + + return EntityType.Monster; } if (HasComponent()) diff --git a/Core/Shared/Enums/League.cs b/Core/Shared/Enums/League.cs index 3fbee072..cbc00e61 100644 --- a/Core/Shared/Enums/League.cs +++ b/Core/Shared/Enums/League.cs @@ -8,6 +8,7 @@ public enum LeagueType Breach, Perandus, Delve, - Legion + Legion, + Delirium } } diff --git a/GameOffsets/ActorComponentOffsets.cs b/GameOffsets/ActorComponentOffsets.cs index 56c49131..642a83ac 100644 --- a/GameOffsets/ActorComponentOffsets.cs +++ b/GameOffsets/ActorComponentOffsets.cs @@ -23,9 +23,9 @@ public struct ActorComponentOffsets [FieldOffset(0x510)] public NativePtrArray ActorSkillsArray; // Broken Offset, remove comment on fixup. - // [FieldOffset(0x418)] public NativePtrArray ActorVaalSkills; + // [FieldOffset(0x540)] public NativePtrArray ActorVaalSkills; // [FieldOffset(0x438)] public NativePtrArray HasMinionArray; - [FieldOffset(0x470)] public NativePtrArray DeployedObjectArray; + [FieldOffset(0x578)] public NativePtrArray DeployedObjectArray; } } diff --git a/GameOffsets/ChestComponentOffsets.cs b/GameOffsets/ChestComponentOffsets.cs index 78c9652b..bd9736f8 100644 --- a/GameOffsets/ChestComponentOffsets.cs +++ b/GameOffsets/ChestComponentOffsets.cs @@ -5,10 +5,10 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct ChestComponentOffsets { - [FieldOffset(0x78)] public bool IsOpened; - [FieldOffset(0x79)] public bool IsLocked; - [FieldOffset(0xB8)] public bool IsStrongbox; - [FieldOffset(0x7C)] public readonly byte quality; - [FieldOffset(0x58)] public long StrongboxData; + [FieldOffset(0x178)] public bool IsOpened; + [FieldOffset(0x179)] public bool IsLocked; + [FieldOffset(0x1B8)] public bool IsStrongbox; + [FieldOffset(0x17C)] public readonly byte quality; + [FieldOffset(0x158)] public long StrongboxData; } } From 80c462f648cca71943a11c36f1f6f843d32b7591 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 15 Mar 2020 18:52:14 -0400 Subject: [PATCH 07/81] Updated PathfindingComponentOffsets --- GameOffsets/PathfindingComponentOffsets.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GameOffsets/PathfindingComponentOffsets.cs b/GameOffsets/PathfindingComponentOffsets.cs index ee4e70d1..cd1fefdb 100644 --- a/GameOffsets/PathfindingComponentOffsets.cs +++ b/GameOffsets/PathfindingComponentOffsets.cs @@ -9,7 +9,7 @@ public struct PathfindingComponentOffsets [FieldOffset(0x28)] public Vector2i ClickToNextPosition; [FieldOffset(0x30)] public Vector2i WasInThisPosition; [FieldOffset(0x470)] public byte IsMoving; - [FieldOffset(0x4CC)] public Vector2i WantMoveToPosition; - [FieldOffset(0x4D8)] public float StayTime; + [FieldOffset(0x54C)] public Vector2i WantMoveToPosition; + [FieldOffset(0x558)] public float StayTime; } } From 85004df219c6a7996a19cfa3b5f73bade1ccdf12 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 16 Mar 2020 01:41:19 -0400 Subject: [PATCH 08/81] Actually fixed ActorSkill Offsets, I think --- Core/PoEMemory/MemoryObjects/ActorSkill.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/MemoryObjects/ActorSkill.cs b/Core/PoEMemory/MemoryObjects/ActorSkill.cs index a3f2b5c3..403c531c 100644 --- a/Core/PoEMemory/MemoryObjects/ActorSkill.cs +++ b/Core/PoEMemory/MemoryObjects/ActorSkill.cs @@ -10,7 +10,7 @@ public class ActorSkill : RemoteMemoryObject public ushort Id => M.Read(Address + 0x10); public GrantedEffectsPerLevel EffectsPerLevel => ReadObject(Address + 0x20); public bool CanBeUsedWithWeapon => M.Read(Address + 0x50) > 0; - public bool CanBeUsed => M.Read(Address + 0x52) == 0; + public bool CanBeUsed => M.Read(Address + 0x51) == 0; public int Cost => M.Read(Address + 0x54); //public int Unknown_Old_MaxUses => M.Read(Address + 0x4c); @@ -171,8 +171,8 @@ public Dictionary Stats internal void ReadStats(Dictionary stats, long address) { - var statPtrStart = M.Read(address + 0x30); - var statPtrEnd = M.Read(address + 0x38); + var statPtrStart = M.Read(address + 0xE8); + var statPtrEnd = M.Read(address + 0xF0); var key = 0; var value = 0; From a1020ef93f4d08929e0ea1a7423b735935a4136d Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 22 Mar 2020 23:57:42 -0400 Subject: [PATCH 09/81] Fixed Nominal Level --- Core/PoEMemory/MemoryObjects/AreaTemplate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/PoEMemory/MemoryObjects/AreaTemplate.cs b/Core/PoEMemory/MemoryObjects/AreaTemplate.cs index 06008a2d..7eb88b7a 100644 --- a/Core/PoEMemory/MemoryObjects/AreaTemplate.cs +++ b/Core/PoEMemory/MemoryObjects/AreaTemplate.cs @@ -9,7 +9,7 @@ public class AreaTemplate : RemoteMemoryObject public int Act => M.Read(Address + 0x10); public bool IsTown => M.Read(Address + 0x14) == 1; public bool HasWaypoint => M.Read(Address + 0x15) == 1; - public int NominalLevel => M.Read(Address + 0x16); //Not sure + public int NominalLevel => M.Read(Address + 0x26); //Not sure public int MonsterLevel => M.Read(Address + 0x26); public int WorldAreaId => M.Read(Address + 0x2A); public int CorruptedAreasVariety => M.Read(Address + 0xFB); From ce28b60e1de26fa66ef10244679212989a6613cb Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 22 Mar 2020 23:58:26 -0400 Subject: [PATCH 10/81] Updated GameStat.cs for 3.10 --- Core/Shared/Enums/GameStat.cs | 48881 ++++++++++++++++++-------------- 1 file changed, 27633 insertions(+), 21248 deletions(-) diff --git a/Core/Shared/Enums/GameStat.cs b/Core/Shared/Enums/GameStat.cs index 5acfe509..e9dd54ee 100644 --- a/Core/Shared/Enums/GameStat.cs +++ b/Core/Shared/Enums/GameStat.cs @@ -1,53071 +1,59456 @@ namespace ExileCore.Shared.Enums { public enum GameStat - { + { /// /// Level /// - Level = 1, - + Level = 1, + /// /// Item Drop Slots /// - ItemDropSlots = 2, - + ItemDropSlots = 2, + /// /// Main Hand Weapon Type /// - MainHandWeaponType = 3, - + MainHandWeaponType = 3, + /// /// Off Hand Weapon Type /// - OffHandWeaponType = 4, - + OffHandWeaponType = 4, + /// /// Endurance Charges /// - CurrentEnduranceCharges = 5, - + CurrentEnduranceCharges = 5, + /// /// Frenzy Charges /// - CurrentFrenzyCharges = 6, - + CurrentFrenzyCharges = 6, + /// /// Power Charges /// - CurrentPowerCharges = 7, - + CurrentPowerCharges = 7, + /// /// Cannot be Life-Leeched /// - CannotHaveLifeLeechedFrom = 8, - + CannotHaveLifeLeechedFrom = 8, + /// /// Cannot be Mana-Leeched /// - CannotHaveManaLeechedFrom = 9, - + CannotHaveManaLeechedFrom = 9, + /// /// Experience From Slain Monsters /// - MonsterSlainExperiencePct = 10, - + MonsterSlainExperiencePct = 10, + /// /// Rarity of Items Dropped by Monsters /// - MonsterDroppedItemRarityPct = 11, - + MonsterDroppedItemRarityPct = 11, + /// /// Quantity of Items Dropped by Monsters /// - MonsterDroppedItemQuantityPct = 12, - + MonsterDroppedItemQuantityPct = 12, + /// /// Local Flask Life to Recover /// - LocalFlaskLifeToRecover = 13, - + LocalFlaskLifeToRecover = 13, + /// /// Local Flask Life to Recover +% /// - LocalFlaskLifeToRecoverPct = 14, - + LocalFlaskLifeToRecoverPct = 14, + /// /// Local Flask Mana to Recover /// - LocalFlaskManaToRecover = 15, - + LocalFlaskManaToRecover = 15, + /// /// Local Flask Mana to Recover +% /// - LocalFlaskManaToRecoverPct = 16, - + LocalFlaskManaToRecoverPct = 16, + /// /// Local Flask Recovery Speed +% /// - LocalFlaskRecoverySpeedPct = 17, - + LocalFlaskRecoverySpeedPct = 17, + /// /// Time to Recover /// - LocalFlaskDecisecondsToRecover = 18, - + LocalFlaskDecisecondsToRecover = 18, + /// /// Local Extra Charges /// - LocalExtraMaxCharges = 19, - + LocalExtraMaxCharges = 19, + /// /// Shield Block Chance /// - ShieldBlockPct = 20, - + ShieldBlockPct = 20, + /// /// old_do_not_use_spell_block_%_from_assumed_block_value /// - OldDoNotUseSpellBlockPctFromAssumedBlockValue = 21, - + OldDoNotUseSpellBlockPctFromAssumedBlockValue = 21, + /// /// Blocking while Dual Wielding /// - BlockWhileDualWieldingPct = 22, - + BlockWhileDualWieldingPct = 22, + /// /// Block Recovery Increase /// - BlockRecoveryPct = 23, - + BlockRecoveryPct = 23, + /// /// Shield Armour /// - ShieldArmourPct = 24, - + ShieldArmourPct = 24, + /// /// All Damage /// - DamagePct = 25, - + DamagePct = 25, + /// /// Spell Damage +% /// - SpellDamagePct = 26, - + SpellDamagePct = 26, + /// /// Physical Damage +% /// - PhysicalDamagePct = 27, - + PhysicalDamagePct = 27, + /// /// Local Physical Damage +% /// - LocalPhysicalDamagePct = 28, - + LocalPhysicalDamagePct = 28, + /// /// Minimum Added Physical Damage /// - GlobalMinimumAddedPhysicalDamage = 29, - + GlobalMinimumAddedPhysicalDamage = 29, + /// /// Maximum Added Physical Damage /// - GlobalMaximumAddedPhysicalDamage = 30, - + GlobalMaximumAddedPhysicalDamage = 30, + /// /// Minimum Added Physical Damage /// - AttackMinimumAddedPhysicalDamage = 31, - + AttackMinimumAddedPhysicalDamage = 31, + /// /// Maximum Added Physical Damage /// - AttackMaximumAddedPhysicalDamage = 32, - + AttackMaximumAddedPhysicalDamage = 32, + /// /// Local Minimum Added Physical Damage /// - LocalMinimumAddedPhysicalDamage = 33, - + LocalMinimumAddedPhysicalDamage = 33, + /// /// Local Maximum Added Physical Damage /// - LocalMaximumAddedPhysicalDamage = 34, - + LocalMaximumAddedPhysicalDamage = 34, + /// /// Axe Damage /// - PhysicalAxeDamagePct = 35, - + PhysicalAxeDamagePct = 35, + /// /// Staff Damage /// - PhysicalStaffDamagePct = 36, - + PhysicalStaffDamagePct = 36, + /// /// Claw Damage /// - PhysicalClawDamagePct = 37, - + PhysicalClawDamagePct = 37, + /// /// Dagger Damage /// - PhysicalDaggerDamagePct = 38, - + PhysicalDaggerDamagePct = 38, + /// /// Mace Damage /// - PhysicalMaceDamagePct = 39, - + PhysicalMaceDamagePct = 39, + /// /// Bow Damage /// - PhysicalBowDamagePct = 40, - + PhysicalBowDamagePct = 40, + /// /// Sword Damage /// - PhysicalSwordDamagePct = 41, - + PhysicalSwordDamagePct = 41, + /// /// Wand Damage /// - PhysicalWandDamagePct = 42, - + PhysicalWandDamagePct = 42, + /// /// Fire Damage +% /// - FireDamagePct = 43, - + FireDamagePct = 43, + /// /// Minimum Added Fire Damage /// - GlobalMinimumAddedFireDamage = 44, - + GlobalMinimumAddedFireDamage = 44, + /// /// Maximum Added Fire Damage /// - GlobalMaximumAddedFireDamage = 45, - + GlobalMaximumAddedFireDamage = 45, + /// /// Attack Minimum Added Fire Damage /// - AttackMinimumAddedFireDamage = 46, - + AttackMinimumAddedFireDamage = 46, + /// /// Attack Maximum Added Fire Damage /// - AttackMaximumAddedFireDamage = 47, - + AttackMaximumAddedFireDamage = 47, + /// /// Local Minimum Added Fire Damage /// - LocalMinimumAddedFireDamage = 48, - + LocalMinimumAddedFireDamage = 48, + /// /// Local Maximum Added Fire Damage /// - LocalMaximumAddedFireDamage = 49, - + LocalMaximumAddedFireDamage = 49, + /// /// Cold Damage +% /// - ColdDamagePct = 50, - + ColdDamagePct = 50, + /// /// Minimum Added Cold Damage /// - GlobalMinimumAddedColdDamage = 51, - + GlobalMinimumAddedColdDamage = 51, + /// /// Maximum Added Cold Damage /// - GlobalMaximumAddedColdDamage = 52, - + GlobalMaximumAddedColdDamage = 52, + /// /// Attack Minimum Added Cold Damage /// - AttackMinimumAddedColdDamage = 53, - + AttackMinimumAddedColdDamage = 53, + /// /// Attack Maximum Added Cold Damage /// - AttackMaximumAddedColdDamage = 54, - + AttackMaximumAddedColdDamage = 54, + /// /// Local Minimum Added Cold Damage /// - LocalMinimumAddedColdDamage = 55, - + LocalMinimumAddedColdDamage = 55, + /// /// Local Maximum Added Cold Damage /// - LocalMaximumAddedColdDamage = 56, - + LocalMaximumAddedColdDamage = 56, + /// /// Lightning Damage +% /// - LightningDamagePct = 57, - + LightningDamagePct = 57, + /// /// Minimum Added Lightning Damage /// - GlobalMinimumAddedLightningDamage = 58, - + GlobalMinimumAddedLightningDamage = 58, + /// /// Maximum Added Lightning Damage /// - GlobalMaximumAddedLightningDamage = 59, - + GlobalMaximumAddedLightningDamage = 59, + /// /// Attack Minimum Added Lightning Damage /// - AttackMinimumAddedLightningDamage = 60, - + AttackMinimumAddedLightningDamage = 60, + /// /// Attack Maximum Added Lightning Damage /// - AttackMaximumAddedLightningDamage = 61, - + AttackMaximumAddedLightningDamage = 61, + /// /// Local Minimum Added Lightning Damage /// - LocalMinimumAddedLightningDamage = 62, - + LocalMinimumAddedLightningDamage = 62, + /// /// Local Maximum Added Lightning Damage /// - LocalMaximumAddedLightningDamage = 63, - + LocalMaximumAddedLightningDamage = 63, + /// /// Chaos Damage +% /// - ChaosDamagePct = 64, - + ChaosDamagePct = 64, + /// /// Minimum Added Chaos Damage /// - GlobalMinimumAddedChaosDamage = 65, - + GlobalMinimumAddedChaosDamage = 65, + /// /// Maximum Added Chaos Damage /// - GlobalMaximumAddedChaosDamage = 66, - + GlobalMaximumAddedChaosDamage = 66, + /// /// Minimum Added Chaos Damage /// - AttackMinimumAddedChaosDamage = 67, - + AttackMinimumAddedChaosDamage = 67, + /// /// Maximum Added Chaos Damage /// - AttackMaximumAddedChaosDamage = 68, - + AttackMaximumAddedChaosDamage = 68, + /// /// Local Minimum Added Chaos Damage /// - LocalMinimumAddedChaosDamage = 69, - + LocalMinimumAddedChaosDamage = 69, + /// /// Local Maximum Added Chaos Damage /// - LocalMaximumAddedChaosDamage = 70, - + LocalMaximumAddedChaosDamage = 70, + /// /// Attack Speed +% /// - AttackSpeedPct = 71, - + AttackSpeedPct = 71, + /// /// Local Attack Speed +% /// - LocalAttackSpeedPct = 72, - + LocalAttackSpeedPct = 72, + /// /// Melee Attack Speed /// - MeleeAttackSpeedPct = 73, - + MeleeAttackSpeedPct = 73, + /// /// Attack Speed while Dual Wielding /// - AttackSpeedWhileDualWieldingPct = 74, - + AttackSpeedWhileDualWieldingPct = 74, + /// /// Attack Speed with Axes /// - AxeAttackSpeedPct = 75, - + AxeAttackSpeedPct = 75, + /// /// Attack Speed with Staves /// - StaffAttackSpeedPct = 76, - + StaffAttackSpeedPct = 76, + /// /// Attack Speed with Claws /// - ClawAttackSpeedPct = 77, - + ClawAttackSpeedPct = 77, + /// /// Attack Speed with Daggers /// - DaggerAttackSpeedPct = 78, - + DaggerAttackSpeedPct = 78, + /// /// Attack Speed with Maces /// - MaceAttackSpeedPct = 79, - + MaceAttackSpeedPct = 79, + /// /// Attack Speed with Bows /// - BowAttackSpeedPct = 80, - + BowAttackSpeedPct = 80, + /// /// Attack Speed with Swords /// - SwordAttackSpeedPct = 81, - + SwordAttackSpeedPct = 81, + /// /// Attack Speed with Wands /// - WandAttackSpeedPct = 82, - + WandAttackSpeedPct = 82, + /// /// Attack Speed with Shields /// - ShieldAttackSpeedPct = 83, - + ShieldAttackSpeedPct = 83, + /// /// Accuracy Rating /// - AccuracyRating = 84, - + AccuracyRating = 84, + /// /// Accuracy Rating +% /// - AccuracyRatingPct = 85, - + AccuracyRatingPct = 85, + /// /// Accuracy Rating while Dual Wielding +% /// - AccuracyRatingWhileDualWieldingPct = 86, - + AccuracyRatingWhileDualWieldingPct = 86, + /// /// Accuracy Rating with Axes /// - AxeAccuracyRatingPct = 87, - + AxeAccuracyRatingPct = 87, + /// /// Accuracy Rating with Staves /// - StaffAccuracyRatingPct = 88, - + StaffAccuracyRatingPct = 88, + /// /// Accuracy Rating with Claws /// - ClawAccuracyRatingPct = 89, - + ClawAccuracyRatingPct = 89, + /// /// Accuracy Rating with Daggers /// - DaggerAccuracyRatingPct = 90, - + DaggerAccuracyRatingPct = 90, + /// /// Accuracy Rating with Maces /// - MaceAccuracyRatingPct = 91, - + MaceAccuracyRatingPct = 91, + /// /// Accuracy Rating with Bows /// - BowAccuracyRatingPct = 92, - + BowAccuracyRatingPct = 92, + /// /// Accuracy Rating with Swords /// - SwordAccuracyRatingPct = 93, - + SwordAccuracyRatingPct = 93, + /// /// Accuracy Rating with Wands /// - WandAccuracyRatingPct = 94, - + WandAccuracyRatingPct = 94, + /// /// Poisons on Critical Strike with Dagger /// - PoisonOnCriticalStrikeWithDagger = 95, - + PoisonOnCriticalStrikeWithDagger = 95, + /// /// Base Critical Strike Multiplier +% /// - BaseCriticalStrikeMultiplier = 96, - + BaseCriticalStrikeMultiplier = 96, + /// /// Critical Strike Multiplier /// - CriticalStrikeMultiplierWithDagger = 97, - + CriticalStrikeMultiplierWithDagger = 97, + /// /// Critical Strike Multiplier /// - BaseSelfCriticalStrikeMultiplierPct = 98, - + BaseSelfCriticalStrikeMultiplierPct = 98, + /// /// Enemy Critical Strike Damage Multiplier reduction per Endurance Charge /// - SelfCriticalStrikeMultiplierPctPerEnduranceCharge = 99, - + SelfCriticalStrikeMultiplierPctPerEnduranceCharge = 99, + /// /// old_do_not_use_local_life_leech_from_physical_damage_% /// - OldDoNotUseLocalLifeLeechFromPhysicalDamagePct = 100, - + OldDoNotUseLocalLifeLeechFromPhysicalDamagePct = 100, + /// /// old_do_not_use_local_mana_leech_from_physical_damage_% /// - OldDoNotUseLocalManaLeechFromPhysicalDamagePct = 101, - + OldDoNotUseLocalManaLeechFromPhysicalDamagePct = 101, + /// /// Life Leech From Physical Damage % /// - OldDoNotUseLifeLeechFromPhysicalDamagePct = 102, - + OldDoNotUseLifeLeechFromPhysicalDamagePct = 102, + /// /// Mana Leech From Physical Damage % /// - OldDoNotUseManaLeechFromPhysicalDamagePct = 103, - + OldDoNotUseManaLeechFromPhysicalDamagePct = 103, + /// /// old_do_not_use_life_leech_from_physical_damage_with_claw_% /// - OldDoNotUseLifeLeechFromPhysicalDamageWithClawPct = 104, - + OldDoNotUseLifeLeechFromPhysicalDamageWithClawPct = 104, + /// /// Base Life Gained On Enemy Death /// - BaseLifeGainedOnEnemyDeath = 105, - + BaseLifeGainedOnEnemyDeath = 105, + /// /// Life Leech from any Damage /// - LifeLeechFromAnyDamagePermyriad = 106, - + LifeLeechFromAnyDamagePermyriad = 106, + /// /// Mana Leech from any Damage /// - ManaLeechFromAnyDamagePermyriad = 107, - + ManaLeechFromAnyDamagePermyriad = 107, + /// /// Base Mana Gained On Enemy Death /// - BaseManaGainedOnEnemyDeath = 108, - + BaseManaGainedOnEnemyDeath = 108, + /// /// Base Stun Threshold Reduction +% /// - BaseStunThresholdReductionPct = 109, - + BaseStunThresholdReductionPct = 109, + /// /// while_using_mace_stun_threshold_reduction_+% /// - WhileUsingMaceStunThresholdReductionPct = 110, - + WhileUsingMaceStunThresholdReductionPct = 110, + /// /// Knockback /// - GlobalKnockback = 111, - + GlobalKnockback = 111, + /// /// Knockback with Bows /// - KnockbackWithBow = 112, - + KnockbackWithBow = 112, + /// /// Knockback with Staves /// - KnockbackWithStaff = 113, - + KnockbackWithStaff = 113, + /// /// Knockback with Wands /// - KnockbackWithWand = 114, - + KnockbackWithWand = 114, + /// /// Knockback /// - LocalKnockback = 115, - + LocalKnockback = 115, + /// /// maximum_physical_damage_reduction_% /// - MaximumPhysicalDamageReductionPct = 116, - + MaximumPhysicalDamageReductionPct = 116, + /// /// Base Physical Damage Reduction Rating /// - BasePhysicalDamageReductionRating = 117, - + BasePhysicalDamageReductionRating = 117, + /// /// Physical Damage Reduction Rating +% /// - PhysicalDamageReductionRatingPct = 118, - + PhysicalDamageReductionRatingPct = 118, + /// /// Local Physical Damage Reduction Rating +% /// - LocalPhysicalDamageReductionRatingPct = 119, - + LocalPhysicalDamageReductionRatingPct = 119, + /// /// Base Evasion Rating /// - BaseEvasionRating = 120, - + BaseEvasionRating = 120, + /// /// Global Evasion Rating +% /// - EvasionRatingPct = 121, - + EvasionRatingPct = 121, + /// /// Local Evasion Rating +% /// - LocalEvasionRatingPct = 122, - + LocalEvasionRatingPct = 122, + /// /// Evasion Rating increase per Frenzy Charge /// - EvasionRatingPctPerFrenzyCharge = 123, - + EvasionRatingPctPerFrenzyCharge = 123, + /// /// Base Maximum Life /// - BaseMaximumLife = 124, - + BaseMaximumLife = 124, + /// /// Maximum Life +% /// - MaximumLifePct = 125, - + MaximumLifePct = 125, + /// /// Life Regeneration Rate per Minute /// - BaseLifeRegenerationRatePerMinute = 126, - + BaseLifeRegenerationRatePerMinute = 126, + /// /// Life Regeneration Rate per Endurance Charge /// - LifeRegenerationRatePerMinutePctPerEnduranceCharge = 127, - + LifeRegenerationRatePerMinutePctPerEnduranceCharge = 127, + /// /// Base Maximum Mana /// - BaseMaximumMana = 128, - + BaseMaximumMana = 128, + /// /// Maximum Mana +% /// - MaximumManaPct = 129, - + MaximumManaPct = 129, + /// /// Mana Regeneration Rate per Minute /// - ManaRegenerationRatePerMinutePct = 130, - + ManaRegenerationRatePerMinutePct = 130, + /// /// Mana Regeneration Rate +% /// - ManaRegenerationRatePct = 131, - + ManaRegenerationRatePct = 131, + /// /// Mana Regeneration Rate per Minute /// - BaseManaRegenerationRatePerMinute = 132, - + BaseManaRegenerationRatePerMinute = 132, + /// /// Mana Regeneration Rate per Power Charge /// - ManaRegenerationRatePerMinutePctPerPowerCharge = 133, - + ManaRegenerationRatePerMinutePctPerPowerCharge = 133, + /// /// Base Maximum Energy Shield /// - BaseMaximumEnergyShield = 134, - + BaseMaximumEnergyShield = 134, + /// /// Global Maximum Energy Shield +% /// - MaximumEnergyShieldPct = 135, - + MaximumEnergyShieldPct = 135, + /// /// Local Energy Shield /// - LocalEnergyShield = 136, - + LocalEnergyShield = 136, + /// /// Local Energy Shield +% /// - LocalEnergyShieldPct = 137, - + LocalEnergyShieldPct = 137, + /// /// energy_shield_recharge_rate_per_minute_% /// - EnergyShieldRechargeRatePerMinutePct = 138, - + EnergyShieldRechargeRatePerMinutePct = 138, + /// /// energy_shield_recharge_rate_+% /// - EnergyShieldRechargeRatePct = 139, - + EnergyShieldRechargeRatePct = 139, + /// /// Energy Shield Delay Recovery Increase /// - EnergyShieldDelayPct = 140, - + EnergyShieldDelayPct = 140, + /// /// Cannot be Damaged /// - CannotBeDamaged = 141, - + CannotBeDamaged = 141, + /// /// Resist all Elements /// - BaseResistAllElementsPct = 142, - + BaseResistAllElementsPct = 142, + /// /// Additional Elemental Resistance per Endurance Charge /// - ResistAllElementsPctPerEnduranceCharge = 143, - + ResistAllElementsPctPerEnduranceCharge = 143, + /// /// maximum_fire_damage_resistance_% /// - MaximumFireDamageResistancePct = 144, - + MaximumFireDamageResistancePct = 144, + /// /// Base Fire Damage Resistance % /// - BaseFireDamageResistancePct = 145, - + BaseFireDamageResistancePct = 145, + /// /// maximum_cold_damage_resistance_% /// - MaximumColdDamageResistancePct = 146, - + MaximumColdDamageResistancePct = 146, + /// /// Base Cold Damage Resistance % /// - BaseColdDamageResistancePct = 147, - + BaseColdDamageResistancePct = 147, + /// /// maximum_lightning_damage_resistance_% /// - MaximumLightningDamageResistancePct = 148, - + MaximumLightningDamageResistancePct = 148, + /// /// Base Lightning Damage Resistance % /// - BaseLightningDamageResistancePct = 149, - + BaseLightningDamageResistancePct = 149, + /// /// maximum_chaos_damage_resistance_% /// - MaximumChaosDamageResistancePct = 150, - + MaximumChaosDamageResistancePct = 150, + /// /// Base Chaos Damage Resistance % /// - BaseChaosDamageResistancePct = 151, - + BaseChaosDamageResistancePct = 151, + /// /// Increased Item Quantity % /// - BaseItemFoundQuantityPct = 152, - + BaseItemFoundQuantityPct = 152, + /// /// chest_item_quantity_+% /// - ChestItemQuantityPct = 153, - + ChestItemQuantityPct = 153, + /// /// Base Item Found Rarity +% /// - BaseItemFoundRarityPct = 154, - + BaseItemFoundRarityPct = 154, + /// /// chest_item_rarity_+% /// - ChestItemRarityPct = 155, - + ChestItemRarityPct = 155, + /// /// item_found_quality_+% /// - ItemFoundQualityPct = 156, - + ItemFoundQualityPct = 156, + /// /// item_found_relevancy_+% /// - ItemFoundRelevancyPct = 157, - + ItemFoundRelevancyPct = 157, + /// /// Experience Gain increase /// - ExperienceGainPct = 158, - + ExperienceGainPct = 158, + /// /// Experience Loss on Death /// - ExperienceLossOnDeathPct = 159, - + ExperienceLossOnDeathPct = 159, + /// /// Minion Life Increase /// - MinionMaximumLifePct = 160, - + MinionMaximumLifePct = 160, + /// /// Spectre Life Increase /// - BaseSpectreMaximumLifePct = 161, - + BaseSpectreMaximumLifePct = 161, + /// /// Zombie Life Increase /// - BaseZombieMaximumLifePct = 162, - + BaseZombieMaximumLifePct = 162, + /// /// Fire Elemental Life Increase /// - BaseFireElementalMaximumLifePct = 163, - + BaseFireElementalMaximumLifePct = 163, + /// /// Raven Life Increase /// - BaseRavenMaximumLifePct = 164, - + BaseRavenMaximumLifePct = 164, + /// /// Spectre Quantity /// - BaseNumberOfSpectresAllowed = 165, - + BaseNumberOfSpectresAllowed = 165, + /// /// Zombie Quantity /// - BaseNumberOfZombiesAllowed = 166, - + BaseNumberOfZombiesAllowed = 166, + /// /// Totem Life increase /// - TotemLifePct = 167, - + TotemLifePct = 167, + /// /// Totem Range increase /// - TotemRangePct = 168, - + TotemRangePct = 168, + /// /// Buff Duration Increase /// - BuffDurationPct = 169, - + BuffDurationPct = 169, + /// /// Buff Affects Party /// - BuffAffectsParty = 170, - + BuffAffectsParty = 170, + /// /// Buff Affects Party Radius /// - BuffPartyEffectRadiusPct = 171, - + BuffPartyEffectRadiusPct = 171, + /// /// Projectiles do not Chain /// - DoNotChain = 172, - + DoNotChain = 172, + /// /// Additional Chains /// - NumberOfChains = 173, - + NumberOfChains = 173, + /// /// Additional Projectiles /// - NumberOfAdditionalProjectiles = 174, - + NumberOfAdditionalProjectiles = 174, + /// /// Additional Arrows /// - BaseNumberOfAdditionalArrows = 175, - + BaseNumberOfAdditionalArrows = 175, + /// /// Base Projectile Speed +% /// - BaseProjectileSpeedPct = 176, - + BaseProjectileSpeedPct = 176, + /// /// Arrow speed increase /// - BaseArrowSpeedPct = 177, - + BaseArrowSpeedPct = 177, + /// /// Base Movement Velocity +% /// - BaseMovementVelocityPct = 178, - + BaseMovementVelocityPct = 178, + /// /// Movement Speed increase per Frenzy Charge /// - MovementVelocityPctPerFrenzyCharge = 179, - + MovementVelocityPctPerFrenzyCharge = 179, + /// /// Maximum Endurance Charges /// - MaxEnduranceCharges = 180, - + MaxEnduranceCharges = 180, + /// /// Maximum Frenzy Charges /// - MaxFrenzyCharges = 181, - + MaxFrenzyCharges = 181, + /// /// Maximum Power Charges /// - MaxPowerCharges = 182, - + MaxPowerCharges = 182, + /// /// Add Endurance Charge on Critical Strike /// - AddEnduranceChargeOnCriticalStrike = 183, - + AddEnduranceChargeOnCriticalStrike = 183, + /// /// add_frenzy_charge_on_critical_strike /// - AddFrenzyChargeOnCriticalStrike = 184, - + AddFrenzyChargeOnCriticalStrike = 184, + /// /// add_power_charge_on_critical_strike /// - AddPowerChargeOnCriticalStrike = 185, - + AddPowerChargeOnCriticalStrike = 185, + /// /// add_endurance_charge_on_skill_hit_% /// - AddEnduranceChargeOnSkillHitPct = 186, - + AddEnduranceChargeOnSkillHitPct = 186, + /// /// add_frenzy_charge_on_skill_hit_% /// - AddFrenzyChargeOnSkillHitPct = 187, - + AddFrenzyChargeOnSkillHitPct = 187, + /// /// add_power_charge_on_skill_hit_% /// - AddPowerChargeOnSkillHitPct = 188, - + AddPowerChargeOnSkillHitPct = 188, + /// /// add_endurance_charge_on_enemy_critical_strike /// - AddEnduranceChargeOnEnemyCriticalStrike = 189, - + AddEnduranceChargeOnEnemyCriticalStrike = 189, + /// /// add_endurance_charge_on_status_ailment /// - AddEnduranceChargeOnStatusAilment = 190, - + AddEnduranceChargeOnStatusAilment = 190, + /// /// Chill Avoidance /// - BaseAvoidChillPct = 191, - + BaseAvoidChillPct = 191, + /// /// Freeze Avoidance /// - BaseAvoidFreezePct = 192, - + BaseAvoidFreezePct = 192, + /// /// Ignite Avoidance /// - BaseAvoidIgnitePct = 193, - + BaseAvoidIgnitePct = 193, + /// /// Shock Avoidance /// - BaseAvoidShockPct = 194, - + BaseAvoidShockPct = 194, + /// /// Stun Avoidance /// - AvoidStunPct = 195, - + AvoidStunPct = 195, + /// /// Always Ignite Targets /// - AlwaysIgnite = 196, - + AlwaysIgnite = 196, + /// /// Always Shock Targets /// - AlwaysShock = 197, - + AlwaysShock = 197, + /// /// Always Stun Targets /// - AlwaysStun = 198, - + AlwaysStun = 198, + /// /// Always Freeze Targets /// - AlwaysFreeze = 199, - + AlwaysFreeze = 199, + /// /// Chill Duration Increase /// - ChillDurationPct = 200, - + ChillDurationPct = 200, + /// /// Shock Duration Increase /// - ShockDurationPct = 201, - + ShockDurationPct = 201, + /// /// Freeze Duration Increase /// - FreezeDurationPct = 202, - + FreezeDurationPct = 202, + /// /// Ignite Duration Increase /// - IgniteDurationPct = 203, - + IgniteDurationPct = 203, + /// /// Stun Duration Increase /// - StunDurationPct = 204, - + StunDurationPct = 204, + /// /// base_self_chill_duration_-% /// - BaseSelfChillDurationPct = 205, - + BaseSelfChillDurationPct = 205, + /// /// base_self_shock_duration_-% /// - BaseSelfShockDurationPct = 206, - + BaseSelfShockDurationPct = 206, + /// /// base_self_freeze_duration_-% /// - BaseSelfFreezeDurationPct = 207, - + BaseSelfFreezeDurationPct = 207, + /// /// base_self_ignite_duration_-% /// - BaseSelfIgniteDurationPct = 208, - + BaseSelfIgniteDurationPct = 208, + /// /// chance_per_second_of_fire_spreading_between_enemies_% /// - ChancePerSecondOfFireSpreadingBetweenEnemiesPct = 209, - + ChancePerSecondOfFireSpreadingBetweenEnemiesPct = 209, + /// /// Burning Damage Increase /// - BurnDamagePct = 210, - + BurnDamagePct = 210, + /// /// Active Skill Level /// - ActiveSkillLevel = 211, - + ActiveSkillLevel = 211, + /// /// Gem Experience Gain /// - GemExperienceGainPct = 212, - + GemExperienceGainPct = 212, + /// /// Skill Area of Effect Radius Increase /// - SkillAreaOfEffectPct = 213, - + SkillAreaOfEffectPct = 213, + /// /// Mana Cost Reduction /// - BaseManaCostPct = 214, - + BaseManaCostPct = 214, + /// /// Skill Repeat Count /// - SkillRepeatCount = 215, - + SkillRepeatCount = 215, + /// /// Skill Duration /// - SkillEffectDurationPct = 216, - + SkillEffectDurationPct = 216, + /// /// Cast Speed +% /// - BaseCastSpeedPct = 217, - + BaseCastSpeedPct = 217, + /// /// Cast Speed increase per Power Charge /// - CastSpeedPctPerPowerCharge = 218, - + CastSpeedPctPerPowerCharge = 218, + /// /// Skill Cooldown Reduction /// - SkillCooldownPct = 219, - + SkillCooldownPct = 219, + /// /// avoid_interruption_while_casting_% /// - AvoidInterruptionWhileCastingPct = 220, - + AvoidInterruptionWhileCastingPct = 220, + /// /// Additional Targets /// - BaseAttackRepeatCount = 221, - + BaseAttackRepeatCount = 221, + /// /// Base Stun Recovery +% /// - BaseStunRecoveryPct = 222, - + BaseStunRecoveryPct = 222, + /// /// Stun Recovery increase per Frenzy Charge /// - StunRecoveryPctPerFrenzyCharge = 223, - + StunRecoveryPctPerFrenzyCharge = 223, + /// /// while_using_sword_reduce_enemy_block_% /// - WhileUsingSwordReduceEnemyBlockPct = 224, - + WhileUsingSwordReduceEnemyBlockPct = 224, + /// /// Prevent Monster Heal /// - PreventMonsterHeal = 225, - + PreventMonsterHeal = 225, + /// /// Prevent Monster Heal Duration /// - PreventMonsterHealDurationPct = 226, - + PreventMonsterHealDurationPct = 226, + /// /// chest_trap_defuse_% /// - ChestTrapDefusePct = 227, - + ChestTrapDefusePct = 227, + /// /// enemies_chill_as_unfrozen /// - EnemiesChillAsUnfrozen = 228, - + EnemiesChillAsUnfrozen = 228, + /// /// shocks_enemies_that_hit_actor_while_actor_is_casting /// - ShocksEnemiesThatHitActorWhileActorIsCasting = 229, - + ShocksEnemiesThatHitActorWhileActorIsCasting = 229, + /// /// local_is_max_quality /// - LocalIsMaxQuality = 230, - + LocalIsMaxQuality = 230, + /// /// local_disable_gem_experience_gain /// - LocalDisableGemExperienceGain = 231, - + LocalDisableGemExperienceGain = 231, + /// /// local_gem_experience_gain_+% /// - LocalGemExperienceGainPct = 232, - + LocalGemExperienceGainPct = 232, + /// /// local_extra_socket /// - LocalExtraSocket = 233, - + LocalExtraSocket = 233, + /// /// local_level_requirement_- /// - LocalLevelRequirement = 234, - + LocalLevelRequirement = 234, + /// /// Local Attribute Requirements +% /// - LocalAttributeRequirementsPct = 235, - + LocalAttributeRequirementsPct = 235, + /// /// local_all_sockets_are_white /// - LocalAllSocketsAreWhite = 236, - + LocalAllSocketsAreWhite = 236, + /// /// local_quantity_of_sockets_+% /// - LocalQuantityOfSocketsPct = 237, - + LocalQuantityOfSocketsPct = 237, + /// /// local_connectivity_of_sockets_+% /// - LocalConnectivityOfSocketsPct = 238, - + LocalConnectivityOfSocketsPct = 238, + /// /// local_gem_level_+ /// - LocalGemLevel = 239, - + LocalGemLevel = 239, + /// /// Block Chance /// - CombinedBaseBlockPct = 240, - + CombinedBaseBlockPct = 240, + /// /// Armour /// - PhysicalDamageReductionRating = 241, - + PhysicalDamageReductionRating = 241, + /// /// Chance to Block Spells /// - SpellBlockPct = 242, - + SpellBlockPct = 242, + /// /// Movement Velocity +% /// - MovementVelocityPct = 243, - + MovementVelocityPct = 243, + /// /// is_dual_wielding /// - IsDualWielding = 244, - + IsDualWielding = 244, + /// /// Life /// - MaximumLife = 245, - + MaximumLife = 245, + /// /// Mana /// - MaximumMana = 246, - + MaximumMana = 246, + /// /// Energy Shield /// - MaximumEnergyShield = 247, - + MaximumEnergyShield = 247, + /// /// life_regeneration_rate_per_minute /// - LifeRegenerationRatePerMinute = 248, - + LifeRegenerationRatePerMinute = 248, + /// /// mana_regeneration_rate_per_minute /// - ManaRegenerationRatePerMinute = 249, - + ManaRegenerationRatePerMinute = 249, + /// /// energy_shield_recharge_rate_per_minute /// - EnergyShieldRechargeRatePerMinute = 250, - + EnergyShieldRechargeRatePerMinute = 250, + /// /// spell_minimum_cold_damage /// - SpellMinimumColdDamage = 251, - + SpellMinimumColdDamage = 251, + /// /// spell_maximum_cold_damage /// - SpellMaximumColdDamage = 252, - + SpellMaximumColdDamage = 252, + /// /// spell_minimum_fire_damage /// - SpellMinimumFireDamage = 253, - + SpellMinimumFireDamage = 253, + /// /// spell_maximum_fire_damage /// - SpellMaximumFireDamage = 254, - + SpellMaximumFireDamage = 254, + /// /// spell_minimum_lightning_damage /// - SpellMinimumLightningDamage = 255, - + SpellMinimumLightningDamage = 255, + /// /// spell_minimum_chaos_damage /// - SpellMinimumChaosDamage = 256, - + SpellMinimumChaosDamage = 256, + /// /// spell_maximum_lightning_damage /// - SpellMaximumLightningDamage = 257, - + SpellMaximumLightningDamage = 257, + /// /// spell_maximum_chaos_damage /// - SpellMaximumChaosDamage = 258, - + SpellMaximumChaosDamage = 258, + /// /// spell_minimum_physical_damage /// - SpellMinimumPhysicalDamage = 259, - + SpellMinimumPhysicalDamage = 259, + /// /// spell_maximum_physical_damage /// - SpellMaximumPhysicalDamage = 260, - + SpellMaximumPhysicalDamage = 260, + /// /// main_hand_minimum_cold_damage /// - MainHandMinimumColdDamage = 261, - + MainHandMinimumColdDamage = 261, + /// /// main_hand_maximum_cold_damage /// - MainHandMaximumColdDamage = 262, - + MainHandMaximumColdDamage = 262, + /// /// off_hand_minimum_cold_damage /// - OffHandMinimumColdDamage = 263, - + OffHandMinimumColdDamage = 263, + /// /// off_hand_maximum_cold_damage /// - OffHandMaximumColdDamage = 264, - + OffHandMaximumColdDamage = 264, + /// /// main_hand_minimum_fire_damage /// - MainHandMinimumFireDamage = 265, - + MainHandMinimumFireDamage = 265, + /// /// main_hand_maximum_fire_damage /// - MainHandMaximumFireDamage = 266, - + MainHandMaximumFireDamage = 266, + /// /// off_hand_minimum_fire_damage /// - OffHandMinimumFireDamage = 267, - + OffHandMinimumFireDamage = 267, + /// /// off_hand_maximum_fire_damage /// - OffHandMaximumFireDamage = 268, - + OffHandMaximumFireDamage = 268, + /// /// main_hand_minimum_lightning_damage /// - MainHandMinimumLightningDamage = 269, - + MainHandMinimumLightningDamage = 269, + /// /// main_hand_maximum_lightning_damage /// - MainHandMaximumLightningDamage = 270, - + MainHandMaximumLightningDamage = 270, + /// /// off_hand_minimum_lightning_damage /// - OffHandMinimumLightningDamage = 271, - + OffHandMinimumLightningDamage = 271, + /// /// off_hand_maximum_lightning_damage /// - OffHandMaximumLightningDamage = 272, - + OffHandMaximumLightningDamage = 272, + /// /// main_hand_minimum_chaos_damage /// - MainHandMinimumChaosDamage = 273, - + MainHandMinimumChaosDamage = 273, + /// /// main_hand_maximum_chaos_damage /// - MainHandMaximumChaosDamage = 274, - + MainHandMaximumChaosDamage = 274, + /// /// off_hand_minimum_chaos_damage /// - OffHandMinimumChaosDamage = 275, - + OffHandMinimumChaosDamage = 275, + /// /// off_hand_maximum_chaos_damage /// - OffHandMaximumChaosDamage = 276, - + OffHandMaximumChaosDamage = 276, + /// /// main_hand_minimum_physical_damage /// - MainHandMinimumPhysicalDamage = 277, - + MainHandMinimumPhysicalDamage = 277, + /// /// main_hand_maximum_physical_damage /// - MainHandMaximumPhysicalDamage = 278, - + MainHandMaximumPhysicalDamage = 278, + /// /// off_hand_minimum_physical_damage /// - OffHandMinimumPhysicalDamage = 279, - + OffHandMinimumPhysicalDamage = 279, + /// /// off_hand_maximum_physical_damage /// - OffHandMaximumPhysicalDamage = 280, - + OffHandMaximumPhysicalDamage = 280, + /// /// Block and Stun Recovery +% /// - StunRecoveryPct = 281, - + StunRecoveryPct = 281, + /// /// Evasion Rating /// - EvasionRating = 282, - + EvasionRating = 282, + /// /// Main Hand Enemy Block Reduction /// - MainHandReduceEnemyBlockPct = 283, - + MainHandReduceEnemyBlockPct = 283, + /// /// Off Hand Enemy Block Reduction /// - OffHandReduceEnemyBlockPct = 284, - + OffHandReduceEnemyBlockPct = 284, + /// /// main_hand_critical_strike_multiplier_+ /// - MainHandCriticalStrikeMultiplier = 285, - + MainHandCriticalStrikeMultiplier = 285, + /// /// off_hand_critical_strike_multiplier_+ /// - OffHandCriticalStrikeMultiplier = 286, - + OffHandCriticalStrikeMultiplier = 286, + /// /// self_critical_strike_multiplier_+% /// - SelfCriticalStrikeMultiplierPct = 287, - + SelfCriticalStrikeMultiplierPct = 287, + /// /// main_hand_knockback /// - MainHandKnockback = 288, - + MainHandKnockback = 288, + /// /// off_hand_knockback /// - OffHandKnockback = 289, - + OffHandKnockback = 289, + /// /// Main Hand Accuracy Rating /// - MainHandAccuracyRating = 290, - + MainHandAccuracyRating = 290, + /// /// Off Hand Accuracy Rating /// - OffHandAccuracyRating = 291, - + OffHandAccuracyRating = 291, + /// /// Main Hand Attack Speed Increase /// - MainHandAttackSpeedPct = 292, - + MainHandAttackSpeedPct = 292, + /// /// Off Hand Attack Speed Increase /// - OffHandAttackSpeedPct = 293, - + OffHandAttackSpeedPct = 293, + /// /// Cast Speed Increase /// - CastSpeedPct = 294, - + CastSpeedPct = 294, + /// /// spectre_maximum_life_+% /// - SpectreMaximumLifePct = 295, - + SpectreMaximumLifePct = 295, + /// /// zombie_maximum_life_+% /// - ZombieMaximumLifePct = 296, - + ZombieMaximumLifePct = 296, + /// /// fire_elemental_maximum_life_+% /// - FireElementalMaximumLifePct = 297, - + FireElementalMaximumLifePct = 297, + /// /// raven_maximum_life_+% /// - RavenMaximumLifePct = 298, - + RavenMaximumLifePct = 298, + /// /// number_of_additional_arrows /// - NumberOfAdditionalArrows = 299, - + NumberOfAdditionalArrows = 299, + /// /// arrow_speed_+% /// - ArrowSpeedPct = 300, - + ArrowSpeedPct = 300, + /// /// Main Hand Stun Threshold Reduction /// - MainHandStunThresholdReductionPct = 301, - + MainHandStunThresholdReductionPct = 301, + /// /// Off Hand Stun Threshold Reduction /// - OffHandStunThresholdReductionPct = 302, - + OffHandStunThresholdReductionPct = 302, + /// /// Main Hand Life Leech from Physical Attacks /// - MainHandLifeLeechFromPhysicalAttackDamagePermyriad = 303, - + MainHandLifeLeechFromPhysicalAttackDamagePermyriad = 303, + /// /// Off Hand Life Leech from Physical Attacks /// - OffHandLifeLeechFromPhysicalAttackDamagePermyriad = 304, - + OffHandLifeLeechFromPhysicalAttackDamagePermyriad = 304, + /// /// Main Hand Mana Leech from Physical Attacks /// - MainHandManaLeechFromPhysicalAttackDamagePermyriad = 305, - + MainHandManaLeechFromPhysicalAttackDamagePermyriad = 305, + /// /// Off Hand Mana Leech from Physical Attacks /// - OffHandManaLeechFromPhysicalAttackDamagePermyriad = 306, - + OffHandManaLeechFromPhysicalAttackDamagePermyriad = 306, + /// /// Cold Resistance /// - ColdDamageResistancePct = 307, - + ColdDamageResistancePct = 307, + /// /// Fire Resistance /// - FireDamageResistancePct = 308, - + FireDamageResistancePct = 308, + /// /// Lightning Resistance /// - LightningDamageResistancePct = 309, - + LightningDamageResistancePct = 309, + /// /// Chaos Resistance /// - ChaosDamageResistancePct = 310, - + ChaosDamageResistancePct = 310, + /// /// resist_all_elements_% /// - ResistAllElementsPct = 311, - + ResistAllElementsPct = 311, + /// /// Trap Duration increase /// - TrapDurationPct = 312, - + TrapDurationPct = 312, + /// /// Trap Trigger Radius increase /// - TrapTriggerRadiusPct = 313, - + TrapTriggerRadiusPct = 313, + /// /// Trap Throwing Speed increase /// - TrapThrowingSpeedPct = 314, - + TrapThrowingSpeedPct = 314, + /// /// monster_response_time_ms /// - MonsterResponseTimeMs = 315, - + MonsterResponseTimeMs = 315, + /// /// skill_internal_monster_responsiveness_+% /// - SkillInternalMonsterResponsivenessPct = 316, - + SkillInternalMonsterResponsivenessPct = 316, + /// /// endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry /// - EnduranceChargesGrantedPerOneHundredNearbyEnemiesDuringEnduranceWarcry = 317, - + EnduranceChargesGrantedPerOneHundredNearbyEnemiesDuringEnduranceWarcry = 317, + /// /// skill_range_+% /// - SkillRangePct = 318, - + SkillRangePct = 318, + /// /// skill_visual_scale_+% /// - SkillVisualScalePct = 319, - + SkillVisualScalePct = 319, + /// /// imp_variation /// - ImpVariation = 320, - + ImpVariation = 320, + /// /// main_hand_base_weapon_attack_duration_ms /// - MainHandBaseWeaponAttackDurationMs = 321, - + MainHandBaseWeaponAttackDurationMs = 321, + /// /// off_hand_base_weapon_attack_duration_ms /// - OffHandBaseWeaponAttackDurationMs = 322, - + OffHandBaseWeaponAttackDurationMs = 322, + /// /// main_hand_minimum_attack_distance /// - MainHandMinimumAttackDistance = 323, - + MainHandMinimumAttackDistance = 323, + /// /// off_hand_minimum_attack_distance /// - OffHandMinimumAttackDistance = 324, - + OffHandMinimumAttackDistance = 324, + /// /// main_hand_base_maximum_attack_distance /// - MainHandBaseMaximumAttackDistance = 325, - + MainHandBaseMaximumAttackDistance = 325, + /// /// off_hand_base_maximum_attack_distance /// - OffHandBaseMaximumAttackDistance = 326, - + OffHandBaseMaximumAttackDistance = 326, + /// /// main_hand_quality /// - MainHandQuality = 327, - + MainHandQuality = 327, + /// /// off_hand_quality /// - OffHandQuality = 328, - + OffHandQuality = 328, + /// /// base_spell_critical_strike_multiplier_+ /// - BaseSpellCriticalStrikeMultiplier = 329, - + BaseSpellCriticalStrikeMultiplier = 329, + /// /// spell_critical_strike_multiplier_+ /// - SpellCriticalStrikeMultiplier = 330, - + SpellCriticalStrikeMultiplier = 330, + /// /// Skill Placed as Trap /// - IsTrap = 331, - + IsTrap = 331, + /// /// Weapon Elemental Damage +% /// - WeaponElementalDamagePct = 332, - + WeaponElementalDamagePct = 332, + /// /// staff_stun_duration_+% /// - StaffStunDurationPct = 333, - + StaffStunDurationPct = 333, + /// /// two_handed_melee_physical_damage_+% /// - TwoHandedMeleePhysicalDamagePct = 334, - + TwoHandedMeleePhysicalDamagePct = 334, + /// /// two_handed_melee_stun_duration_+% /// - TwoHandedMeleeStunDurationPct = 335, - + TwoHandedMeleeStunDurationPct = 335, + /// /// two_handed_melee_attack_speed_+% /// - TwoHandedMeleeAttackSpeedPct = 336, - + TwoHandedMeleeAttackSpeedPct = 336, + /// /// two_handed_melee_accuracy_rating_+% /// - TwoHandedMeleeAccuracyRatingPct = 337, - + TwoHandedMeleeAccuracyRatingPct = 337, + /// /// physical_damage_while_dual_wielding_+% /// - PhysicalDamageWhileDualWieldingPct = 338, - + PhysicalDamageWhileDualWieldingPct = 338, + /// /// one_handed_melee_physical_damage_+% /// - OneHandedMeleePhysicalDamagePct = 339, - + OneHandedMeleePhysicalDamagePct = 339, + /// /// one_handed_melee_attack_speed_+% /// - OneHandedMeleeAttackSpeedPct = 340, - + OneHandedMeleeAttackSpeedPct = 340, + /// /// one_handed_melee_accuracy_rating_+% /// - OneHandedMeleeAccuracyRatingPct = 341, - + OneHandedMeleeAccuracyRatingPct = 341, + /// /// Base Stun Duration +% /// - BaseStunDurationPct = 342, - + BaseStunDurationPct = 342, + /// /// bow_stun_duration_+% /// - BowStunDurationPct = 343, - + BowStunDurationPct = 343, + /// /// Life Gained On Hit /// - BaseLifeGainPerTarget = 344, - + BaseLifeGainPerTarget = 344, + /// /// corpse_explosion_monster_life_% /// - CorpseExplosionMonsterLifePct = 345, - + CorpseExplosionMonsterLifePct = 345, + /// /// skill_level /// - SkillLevel = 346, - + SkillLevel = 346, + /// /// action_speed_-% /// - ActionSpeedPct = 347, - + ActionSpeedPct = 347, + /// /// skill_art_variation /// - SkillArtVariation = 348, - + SkillArtVariation = 348, + /// /// always_crit /// - AlwaysCrit = 349, - + AlwaysCrit = 349, + /// /// damage_infusion_% /// - DamageInfusionPct = 350, - + DamageInfusionPct = 350, + /// /// chaos_damage_taken_per_minute /// - ChaosDamageTakenPerMinute = 351, - + ChaosDamageTakenPerMinute = 351, + /// /// base_fire_damage_to_deal_per_minute /// - BaseFireDamageToDealPerMinute = 352, - + BaseFireDamageToDealPerMinute = 352, + /// /// add_frenzy_charge_on_kill /// - AddFrenzyChargeOnKill = 353, - + AddFrenzyChargeOnKill = 353, + /// /// base_fire_damage_to_deal_to_nearby_per_minute /// - BaseFireDamageToDealToNearbyPerMinute = 354, - + BaseFireDamageToDealToNearbyPerMinute = 354, + /// /// base_physical_damage_taken_per_minute /// - BasePhysicalDamageTakenPerMinute = 355, - + BasePhysicalDamageTakenPerMinute = 355, + /// /// spell_minimum_base_lightning_damage_per_removable_power_charge /// - SpellMinimumBaseLightningDamagePerRemovablePowerCharge = 356, - + SpellMinimumBaseLightningDamagePerRemovablePowerCharge = 356, + /// /// spell_maximum_base_lightning_damage_per_removable_power_charge /// - SpellMaximumBaseLightningDamagePerRemovablePowerCharge = 357, - + SpellMaximumBaseLightningDamagePerRemovablePowerCharge = 357, + /// /// base_skill_effect_duration /// - BaseSkillEffectDuration = 358, - + BaseSkillEffectDuration = 358, + /// /// skill_effect_duration /// - SkillEffectDuration = 359, - + SkillEffectDuration = 359, + /// /// buff_effect_duration /// - BuffEffectDuration = 360, - + BuffEffectDuration = 360, + /// /// Buff/Debuff Duration increase per Endurance Charge /// - BuffEffectDurationPctPerRemovableEnduranceCharge = 361, - + BuffEffectDurationPctPerRemovableEnduranceCharge = 361, + /// /// Buff/Debuff Duration increase per Endurance Charge /// - BuffEffectDurationPctPerRemovableEnduranceChargeLimitedTo5 = 362, - + BuffEffectDurationPctPerRemovableEnduranceChargeLimitedTo5 = 362, + /// /// Local Base Evasion Rating /// - LocalBaseEvasionRating = 363, - + LocalBaseEvasionRating = 363, + /// /// Local Base Physical Damage Reduction Rating /// - LocalBasePhysicalDamageReductionRating = 364, - + LocalBasePhysicalDamageReductionRating = 364, + /// /// Attack Speed increase per Frenzy Charge /// - BaseAttackSpeedPctPerFrenzyCharge = 365, - + BaseAttackSpeedPctPerFrenzyCharge = 365, + /// /// Physical Damage increase per Frenzy Charge /// - PhysicalDamagePctPerFrenzyCharge = 366, - + PhysicalDamagePctPerFrenzyCharge = 366, + /// /// is_player /// - IsPlayer = 367, - + IsPlayer = 367, + /// /// life_per_level /// - LifePerLevel = 368, - + LifePerLevel = 368, + /// /// mana_per_level /// - ManaPerLevel = 369, - + ManaPerLevel = 369, + /// /// backstab_damage_+% /// - BackstabDamagePct = 370, - + BackstabDamagePct = 370, + /// /// additional_player_bonus_maximum_life_+%_final /// - AdditionalPlayerBonusMaximumLifePctFinal = 371, - + AdditionalPlayerBonusMaximumLifePctFinal = 371, + /// /// intermediary_maximum_life /// - IntermediaryMaximumLife = 372, - + IntermediaryMaximumLife = 372, + /// /// Local Flask Armour +% While Healing /// - LocalFlaskArmourPctWhileHealing = 373, - + LocalFlaskArmourPctWhileHealing = 373, + /// /// Local Flask Evasion +% While Healing /// - LocalFlaskEvasionPctWhileHealing = 374, - + LocalFlaskEvasionPctWhileHealing = 374, + /// /// Local Flask Energy Shield +% While Healing /// - LocalFlaskEnergyShieldPctWhileHealing = 375, - + LocalFlaskEnergyShieldPctWhileHealing = 375, + /// /// Local Flask Movement Speed +% While Healing /// - LocalFlaskMovementSpeedPctWhileHealing = 376, - + LocalFlaskMovementSpeedPctWhileHealing = 376, + /// /// Local Flask Stun Recovery +% While Healing /// - LocalFlaskStunRecoveryPctWhileHealing = 377, - + LocalFlaskStunRecoveryPctWhileHealing = 377, + /// /// Local Flask Resistances +% While Healing /// - LocalFlaskResistancesPctWhileHealing = 378, - + LocalFlaskResistancesPctWhileHealing = 378, + /// /// Local Flask Life Leech % While Healing /// - OldDoNotUseLocalFlaskLifeLeechPctWhileHealing = 379, - + OldDoNotUseLocalFlaskLifeLeechPctWhileHealing = 379, + /// /// Local Flask Mana Leech % While Healing /// - OldDoNotUseLocalFlaskManaLeechPctWhileHealing = 380, - + OldDoNotUseLocalFlaskManaLeechPctWhileHealing = 380, + /// /// Local Flask Adds Knockback While Healing /// - LocalFlaskAddsKnockbackWhileHealing = 381, - + LocalFlaskAddsKnockbackWhileHealing = 381, + /// /// local_flask_removes_%_of_mana_recovery_from_life_on_use /// - LocalFlaskRemovesPctOfManaRecoveryFromLifeOnUse = 382, - + LocalFlaskRemovesPctOfManaRecoveryFromLifeOnUse = 382, + /// /// local_flask_removes_%_of_life_recovery_from_mana_on_use /// - LocalFlaskRemovesPctOfLifeRecoveryFromManaOnUse = 383, - + LocalFlaskRemovesPctOfLifeRecoveryFromManaOnUse = 383, + /// /// local_flask_removes_%_of_life_recovery_from_life_on_use /// - LocalFlaskRemovesPctOfLifeRecoveryFromLifeOnUse = 384, - + LocalFlaskRemovesPctOfLifeRecoveryFromLifeOnUse = 384, + /// /// Local Flask Amount To Recover +% When On Low Life /// - LocalFlaskAmountToRecoverPctWhenOnLowLife = 385, - + LocalFlaskAmountToRecoverPctWhenOnLowLife = 385, + /// /// Local Flask Recover Instantly When On Low Life /// - LocalFlaskRecoverInstantlyWhenOnLowLife = 386, - + LocalFlaskRecoverInstantlyWhenOnLowLife = 386, + /// /// Local Flask Recovery Amount % To Recover Instantly /// - LocalFlaskRecoveryAmountPctToRecoverInstantly = 387, - + LocalFlaskRecoveryAmountPctToRecoverInstantly = 387, + /// /// local_flask_dispels_burning /// - LocalFlaskDispelsBurning = 388, - + LocalFlaskDispelsBurning = 388, + /// /// local_flask_dispels_freeze_and_chill /// - LocalFlaskDispelsFreezeAndChill = 389, - + LocalFlaskDispelsFreezeAndChill = 389, + /// /// local_max_charges_+% /// - LocalMaxChargesPct = 390, - + LocalMaxChargesPct = 390, + /// /// Local Charges Added +% /// - LocalChargesAddedPct = 391, - + LocalChargesAddedPct = 391, + /// /// Local Flask Amount To Recover +% /// - LocalFlaskAmountToRecoverPct = 392, - + LocalFlaskAmountToRecoverPct = 392, + /// /// Local Flask Recovers Instantly /// - LocalFlaskRecoversInstantly = 393, - + LocalFlaskRecoversInstantly = 393, + /// /// Local Flask Minion Heal % /// - LocalFlaskMinionHealPct = 394, - + LocalFlaskMinionHealPct = 394, + /// /// Local Recharge On Crit /// - LocalRechargeOnCrit = 395, - + LocalRechargeOnCrit = 395, + /// /// Local Recharge On Take Crit /// - LocalRechargeOnTakeCrit = 396, - + LocalRechargeOnTakeCrit = 396, + /// /// local_critical_strike_multiplier_+ /// - LocalCriticalStrikeMultiplier = 397, - + LocalCriticalStrikeMultiplier = 397, + /// /// local_flask_prevents_death_while_healing /// - LocalFlaskPreventsDeathWhileHealing = 398, - + LocalFlaskPreventsDeathWhileHealing = 398, + /// /// Cannot Die /// - CannotDie = 399, - + CannotDie = 399, + /// /// Flask Life Amount +% /// - FlaskLifeToRecoverPct = 400, - + FlaskLifeToRecoverPct = 400, + /// /// Flask Mana Amount +% /// - FlaskManaToRecoverPct = 401, - + FlaskManaToRecoverPct = 401, + /// /// Flask Recovery Speed +% /// - FlaskRecoverySpeedPct = 402, - + FlaskRecoverySpeedPct = 402, + /// /// Knockback Distance +% /// - KnockbackDistancePct = 403, - + KnockbackDistancePct = 403, + /// /// weapon_fire_damage_+% /// - WeaponFireDamagePct = 404, - + WeaponFireDamagePct = 404, + /// /// weapon_cold_damage_+% /// - WeaponColdDamagePct = 405, - + WeaponColdDamagePct = 405, + /// /// weapon_lightning_damage_+% /// - WeaponLightningDamagePct = 406, - + WeaponLightningDamagePct = 406, + /// /// weapon_chaos_damage_+% /// - WeaponChaosDamagePct = 407, - + WeaponChaosDamagePct = 407, + /// /// spell_elemental_damage_+% /// - SpellElementalDamagePct = 408, - + SpellElementalDamagePct = 408, + /// /// resist_all_elements_+%_while_holding_shield /// - ResistAllElementsPctWhileHoldingShield = 409, - + ResistAllElementsPctWhileHoldingShield = 409, + /// /// Staff Block % /// - StaffBlockPct = 410, - + StaffBlockPct = 410, + /// /// attack_minimum_added_lightning_damage_with_wand /// - AttackMinimumAddedLightningDamageWithWand = 411, - + AttackMinimumAddedLightningDamageWithWand = 411, + /// /// attack_maximum_added_lightning_damage_with_wand /// - AttackMaximumAddedLightningDamageWithWand = 412, - + AttackMaximumAddedLightningDamageWithWand = 412, + /// /// attack_minimum_added_fire_damage_with_wand /// - AttackMinimumAddedFireDamageWithWand = 413, - + AttackMinimumAddedFireDamageWithWand = 413, + /// /// attack_maximum_added_fire_damage_with_wand /// - AttackMaximumAddedFireDamageWithWand = 414, - + AttackMaximumAddedFireDamageWithWand = 414, + /// /// attack_minimum_added_cold_damage_with_wand /// - AttackMinimumAddedColdDamageWithWand = 415, - + AttackMinimumAddedColdDamageWithWand = 415, + /// /// attack_maximum_added_cold_damage_with_wand /// - AttackMaximumAddedColdDamageWithWand = 416, - + AttackMaximumAddedColdDamageWithWand = 416, + /// /// wand_elemental_damage_+% /// - WandElementalDamagePct = 417, - + WandElementalDamagePct = 417, + /// /// chance_to_gain_endurance_charge_on_block_% /// - ChanceToGainEnduranceChargeOnBlockPct = 418, - + ChanceToGainEnduranceChargeOnBlockPct = 418, + /// /// Endurance Charge duration increase /// - EnduranceChargeDurationPct = 419, - + EnduranceChargeDurationPct = 419, + /// /// share_endurance_charges_with_party_within_distance /// - ShareEnduranceChargesWithPartyWithinDistance = 420, - + ShareEnduranceChargesWithPartyWithinDistance = 420, + /// /// add_frenzy_charge_on_enemy_block /// - AddFrenzyChargeOnEnemyBlock = 421, - + AddFrenzyChargeOnEnemyBlock = 421, + /// /// Frenzy Charge duration increase /// - BaseFrenzyChargeDurationPct = 422, - + BaseFrenzyChargeDurationPct = 422, + /// /// share_frenzy_charges_with_party_within_distance /// - ShareFrenzyChargesWithPartyWithinDistance = 423, - + ShareFrenzyChargesWithPartyWithinDistance = 423, + /// /// add_power_charge_on_minion_death /// - AddPowerChargeOnMinionDeath = 424, - + AddPowerChargeOnMinionDeath = 424, + /// /// Area of Effect increase per Power Charge /// - SkillAreaOfEffectPctPerPowerCharge = 425, - + SkillAreaOfEffectPctPerPowerCharge = 425, + /// /// Spell Damage increase per Power Charge /// - SpellDamagePctPerPowerCharge = 426, - + SpellDamagePctPerPowerCharge = 426, + /// /// Wand Damage increase per Power Charge /// - WandDamagePctPerPowerCharge = 427, - + WandDamagePctPerPowerCharge = 427, + /// /// Power Charge duration Increase /// - PowerChargeDurationPct = 428, - + PowerChargeDurationPct = 428, + /// /// share_power_charges_with_party_within_distance /// - SharePowerChargesWithPartyWithinDistance = 429, - + SharePowerChargesWithPartyWithinDistance = 429, + /// /// minions_explode_on_low_life_maximum_life_%_to_deal /// - MinionsExplodeOnLowLifeMaximumLifePctToDeal = 430, - + MinionsExplodeOnLowLifeMaximumLifePctToDeal = 430, + /// /// Totem Duration increase /// - TotemDurationPct = 431, - + TotemDurationPct = 431, + /// /// buff_effect_on_self_+% /// - BuffEffectOnSelfPct = 432, - + BuffEffectOnSelfPct = 432, + /// /// add_power_charge_when_interrupted_while_casting /// - AddPowerChargeWhenInterruptedWhileCasting = 433, - + AddPowerChargeWhenInterruptedWhileCasting = 433, + /// /// add_power_charge_when_kill_shocked_enemy /// - AddPowerChargeWhenKillShockedEnemy = 434, - + AddPowerChargeWhenKillShockedEnemy = 434, + /// /// Base Skill Area Of Effect +% /// - BaseSkillAreaOfEffectPct = 435, - + BaseSkillAreaOfEffectPct = 435, + /// /// casting_spell /// - CastingSpell = 436, - + CastingSpell = 436, + /// /// avoid_interruption_% /// - AvoidInterruptionPct = 437, - + AvoidInterruptionPct = 437, + /// /// shocks_enemies_that_hit_actor /// - ShocksEnemiesThatHitActor = 438, - + ShocksEnemiesThatHitActor = 438, + /// /// add_power_charge_when_interrupted /// - AddPowerChargeWhenInterrupted = 439, - + AddPowerChargeWhenInterrupted = 439, + /// /// attack_minimum_base_fire_damage_for_elemental_hit /// - AttackMinimumBaseFireDamageForElementalHit = 440, - + AttackMinimumBaseFireDamageForElementalHit = 440, + /// /// attack_maximum_base_fire_damage_for_elemental_hit /// - AttackMaximumBaseFireDamageForElementalHit = 441, - + AttackMaximumBaseFireDamageForElementalHit = 441, + /// /// attack_minimum_base_cold_damage_for_elemental_hit /// - AttackMinimumBaseColdDamageForElementalHit = 442, - + AttackMinimumBaseColdDamageForElementalHit = 442, + /// /// attack_maximum_base_cold_damage_for_elemental_hit /// - AttackMaximumBaseColdDamageForElementalHit = 443, - + AttackMaximumBaseColdDamageForElementalHit = 443, + /// /// attack_minimum_base_lightning_damage_for_elemental_hit /// - AttackMinimumBaseLightningDamageForElementalHit = 444, - + AttackMinimumBaseLightningDamageForElementalHit = 444, + /// /// attack_maximum_base_lightning_damage_for_elemental_hit /// - AttackMaximumBaseLightningDamageForElementalHit = 445, - + AttackMaximumBaseLightningDamageForElementalHit = 445, + /// /// additional_physical_damage_reduction_% /// - AdditionalPhysicalDamageReductionPct = 446, - + AdditionalPhysicalDamageReductionPct = 446, + /// /// Physical Damage Reduction per Endurance Charge /// - PhysicalDamageReductionPctPerEnduranceCharge = 447, - + PhysicalDamageReductionPctPerEnduranceCharge = 447, + /// /// physical_damage_%_to_add_as_fire /// - PhysicalDamagePctToAddAsFire = 448, - + PhysicalDamagePctToAddAsFire = 448, + /// /// physical_damage_%_to_add_as_cold /// - PhysicalDamagePctToAddAsCold = 449, - + PhysicalDamagePctToAddAsCold = 449, + /// /// physical_damage_%_to_add_as_lightning /// - PhysicalDamagePctToAddAsLightning = 450, - + PhysicalDamagePctToAddAsLightning = 450, + /// /// physical_damage_%_to_add_as_chaos /// - PhysicalDamagePctToAddAsChaos = 451, - + PhysicalDamagePctToAddAsChaos = 451, + /// /// life_regeneration_rate_per_minute_% /// - LifeRegenerationRatePerMinutePct = 452, - + LifeRegenerationRatePerMinutePct = 452, + /// /// base_chaos_damage_%_of_maximum_life_taken_per_minute /// - BaseChaosDamagePctOfMaximumLifeTakenPerMinute = 453, - + BaseChaosDamagePctOfMaximumLifeTakenPerMinute = 453, + /// /// base_chaos_damage_taken_per_minute /// - BaseChaosDamageTakenPerMinute = 454, - + BaseChaosDamageTakenPerMinute = 454, + /// /// add_level_X_blood_rage_on_kill /// - AddLevelXBloodRageOnKill = 455, - + AddLevelXBloodRageOnKill = 455, + /// /// base_chance_to_freeze_% /// - BaseChanceToFreezePct = 456, - + BaseChanceToFreezePct = 456, + /// /// display_mana_cost_reduction_% /// - DisplayManaCostReductionPct = 457, - + DisplayManaCostReductionPct = 457, + /// /// display_minion_monster_level /// - DisplayMinionMonsterLevel = 458, - + DisplayMinionMonsterLevel = 458, + /// /// display_minion_monster_type /// - DisplayMinionMonsterType = 459, - + DisplayMinionMonsterType = 459, + /// /// monster_slain_flask_charges_granted_+% /// - MonsterSlainFlaskChargesGrantedPct = 460, - + MonsterSlainFlaskChargesGrantedPct = 460, + /// /// Flask Charges Gained +% /// - ChargesGainedPct = 461, - + ChargesGainedPct = 461, + /// /// Knockback on Critical Strike /// - GlobalKnockbackOnCrit = 462, - + GlobalKnockbackOnCrit = 462, + /// /// dummy_stat_display_nothing /// - DummyStatDisplayNothing = 463, - + DummyStatDisplayNothing = 463, + /// /// shield_charge_extra_distance /// - ShieldChargeExtraDistance = 464, - + ShieldChargeExtraDistance = 464, + /// /// shield_charge_end_slide_distance /// - ShieldChargeEndSlideDistance = 465, - + ShieldChargeEndSlideDistance = 465, + /// /// Main Hand Knockback on Critical Strike /// - MainHandKnockbackOnCrit = 466, - + MainHandKnockbackOnCrit = 466, + /// /// Off Hand Knockback on Critical Strike /// - OffHandKnockbackOnCrit = 467, - + OffHandKnockbackOnCrit = 467, + /// /// knockback_on_crit_with_staff /// - KnockbackOnCritWithStaff = 468, - + KnockbackOnCritWithStaff = 468, + /// /// knockback_on_crit_with_bow /// - KnockbackOnCritWithBow = 469, - + KnockbackOnCritWithBow = 469, + /// /// knockback_on_crit_with_wand /// - KnockbackOnCritWithWand = 470, - + KnockbackOnCritWithWand = 470, + /// /// shield_charge_stun_duration_+%_maximum /// - ShieldChargeStunDurationPctMaximum = 471, - + ShieldChargeStunDurationPctMaximum = 471, + /// /// shield_charge_knockback_distance_+%_maximum /// - ShieldChargeKnockbackDistancePctMaximum = 472, - + ShieldChargeKnockbackDistancePctMaximum = 472, + /// /// shield_charge_damage_+%_maximum /// - ShieldChargeDamagePctMaximum = 473, - + ShieldChargeDamagePctMaximum = 473, + /// /// spell_minimum_base_fire_damage_per_removable_endurance_charge /// - SpellMinimumBaseFireDamagePerRemovableEnduranceCharge = 474, - + SpellMinimumBaseFireDamagePerRemovableEnduranceCharge = 474, + /// /// spell_maximum_base_fire_damage_per_removable_endurance_charge /// - SpellMaximumBaseFireDamagePerRemovableEnduranceCharge = 475, - + SpellMaximumBaseFireDamagePerRemovableEnduranceCharge = 475, + /// /// spell_minimum_base_cold_damage_per_removable_frenzy_charge /// - SpellMinimumBaseColdDamagePerRemovableFrenzyCharge = 476, - + SpellMinimumBaseColdDamagePerRemovableFrenzyCharge = 476, + /// /// spell_maximum_base_cold_damage_per_removable_frenzy_charge /// - SpellMaximumBaseColdDamagePerRemovableFrenzyCharge = 477, - + SpellMaximumBaseColdDamagePerRemovableFrenzyCharge = 477, + /// /// base_damage_taken_+% /// - BaseDamageTakenPct = 478, - + BaseDamageTakenPct = 478, + /// /// is_shocked /// - IsShocked = 479, - + IsShocked = 479, + /// /// base_global_chance_to_knockback_% /// - BaseGlobalChanceToKnockbackPct = 480, - + BaseGlobalChanceToKnockbackPct = 480, + /// /// main_hand_chance_to_knockback_% /// - MainHandChanceToKnockbackPct = 481, - + MainHandChanceToKnockbackPct = 481, + /// /// off_hand_chance_to_knockback_% /// - OffHandChanceToKnockbackPct = 482, - + OffHandChanceToKnockbackPct = 482, + /// /// base_physical_damage_%_to_convert_to_fire /// - BasePhysicalDamagePctToConvertToFire = 483, - + BasePhysicalDamagePctToConvertToFire = 483, + /// /// base_physical_damage_%_to_convert_to_cold /// - BasePhysicalDamagePctToConvertToCold = 484, - + BasePhysicalDamagePctToConvertToCold = 484, + /// /// base_physical_damage_%_to_convert_to_lightning /// - BasePhysicalDamagePctToConvertToLightning = 485, - + BasePhysicalDamagePctToConvertToLightning = 485, + /// /// base_physical_damage_%_to_convert_to_chaos /// - BasePhysicalDamagePctToConvertToChaos = 486, - + BasePhysicalDamagePctToConvertToChaos = 486, + /// /// Elemental Damage +% /// - ElementalDamagePct = 487, - + ElementalDamagePct = 487, + /// /// Mana Regeneration rate increase per Power Charge /// - ManaRegenerationRatePctPerPowerCharge = 488, - + ManaRegenerationRatePctPerPowerCharge = 488, + /// /// Minion Damage increase /// - MinionDamagePct = 489, - + MinionDamagePct = 489, + /// /// shield_maximum_energy_shield_+% /// - ShieldMaximumEnergyShieldPct = 490, - + ShieldMaximumEnergyShieldPct = 490, + /// /// melee_physical_damage_+% /// - MeleePhysicalDamagePct = 491, - + MeleePhysicalDamagePct = 491, + /// /// maximum_block_% /// - MaximumBlockPct = 492, - + MaximumBlockPct = 492, + /// /// shield_physical_damage_reduction_rating_+% /// - ShieldPhysicalDamageReductionRatingPct = 493, - + ShieldPhysicalDamageReductionRatingPct = 493, + /// /// shield_evasion_rating_+% /// - ShieldEvasionRatingPct = 494, - + ShieldEvasionRatingPct = 494, + /// /// base_shield_evasion_rating /// - BaseShieldEvasionRating = 495, - + BaseShieldEvasionRating = 495, + /// /// base_shield_physical_damage_reduction_rating /// - BaseShieldPhysicalDamageReductionRating = 496, - + BaseShieldPhysicalDamageReductionRating = 496, + /// /// base_shield_maximum_energy_shield /// - BaseShieldMaximumEnergyShield = 497, - + BaseShieldMaximumEnergyShield = 497, + /// /// ranged_weapon_physical_damage_+% /// - RangedWeaponPhysicalDamagePct = 498, - + RangedWeaponPhysicalDamagePct = 498, + /// /// projectile_damage_+% /// - ProjectileDamagePct = 499, - + ProjectileDamagePct = 499, + /// /// base_is_projectile /// - BaseIsProjectile = 500, - + BaseIsProjectile = 500, + /// /// Cast Speed increase per Frenzy Charge /// - BaseCastSpeedPctPerFrenzyCharge = 501, - + BaseCastSpeedPctPerFrenzyCharge = 501, + /// /// sword_accuracy_rating /// - SwordAccuracyRating = 502, - + SwordAccuracyRating = 502, + /// /// bow_accuracy_rating /// - BowAccuracyRating = 503, - + BowAccuracyRating = 503, + /// /// dagger_accuracy_rating /// - DaggerAccuracyRating = 504, - + DaggerAccuracyRating = 504, + /// /// axe_accuracy_rating /// - AxeAccuracyRating = 505, - + AxeAccuracyRating = 505, + /// /// claw_accuracy_rating /// - ClawAccuracyRating = 506, - + ClawAccuracyRating = 506, + /// /// staff_accuracy_rating /// - StaffAccuracyRating = 507, - + StaffAccuracyRating = 507, + /// /// mace_accuracy_rating /// - MaceAccuracyRating = 508, - + MaceAccuracyRating = 508, + /// /// wand_accuracy_rating /// - WandAccuracyRating = 509, - + WandAccuracyRating = 509, + /// /// wall_expand_delay_ms /// - WallExpandDelayMs = 510, - + WallExpandDelayMs = 510, + /// /// wall_maximum_length /// - WallMaximumLength = 511, - + WallMaximumLength = 511, + /// /// main_hand_poison_on_critical_strike /// - MainHandPoisonOnCriticalStrike = 512, - + MainHandPoisonOnCriticalStrike = 512, + /// /// off_hand_poison_on_critical_strike /// - OffHandPoisonOnCriticalStrike = 513, - + OffHandPoisonOnCriticalStrike = 513, + /// /// current_viper_strike_orbs /// - CurrentViperStrikeOrbs = 514, - + CurrentViperStrikeOrbs = 514, + /// /// max_viper_strike_orbs /// - MaxViperStrikeOrbs = 515, - + MaxViperStrikeOrbs = 515, + /// /// monster_chance_to_not_flee_% /// - MonsterChanceToNotFleePct = 516, - + MonsterChanceToNotFleePct = 516, + /// /// Local Socketed Fire Gem Level + /// - LocalSocketedFireGemLevel = 517, - + LocalSocketedFireGemLevel = 517, + /// /// Local Socketed Cold Gem Level + /// - LocalSocketedColdGemLevel = 518, - + LocalSocketedColdGemLevel = 518, + /// /// Local Socketed Lightning Gem Level + /// - LocalSocketedLightningGemLevel = 519, - + LocalSocketedLightningGemLevel = 519, + /// /// local_socketed_chaos_gem_level_+ /// - LocalSocketedChaosGemLevel = 520, - + LocalSocketedChaosGemLevel = 520, + /// /// local_socketed_projectile_gem_level_+ /// - LocalSocketedProjectileGemLevel = 521, - + LocalSocketedProjectileGemLevel = 521, + /// /// local_socketed_spell_gem_level_+ /// - LocalSocketedSpellGemLevel = 522, - + LocalSocketedSpellGemLevel = 522, + /// /// Local Socketed Melee Gem Level + /// - LocalSocketedMeleeGemLevel = 523, - + LocalSocketedMeleeGemLevel = 523, + /// /// Local Socketed Bow Gem Level + /// - LocalSocketedBowGemLevel = 524, - + LocalSocketedBowGemLevel = 524, + /// /// Local Socketed Minion Gem Level + /// - LocalSocketedMinionGemLevel = 525, - + LocalSocketedMinionGemLevel = 525, + /// /// Local Socketed Gem Level + /// - LocalSocketedGemLevel = 526, - + LocalSocketedGemLevel = 526, + /// /// base_killed_monster_dropped_item_rarity_+% /// - BaseKilledMonsterDroppedItemRarityPct = 527, - + BaseKilledMonsterDroppedItemRarityPct = 527, + /// /// base_killed_monster_dropped_item_quantity_+% /// - BaseKilledMonsterDroppedItemQuantityPct = 528, - + BaseKilledMonsterDroppedItemQuantityPct = 528, + /// /// current_fuse_arrow_orbs /// - CurrentFuseArrowOrbs = 529, - + CurrentFuseArrowOrbs = 529, + /// /// max_fuse_arrow_orbs /// - MaxFuseArrowOrbs = 530, - + MaxFuseArrowOrbs = 530, + /// /// minimum_fire_damage_per_fuse_arrow_orb /// - MinimumFireDamagePerFuseArrowOrb = 531, - + MinimumFireDamagePerFuseArrowOrb = 531, + /// /// maximum_fire_damage_per_fuse_arrow_orb /// - MaximumFireDamagePerFuseArrowOrb = 532, - + MaximumFireDamagePerFuseArrowOrb = 532, + /// /// buff_time_passed_+%_other_than_temporal_chains /// - BuffTimePassedPctOtherThanTemporalChains = 533, - + BuffTimePassedPctOtherThanTemporalChains = 533, + /// /// chance_to_be_shocked_% /// - ChanceToBeShockedPct = 534, - + ChanceToBeShockedPct = 534, + /// /// chance_to_be_chilled_% /// - ChanceToBeChilledPct = 535, - + ChanceToBeChilledPct = 535, + /// /// chance_to_be_frozen_% /// - ChanceToBeFrozenPct = 536, - + ChanceToBeFrozenPct = 536, + /// /// chance_to_be_ignited_% /// - ChanceToBeIgnitedPct = 537, - + ChanceToBeIgnitedPct = 537, + /// /// life_leech_on_any_damage_when_hit_permyriad /// - LifeLeechOnAnyDamageWhenHitPermyriad = 538, - + LifeLeechOnAnyDamageWhenHitPermyriad = 538, + /// /// mana_leech_on_any_damage_when_hit_permyriad /// - ManaLeechOnAnyDamageWhenHitPermyriad = 539, - + ManaLeechOnAnyDamageWhenHitPermyriad = 539, + /// /// chance_to_grant_power_charge_on_death_% /// - ChanceToGrantPowerChargeOnDeathPct = 540, - + ChanceToGrantPowerChargeOnDeathPct = 540, + /// /// physical_damage_dealt_applied_to_self_% /// - PhysicalDamageDealtAppliedToSelfPct = 541, - + PhysicalDamageDealtAppliedToSelfPct = 541, + /// /// chance_to_be_knocked_back_% /// - ChanceToBeKnockedBackPct = 542, - + ChanceToBeKnockedBackPct = 542, + /// /// degen_effect_+% /// - DegenEffectPct = 543, - + DegenEffectPct = 543, + /// /// chance_to_be_stunned_% /// - ChanceToBeStunnedPct = 544, - + ChanceToBeStunnedPct = 544, + /// /// chance_to_grant_endurance_charge_on_death_% /// - ChanceToGrantEnduranceChargeOnDeathPct = 545, - + ChanceToGrantEnduranceChargeOnDeathPct = 545, + /// /// physical_damage_taken_+% /// - PhysicalDamageTakenPct = 546, - + PhysicalDamageTakenPct = 546, + /// /// fuse_arrow_explosion_radius_+_per_fuse_arrow_orb /// - FuseArrowExplosionRadiusPerFuseArrowOrb = 547, - + FuseArrowExplosionRadiusPerFuseArrowOrb = 547, + /// /// base_number_of_skeletons_allowed /// - BaseNumberOfSkeletonsAllowed = 548, - + BaseNumberOfSkeletonsAllowed = 548, + /// /// number_of_melee_skeletons_to_summon /// - NumberOfMeleeSkeletonsToSummon = 549, - + NumberOfMeleeSkeletonsToSummon = 549, + /// /// Main Hand Critical Strike Chance /// - MainHandCriticalStrikeChance = 550, - + MainHandCriticalStrikeChance = 550, + /// /// Off Hand Critical Strike Chance /// - OffHandCriticalStrikeChance = 551, - + OffHandCriticalStrikeChance = 551, + /// /// Spell Critical Strike Chance /// - SpellCriticalStrikeChance = 552, - + SpellCriticalStrikeChance = 552, + /// /// local_critical_strike_chance /// - LocalCriticalStrikeChance = 553, - + LocalCriticalStrikeChance = 553, + /// /// base_spell_critical_strike_chance /// - BaseSpellCriticalStrikeChance = 554, - + BaseSpellCriticalStrikeChance = 554, + /// /// Critical Strike Chance +% /// - CriticalStrikeChancePct = 555, - + CriticalStrikeChancePct = 555, + /// /// Critical Strike chance increase per Power Charge /// - CriticalStrikeChancePctPerPowerCharge = 556, - + CriticalStrikeChancePctPerPowerCharge = 556, + /// /// Spell Critical Strike Chance +% /// - SpellCriticalStrikeChancePct = 557, - + SpellCriticalStrikeChancePct = 557, + /// /// Local Critical Strike Chance +% /// - LocalCriticalStrikeChancePct = 558, - + LocalCriticalStrikeChancePct = 558, + /// /// dagger_critical_strike_chance_+% /// - DaggerCriticalStrikeChancePct = 559, - + DaggerCriticalStrikeChancePct = 559, + /// /// bow_critical_strike_chance_+% /// - BowCriticalStrikeChancePct = 560, - + BowCriticalStrikeChancePct = 560, + /// /// claw_critical_strike_chance_+% /// - ClawCriticalStrikeChancePct = 561, - + ClawCriticalStrikeChancePct = 561, + /// /// base_life_recovery_per_minute /// - BaseLifeRecoveryPerMinute = 562, - + BaseLifeRecoveryPerMinute = 562, + /// /// base_mana_recovery_per_minute /// - BaseManaRecoveryPerMinute = 563, - + BaseManaRecoveryPerMinute = 563, + /// /// maximum_life_%_to_add_to_maximum_energy_shield /// - MaximumLifePctToAddToMaximumEnergyShield = 564, - + MaximumLifePctToAddToMaximumEnergyShield = 564, + /// /// physical_damage_taken_%_to_deal_to_attacker /// - PhysicalDamageTakenPctToDealToAttacker = 565, - + PhysicalDamageTakenPctToDealToAttacker = 565, + /// /// elemental_damage_taken_%_to_deal_to_attacker /// - ElementalDamageTakenPctToDealToAttacker = 566, - + ElementalDamageTakenPctToDealToAttacker = 566, + /// /// base_skeleton_maximum_life_+% /// - BaseSkeletonMaximumLifePct = 567, - + BaseSkeletonMaximumLifePct = 567, + /// /// skeleton_maximum_life_+% /// - SkeletonMaximumLifePct = 568, - + SkeletonMaximumLifePct = 568, + /// /// additional_base_critical_strike_chance /// - AdditionalBaseCriticalStrikeChance = 569, - + AdditionalBaseCriticalStrikeChance = 569, + /// /// accuracy_rating_per_level /// - AccuracyRatingPerLevel = 570, - + AccuracyRatingPerLevel = 570, + /// /// evasion_rating_per_level /// - EvasionRatingPerLevel = 571, - + EvasionRatingPerLevel = 571, + /// /// Local Accuracy Rating /// - LocalAccuracyRating = 572, - + LocalAccuracyRating = 572, + /// /// strength /// - Strength = 573, - + Strength = 573, + /// /// base_strength /// - BaseStrength = 574, - + BaseStrength = 574, + /// /// Additional Strength /// - AdditionalStrength = 575, - + AdditionalStrength = 575, + /// /// intelligence /// - Intelligence = 576, - + Intelligence = 576, + /// /// base_intelligence /// - BaseIntelligence = 577, - + BaseIntelligence = 577, + /// /// Additional Intelligence /// - AdditionalIntelligence = 578, - + AdditionalIntelligence = 578, + /// /// dexterity /// - Dexterity = 579, - + Dexterity = 579, + /// /// base_dexterity /// - BaseDexterity = 580, - + BaseDexterity = 580, + /// /// Additional Dexterity /// - AdditionalDexterity = 581, - + AdditionalDexterity = 581, + /// /// on_low_life /// - OnLowLife = 582, - + OnLowLife = 582, + /// /// on_full_life /// - OnFullLife = 583, - + OnFullLife = 583, + /// /// damage_+%_when_on_low_life /// - DamagePctWhenOnLowLife = 584, - + DamagePctWhenOnLowLife = 584, + /// /// damage_+%_when_on_full_life /// - DamagePctWhenOnFullLife = 585, - + DamagePctWhenOnFullLife = 585, + /// /// cast_speed_+%_when_on_low_life /// - CastSpeedPctWhenOnLowLife = 586, - + CastSpeedPctWhenOnLowLife = 586, + /// /// cast_speed_+%_when_on_full_life /// - CastSpeedPctWhenOnFullLife = 587, - + CastSpeedPctWhenOnFullLife = 587, + /// /// attack_speed_+%_when_on_low_life /// - AttackSpeedPctWhenOnLowLife = 588, - + AttackSpeedPctWhenOnLowLife = 588, + /// /// attack_speed_+%_when_on_full_life /// - AttackSpeedPctWhenOnFullLife = 589, - + AttackSpeedPctWhenOnFullLife = 589, + /// /// kill_enemy_on_hit_if_under_10%_life /// - KillEnemyOnHitIfUnder10PctLife = 590, - + KillEnemyOnHitIfUnder10PctLife = 590, + /// /// Cold Resistance Penetration /// - ReduceEnemyColdResistancePct = 591, - + ReduceEnemyColdResistancePct = 591, + /// /// Fire Resistance Penetration /// - ReduceEnemyFireResistancePct = 592, - + ReduceEnemyFireResistancePct = 592, + /// /// Lightning Resistance Penetration /// - ReduceEnemyLightningResistancePct = 593, - + ReduceEnemyLightningResistancePct = 593, + /// /// base_reduce_enemy_fire_resistance_% /// - BaseReduceEnemyFireResistancePct = 594, - + BaseReduceEnemyFireResistancePct = 594, + /// /// base_reduce_enemy_cold_resistance_% /// - BaseReduceEnemyColdResistancePct = 595, - + BaseReduceEnemyColdResistancePct = 595, + /// /// base_reduce_enemy_lightning_resistance_% /// - BaseReduceEnemyLightningResistancePct = 596, - + BaseReduceEnemyLightningResistancePct = 596, + /// /// Reduce Enemy Elemental Resistance % /// - ReduceEnemyElementalResistancePct = 597, - + ReduceEnemyElementalResistancePct = 597, + /// /// Chaos Resistance Penetration /// - ReduceEnemyChaosResistancePct = 598, - + ReduceEnemyChaosResistancePct = 598, + /// /// life_leech_on_physical_damage_when_hit_by_attack_% /// - LifeLeechOnPhysicalDamageWhenHitByAttackPct = 599, - + LifeLeechOnPhysicalDamageWhenHitByAttackPct = 599, + /// /// mana_leech_on_physical_damage_when_hit_by_attack_% /// - ManaLeechOnPhysicalDamageWhenHitByAttackPct = 600, - + ManaLeechOnPhysicalDamageWhenHitByAttackPct = 600, + /// /// add_endurance_charge_on_melee_critical_strike /// - AddEnduranceChargeOnMeleeCriticalStrike = 601, - + AddEnduranceChargeOnMeleeCriticalStrike = 601, + /// /// add_frenzy_charge_on_melee_critical_strike /// - AddFrenzyChargeOnMeleeCriticalStrike = 602, - + AddFrenzyChargeOnMeleeCriticalStrike = 602, + /// /// add_power_charge_on_melee_critical_strike /// - AddPowerChargeOnMeleeCriticalStrike = 603, - + AddPowerChargeOnMeleeCriticalStrike = 603, + /// /// Life Leech speed increase /// - LifeLeechSpeedPct = 604, - + LifeLeechSpeedPct = 604, + /// /// Mana Leech speed increase /// - ManaLeechSpeedPct = 605, - + ManaLeechSpeedPct = 605, + /// /// Additional All Attributes /// - AdditionalAllAttributes = 606, - + AdditionalAllAttributes = 606, + /// /// base_critical_strike_multiplier /// - BaseCriticalStrikeMultiplier2 = 607, - + BaseCriticalStrikeMultiplier2 = 607, + /// /// Main Hand Critical Strike Damage Multiplier /// - MainHandCriticalStrikeMultiplier2 = 608, - + MainHandCriticalStrikeMultiplier2 = 608, + /// /// Off Hand Critical Strike Damage Multiplier /// - OffHandCriticalStrikeMultiplier2 = 609, - + OffHandCriticalStrikeMultiplier2 = 609, + /// /// Spell Critical Strike Damage Multiplier /// - SpellCriticalStrikeMultiplier2 = 610, - + SpellCriticalStrikeMultiplier2 = 610, + /// /// base_cold_damage_%_to_convert_to_fire /// - BaseColdDamagePctToConvertToFire = 611, - + BaseColdDamagePctToConvertToFire = 611, + /// /// base_chance_to_ignite_% /// - BaseChanceToIgnitePct = 612, - + BaseChanceToIgnitePct = 612, + /// /// fire_storm_fireball_delay_ms /// - FireStormFireballDelayMs = 613, - + FireStormFireballDelayMs = 613, + /// /// one_handed_melee_critical_strike_chance_+% /// - OneHandedMeleeCriticalStrikeChancePct = 614, - + OneHandedMeleeCriticalStrikeChancePct = 614, + /// /// axe_critical_strike_multiplier_+ /// - AxeCriticalStrikeMultiplier = 615, - + AxeCriticalStrikeMultiplier = 615, + /// /// sword_critical_strike_multiplier_+ /// - SwordCriticalStrikeMultiplier = 616, - + SwordCriticalStrikeMultiplier = 616, + /// /// bow_critical_strike_multiplier_+ /// - BowCriticalStrikeMultiplier = 617, - + BowCriticalStrikeMultiplier = 617, + /// /// minion_movement_speed_+% /// - MinionMovementSpeedPct = 618, - + MinionMovementSpeedPct = 618, + /// /// is_area_damage /// - IsAreaDamage = 619, - + IsAreaDamage = 619, + /// /// area_damage_+% /// - AreaDamagePct = 620, - + AreaDamagePct = 620, + /// /// avoid_all_elemental_status_% /// - AvoidAllElementalStatusPct = 621, - + AvoidAllElementalStatusPct = 621, + /// /// self_elemental_status_duration_-% /// - SelfElementalStatusDurationPct = 622, - + SelfElementalStatusDurationPct = 622, + /// /// one_handed_melee_critical_strike_multiplier_+ /// - OneHandedMeleeCriticalStrikeMultiplier = 623, - + OneHandedMeleeCriticalStrikeMultiplier = 623, + /// /// two_handed_melee_critical_strike_chance_+% /// - TwoHandedMeleeCriticalStrikeChancePct = 624, - + TwoHandedMeleeCriticalStrikeChancePct = 624, + /// /// two_handed_melee_critical_strike_multiplier_+ /// - TwoHandedMeleeCriticalStrikeMultiplier = 625, - + TwoHandedMeleeCriticalStrikeMultiplier = 625, + /// /// shield_charge_continue_past_target /// - ShieldChargeContinuePastTarget = 626, - + ShieldChargeContinuePastTarget = 626, + /// /// Chill avoidance /// - AvoidChillPct = 627, - + AvoidChillPct = 627, + /// /// Freeze avoidance /// - AvoidFreezePct = 628, - + AvoidFreezePct = 628, + /// /// Ignite avoidance /// - AvoidIgnitePct = 629, - + AvoidIgnitePct = 629, + /// /// Shock avoidance /// - AvoidShockPct = 630, - + AvoidShockPct = 630, + /// /// Chill duration on self reduction /// - SelfChillDurationPct = 631, - + SelfChillDurationPct = 631, + /// /// Shock duration on self reduction /// - SelfShockDurationPct = 632, - + SelfShockDurationPct = 632, + /// /// Freeze duration on self reduction /// - SelfFreezeDurationPct = 633, - + SelfFreezeDurationPct = 633, + /// /// Ignite duration on self reduction /// - SelfIgniteDurationPct = 634, - + SelfIgniteDurationPct = 634, + /// /// active_skill_damage_+%_final /// - ActiveSkillDamagePctFinal = 635, - + ActiveSkillDamagePctFinal = 635, + /// /// phase_run_melee_physical_damage_+%_final /// - PhaseRunMeleePhysicalDamagePctFinal = 636, - + PhaseRunMeleePhysicalDamagePctFinal = 636, + /// /// active_skill_physical_damage_+%_final /// - ActiveSkillPhysicalDamagePctFinal = 637, - + ActiveSkillPhysicalDamagePctFinal = 637, + /// /// active_skill_elemental_damage_+%_final /// - ActiveSkillElementalDamagePctFinal = 638, - + ActiveSkillElementalDamagePctFinal = 638, + /// /// active_skill_fire_damage_+%_final /// - ActiveSkillFireDamagePctFinal = 639, - + ActiveSkillFireDamagePctFinal = 639, + /// /// active_skill_cold_damage_+%_final /// - ActiveSkillColdDamagePctFinal = 640, - + ActiveSkillColdDamagePctFinal = 640, + /// /// active_skill_lightning_damage_+%_final /// - ActiveSkillLightningDamagePctFinal = 641, - + ActiveSkillLightningDamagePctFinal = 641, + /// /// active_skill_chaos_damage_+%_final /// - ActiveSkillChaosDamagePctFinal = 642, - + ActiveSkillChaosDamagePctFinal = 642, + /// /// support_melee_physical_damage_+%_final /// - SupportMeleePhysicalDamagePctFinal = 643, - + SupportMeleePhysicalDamagePctFinal = 643, + /// /// support_weapon_elemental_damage_+%_final /// - SupportWeaponElementalDamagePctFinal = 644, - + SupportWeaponElementalDamagePctFinal = 644, + /// /// support_area_concentrate_area_damage_+%_final /// - SupportAreaConcentrateAreaDamagePctFinal = 645, - + SupportAreaConcentrateAreaDamagePctFinal = 645, + /// /// active_skill_attack_damage_+%_final /// - ActiveSkillAttackDamagePctFinal = 646, - + ActiveSkillAttackDamagePctFinal = 646, + /// /// active_skill_spell_damage_+%_final /// - ActiveSkillSpellDamagePctFinal = 647, - + ActiveSkillSpellDamagePctFinal = 647, + /// /// support_multiple_projectile_damage_+%_final /// - SupportMultipleProjectileDamagePctFinal = 648, - + SupportMultipleProjectileDamagePctFinal = 648, + /// /// enfeeble_damage_+%_final /// - EnfeebleDamagePctFinal = 649, - + EnfeebleDamagePctFinal = 649, + /// /// active_skill_minion_life_+%_final /// - ActiveSkillMinionLifePctFinal = 650, - + ActiveSkillMinionLifePctFinal = 650, + /// /// active_skill_minion_damage_+%_final /// - ActiveSkillMinionDamagePctFinal = 651, - + ActiveSkillMinionDamagePctFinal = 651, + /// /// max_life_+%_final_for_minion /// - MaxLifePctFinalForMinion = 652, - + MaxLifePctFinalForMinion = 652, + /// /// damage_+%_final_for_minion /// - DamagePctFinalForMinion = 653, - + DamagePctFinalForMinion = 653, + /// /// strength_per_level /// - StrengthPerLevel = 654, - + StrengthPerLevel = 654, + /// /// dexterity_per_level /// - DexterityPerLevel = 655, - + DexterityPerLevel = 655, + /// /// intelligence_per_level /// - IntelligencePerLevel = 656, - + IntelligencePerLevel = 656, + /// /// critical_strike_chance_while_dual_wielding_+% /// - CriticalStrikeChanceWhileDualWieldingPct = 657, - + CriticalStrikeChanceWhileDualWieldingPct = 657, + /// /// critical_strike_multiplier_while_dual_wielding_+ /// - CriticalStrikeMultiplierWhileDualWielding = 658, - + CriticalStrikeMultiplierWhileDualWielding = 658, + /// /// mace_critical_strike_multiplier_+ /// - MaceCriticalStrikeMultiplier = 659, - + MaceCriticalStrikeMultiplier = 659, + /// /// base_chance_to_shock_% /// - BaseChanceToShockPct = 660, - + BaseChanceToShockPct = 660, + /// /// spell_maximum_action_distance_+% /// - SpellMaximumActionDistancePct = 661, - + SpellMaximumActionDistancePct = 661, + /// /// Local Accuracy Rating +% /// - LocalAccuracyRatingPct = 662, - + LocalAccuracyRatingPct = 662, + /// /// Increased Quantity of items dropped by slain monsters /// - DisplaySkillIncreasedItemQuantityPct = 663, - + DisplaySkillIncreasedItemQuantityPct = 663, + /// /// Increased Rarity of items dropped by slain monsters /// - DisplaySkillIncreasedItemRarityPct = 664, - + DisplaySkillIncreasedItemRarityPct = 664, + /// /// wand_physical_damage_%_to_add_as_fire /// - WandPhysicalDamagePctToAddAsFire = 665, - + WandPhysicalDamagePctToAddAsFire = 665, + /// /// wand_physical_damage_%_to_add_as_cold /// - WandPhysicalDamagePctToAddAsCold = 666, - + WandPhysicalDamagePctToAddAsCold = 666, + /// /// wand_physical_damage_%_to_add_as_lightning /// - WandPhysicalDamagePctToAddAsLightning = 667, - + WandPhysicalDamagePctToAddAsLightning = 667, + /// /// main_hand_minimum_total_damage /// - MainHandMinimumTotalDamage = 668, - + MainHandMinimumTotalDamage = 668, + /// /// main_hand_maximum_total_damage /// - MainHandMaximumTotalDamage = 669, - + MainHandMaximumTotalDamage = 669, + /// /// Off Hand Total Combined Damage /// - OffHandMinimumTotalDamage = 670, - + OffHandMinimumTotalDamage = 670, + /// /// off_hand_maximum_total_damage /// - OffHandMaximumTotalDamage = 671, - + OffHandMaximumTotalDamage = 671, + /// /// spell_minimum_total_damage /// - SpellMinimumTotalDamage = 672, - + SpellMinimumTotalDamage = 672, + /// /// spell_maximum_total_damage /// - SpellMaximumTotalDamage = 673, - + SpellMaximumTotalDamage = 673, + /// /// main_hand_chance_to_hit_% /// - MainHandChanceToHitPct = 674, - + MainHandChanceToHitPct = 674, + /// /// off_hand_chance_to_hit_% /// - OffHandChanceToHitPct = 675, - + OffHandChanceToHitPct = 675, + /// /// hundred_times_attacks_per_second /// - HundredTimesAttacksPerSecond = 676, - + HundredTimesAttacksPerSecond = 676, + /// /// hundred_times_damage_per_second /// - HundredTimesDamagePerSecond = 677, - + HundredTimesDamagePerSecond = 677, + /// /// chance_to_evade_% /// - ChanceToEvadePct = 678, - + ChanceToEvadePct = 678, + /// /// base_spell_cast_time_ms /// - BaseSpellCastTimeMs = 679, - + BaseSpellCastTimeMs = 679, + /// /// hundred_times_casts_per_second /// - HundredTimesCastsPerSecond = 680, - + HundredTimesCastsPerSecond = 680, + /// /// global_hit_causes_monster_flee_% /// - GlobalHitCausesMonsterFleePct = 681, - + GlobalHitCausesMonsterFleePct = 681, + /// /// local_hit_causes_monster_flee_% /// - LocalHitCausesMonsterFleePct = 682, - + LocalHitCausesMonsterFleePct = 682, + /// /// main_hand_hit_causes_monster_flee_% /// - MainHandHitCausesMonsterFleePct = 683, - + MainHandHitCausesMonsterFleePct = 683, + /// /// off_hand_hit_causes_monster_flee_% /// - OffHandHitCausesMonsterFleePct = 684, - + OffHandHitCausesMonsterFleePct = 684, + /// /// global_always_hit /// - GlobalAlwaysHit = 685, - + GlobalAlwaysHit = 685, + /// /// main_hand_always_hit /// - MainHandAlwaysHit = 686, - + MainHandAlwaysHit = 686, + /// /// off_hand_always_hit /// - OffHandAlwaysHit = 687, - + OffHandAlwaysHit = 687, + /// /// local_always_hit /// - LocalAlwaysHit = 688, - + LocalAlwaysHit = 688, + /// /// explode_on_low_life_%_maximum_life_to_deal /// - ExplodeOnLowLifePctMaximumLifeToDeal = 689, - + ExplodeOnLowLifePctMaximumLifeToDeal = 689, + /// /// curses_never_expire /// - CursesNeverExpire = 690, - + CursesNeverExpire = 690, + /// /// Chance to Dodge Attacks /// - ChanceToDodgePct = 691, - + ChanceToDodgePct = 691, + /// /// no_physical_damage_reduction_rating /// - NoPhysicalDamageReductionRating = 692, - + NoPhysicalDamageReductionRating = 692, + /// /// no_energy_shield /// - NoEnergyShield = 693, - + NoEnergyShield = 693, + /// /// keystone_iron_reflexes /// - KeystoneIronReflexes = 694, - + KeystoneIronReflexes = 694, + /// /// global_cannot_crit /// - GlobalCannotCrit = 695, - + GlobalCannotCrit = 695, + /// /// convert_all_physical_damage_to_fire /// - ConvertAllPhysicalDamageToFire = 696, - + ConvertAllPhysicalDamageToFire = 696, + /// /// base_cannot_evade /// - BaseCannotEvade = 697, - + BaseCannotEvade = 697, + /// /// chaos_immunity /// - ChaosImmunity = 698, - + ChaosImmunity = 698, + /// /// keystone_chaos_inoculation /// - KeystoneChaosInoculation = 699, - + KeystoneChaosInoculation = 699, + /// /// mana_%_to_add_as_energy_shield /// - ManaPctToAddAsEnergyShield = 700, - + ManaPctToAddAsEnergyShield = 700, + /// /// no_mana /// - NoMana = 701, - + NoMana = 701, + /// /// base_use_life_in_place_of_mana /// - BaseUseLifeInPlaceOfMana = 702, - + BaseUseLifeInPlaceOfMana = 702, + /// /// Cannot be Stunned /// - BaseCannotBeStunned = 703, - + BaseCannotBeStunned = 703, + /// /// ignore_armour_movement_penalties /// - IgnoreArmourMovementPenalties = 704, - + IgnoreArmourMovementPenalties = 704, + /// /// base_buff_duration_ms_+_per_removable_endurance_charge /// - BaseBuffDurationMsPerRemovableEnduranceCharge = 705, - + BaseBuffDurationMsPerRemovableEnduranceCharge = 705, + /// /// secondary_minimum_physical_damage /// - SecondaryMinimumPhysicalDamage = 706, - + SecondaryMinimumPhysicalDamage = 706, + /// /// secondary_maximum_physical_damage /// - SecondaryMaximumPhysicalDamage = 707, - + SecondaryMaximumPhysicalDamage = 707, + /// /// secondary_minimum_cold_damage /// - SecondaryMinimumColdDamage = 708, - + SecondaryMinimumColdDamage = 708, + /// /// secondary_maximum_cold_damage /// - SecondaryMaximumColdDamage = 709, - + SecondaryMaximumColdDamage = 709, + /// /// secondary_minimum_fire_damage /// - SecondaryMinimumFireDamage = 710, - + SecondaryMinimumFireDamage = 710, + /// /// secondary_maximum_fire_damage /// - SecondaryMaximumFireDamage = 711, - + SecondaryMaximumFireDamage = 711, + /// /// secondary_minimum_lightning_damage /// - SecondaryMinimumLightningDamage = 712, - + SecondaryMinimumLightningDamage = 712, + /// /// secondary_maximum_lightning_damage /// - SecondaryMaximumLightningDamage = 713, - + SecondaryMaximumLightningDamage = 713, + /// /// secondary_minimum_chaos_damage /// - SecondaryMinimumChaosDamage = 714, - + SecondaryMinimumChaosDamage = 714, + /// /// secondary_maximum_chaos_damage /// - SecondaryMaximumChaosDamage = 715, - + SecondaryMaximumChaosDamage = 715, + /// /// secondary_critical_strike_multiplier /// - SecondaryCriticalStrikeMultiplier = 716, - + SecondaryCriticalStrikeMultiplier = 716, + /// /// secondary_critical_strike_chance /// - SecondaryCriticalStrikeChance = 717, - + SecondaryCriticalStrikeChance = 717, + /// /// Immune to Physical Damage /// - PhysicalImmunity = 718, - + PhysicalImmunity = 718, + /// /// base_actor_scale_+% /// - BaseActorScalePct = 719, - + BaseActorScalePct = 719, + /// /// display_estimated_physical_damage_reduciton_% /// - DisplayEstimatedPhysicalDamageReducitonPct = 720, - + DisplayEstimatedPhysicalDamageReducitonPct = 720, + /// /// curse_count /// - CurseCount = 721, - + CurseCount = 721, + /// /// number_of_additional_curses_allowed /// - NumberOfAdditionalCursesAllowed = 722, - + NumberOfAdditionalCursesAllowed = 722, + /// /// melee_knockback /// - MeleeKnockback = 723, - + MeleeKnockback = 723, + /// /// Projectiles Fired /// - TotalNumberOfProjectilesToFire = 724, - + TotalNumberOfProjectilesToFire = 724, + /// /// Arrows Fired /// - TotalNumberOfArrowsToFire = 725, - + TotalNumberOfArrowsToFire = 725, + /// /// number_of_zombies_allowed /// - NumberOfZombiesAllowed = 726, - + NumberOfZombiesAllowed = 726, + /// /// number_of_spectres_allowed /// - NumberOfSpectresAllowed = 727, - + NumberOfSpectresAllowed = 727, + /// /// number_of_skeletons_allowed /// - NumberOfSkeletonsAllowed = 728, - + NumberOfSkeletonsAllowed = 728, + /// /// From Armour Movement Speed +% /// - FromArmourMovementSpeedPct = 729, - + FromArmourMovementSpeedPct = 729, + /// /// active_skill_minion_energy_shield_+%_final /// - ActiveSkillMinionEnergyShieldPctFinal = 730, - + ActiveSkillMinionEnergyShieldPctFinal = 730, + /// /// energy_shield_+%_final_for_minion /// - EnergyShieldPctFinalForMinion = 731, - + EnergyShieldPctFinalForMinion = 731, + /// /// projectile_damage_taken_+% /// - ProjectileDamageTakenPct = 732, - + ProjectileDamageTakenPct = 732, + /// /// fire_shield_damage_threshold /// - FireShieldDamageThreshold = 733, - + FireShieldDamageThreshold = 733, + /// /// support_multiple_projectiles_critical_strike_chance_+%_final /// - SupportMultipleProjectilesCriticalStrikeChancePctFinal = 734, - + SupportMultipleProjectilesCriticalStrikeChancePctFinal = 734, + /// /// display_monster_wealth_mod /// - DisplayMonsterWealthMod = 735, - + DisplayMonsterWealthMod = 735, + /// /// Local Armour And Energy Shield +% /// - LocalArmourAndEnergyShieldPct = 736, - + LocalArmourAndEnergyShieldPct = 736, + /// /// Local Armour And Evasion +% /// - LocalArmourAndEvasionPct = 737, - + LocalArmourAndEvasionPct = 737, + /// /// Local Evasion And Energy Shield +% /// - LocalEvasionAndEnergyShieldPct = 738, - + LocalEvasionAndEnergyShieldPct = 738, + /// /// Local Armour And Evasion And Energy Shield +% /// - LocalArmourAndEvasionAndEnergyShieldPct = 739, - + LocalArmourAndEvasionAndEnergyShieldPct = 739, + /// /// Flask Charges Used +% /// - FlaskChargesUsedPct = 740, - + FlaskChargesUsedPct = 740, + /// /// Flask Duration +% /// - FlaskDurationPct = 741, - + FlaskDurationPct = 741, + /// /// Flask Life Recovery Rate +% /// - FlaskLifeRecoveryRatePct = 742, - + FlaskLifeRecoveryRatePct = 742, + /// /// Flask Mana Recovery Rate +% /// - FlaskManaRecoveryRatePct = 743, - + FlaskManaRecoveryRatePct = 743, + /// /// minions_get_shield_stats_instead_of_you /// - MinionsGetShieldStatsInsteadOfYou = 744, - + MinionsGetShieldStatsInsteadOfYou = 744, + /// /// cannot_resist_cold_damage /// - CannotResistColdDamage = 745, - + CannotResistColdDamage = 745, + /// /// add_power_charge_on_kill /// - AddPowerChargeOnKill = 746, - + AddPowerChargeOnKill = 746, + /// /// immune_to_curses /// - ImmuneToCurses = 747, - + ImmuneToCurses = 747, + /// /// monster_grants_frenzy_charges_to_allies_within_distance_on_death /// - MonsterGrantsFrenzyChargesToAlliesWithinDistanceOnDeath = 748, - + MonsterGrantsFrenzyChargesToAlliesWithinDistanceOnDeath = 748, + /// /// dual_wield_or_shield_block_% /// - DualWieldOrShieldBlockPct = 749, - + DualWieldOrShieldBlockPct = 749, + /// /// gain_frenzy_charge_for_each_quarter_life_removed /// - GainFrenzyChargeForEachQuarterLifeRemoved = 750, - + GainFrenzyChargeForEachQuarterLifeRemoved = 750, + /// /// monster_life_thresholds_passed /// - MonsterLifeThresholdsPassed = 751, - + MonsterLifeThresholdsPassed = 751, + /// /// chaos_inoculation_keystone_energy_shield_+%_final /// - ChaosInoculationKeystoneEnergyShieldPctFinal = 752, - + ChaosInoculationKeystoneEnergyShieldPctFinal = 752, + /// /// pain_attunement_keystone_spell_damage_+%_final /// - PainAttunementKeystoneSpellDamagePctFinal = 753, - + PainAttunementKeystoneSpellDamagePctFinal = 753, + /// /// keystone_elemental_equilibrium /// - KeystoneElementalEquilibrium = 754, - + KeystoneElementalEquilibrium = 754, + /// /// evasion_rating_+_when_on_low_life /// - EvasionRatingWhenOnLowLife = 755, - + EvasionRatingWhenOnLowLife = 755, + /// /// life_regeneration_rate_per_minute_%_when_on_low_life /// - LifeRegenerationRatePerMinutePctWhenOnLowLife = 756, - + LifeRegenerationRatePerMinutePctWhenOnLowLife = 756, + /// /// local_socketed_strength_gem_level_+ /// - LocalSocketedStrengthGemLevel = 757, - + LocalSocketedStrengthGemLevel = 757, + /// /// local_socketed_dexterity_gem_level_+ /// - LocalSocketedDexterityGemLevel = 758, - + LocalSocketedDexterityGemLevel = 758, + /// /// local_socketed_intelligence_gem_level_+ /// - LocalSocketedIntelligenceGemLevel = 759, - + LocalSocketedIntelligenceGemLevel = 759, + /// /// Physical Damage Reflected to Melee Attackers /// - MaximumPhysicalDamageToReturnToMeleeAttacker = 760, - + MaximumPhysicalDamageToReturnToMeleeAttacker = 760, + /// /// Fire Damage Reflected to Melee Attackers /// - MaximumFireDamageToReturnToMeleeAttacker = 761, - + MaximumFireDamageToReturnToMeleeAttacker = 761, + /// /// Cold Damage Reflected to Melee Attackers /// - MaximumColdDamageToReturnToMeleeAttacker = 762, - + MaximumColdDamageToReturnToMeleeAttacker = 762, + /// /// Lightning Damage Reflected to Melee Attackers /// - MaximumLightningDamageToReturnToMeleeAttacker = 763, - + MaximumLightningDamageToReturnToMeleeAttacker = 763, + /// /// Chaos Damage Reflected to Melee Attackers /// - MaximumChaosDamageToReturnToMeleeAttacker = 764, - + MaximumChaosDamageToReturnToMeleeAttacker = 764, + /// /// Physical Damage Reflected to Melee Attackers /// - MinimumPhysicalDamageToReturnToMeleeAttacker = 765, - + MinimumPhysicalDamageToReturnToMeleeAttacker = 765, + /// /// Fire Damage Reflected to Melee Attackers /// - MinimumFireDamageToReturnToMeleeAttacker = 766, - + MinimumFireDamageToReturnToMeleeAttacker = 766, + /// /// Cold Damage Reflected to Melee Attackers /// - MinimumColdDamageToReturnToMeleeAttacker = 767, - + MinimumColdDamageToReturnToMeleeAttacker = 767, + /// /// Lightning Damage Reflected to Melee Attackers /// - MinimumLightningDamageToReturnToMeleeAttacker = 768, - + MinimumLightningDamageToReturnToMeleeAttacker = 768, + /// /// Chaos Damage Reflected to Melee Attackers /// - MinimumChaosDamageToReturnToMeleeAttacker = 769, - + MinimumChaosDamageToReturnToMeleeAttacker = 769, + /// /// physical_damage_taken_when_hit_by_attack /// - PhysicalDamageTakenWhenHitByAttack = 770, - + PhysicalDamageTakenWhenHitByAttack = 770, + /// /// fire_damage_taken_when_hit_by_attack /// - FireDamageTakenWhenHitByAttack = 771, - + FireDamageTakenWhenHitByAttack = 771, + /// /// cold_damage_taken_when_hit_by_attack /// - ColdDamageTakenWhenHitByAttack = 772, - + ColdDamageTakenWhenHitByAttack = 772, + /// /// lightning_damage_taken_when_hit_by_attack /// - LightningDamageTakenWhenHitByAttack = 773, - + LightningDamageTakenWhenHitByAttack = 773, + /// /// chaos_damage_taken_when_hit_by_attack /// - ChaosDamageTakenWhenHitByAttack = 774, - + ChaosDamageTakenWhenHitByAttack = 774, + /// /// mana_cost_+%_when_on_low_life /// - ManaCostPctWhenOnLowLife = 775, - + ManaCostPctWhenOnLowLife = 775, + /// /// elemental_resistance_%_when_on_low_life /// - ElementalResistancePctWhenOnLowLife = 776, - + ElementalResistancePctWhenOnLowLife = 776, + /// /// local_has_no_sockets /// - LocalHasNoSockets = 777, - + LocalHasNoSockets = 777, + /// /// local_all_sockets_linked /// - LocalAllSocketsLinked = 778, - + LocalAllSocketsLinked = 778, + /// /// movement_velocity_+%_when_on_low_life /// - MovementVelocityPctWhenOnLowLife = 779, - + MovementVelocityPctWhenOnLowLife = 779, + /// /// mana_cost_+% /// - ManaCostPct = 780, - + ManaCostPct = 780, + /// /// keystone_acrobatics /// - KeystoneAcrobatics = 781, - + KeystoneAcrobatics = 781, + /// /// keystone_pain_attunement /// - KeystonePainAttunement = 782, - + KeystonePainAttunement = 782, + /// /// item_found_quantity_+%_when_on_low_life /// - ItemFoundQuantityPctWhenOnLowLife = 783, - + ItemFoundQuantityPctWhenOnLowLife = 783, + /// /// item_found_rarity_+%_when_on_low_life /// - ItemFoundRarityPctWhenOnLowLife = 784, - + ItemFoundRarityPctWhenOnLowLife = 784, + /// /// item_found_quantity_+% /// - ItemFoundQuantityPct = 785, - + ItemFoundQuantityPct = 785, + /// /// item_found_rarity_+% /// - ItemFoundRarityPct = 786, - + ItemFoundRarityPct = 786, + /// /// active_skill_projectile_damage_+%_final /// - ActiveSkillProjectileDamagePctFinal = 787, - + ActiveSkillProjectileDamagePctFinal = 787, + /// /// bonus_damage_+%_from_strength /// - BonusDamagePctFromStrength = 788, - + BonusDamagePctFromStrength = 788, + /// /// keystone_strong_bowman /// - KeystoneStrongBowman = 789, - + KeystoneStrongBowman = 789, + /// /// monster_projectile_variation /// - MonsterProjectileVariation = 790, - + MonsterProjectileVariation = 790, + /// /// keystone_point_blank /// - KeystonePointBlank = 791, - + KeystonePointBlank = 791, + /// /// damage_+%_final_from_distance /// - DamagePctFinalFromDistance = 792, - + DamagePctFinalFromDistance = 792, + /// /// keystone_conduit /// - KeystoneConduit = 793, - + KeystoneConduit = 793, + /// /// movement_velocity_+%_when_on_full_life /// - MovementVelocityPctWhenOnFullLife = 794, - + MovementVelocityPctWhenOnFullLife = 794, + /// /// show_number_of_projectiles /// - ShowNumberOfProjectiles = 795, - + ShowNumberOfProjectiles = 795, + /// /// lightning_arrow_maximum_number_of_extra_targets /// - LightningArrowMaximumNumberOfExtraTargets = 796, - + LightningArrowMaximumNumberOfExtraTargets = 796, + /// /// Physical Damage +% /// - MainHandLocalPhysicalDamagePct = 797, - + MainHandLocalPhysicalDamagePct = 797, + /// /// Additional Minimum Physical Damage /// - MainHandLocalMinimumAddedPhysicalDamage = 798, - + MainHandLocalMinimumAddedPhysicalDamage = 798, + /// /// Additional Maximum Physical Damage /// - MainHandLocalMaximumAddedPhysicalDamage = 799, - + MainHandLocalMaximumAddedPhysicalDamage = 799, + /// /// Additional Minimum Fire Damage /// - MainHandLocalMinimumAddedFireDamage = 800, - + MainHandLocalMinimumAddedFireDamage = 800, + /// /// Additional Maximum Fire Damage /// - MainHandLocalMaximumAddedFireDamage = 801, - + MainHandLocalMaximumAddedFireDamage = 801, + /// /// Additional Minimum Cold Damage /// - MainHandLocalMinimumAddedColdDamage = 802, - + MainHandLocalMinimumAddedColdDamage = 802, + /// /// Additional Maximum Cold Damage /// - MainHandLocalMaximumAddedColdDamage = 803, - + MainHandLocalMaximumAddedColdDamage = 803, + /// /// Additional Minimum Lightning Damage /// - MainHandLocalMinimumAddedLightningDamage = 804, - + MainHandLocalMinimumAddedLightningDamage = 804, + /// /// Additional Maximum Lightning Damage /// - MainHandLocalMaximumAddedLightningDamage = 805, - + MainHandLocalMaximumAddedLightningDamage = 805, + /// /// Additional Minimum Chaos Damage /// - MainHandLocalMinimumAddedChaosDamage = 806, - + MainHandLocalMinimumAddedChaosDamage = 806, + /// /// Additional Maximum Chaos Damage /// - MainHandLocalMaximumAddedChaosDamage = 807, - + MainHandLocalMaximumAddedChaosDamage = 807, + /// /// Main Hand Attack Speed +% /// - MainHandLocalAttackSpeedPct = 808, - + MainHandLocalAttackSpeedPct = 808, + /// /// old_do_not_use_main_hand_local_life_leech_from_physical_damage_% /// - OldDoNotUseMainHandLocalLifeLeechFromPhysicalDamagePct = 809, - + OldDoNotUseMainHandLocalLifeLeechFromPhysicalDamagePct = 809, + /// /// old_do_not_use_main_hand_local_mana_leech_from_physical_damage_% /// - OldDoNotUseMainHandLocalManaLeechFromPhysicalDamagePct = 810, - + OldDoNotUseMainHandLocalManaLeechFromPhysicalDamagePct = 810, + /// /// Knockback /// - MainHandLocalKnockback = 811, - + MainHandLocalKnockback = 811, + /// /// main_hand_local_critical_strike_multiplier_+ /// - MainHandLocalCriticalStrikeMultiplier = 812, - + MainHandLocalCriticalStrikeMultiplier = 812, + /// /// main_hand_local_critical_strike_chance /// - MainHandLocalCriticalStrikeChance = 813, - + MainHandLocalCriticalStrikeChance = 813, + /// /// main_hand_local_critical_strike_chance_+% /// - MainHandLocalCriticalStrikeChancePct = 814, - + MainHandLocalCriticalStrikeChancePct = 814, + /// /// main_hand_local_accuracy_rating /// - MainHandLocalAccuracyRating = 815, - + MainHandLocalAccuracyRating = 815, + /// /// main_hand_local_accuracy_rating_+% /// - MainHandLocalAccuracyRatingPct = 816, - + MainHandLocalAccuracyRatingPct = 816, + /// /// main_hand_local_hit_causes_monster_flee_% /// - MainHandLocalHitCausesMonsterFleePct = 817, - + MainHandLocalHitCausesMonsterFleePct = 817, + /// /// main_hand_local_always_hit /// - MainHandLocalAlwaysHit = 818, - + MainHandLocalAlwaysHit = 818, + /// /// Physical Damage +% /// - OffHandLocalPhysicalDamagePct = 819, - + OffHandLocalPhysicalDamagePct = 819, + /// /// Additional Minimum Physical Damage /// - OffHandLocalMinimumAddedPhysicalDamage = 820, - + OffHandLocalMinimumAddedPhysicalDamage = 820, + /// /// Additional Maximum Physical Damage /// - OffHandLocalMaximumAddedPhysicalDamage = 821, - + OffHandLocalMaximumAddedPhysicalDamage = 821, + /// /// Additional Minimum Fire Damage /// - OffHandLocalMinimumAddedFireDamage = 822, - + OffHandLocalMinimumAddedFireDamage = 822, + /// /// Additional Maximum Fire Damage /// - OffHandLocalMaximumAddedFireDamage = 823, - + OffHandLocalMaximumAddedFireDamage = 823, + /// /// Additional Minimum Cold Damage /// - OffHandLocalMinimumAddedColdDamage = 824, - + OffHandLocalMinimumAddedColdDamage = 824, + /// /// Additional Maximum Cold Damage /// - OffHandLocalMaximumAddedColdDamage = 825, - + OffHandLocalMaximumAddedColdDamage = 825, + /// /// Additional Minimum Lightning Damage /// - OffHandLocalMinimumAddedLightningDamage = 826, - + OffHandLocalMinimumAddedLightningDamage = 826, + /// /// Additional Maximum Lightning Damage /// - OffHandLocalMaximumAddedLightningDamage = 827, - + OffHandLocalMaximumAddedLightningDamage = 827, + /// /// Additional Minimum Chaos Damage /// - OffHandLocalMinimumAddedChaosDamage = 828, - + OffHandLocalMinimumAddedChaosDamage = 828, + /// /// Additional Maximum Chaos Damage /// - OffHandLocalMaximumAddedChaosDamage = 829, - + OffHandLocalMaximumAddedChaosDamage = 829, + /// /// Attack Speed /// - OffHandLocalAttackSpeedPct = 830, - + OffHandLocalAttackSpeedPct = 830, + /// /// old_do_not_use_off_hand_local_life_leech_from_physical_damage_% /// - OldDoNotUseOffHandLocalLifeLeechFromPhysicalDamagePct = 831, - + OldDoNotUseOffHandLocalLifeLeechFromPhysicalDamagePct = 831, + /// /// old_do_not_use_off_hand_local_mana_leech_from_physical_damage_% /// - OldDoNotUseOffHandLocalManaLeechFromPhysicalDamagePct = 832, - + OldDoNotUseOffHandLocalManaLeechFromPhysicalDamagePct = 832, + /// /// Knockback /// - OffHandLocalKnockback = 833, - + OffHandLocalKnockback = 833, + /// /// off_hand_local_critical_strike_multiplier_+ /// - OffHandLocalCriticalStrikeMultiplier = 834, - + OffHandLocalCriticalStrikeMultiplier = 834, + /// /// off_hand_local_critical_strike_chance /// - OffHandLocalCriticalStrikeChance = 835, - + OffHandLocalCriticalStrikeChance = 835, + /// /// off_hand_local_critical_strike_chance_+% /// - OffHandLocalCriticalStrikeChancePct = 836, - + OffHandLocalCriticalStrikeChancePct = 836, + /// /// off_hand_local_accuracy_rating /// - OffHandLocalAccuracyRating = 837, - + OffHandLocalAccuracyRating = 837, + /// /// off_hand_local_accuracy_rating_+% /// - OffHandLocalAccuracyRatingPct = 838, - + OffHandLocalAccuracyRatingPct = 838, + /// /// off_hand_local_hit_causes_monster_flee_% /// - OffHandLocalHitCausesMonsterFleePct = 839, - + OffHandLocalHitCausesMonsterFleePct = 839, + /// /// off_hand_local_always_hit /// - OffHandLocalAlwaysHit = 840, - + OffHandLocalAlwaysHit = 840, + /// /// acrobatics_additional_chance_to_dodge_% /// - AcrobaticsAdditionalChanceToDodgePct = 841, - + AcrobaticsAdditionalChanceToDodgePct = 841, + /// /// keystone_phase_acrobatics /// - KeystonePhaseAcrobatics = 842, - + KeystonePhaseAcrobatics = 842, + /// /// Chance to Dodge Spell Damage /// - ChanceToDodgeSpellsPct = 843, - + ChanceToDodgeSpellsPct = 843, + /// /// phase_acrobatics_additional_chance_to_dodge_spells_% /// - PhaseAcrobaticsAdditionalChanceToDodgeSpellsPct = 844, - + PhaseAcrobaticsAdditionalChanceToDodgeSpellsPct = 844, + /// /// number_of_inca_minions_allowed /// - NumberOfIncaMinionsAllowed = 845, - + NumberOfIncaMinionsAllowed = 845, + /// /// curse_cast_speed_+% /// - CurseCastSpeedPct = 846, - + CurseCastSpeedPct = 846, + /// /// chance_to_evade_projectile_attacks_+% /// - ChanceToEvadeProjectileAttacksPct = 847, - + ChanceToEvadeProjectileAttacksPct = 847, + /// /// keystone_projectile_evasion /// - KeystoneProjectileEvasion = 848, - + KeystoneProjectileEvasion = 848, + /// /// elemental_status_effect_aura_radius /// - ElementalStatusEffectAuraRadius = 849, - + ElementalStatusEffectAuraRadius = 849, + /// /// support_lesser_multiple_projectile_damage_+%_final /// - SupportLesserMultipleProjectileDamagePctFinal = 850, - + SupportLesserMultipleProjectileDamagePctFinal = 850, + /// /// use_life_in_place_of_mana /// - UseLifeInPlaceOfMana = 851, - + UseLifeInPlaceOfMana = 851, + /// /// keystone_blood_magic /// - KeystoneBloodMagic = 852, - + KeystoneBloodMagic = 852, + /// /// base_mana_reservation_+% /// - BaseManaReservationPct = 853, - + BaseManaReservationPct = 853, + /// /// base_aura_area_of_effect_+% /// - BaseAuraAreaOfEffectPct = 854, - + BaseAuraAreaOfEffectPct = 854, + /// /// physical_attack_damage_taken_+ /// - PhysicalAttackDamageTaken = 855, - + PhysicalAttackDamageTaken = 855, + /// /// physical_ranged_attack_damage_taken_+ /// - PhysicalRangedAttackDamageTaken = 856, - + PhysicalRangedAttackDamageTaken = 856, + /// /// old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value /// - OldDoNotUseSpellBlockPctWhileOnLowLifeFromAssumedBlockValue = 857, - + OldDoNotUseSpellBlockPctWhileOnLowLifeFromAssumedBlockValue = 857, + /// /// display_what_elemental_proliferation_does /// - DisplayWhatElementalProliferationDoes = 858, - + DisplayWhatElementalProliferationDoes = 858, + /// /// skill_can_fire_arrows /// - SkillCanFireArrows = 859, - + SkillCanFireArrows = 859, + /// /// skill_can_fire_wand_projectiles /// - SkillCanFireWandProjectiles = 860, - + SkillCanFireWandProjectiles = 860, + /// /// Local Additional Block Chance % /// - LocalAdditionalBlockChancePct = 861, - + LocalAdditionalBlockChancePct = 861, + /// /// keystone_minion_instability /// - KeystoneMinionInstability = 862, - + KeystoneMinionInstability = 862, + /// /// strong_casting /// - StrongCasting = 863, - + StrongCasting = 863, + /// /// support_damage_while_on_full_life_+%_final /// - SupportDamageWhileOnFullLifePctFinal = 864, - + SupportDamageWhileOnFullLifePctFinal = 864, + /// /// Skill placed as Totem /// - IsTotem = 865, - + IsTotem = 865, + /// /// monster_base_type_attack_cast_speed_+%_and_damage_-%_final /// - MonsterBaseTypeAttackCastSpeedPctAndDamagePctFinal = 866, - + MonsterBaseTypeAttackCastSpeedPctAndDamagePctFinal = 866, + /// /// monster_rarity_attack_cast_speed_+%_and_damage_-%_final /// - MonsterRarityAttackCastSpeedPctAndDamagePctFinal = 867, - + MonsterRarityAttackCastSpeedPctAndDamagePctFinal = 867, + /// /// monster_attack_cast_speed_+%_and_damage_-%_final /// - MonsterAttackCastSpeedPctAndDamagePctFinal = 868, - + MonsterAttackCastSpeedPctAndDamagePctFinal = 868, + /// /// cast_speed_+%_granted_from_skill /// - CastSpeedPctGrantedFromSkill = 869, - + CastSpeedPctGrantedFromSkill = 869, + /// /// is_hidden_monster /// - IsHiddenMonster = 870, - + IsHiddenMonster = 870, + /// /// base_totem_duration /// - BaseTotemDuration = 871, - + BaseTotemDuration = 871, + /// /// totem_duration /// - TotemDuration = 872, - + TotemDuration = 872, + /// /// base_totem_range /// - BaseTotemRange = 873, - + BaseTotemRange = 873, + /// /// totem_range /// - TotemRange = 874, - + TotemRange = 874, + /// /// immune_to_auras_from_other_entities /// - ImmuneToAurasFromOtherEntities = 875, - + ImmuneToAurasFromOtherEntities = 875, + /// /// totem_support_gem_level /// - TotemSupportGemLevel = 876, - + TotemSupportGemLevel = 876, + /// /// base_number_of_totems_allowed /// - BaseNumberOfTotemsAllowed = 877, - + BaseNumberOfTotemsAllowed = 877, + /// /// base_trap_duration /// - BaseTrapDuration = 878, - + BaseTrapDuration = 878, + /// /// trap_duration /// - TrapDuration = 879, - + TrapDuration = 879, + /// /// base_number_of_traps_allowed /// - BaseNumberOfTrapsAllowed = 880, - + BaseNumberOfTrapsAllowed = 880, + /// /// monster_flurry /// - MonsterFlurry = 881, - + MonsterFlurry = 881, + /// /// number_of_insects_allowed /// - NumberOfInsectsAllowed = 882, - + NumberOfInsectsAllowed = 882, + /// /// is_remote_mine /// - IsRemoteMine = 883, - + IsRemoteMine = 883, + /// /// base_number_of_remote_mines_allowed /// - BaseNumberOfRemoteMinesAllowed = 884, - + BaseNumberOfRemoteMinesAllowed = 884, + /// /// base_mine_duration /// - BaseMineDuration = 885, - + BaseMineDuration = 885, + /// /// mine_duration /// - MineDuration = 886, - + MineDuration = 886, + /// /// nonlethal_fire_damage_taken_per_minute_unaffected_by_level_scaling /// - NonlethalFireDamageTakenPerMinuteUnaffectedByLevelScaling = 887, - + NonlethalFireDamageTakenPerMinuteUnaffectedByLevelScaling = 887, + /// /// base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute /// - BaseNonlethalFireDamagePctOfMaximumLifeTakenPerMinute = 888, - + BaseNonlethalFireDamagePctOfMaximumLifeTakenPerMinute = 888, + /// /// righteous_fire_spell_damage_+%_final /// - RighteousFireSpellDamagePctFinal = 889, - + RighteousFireSpellDamagePctFinal = 889, + /// /// base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute /// - BaseRighteousFirePctOfMaxLifeToDealToNearbyPerMinute = 890, - + BaseRighteousFirePctOfMaxLifeToDealToNearbyPerMinute = 890, + /// /// totem_level /// - TotemLevel = 891, - + TotemLevel = 891, + /// /// base_active_skill_totem_level /// - BaseActiveSkillTotemLevel = 892, - + BaseActiveSkillTotemLevel = 892, + /// /// alternate_minion /// - AlternateMinion = 893, - + AlternateMinion = 893, + /// /// corpse_consumption_life_to_gain /// - CorpseConsumptionLifeToGain = 894, - + CorpseConsumptionLifeToGain = 894, + /// /// support_totem_damage_+%_final /// - SupportTotemDamagePctFinal = 895, - + SupportTotemDamagePctFinal = 895, + /// /// freeze_mine_damage_to_freeze_as_though_dealing /// - FreezeMineDamageToFreezeAsThoughDealing = 896, - + FreezeMineDamageToFreezeAsThoughDealing = 896, + /// /// monster_no_drops_or_experience /// - MonsterNoDropsOrExperience = 897, - + MonsterNoDropsOrExperience = 897, + /// /// active_skill_gem_added_damage_effectiveness_+%_final /// - ActiveSkillGemAddedDamageEffectivenessPctFinal = 898, - + ActiveSkillGemAddedDamageEffectivenessPctFinal = 898, + /// /// monster_gain_frenzy_charge_on_kin_death /// - MonsterGainFrenzyChargeOnKinDeath = 899, - + MonsterGainFrenzyChargeOnKinDeath = 899, + /// /// monster_ground_fire_on_death_%_max_damage_to_deal_per_minute /// - MonsterGroundFireOnDeathPctMaxDamageToDealPerMinute = 900, - + MonsterGroundFireOnDeathPctMaxDamageToDealPerMinute = 900, + /// /// monster_ground_fire_on_death_base_area_of_effect_radius /// - MonsterGroundFireOnDeathBaseAreaOfEffectRadius = 901, - + MonsterGroundFireOnDeathBaseAreaOfEffectRadius = 901, + /// /// monster_ground_effect_on_death_base_duration_ms /// - MonsterGroundEffectOnDeathBaseDurationMs = 902, - + MonsterGroundEffectOnDeathBaseDurationMs = 902, + /// /// monster_ground_fire_on_death_duration_ms /// - MonsterGroundFireOnDeathDurationMs = 903, - + MonsterGroundFireOnDeathDurationMs = 903, + /// /// curse_on_hit_%_vulnerability /// - CurseOnHitPctVulnerability = 904, - + CurseOnHitPctVulnerability = 904, + /// /// curse_on_hit_%_temporal_chains /// - CurseOnHitPctTemporalChains = 905, - + CurseOnHitPctTemporalChains = 905, + /// /// support_gem_mine_damage_+%_final /// - SupportGemMineDamagePctFinal = 906, - + SupportGemMineDamagePctFinal = 906, + /// /// undead_description /// - UndeadDescription = 907, - + UndeadDescription = 907, + /// /// monster_casts_firestorm_text /// - MonsterCastsFirestormText = 908, - + MonsterCastsFirestormText = 908, + /// /// monster_casts_puncture_text /// - MonsterCastsPunctureText = 909, - + MonsterCastsPunctureText = 909, + /// /// monster_casts_coldsnap_text /// - MonsterCastsColdsnapText = 910, - + MonsterCastsColdsnapText = 910, + /// /// monster_casts_assassins_mark_curse_text /// - MonsterCastsAssassinsMarkCurseText = 911, - + MonsterCastsAssassinsMarkCurseText = 911, + /// /// monster_casts_elementral_weakness_curse_text /// - MonsterCastsElementralWeaknessCurseText = 912, - + MonsterCastsElementralWeaknessCurseText = 912, + /// /// monster_casts_enfeeble_curse_text /// - MonsterCastsEnfeebleCurseText = 913, - + MonsterCastsEnfeebleCurseText = 913, + /// /// monster_casts_fireball_text /// - MonsterCastsFireballText = 914, - + MonsterCastsFireballText = 914, + /// /// monster_casts_ice_nova_text /// - MonsterCastsIceNovaText = 915, - + MonsterCastsIceNovaText = 915, + /// /// monster_casts_ice_spear_text /// - MonsterCastsIceSpearText = 916, - + MonsterCastsIceSpearText = 916, + /// /// monster_casts_molten_shell_text /// - MonsterCastsMoltenShellText = 917, - + MonsterCastsMoltenShellText = 917, + /// /// monster_casts_projectile_vulnerability_curse_text /// - MonsterCastsProjectileVulnerabilityCurseText = 918, - + MonsterCastsProjectileVulnerabilityCurseText = 918, + /// /// monster_casts_shock_nova_text /// - MonsterCastsShockNovaText = 919, - + MonsterCastsShockNovaText = 919, + /// /// monster_casts_spark_text /// - MonsterCastsSparkText = 920, - + MonsterCastsSparkText = 920, + /// /// monster_casts_vulnerability_curse_text /// - MonsterCastsVulnerabilityCurseText = 921, - + MonsterCastsVulnerabilityCurseText = 921, + /// /// monster_casts_warlords_mark_curse_text /// - MonsterCastsWarlordsMarkCurseText = 922, - + MonsterCastsWarlordsMarkCurseText = 922, + /// /// monster_detonates_corpses_text /// - MonsterDetonatesCorpsesText = 923, - + MonsterDetonatesCorpsesText = 923, + /// /// monster_explodes_on_its_target_text /// - MonsterExplodesOnItsTargetText = 924, - + MonsterExplodesOnItsTargetText = 924, + /// /// monster_fires_a_rain_of_arrows_text /// - MonsterFiresARainOfArrowsText = 925, - + MonsterFiresARainOfArrowsText = 925, + /// /// monster_fires_burning_arrows_text /// - MonsterFiresBurningArrowsText = 926, - + MonsterFiresBurningArrowsText = 926, + /// /// monster_fires_explosive_arrows_text /// - MonsterFiresExplosiveArrowsText = 927, - + MonsterFiresExplosiveArrowsText = 927, + /// /// monster_fires_lightning_arrows_text /// - MonsterFiresLightningArrowsText = 928, - + MonsterFiresLightningArrowsText = 928, + /// /// monster_fires_caustic_arrows_text /// - MonsterFiresCausticArrowsText = 929, - + MonsterFiresCausticArrowsText = 929, + /// /// monster_fires_split_arrows_text /// - MonsterFiresSplitArrowsText = 930, - + MonsterFiresSplitArrowsText = 930, + /// /// monster_leaps_onto_enemies_text /// - MonsterLeapsOntoEnemiesText = 931, - + MonsterLeapsOntoEnemiesText = 931, + /// /// monster_raises_undead_text /// - MonsterRaisesUndeadText = 932, - + MonsterRaisesUndeadText = 932, + /// /// monster_summons_exploding_spawn_text /// - MonsterSummonsExplodingSpawnText = 933, - + MonsterSummonsExplodingSpawnText = 933, + /// /// monster_summons_monkeys_from_nearby_trees_text /// - MonsterSummonsMonkeysFromNearbyTreesText = 934, - + MonsterSummonsMonkeysFromNearbyTreesText = 934, + /// /// monster_summons_skeletons_text /// - MonsterSummonsSkeletonsText = 935, - + MonsterSummonsSkeletonsText = 935, + /// /// monster_summons_spawn_text /// - MonsterSummonsSpawnText = 936, - + MonsterSummonsSpawnText = 936, + /// /// monster_uses_enduring_cry_text /// - MonsterUsesEnduringCryText = 937, - + MonsterUsesEnduringCryText = 937, + /// /// monster_uses_flicker_strike_text /// - MonsterUsesFlickerStrikeText = 938, - + MonsterUsesFlickerStrikeText = 938, + /// /// monster_uses_glacial_hammer_text /// - MonsterUsesGlacialHammerText = 939, - + MonsterUsesGlacialHammerText = 939, + /// /// monster_uses_ground_slam_text /// - MonsterUsesGroundSlamText = 940, - + MonsterUsesGroundSlamText = 940, + /// /// monster_uses_lightning_strike_text /// - MonsterUsesLightningStrikeText = 941, - + MonsterUsesLightningStrikeText = 941, + /// /// monster_uses_phase_run_text /// - MonsterUsesPhaseRunText = 942, - + MonsterUsesPhaseRunText = 942, + /// /// monster_casts_shield_charge_text /// - MonsterCastsShieldChargeText = 943, - + MonsterCastsShieldChargeText = 943, + /// /// monster_casts_mass_frenzy_text /// - MonsterCastsMassFrenzyText = 944, - + MonsterCastsMassFrenzyText = 944, + /// /// monster_casts_temporal_chains_text /// - MonsterCastsTemporalChainsText = 945, - + MonsterCastsTemporalChainsText = 945, + /// /// monster_casts_frenzy_text /// - MonsterCastsFrenzyText = 946, - + MonsterCastsFrenzyText = 946, + /// /// monster_casts_viper_strike_text /// - MonsterCastsViperStrikeText = 947, - + MonsterCastsViperStrikeText = 947, + /// /// monster_casts_elemental_hit_text /// - MonsterCastsElementalHitText = 948, - + MonsterCastsElementalHitText = 948, + /// /// cannot_block_attacks /// - CannotBlockAttacks = 949, - + CannotBlockAttacks = 949, + /// /// Chance to Block Attacks /// - AttackBlockPct = 950, - + AttackBlockPct = 950, + /// /// local_weapon_uses_both_hands /// - LocalWeaponUsesBothHands = 951, - + LocalWeaponUsesBothHands = 951, + /// /// base_maximum_fire_damage_resistance_% /// - BaseMaximumFireDamageResistancePct = 952, - + BaseMaximumFireDamageResistancePct = 952, + /// /// base_maximum_cold_damage_resistance_% /// - BaseMaximumColdDamageResistancePct = 953, - + BaseMaximumColdDamageResistancePct = 953, + /// /// base_maximum_lightning_damage_resistance_% /// - BaseMaximumLightningDamageResistancePct = 954, - + BaseMaximumLightningDamageResistancePct = 954, + /// /// base_maximum_chaos_damage_resistance_% /// - BaseMaximumChaosDamageResistancePct = 955, - + BaseMaximumChaosDamageResistancePct = 955, + /// /// additional_maximum_all_resistances_% /// - AdditionalMaximumAllResistancesPct = 956, - + AdditionalMaximumAllResistancesPct = 956, + /// /// additional_maximum_all_elemental_resistances_% /// - AdditionalMaximumAllElementalResistancesPct = 957, - + AdditionalMaximumAllElementalResistancesPct = 957, + /// /// local_display_socketed_gems_get_concentrated_area_level /// - LocalDisplaySocketedGemsGetConcentratedAreaLevel = 958, - + LocalDisplaySocketedGemsGetConcentratedAreaLevel = 958, + /// /// number_of_additional_traps_allowed /// - NumberOfAdditionalTrapsAllowed = 959, - + NumberOfAdditionalTrapsAllowed = 959, + /// /// number_of_additional_remote_mines_allowed /// - NumberOfAdditionalRemoteMinesAllowed = 960, - + NumberOfAdditionalRemoteMinesAllowed = 960, + /// /// number_of_traps_allowed /// - NumberOfTrapsAllowed = 961, - + NumberOfTrapsAllowed = 961, + /// /// number_of_remote_mines_allowed /// - NumberOfRemoteMinesAllowed = 962, - + NumberOfRemoteMinesAllowed = 962, + /// /// number_of_additional_totems_allowed /// - NumberOfAdditionalTotemsAllowed = 963, - + NumberOfAdditionalTotemsAllowed = 963, + /// /// number_of_totems_allowed /// - NumberOfTotemsAllowed = 964, - + NumberOfTotemsAllowed = 964, + /// /// additional_physical_damage_reduction_%_when_on_low_life /// - AdditionalPhysicalDamageReductionPctWhenOnLowLife = 965, - + AdditionalPhysicalDamageReductionPctWhenOnLowLife = 965, + /// /// endurance_only_conduit /// - EnduranceOnlyConduit = 966, - + EnduranceOnlyConduit = 966, + /// /// frenzy_only_conduit /// - FrenzyOnlyConduit = 967, - + FrenzyOnlyConduit = 967, + /// /// power_only_conduit /// - PowerOnlyConduit = 968, - + PowerOnlyConduit = 968, + /// /// ice_spear_second_form_critical_strike_chance_+% /// - IceSpearSecondFormCriticalStrikeChancePct = 969, - + IceSpearSecondFormCriticalStrikeChancePct = 969, + /// /// ice_spear_second_form_critical_strike_multiplier_+ /// - IceSpearSecondFormCriticalStrikeMultiplier = 970, - + IceSpearSecondFormCriticalStrikeMultiplier = 970, + /// /// ice_spear_second_form_projectile_speed_+%_final /// - IceSpearSecondFormProjectileSpeedPctFinal = 971, - + IceSpearSecondFormProjectileSpeedPctFinal = 971, + /// /// monster_dropped_item_rarity_+%_from_player_support /// - MonsterDroppedItemRarityPctFromPlayerSupport = 972, - + MonsterDroppedItemRarityPctFromPlayerSupport = 972, + /// /// monster_dropped_item_quantity_+%_from_player_support /// - MonsterDroppedItemQuantityPctFromPlayerSupport = 973, - + MonsterDroppedItemQuantityPctFromPlayerSupport = 973, + /// /// monster_ground_ice_on_death_base_area_of_effect_radius /// - MonsterGroundIceOnDeathBaseAreaOfEffectRadius = 974, - + MonsterGroundIceOnDeathBaseAreaOfEffectRadius = 974, + /// /// monster_ground_ice_on_death_duration_ms /// - MonsterGroundIceOnDeathDurationMs = 975, - + MonsterGroundIceOnDeathDurationMs = 975, + /// /// monster_ground_tar_on_death_base_area_of_effect_radius /// - MonsterGroundTarOnDeathBaseAreaOfEffectRadius = 976, - + MonsterGroundTarOnDeathBaseAreaOfEffectRadius = 976, + /// /// monster_ground_tar_on_death_duration_ms /// - MonsterGroundTarOnDeathDurationMs = 977, - + MonsterGroundTarOnDeathDurationMs = 977, + /// /// monster_ground_tar_on_death_monvement_speed_pluspercent /// - MonsterGroundTarOnDeathMonvementSpeedPluspercent = 978, - + MonsterGroundTarOnDeathMonvementSpeedPluspercent = 978, + /// /// blinded /// - Blinded = 979, - + Blinded = 979, + /// /// local_chance_to_blind_on_hit_% /// - LocalChanceToBlindOnHitPct = 980, - + LocalChanceToBlindOnHitPct = 980, + /// /// main_hand_local_chance_to_blind_on_hit_% /// - MainHandLocalChanceToBlindOnHitPct = 981, - + MainHandLocalChanceToBlindOnHitPct = 981, + /// /// off_hand_local_chance_to_blind_on_hit_% /// - OffHandLocalChanceToBlindOnHitPct = 982, - + OffHandLocalChanceToBlindOnHitPct = 982, + /// /// global_chance_to_blind_on_hit_% /// - GlobalChanceToBlindOnHitPct = 983, - + GlobalChanceToBlindOnHitPct = 983, + /// /// main_hand_chance_to_blind_on_hit_% /// - MainHandChanceToBlindOnHitPct = 984, - + MainHandChanceToBlindOnHitPct = 984, + /// /// off_hand_chance_to_blind_on_hit_% /// - OffHandChanceToBlindOnHitPct = 985, - + OffHandChanceToBlindOnHitPct = 985, + /// /// local_display_socketed_gems_get_blind_level /// - LocalDisplaySocketedGemsGetBlindLevel = 986, - + LocalDisplaySocketedGemsGetBlindLevel = 986, + /// /// blind_duration_+% /// - BlindDurationPct = 987, - + BlindDurationPct = 987, + /// /// cannot_be_knocked_back /// - CannotBeKnockedBack = 988, - + CannotBeKnockedBack = 988, + /// /// dual_wield_inherent_attack_speed_+%_final /// - DualWieldInherentAttackSpeedPctFinal = 989, - + DualWieldInherentAttackSpeedPctFinal = 989, + /// /// map_spawn_two_bosses /// - MapSpawnTwoBosses = 990, - + MapSpawnTwoBosses = 990, + /// /// map_boss_damage_+% /// - MapBossDamagePct = 991, - + MapBossDamagePct = 991, + /// /// map_boss_attack_and_cast_speed_+% /// - MapBossAttackAndCastSpeedPct = 992, - + MapBossAttackAndCastSpeedPct = 992, + /// /// map_monsters_additional_fire_resistance /// - MapMonstersAdditionalFireResistance = 993, - + MapMonstersAdditionalFireResistance = 993, + /// /// map_monsters_additional_cold_resistance /// - MapMonstersAdditionalColdResistance = 994, - + MapMonstersAdditionalColdResistance = 994, + /// /// map_monsters_additional_lightning_resistance /// - MapMonstersAdditionalLightningResistance = 995, - + MapMonstersAdditionalLightningResistance = 995, + /// /// map_monsters_additional_physical_damage_reduction /// - MapMonstersAdditionalPhysicalDamageReduction = 996, - + MapMonstersAdditionalPhysicalDamageReduction = 996, + /// /// map_monsters_cannot_be_stunned /// - MapMonstersCannotBeStunned = 997, - + MapMonstersCannotBeStunned = 997, + /// /// map_monsters_life_+% /// - MapMonstersLifePct = 998, - + MapMonstersLifePct = 998, + /// /// map_monsters_damage_+% /// - MapMonstersDamagePct = 999, - + MapMonstersDamagePct = 999, + /// /// map_monsters_movement_speed_+% /// - MapMonstersMovementSpeedPct = 1000, - + MapMonstersMovementSpeedPct = 1000, + /// /// map_monsters_attack_speed_+% /// - MapMonstersAttackSpeedPct = 1001, - + MapMonstersAttackSpeedPct = 1001, + /// /// map_monsters_cast_speed_+% /// - MapMonstersCastSpeedPct = 1002, - + MapMonstersCastSpeedPct = 1002, + /// /// map_monsters_reflect_%_physical_damage /// - MapMonstersReflectPctPhysicalDamage = 1003, - + MapMonstersReflectPctPhysicalDamage = 1003, + /// /// map_monsters_reflect_%_elemental_damage /// - MapMonstersReflectPctElementalDamage = 1004, - + MapMonstersReflectPctElementalDamage = 1004, + /// /// map_monsters_additional_number_of_projecitles /// - MapMonstersAdditionalNumberOfProjecitles = 1005, - + MapMonstersAdditionalNumberOfProjecitles = 1005, + /// /// map_player_has_level_X_vulnerability /// - MapPlayerHasLevelXVulnerability = 1006, - + MapPlayerHasLevelXVulnerability = 1006, + /// /// map_player_has_level_X_warlords_mark /// - MapPlayerHasLevelXWarlordsMark = 1007, - + MapPlayerHasLevelXWarlordsMark = 1007, + /// /// map_player_has_level_X_enfeeble /// - MapPlayerHasLevelXEnfeeble = 1008, - + MapPlayerHasLevelXEnfeeble = 1008, + /// /// map_player_has_level_X_elemental_weakness /// - MapPlayerHasLevelXElementalWeakness = 1009, - + MapPlayerHasLevelXElementalWeakness = 1009, + /// /// map_player_has_level_X_temporal_chains /// - MapPlayerHasLevelXTemporalChains = 1010, - + MapPlayerHasLevelXTemporalChains = 1010, + /// /// map_player_no_regeneration /// - MapPlayerNoRegeneration = 1011, - + MapPlayerNoRegeneration = 1011, + /// /// no_life_regeneration /// - NoLifeRegeneration = 1012, - + NoLifeRegeneration = 1012, + /// /// no_mana_regeneration /// - NoManaRegeneration = 1013, - + NoManaRegeneration = 1013, + /// /// map_player_base_chaos_damage_taken_per_minute /// - MapPlayerBaseChaosDamageTakenPerMinute = 1014, - + MapPlayerBaseChaosDamageTakenPerMinute = 1014, + /// /// map_player_has_blood_magic_keystone /// - MapPlayerHasBloodMagicKeystone = 1015, - + MapPlayerHasBloodMagicKeystone = 1015, + /// /// map_player_has_elemental_equilibrium_keystone /// - MapPlayerHasElementalEquilibriumKeystone = 1016, - + MapPlayerHasElementalEquilibriumKeystone = 1016, + /// /// map_player_has_chaos_inoculation_keystone /// - MapPlayerHasChaosInoculationKeystone = 1017, - + MapPlayerHasChaosInoculationKeystone = 1017, + /// /// map_additional_player_maximum_resistances_% /// - MapAdditionalPlayerMaximumResistancesPct = 1018, - + MapAdditionalPlayerMaximumResistancesPct = 1018, + /// /// map_player_status_recovery_speed_+% /// - MapPlayerStatusRecoverySpeedPct = 1019, - + MapPlayerStatusRecoverySpeedPct = 1019, + /// /// life_recovery_speed_+%_final_from_map /// - LifeRecoverySpeedPctFinalFromMap = 1020, - + LifeRecoverySpeedPctFinalFromMap = 1020, + /// /// mana_recovery_speed_+%_final_from_map /// - ManaRecoverySpeedPctFinalFromMap = 1021, - + ManaRecoverySpeedPctFinalFromMap = 1021, + /// /// energy_shield_recovery_speed_+%_final_from_map /// - EnergyShieldRecoverySpeedPctFinalFromMap = 1022, - + EnergyShieldRecoverySpeedPctFinalFromMap = 1022, + /// /// map_size_+% /// - MapSizePct = 1023, - + MapSizePct = 1023, + /// /// map_is_branchy /// - MapIsBranchy = 1024, - + MapIsBranchy = 1024, + /// /// map_packs_are_totems /// - MapPacksAreTotems = 1025, - + MapPacksAreTotems = 1025, + /// /// map_packs_are_skeletons /// - MapPacksAreSkeletons = 1026, - + MapPacksAreSkeletons = 1026, + /// /// map_packs_are_bandits /// - MapPacksAreBandits = 1027, - + MapPacksAreBandits = 1027, + /// /// map_packs_are_goatmen /// - MapPacksAreGoatmen = 1028, - + MapPacksAreGoatmen = 1028, + /// /// map_packs_are_sea_witches_and_spawn /// - MapPacksAreSeaWitchesAndSpawn = 1029, - + MapPacksAreSeaWitchesAndSpawn = 1029, + /// /// map_packs_are_undead_and_necromancers /// - MapPacksAreUndeadAndNecromancers = 1030, - + MapPacksAreUndeadAndNecromancers = 1030, + /// /// map_packs_fire_projectiles /// - MapPacksFireProjectiles = 1031, - + MapPacksFireProjectiles = 1031, + /// /// map_pack_size_+% /// - MapPackSizePct = 1032, - + MapPackSizePct = 1032, + /// /// map_number_of_magic_packs_+% /// - MapNumberOfMagicPacksPct = 1033, - + MapNumberOfMagicPacksPct = 1033, + /// /// map_number_of_rare_packs_+% /// - MapNumberOfRarePacksPct = 1034, - + MapNumberOfRarePacksPct = 1034, + /// /// map_base_ground_fire_damage_to_deal_per_minute /// - MapBaseGroundFireDamageToDealPerMinute = 1035, - + MapBaseGroundFireDamageToDealPerMinute = 1035, + /// /// map_monsters_%_physical_damage_to_convert_to_fire /// - MapMonstersPctPhysicalDamageToConvertToFire = 1036, - + MapMonstersPctPhysicalDamageToConvertToFire = 1036, + /// /// map_monsters_%_physical_damage_to_convert_to_cold /// - MapMonstersPctPhysicalDamageToConvertToCold = 1037, - + MapMonstersPctPhysicalDamageToConvertToCold = 1037, + /// /// map_monsters_%_physical_damage_to_convert_to_lightning /// - MapMonstersPctPhysicalDamageToConvertToLightning = 1038, - + MapMonstersPctPhysicalDamageToConvertToLightning = 1038, + /// /// map_monsters_%_physical_damage_to_convert_to_chaos /// - MapMonstersPctPhysicalDamageToConvertToChaos = 1039, - + MapMonstersPctPhysicalDamageToConvertToChaos = 1039, + /// /// map_monsters_%_physical_damage_to_add_as_fire /// - MapMonstersPctPhysicalDamageToAddAsFire = 1040, - + MapMonstersPctPhysicalDamageToAddAsFire = 1040, + /// /// map_monsters_%_physical_damage_to_add_as_cold /// - MapMonstersPctPhysicalDamageToAddAsCold = 1041, - + MapMonstersPctPhysicalDamageToAddAsCold = 1041, + /// /// map_monsters_%_physical_damage_to_add_as_lightning /// - MapMonstersPctPhysicalDamageToAddAsLightning = 1042, - + MapMonstersPctPhysicalDamageToAddAsLightning = 1042, + /// /// map_monsters_%_physical_damage_to_add_as_chaos /// - MapMonstersPctPhysicalDamageToAddAsChaos = 1043, - + MapMonstersPctPhysicalDamageToAddAsChaos = 1043, + /// /// base_additional_physical_damage_reduction_% /// - BaseAdditionalPhysicalDamageReductionPct = 1044, - + BaseAdditionalPhysicalDamageReductionPct = 1044, + /// /// map_monsters_gain_x_frenzy_charges_every_20_seconds /// - MapMonstersGainXFrenzyChargesEvery20Seconds = 1045, - + MapMonstersGainXFrenzyChargesEvery20Seconds = 1045, + /// /// map_additional_number_of_packs_to_choose /// - MapAdditionalNumberOfPacksToChoose = 1046, - + MapAdditionalNumberOfPacksToChoose = 1046, + /// /// map_item_drop_quantity_+% /// - MapItemDropQuantityPct = 1047, - + MapItemDropQuantityPct = 1047, + /// /// map_ground_effect_patches_per_100_tiles /// - MapGroundEffectPatchesPer100Tiles = 1048, - + MapGroundEffectPatchesPer100Tiles = 1048, + /// /// map_ground_tar_movement_speed_+% /// - MapGroundTarMovementSpeedPct = 1049, - + MapGroundTarMovementSpeedPct = 1049, + /// /// map_ground_effect_radius /// - MapGroundEffectRadius = 1050, - + MapGroundEffectRadius = 1050, + /// /// map_ground_ice /// - MapGroundIce = 1051, - + MapGroundIce = 1051, + /// /// map_chest_item_quantity_+% /// - MapChestItemQuantityPct = 1052, - + MapChestItemQuantityPct = 1052, + /// /// map_chest_item_rarity_+% /// - MapChestItemRarityPct = 1053, - + MapChestItemRarityPct = 1053, + /// /// display_map_no_monsters /// - DisplayMapNoMonsters = 1054, - + DisplayMapNoMonsters = 1054, + /// /// necromancer_additional_rarity_levels_can_be_raised /// - NecromancerAdditionalRarityLevelsCanBeRaised = 1055, - + NecromancerAdditionalRarityLevelsCanBeRaised = 1055, + /// /// monster_dropped_item_quantity_from_numplayers_+% /// - MonsterDroppedItemQuantityFromNumplayersPct = 1056, - + MonsterDroppedItemQuantityFromNumplayersPct = 1056, + /// /// map_disable_chest_drop_scaling /// - MapDisableChestDropScaling = 1057, - + MapDisableChestDropScaling = 1057, + /// /// physical_damage_taken_%_as_fire /// - PhysicalDamageTakenPctAsFire = 1058, - + PhysicalDamageTakenPctAsFire = 1058, + /// /// physical_damage_taken_%_as_cold /// - PhysicalDamageTakenPctAsCold = 1059, - + PhysicalDamageTakenPctAsCold = 1059, + /// /// physical_damage_taken_%_as_lightning /// - PhysicalDamageTakenPctAsLightning = 1060, - + PhysicalDamageTakenPctAsLightning = 1060, + /// /// physical_damage_taken_%_as_chaos /// - PhysicalDamageTakenPctAsChaos = 1061, - + PhysicalDamageTakenPctAsChaos = 1061, + /// /// base_energy_shield_regeneration_rate_per_minute /// - BaseEnergyShieldRegenerationRatePerMinute = 1062, - + BaseEnergyShieldRegenerationRatePerMinute = 1062, + /// /// leech_energy_shield_instead_of_life /// - LeechEnergyShieldInsteadOfLife = 1063, - + LeechEnergyShieldInsteadOfLife = 1063, + /// /// energy_shield_regeneration_rate_per_minute /// - EnergyShieldRegenerationRatePerMinute = 1064, - + EnergyShieldRegenerationRatePerMinute = 1064, + /// /// monster_uses_mass_power_text /// - MonsterUsesMassPowerText = 1065, - + MonsterUsesMassPowerText = 1065, + /// /// monster_uses_mass_endurance_text /// - MonsterUsesMassEnduranceText = 1066, - + MonsterUsesMassEnduranceText = 1066, + /// /// monster_uses_shockwave_text /// - MonsterUsesShockwaveText = 1067, - + MonsterUsesShockwaveText = 1067, + /// /// unique_facebreaker_unarmed_physical_damage_+%_final /// - UniqueFacebreakerUnarmedPhysicalDamagePctFinal = 1068, - + UniqueFacebreakerUnarmedPhysicalDamagePctFinal = 1068, + /// /// local_display_socketed_gems_get_increased_area_level /// - LocalDisplaySocketedGemsGetIncreasedAreaLevel = 1069, - + LocalDisplaySocketedGemsGetIncreasedAreaLevel = 1069, + /// /// local_socketed_aura_gem_level_+ /// - LocalSocketedAuraGemLevel = 1070, - + LocalSocketedAuraGemLevel = 1070, + /// /// extra_gore /// - ExtraGore = 1071, - + ExtraGore = 1071, + /// /// local_one_socket_each_colour_only /// - LocalOneSocketEachColourOnly = 1072, - + LocalOneSocketEachColourOnly = 1072, + /// /// life_reserved_by_stat_% /// - LifeReservedByStatPct = 1073, - + LifeReservedByStatPct = 1073, + /// /// block_while_dual_wielding_claws_% /// - BlockWhileDualWieldingClawsPct = 1074, - + BlockWhileDualWieldingClawsPct = 1074, + /// /// unique_chin_sol_close_range_bow_damage_+%_final /// - UniqueChinSolCloseRangeBowDamagePctFinal = 1075, - + UniqueChinSolCloseRangeBowDamagePctFinal = 1075, + /// /// unique_chin_sol_close_range_knockback /// - UniqueChinSolCloseRangeKnockback = 1076, - + UniqueChinSolCloseRangeKnockback = 1076, + /// /// physical_damage_reduction_rating_against_projectiles /// - PhysicalDamageReductionRatingAgainstProjectiles = 1077, - + PhysicalDamageReductionRatingAgainstProjectiles = 1077, + /// /// additional_block_chance_against_projectiles_% /// - AdditionalBlockChanceAgainstProjectilesPct = 1078, - + AdditionalBlockChanceAgainstProjectilesPct = 1078, + /// /// physical_damage_reduction_rating_+%_against_projectiles /// - PhysicalDamageReductionRatingPctAgainstProjectiles = 1079, - + PhysicalDamageReductionRatingPctAgainstProjectiles = 1079, + /// /// spell_projectile_block_% /// - SpellProjectileBlockPct = 1080, - + SpellProjectileBlockPct = 1080, + /// /// projectile_attack_block_% /// - ProjectileAttackBlockPct = 1081, - + ProjectileAttackBlockPct = 1081, + /// /// display_estimated_physical_damage_reduciton_against_projectiles_% /// - DisplayEstimatedPhysicalDamageReducitonAgainstProjectilesPct = 1082, - + DisplayEstimatedPhysicalDamageReducitonAgainstProjectilesPct = 1082, + /// /// damage_taken_goes_to_mana_% /// - DamageTakenGoesToManaPct = 1083, - + DamageTakenGoesToManaPct = 1083, + /// /// evasion_and_physical_damage_reduction_rating_+% /// - EvasionAndPhysicalDamageReductionRatingPct = 1084, - + EvasionAndPhysicalDamageReductionRatingPct = 1084, + /// /// additional_item_drop_slots_when_deleted_on_death /// - AdditionalItemDropSlotsWhenDeletedOnDeath = 1085, - + AdditionalItemDropSlotsWhenDeletedOnDeath = 1085, + /// /// mana_degeneration_per_minute /// - ManaDegenerationPerMinute = 1086, - + ManaDegenerationPerMinute = 1086, + /// /// life_degeneration_per_minute /// - LifeDegenerationPerMinute = 1087, - + LifeDegenerationPerMinute = 1087, + /// /// ice_shield_moving_mana_degeneration_per_minute /// - IceShieldMovingManaDegenerationPerMinute = 1088, - + IceShieldMovingManaDegenerationPerMinute = 1088, + /// /// unique_quill_rain_damage_+%_final /// - UniqueQuillRainDamagePctFinal = 1089, - + UniqueQuillRainDamagePctFinal = 1089, + /// /// melee_physical_damage_taken_%_to_deal_to_attacker /// - MeleePhysicalDamageTakenPctToDealToAttacker = 1090, - + MeleePhysicalDamageTakenPctToDealToAttacker = 1090, + /// /// additional_block_% /// - AdditionalBlockPct = 1091, - + AdditionalBlockPct = 1091, + /// /// frozen_monsters_take_increased_damage /// - FrozenMonstersTakeIncreasedDamage = 1092, - + FrozenMonstersTakeIncreasedDamage = 1092, + /// /// local_display_socketed_gems_get_blood_magic_level /// - LocalDisplaySocketedGemsGetBloodMagicLevel = 1093, - + LocalDisplaySocketedGemsGetBloodMagicLevel = 1093, + /// /// local_display_socketed_gems_have_blood_magic /// - LocalDisplaySocketedGemsHaveBloodMagic = 1094, - + LocalDisplaySocketedGemsHaveBloodMagic = 1094, + /// /// Monster Base Block % /// - MonsterBaseBlockPct = 1095, - + MonsterBaseBlockPct = 1095, + /// /// base_cannot_leech /// - BaseCannotLeech = 1096, - + BaseCannotLeech = 1096, + /// /// keystone_vampirism /// - KeystoneVampirism = 1097, - + KeystoneVampirism = 1097, + /// /// unique_dewaths_hide_physical_attack_damage_dealt_- /// - UniqueDewathsHidePhysicalAttackDamageDealt = 1098, - + UniqueDewathsHidePhysicalAttackDamageDealt = 1098, + /// /// local_strength_requirement_+% /// - LocalStrengthRequirementPct = 1099, - + LocalStrengthRequirementPct = 1099, + /// /// local_dexterity_requirement_+% /// - LocalDexterityRequirementPct = 1100, - + LocalDexterityRequirementPct = 1100, + /// /// local_intelligence_requirement_+% /// - LocalIntelligenceRequirementPct = 1101, - + LocalIntelligenceRequirementPct = 1101, + /// /// local_cannot_be_used_with_chaos_innoculation /// - LocalCannotBeUsedWithChaosInnoculation = 1102, - + LocalCannotBeUsedWithChaosInnoculation = 1102, + /// /// local_display_socketed_gems_have_mana_reservation_+% /// - LocalDisplaySocketedGemsHaveManaReservationPct = 1103, - + LocalDisplaySocketedGemsHaveManaReservationPct = 1103, + /// /// mace_elemental_damage_+% /// - MaceElementalDamagePct = 1104, - + MaceElementalDamagePct = 1104, + /// /// active_skill_minion_movement_velocity_+%_final /// - ActiveSkillMinionMovementVelocityPctFinal = 1105, - + ActiveSkillMinionMovementVelocityPctFinal = 1105, + /// /// movement_velocity_+%_final_for_minion /// - MovementVelocityPctFinalForMinion = 1106, - + MovementVelocityPctFinalForMinion = 1106, + /// /// movement_velocity_cap /// - MovementVelocityCap = 1107, - + MovementVelocityCap = 1107, + /// /// display_minion_base_maximum_life /// - DisplayMinionBaseMaximumLife = 1108, - + DisplayMinionBaseMaximumLife = 1108, + /// /// display_minion_maximum_life /// - DisplayMinionMaximumLife = 1109, - + DisplayMinionMaximumLife = 1109, + /// /// skill_physical_damage_%_to_convert_to_fire /// - SkillPhysicalDamagePctToConvertToFire = 1110, - + SkillPhysicalDamagePctToConvertToFire = 1110, + /// /// skill_physical_damage_%_to_convert_to_cold /// - SkillPhysicalDamagePctToConvertToCold = 1111, - + SkillPhysicalDamagePctToConvertToCold = 1111, + /// /// skill_physical_damage_%_to_convert_to_lightning /// - SkillPhysicalDamagePctToConvertToLightning = 1112, - + SkillPhysicalDamagePctToConvertToLightning = 1112, + /// /// skill_physical_damage_%_to_convert_to_chaos /// - SkillPhysicalDamagePctToConvertToChaos = 1113, - + SkillPhysicalDamagePctToConvertToChaos = 1113, + /// /// skill_cold_damage_%_to_convert_to_fire /// - SkillColdDamagePctToConvertToFire = 1114, - + SkillColdDamagePctToConvertToFire = 1114, + /// /// physical_damage_%_to_convert_to_fire /// - PhysicalDamagePctToConvertToFire = 1115, - + PhysicalDamagePctToConvertToFire = 1115, + /// /// physical_damage_%_to_convert_to_cold /// - PhysicalDamagePctToConvertToCold = 1116, - + PhysicalDamagePctToConvertToCold = 1116, + /// /// physical_damage_%_to_convert_to_lightning /// - PhysicalDamagePctToConvertToLightning = 1117, - + PhysicalDamagePctToConvertToLightning = 1117, + /// /// physical_damage_%_to_convert_to_chaos /// - PhysicalDamagePctToConvertToChaos = 1118, - + PhysicalDamagePctToConvertToChaos = 1118, + /// /// cold_damage_%_to_convert_to_fire /// - ColdDamagePctToConvertToFire = 1119, - + ColdDamagePctToConvertToFire = 1119, + /// /// main_hand_attack_duration_ms /// - MainHandAttackDurationMs = 1120, - + MainHandAttackDurationMs = 1120, + /// /// off_hand_attack_duration_ms /// - OffHandAttackDurationMs = 1121, - + OffHandAttackDurationMs = 1121, + /// /// spell_cast_time_ms /// - SpellCastTimeMs = 1122, - + SpellCastTimeMs = 1122, + /// /// cast_time_overrides_attack_duration /// - CastTimeOverridesAttackDuration = 1123, - + CastTimeOverridesAttackDuration = 1123, + /// /// projectiles_fork /// - ProjectilesFork = 1124, - + ProjectilesFork = 1124, + /// /// base_skill_number_of_additional_hits /// - BaseSkillNumberOfAdditionalHits = 1125, - + BaseSkillNumberOfAdditionalHits = 1125, + /// /// skill_override_pvp_scaling_time_ms /// - SkillOverridePvpScalingTimeMs = 1126, - + SkillOverridePvpScalingTimeMs = 1126, + /// /// skill_double_hits_when_dual_wielding /// - SkillDoubleHitsWhenDualWielding = 1127, - + SkillDoubleHitsWhenDualWielding = 1127, + /// /// skill_number_of_additional_hits /// - SkillNumberOfAdditionalHits = 1128, - + SkillNumberOfAdditionalHits = 1128, + /// /// trap_override_pvp_scaling_time_ms /// - TrapOverridePvpScalingTimeMs = 1129, - + TrapOverridePvpScalingTimeMs = 1129, + /// /// mine_override_pvp_scaling_time_ms /// - MineOverridePvpScalingTimeMs = 1130, - + MineOverridePvpScalingTimeMs = 1130, + /// /// override_pvp_scaling_time_ms /// - OverridePvpScalingTimeMs = 1131, - + OverridePvpScalingTimeMs = 1131, + /// /// skill_display_number_of_totems_allowed /// - SkillDisplayNumberOfTotemsAllowed = 1132, - + SkillDisplayNumberOfTotemsAllowed = 1132, + /// /// skill_display_number_of_traps_allowed /// - SkillDisplayNumberOfTrapsAllowed = 1133, - + SkillDisplayNumberOfTrapsAllowed = 1133, + /// /// skill_display_number_of_remote_mines_allowed /// - SkillDisplayNumberOfRemoteMinesAllowed = 1134, - + SkillDisplayNumberOfRemoteMinesAllowed = 1134, + /// /// energy_shield_%_gained_on_block /// - EnergyShieldPctGainedOnBlock = 1135, - + EnergyShieldPctGainedOnBlock = 1135, + /// /// local_display_socketed_gems_get_added_chaos_damage_level /// - LocalDisplaySocketedGemsGetAddedChaosDamageLevel = 1136, - + LocalDisplaySocketedGemsGetAddedChaosDamageLevel = 1136, + /// /// projectiles_return /// - ProjectilesReturn = 1137, - + ProjectilesReturn = 1137, + /// /// projectile_number_to_split /// - ProjectileNumberToSplit = 1138, - + ProjectileNumberToSplit = 1138, + /// /// determination_aura_armour_+%_final /// - DeterminationAuraArmourPctFinal = 1139, - + DeterminationAuraArmourPctFinal = 1139, + /// /// support_chain_hit_damage_+%_final /// - SupportChainHitDamagePctFinal = 1140, - + SupportChainHitDamagePctFinal = 1140, + /// /// support_split_projectile_damage_+%_final /// - SupportSplitProjectileDamagePctFinal = 1141, - + SupportSplitProjectileDamagePctFinal = 1141, + /// /// support_return_projectile_damage_+%_final /// - SupportReturnProjectileDamagePctFinal = 1142, - + SupportReturnProjectileDamagePctFinal = 1142, + /// /// support_fork_projectile_damage_+%_final /// - SupportForkProjectileDamagePctFinal = 1143, - + SupportForkProjectileDamagePctFinal = 1143, + /// /// energy_shield_%_of_armour_rating_gained_on_block /// - EnergyShieldPctOfArmourRatingGainedOnBlock = 1144, - + EnergyShieldPctOfArmourRatingGainedOnBlock = 1144, + /// /// skeleton_duration_+% /// - SkeletonDurationPct = 1145, - + SkeletonDurationPct = 1145, + /// /// local_poison_on_hit /// - LocalPoisonOnHit = 1146, - + LocalPoisonOnHit = 1146, + /// /// main_hand_local_poison_on_hit /// - MainHandLocalPoisonOnHit = 1147, - + MainHandLocalPoisonOnHit = 1147, + /// /// off_hand_local_poison_on_hit /// - OffHandLocalPoisonOnHit = 1148, - + OffHandLocalPoisonOnHit = 1148, + /// /// on_low_mana /// - OnLowMana = 1149, - + OnLowMana = 1149, + /// /// spell_damage_taken_+%_when_on_low_mana /// - SpellDamageTakenPctWhenOnLowMana = 1150, - + SpellDamageTakenPctWhenOnLowMana = 1150, + /// - /// spell_damage_taken_+% + /// virtual_spell_damage_taken_+% /// - SpellDamageTakenPct = 1151, - + VirtualSpellDamageTakenPct = 1151, + /// /// evasion_rating_+_when_on_full_life /// - EvasionRatingWhenOnFullLife = 1152, - + EvasionRatingWhenOnFullLife = 1152, + /// /// aura_effect_on_self_+% /// - AuraEffectOnSelfPct = 1153, - + AuraEffectOnSelfPct = 1153, + /// /// minions_have_aura_effect_+% /// - MinionsHaveAuraEffectPct = 1154, - + MinionsHaveAuraEffectPct = 1154, + /// /// reflect_curses /// - ReflectCurses = 1155, - + ReflectCurses = 1155, + /// /// global_critical_strike_chance_+%_while_holding_staff /// - GlobalCriticalStrikeChancePctWhileHoldingStaff = 1156, - + GlobalCriticalStrikeChancePctWhileHoldingStaff = 1156, + /// /// global_critical_strike_multiplier_+_while_holding_staff /// - GlobalCriticalStrikeMultiplierWhileHoldingStaff = 1157, - + GlobalCriticalStrikeMultiplierWhileHoldingStaff = 1157, + /// /// secondary_damage_critical_strike_multiplier_+ /// - SecondaryDamageCriticalStrikeMultiplier = 1158, - + SecondaryDamageCriticalStrikeMultiplier = 1158, + /// /// old_do_not_use_life_leech_from_spell_damage_% /// - OldDoNotUseLifeLeechFromSpellDamagePct = 1159, - + OldDoNotUseLifeLeechFromSpellDamagePct = 1159, + /// /// old_do_not_use_mana_leech_from_spell_damage_% /// - OldDoNotUseManaLeechFromSpellDamagePct = 1160, - + OldDoNotUseManaLeechFromSpellDamagePct = 1160, + /// /// punishment_physical_damage_%_reflected_for_normal_monsters /// - PunishmentPhysicalDamagePctReflectedForNormalMonsters = 1161, - + PunishmentPhysicalDamagePctReflectedForNormalMonsters = 1161, + /// /// punishment_physical_damage_%_reflected_for_magic_monsters /// - PunishmentPhysicalDamagePctReflectedForMagicMonsters = 1162, - + PunishmentPhysicalDamagePctReflectedForMagicMonsters = 1162, + /// /// punishment_physical_damage_%_reflected_for_rare_monsters /// - PunishmentPhysicalDamagePctReflectedForRareMonsters = 1163, - + PunishmentPhysicalDamagePctReflectedForRareMonsters = 1163, + /// /// punishment_physical_damage_%_reflected_for_unique_monsters /// - PunishmentPhysicalDamagePctReflectedForUniqueMonsters = 1164, - + PunishmentPhysicalDamagePctReflectedForUniqueMonsters = 1164, + /// /// is_player_minion /// - IsPlayerMinion = 1165, - + IsPlayerMinion = 1165, + /// /// Local Flask Curse Immunity While Healing /// - LocalFlaskCurseImmunityWhileHealing = 1166, - + LocalFlaskCurseImmunityWhileHealing = 1166, + /// /// attacks_deal_no_physical_damage /// - AttacksDealNoPhysicalDamage = 1167, - + AttacksDealNoPhysicalDamage = 1167, + /// /// whirling_blades_base_ground_fire_damage_to_deal_per_minute /// - WhirlingBladesBaseGroundFireDamageToDealPerMinute = 1168, - + WhirlingBladesBaseGroundFireDamageToDealPerMinute = 1168, + /// /// monster_casts_ethereal_knives_text /// - MonsterCastsEtherealKnivesText = 1169, - + MonsterCastsEtherealKnivesText = 1169, + /// /// monster_throws_beartraps_text /// - MonsterThrowsBeartrapsText = 1170, - + MonsterThrowsBeartrapsText = 1170, + /// /// monster_casts_lightning_thorns_text /// - MonsterCastsLightningThornsText = 1171, - + MonsterCastsLightningThornsText = 1171, + /// /// monster_throws_fire_bombs_text /// - MonsterThrowsFireBombsText = 1172, - + MonsterThrowsFireBombsText = 1172, + /// /// monster_throws_caustic_bombs_text /// - MonsterThrowsCausticBombsText = 1173, - + MonsterThrowsCausticBombsText = 1173, + /// /// monster_casts_freezing_pulse_text /// - MonsterCastsFreezingPulseText = 1174, - + MonsterCastsFreezingPulseText = 1174, + /// /// monster_cleaves_text /// - MonsterCleavesText = 1175, - + MonsterCleavesText = 1175, + /// /// monster_fires_ice_shot_arrows_text /// - MonsterFiresIceShotArrowsText = 1176, - + MonsterFiresIceShotArrowsText = 1176, + /// /// monster_casts_conductivity_text /// - MonsterCastsConductivityText = 1177, - + MonsterCastsConductivityText = 1177, + /// /// monster_casts_flammability_text /// - MonsterCastsFlammabilityText = 1178, - + MonsterCastsFlammabilityText = 1178, + /// /// monster_casts_augmented_fireballs_text /// - MonsterCastsAugmentedFireballsText = 1179, - + MonsterCastsAugmentedFireballsText = 1179, + /// /// monster_channels_lightning_text /// - MonsterChannelsLightningText = 1180, - + MonsterChannelsLightningText = 1180, + /// /// monster_casts_arc_text /// - MonsterCastsArcText = 1181, - + MonsterCastsArcText = 1181, + /// /// monster_raises_zombies_text /// - MonsterRaisesZombiesText = 1182, - + MonsterRaisesZombiesText = 1182, + /// /// monster_casts_ice_shield_text /// - MonsterCastsIceShieldText = 1183, - + MonsterCastsIceShieldText = 1183, + /// /// monster_casts_unholy_fire_text /// - MonsterCastsUnholyFireText = 1184, - + MonsterCastsUnholyFireText = 1184, + /// /// physical_damage_taken_+ /// - PhysicalDamageTaken = 1185, - + PhysicalDamageTaken = 1185, + /// /// fire_damage_taken_+ /// - FireDamageTaken = 1186, - + FireDamageTaken = 1186, + /// /// monster_gain_power_charge_on_kin_death /// - MonsterGainPowerChargeOnKinDeath = 1187, - + MonsterGainPowerChargeOnKinDeath = 1187, + /// /// monster_casts_discharge_text /// - MonsterCastsDischargeText = 1188, - + MonsterCastsDischargeText = 1188, + /// /// trap_variation /// - TrapVariation = 1189, - + TrapVariation = 1189, + /// /// number_of_water_elementals_to_summon /// - NumberOfWaterElementalsToSummon = 1190, - + NumberOfWaterElementalsToSummon = 1190, + /// /// number_of_water_elementals_allowed /// - NumberOfWaterElementalsAllowed = 1191, - + NumberOfWaterElementalsAllowed = 1191, + /// /// display_summons_water_elementals_text /// - DisplaySummonsWaterElementalsText = 1192, - + DisplaySummonsWaterElementalsText = 1192, + /// /// shield_charge_remove_stun_and_knockback /// - ShieldChargeRemoveStunAndKnockback = 1193, - + ShieldChargeRemoveStunAndKnockback = 1193, + /// /// display_monster_uses_double_strike_text /// - DisplayMonsterUsesDoubleStrikeText = 1194, - + DisplayMonsterUsesDoubleStrikeText = 1194, + /// /// bleed_on_hit_base_duration /// - BleedOnHitBaseDuration = 1195, - + BleedOnHitBaseDuration = 1195, + /// /// display_monster_uses_whirling_blades_text /// - DisplayMonsterUsesWhirlingBladesText = 1196, - + DisplayMonsterUsesWhirlingBladesText = 1196, + /// /// Cannot be Stunned /// - CannotBeStunned = 1197, - + CannotBeStunned = 1197, + /// /// cannot_be_stunned_when_on_low_life /// - CannotBeStunnedWhenOnLowLife = 1198, - + CannotBeStunnedWhenOnLowLife = 1198, + /// /// display_monster_casts_lightning_warp_text /// - DisplayMonsterCastsLightningWarpText = 1199, - + DisplayMonsterCastsLightningWarpText = 1199, + /// /// display_golden_radiance /// - DisplayGoldenRadiance = 1200, - + DisplayGoldenRadiance = 1200, + /// /// display_monster_casts_frostbite_text /// - DisplayMonsterCastsFrostbiteText = 1201, - + DisplayMonsterCastsFrostbiteText = 1201, + /// /// cannot_be_converted_or_dominated /// - CannotBeConvertedOrDominated = 1202, - + CannotBeConvertedOrDominated = 1202, + /// /// map_hidden_monster_life_+%_times_6_final /// - MapHiddenMonsterLifePctTimes6Final = 1203, - + MapHiddenMonsterLifePctTimes6Final = 1203, + /// /// map_hidden_monster_damage_+%_squared_final /// - MapHiddenMonsterDamagePctSquaredFinal = 1204, - + MapHiddenMonsterDamagePctSquaredFinal = 1204, + /// /// regenerate_energy_shield_instead_of_life /// - RegenerateEnergyShieldInsteadOfLife = 1205, - + RegenerateEnergyShieldInsteadOfLife = 1205, + /// /// damage_not_from_skill_user /// - DamageNotFromSkillUser = 1206, - + DamageNotFromSkillUser = 1206, + /// /// deal_no_damage_yourself /// - DealNoDamageYourself = 1207, - + DealNoDamageYourself = 1207, + /// /// deal_no_damage /// - DealNoDamage = 1208, - + DealNoDamage = 1208, + /// /// disable_skill_if_melee_attack /// - DisableSkillIfMeleeAttack = 1209, - + DisableSkillIfMeleeAttack = 1209, + /// /// display_disable_melee_weapons /// - DisplayDisableMeleeWeapons = 1210, - + DisplayDisableMeleeWeapons = 1210, + /// /// chaos_damage_does_not_bypass_energy_shield /// - ChaosDamageDoesNotBypassEnergyShield = 1211, - + ChaosDamageDoesNotBypassEnergyShield = 1211, + /// /// cannot_cast_spells /// - CannotCastSpells = 1212, - + CannotCastSpells = 1212, + /// /// piety_transform_debuff_time_ms /// - PietyTransformDebuffTimeMs = 1213, - + PietyTransformDebuffTimeMs = 1213, + /// /// cheat_override_blood_effect_level /// - CheatOverrideBloodEffectLevel = 1214, - + CheatOverrideBloodEffectLevel = 1214, + /// /// map_undead_monsters_get_up_after_X_seconds /// - MapUndeadMonstersGetUpAfterXSeconds = 1215, - + MapUndeadMonstersGetUpAfterXSeconds = 1215, + /// /// local_stun_threshold_reduction_+% /// - LocalStunThresholdReductionPct = 1216, - + LocalStunThresholdReductionPct = 1216, + /// /// main_hand_local_stun_threshold_reduction_+% /// - MainHandLocalStunThresholdReductionPct = 1217, - + MainHandLocalStunThresholdReductionPct = 1217, + /// /// off_hand_local_stun_threshold_reduction_+% /// - OffHandLocalStunThresholdReductionPct = 1218, - + OffHandLocalStunThresholdReductionPct = 1218, + /// /// intermediary_maximum_life_including_chaos_innoculation /// - IntermediaryMaximumLifeIncludingChaosInnoculation = 1219, - + IntermediaryMaximumLifeIncludingChaosInnoculation = 1219, + /// /// Light Radius +% /// - LightRadiusPct = 1220, - + LightRadiusPct = 1220, + /// /// active_skill_cast_speed_+%_final /// - ActiveSkillCastSpeedPctFinal = 1221, - + ActiveSkillCastSpeedPctFinal = 1221, + /// /// map_has_X_waves_of_monsters /// - MapHasXWavesOfMonsters = 1222, - + MapHasXWavesOfMonsters = 1222, + /// /// map_has_X_seconds_between_waves /// - MapHasXSecondsBetweenWaves = 1223, - + MapHasXSecondsBetweenWaves = 1223, + /// /// map_num_initial_wave_monsters /// - MapNumInitialWaveMonsters = 1224, - + MapNumInitialWaveMonsters = 1224, + /// /// map_wave_monster_increment /// - MapWaveMonsterIncrement = 1225, - + MapWaveMonsterIncrement = 1225, + /// /// flamethrower_damage_+%_per_stage_final /// - FlamethrowerDamagePctPerStageFinal = 1226, - + FlamethrowerDamagePctPerStageFinal = 1226, + /// /// ground_tar_on_take_crit_base_area_of_effect_radius /// - GroundTarOnTakeCritBaseAreaOfEffectRadius = 1227, - + GroundTarOnTakeCritBaseAreaOfEffectRadius = 1227, + /// /// ground_tar_on_take_crit_duration_ms /// - GroundTarOnTakeCritDurationMs = 1228, - + GroundTarOnTakeCritDurationMs = 1228, + /// /// ground_tar_on_take_crit_monvement_speed_pluspercent /// - GroundTarOnTakeCritMonvementSpeedPluspercent = 1229, - + GroundTarOnTakeCritMonvementSpeedPluspercent = 1229, + /// /// curse_on_hit_%_enfeeble /// - CurseOnHitPctEnfeeble = 1230, - + CurseOnHitPctEnfeeble = 1230, + /// /// totem_art_variation /// - TotemArtVariation = 1231, - + TotemArtVariation = 1231, + /// /// spells_have_culling_strike /// - SpellsHaveCullingStrike = 1232, - + SpellsHaveCullingStrike = 1232, + /// /// map_monsters_immune_to_a_random_status_ailment_or_stun /// - MapMonstersImmuneToARandomStatusAilmentOrStun = 1233, - + MapMonstersImmuneToARandomStatusAilmentOrStun = 1233, + /// /// map_monster_melee_attacks_apply_random_curses /// - MapMonsterMeleeAttacksApplyRandomCurses = 1234, - + MapMonsterMeleeAttacksApplyRandomCurses = 1234, + + /// + /// map_monster_melee_attacks_apply_random_curses_%_chance + /// + MapMonsterMeleeAttacksApplyRandomCursesPctChance = 1235, + /// /// map_monsters_reflect_curses /// - MapMonstersReflectCurses = 1235, - + MapMonstersReflectCurses = 1236, + /// /// curse_on_melee_hit_%_random_curse /// - CurseOnMeleeHitPctRandomCurse = 1236, - + CurseOnMeleeHitPctRandomCurse = 1237, + /// /// main_hand_maximum_attack_distance /// - MainHandMaximumAttackDistance = 1237, - + MainHandMaximumAttackDistance = 1238, + /// /// off_hand_maximum_attack_distance /// - OffHandMaximumAttackDistance = 1238, - + OffHandMaximumAttackDistance = 1239, + /// /// melee_range_+ /// - MeleeRange = 1239, - + MeleeRange = 1240, + /// /// cyclone_movement_speed_+%_final /// - CycloneMovementSpeedPctFinal = 1240, - + CycloneMovementSpeedPctFinal = 1241, + /// /// local_display_socketed_gems_get_added_fire_damage_level /// - LocalDisplaySocketedGemsGetAddedFireDamageLevel = 1241, - + LocalDisplaySocketedGemsGetAddedFireDamageLevel = 1242, + /// /// local_display_socketed_gems_get_cold_to_fire_level /// - LocalDisplaySocketedGemsGetColdToFireLevel = 1242, - + LocalDisplaySocketedGemsGetColdToFireLevel = 1243, + /// /// local_display_socketed_gems_get_fire_penetration_level /// - LocalDisplaySocketedGemsGetFirePenetrationLevel = 1243, - + LocalDisplaySocketedGemsGetFirePenetrationLevel = 1244, + /// /// evasion_rating_+%_when_on_low_life /// - EvasionRatingPctWhenOnLowLife = 1244, - + EvasionRatingPctWhenOnLowLife = 1245, + /// /// life_leech_is_instant /// - LifeLeechIsInstant = 1245, - + LifeLeechIsInstant = 1246, + /// /// base_life_leech_is_instant /// - BaseLifeLeechIsInstant = 1246, - + BaseLifeLeechIsInstant = 1247, + /// /// support_multiple_attacks_melee_attack_speed_+%_final /// - SupportMultipleAttacksMeleeAttackSpeedPctFinal = 1247, - + SupportMultipleAttacksMeleeAttackSpeedPctFinal = 1248, + /// /// map_item_drop_rarity_+% /// - MapItemDropRarityPct = 1248, - + MapItemDropRarityPct = 1249, + /// /// /// - LifeGainPerTarget = 1249, - + LifeGainPerTarget = 1250, + /// /// local_life_leech_is_instant /// - LocalLifeLeechIsInstant = 1250, - + LocalLifeLeechIsInstant = 1251, + /// /// main_hand_local_life_leech_is_instant /// - MainHandLocalLifeLeechIsInstant = 1251, - + MainHandLocalLifeLeechIsInstant = 1252, + /// /// off_hand_local_life_leech_is_instant /// - OffHandLocalLifeLeechIsInstant = 1252, - + OffHandLocalLifeLeechIsInstant = 1253, + /// /// avoid_ignite_%_when_on_low_life /// - AvoidIgnitePctWhenOnLowLife = 1253, - + AvoidIgnitePctWhenOnLowLife = 1254, + /// /// fire_damage_resistance_%_when_on_low_life /// - FireDamageResistancePctWhenOnLowLife = 1254, - + FireDamageResistancePctWhenOnLowLife = 1255, + /// /// local_display_socketed_gems_get_elemental_proliferation_level /// - LocalDisplaySocketedGemsGetElementalProliferationLevel = 1255, - + LocalDisplaySocketedGemsGetElementalProliferationLevel = 1256, + /// /// melee_splash /// - MeleeSplash = 1256, - + MeleeSplash = 1257, + /// /// support_melee_splash_damage_+%_final /// - SupportMeleeSplashDamagePctFinal = 1257, - + SupportMeleeSplashDamagePctFinal = 1258, + /// /// support_melee_splash_damage_+%_final_for_splash /// - SupportMeleeSplashDamagePctFinalForSplash = 1258, - + SupportMeleeSplashDamagePctFinalForSplash = 1259, + /// /// add_power_charge_on_critical_strike_% /// - AddPowerChargeOnCriticalStrikePct = 1259, - + AddPowerChargeOnCriticalStrikePct = 1260, + /// /// Additional Melee Targets /// - BaseMeleeAttackRepeatCount = 1260, - + BaseMeleeAttackRepeatCount = 1261, + /// /// Additional Targets /// - AttackRepeatCount = 1261, - + AttackRepeatCount = 1262, + /// /// display_map_larger_maze /// - DisplayMapLargerMaze = 1262, - + DisplayMapLargerMaze = 1263, + /// /// display_map_restless_dead /// - DisplayMapRestlessDead = 1263, - + DisplayMapRestlessDead = 1264, + /// /// display_map_two_bosses /// - DisplayMapTwoBosses = 1264, - + DisplayMapTwoBosses = 1265, + /// /// display_map_large_chest /// - DisplayMapLargeChest = 1265, - + DisplayMapLargeChest = 1266, + /// /// local_socketed_movement_gem_level_+ /// - LocalSocketedMovementGemLevel = 1266, - + LocalSocketedMovementGemLevel = 1267, + /// /// map_projectile_speed_+% /// - MapProjectileSpeedPct = 1267, - + MapProjectileSpeedPct = 1268, + /// /// map_player_projectile_damage_+%_final /// - MapPlayerProjectileDamagePctFinal = 1268, - + MapPlayerProjectileDamagePctFinal = 1269, + /// /// projectile_damage_+%_final_from_map /// - ProjectileDamagePctFinalFromMap = 1269, - + ProjectileDamagePctFinalFromMap = 1270, + /// /// support_multiple_attack_damage_+%_final /// - SupportMultipleAttackDamagePctFinal = 1270, - + SupportMultipleAttackDamagePctFinal = 1271, + /// /// necromancer_revivable_even_if_corpse_unusable /// - NecromancerRevivableEvenIfCorpseUnusable = 1271, - + NecromancerRevivableEvenIfCorpseUnusable = 1272, + /// /// local_six_linked_white_sockets /// - LocalSixLinkedWhiteSockets = 1272, - + LocalSixLinkedWhiteSockets = 1273, + /// /// area_of_effect_+%_per_20_int /// - AreaOfEffectPctPer20Int = 1273, - + AreaOfEffectPctPer20Int = 1274, + /// /// attack_speed_+%_per_10_dex /// - AttackSpeedPctPer10Dex = 1274, - + AttackSpeedPctPer10Dex = 1275, + /// /// physical_weapon_damage_+%_per_10_str /// - PhysicalWeaponDamagePctPer10Str = 1275, - + PhysicalWeaponDamagePctPer10Str = 1276, + /// /// Dodge chance per Frenzy Charge /// - ChanceToDodgePctPerFrenzyCharge = 1276, - + ChanceToDodgePctPerFrenzyCharge = 1277, + /// /// gain_power_charge_per_enemy_you_crit /// - GainPowerChargePerEnemyYouCrit = 1277, - + GainPowerChargePerEnemyYouCrit = 1278, + /// /// local_unique_tabula_rasa_no_requirement_or_energy_shield /// - LocalUniqueTabulaRasaNoRequirementOrEnergyShield = 1278, - + LocalUniqueTabulaRasaNoRequirementOrEnergyShield = 1279, + /// /// map_wave_magic_increase /// - MapWaveMagicIncrease = 1279, - + MapWaveMagicIncrease = 1280, + /// /// local_display_socketed_gems_get_spell_totem_level /// - LocalDisplaySocketedGemsGetSpellTotemLevel = 1280, - + LocalDisplaySocketedGemsGetSpellTotemLevel = 1281, + /// /// cannot_increase_quantity_of_dropped_items /// - CannotIncreaseQuantityOfDroppedItems = 1281, - + CannotIncreaseQuantityOfDroppedItems = 1282, + /// /// cannot_increase_rarity_of_dropped_items /// - CannotIncreaseRarityOfDroppedItems = 1282, - + CannotIncreaseRarityOfDroppedItems = 1283, + /// /// killed_monster_dropped_item_rarity_+% /// - KilledMonsterDroppedItemRarityPct = 1283, - + KilledMonsterDroppedItemRarityPct = 1284, + /// /// killed_monster_dropped_item_quantity_+% /// - KilledMonsterDroppedItemQuantityPct = 1284, - + KilledMonsterDroppedItemQuantityPct = 1285, + /// /// burning_damage_taken_+% /// - BurningDamageTakenPct = 1285, - + BurningDamageTakenPct = 1286, + /// /// curse_effect_on_self_+% /// - CurseEffectOnSelfPct = 1286, - + CurseEffectOnSelfPct = 1287, + /// /// randomly_cursed_when_totems_die_curse_level /// - RandomlyCursedWhenTotemsDieCurseLevel = 1287, - + RandomlyCursedWhenTotemsDieCurseLevel = 1288, + /// /// Physical Damage Reflected to any Enemy Hit /// - MaximumPhysicalDamageToReturnWhenHit = 1288, - + MaximumPhysicalDamageToReturnWhenHit = 1289, + /// /// Fire Damage Reflected to any Enemy Hit /// - MaximumFireDamageToReturnWhenHit = 1289, - + MaximumFireDamageToReturnWhenHit = 1290, + /// /// Cold Damage Reflected to any Enemy Hit /// - MaximumColdDamageToReturnWhenHit = 1290, - + MaximumColdDamageToReturnWhenHit = 1291, + /// /// Lightning Damage Reflected to any Enemy Hit /// - MaximumLightningDamageToReturnWhenHit = 1291, - + MaximumLightningDamageToReturnWhenHit = 1292, + /// /// Chaos Damage Reflected to any Enemy Hit /// - MaximumChaosDamageToReturnWhenHit = 1292, - + MaximumChaosDamageToReturnWhenHit = 1293, + /// /// Physical Damage Reflected to any Enemy Hit /// - MinimumPhysicalDamageToReturnWhenHit = 1293, - + MinimumPhysicalDamageToReturnWhenHit = 1294, + /// /// Fire Damage Reflected to any Enemy Hit /// - MinimumFireDamageToReturnWhenHit = 1294, - + MinimumFireDamageToReturnWhenHit = 1295, + /// /// Cold Damage Reflected to any Enemy Hit /// - MinimumColdDamageToReturnWhenHit = 1295, - + MinimumColdDamageToReturnWhenHit = 1296, + /// /// Lightning Damage Reflected to any Enemy Hit /// - MinimumLightningDamageToReturnWhenHit = 1296, - + MinimumLightningDamageToReturnWhenHit = 1297, + /// /// Chaos Damage Reflected to any Enemy Hit /// - MinimumChaosDamageToReturnWhenHit = 1297, - + MinimumChaosDamageToReturnWhenHit = 1298, + /// /// local_display_socketed_gems_get_increased_duration_level /// - LocalDisplaySocketedGemsGetIncreasedDurationLevel = 1298, - + LocalDisplaySocketedGemsGetIncreasedDurationLevel = 1299, + /// /// summon_fire_resistance_+ /// - SummonFireResistance = 1299, - + SummonFireResistance = 1300, + /// /// summon_cold_resistance_+ /// - SummonColdResistance = 1300, - + SummonColdResistance = 1301, + /// /// summon_lightning_resistance_+ /// - SummonLightningResistance = 1301, - + SummonLightningResistance = 1302, + /// /// melee_weapon_critical_strike_multiplier_+ /// - MeleeWeaponCriticalStrikeMultiplier = 1302, - + MeleeWeaponCriticalStrikeMultiplier = 1303, + /// /// map_monster_skills_chain_X_additional_times /// - MapMonsterSkillsChainXAdditionalTimes = 1303, - + MapMonsterSkillsChainXAdditionalTimes = 1304, + /// /// local_ring_disable_other_ring /// - LocalRingDisableOtherRing = 1304, - + LocalRingDisableOtherRing = 1305, + /// /// disable_ring_slot_1 /// - DisableRingSlot1 = 1305, - + DisableRingSlot1 = 1306, + /// /// disable_ring_slot_2 /// - DisableRingSlot2 = 1306, - + DisableRingSlot2 = 1307, + /// /// global_item_attribute_requirements_+% /// - GlobalItemAttributeRequirementsPct = 1307, - + GlobalItemAttributeRequirementsPct = 1308, + /// /// grant_kill_to_target_when_exploding_self /// - GrantKillToTargetWhenExplodingSelf = 1308, - + GrantKillToTargetWhenExplodingSelf = 1309, + /// /// Mana gained on Hit /// - ManaGainPerTarget = 1309, - + ManaGainPerTarget = 1310, + /// /// animation_effect_variation /// - AnimationEffectVariation = 1310, - + AnimationEffectVariation = 1311, + /// /// enemy_hits_roll_low_damage /// - EnemyHitsRollLowDamage = 1311, - + EnemyHitsRollLowDamage = 1312, + /// /// minions_take_no_actions /// - MinionsTakeNoActions = 1312, - + MinionsTakeNoActions = 1313, + /// /// unique_loris_lantern_golden_light /// - UniqueLorisLanternGoldenLight = 1313, - + UniqueLorisLanternGoldenLight = 1314, + /// /// chaos_damage_resistance_%_when_on_low_life /// - ChaosDamageResistancePctWhenOnLowLife = 1314, - + ChaosDamageResistancePctWhenOnLowLife = 1315, + /// /// gain_power_charge_for_each_quarter_life_removed /// - GainPowerChargeForEachQuarterLifeRemoved = 1315, - + GainPowerChargeForEachQuarterLifeRemoved = 1316, + /// /// enemy_extra_damage_rolls /// - EnemyExtraDamageRolls = 1316, - + EnemyExtraDamageRolls = 1317, + /// /// enemy_extra_damage_rolls_when_on_low_life /// - EnemyExtraDamageRollsWhenOnLowLife = 1317, - + EnemyExtraDamageRollsWhenOnLowLife = 1318, + /// /// map_fixed_seed /// - MapFixedSeed = 1318, - + MapFixedSeed = 1319, + /// /// map_monsters_drop_ground_fire_on_death_base_radius /// - MapMonstersDropGroundFireOnDeathBaseRadius = 1319, - + MapMonstersDropGroundFireOnDeathBaseRadius = 1320, + /// /// map_monsters_drop_ground_fire_on_death_duration_ms /// - MapMonstersDropGroundFireOnDeathDurationMs = 1320, - + MapMonstersDropGroundFireOnDeathDurationMs = 1321, + /// /// map_monsters_drop_ground_fire_on_death_%_max_damage_to_deal_per_minute /// - MapMonstersDropGroundFireOnDeathPctMaxDamageToDealPerMinute = 1321, - + MapMonstersDropGroundFireOnDeathPctMaxDamageToDealPerMinute = 1322, + /// /// map_monsters_convert_all_physical_damage_to_fire /// - MapMonstersConvertAllPhysicalDamageToFire = 1322, - + MapMonstersConvertAllPhysicalDamageToFire = 1323, + /// /// map_players_convert_all_physical_damage_to_fire /// - MapPlayersConvertAllPhysicalDamageToFire = 1323, - + MapPlayersConvertAllPhysicalDamageToFire = 1324, + /// /// local_display_socketed_gems_have_chance_to_flee_% /// - LocalDisplaySocketedGemsHaveChanceToFleePct = 1324, - + LocalDisplaySocketedGemsHaveChanceToFleePct = 1325, + /// /// map_no_refills_in_town /// - MapNoRefillsInTown = 1325, - + MapNoRefillsInTown = 1326, + /// /// base_minimum_lightning_damage_on_charge_expiry /// - BaseMinimumLightningDamageOnChargeExpiry = 1326, - + BaseMinimumLightningDamageOnChargeExpiry = 1327, + /// /// base_maximum_lightning_damage_on_charge_expiry /// - BaseMaximumLightningDamageOnChargeExpiry = 1327, - + BaseMaximumLightningDamageOnChargeExpiry = 1328, + /// /// item_drops_on_death /// - ItemDropsOnDeath = 1328, - + ItemDropsOnDeath = 1329, + /// /// map_minimap_revealed /// - MapMinimapRevealed = 1329, - + MapMinimapRevealed = 1330, + /// /// explode_on_death_%_main_hand_damage_to_deal_as_fire /// - ExplodeOnDeathPctMainHandDamageToDealAsFire = 1330, - + ExplodeOnDeathPctMainHandDamageToDealAsFire = 1331, + /// /// explode_on_death_%_main_hand_damage_to_deal_as_lightning /// - ExplodeOnDeathPctMainHandDamageToDealAsLightning = 1331, - + ExplodeOnDeathPctMainHandDamageToDealAsLightning = 1332, + /// /// explode_on_death_%_main_hand_damage_to_deal_as_cold /// - ExplodeOnDeathPctMainHandDamageToDealAsCold = 1332, - + ExplodeOnDeathPctMainHandDamageToDealAsCold = 1333, + /// /// explode_on_death_%_main_hand_damage_to_deal_as_chaos /// - ExplodeOnDeathPctMainHandDamageToDealAsChaos = 1333, - + ExplodeOnDeathPctMainHandDamageToDealAsChaos = 1334, + /// /// Never Shock Targets /// - NeverShock = 1334, - + NeverShock = 1335, + /// /// Never Freeze Targets /// - NeverFreeze = 1335, - + NeverFreeze = 1336, + /// /// faster_burn_% /// - FasterBurnPct = 1336, - + FasterBurnPct = 1337, + /// /// disable_chest_slot /// - DisableChestSlot = 1337, - + DisableChestSlot = 1338, + /// /// local_display_socketed_gems_get_faster_attacks_level /// - LocalDisplaySocketedGemsGetFasterAttacksLevel = 1338, - + LocalDisplaySocketedGemsGetFasterAttacksLevel = 1339, + /// /// local_display_socketed_gems_get_melee_physical_damage_level /// - LocalDisplaySocketedGemsGetMeleePhysicalDamageLevel = 1339, - + LocalDisplaySocketedGemsGetMeleePhysicalDamageLevel = 1340, + /// /// flasks_dispel_burning /// - FlasksDispelBurning = 1340, - + FlasksDispelBurning = 1341, + /// /// physical_claw_damage_+%_when_on_low_life /// - PhysicalClawDamagePctWhenOnLowLife = 1341, - + PhysicalClawDamagePctWhenOnLowLife = 1342, + /// /// accuracy_rating_+%_when_on_low_life /// - AccuracyRatingPctWhenOnLowLife = 1342, - + AccuracyRatingPctWhenOnLowLife = 1343, + /// /// cannot_leech /// - CannotLeech = 1343, - + CannotLeech = 1344, + /// /// cannot_leech_when_on_low_life /// - CannotLeechWhenOnLowLife = 1344, - + CannotLeechWhenOnLowLife = 1345, + /// /// base_cannot_leech_life /// - BaseCannotLeechLife = 1345, - + BaseCannotLeechLife = 1346, + /// /// base_cannot_leech_mana /// - BaseCannotLeechMana = 1346, - + BaseCannotLeechMana = 1347, + /// /// cannot_leech_life /// - CannotLeechLife = 1347, - + CannotLeechLife = 1348, + /// /// cannot_leech_mana /// - CannotLeechMana = 1348, - + CannotLeechMana = 1349, + /// /// base_energy_shield_gained_on_enemy_death /// - BaseEnergyShieldGainedOnEnemyDeath = 1349, - + BaseEnergyShieldGainedOnEnemyDeath = 1350, + /// /// summon_totem_cast_speed_+% /// - SummonTotemCastSpeedPct = 1350, - + SummonTotemCastSpeedPct = 1351, + /// /// consecrate_on_block_%_chance_to_create /// - ConsecrateOnBlockPctChanceToCreate = 1351, - + ConsecrateOnBlockPctChanceToCreate = 1352, + /// /// consecrate_on_block_%_life_regen_per_minute /// - ConsecrateOnBlockPctLifeRegenPerMinute = 1352, - + ConsecrateOnBlockPctLifeRegenPerMinute = 1353, + /// /// consecrate_on_block_base_radius /// - ConsecrateOnBlockBaseRadius = 1353, - + ConsecrateOnBlockBaseRadius = 1354, + /// /// consecrate_on_block_duration_ms /// - ConsecrateOnBlockDurationMs = 1354, - + ConsecrateOnBlockDurationMs = 1355, + /// /// desecrate_on_block_%_chance_to_create /// - DesecrateOnBlockPctChanceToCreate = 1355, - + DesecrateOnBlockPctChanceToCreate = 1356, + /// /// desecrate_on_block_base_chaos_damage_to_deal_per_minute /// - DesecrateOnBlockBaseChaosDamageToDealPerMinute = 1356, - + DesecrateOnBlockBaseChaosDamageToDealPerMinute = 1357, + /// /// desecrate_on_block_base_radius /// - DesecrateOnBlockBaseRadius = 1357, - + DesecrateOnBlockBaseRadius = 1358, + /// /// desecrate_on_block_duration_ms /// - DesecrateOnBlockDurationMs = 1358, - + DesecrateOnBlockDurationMs = 1359, + /// /// base_chaos_damage_%_of_maximum_life_taken_per_minute_per_frenzy_charge /// - BaseChaosDamagePctOfMaximumLifeTakenPerMinutePerFrenzyCharge = 1359, - + BaseChaosDamagePctOfMaximumLifeTakenPerMinutePerFrenzyCharge = 1360, + /// /// add_frenzy_charge_on_kill_%_chance /// - AddFrenzyChargeOnKillPctChance = 1360, - + AddFrenzyChargeOnKillPctChance = 1361, + /// /// local_socketed_elemental_gem_level_+ /// - LocalSocketedElementalGemLevel = 1361, - + LocalSocketedElementalGemLevel = 1362, + /// /// melee_critical_strike_chance_+% /// - MeleeCriticalStrikeChancePct = 1362, - + MeleeCriticalStrikeChancePct = 1363, + /// /// melee_critical_strike_chance_+%_when_on_full_life /// - MeleeCriticalStrikeChancePctWhenOnFullLife = 1363, - + MeleeCriticalStrikeChancePctWhenOnFullLife = 1364, + /// /// cannot_be_killed_by_elemental_reflect /// - CannotBeKilledByElementalReflect = 1364, - + CannotBeKilledByElementalReflect = 1365, + /// /// local_display_socketed_gems_get_added_lightning_damage_level /// - LocalDisplaySocketedGemsGetAddedLightningDamageLevel = 1365, - + LocalDisplaySocketedGemsGetAddedLightningDamageLevel = 1366, + /// /// map_is_unidentified /// - MapIsUnidentified = 1366, - + MapIsUnidentified = 1367, + /// /// melee_attacks_usable_without_mana_cost /// - MeleeAttacksUsableWithoutManaCost = 1367, - + MeleeAttacksUsableWithoutManaCost = 1368, + /// /// melee_attack_mana_cost_+ /// - MeleeAttackManaCost = 1368, - + MeleeAttackManaCost = 1369, + /// /// Melee Damage +% /// - MeleeDamagePct = 1369, - + MeleeDamagePct = 1370, + /// /// melee_damage_taken_+% /// - MeleeDamageTakenPct = 1370, - + MeleeDamageTakenPct = 1371, + /// /// map_experience_gain_+% /// - MapExperienceGainPct = 1371, - + MapExperienceGainPct = 1372, + /// /// life_gained_on_block /// - LifeGainedOnBlock = 1372, - + LifeGainedOnBlock = 1373, + /// /// mana_gained_on_block /// - ManaGainedOnBlock = 1373, - + ManaGainedOnBlock = 1374, + /// /// minimum_physical_damage_to_return_on_block /// - MinimumPhysicalDamageToReturnOnBlock = 1374, - + MinimumPhysicalDamageToReturnOnBlock = 1375, + /// /// maximum_physical_damage_to_return_on_block /// - MaximumPhysicalDamageToReturnOnBlock = 1375, - + MaximumPhysicalDamageToReturnOnBlock = 1376, + /// /// footstep_effect_variation /// - FootstepEffectVariation = 1376, - + FootstepEffectVariation = 1377, + /// /// zombie_maximum_life_+ /// - ZombieMaximumLife = 1377, - + ZombieMaximumLife = 1378, + /// /// number_of_zombies_allowed_+% /// - NumberOfZombiesAllowedPct = 1378, - + NumberOfZombiesAllowedPct = 1379, + /// /// zombie_chaos_elemental_damage_resistance_% /// - ZombieChaosElementalDamageResistancePct = 1379, - + ZombieChaosElementalDamageResistancePct = 1380, + /// /// chill_and_freeze_duration_based_on_%_energy_shield /// - ChillAndFreezeDurationBasedOnPctEnergyShield = 1380, - + ChillAndFreezeDurationBasedOnPctEnergyShield = 1381, + /// /// number_of_equipped_uniques /// - NumberOfEquippedUniques = 1381, - + NumberOfEquippedUniques = 1382, + /// /// intelligence_+%_per_equipped_unique /// - IntelligencePctPerEquippedUnique = 1382, - + IntelligencePctPerEquippedUnique = 1383, + /// /// ignited_enemies_explode_on_kill /// - IgnitedEnemiesExplodeOnKill = 1383, - + IgnitedEnemiesExplodeOnKill = 1384, + /// /// additional_scroll_of_wisdom_drop_chance_% /// - AdditionalScrollOfWisdomDropChancePct = 1384, - + AdditionalScrollOfWisdomDropChancePct = 1385, + /// /// explode_on_kill_%_fire_damage_to_deal /// - ExplodeOnKillPctFireDamageToDeal = 1385, - + ExplodeOnKillPctFireDamageToDeal = 1386, + /// /// zombie_explode_on_kill_%_fire_damage_to_deal /// - ZombieExplodeOnKillPctFireDamageToDeal = 1386, - + ZombieExplodeOnKillPctFireDamageToDeal = 1387, + /// /// local_unique_flask_item_rarity_+%_while_healing /// - LocalUniqueFlaskItemRarityPctWhileHealing = 1387, - + LocalUniqueFlaskItemRarityPctWhileHealing = 1388, + /// /// local_unique_flask_item_quantity_+%_while_healing /// - LocalUniqueFlaskItemQuantityPctWhileHealing = 1388, - + LocalUniqueFlaskItemQuantityPctWhileHealing = 1389, + /// /// local_unique_flask_light_radius_+%_while_healing /// - LocalUniqueFlaskLightRadiusPctWhileHealing = 1389, - + LocalUniqueFlaskLightRadiusPctWhileHealing = 1390, + /// /// local_unique_flask_resist_all_elements_%_during_flask_effect /// - LocalUniqueFlaskResistAllElementsPctDuringFlaskEffect = 1390, - + LocalUniqueFlaskResistAllElementsPctDuringFlaskEffect = 1391, + /// /// Additional Strength And Intelligence /// - AdditionalStrengthAndIntelligence = 1391, - + AdditionalStrengthAndIntelligence = 1392, + /// /// Additional Strength And Dexterity /// - AdditionalStrengthAndDexterity = 1392, - + AdditionalStrengthAndDexterity = 1393, + /// /// Additional Dexterity And Intelligence /// - AdditionalDexterityAndIntelligence = 1393, - + AdditionalDexterityAndIntelligence = 1394, + /// /// curse_effect_+% /// - CurseEffectPct = 1394, - + CurseEffectPct = 1395, + /// /// nonfunctional_old_stat_map_monster_movement_velocity_cap /// - NonfunctionalOldStatMapMonsterMovementVelocityCap = 1395, - + NonfunctionalOldStatMapMonsterMovementVelocityCap = 1396, + /// /// movement_velocity_+%_while_cursed /// - MovementVelocityPctWhileCursed = 1396, - + MovementVelocityPctWhileCursed = 1397, + /// /// map_spawn_exile_per_area_% /// - MapSpawnExilePerAreaPct = 1397, - + MapSpawnExilePerAreaPct = 1398, + /// /// cyclone_extra_distance /// - CycloneExtraDistance = 1398, - + CycloneExtraDistance = 1399, + /// /// zombie_boss_extract_life_%_to_gain /// - ZombieBossExtractLifePctToGain = 1399, - + ZombieBossExtractLifePctToGain = 1400, + /// /// life_regeneration_rate_per_minute_%_per_frenzy_charge /// - LifeRegenerationRatePerMinutePctPerFrenzyCharge = 1400, - + LifeRegenerationRatePerMinutePctPerFrenzyCharge = 1401, + /// /// enemy_on_low_life_damage_taken_+%_per_frenzy_charge /// - EnemyOnLowLifeDamageTakenPctPerFrenzyCharge = 1401, - + EnemyOnLowLifeDamageTakenPctPerFrenzyCharge = 1402, + /// /// movement_velocity_+%_per_ten_levels /// - MovementVelocityPctPerTenLevels = 1402, - + MovementVelocityPctPerTenLevels = 1403, + /// /// enemy_on_low_life_damage_taken_+% /// - EnemyOnLowLifeDamageTakenPct = 1403, - + EnemyOnLowLifeDamageTakenPct = 1404, + /// /// add_power_charge_on_kill_%_chance /// - AddPowerChargeOnKillPctChance = 1404, - + AddPowerChargeOnKillPctChance = 1405, + /// /// gain_endurance_charge_on_power_charge_expiry /// - GainEnduranceChargeOnPowerChargeExpiry = 1405, - + GainEnduranceChargeOnPowerChargeExpiry = 1406, + /// /// melee_damage_+%_when_on_full_life /// - MeleeDamagePctWhenOnFullLife = 1406, - + MeleeDamagePctWhenOnFullLife = 1407, + /// /// consecrate_on_crit_%_chance_to_create /// - ConsecrateOnCritPctChanceToCreate = 1407, - + ConsecrateOnCritPctChanceToCreate = 1408, + /// /// Projectile speed increase /// - ProjectileSpeedPct = 1408, - + ProjectileSpeedPct = 1409, + /// /// Projectile Speed increase per Frenzy Charge /// - ProjectileSpeedPctPerFrenzyCharge = 1409, - + ProjectileSpeedPctPerFrenzyCharge = 1410, + /// /// Projectile Damage increase per Power Charge /// - ProjectileDamagePctPerPowerCharge = 1410, - + ProjectileDamagePctPerPowerCharge = 1411, + /// /// killed_monster_dropped_item_rarity_+%_on_crit /// - KilledMonsterDroppedItemRarityPctOnCrit = 1411, - + KilledMonsterDroppedItemRarityPctOnCrit = 1412, + /// /// onslaught_buff_duration_on_kill_ms /// - OnslaughtBuffDurationOnKillMs = 1412, - + OnslaughtBuffDurationOnKillMs = 1413, + /// /// local_right_ring_slot_no_mana_regeneration /// - LocalRightRingSlotNoManaRegeneration = 1413, - + LocalRightRingSlotNoManaRegeneration = 1414, + /// /// local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_% /// - LocalRightRingSlotBaseEnergyShieldRegenerationRatePerMinutePct = 1414, - + LocalRightRingSlotBaseEnergyShieldRegenerationRatePerMinutePct = 1415, + /// /// local_left_ring_slot_mana_regeneration_rate_+% /// - LocalLeftRingSlotManaRegenerationRatePct = 1415, - + LocalLeftRingSlotManaRegenerationRatePct = 1416, + /// /// local_left_ring_slot_no_energy_shield_recharge_or_regeneration /// - LocalLeftRingSlotNoEnergyShieldRechargeOrRegeneration = 1416, - + LocalLeftRingSlotNoEnergyShieldRechargeOrRegeneration = 1417, + /// /// no_energy_shield_recharge_or_regeneration /// - NoEnergyShieldRechargeOrRegeneration = 1417, - + NoEnergyShieldRechargeOrRegeneration = 1418, + /// /// base_energy_shield_regeneration_rate_per_minute_% /// - BaseEnergyShieldRegenerationRatePerMinutePct = 1418, - + BaseEnergyShieldRegenerationRatePerMinutePct = 1419, + /// /// character_sheet_monster_level /// - CharacterSheetMonsterLevel = 1419, - + CharacterSheetMonsterLevel = 1420, + /// /// keystone_acrobatics_energy_shield_+%_final /// - KeystoneAcrobaticsEnergyShieldPctFinal = 1420, - + KeystoneAcrobaticsEnergyShieldPctFinal = 1421, + /// /// keystone_acrobatics_physical_damage_reduction_rating_+%_final /// - KeystoneAcrobaticsPhysicalDamageReductionRatingPctFinal = 1421, - + KeystoneAcrobaticsPhysicalDamageReductionRatingPctFinal = 1422, + /// /// life_recovery_per_minute_from_leech /// - LifeRecoveryPerMinuteFromLeech = 1422, - + LifeRecoveryPerMinuteFromLeech = 1423, + /// /// mana_recovery_per_minute_from_leech /// - ManaRecoveryPerMinuteFromLeech = 1423, - + ManaRecoveryPerMinuteFromLeech = 1424, + /// /// energy_shield_recovery_per_minute_from_leech /// - EnergyShieldRecoveryPerMinuteFromLeech = 1424, - + EnergyShieldRecoveryPerMinuteFromLeech = 1425, + /// /// life_recovery_per_minute /// - LifeRecoveryPerMinute = 1425, - + LifeRecoveryPerMinute = 1426, + /// /// mana_recovery_per_minute /// - ManaRecoveryPerMinute = 1426, - + ManaRecoveryPerMinute = 1427, + /// /// energy_shield_recovery_per_minute /// - EnergyShieldRecoveryPerMinute = 1427, - + EnergyShieldRecoveryPerMinute = 1428, + /// /// extra_critical_rolls /// - ExtraCriticalRolls = 1428, - + ExtraCriticalRolls = 1429, + /// /// combined_all_damage_+% /// - CombinedAllDamagePct = 1429, - + CombinedAllDamagePct = 1430, + /// /// combined_all_damage_+%_final /// - CombinedAllDamagePctFinal = 1430, - + CombinedAllDamagePctFinal = 1431, + /// /// combined_spell_all_damage_+% /// - CombinedSpellAllDamagePct = 1431, - + CombinedSpellAllDamagePct = 1432, + /// /// combined_spell_all_damage_+%_final /// - CombinedSpellAllDamagePctFinal = 1432, - + CombinedSpellAllDamagePctFinal = 1433, + /// /// combined_attack_all_damage_+% /// - CombinedAttackAllDamagePct = 1433, - + CombinedAttackAllDamagePct = 1434, + /// /// combined_attack_all_damage_+%_final /// - CombinedAttackAllDamagePctFinal = 1434, - + CombinedAttackAllDamagePctFinal = 1435, + /// /// combined_main_hand_attack_all_damage_+% /// - CombinedMainHandAttackAllDamagePct = 1435, - + CombinedMainHandAttackAllDamagePct = 1436, + /// /// combined_off_hand_attack_all_damage_+% /// - CombinedOffHandAttackAllDamagePct = 1436, - + CombinedOffHandAttackAllDamagePct = 1437, + /// /// combined_physical_damage_+% /// - CombinedPhysicalDamagePct = 1437, - + CombinedPhysicalDamagePct = 1438, + /// /// combined_physical_damage_+%_final /// - CombinedPhysicalDamagePctFinal = 1438, - + CombinedPhysicalDamagePctFinal = 1439, + /// /// combined_attack_physical_damage_+% /// - CombinedAttackPhysicalDamagePct = 1439, - + CombinedAttackPhysicalDamagePct = 1440, + /// /// combined_attack_physical_damage_+%_final /// - CombinedAttackPhysicalDamagePctFinal = 1440, - + CombinedAttackPhysicalDamagePctFinal = 1441, + /// /// combined_main_hand_attack_physical_damage_+% /// - CombinedMainHandAttackPhysicalDamagePct = 1441, - + CombinedMainHandAttackPhysicalDamagePct = 1442, + /// /// combined_off_hand_attack_physical_damage_+% /// - CombinedOffHandAttackPhysicalDamagePct = 1442, - + CombinedOffHandAttackPhysicalDamagePct = 1443, + /// /// combined_main_hand_attack_physical_damage_+%_final /// - CombinedMainHandAttackPhysicalDamagePctFinal = 1443, - + CombinedMainHandAttackPhysicalDamagePctFinal = 1444, + /// /// combined_off_hand_attack_physical_damage_+%_final /// - CombinedOffHandAttackPhysicalDamagePctFinal = 1444, - + CombinedOffHandAttackPhysicalDamagePctFinal = 1445, + /// /// combined_fire_damage_+% /// - CombinedFireDamagePct = 1445, - + CombinedFireDamagePct = 1446, + /// /// combined_fire_damage_+%_final /// - CombinedFireDamagePctFinal = 1446, - + CombinedFireDamagePctFinal = 1447, + /// /// combined_cold_damage_+% /// - CombinedColdDamagePct = 1447, - + CombinedColdDamagePct = 1448, + /// /// combined_cold_damage_+%_final /// - CombinedColdDamagePctFinal = 1448, - + CombinedColdDamagePctFinal = 1449, + /// /// combined_lightning_damage_+% /// - CombinedLightningDamagePct = 1449, - + CombinedLightningDamagePct = 1450, + /// /// combined_lightning_damage_+%_final /// - CombinedLightningDamagePctFinal = 1450, - + CombinedLightningDamagePctFinal = 1451, + /// /// combined_chaos_damage_+% /// - CombinedChaosDamagePct = 1451, - + CombinedChaosDamagePct = 1452, + /// /// combined_chaos_damage_+%_final /// - CombinedChaosDamagePctFinal = 1452, - + CombinedChaosDamagePctFinal = 1453, + /// /// combined_elemental_damage_+% /// - CombinedElementalDamagePct = 1453, - + CombinedElementalDamagePct = 1454, + /// /// combined_elemental_damage_+%_final /// - CombinedElementalDamagePctFinal = 1454, - + CombinedElementalDamagePctFinal = 1455, + /// /// combined_attack_fire_damage_+% /// - CombinedAttackFireDamagePct = 1455, - + CombinedAttackFireDamagePct = 1456, + /// /// combined_attack_fire_damage_+%_final /// - CombinedAttackFireDamagePctFinal = 1456, - + CombinedAttackFireDamagePctFinal = 1457, + /// /// combined_attack_cold_damage_+% /// - CombinedAttackColdDamagePct = 1457, - + CombinedAttackColdDamagePct = 1458, + /// /// combined_attack_cold_damage_+%_final /// - CombinedAttackColdDamagePctFinal = 1458, - + CombinedAttackColdDamagePctFinal = 1459, + /// /// combined_spell_fire_damage_+% /// - CombinedSpellFireDamagePct = 1459, - + CombinedSpellFireDamagePct = 1460, + /// /// combined_spell_fire_damage_+%_final /// - CombinedSpellFireDamagePctFinal = 1460, - + CombinedSpellFireDamagePctFinal = 1461, + /// /// combined_spell_cold_damage_+% /// - CombinedSpellColdDamagePct = 1461, - + CombinedSpellColdDamagePct = 1462, + /// /// combined_spell_lightning_damage_+% /// - CombinedSpellLightningDamagePct = 1462, - + CombinedSpellLightningDamagePct = 1463, + /// /// combined_spell_lightning_damage_+%_final /// - CombinedSpellLightningDamagePctFinal = 1463, - + CombinedSpellLightningDamagePctFinal = 1464, + /// /// combined_spell_elemental_damage_+% /// - CombinedSpellElementalDamagePct = 1464, - + CombinedSpellElementalDamagePct = 1465, + /// /// combined_spell_elemental_damage_+%_final /// - CombinedSpellElementalDamagePctFinal = 1465, - + CombinedSpellElementalDamagePctFinal = 1466, + /// /// combined_main_hand_attack_elemental_damage_+% /// - CombinedMainHandAttackElementalDamagePct = 1466, - + CombinedMainHandAttackElementalDamagePct = 1467, + /// /// combined_off_hand_attack_elemental_damage_+% /// - CombinedOffHandAttackElementalDamagePct = 1467, - + CombinedOffHandAttackElementalDamagePct = 1468, + /// /// combined_main_hand_attack_elemental_damage_+%_final /// - CombinedMainHandAttackElementalDamagePctFinal = 1468, - + CombinedMainHandAttackElementalDamagePctFinal = 1469, + /// /// combined_off_hand_attack_elemental_damage_+%_final /// - CombinedOffHandAttackElementalDamagePctFinal = 1469, - + CombinedOffHandAttackElementalDamagePctFinal = 1470, + /// /// combined_main_hand_attack_fire_damage_+% /// - CombinedMainHandAttackFireDamagePct = 1470, - + CombinedMainHandAttackFireDamagePct = 1471, + /// /// combined_off_hand_attack_fire_damage_+% /// - CombinedOffHandAttackFireDamagePct = 1471, - + CombinedOffHandAttackFireDamagePct = 1472, + /// /// combined_main_hand_attack_cold_damage_+% /// - CombinedMainHandAttackColdDamagePct = 1472, - + CombinedMainHandAttackColdDamagePct = 1473, + /// /// combined_off_hand_attack_cold_damage_+% /// - CombinedOffHandAttackColdDamagePct = 1473, - + CombinedOffHandAttackColdDamagePct = 1474, + /// /// combined_main_hand_attack_lightning_damage_+% /// - CombinedMainHandAttackLightningDamagePct = 1474, - + CombinedMainHandAttackLightningDamagePct = 1475, + /// /// combined_off_hand_attack_lightning_damage_+% /// - CombinedOffHandAttackLightningDamagePct = 1475, - + CombinedOffHandAttackLightningDamagePct = 1476, + /// /// combined_main_hand_attack_chaos_damage_+% /// - CombinedMainHandAttackChaosDamagePct = 1476, - + CombinedMainHandAttackChaosDamagePct = 1477, + /// /// combined_off_hand_attack_chaos_damage_+% /// - CombinedOffHandAttackChaosDamagePct = 1477, - + CombinedOffHandAttackChaosDamagePct = 1478, + /// /// spell_minimum_base_physical_damage /// - SpellMinimumBasePhysicalDamage = 1478, - + SpellMinimumBasePhysicalDamage = 1479, + /// /// spell_maximum_base_physical_damage /// - SpellMaximumBasePhysicalDamage = 1479, - + SpellMaximumBasePhysicalDamage = 1480, + /// /// spell_minimum_base_fire_damage /// - SpellMinimumBaseFireDamage = 1480, - + SpellMinimumBaseFireDamage = 1481, + /// /// spell_maximum_base_fire_damage /// - SpellMaximumBaseFireDamage = 1481, - + SpellMaximumBaseFireDamage = 1482, + /// /// spell_minimum_base_cold_damage /// - SpellMinimumBaseColdDamage = 1482, - + SpellMinimumBaseColdDamage = 1483, + /// /// spell_maximum_base_cold_damage /// - SpellMaximumBaseColdDamage = 1483, - + SpellMaximumBaseColdDamage = 1484, + /// /// spell_minimum_base_lightning_damage /// - SpellMinimumBaseLightningDamage = 1484, - + SpellMinimumBaseLightningDamage = 1485, + /// /// spell_maximum_base_lightning_damage /// - SpellMaximumBaseLightningDamage = 1485, - + SpellMaximumBaseLightningDamage = 1486, + /// /// spell_minimum_base_chaos_damage /// - SpellMinimumBaseChaosDamage = 1486, - + SpellMinimumBaseChaosDamage = 1487, + /// /// spell_maximum_base_chaos_damage /// - SpellMaximumBaseChaosDamage = 1487, - + SpellMaximumBaseChaosDamage = 1488, + /// /// is_projectile /// - IsProjectile = 1488, - + IsProjectile = 1489, + /// /// attack_is_melee /// - AttackIsMelee = 1489, - + AttackIsMelee = 1490, + /// /// base_lightning_damage_%_to_convert_to_fire /// - BaseLightningDamagePctToConvertToFire = 1490, - + BaseLightningDamagePctToConvertToFire = 1491, + /// /// base_lightning_damage_%_to_convert_to_cold /// - BaseLightningDamagePctToConvertToCold = 1491, - + BaseLightningDamagePctToConvertToCold = 1492, + /// /// base_fire_damage_%_to_convert_to_chaos /// - BaseFireDamagePctToConvertToChaos = 1492, - + BaseFireDamagePctToConvertToChaos = 1493, + /// /// base_cold_damage_%_to_convert_to_chaos /// - BaseColdDamagePctToConvertToChaos = 1493, - + BaseColdDamagePctToConvertToChaos = 1494, + /// /// base_lightning_damage_%_to_convert_to_chaos /// - BaseLightningDamagePctToConvertToChaos = 1494, - + BaseLightningDamagePctToConvertToChaos = 1495, + /// /// skill_lightning_damage_%_to_convert_to_fire /// - SkillLightningDamagePctToConvertToFire = 1495, - + SkillLightningDamagePctToConvertToFire = 1496, + /// /// skill_lightning_damage_%_to_convert_to_cold /// - SkillLightningDamagePctToConvertToCold = 1496, - + SkillLightningDamagePctToConvertToCold = 1497, + /// /// skill_fire_damage_%_to_convert_to_chaos /// - SkillFireDamagePctToConvertToChaos = 1497, - + SkillFireDamagePctToConvertToChaos = 1498, + /// /// skill_cold_damage_%_to_convert_to_chaos /// - SkillColdDamagePctToConvertToChaos = 1498, - + SkillColdDamagePctToConvertToChaos = 1499, + /// /// skill_lightning_damage_%_to_convert_to_chaos /// - SkillLightningDamagePctToConvertToChaos = 1499, - + SkillLightningDamagePctToConvertToChaos = 1500, + /// /// lightning_damage_%_to_convert_to_fire /// - LightningDamagePctToConvertToFire = 1500, - + LightningDamagePctToConvertToFire = 1501, + /// /// lightning_damage_%_to_convert_to_cold /// - LightningDamagePctToConvertToCold = 1501, - + LightningDamagePctToConvertToCold = 1502, + /// /// fire_damage_%_to_convert_to_chaos /// - FireDamagePctToConvertToChaos = 1502, - + FireDamagePctToConvertToChaos = 1503, + /// /// cold_damage_%_to_convert_to_chaos /// - ColdDamagePctToConvertToChaos = 1503, - + ColdDamagePctToConvertToChaos = 1504, + /// /// lightning_damage_%_to_convert_to_chaos /// - LightningDamagePctToConvertToChaos = 1504, - + LightningDamagePctToConvertToChaos = 1505, + /// /// physical_damage_%_lost_to_conversion /// - PhysicalDamagePctLostToConversion = 1505, - + PhysicalDamagePctLostToConversion = 1506, + /// /// fire_damage_%_lost_to_conversion /// - FireDamagePctLostToConversion = 1506, - + FireDamagePctLostToConversion = 1507, + /// /// cold_damage_%_lost_to_conversion /// - ColdDamagePctLostToConversion = 1507, - + ColdDamagePctLostToConversion = 1508, + /// /// lightning_damage_%_lost_to_conversion /// - LightningDamagePctLostToConversion = 1508, - + LightningDamagePctLostToConversion = 1509, + /// /// chaos_damage_%_lost_to_conversion /// - ChaosDamagePctLostToConversion = 1509, - + ChaosDamagePctLostToConversion = 1510, + /// /// fire_damage_%_to_add_as_chaos /// - FireDamagePctToAddAsChaos = 1510, - + FireDamagePctToAddAsChaos = 1511, + /// /// cold_damage_%_to_add_as_fire /// - ColdDamagePctToAddAsFire = 1511, - + ColdDamagePctToAddAsFire = 1512, + /// /// cold_damage_%_to_add_as_chaos /// - ColdDamagePctToAddAsChaos = 1512, - + ColdDamagePctToAddAsChaos = 1513, + /// /// lightning_damage_%_to_add_as_fire /// - LightningDamagePctToAddAsFire = 1513, - + LightningDamagePctToAddAsFire = 1514, + /// /// lightning_damage_%_to_add_as_cold /// - LightningDamagePctToAddAsCold = 1514, - + LightningDamagePctToAddAsCold = 1515, + /// /// lightning_damage_%_to_add_as_chaos /// - LightningDamagePctToAddAsChaos = 1515, - + LightningDamagePctToAddAsChaos = 1516, + /// /// total_physical_damage_%_as_fire /// - TotalPhysicalDamagePctAsFire = 1516, - + TotalPhysicalDamagePctAsFire = 1517, + /// /// total_physical_damage_%_as_cold /// - TotalPhysicalDamagePctAsCold = 1517, - + TotalPhysicalDamagePctAsCold = 1518, + /// /// total_physical_damage_%_as_lightning /// - TotalPhysicalDamagePctAsLightning = 1518, - + TotalPhysicalDamagePctAsLightning = 1519, + /// /// total_physical_damage_%_as_chaos /// - TotalPhysicalDamagePctAsChaos = 1519, - + TotalPhysicalDamagePctAsChaos = 1520, + /// /// total_lightning_damage_%_as_fire /// - TotalLightningDamagePctAsFire = 1520, - + TotalLightningDamagePctAsFire = 1521, + /// /// total_lightning_damage_%_as_cold /// - TotalLightningDamagePctAsCold = 1521, - + TotalLightningDamagePctAsCold = 1522, + /// /// total_lightning_damage_%_as_chaos /// - TotalLightningDamagePctAsChaos = 1522, - + TotalLightningDamagePctAsChaos = 1523, + /// /// total_cold_damage_%_as_fire /// - TotalColdDamagePctAsFire = 1523, - + TotalColdDamagePctAsFire = 1524, + /// /// total_cold_damage_%_as_chaos /// - TotalColdDamagePctAsChaos = 1524, - + TotalColdDamagePctAsChaos = 1525, + /// /// total_fire_damage_%_as_chaos /// - TotalFireDamagePctAsChaos = 1525, - + TotalFireDamagePctAsChaos = 1526, + /// /// secondary_minimum_base_physical_damage /// - SecondaryMinimumBasePhysicalDamage = 1526, - + SecondaryMinimumBasePhysicalDamage = 1527, + /// /// secondary_maximum_base_physical_damage /// - SecondaryMaximumBasePhysicalDamage = 1527, - + SecondaryMaximumBasePhysicalDamage = 1528, + /// /// secondary_minimum_base_fire_damage /// - SecondaryMinimumBaseFireDamage = 1528, - + SecondaryMinimumBaseFireDamage = 1529, + /// /// secondary_maximum_base_fire_damage /// - SecondaryMaximumBaseFireDamage = 1529, - + SecondaryMaximumBaseFireDamage = 1530, + /// /// secondary_minimum_base_cold_damage /// - SecondaryMinimumBaseColdDamage = 1530, - + SecondaryMinimumBaseColdDamage = 1531, + /// /// secondary_maximum_base_cold_damage /// - SecondaryMaximumBaseColdDamage = 1531, - + SecondaryMaximumBaseColdDamage = 1532, + /// /// secondary_minimum_base_lightning_damage /// - SecondaryMinimumBaseLightningDamage = 1532, - + SecondaryMinimumBaseLightningDamage = 1533, + /// /// secondary_maximum_base_lightning_damage /// - SecondaryMaximumBaseLightningDamage = 1533, - + SecondaryMaximumBaseLightningDamage = 1534, + /// /// secondary_minimum_base_chaos_damage /// - SecondaryMinimumBaseChaosDamage = 1534, - + SecondaryMinimumBaseChaosDamage = 1535, + /// /// secondary_maximum_base_chaos_damage /// - SecondaryMaximumBaseChaosDamage = 1535, - + SecondaryMaximumBaseChaosDamage = 1536, + /// /// spell_total_minimum_base_physical_damage /// - SpellTotalMinimumBasePhysicalDamage = 1536, - + SpellTotalMinimumBasePhysicalDamage = 1537, + /// /// spell_total_maximum_base_physical_damage /// - SpellTotalMaximumBasePhysicalDamage = 1537, - + SpellTotalMaximumBasePhysicalDamage = 1538, + /// /// spell_total_minimum_base_fire_damage /// - SpellTotalMinimumBaseFireDamage = 1538, - + SpellTotalMinimumBaseFireDamage = 1539, + /// /// spell_total_maximum_base_fire_damage /// - SpellTotalMaximumBaseFireDamage = 1539, - + SpellTotalMaximumBaseFireDamage = 1540, + /// /// spell_total_minimum_base_cold_damage /// - SpellTotalMinimumBaseColdDamage = 1540, - + SpellTotalMinimumBaseColdDamage = 1541, + /// /// spell_total_maximum_base_cold_damage /// - SpellTotalMaximumBaseColdDamage = 1541, - + SpellTotalMaximumBaseColdDamage = 1542, + /// /// spell_total_minimum_base_lightning_damage /// - SpellTotalMinimumBaseLightningDamage = 1542, - + SpellTotalMinimumBaseLightningDamage = 1543, + /// /// spell_total_maximum_base_lightning_damage /// - SpellTotalMaximumBaseLightningDamage = 1543, - + SpellTotalMaximumBaseLightningDamage = 1544, + /// /// spell_total_minimum_base_chaos_damage /// - SpellTotalMinimumBaseChaosDamage = 1544, - + SpellTotalMinimumBaseChaosDamage = 1545, + /// /// spell_total_maximum_base_chaos_damage /// - SpellTotalMaximumBaseChaosDamage = 1545, - + SpellTotalMaximumBaseChaosDamage = 1546, + /// /// spell_total_minimum_added_physical_damage /// - SpellTotalMinimumAddedPhysicalDamage = 1546, - + SpellTotalMinimumAddedPhysicalDamage = 1547, + /// /// spell_total_maximum_added_physical_damage /// - SpellTotalMaximumAddedPhysicalDamage = 1547, - + SpellTotalMaximumAddedPhysicalDamage = 1548, + /// /// spell_total_minimum_added_fire_damage /// - SpellTotalMinimumAddedFireDamage = 1548, - + SpellTotalMinimumAddedFireDamage = 1549, + /// /// spell_total_maximum_added_fire_damage /// - SpellTotalMaximumAddedFireDamage = 1549, - + SpellTotalMaximumAddedFireDamage = 1550, + /// /// spell_total_minimum_added_cold_damage /// - SpellTotalMinimumAddedColdDamage = 1550, - + SpellTotalMinimumAddedColdDamage = 1551, + /// /// spell_total_maximum_added_cold_damage /// - SpellTotalMaximumAddedColdDamage = 1551, - + SpellTotalMaximumAddedColdDamage = 1552, + /// /// spell_total_minimum_added_lightning_damage /// - SpellTotalMinimumAddedLightningDamage = 1552, - + SpellTotalMinimumAddedLightningDamage = 1553, + /// /// spell_total_maximum_added_lightning_damage /// - SpellTotalMaximumAddedLightningDamage = 1553, - + SpellTotalMaximumAddedLightningDamage = 1554, + /// /// spell_total_minimum_added_chaos_damage /// - SpellTotalMinimumAddedChaosDamage = 1554, - + SpellTotalMinimumAddedChaosDamage = 1555, + /// /// spell_total_maximum_added_chaos_damage /// - SpellTotalMaximumAddedChaosDamage = 1555, - + SpellTotalMaximumAddedChaosDamage = 1556, + /// /// main_hand_total_minimum_base_physical_damage /// - MainHandTotalMinimumBasePhysicalDamage = 1556, - + MainHandTotalMinimumBasePhysicalDamage = 1557, + /// /// main_hand_total_maximum_base_physical_damage /// - MainHandTotalMaximumBasePhysicalDamage = 1557, - + MainHandTotalMaximumBasePhysicalDamage = 1558, + /// /// main_hand_total_minimum_base_fire_damage /// - MainHandTotalMinimumBaseFireDamage = 1558, - + MainHandTotalMinimumBaseFireDamage = 1559, + /// /// main_hand_total_maximum_base_fire_damage /// - MainHandTotalMaximumBaseFireDamage = 1559, - + MainHandTotalMaximumBaseFireDamage = 1560, + /// /// main_hand_total_minimum_base_cold_damage /// - MainHandTotalMinimumBaseColdDamage = 1560, - + MainHandTotalMinimumBaseColdDamage = 1561, + /// /// main_hand_total_maximum_base_cold_damage /// - MainHandTotalMaximumBaseColdDamage = 1561, - + MainHandTotalMaximumBaseColdDamage = 1562, + /// /// main_hand_total_minimum_base_lightning_damage /// - MainHandTotalMinimumBaseLightningDamage = 1562, - + MainHandTotalMinimumBaseLightningDamage = 1563, + /// /// main_hand_total_maximum_base_lightning_damage /// - MainHandTotalMaximumBaseLightningDamage = 1563, - + MainHandTotalMaximumBaseLightningDamage = 1564, + /// /// main_hand_total_minimum_base_chaos_damage /// - MainHandTotalMinimumBaseChaosDamage = 1564, - + MainHandTotalMinimumBaseChaosDamage = 1565, + /// /// main_hand_total_maximum_base_chaos_damage /// - MainHandTotalMaximumBaseChaosDamage = 1565, - + MainHandTotalMaximumBaseChaosDamage = 1566, + /// /// main_hand_total_minimum_added_physical_damage /// - MainHandTotalMinimumAddedPhysicalDamage = 1566, - + MainHandTotalMinimumAddedPhysicalDamage = 1567, + /// /// main_hand_total_maximum_added_physical_damage /// - MainHandTotalMaximumAddedPhysicalDamage = 1567, - + MainHandTotalMaximumAddedPhysicalDamage = 1568, + /// /// main_hand_total_minimum_added_fire_damage /// - MainHandTotalMinimumAddedFireDamage = 1568, - + MainHandTotalMinimumAddedFireDamage = 1569, + /// /// main_hand_total_maximum_added_fire_damage /// - MainHandTotalMaximumAddedFireDamage = 1569, - + MainHandTotalMaximumAddedFireDamage = 1570, + /// /// main_hand_total_minimum_added_cold_damage /// - MainHandTotalMinimumAddedColdDamage = 1570, - + MainHandTotalMinimumAddedColdDamage = 1571, + /// /// main_hand_total_maximum_added_cold_damage /// - MainHandTotalMaximumAddedColdDamage = 1571, - + MainHandTotalMaximumAddedColdDamage = 1572, + /// /// main_hand_total_minimum_added_lightning_damage /// - MainHandTotalMinimumAddedLightningDamage = 1572, - + MainHandTotalMinimumAddedLightningDamage = 1573, + /// /// main_hand_total_maximum_added_lightning_damage /// - MainHandTotalMaximumAddedLightningDamage = 1573, - + MainHandTotalMaximumAddedLightningDamage = 1574, + /// /// main_hand_total_minimum_added_chaos_damage /// - MainHandTotalMinimumAddedChaosDamage = 1574, - + MainHandTotalMinimumAddedChaosDamage = 1575, + /// /// main_hand_total_maximum_added_chaos_damage /// - MainHandTotalMaximumAddedChaosDamage = 1575, - + MainHandTotalMaximumAddedChaosDamage = 1576, + /// /// off_hand_total_minimum_base_physical_damage /// - OffHandTotalMinimumBasePhysicalDamage = 1576, - + OffHandTotalMinimumBasePhysicalDamage = 1577, + /// /// off_hand_total_maximum_base_physical_damage /// - OffHandTotalMaximumBasePhysicalDamage = 1577, - + OffHandTotalMaximumBasePhysicalDamage = 1578, + /// /// off_hand_total_minimum_base_fire_damage /// - OffHandTotalMinimumBaseFireDamage = 1578, - + OffHandTotalMinimumBaseFireDamage = 1579, + /// /// off_hand_total_maximum_base_fire_damage /// - OffHandTotalMaximumBaseFireDamage = 1579, - + OffHandTotalMaximumBaseFireDamage = 1580, + /// /// off_hand_total_minimum_base_cold_damage /// - OffHandTotalMinimumBaseColdDamage = 1580, - + OffHandTotalMinimumBaseColdDamage = 1581, + /// /// off_hand_total_maximum_base_cold_damage /// - OffHandTotalMaximumBaseColdDamage = 1581, - + OffHandTotalMaximumBaseColdDamage = 1582, + /// /// off_hand_total_minimum_base_lightning_damage /// - OffHandTotalMinimumBaseLightningDamage = 1582, - + OffHandTotalMinimumBaseLightningDamage = 1583, + /// /// off_hand_total_maximum_base_lightning_damage /// - OffHandTotalMaximumBaseLightningDamage = 1583, - + OffHandTotalMaximumBaseLightningDamage = 1584, + /// /// off_hand_total_minimum_base_chaos_damage /// - OffHandTotalMinimumBaseChaosDamage = 1584, - + OffHandTotalMinimumBaseChaosDamage = 1585, + /// /// off_hand_total_maximum_base_chaos_damage /// - OffHandTotalMaximumBaseChaosDamage = 1585, - + OffHandTotalMaximumBaseChaosDamage = 1586, + /// /// off_hand_total_minimum_added_physical_damage /// - OffHandTotalMinimumAddedPhysicalDamage = 1586, - + OffHandTotalMinimumAddedPhysicalDamage = 1587, + /// /// off_hand_total_maximum_added_physical_damage /// - OffHandTotalMaximumAddedPhysicalDamage = 1587, - + OffHandTotalMaximumAddedPhysicalDamage = 1588, + /// /// off_hand_total_minimum_added_fire_damage /// - OffHandTotalMinimumAddedFireDamage = 1588, - + OffHandTotalMinimumAddedFireDamage = 1589, + /// /// off_hand_total_maximum_added_fire_damage /// - OffHandTotalMaximumAddedFireDamage = 1589, - + OffHandTotalMaximumAddedFireDamage = 1590, + /// /// off_hand_total_minimum_added_cold_damage /// - OffHandTotalMinimumAddedColdDamage = 1590, - + OffHandTotalMinimumAddedColdDamage = 1591, + /// /// off_hand_total_maximum_added_cold_damage /// - OffHandTotalMaximumAddedColdDamage = 1591, - + OffHandTotalMaximumAddedColdDamage = 1592, + /// /// off_hand_total_minimum_added_lightning_damage /// - OffHandTotalMinimumAddedLightningDamage = 1592, - + OffHandTotalMinimumAddedLightningDamage = 1593, + /// /// off_hand_total_maximum_added_lightning_damage /// - OffHandTotalMaximumAddedLightningDamage = 1593, - + OffHandTotalMaximumAddedLightningDamage = 1594, + /// /// off_hand_total_minimum_added_chaos_damage /// - OffHandTotalMinimumAddedChaosDamage = 1594, - + OffHandTotalMinimumAddedChaosDamage = 1595, + /// /// off_hand_total_maximum_added_chaos_damage /// - OffHandTotalMaximumAddedChaosDamage = 1595, - + OffHandTotalMaximumAddedChaosDamage = 1596, + /// /// spell_minimum_added_physical_damage /// - SpellMinimumAddedPhysicalDamage = 1596, - + SpellMinimumAddedPhysicalDamage = 1597, + /// /// spell_maximum_added_physical_damage /// - SpellMaximumAddedPhysicalDamage = 1597, - + SpellMaximumAddedPhysicalDamage = 1598, + /// /// spell_minimum_added_fire_damage /// - SpellMinimumAddedFireDamage = 1598, - + SpellMinimumAddedFireDamage = 1599, + /// /// spell_maximum_added_fire_damage /// - SpellMaximumAddedFireDamage = 1599, - + SpellMaximumAddedFireDamage = 1600, + /// /// spell_minimum_added_cold_damage /// - SpellMinimumAddedColdDamage = 1600, - + SpellMinimumAddedColdDamage = 1601, + /// /// spell_maximum_added_cold_damage /// - SpellMaximumAddedColdDamage = 1601, - + SpellMaximumAddedColdDamage = 1602, + /// /// spell_minimum_added_lightning_damage /// - SpellMinimumAddedLightningDamage = 1602, - + SpellMinimumAddedLightningDamage = 1603, + /// /// spell_maximum_added_lightning_damage /// - SpellMaximumAddedLightningDamage = 1603, - + SpellMaximumAddedLightningDamage = 1604, + /// /// spell_minimum_added_chaos_damage /// - SpellMinimumAddedChaosDamage = 1604, - + SpellMinimumAddedChaosDamage = 1605, + /// /// spell_maximum_added_chaos_damage /// - SpellMaximumAddedChaosDamage = 1605, - + SpellMaximumAddedChaosDamage = 1606, + /// /// total_base_life_regeneration_rate_per_minute_% /// - TotalBaseLifeRegenerationRatePerMinutePct = 1606, - + TotalBaseLifeRegenerationRatePerMinutePct = 1607, + /// /// total_base_life_regeneration_rate_per_minute /// - TotalBaseLifeRegenerationRatePerMinute = 1607, - + TotalBaseLifeRegenerationRatePerMinute = 1608, + /// /// total_base_maximum_energy_shield /// - TotalBaseMaximumEnergyShield = 1608, - + TotalBaseMaximumEnergyShield = 1609, + /// /// combined_energy_shield_+% /// - CombinedEnergyShieldPct = 1609, - + CombinedEnergyShieldPct = 1610, + /// /// combined_energy_shield_from_shield_+% /// - CombinedEnergyShieldFromShieldPct = 1610, - + CombinedEnergyShieldFromShieldPct = 1611, + /// /// combined_energy_shield_+%_final /// - CombinedEnergyShieldPctFinal = 1611, - + CombinedEnergyShieldPctFinal = 1612, + /// /// total_base_evasion_rating /// - TotalBaseEvasionRating = 1612, - + TotalBaseEvasionRating = 1613, + /// /// combined_evasion_rating_+% /// - CombinedEvasionRatingPct = 1613, - + CombinedEvasionRatingPct = 1614, + /// /// combined_evasion_rating_from_shield_+% /// - CombinedEvasionRatingFromShieldPct = 1614, - + CombinedEvasionRatingFromShieldPct = 1615, + /// /// movement_velocity_+1%_per_X_evasion_rating /// - MovementVelocity1PctPerXEvasionRating = 1615, - + MovementVelocity1PctPerXEvasionRating = 1616, + /// /// local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage /// - LocalDisplaySocketedGemsHavePctChanceToIgniteWithFireDamage = 1616, - + LocalDisplaySocketedGemsHavePctChanceToIgniteWithFireDamage = 1617, + /// /// cannot_freeze_shock_ignite_on_critical /// - CannotFreezeShockIgniteOnCritical = 1617, - + CannotFreezeShockIgniteOnCritical = 1618, + /// /// no_critical_strike_multiplier /// - NoCriticalStrikeMultiplier = 1618, - + NoCriticalStrikeMultiplier = 1619, + /// /// onslaught_on_crit_duration_ms /// - OnslaughtOnCritDurationMs = 1619, - + OnslaughtOnCritDurationMs = 1620, + /// /// zombie_scale_+% /// - ZombieScalePct = 1620, - + ZombieScalePct = 1621, + /// /// zombie_physical_damage_+% /// - ZombiePhysicalDamagePct = 1621, - + ZombiePhysicalDamagePct = 1622, + /// /// faster_burn_from_attacks_% /// - FasterBurnFromAttacksPct = 1622, - + FasterBurnFromAttacksPct = 1623, + /// /// weapon_elemental_damage_+%_per_power_charge /// - WeaponElementalDamagePctPerPowerCharge = 1623, - + WeaponElementalDamagePctPerPowerCharge = 1624, + /// /// apply_linked_curses_on_hit_% /// - ApplyLinkedCursesOnHitPct = 1624, - + ApplyLinkedCursesOnHitPct = 1625, + /// /// cannot_cast_curses /// - CannotCastCurses = 1625, - + CannotCastCurses = 1626, + /// /// spell_damage_modifiers_apply_to_attack_damage /// - SpellDamageModifiersApplyToAttackDamage = 1626, - + SpellDamageModifiersApplyToAttackDamage = 1627, + /// /// spell_damage_+%_from_dexterity /// - SpellDamagePctFromDexterity = 1627, - + SpellDamagePctFromDexterity = 1628, + /// /// agile_will /// - AgileWill = 1628, - + AgileWill = 1629, + /// /// old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge /// - OldDoNotUseManaLeechFromPhysicalDamagePctPerPowerCharge = 1629, - + OldDoNotUseManaLeechFromPhysicalDamagePctPerPowerCharge = 1630, + /// /// chaos_damage_can_shock /// - ChaosDamageCanShock = 1630, - + ChaosDamageCanShock = 1631, + /// /// physical_damage_can_chill /// - PhysicalDamageCanChill = 1631, - + PhysicalDamageCanChill = 1632, + /// /// killed_monster_dropped_item_quantity_+%_when_frozen /// - KilledMonsterDroppedItemQuantityPctWhenFrozen = 1632, - + KilledMonsterDroppedItemQuantityPctWhenFrozen = 1633, + /// /// killed_monster_dropped_item_rarity_+%_when_shocked /// - KilledMonsterDroppedItemRarityPctWhenShocked = 1633, - + KilledMonsterDroppedItemRarityPctWhenShocked = 1634, + /// /// local_flask_removes_%_maximum_energy_shield_on_use /// - LocalFlaskRemovesPctMaximumEnergyShieldOnUse = 1634, - + LocalFlaskRemovesPctMaximumEnergyShieldOnUse = 1635, + /// /// local_flask_deals_%_maximum_life_as_chaos_damage_on_use /// - LocalFlaskDealsPctMaximumLifeAsChaosDamageOnUse = 1635, - + LocalFlaskDealsPctMaximumLifeAsChaosDamageOnUse = 1636, + /// /// local_flask_gain_power_charges_on_use /// - LocalFlaskGainPowerChargesOnUse = 1636, - + LocalFlaskGainPowerChargesOnUse = 1637, + /// /// local_flask_gain_frenzy_charges_on_use /// - LocalFlaskGainFrenzyChargesOnUse = 1637, - + LocalFlaskGainFrenzyChargesOnUse = 1638, + /// /// local_flask_gain_endurance_charges_on_use /// - LocalFlaskGainEnduranceChargesOnUse = 1638, - + LocalFlaskGainEnduranceChargesOnUse = 1639, + /// /// deaths_oath_debuff_on_kill_duration_ms /// - DeathsOathDebuffOnKillDurationMs = 1639, - + DeathsOathDebuffOnKillDurationMs = 1640, + /// /// deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute /// - DeathsOathDebuffOnKillBaseChaosDamageToDealPerMinute = 1640, - + DeathsOathDebuffOnKillBaseChaosDamageToDealPerMinute = 1641, + /// /// local_display_aura_base_chaos_damage_to_deal_per_minute /// - LocalDisplayAuraBaseChaosDamageToDealPerMinute = 1641, - + LocalDisplayAuraBaseChaosDamageToDealPerMinute = 1642, + /// /// blood_footprints_from_item /// - BloodFootprintsFromItem = 1642, - + BloodFootprintsFromItem = 1643, + /// /// demigod_footprints_from_item /// - DemigodFootprintsFromItem = 1643, - + DemigodFootprintsFromItem = 1644, + /// /// silver_footprints_from_item /// - SilverFootprintsFromItem = 1644, - + SilverFootprintsFromItem = 1645, + /// /// map_obas_trial /// - MapObasTrial = 1645, - + MapObasTrial = 1646, + /// /// display_skill_deals_secondary_damage /// - DisplaySkillDealsSecondaryDamage = 1646, - + DisplaySkillDealsSecondaryDamage = 1647, + /// /// secondary_minimum_total_damage /// - SecondaryMinimumTotalDamage = 1647, - + SecondaryMinimumTotalDamage = 1648, + /// /// secondary_maximum_total_damage /// - SecondaryMaximumTotalDamage = 1648, - + SecondaryMaximumTotalDamage = 1649, + /// /// local_unique_counts_as_dual_wielding /// - LocalUniqueCountsAsDualWielding = 1649, - + LocalUniqueCountsAsDualWielding = 1650, + /// /// unique_local_minimum_added_fire_damage_when_in_main_hand /// - UniqueLocalMinimumAddedFireDamageWhenInMainHand = 1650, - + UniqueLocalMinimumAddedFireDamageWhenInMainHand = 1651, + /// /// unique_local_maximum_added_fire_damage_when_in_main_hand /// - UniqueLocalMaximumAddedFireDamageWhenInMainHand = 1651, - + UniqueLocalMaximumAddedFireDamageWhenInMainHand = 1652, + /// /// unique_local_minimum_added_chaos_damage_when_in_off_hand /// - UniqueLocalMinimumAddedChaosDamageWhenInOffHand = 1652, - + UniqueLocalMinimumAddedChaosDamageWhenInOffHand = 1653, + /// /// unique_local_maximum_added_chaos_damage_when_in_off_hand /// - UniqueLocalMaximumAddedChaosDamageWhenInOffHand = 1653, - + UniqueLocalMaximumAddedChaosDamageWhenInOffHand = 1654, + /// /// unique_local_minimum_added_cold_damage_when_in_off_hand /// - UniqueLocalMinimumAddedColdDamageWhenInOffHand = 1654, - + UniqueLocalMinimumAddedColdDamageWhenInOffHand = 1655, + /// /// unique_local_maximum_added_cold_damage_when_in_off_hand /// - UniqueLocalMaximumAddedColdDamageWhenInOffHand = 1655, - + UniqueLocalMaximumAddedColdDamageWhenInOffHand = 1656, + /// /// map_floor_unlock_time_seconds_UNUSED /// - MapFloorUnlockTimeSecondsUNUSED = 1656, - + MapFloorUnlockTimeSecondsUNUSED = 1657, + /// /// map_ignore_rogue_exile_rarity_bias /// - MapIgnoreRogueExileRarityBias = 1657, - + MapIgnoreRogueExileRarityBias = 1658, + /// /// map_override_rogue_exile_min_level /// - MapOverrideRogueExileMinLevel = 1658, - + MapOverrideRogueExileMinLevel = 1659, + /// /// Attack Speed increase per Frenzy Charge /// - AttackSpeedPctPerFrenzyCharge = 1659, - + AttackSpeedPctPerFrenzyCharge = 1660, + /// /// Cast Speed increase per Frenzy Charge /// - CastSpeedPctPerFrenzyCharge = 1660, - + CastSpeedPctPerFrenzyCharge = 1661, + /// /// attack_and_cast_speed_+%_per_frenzy_charge /// - AttackAndCastSpeedPctPerFrenzyCharge = 1661, - + AttackAndCastSpeedPctPerFrenzyCharge = 1662, + /// /// converted_original_team /// - ConvertedOriginalTeam = 1662, - + ConvertedOriginalTeam = 1663, + /// /// damage_+%_vs_enemies_on_low_life_per_frenzy_charge /// - DamagePctVsEnemiesOnLowLifePerFrenzyCharge = 1663, - + DamagePctVsEnemiesOnLowLifePerFrenzyCharge = 1664, + /// /// damage_+%_per_frenzy_charge /// - DamagePctPerFrenzyCharge = 1664, - + DamagePctPerFrenzyCharge = 1665, + /// /// damage_removed_from_mana_before_life_% /// - DamageRemovedFromManaBeforeLifePct = 1665, - + DamageRemovedFromManaBeforeLifePct = 1666, + /// /// local_display_aura_damage_+% /// - LocalDisplayAuraDamagePct = 1666, - + LocalDisplayAuraDamagePct = 1667, + /// /// attack_ignite_chance_% /// - AttackIgniteChancePct = 1667, - + AttackIgniteChancePct = 1668, + /// /// melee_damage_+%_vs_frozen_enemies /// - MeleeDamagePctVsFrozenEnemies = 1668, - + MeleeDamagePctVsFrozenEnemies = 1669, + /// /// melee_damage_+%_vs_shocked_enemies /// - MeleeDamagePctVsShockedEnemies = 1669, - + MeleeDamagePctVsShockedEnemies = 1670, + /// /// melee_damage_+%_vs_burning_enemies /// - MeleeDamagePctVsBurningEnemies = 1670, - + MeleeDamagePctVsBurningEnemies = 1671, + /// /// melee_damage_taken_%_to_deal_to_attacker /// - MeleeDamageTakenPctToDealToAttacker = 1671, - + MeleeDamageTakenPctToDealToAttacker = 1672, + /// /// mana_gained_when_hit /// - ManaGainedWhenHit = 1672, - + ManaGainedWhenHit = 1673, + /// /// local_display_socketed_gems_get_reduced_mana_cost_level /// - LocalDisplaySocketedGemsGetReducedManaCostLevel = 1673, - + LocalDisplaySocketedGemsGetReducedManaCostLevel = 1674, + /// /// local_display_socketed_gems_get_faster_cast_level /// - LocalDisplaySocketedGemsGetFasterCastLevel = 1674, - + LocalDisplaySocketedGemsGetFasterCastLevel = 1675, + /// /// projectile_ignite_chance_% /// - ProjectileIgniteChancePct = 1675, - + ProjectileIgniteChancePct = 1676, + /// /// projectile_freeze_chance_% /// - ProjectileFreezeChancePct = 1676, - + ProjectileFreezeChancePct = 1677, + /// /// projectile_shock_chance_% /// - ProjectileShockChancePct = 1677, - + ProjectileShockChancePct = 1678, + /// /// local_off_hand_visual_identity_override_hash /// - LocalOffHandVisualIdentityOverrideHash = 1678, - + LocalOffHandVisualIdentityOverrideHash = 1679, + /// /// elemental_reflect_damage_taken_+% /// - ElementalReflectDamageTakenPct = 1679, - + ElementalReflectDamageTakenPct = 1680, + /// /// physical_reflect_damage_taken_+% /// - PhysicalReflectDamageTakenPct = 1680, - + PhysicalReflectDamageTakenPct = 1681, + /// /// local_left_ring_slot_elemental_reflect_damage_taken_+% /// - LocalLeftRingSlotElementalReflectDamageTakenPct = 1681, - + LocalLeftRingSlotElementalReflectDamageTakenPct = 1682, + /// /// local_right_ring_slot_physical_reflect_damage_taken_+% /// - LocalRightRingSlotPhysicalReflectDamageTakenPct = 1682, - + LocalRightRingSlotPhysicalReflectDamageTakenPct = 1683, + /// /// grace_aura_evasion_rating_+%_final /// - GraceAuraEvasionRatingPctFinal = 1683, - + GraceAuraEvasionRatingPctFinal = 1684, + /// /// deal_no_attack_damage /// - DealNoAttackDamage = 1684, - + DealNoAttackDamage = 1685, + /// /// deal_no_main_hand_damage /// - DealNoMainHandDamage = 1685, - + DealNoMainHandDamage = 1686, + /// /// deal_no_off_hand_damage /// - DealNoOffHandDamage = 1686, - + DealNoOffHandDamage = 1687, + /// /// deal_no_spell_damage /// - DealNoSpellDamage = 1687, - + DealNoSpellDamage = 1688, + /// /// deal_no_secondary_damage /// - DealNoSecondaryDamage = 1688, - + DealNoSecondaryDamage = 1689, + /// /// deal_no_physical_damage /// - DealNoPhysicalDamage = 1689, - + DealNoPhysicalDamage = 1690, + /// /// deal_no_fire_damage /// - DealNoFireDamage = 1690, - + DealNoFireDamage = 1691, + /// /// deal_no_cold_damage /// - DealNoColdDamage = 1691, - + DealNoColdDamage = 1692, + /// /// deal_no_lightning_damage /// - DealNoLightningDamage = 1692, - + DealNoLightningDamage = 1693, + /// /// deal_no_chaos_damage /// - DealNoChaosDamage = 1693, - + DealNoChaosDamage = 1694, + /// /// deal_no_spell_physical_damage /// - DealNoSpellPhysicalDamage = 1694, - + DealNoSpellPhysicalDamage = 1695, + /// /// deal_no_spell_fire_damage /// - DealNoSpellFireDamage = 1695, - + DealNoSpellFireDamage = 1696, + /// /// deal_no_spell_cold_damage /// - DealNoSpellColdDamage = 1696, - + DealNoSpellColdDamage = 1697, + /// /// deal_no_spell_lightning_damage /// - DealNoSpellLightningDamage = 1697, - + DealNoSpellLightningDamage = 1698, + /// /// deal_no_spell_chaos_damage /// - DealNoSpellChaosDamage = 1698, - + DealNoSpellChaosDamage = 1699, + /// /// deal_no_secondary_physical_damage /// - DealNoSecondaryPhysicalDamage = 1699, - + DealNoSecondaryPhysicalDamage = 1700, + /// /// deal_no_secondary_fire_damage /// - DealNoSecondaryFireDamage = 1700, - + DealNoSecondaryFireDamage = 1701, + /// /// deal_no_secondary_cold_damage /// - DealNoSecondaryColdDamage = 1701, - + DealNoSecondaryColdDamage = 1702, + /// /// deal_no_secondary_lightning_damage /// - DealNoSecondaryLightningDamage = 1702, - + DealNoSecondaryLightningDamage = 1703, + /// /// deal_no_secondary_chaos_damage /// - DealNoSecondaryChaosDamage = 1703, - + DealNoSecondaryChaosDamage = 1704, + /// /// deal_no_main_hand_physical_damage /// - DealNoMainHandPhysicalDamage = 1704, - + DealNoMainHandPhysicalDamage = 1705, + /// /// deal_no_main_hand_fire_damage /// - DealNoMainHandFireDamage = 1705, - + DealNoMainHandFireDamage = 1706, + /// /// deal_no_main_hand_cold_damage /// - DealNoMainHandColdDamage = 1706, - + DealNoMainHandColdDamage = 1707, + /// /// deal_no_main_hand_lightning_damage /// - DealNoMainHandLightningDamage = 1707, - + DealNoMainHandLightningDamage = 1708, + /// /// deal_no_main_hand_chaos_damage /// - DealNoMainHandChaosDamage = 1708, - + DealNoMainHandChaosDamage = 1709, + /// /// deal_no_off_hand_physical_damage /// - DealNoOffHandPhysicalDamage = 1709, - + DealNoOffHandPhysicalDamage = 1710, + /// /// deal_no_off_hand_fire_damage /// - DealNoOffHandFireDamage = 1710, - + DealNoOffHandFireDamage = 1711, + /// /// deal_no_off_hand_cold_damage /// - DealNoOffHandColdDamage = 1711, - + DealNoOffHandColdDamage = 1712, + /// /// deal_no_off_hand_lightning_damage /// - DealNoOffHandLightningDamage = 1712, - + DealNoOffHandLightningDamage = 1713, + /// /// deal_no_off_hand_chaos_damage /// - DealNoOffHandChaosDamage = 1713, - + DealNoOffHandChaosDamage = 1714, + /// /// base_deal_no_main_hand_damage /// - BaseDealNoMainHandDamage = 1714, - + BaseDealNoMainHandDamage = 1715, + /// /// base_deal_no_off_hand_damage /// - BaseDealNoOffHandDamage = 1715, - + BaseDealNoOffHandDamage = 1716, + /// /// base_deal_no_spell_damage /// - BaseDealNoSpellDamage = 1716, - + BaseDealNoSpellDamage = 1717, + /// /// base_deal_no_secondary_damage /// - BaseDealNoSecondaryDamage = 1717, - + BaseDealNoSecondaryDamage = 1718, + /// /// base_deal_no_attack_damage /// - BaseDealNoAttackDamage = 1718, - + BaseDealNoAttackDamage = 1719, + /// /// base_deal_no_physical_damage /// - BaseDealNoPhysicalDamage = 1719, - + BaseDealNoPhysicalDamage = 1720, + /// /// base_deal_no_fire_damage /// - BaseDealNoFireDamage = 1720, - + BaseDealNoFireDamage = 1721, + /// /// base_deal_no_cold_damage /// - BaseDealNoColdDamage = 1721, - + BaseDealNoColdDamage = 1722, + /// /// base_deal_no_lightning_damage /// - BaseDealNoLightningDamage = 1722, - + BaseDealNoLightningDamage = 1723, + /// /// base_deal_no_chaos_damage /// - BaseDealNoChaosDamage = 1723, - + BaseDealNoChaosDamage = 1724, + /// /// local_can_only_deal_damage_with_this_weapon /// - LocalCanOnlyDealDamageWithThisWeapon = 1724, - + LocalCanOnlyDealDamageWithThisWeapon = 1725, + /// /// reave_area_of_effect_+%_final_per_stage /// - ReaveAreaOfEffectPctFinalPerStage = 1725, - + ReaveAreaOfEffectPctFinalPerStage = 1726, + /// /// skill_can_add_multiple_charges_per_action /// - SkillCanAddMultipleChargesPerAction = 1726, - + SkillCanAddMultipleChargesPerAction = 1727, + /// /// local_charges_used_+% /// - LocalChargesUsedPct = 1727, - + LocalChargesUsedPct = 1728, + /// /// non_critical_damage_multiplier_+% /// - NonCriticalDamageMultiplierPct = 1728, - + NonCriticalDamageMultiplierPct = 1729, + /// /// skill_sound_variation /// - SkillSoundVariation = 1729, - + SkillSoundVariation = 1730, + /// /// unique_map_boss_number_of_rare_items_to_drop /// - UniqueMapBossNumberOfRareItemsToDrop = 1730, - + UniqueMapBossNumberOfRareItemsToDrop = 1731, + /// /// unique_map_boss_class_of_rare_items_to_drop /// - UniqueMapBossClassOfRareItemsToDrop = 1731, - + UniqueMapBossClassOfRareItemsToDrop = 1732, + /// /// base_cold_damage_to_deal_per_minute /// - BaseColdDamageToDealPerMinute = 1732, - + BaseColdDamageToDealPerMinute = 1733, + /// /// number_of_totems_summoned_in_formation /// - NumberOfTotemsSummonedInFormation = 1733, - + NumberOfTotemsSummonedInFormation = 1734, + /// /// supported_active_skill_gem_level_+ /// - SupportedActiveSkillGemLevel = 1734, - + SupportedActiveSkillGemLevel = 1735, + /// /// shock_art_variation /// - ShockArtVariation = 1735, - + ShockArtVariation = 1736, + /// /// support_multicast_cast_speed_+%_final /// - SupportMulticastCastSpeedPctFinal = 1736, - + SupportMulticastCastSpeedPctFinal = 1737, + /// /// global_attack_speed_+%_per_green_socket_on_item /// - GlobalAttackSpeedPctPerGreenSocketOnItem = 1737, - + GlobalAttackSpeedPctPerGreenSocketOnItem = 1738, + /// /// global_weapon_physical_damage_+%_per_red_socket_on_item /// - GlobalWeaponPhysicalDamagePctPerRedSocketOnItem = 1738, - + GlobalWeaponPhysicalDamagePctPerRedSocketOnItem = 1739, + /// /// old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item /// - OldDoNotUseGlobalManaLeechFromPhysicalAttackDamagePctPerBlueSocketOnItem = 1739, - + OldDoNotUseGlobalManaLeechFromPhysicalAttackDamagePctPerBlueSocketOnItem = 1740, + /// /// global_melee_range_+_per_white_socket_on_item /// - GlobalMeleeRangePerWhiteSocketOnItem = 1740, - + GlobalMeleeRangePerWhiteSocketOnItem = 1741, + /// /// spell_damage_+%_per_5%_block_chance /// - SpellDamagePctPer5PctBlockChance = 1741, - + SpellDamagePctPer5PctBlockChance = 1742, + /// /// base_life_gained_on_spell_hit /// - BaseLifeGainedOnSpellHit = 1742, - + BaseLifeGainedOnSpellHit = 1743, + /// /// armour_%_to_leech_as_life_on_block /// - ArmourPctToLeechAsLifeOnBlock = 1743, - + ArmourPctToLeechAsLifeOnBlock = 1744, + /// /// energy_shield_%_to_lose_on_block /// - EnergyShieldPctToLoseOnBlock = 1744, - + EnergyShieldPctToLoseOnBlock = 1745, + /// /// light_radius_scales_with_energy_shield /// - LightRadiusScalesWithEnergyShield = 1745, - + LightRadiusScalesWithEnergyShield = 1746, + /// /// fishing_range_+% /// - FishingRangePct = 1746, - + FishingRangePct = 1747, + /// /// fishing_line_strength_+% /// - FishingLineStrengthPct = 1747, - + FishingLineStrengthPct = 1748, + /// /// fish_quantity_+% /// - FishQuantityPct = 1748, - + FishQuantityPct = 1749, + /// /// fish_rarity_+% /// - FishRarityPct = 1749, - + FishRarityPct = 1750, + /// /// fishing_pool_consumption_+% /// - FishingPoolConsumptionPct = 1750, - + FishingPoolConsumptionPct = 1751, + /// /// fishing_lure_type /// - FishingLureType = 1751, - + FishingLureType = 1752, + /// /// fishing_hook_type /// - FishingHookType = 1752, - + FishingHookType = 1753, + /// /// cannot_be_damaged_by_things_outside_radius /// - CannotBeDamagedByThingsOutsideRadius = 1753, - + CannotBeDamagedByThingsOutsideRadius = 1754, + /// /// inside_shield /// - InsideShield = 1754, - + InsideShield = 1755, + /// /// flask_effect_+% /// - FlaskEffectPct = 1755, - + FlaskEffectPct = 1756, + /// /// chance_to_gain_endurance_charge_when_hit_% /// - ChanceToGainEnduranceChargeWhenHitPct = 1756, - + ChanceToGainEnduranceChargeWhenHitPct = 1757, + /// /// lose_all_endurance_charges_when_reaching_maximum /// - LoseAllEnduranceChargesWhenReachingMaximum = 1757, - + LoseAllEnduranceChargesWhenReachingMaximum = 1758, + /// /// gain_onslaught_ms_when_reaching_maximum_endurance_charges /// - GainOnslaughtMsWhenReachingMaximumEnduranceCharges = 1758, - + GainOnslaughtMsWhenReachingMaximumEnduranceCharges = 1759, + /// /// cannot_gain_endurance_charges_while_have_onslaught /// - CannotGainEnduranceChargesWhileHaveOnslaught = 1759, - + CannotGainEnduranceChargesWhileHaveOnslaught = 1760, + /// /// has_onslaught /// - HasOnslaught = 1760, - + HasOnslaught = 1761, + /// /// cannot_gain_endurance_charges /// - CannotGainEnduranceCharges = 1761, - + CannotGainEnduranceCharges = 1762, + /// /// local_weapon_range_+ /// - LocalWeaponRange = 1762, - + LocalWeaponRange = 1763, + /// /// off_hand_weapon_range_+ /// - OffHandWeaponRange = 1763, - + OffHandWeaponRange = 1764, + /// /// main_hand_weapon_range_+ /// - MainHandWeaponRange = 1764, - + MainHandWeaponRange = 1765, + /// /// Local Has X Sockets /// - LocalHasXSockets = 1765, - + LocalHasXSockets = 1766, + /// /// weapon_physical_damage_+% /// - WeaponPhysicalDamagePct = 1766, - + WeaponPhysicalDamagePct = 1767, + /// /// maximum_critical_strike_chance /// - MaximumCriticalStrikeChance = 1767, - + MaximumCriticalStrikeChance = 1768, + /// /// chilled_monsters_take_+%_burning_damage /// - ChilledMonstersTakePctBurningDamage = 1768, - + ChilledMonstersTakePctBurningDamage = 1769, + /// /// unique_ignite_chance_%_when_in_main_hand /// - UniqueIgniteChancePctWhenInMainHand = 1769, - + UniqueIgniteChancePctWhenInMainHand = 1770, + /// /// unique_chill_duration_+%_when_in_off_hand /// - UniqueChillDurationPctWhenInOffHand = 1770, - + UniqueChillDurationPctWhenInOffHand = 1771, + /// /// curse_on_melee_block_level_15_punishment /// - CurseOnMeleeBlockLevel15Punishment = 1771, - + CurseOnMeleeBlockLevel15Punishment = 1772, + /// /// curse_on_projectile_block_level_15_temporal_chains /// - CurseOnProjectileBlockLevel15TemporalChains = 1772, - + CurseOnProjectileBlockLevel15TemporalChains = 1773, + /// /// curse_on_spell_block_level_15_elemental_weakness /// - CurseOnSpellBlockLevel15ElementalWeakness = 1773, - + CurseOnSpellBlockLevel15ElementalWeakness = 1774, + /// /// local_display_socketed_gems_get_item_quantity_+% /// - LocalDisplaySocketedGemsGetItemQuantityPct = 1774, - + LocalDisplaySocketedGemsGetItemQuantityPct = 1775, + /// /// local_display_socketed_gems_get_iron_will_level /// - LocalDisplaySocketedGemsGetIronWillLevel = 1775, - + LocalDisplaySocketedGemsGetIronWillLevel = 1776, + /// /// gain_onslaught_on_stun_duration_ms /// - GainOnslaughtOnStunDurationMs = 1776, - + GainOnslaughtOnStunDurationMs = 1777, + /// /// cast_linked_spells_on_attack_hit_% /// - CastLinkedSpellsOnAttackHitPct = 1777, - + CastLinkedSpellsOnAttackHitPct = 1778, + /// /// spectres_have_aura_cast_attack_move_speed_+% /// - SpectresHaveAuraCastAttackMoveSpeedPct = 1778, - + SpectresHaveAuraCastAttackMoveSpeedPct = 1779, + /// /// physical_damage_reduction_rating_per_level /// - PhysicalDamageReductionRatingPerLevel = 1779, - + PhysicalDamageReductionRatingPerLevel = 1780, + /// /// maximum_life_per_10_levels /// - MaximumLifePer10Levels = 1780, - + MaximumLifePer10Levels = 1781, + /// /// resist_all_elements_%_per_10_levels /// - ResistAllElementsPctPer10Levels = 1781, - + ResistAllElementsPctPer10Levels = 1782, + /// /// chance_to_gain_random_curse_when_hit_%_per_10_levels /// - ChanceToGainRandomCurseWhenHitPctPer10Levels = 1782, - + ChanceToGainRandomCurseWhenHitPctPer10Levels = 1783, + /// /// chance_to_gain_random_curse_when_hit_% /// - ChanceToGainRandomCurseWhenHitPct = 1783, - + ChanceToGainRandomCurseWhenHitPct = 1784, + /// /// curse_on_hit_%_flammability /// - CurseOnHitPctFlammability = 1784, - + CurseOnHitPctFlammability = 1785, + /// /// support_trap_damage_+%_final /// - SupportTrapDamagePctFinal = 1785, - + SupportTrapDamagePctFinal = 1786, + /// /// number_of_additional_traps_to_throw /// - NumberOfAdditionalTrapsToThrow = 1786, - + NumberOfAdditionalTrapsToThrow = 1787, + /// /// number_of_traps_to_throw /// - NumberOfTrapsToThrow = 1787, - + NumberOfTrapsToThrow = 1788, + /// /// projectiles_nova /// - ProjectilesNova = 1788, - + ProjectilesNova = 1789, + /// /// support_multithrow_damage_+%_final /// - SupportMultithrowDamagePctFinal = 1789, - + SupportMultithrowDamagePctFinal = 1790, + /// /// suppressing_fire_debuff_cast_speed_+%_final /// - SuppressingFireDebuffCastSpeedPctFinal = 1790, - + SuppressingFireDebuffCastSpeedPctFinal = 1791, + /// /// suppressing_fire_debuff_non_melee_attack_speed_+%_final /// - SuppressingFireDebuffNonMeleeAttackSpeedPctFinal = 1791, - + SuppressingFireDebuffNonMeleeAttackSpeedPctFinal = 1792, + /// /// cast_on_death_% /// - CastOnDeathPct = 1792, - + CastOnDeathPct = 1793, + /// /// accuracy_rating_+%_per_frenzy_charge /// - AccuracyRatingPctPerFrenzyCharge = 1793, - + AccuracyRatingPctPerFrenzyCharge = 1794, + /// /// base_skill_is_trapped /// - BaseSkillIsTrapped = 1794, - + BaseSkillIsTrapped = 1795, + /// /// base_skill_is_mined /// - BaseSkillIsMined = 1795, - + BaseSkillIsMined = 1796, + /// /// base_skill_is_totemified /// - BaseSkillIsTotemified = 1796, - + BaseSkillIsTotemified = 1797, + /// /// trap_damage_+% /// - TrapDamagePct = 1797, - + TrapDamagePct = 1798, + /// /// totem_damage_+% /// - TotemDamagePct = 1798, - + TotemDamagePct = 1799, + /// /// mine_damage_+% /// - MineDamagePct = 1799, - + MineDamagePct = 1800, + /// /// monster_reverse_point_blank_damage_-%_at_minimum_range /// - MonsterReversePointBlankDamagePctAtMinimumRange = 1800, - + MonsterReversePointBlankDamagePctAtMinimumRange = 1801, + /// /// frenzy_charge_duration_+%_per_frenzy_charge /// - FrenzyChargeDurationPctPerFrenzyCharge = 1801, - + FrenzyChargeDurationPctPerFrenzyCharge = 1802, + /// /// Frenzy Charge duration increase /// - VirtualFrenzyChargeDurationPct = 1802, - + VirtualFrenzyChargeDurationPct = 1803, + /// /// attacks_poison_while_at_max_frenzy_charges /// - AttacksPoisonWhileAtMaxFrenzyCharges = 1803, - + AttacksPoisonWhileAtMaxFrenzyCharges = 1804, + /// /// attacks_poison /// - AttacksPoison = 1804, - + AttacksPoison = 1805, + /// /// gain_endurance_charge_on_melee_stun /// - GainEnduranceChargeOnMeleeStun = 1805, - + GainEnduranceChargeOnMeleeStun = 1806, + /// /// damage_taken_+%_vs_demons /// - DamageTakenPctVsDemons = 1806, - + DamageTakenPctVsDemons = 1807, + /// /// damage_+%_vs_demons /// - DamagePctVsDemons = 1807, - + DamagePctVsDemons = 1808, + /// /// local_recharge_on_demon_killed /// - LocalRechargeOnDemonKilled = 1808, - + LocalRechargeOnDemonKilled = 1809, + /// /// local_unique_flask_damage_taken_+%_vs_demons_while_healing /// - LocalUniqueFlaskDamageTakenPctVsDemonsWhileHealing = 1809, - + LocalUniqueFlaskDamageTakenPctVsDemonsWhileHealing = 1810, + /// /// local_unique_flask_damage_+%_vs_demons_while_healing /// - LocalUniqueFlaskDamagePctVsDemonsWhileHealing = 1810, - + LocalUniqueFlaskDamagePctVsDemonsWhileHealing = 1811, + /// /// chance_to_apply_suppression_on_hit_% /// - ChanceToApplySuppressionOnHitPct = 1811, - + ChanceToApplySuppressionOnHitPct = 1812, + /// /// is_frozen /// - IsFrozen = 1812, - + IsFrozen = 1813, + /// /// is_chilled /// - IsChilled = 1813, - + IsChilled = 1814, + /// /// is_ignited /// - IsIgnited = 1814, - + IsIgnited = 1815, + /// /// curses_reflected_to_self /// - CursesReflectedToSelf = 1815, - + CursesReflectedToSelf = 1816, + /// /// movement_speed_bonus_when_throwing_trap_ms /// - MovementSpeedBonusWhenThrowingTrapMs = 1816, - + MovementSpeedBonusWhenThrowingTrapMs = 1817, + /// /// local_display_socketed_gems_get_trap_level /// - LocalDisplaySocketedGemsGetTrapLevel = 1817, - + LocalDisplaySocketedGemsGetTrapLevel = 1818, + /// /// poison_on_melee_critical_strike_% /// - PoisonOnMeleeCriticalStrikePct = 1818, - + PoisonOnMeleeCriticalStrikePct = 1819, + /// /// shocks_reflected_to_self /// - ShocksReflectedToSelf = 1819, - + ShocksReflectedToSelf = 1820, + /// /// damage_+%_per_shock /// - DamagePctPerShock = 1820, - + DamagePctPerShock = 1821, + /// /// movement_velocity_+%_per_shock /// - MovementVelocityPctPerShock = 1821, - + MovementVelocityPctPerShock = 1822, + /// /// damage_+1%_per_X_strength /// - Damage1PctPerXStrength = 1822, - + Damage1PctPerXStrength = 1823, + /// /// physical_damage_reduction_rating_+1%_per_X_strength /// - PhysicalDamageReductionRating1PctPerXStrength = 1823, - + PhysicalDamageReductionRating1PctPerXStrength = 1824, + /// /// damage_+1%_per_X_strength_when_in_main_hand /// - Damage1PctPerXStrengthWhenInMainHand = 1824, - + Damage1PctPerXStrengthWhenInMainHand = 1825, + /// /// physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand /// - PhysicalDamageReductionRating1PctPerXStrengthWhenInOffHand = 1825, - + PhysicalDamageReductionRating1PctPerXStrengthWhenInOffHand = 1826, + /// /// local_display_socketed_gems_get_curse_reflection /// - LocalDisplaySocketedGemsGetCurseReflection = 1826, - + LocalDisplaySocketedGemsGetCurseReflection = 1827, + /// /// freeze_mine_cold_resistance_+_while_frozen /// - FreezeMineColdResistanceWhileFrozen = 1827, - + FreezeMineColdResistanceWhileFrozen = 1828, + /// /// max_corrupted_blood_stacks /// - MaxCorruptedBloodStacks = 1828, - + MaxCorruptedBloodStacks = 1829, + /// /// current_corrupted_blood_stacks /// - CurrentCorruptedBloodStacks = 1829, - + CurrentCorruptedBloodStacks = 1830, + /// /// physical_damage_taken_per_minute /// - PhysicalDamageTakenPerMinute = 1830, - + PhysicalDamageTakenPerMinute = 1831, + /// /// base_physical_damage_taken_per_minute_per_corrupted_blood_stack /// - BasePhysicalDamageTakenPerMinutePerCorruptedBloodStack = 1831, - + BasePhysicalDamageTakenPerMinutePerCorruptedBloodStack = 1832, + /// /// firestorm_drop_burning_ground_duration_ms /// - FirestormDropBurningGroundDurationMs = 1832, - + FirestormDropBurningGroundDurationMs = 1833, + /// /// firestorm_base_area_of_effect_+% /// - FirestormBaseAreaOfEffectPct = 1833, - + FirestormBaseAreaOfEffectPct = 1834, + /// /// Mine Duration increase /// - MineDurationPct = 1834, - + MineDurationPct = 1835, + /// /// display_monster_spike_nova_on_death_text /// - DisplayMonsterSpikeNovaOnDeathText = 1835, - + DisplayMonsterSpikeNovaOnDeathText = 1836, + /// /// display_monster_ice_spear_nova_on_death_text /// - DisplayMonsterIceSpearNovaOnDeathText = 1836, - + DisplayMonsterIceSpearNovaOnDeathText = 1837, + /// /// skill_unusable /// - SkillUnusable = 1837, - + SkillUnusable = 1838, + /// /// cast_linked_spells_on_attack_crit_% /// - CastLinkedSpellsOnAttackCritPct = 1838, - + CastLinkedSpellsOnAttackCritPct = 1839, + /// /// cast_linked_spells_on_melee_kill_% /// - CastLinkedSpellsOnMeleeKillPct = 1839, - + CastLinkedSpellsOnMeleeKillPct = 1840, + /// /// spell_uncastable_if_triggerable /// - SpellUncastableIfTriggerable = 1840, - + SpellUncastableIfTriggerable = 1841, + /// /// mine_detonation_is_instant /// - MineDetonationIsInstant = 1841, - + MineDetonationIsInstant = 1842, + /// /// trap_damage_penetrates_%_elemental_resistance /// - TrapDamagePenetratesPctElementalResistance = 1842, - + TrapDamagePenetratesPctElementalResistance = 1843, + /// /// mine_damage_penetrates_%_elemental_resistance /// - MineDamagePenetratesPctElementalResistance = 1843, - + MineDamagePenetratesPctElementalResistance = 1844, + /// /// traps_invulnerable_for_duration_ms /// - TrapsInvulnerableForDurationMs = 1844, - + TrapsInvulnerableForDurationMs = 1845, + /// /// mines_invulnerable_for_duration_ms /// - MinesInvulnerableForDurationMs = 1845, - + MinesInvulnerableForDurationMs = 1846, + /// /// totem_elemental_resistance_% /// - TotemElementalResistancePct = 1846, - + TotemElementalResistancePct = 1847, + /// /// totem_additional_physical_damage_reduction_% /// - TotemAdditionalPhysicalDamageReductionPct = 1847, - + TotemAdditionalPhysicalDamageReductionPct = 1848, + /// /// Mine Detonation Radius increase /// - MineDetonationRadiusPct = 1848, - + MineDetonationRadiusPct = 1849, + /// /// totem_skill_cast_speed_+% /// - TotemSkillCastSpeedPct = 1849, - + TotemSkillCastSpeedPct = 1850, + /// /// totem_skill_attack_speed_+% /// - TotemSkillAttackSpeedPct = 1850, - + TotemSkillAttackSpeedPct = 1851, + /// /// Mine Throwing Speed increase /// - MineLayingSpeedPct = 1851, - + MineLayingSpeedPct = 1852, + /// /// cyclone_places_ground_ice /// - CyclonePlacesGroundIce = 1852, - + CyclonePlacesGroundIce = 1853, + /// /// leap_slam_base_ground_fire_damage_to_deal_per_minute /// - LeapSlamBaseGroundFireDamageToDealPerMinute = 1853, - + LeapSlamBaseGroundFireDamageToDealPerMinute = 1854, + /// /// projectiles_return_if_no_hit_object /// - ProjectilesReturnIfNoHitObject = 1854, - + ProjectilesReturnIfNoHitObject = 1855, + /// /// cast_on_stunned_% /// - CastOnStunnedPct = 1855, - + CastOnStunnedPct = 1856, + /// /// cast_on_damage_taken_% /// - CastOnDamageTakenPct = 1856, - + CastOnDamageTakenPct = 1857, + /// /// cast_on_damage_taken_threshold /// - CastOnDamageTakenThreshold = 1857, - + CastOnDamageTakenThreshold = 1858, + /// /// deal_no_non_fire_damage /// - DealNoNonFireDamage = 1858, - + DealNoNonFireDamage = 1859, + /// /// ice_nova_places_ground_ice /// - IceNovaPlacesGroundIce = 1859, - + IceNovaPlacesGroundIce = 1860, + /// /// shock_nova_places_X_ground_lightning_patches /// - ShockNovaPlacesXGroundLightningPatches = 1860, - + ShockNovaPlacesXGroundLightningPatches = 1861, + /// /// ignores_proximity_shield /// - IgnoresProximityShield = 1861, - + IgnoresProximityShield = 1862, + /// /// emerge_speed_+% /// - EmergeSpeedPct = 1862, - + EmergeSpeedPct = 1863, + /// /// animated_armour_replace_off_hand_weapon /// - AnimatedArmourReplaceOffHandWeapon = 1863, - + AnimatedArmourReplaceOffHandWeapon = 1864, + /// /// map_no_exiles /// - MapNoExiles = 1864, - + MapNoExiles = 1865, + /// /// animate_item_maximum_level_requirement /// - AnimateItemMaximumLevelRequirement = 1865, - + AnimateItemMaximumLevelRequirement = 1866, + /// /// phase_through_objects /// - PhaseThroughObjects = 1866, - + PhaseThroughObjects = 1867, + /// /// delete_on_death /// - DeleteOnDeath = 1867, - + DeleteOnDeath = 1868, + /// /// corpse_consumption_mana_to_gain /// - CorpseConsumptionManaToGain = 1868, - + CorpseConsumptionManaToGain = 1869, + /// /// fixed_projectile_spread /// - FixedProjectileSpread = 1869, - + FixedProjectileSpread = 1870, + /// /// Fire And Cold Damage Resistance % /// - FireAndColdDamageResistancePct = 1870, - + FireAndColdDamageResistancePct = 1871, + /// /// Fire And Lightning Damage Resistance % /// - FireAndLightningDamageResistancePct = 1871, - + FireAndLightningDamageResistancePct = 1872, + /// /// Cold And Lightning Damage Resistance % /// - ColdAndLightningDamageResistancePct = 1872, - + ColdAndLightningDamageResistancePct = 1873, + /// /// display_monster_mod_nemesis_test /// - DisplayMonsterModNemesisTest = 1873, - + DisplayMonsterModNemesisTest = 1874, + /// /// base_damage_not_from_skill_user /// - BaseDamageNotFromSkillUser = 1874, - + BaseDamageNotFromSkillUser = 1875, + /// /// map_rare_monsters_have_nemesis_mod /// - MapRareMonstersHaveNemesisMod = 1875, - + MapRareMonstersHaveNemesisMod = 1876, + /// /// display_monster_has_firestorm_daemon /// - DisplayMonsterHasFirestormDaemon = 1876, - + DisplayMonsterHasFirestormDaemon = 1877, + /// /// monster_raises_after_death /// - MonsterRaisesAfterDeath = 1877, - + MonsterRaisesAfterDeath = 1878, + /// /// display_monster_is_apparition /// - DisplayMonsterIsApparition = 1878, - + DisplayMonsterIsApparition = 1879, + /// /// monster_spawns_X_monsters_on_death /// - MonsterSpawnsXMonstersOnDeath = 1879, - + MonsterSpawnsXMonstersOnDeath = 1880, + /// /// damage_+%_while_ignited /// - DamagePctWhileIgnited = 1880, - + DamagePctWhileIgnited = 1881, + /// /// physical_damage_reduction_rating_while_frozen /// - PhysicalDamageReductionRatingWhileFrozen = 1881, - + PhysicalDamageReductionRatingWhileFrozen = 1882, + /// /// old_do_not_use_mana_leech_%_vs_shocked_enemies /// - OldDoNotUseManaLeechPctVsShockedEnemies = 1882, - + OldDoNotUseManaLeechPctVsShockedEnemies = 1883, + /// /// old_do_not_use_life_leech_%_vs_frozen_enemies /// - OldDoNotUseLifeLeechPctVsFrozenEnemies = 1883, - + OldDoNotUseLifeLeechPctVsFrozenEnemies = 1884, + /// /// damage_+%_vs_rare_monsters /// - DamagePctVsRareMonsters = 1884, - + DamagePctVsRareMonsters = 1885, + /// /// damage_+%_vs_enemies_per_freeze_shock_ignite /// - DamagePctVsEnemiesPerFreezeShockIgnite = 1885, - + DamagePctVsEnemiesPerFreezeShockIgnite = 1886, + /// /// chance_to_freeze_shock_ignite_% /// - ChanceToFreezeShockIgnitePct = 1886, - + ChanceToFreezeShockIgnitePct = 1887, + /// /// shrine_buff_effect_on_self_+% /// - ShrineBuffEffectOnSelfPct = 1887, - + ShrineBuffEffectOnSelfPct = 1888, + /// /// shrine_effect_duration_+% /// - ShrineEffectDurationPct = 1888, - + ShrineEffectDurationPct = 1889, + /// /// local_unique_flask_cannot_recover_life_while_healing /// - LocalUniqueFlaskCannotRecoverLifeWhileHealing = 1889, - + LocalUniqueFlaskCannotRecoverLifeWhileHealing = 1890, + /// /// local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration /// - LocalUniqueFlaskRecoverPctMaximumLifeWhenEffectReachesDuration = 1890, - + LocalUniqueFlaskRecoverPctMaximumLifeWhenEffectReachesDuration = 1891, + /// /// local_unique_flask_no_mana_cost_while_healing /// - LocalUniqueFlaskNoManaCostWhileHealing = 1891, - + LocalUniqueFlaskNoManaCostWhileHealing = 1892, + /// /// shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy /// - ShockXNearbyEnemiesFor2SOnKillingShockedEnemy = 1892, - + ShockXNearbyEnemiesFor2SOnKillingShockedEnemy = 1893, + /// /// ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy /// - IgniteXNearbyEnemiesFor4SOnKillingIgnitedEnemy = 1893, - + IgniteXNearbyEnemiesFor4SOnKillingIgnitedEnemy = 1894, + /// /// Additional chance to Ignite enemies /// - ChanceToIgnitePct = 1894, - + ChanceToIgnitePct = 1895, + /// /// Additional chance to Shock enemies /// - ChanceToShockPct = 1895, - + ChanceToShockPct = 1896, + /// /// Additional chance to Freeze enemies /// - ChanceToFreezePct = 1896, - + ChanceToFreezePct = 1897, + /// /// echoing_shrine_cast_speed_+%_final /// - EchoingShrineCastSpeedPctFinal = 1897, - + EchoingShrineCastSpeedPctFinal = 1898, + /// /// echoing_shrine_attack_speed_+%_final /// - EchoingShrineAttackSpeedPctFinal = 1898, - + EchoingShrineAttackSpeedPctFinal = 1899, + /// /// display_monster_has_proximity_shield_daemon /// - DisplayMonsterHasProximityShieldDaemon = 1899, - + DisplayMonsterHasProximityShieldDaemon = 1900, + /// /// display_monster_has_summon_skeletons_daemon /// - DisplayMonsterHasSummonSkeletonsDaemon = 1900, - + DisplayMonsterHasSummonSkeletonsDaemon = 1901, + /// /// display_monster_has_smoke_mine_daemon /// - DisplayMonsterHasSmokeMineDaemon = 1901, - + DisplayMonsterHasSmokeMineDaemon = 1902, + /// /// monster_drop_additional_unique_items /// - MonsterDropAdditionalUniqueItems = 1902, - + MonsterDropAdditionalUniqueItems = 1903, + /// /// base_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack /// - BaseCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 1903, - + BaseCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 1904, + /// /// cannot_recover_life /// - CannotRecoverLife = 1904, - + CannotRecoverLife = 1905, + /// /// recover_%_maximum_life_when_buff_reaches_duration /// - RecoverPctMaximumLifeWhenBuffReachesDuration = 1905, - + RecoverPctMaximumLifeWhenBuffReachesDuration = 1906, + /// /// no_mana_cost /// - NoManaCost = 1906, - + NoManaCost = 1907, + /// /// gain_rare_monster_mods_on_kill_ms /// - GainRareMonsterModsOnKillMs = 1907, - + GainRareMonsterModsOnKillMs = 1908, + /// /// corpse_cannot_be_destroyed /// - CorpseCannotBeDestroyed = 1908, - + CorpseCannotBeDestroyed = 1909, + /// /// cannot_be_dominated /// - CannotBeDominated = 1909, - + CannotBeDominated = 1910, + /// /// lightning_warp_shocked_ground_duration_ms /// - LightningWarpShockedGroundDurationMs = 1910, - + LightningWarpShockedGroundDurationMs = 1911, + /// /// physical_damage_%_to_add_as_random_element /// - PhysicalDamagePctToAddAsRandomElement = 1911, - + PhysicalDamagePctToAddAsRandomElement = 1912, + /// /// always_cause_elemental_status_ailment /// - AlwaysCauseElementalStatusAilment = 1912, - + AlwaysCauseElementalStatusAilment = 1913, + /// /// reflect_projectiles_at_owner /// - ReflectProjectilesAtOwner = 1913, - + ReflectProjectilesAtOwner = 1914, + /// /// base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute /// - BaseRighteousFirePctOfMaxEnergyShieldToDealToNearbyPerMinute = 1914, - + BaseRighteousFirePctOfMaxEnergyShieldToDealToNearbyPerMinute = 1915, + /// /// base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute /// - BaseNonlethalFireDamagePctOfMaximumEnergyShieldTakenPerMinute = 1915, - + BaseNonlethalFireDamagePctOfMaximumEnergyShieldTakenPerMinute = 1916, + /// /// nemesis_transform_on_low_life /// - NemesisTransformOnLowLife = 1916, - + NemesisTransformOnLowLife = 1917, + /// /// attack_and_cast_speed_+% /// - AttackAndCastSpeedPct = 1917, - + AttackAndCastSpeedPct = 1918, + /// /// cleave_damage_+%_final_while_dual_wielding /// - CleaveDamagePctFinalWhileDualWielding = 1918, - + CleaveDamagePctFinalWhileDualWielding = 1919, + /// /// monster_level_scale_maximum_mana_and_mana_cost_+%_final /// - MonsterLevelScaleMaximumManaAndManaCostPctFinal = 1919, - + MonsterLevelScaleMaximumManaAndManaCostPctFinal = 1920, + /// /// grant_actor_scale_+%_to_aura_owner_on_death /// - GrantActorScalePctToAuraOwnerOnDeath = 1920, - + GrantActorScalePctToAuraOwnerOnDeath = 1921, + /// /// grant_attack_speed_+%_to_aura_owner_on_death /// - GrantAttackSpeedPctToAuraOwnerOnDeath = 1921, - + GrantAttackSpeedPctToAuraOwnerOnDeath = 1922, + /// /// grant_cast_speed_+%_to_aura_owner_on_death /// - GrantCastSpeedPctToAuraOwnerOnDeath = 1922, - + GrantCastSpeedPctToAuraOwnerOnDeath = 1923, + /// /// grant_damage_reduction_%_to_aura_owner_on_death /// - GrantDamageReductionPctToAuraOwnerOnDeath = 1923, - + GrantDamageReductionPctToAuraOwnerOnDeath = 1924, + /// /// random_curse_on_hit_% /// - RandomCurseOnHitPct = 1924, - + RandomCurseOnHitPct = 1925, + /// /// random_curses_include_silence /// - RandomCursesIncludeSilence = 1925, - + RandomCursesIncludeSilence = 1926, + /// /// is_twinned_unique_boss /// - IsTwinnedUniqueBoss = 1926, - + IsTwinnedUniqueBoss = 1927, + /// /// remove_flask_effects_on_hit_% /// - RemoveFlaskEffectsOnHitPct = 1927, - + RemoveFlaskEffectsOnHitPct = 1928, + /// /// remove_charges_on_hit_% /// - RemoveChargesOnHitPct = 1928, - + RemoveChargesOnHitPct = 1929, + /// /// monster_casts_arctic_breath_text /// - MonsterCastsArcticBreathText = 1929, - + MonsterCastsArcticBreathText = 1930, + /// /// cast_on_death_damage_+%_final_while_dead /// - CastOnDeathDamagePctFinalWhileDead = 1930, - + CastOnDeathDamagePctFinalWhileDead = 1931, + /// /// cast_on_damage_taken_damage_+%_final /// - CastOnDamageTakenDamagePctFinal = 1931, - + CastOnDamageTakenDamagePctFinal = 1932, + /// /// life_gained_on_spell_hit /// - LifeGainedOnSpellHit = 1932, - + LifeGainedOnSpellHit = 1933, + /// /// base_attacks_poison /// - BaseAttacksPoison = 1933, - + BaseAttacksPoison = 1934, + /// /// active_skill_attack_speed_+%_final /// - ActiveSkillAttackSpeedPctFinal = 1934, - + ActiveSkillAttackSpeedPctFinal = 1935, + /// /// infinite_skill_effect_duration /// - InfiniteSkillEffectDuration = 1935, - + InfiniteSkillEffectDuration = 1936, + /// /// physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked /// - PhysicalDamageReductionRatingPctWhileNotIgnitedFrozenShocked = 1936, - + PhysicalDamageReductionRatingPctWhileNotIgnitedFrozenShocked = 1937, + /// /// max_corrupted_blood_rain_stacks /// - MaxCorruptedBloodRainStacks = 1937, - + MaxCorruptedBloodRainStacks = 1938, + /// /// current_corrupted_blood_rain_stacks /// - CurrentCorruptedBloodRainStacks = 1938, - + CurrentCorruptedBloodRainStacks = 1939, + /// /// base_physical_damage_taken_per_minute_per_corrupted_blood_rain_stack /// - BasePhysicalDamageTakenPerMinutePerCorruptedBloodRainStack = 1939, - + BasePhysicalDamageTakenPerMinutePerCorruptedBloodRainStack = 1940, + /// /// base_damage_removed_from_mana_before_life_% /// - BaseDamageRemovedFromManaBeforeLifePct = 1940, - + BaseDamageRemovedFromManaBeforeLifePct = 1941, + /// /// keystone_mana_shield /// - KeystoneManaShield = 1941, - + KeystoneManaShield = 1942, + /// /// actor_scale_+% /// - ActorScalePct = 1942, - + ActorScalePct = 1943, + /// /// capped_actor_scale_+% /// - CappedActorScalePct = 1943, - + CappedActorScalePct = 1944, + /// /// cannot_stun /// - CannotStun = 1944, - + CannotStun = 1945, + /// /// is_daemon /// - IsDaemon = 1945, - + IsDaemon = 1946, + /// /// disable_light /// - DisableLight = 1946, - + DisableLight = 1947, + /// /// Base Chance To Dodge % /// - BaseChanceToDodgePct = 1947, - + BaseChanceToDodgePct = 1948, + /// /// base_chance_to_dodge_spells_% /// - BaseChanceToDodgeSpellsPct = 1948, - + BaseChanceToDodgeSpellsPct = 1949, + /// /// map_allow_shrines /// - MapAllowShrines = 1949, - + MapAllowShrines = 1950, + /// /// aura_effect_+% /// - AuraEffectPct = 1950, - + AuraEffectPct = 1951, + /// /// display_monster_uses_far_shot_text /// - DisplayMonsterUsesFarShotText = 1951, - + DisplayMonsterUsesFarShotText = 1952, + /// /// monster_additional_rarity_of_dropped_items_in_merciless_+% /// - MonsterAdditionalRarityOfDroppedItemsInMercilessPct = 1952, - + MonsterAdditionalRarityOfDroppedItemsInMercilessPct = 1953, + /// /// monster_additional_quantity_of_dropped_items_in_merciless_+% /// - MonsterAdditionalQuantityOfDroppedItemsInMercilessPct = 1953, - + MonsterAdditionalQuantityOfDroppedItemsInMercilessPct = 1954, + /// /// mortal_conviction_mana_reservation_+%_final /// - MortalConvictionManaReservationPctFinal = 1954, - + MortalConvictionManaReservationPctFinal = 1955, + /// /// mana_reservation_+% /// - ManaReservationPct = 1955, - + ManaReservationPct = 1956, + /// /// additional_player_bonus_maximum_energy_shield_+%_final /// - AdditionalPlayerBonusMaximumEnergyShieldPctFinal = 1956, - + AdditionalPlayerBonusMaximumEnergyShieldPctFinal = 1957, + /// /// additional_player_bonus_monster_slain_flask_charges_granted_+%_final /// - AdditionalPlayerBonusMonsterSlainFlaskChargesGrantedPctFinal = 1957, - + AdditionalPlayerBonusMonsterSlainFlaskChargesGrantedPctFinal = 1958, + /// /// display_monster_uses_suppressing_fire_text /// - DisplayMonsterUsesSuppressingFireText = 1958, - + DisplayMonsterUsesSuppressingFireText = 1959, + /// /// display_monster_casts_devouring_totem_skill_text /// - DisplayMonsterCastsDevouringTotemSkillText = 1959, - + DisplayMonsterCastsDevouringTotemSkillText = 1960, + /// /// monster_additional_quantity_of_dropped_items_in_cruel_+% /// - MonsterAdditionalQuantityOfDroppedItemsInCruelPct = 1960, - + MonsterAdditionalQuantityOfDroppedItemsInCruelPct = 1961, + /// /// monster_additional_rarity_of_dropped_items_in_cruel_+% /// - MonsterAdditionalRarityOfDroppedItemsInCruelPct = 1961, - + MonsterAdditionalRarityOfDroppedItemsInCruelPct = 1962, + /// /// supported_active_skill_gem_quality_% /// - SupportedActiveSkillGemQualityPct = 1962, - + SupportedActiveSkillGemQualityPct = 1963, + /// /// map_rarity /// - MapRarity = 1963, - + MapRarity = 1964, + /// /// animate_guardian_last_known_life /// - AnimateGuardianLastKnownLife = 1964, - + AnimateGuardianLastKnownLife = 1965, + /// /// spell_only_castable_on_death /// - SpellOnlyCastableOnDeath = 1965, - + SpellOnlyCastableOnDeath = 1966, + /// /// local_support_gem_max_skill_level_requirement_to_support /// - LocalSupportGemMaxSkillLevelRequirementToSupport = 1966, - + LocalSupportGemMaxSkillLevelRequirementToSupport = 1967, + /// /// display_monster_casts_lightning_nova_text /// - DisplayMonsterCastsLightningNovaText = 1967, - + DisplayMonsterCastsLightningNovaText = 1968, + /// /// physical_damage_to_deal_per_minute /// - PhysicalDamageToDealPerMinute = 1968, - + PhysicalDamageToDealPerMinute = 1969, + /// /// base_physical_damage_to_deal_per_minute /// - BasePhysicalDamageToDealPerMinute = 1969, - + BasePhysicalDamageToDealPerMinute = 1970, + /// /// fire_damage_to_deal_per_minute /// - FireDamageToDealPerMinute = 1970, - + FireDamageToDealPerMinute = 1971, + /// /// cold_damage_to_deal_per_minute /// - ColdDamageToDealPerMinute = 1971, - + ColdDamageToDealPerMinute = 1972, + /// /// lightning_damage_to_deal_per_minute /// - LightningDamageToDealPerMinute = 1972, - + LightningDamageToDealPerMinute = 1973, + /// /// base_lightning_damage_to_deal_per_minute /// - BaseLightningDamageToDealPerMinute = 1973, - + BaseLightningDamageToDealPerMinute = 1974, + /// /// chaos_damage_to_deal_per_minute /// - ChaosDamageToDealPerMinute = 1974, - + ChaosDamageToDealPerMinute = 1975, + /// /// base_chaos_damage_to_deal_per_minute /// - BaseChaosDamageToDealPerMinute = 1975, - + BaseChaosDamageToDealPerMinute = 1976, + /// /// base_chaos_damage_%_of_maximum_life_to_deal_per_minute /// - BaseChaosDamagePctOfMaximumLifeToDealPerMinute = 1976, - + BaseChaosDamagePctOfMaximumLifeToDealPerMinute = 1977, + /// /// base_chaos_damage_taken_per_minute_per_viper_strike_orb /// - BaseChaosDamageTakenPerMinutePerViperStrikeOrb = 1977, - + BaseChaosDamageTakenPerMinutePerViperStrikeOrb = 1978, + /// /// combined_all_damage_over_time_+% /// - CombinedAllDamageOverTimePct = 1978, - + CombinedAllDamageOverTimePct = 1979, + /// /// combined_all_damage_over_time_+%_final /// - CombinedAllDamageOverTimePctFinal = 1979, - + CombinedAllDamageOverTimePctFinal = 1980, + /// /// combined_physical_damage_over_time_+% /// - CombinedPhysicalDamageOverTimePct = 1980, - + CombinedPhysicalDamageOverTimePct = 1981, + /// /// combined_physical_damage_over_time_+%_final /// - CombinedPhysicalDamageOverTimePctFinal = 1981, - + CombinedPhysicalDamageOverTimePctFinal = 1982, + /// /// combined_elemental_damage_over_time_+% /// - CombinedElementalDamageOverTimePct = 1982, - + CombinedElementalDamageOverTimePct = 1983, + /// /// combined_elemental_damage_over_time_+%_final /// - CombinedElementalDamageOverTimePctFinal = 1983, - + CombinedElementalDamageOverTimePctFinal = 1984, + /// /// combined_fire_damage_over_time_+% /// - CombinedFireDamageOverTimePct = 1984, - + CombinedFireDamageOverTimePct = 1985, + /// /// combined_fire_damage_over_time_+%_final /// - CombinedFireDamageOverTimePctFinal = 1985, - + CombinedFireDamageOverTimePctFinal = 1986, + /// /// combined_cold_damage_over_time_+% /// - CombinedColdDamageOverTimePct = 1986, - + CombinedColdDamageOverTimePct = 1987, + /// /// combined_cold_damage_over_time_+%_final /// - CombinedColdDamageOverTimePctFinal = 1987, - + CombinedColdDamageOverTimePctFinal = 1988, + /// /// combined_lightning_damage_over_time_+% /// - CombinedLightningDamageOverTimePct = 1988, - + CombinedLightningDamageOverTimePct = 1989, + /// /// combined_lightning_damage_over_time_+%_final /// - CombinedLightningDamageOverTimePctFinal = 1989, - + CombinedLightningDamageOverTimePctFinal = 1990, + /// /// combined_chaos_damage_over_time_+% /// - CombinedChaosDamageOverTimePct = 1990, - + CombinedChaosDamageOverTimePct = 1991, + /// /// combined_chaos_damage_over_time_+%_final /// - CombinedChaosDamageOverTimePctFinal = 1991, - + CombinedChaosDamageOverTimePctFinal = 1992, + /// /// damage_over_time_+% /// - DamageOverTimePct = 1992, - + DamageOverTimePct = 1993, + /// /// fire_damage_taken_per_minute /// - FireDamageTakenPerMinute = 1993, - + FireDamageTakenPerMinute = 1994, + /// /// base_fire_damage_taken_per_minute /// - BaseFireDamageTakenPerMinute = 1994, - + BaseFireDamageTakenPerMinute = 1995, + /// /// cold_damage_taken_per_minute /// - ColdDamageTakenPerMinute = 1995, - + ColdDamageTakenPerMinute = 1996, + /// /// base_cold_damage_taken_per_minute /// - BaseColdDamageTakenPerMinute = 1996, - + BaseColdDamageTakenPerMinute = 1997, + /// /// lightning_damage_taken_per_minute /// - LightningDamageTakenPerMinute = 1997, - + LightningDamageTakenPerMinute = 1998, + /// /// base_lightning_damage_taken_per_minute /// - BaseLightningDamageTakenPerMinute = 1998, - + BaseLightningDamageTakenPerMinute = 1999, + /// /// deal_no_damage_over_time /// - DealNoDamageOverTime = 1999, - + DealNoDamageOverTime = 2000, + /// /// base_deal_no_damage_over_time /// - BaseDealNoDamageOverTime = 2000, - + BaseDealNoDamageOverTime = 2001, + /// /// deal_no_physical_damage_over_time /// - DealNoPhysicalDamageOverTime = 2001, - + DealNoPhysicalDamageOverTime = 2002, + /// /// deal_no_fire_damage_over_time /// - DealNoFireDamageOverTime = 2002, - + DealNoFireDamageOverTime = 2003, + /// /// deal_no_cold_damage_over_time /// - DealNoColdDamageOverTime = 2003, - + DealNoColdDamageOverTime = 2004, + /// /// deal_no_lightning_damage_over_time /// - DealNoLightningDamageOverTime = 2004, - + DealNoLightningDamageOverTime = 2005, + /// /// deal_no_chaos_damage_over_time /// - DealNoChaosDamageOverTime = 2005, - + DealNoChaosDamageOverTime = 2006, + /// /// unique_critical_strike_chance_+%_final /// - UniqueCriticalStrikeChancePctFinal = 2006, - + UniqueCriticalStrikeChancePctFinal = 2007, + /// /// map_ground_lightning /// - MapGroundLightning = 2007, - + MapGroundLightning = 2008, + /// /// add_endurance_charge_on_kill /// - AddEnduranceChargeOnKill = 2008, - + AddEnduranceChargeOnKill = 2009, + /// /// unique_lose_all_endurance_charges_when_hit /// - UniqueLoseAllEnduranceChargesWhenHit = 2009, - + UniqueLoseAllEnduranceChargesWhenHit = 2010, + /// /// unique_gain_onslaught_when_hit_duration_ms /// - UniqueGainOnslaughtWhenHitDurationMs = 2010, - + UniqueGainOnslaughtWhenHitDurationMs = 2011, + /// /// chance_to_counter_strike_when_hit_% /// - ChanceToCounterStrikeWhenHitPct = 2011, - + ChanceToCounterStrikeWhenHitPct = 2012, + /// /// hundred_times_average_damage_per_hit /// - HundredTimesAverageDamagePerHit = 2012, - + HundredTimesAverageDamagePerHit = 2013, + /// /// hundred_times_average_damage_per_skill_use /// - HundredTimesAverageDamagePerSkillUse = 2013, - + HundredTimesAverageDamagePerSkillUse = 2014, + /// /// base_skill_show_average_damage_instead_of_dps /// - BaseSkillShowAverageDamageInsteadOfDps = 2014, - + BaseSkillShowAverageDamageInsteadOfDps = 2015, + /// /// display_hundred_times_damage_per_skill_use /// - DisplayHundredTimesDamagePerSkillUse = 2015, - + DisplayHundredTimesDamagePerSkillUse = 2016, + /// /// base_monster_will_be_deleted_on_death /// - BaseMonsterWillBeDeletedOnDeath = 2016, - + BaseMonsterWillBeDeletedOnDeath = 2017, + /// /// monster_will_be_deleted_on_death /// - MonsterWillBeDeletedOnDeath = 2017, - + MonsterWillBeDeletedOnDeath = 2018, + /// /// charged_blast_spell_damage_+%_final_per_stack /// - ChargedBlastSpellDamagePctFinalPerStack = 2018, - + ChargedBlastSpellDamagePctFinalPerStack = 2019, + /// /// from_code_active_skill_spell_damage_+%_final /// - FromCodeActiveSkillSpellDamagePctFinal = 2019, - + FromCodeActiveSkillSpellDamagePctFinal = 2020, + /// /// leech_X_life_per_spell_cast /// - LeechXLifePerSpellCast = 2020, - + LeechXLifePerSpellCast = 2021, + /// /// zero_elemental_resistance /// - ZeroElementalResistance = 2021, - + ZeroElementalResistance = 2022, + /// /// global_defences_+% /// - GlobalDefencesPct = 2022, - + GlobalDefencesPct = 2023, + /// /// minimum_lightning_damage_to_return_on_block /// - MinimumLightningDamageToReturnOnBlock = 2023, - + MinimumLightningDamageToReturnOnBlock = 2024, + /// /// maximum_lightning_damage_to_return_on_block /// - MaximumLightningDamageToReturnOnBlock = 2024, - + MaximumLightningDamageToReturnOnBlock = 2025, + /// /// leap_slam_spawn_X_zombies_on_impact /// - LeapSlamSpawnXZombiesOnImpact = 2025, - + LeapSlamSpawnXZombiesOnImpact = 2026, + /// /// culling_strike_on_burning_enemies /// - CullingStrikeOnBurningEnemies = 2026, - + CullingStrikeOnBurningEnemies = 2027, + /// /// gain_frenzy_charge_if_attack_ignites /// - GainFrenzyChargeIfAttackIgnites = 2027, - + GainFrenzyChargeIfAttackIgnites = 2028, + /// /// map_monsters_are_immune_to_curses /// - MapMonstersAreImmuneToCurses = 2028, - + MapMonstersAreImmuneToCurses = 2029, + /// /// map_packs_are_animals /// - MapPacksAreAnimals = 2029, - + MapPacksAreAnimals = 2030, + /// /// map_packs_are_demons /// - MapPacksAreDemons = 2030, - + MapPacksAreDemons = 2031, + /// /// map_packs_are_humanoids /// - MapPacksAreHumanoids = 2031, - + MapPacksAreHumanoids = 2032, + /// /// monster_drop_higher_level_gear /// - MonsterDropHigherLevelGear = 2032, - + MonsterDropHigherLevelGear = 2033, + /// /// regenerate_X_life_over_1_second_on_cast /// - RegenerateXLifeOver1SecondOnCast = 2033, - + RegenerateXLifeOver1SecondOnCast = 2034, + /// /// map_monsters_gain_x_power_charges_every_20_seconds /// - MapMonstersGainXPowerChargesEvery20Seconds = 2034, - + MapMonstersGainXPowerChargesEvery20Seconds = 2035, + /// /// map_monsters_gain_x_endurance_charges_every_20_seconds /// - MapMonstersGainXEnduranceChargesEvery20Seconds = 2035, - + MapMonstersGainXEnduranceChargesEvery20Seconds = 2036, + /// /// damage_+%_per_10_levels /// - DamagePctPer10Levels = 2036, - + DamagePctPer10Levels = 2037, + /// /// monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute /// - MonsterCausticCloudOnDeathPctMaxDamageToDealPerMinute = 2037, - + MonsterCausticCloudOnDeathPctMaxDamageToDealPerMinute = 2038, + /// /// monster_caustic_cloud_on_death_base_area_of_effect_radius /// - MonsterCausticCloudOnDeathBaseAreaOfEffectRadius = 2038, - + MonsterCausticCloudOnDeathBaseAreaOfEffectRadius = 2039, + /// /// monster_caustic_cloud_on_death_duration_ms /// - MonsterCausticCloudOnDeathDurationMs = 2039, - + MonsterCausticCloudOnDeathDurationMs = 2040, + /// /// chaos_damage_taken_+ /// - ChaosDamageTaken = 2040, - + ChaosDamageTaken = 2041, + /// /// local_socketed_curse_gem_level_+ /// - LocalSocketedCurseGemLevel = 2041, - + LocalSocketedCurseGemLevel = 2042, + /// /// base_curse_duration_+% /// - BaseCurseDurationPct = 2042, - + BaseCurseDurationPct = 2043, + /// /// curse_duration_+% /// - CurseDurationPct = 2043, - + CurseDurationPct = 2044, + /// /// curse_effect_duration /// - CurseEffectDuration = 2044, - + CurseEffectDuration = 2045, + /// /// self_curse_duration_+% /// - SelfCurseDurationPct = 2045, - + SelfCurseDurationPct = 2046, + /// /// local_display_socketed_gems_get_flee_level /// - LocalDisplaySocketedGemsGetFleeLevel = 2046, - + LocalDisplaySocketedGemsGetFleeLevel = 2047, + /// /// dexterity_+% /// - DexterityPct = 2047, - + DexterityPct = 2048, + /// /// strength_+% /// - StrengthPct = 2048, - + StrengthPct = 2049, + /// /// intelligence_+% /// - IntelligencePct = 2049, - + IntelligencePct = 2050, + /// /// display_map_final_boss_drops_higher_level_gear /// - DisplayMapFinalBossDropsHigherLevelGear = 2050, - + DisplayMapFinalBossDropsHigherLevelGear = 2051, + /// /// chaos_resistance_+_while_using_flask /// - ChaosResistanceWhileUsingFlask = 2051, - + ChaosResistanceWhileUsingFlask = 2052, + /// /// minimum_physical_damage_to_reflect_to_self_on_attack /// - MinimumPhysicalDamageToReflectToSelfOnAttack = 2052, - + MinimumPhysicalDamageToReflectToSelfOnAttack = 2053, + /// /// maximum_physical_damage_to_reflect_to_self_on_attack /// - MaximumPhysicalDamageToReflectToSelfOnAttack = 2053, - + MaximumPhysicalDamageToReflectToSelfOnAttack = 2054, + /// /// is_bleeding /// - IsBleeding = 2054, - + IsBleeding = 2055, + /// /// damage_+%_vs_bleeding_enemies /// - DamagePctVsBleedingEnemies = 2055, - + DamagePctVsBleedingEnemies = 2056, + /// /// unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge /// - UniqueGainOnslaughtWhenHitDurationMsPerEnduranceCharge = 2056, - + UniqueGainOnslaughtWhenHitDurationMsPerEnduranceCharge = 2057, + /// /// fire_damage_taken_+% /// - FireDamageTakenPct = 2057, - + FireDamageTakenPct = 2058, + /// /// crits_have_culling_strike /// - CritsHaveCullingStrike = 2058, - + CritsHaveCullingStrike = 2059, + /// /// support_projectile_attack_physical_damage_+%_final /// - SupportProjectileAttackPhysicalDamagePctFinal = 2059, - + SupportProjectileAttackPhysicalDamagePctFinal = 2060, + /// /// support_projectile_attack_speed_+%_final /// - SupportProjectileAttackSpeedPctFinal = 2060, - + SupportProjectileAttackSpeedPctFinal = 2061, + /// /// supported_active_skill_gem_expereince_gained_+% /// - SupportedActiveSkillGemExpereinceGainedPct = 2061, - + SupportedActiveSkillGemExpereinceGainedPct = 2062, + /// /// flame_whip_damage_+%_final_vs_burning_enemies /// - FlameWhipDamagePctFinalVsBurningEnemies = 2062, - + FlameWhipDamagePctFinalVsBurningEnemies = 2063, + /// /// unique_spread_poison_to_nearby_enemies_on_kill /// - UniqueSpreadPoisonToNearbyEnemiesOnKill = 2063, - + UniqueSpreadPoisonToNearbyEnemiesOnKill = 2064, + /// /// unique_spread_poison_to_nearby_allies_as_regeneration_on_kill /// - UniqueSpreadPoisonToNearbyAlliesAsRegenerationOnKill = 2064, - + UniqueSpreadPoisonToNearbyAlliesAsRegenerationOnKill = 2065, + /// /// uncapped_fire_damage_resistance_% /// - UncappedFireDamageResistancePct = 2065, - + UncappedFireDamageResistancePct = 2066, + /// /// uncapped_cold_damage_resistance_% /// - UncappedColdDamageResistancePct = 2066, - + UncappedColdDamageResistancePct = 2067, + /// /// uncapped_lightning_damage_resistance_% /// - UncappedLightningDamageResistancePct = 2067, - + UncappedLightningDamageResistancePct = 2068, + /// /// uncapped_chaos_damage_resistance_% /// - UncappedChaosDamageResistancePct = 2068, - + UncappedChaosDamageResistancePct = 2069, + /// /// local_ring_duplicate_other_ring /// - LocalRingDuplicateOtherRing = 2069, - + LocalRingDuplicateOtherRing = 2070, + /// /// duplicate_ring_slot_1 /// - DuplicateRingSlot1 = 2070, - + DuplicateRingSlot1 = 2071, + /// /// duplicate_ring_slot_2 /// - DuplicateRingSlot2 = 2071, - + DuplicateRingSlot2 = 2072, + /// /// unique_fire_damage_shocks /// - UniqueFireDamageShocks = 2072, - + UniqueFireDamageShocks = 2073, + /// /// unique_cold_damage_ignites /// - UniqueColdDamageIgnites = 2073, - + UniqueColdDamageIgnites = 2074, + /// /// unique_lightning_damage_freezes /// - UniqueLightningDamageFreezes = 2074, - + UniqueLightningDamageFreezes = 2075, + /// /// fire_damage_can_shock /// - FireDamageCanShock = 2075, - + FireDamageCanShock = 2076, + /// /// cold_damage_can_ignite /// - ColdDamageCanIgnite = 2076, - + ColdDamageCanIgnite = 2077, + /// /// lightning_damage_can_freeze /// - LightningDamageCanFreeze = 2077, - + LightningDamageCanFreeze = 2078, + /// /// fire_damage_cannot_ignite /// - FireDamageCannotIgnite = 2078, - + FireDamageCannotIgnite = 2079, + /// /// cold_damage_cannot_freeze /// - ColdDamageCannotFreeze = 2079, - + ColdDamageCannotFreeze = 2080, + /// /// lightning_damage_cannot_shock /// - LightningDamageCannotShock = 2080, - + LightningDamageCannotShock = 2081, + /// /// can_catch_exotic_fish /// - CanCatchExoticFish = 2081, - + CanCatchExoticFish = 2082, + /// /// transfer_curses_to_X_nearby_enemies_on_kill /// - TransferCursesToXNearbyEnemiesOnKill = 2082, - + TransferCursesToXNearbyEnemiesOnKill = 2083, + /// /// freeze_as_though_dealt_damage_+% /// - FreezeAsThoughDealtDamagePct = 2083, - + FreezeAsThoughDealtDamagePct = 2084, + /// /// chill_prevention_ms_when_chilled /// - ChillPreventionMsWhenChilled = 2084, - + ChillPreventionMsWhenChilled = 2085, + /// /// freeze_prevention_ms_when_frozen /// - FreezePreventionMsWhenFrozen = 2085, - + FreezePreventionMsWhenFrozen = 2086, + /// /// ignite_prevention_ms_when_ignited /// - IgnitePreventionMsWhenIgnited = 2086, - + IgnitePreventionMsWhenIgnited = 2087, + /// /// shock_prevention_ms_when_shocked /// - ShockPreventionMsWhenShocked = 2087, - + ShockPreventionMsWhenShocked = 2088, + /// /// grant_X_frenzy_charges_to_nearby_allies_on_death /// - GrantXFrenzyChargesToNearbyAlliesOnDeath = 2088, - + GrantXFrenzyChargesToNearbyAlliesOnDeath = 2089, + /// /// unique_gain_power_charge_on_non_crit /// - UniqueGainPowerChargeOnNonCrit = 2089, - + UniqueGainPowerChargeOnNonCrit = 2090, + /// /// unique_lose_all_power_charges_on_crit /// - UniqueLoseAllPowerChargesOnCrit = 2090, - + UniqueLoseAllPowerChargesOnCrit = 2091, + /// /// curse_area_of_effect_+% /// - CurseAreaOfEffectPct = 2091, - + CurseAreaOfEffectPct = 2092, + /// /// support_spell_totem_cast_speed_+%_final /// - SupportSpellTotemCastSpeedPctFinal = 2092, - + SupportSpellTotemCastSpeedPctFinal = 2093, + /// /// support_attack_totem_attack_speed_+%_final /// - SupportAttackTotemAttackSpeedPctFinal = 2093, - + SupportAttackTotemAttackSpeedPctFinal = 2094, + /// /// map_non_unique_monsters_spawn_X_monsters_on_death /// - MapNonUniqueMonstersSpawnXMonstersOnDeath = 2094, - + MapNonUniqueMonstersSpawnXMonstersOnDeath = 2095, + /// /// local_unique_attacks_cast_socketed_lightning_spells_% /// - LocalUniqueAttacksCastSocketedLightningSpellsPct = 2095, - + LocalUniqueAttacksCastSocketedLightningSpellsPct = 2096, + /// /// main_hand_local_unique_attacks_cast_socketed_lightning_spells_% /// - MainHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2096, - + MainHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2097, + /// /// off_hand_local_unique_attacks_cast_socketed_lightning_spells_% /// - OffHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2097, - + OffHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2098, + /// /// local_display_aura_curse_effect_on_self_+% /// - LocalDisplayAuraCurseEffectOnSelfPct = 2098, - + LocalDisplayAuraCurseEffectOnSelfPct = 2099, + /// /// flask_minion_heal_% /// - FlaskMinionHealPct = 2099, - + FlaskMinionHealPct = 2100, + /// /// minion_block_% /// - MinionBlockPct = 2100, - + MinionBlockPct = 2101, + /// /// minion_physical_damage_reduction_rating /// - MinionPhysicalDamageReductionRating = 2101, - + MinionPhysicalDamageReductionRating = 2102, + /// /// untargetable_by_monster_ai /// - UntargetableByMonsterAi = 2102, - + UntargetableByMonsterAi = 2103, + /// /// virtual_untargetable_by_monster_ai /// - VirtualUntargetableByMonsterAi = 2103, - + VirtualUntargetableByMonsterAi = 2104, + /// /// untargetable_by_enemy_monster_ai /// - UntargetableByEnemyMonsterAi = 2104, - + UntargetableByEnemyMonsterAi = 2105, + /// /// desecrate_number_of_corpses_to_create /// - DesecrateNumberOfCorpsesToCreate = 2105, - + DesecrateNumberOfCorpsesToCreate = 2106, + /// /// local_display_aura_damage_+%_allies_only /// - LocalDisplayAuraDamagePctAlliesOnly = 2106, - + LocalDisplayAuraDamagePctAlliesOnly = 2107, + /// /// map_invasion_monster_packs /// - MapInvasionMonsterPacks = 2107, - + MapInvasionMonsterPacks = 2108, + /// /// base_spell_block_% /// - BaseSpellBlockPct = 2108, - + BaseSpellBlockPct = 2109, + /// /// minion_attack_speed_+% /// - MinionAttackSpeedPct = 2109, - + MinionAttackSpeedPct = 2110, + /// /// minion_cast_speed_+% /// - MinionCastSpeedPct = 2110, - + MinionCastSpeedPct = 2111, + /// /// old_do_not_use_minion_life_leech_from_any_damage_permyriad /// - OldDoNotUseMinionLifeLeechFromAnyDamagePermyriad = 2111, - + OldDoNotUseMinionLifeLeechFromAnyDamagePermyriad = 2112, + /// /// minion_life_regeneration_rate_per_minute_% /// - MinionLifeRegenerationRatePerMinutePct = 2112, - + MinionLifeRegenerationRatePerMinutePct = 2113, + /// /// minion_elemental_resistance_% /// - MinionElementalResistancePct = 2113, - + MinionElementalResistancePct = 2114, + /// /// minion_chaos_resistance_% /// - MinionChaosResistancePct = 2114, - + MinionChaosResistancePct = 2115, + /// /// skill_show_average_damage_instead_of_dps /// - SkillShowAverageDamageInsteadOfDps = 2115, - + SkillShowAverageDamageInsteadOfDps = 2116, + /// /// offering_skill_effect_duration_per_corpse /// - OfferingSkillEffectDurationPerCorpse = 2116, - + OfferingSkillEffectDurationPerCorpse = 2117, + /// /// unholy_might_on_kill_duration_ms /// - UnholyMightOnKillDurationMs = 2117, - + UnholyMightOnKillDurationMs = 2118, + /// /// minion_unholy_might_on_kill_duration_ms /// - MinionUnholyMightOnKillDurationMs = 2118, - + MinionUnholyMightOnKillDurationMs = 2119, + /// /// chest_delay_drops_until_daemons_finish /// - ChestDelayDropsUntilDaemonsFinish = 2119, - + ChestDelayDropsUntilDaemonsFinish = 2120, + /// /// base_number_of_raging_spirits_allowed /// - BaseNumberOfRagingSpiritsAllowed = 2120, - + BaseNumberOfRagingSpiritsAllowed = 2121, + /// /// number_of_raging_spirits_allowed /// - NumberOfRagingSpiritsAllowed = 2121, - + NumberOfRagingSpiritsAllowed = 2122, + /// /// chest_play_warning_sound /// - ChestPlayWarningSound = 2122, - + ChestPlayWarningSound = 2123, + /// /// chest_drop_additional_unqiue_items /// - ChestDropAdditionalUnqiueItems = 2123, - + ChestDropAdditionalUnqiueItems = 2124, + /// /// upheaval_number_of_spikes /// - UpheavalNumberOfSpikes = 2124, - + UpheavalNumberOfSpikes = 2125, + /// /// chest_display_summons_skeletons /// - ChestDisplaySummonsSkeletons = 2125, - + ChestDisplaySummonsSkeletons = 2126, + /// /// chest_display_ice_nova /// - ChestDisplayIceNova = 2126, - + ChestDisplayIceNova = 2127, + /// /// chest_display_freeze /// - ChestDisplayFreeze = 2127, - + ChestDisplayFreeze = 2128, + /// /// cyclone_places_ground_desecration_chaos_damage_per_minute /// - CyclonePlacesGroundDesecrationChaosDamagePerMinute = 2128, - + CyclonePlacesGroundDesecrationChaosDamagePerMinute = 2129, + /// /// firestorm_drop_ground_ice_duration_ms /// - FirestormDropGroundIceDurationMs = 2129, - + FirestormDropGroundIceDurationMs = 2130, + /// /// vaal_burning_arrow_explode_on_hit /// - VaalBurningArrowExplodeOnHit = 2130, - + VaalBurningArrowExplodeOnHit = 2131, + /// /// molten_shell_explode_each_hit /// - MoltenShellExplodeEachHit = 2131, - + MoltenShellExplodeEachHit = 2132, + /// /// desecrate_corpse_level /// - DesecrateCorpseLevel = 2132, - + DesecrateCorpseLevel = 2133, + /// /// lightning_warp_remove_delay /// - LightningWarpRemoveDelay = 2133, - + LightningWarpRemoveDelay = 2134, + /// /// immortal_call_prevent_all_damage /// - ImmortalCallPreventAllDamage = 2134, - + ImmortalCallPreventAllDamage = 2135, + /// /// power_siphon_fire_at_all_targets /// - PowerSiphonFireAtAllTargets = 2135, - + PowerSiphonFireAtAllTargets = 2136, + /// /// rain_of_arrows_place_shocking_ground_duration_ms /// - RainOfArrowsPlaceShockingGroundDurationMs = 2136, - + RainOfArrowsPlaceShockingGroundDurationMs = 2137, + /// /// leap_slam_base_caustic_cloud_damage_to_deal_per_minute /// - LeapSlamBaseCausticCloudDamageToDealPerMinute = 2137, - + LeapSlamBaseCausticCloudDamageToDealPerMinute = 2138, + /// /// base_number_of_projectiles_in_spiral_nova /// - BaseNumberOfProjectilesInSpiralNova = 2138, - + BaseNumberOfProjectilesInSpiralNova = 2139, + /// /// projectile_spiral_nova_time_ms /// - ProjectileSpiralNovaTimeMs = 2139, - + ProjectileSpiralNovaTimeMs = 2140, + /// /// projectile_spiral_nova_angle /// - ProjectileSpiralNovaAngle = 2140, - + ProjectileSpiralNovaAngle = 2141, + /// /// kiweth_consume_leech_%_max_life /// - KiwethConsumeLeechPctMaxLife = 2141, - + KiwethConsumeLeechPctMaxLife = 2142, + /// /// ice_nova_number_of_repeats /// - IceNovaNumberOfRepeats = 2142, - + IceNovaNumberOfRepeats = 2143, + /// /// ice_nova_radius_+%_per_repeat /// - IceNovaRadiusPctPerRepeat = 2143, - + IceNovaRadiusPctPerRepeat = 2144, + /// /// local_display_socketed_gems_have_iron_will /// - LocalDisplaySocketedGemsHaveIronWill = 2144, - + LocalDisplaySocketedGemsHaveIronWill = 2145, + /// /// local_display_socketed_gems_chain_X_additional_times /// - LocalDisplaySocketedGemsChainXAdditionalTimes = 2145, - + LocalDisplaySocketedGemsChainXAdditionalTimes = 2146, + /// /// old_do_not_use_base_life_leech_from_physical_damage_permyriad /// - OldDoNotUseBaseLifeLeechFromPhysicalDamagePermyriad = 2146, - + OldDoNotUseBaseLifeLeechFromPhysicalDamagePermyriad = 2147, + /// /// old_do_not_use_base_life_leech_from_fire_damage_permyriad /// - OldDoNotUseBaseLifeLeechFromFireDamagePermyriad = 2147, - + OldDoNotUseBaseLifeLeechFromFireDamagePermyriad = 2148, + /// /// old_do_not_use_base_life_leech_from_cold_damage_permyriad /// - OldDoNotUseBaseLifeLeechFromColdDamagePermyriad = 2148, - + OldDoNotUseBaseLifeLeechFromColdDamagePermyriad = 2149, + /// /// old_do_not_use_base_life_leech_from_lightning_damage_permyriad /// - OldDoNotUseBaseLifeLeechFromLightningDamagePermyriad = 2149, - + OldDoNotUseBaseLifeLeechFromLightningDamagePermyriad = 2150, + /// /// base_life_leech_from_chaos_damage_permyriad /// - BaseLifeLeechFromChaosDamagePermyriad = 2150, - + BaseLifeLeechFromChaosDamagePermyriad = 2151, + /// /// base_mana_leech_from_physical_damage_permyriad /// - BaseManaLeechFromPhysicalDamagePermyriad = 2151, - + BaseManaLeechFromPhysicalDamagePermyriad = 2152, + /// /// base_mana_leech_from_fire_damage_permyriad /// - BaseManaLeechFromFireDamagePermyriad = 2152, - + BaseManaLeechFromFireDamagePermyriad = 2153, + /// /// base_mana_leech_from_cold_damage_permyriad /// - BaseManaLeechFromColdDamagePermyriad = 2153, - + BaseManaLeechFromColdDamagePermyriad = 2154, + /// /// old_do_not_use_base_mana_leech_from_lightning_damage_permyriad /// - OldDoNotUseBaseManaLeechFromLightningDamagePermyriad = 2154, - + OldDoNotUseBaseManaLeechFromLightningDamagePermyriad = 2155, + /// /// base_mana_leech_from_chaos_damage_permyriad /// - BaseManaLeechFromChaosDamagePermyriad = 2155, - + BaseManaLeechFromChaosDamagePermyriad = 2156, + /// /// base_leech_is_instant_on_critical /// - BaseLeechIsInstantOnCritical = 2156, - + BaseLeechIsInstantOnCritical = 2157, + /// /// local_socketed_vaal_gem_level_+ /// - LocalSocketedVaalGemLevel = 2157, - + LocalSocketedVaalGemLevel = 2158, + /// /// elemental_damage_%_to_add_as_chaos /// - ElementalDamagePctToAddAsChaos = 2158, - + ElementalDamagePctToAddAsChaos = 2159, + /// /// chance_to_ignite_%_while_using_flask /// - ChanceToIgnitePctWhileUsingFlask = 2159, - + ChanceToIgnitePctWhileUsingFlask = 2160, + /// /// chance_to_freeze_%_while_using_flask /// - ChanceToFreezePctWhileUsingFlask = 2160, - + ChanceToFreezePctWhileUsingFlask = 2161, + /// /// chance_to_shock_%_while_using_flask /// - ChanceToShockPctWhileUsingFlask = 2161, - + ChanceToShockPctWhileUsingFlask = 2162, + /// /// stun_threshold_reduction_+%_while_using_flask /// - StunThresholdReductionPctWhileUsingFlask = 2162, - + StunThresholdReductionPctWhileUsingFlask = 2163, + /// /// local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing /// - LocalUniqueFlaskPhysicalDamagePctToAddAsChaosWhileHealing = 2163, - + LocalUniqueFlaskPhysicalDamagePctToAddAsChaosWhileHealing = 2164, + /// /// local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing /// - LocalUniqueFlaskElementalDamagePctToAddAsChaosWhileHealing = 2164, - + LocalUniqueFlaskElementalDamagePctToAddAsChaosWhileHealing = 2165, + /// /// old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing /// - OldDoNotUseLocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 2165, - + OldDoNotUseLocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 2166, + /// /// local_display_socketed_spells_repeat_count /// - LocalDisplaySocketedSpellsRepeatCount = 2166, - + LocalDisplaySocketedSpellsRepeatCount = 2167, + /// /// map_ambush_chests /// - MapAmbushChests = 2167, - + MapAmbushChests = 2168, + /// /// atziri_do_not_gain_skill_charges /// - AtziriDoNotGainSkillCharges = 2168, - + AtziriDoNotGainSkillCharges = 2169, + /// /// chest_hidden_item_quantity_+% /// - ChestHiddenItemQuantityPct = 2169, - + ChestHiddenItemQuantityPct = 2170, + /// /// chest_hidden_item_rarity_+% /// - ChestHiddenItemRarityPct = 2170, - + ChestHiddenItemRarityPct = 2171, + /// /// monster_drop_vaal_fragment_chance /// - MonsterDropVaalFragmentChance = 2171, - + MonsterDropVaalFragmentChance = 2172, + /// /// summoned_monster_rarity /// - SummonedMonsterRarity = 2172, - + SummonedMonsterRarity = 2173, + /// /// number_of_monsters_to_summon /// - NumberOfMonstersToSummon = 2173, - + NumberOfMonstersToSummon = 2174, + /// /// chest_gems_drop_with_experience /// - ChestGemsDropWithExperience = 2174, - + ChestGemsDropWithExperience = 2175, + /// /// chest_drops_additional_utility_flasks /// - ChestDropsAdditionalUtilityFlasks = 2175, - + ChestDropsAdditionalUtilityFlasks = 2176, + /// /// chest_items_drop_identified /// - ChestItemsDropIdentified = 2176, - + ChestItemsDropIdentified = 2177, + /// /// chest_drop_additional_normal_items_up_to /// - ChestDropAdditionalNormalItemsUpTo = 2177, - + ChestDropAdditionalNormalItemsUpTo = 2178, + /// /// chest_drop_additional_magic_items_up_to /// - ChestDropAdditionalMagicItemsUpTo = 2178, - + ChestDropAdditionalMagicItemsUpTo = 2179, + /// /// chest_drop_additional_rare_items_up_to /// - ChestDropAdditionalRareItemsUpTo = 2179, - + ChestDropAdditionalRareItemsUpTo = 2180, + /// /// chest_dropped_items_have_quality_% /// - ChestDroppedItemsHaveQualityPct = 2180, - + ChestDroppedItemsHaveQualityPct = 2181, + /// /// dropped_items_have_additional_sockets /// - DroppedItemsHaveAdditionalSockets = 2181, - + DroppedItemsHaveAdditionalSockets = 2182, + /// /// dropped_items_are_fully_linked /// - DroppedItemsAreFullyLinked = 2182, - + DroppedItemsAreFullyLinked = 2183, + /// /// chest_dropped_item_level_+ /// - ChestDroppedItemLevel = 2183, - + ChestDroppedItemLevel = 2184, + /// /// dropped_items_are_duplicated /// - DroppedItemsAreDuplicated = 2184, - + DroppedItemsAreDuplicated = 2185, + /// /// monster_unlock_chests_on_death /// - MonsterUnlockChestsOnDeath = 2185, - + MonsterUnlockChestsOnDeath = 2186, + /// /// local_display_socketed_gems_mana_cost_-% /// - LocalDisplaySocketedGemsManaCostPct = 2186, - + LocalDisplaySocketedGemsManaCostPct = 2187, + /// /// chest_spawn_rogue_exiles /// - ChestSpawnRogueExiles = 2187, - + ChestSpawnRogueExiles = 2188, + /// /// chest_display_revive_nearby_monsters /// - ChestDisplayReviveNearbyMonsters = 2188, - + ChestDisplayReviveNearbyMonsters = 2189, + /// /// chest_display_spawns_monsters_continuously /// - ChestDisplaySpawnsMonstersContinuously = 2189, - + ChestDisplaySpawnsMonstersContinuously = 2190, + /// /// chest_display_explodes_corpses /// - ChestDisplayExplodesCorpses = 2190, - + ChestDisplayExplodesCorpses = 2191, + /// /// chest_camoflaged /// - ChestCamoflaged = 2191, - + ChestCamoflaged = 2192, + /// /// chest_display_cast_random_curse /// - ChestDisplayCastRandomCurse = 2192, - + ChestDisplayCastRandomCurse = 2193, + /// /// chest_display_ignite /// - ChestDisplayIgnite = 2193, - + ChestDisplayIgnite = 2194, + /// /// chest_display_fire_storm /// - ChestDisplayFireStorm = 2194, - + ChestDisplayFireStorm = 2195, + /// /// chest_display_caustic_clouds /// - ChestDisplayCausticClouds = 2195, - + ChestDisplayCausticClouds = 2196, + /// /// chest_display_explosion /// - ChestDisplayExplosion = 2196, - + ChestDisplayExplosion = 2197, + /// /// chest_drops_only_hybrid_flasks /// - ChestDropsOnlyHybridFlasks = 2197, - + ChestDropsOnlyHybridFlasks = 2198, + /// /// chest_drops_only_support_gems /// - ChestDropsOnlySupportGems = 2198, - + ChestDropsOnlySupportGems = 2199, + /// /// chest_drops_extra_vaal_gems /// - ChestDropsExtraVaalGems = 2199, - + ChestDropsExtraVaalGems = 2200, + /// /// firestorm_drop_ground_shock_duration_ms /// - FirestormDropGroundShockDurationMs = 2200, - + FirestormDropGroundShockDurationMs = 2201, + /// /// detonate_dead_chain_explode /// - DetonateDeadChainExplode = 2201, - + DetonateDeadChainExplode = 2202, + /// /// corrupted_blood_cleave_stacks_to_add /// - CorruptedBloodCleaveStacksToAdd = 2202, - + CorruptedBloodCleaveStacksToAdd = 2203, + /// /// desecrated_ground_art_variation /// - DesecratedGroundArtVariation = 2203, - + DesecratedGroundArtVariation = 2204, + /// /// kiweth_projectile_spawn_kiweth /// - KiwethProjectileSpawnKiweth = 2204, - + KiwethProjectileSpawnKiweth = 2205, + /// /// rain_of_arrows_pin /// - RainOfArrowsPin = 2205, - + RainOfArrowsPin = 2206, + /// /// onslaught_on_vaal_skill_use_duration_ms /// - OnslaughtOnVaalSkillUseDurationMs = 2206, - + OnslaughtOnVaalSkillUseDurationMs = 2207, + /// /// cold_snap_ground_ice /// - ColdSnapGroundIce = 2207, - + ColdSnapGroundIce = 2208, + /// /// num_ghost_monkeys_to_summon /// - NumGhostMonkeysToSummon = 2208, - + NumGhostMonkeysToSummon = 2209, + /// /// smoke_mine_spawn_X_snakes_on_teleport /// - SmokeMineSpawnXSnakesOnTeleport = 2209, - + SmokeMineSpawnXSnakesOnTeleport = 2210, + /// /// num_sandspitters_to_summon /// - NumSandspittersToSummon = 2210, - + NumSandspittersToSummon = 2211, + /// /// vaal_lightning_strike_beam_damage_+%_final /// - VaalLightningStrikeBeamDamagePctFinal = 2211, - + VaalLightningStrikeBeamDamagePctFinal = 2212, + /// /// atziri_lightning_charge_requirement_- /// - AtziriLightningChargeRequirement = 2212, - + AtziriLightningChargeRequirement = 2213, + /// /// atziri_fire_charge_requirement_- /// - AtziriFireChargeRequirement = 2213, - + AtziriFireChargeRequirement = 2214, + /// /// atziri_physical_charge_requirement_- /// - AtziriPhysicalChargeRequirement = 2214, - + AtziriPhysicalChargeRequirement = 2215, + /// /// life_leech_from_physical_damage_permyriad /// - LifeLeechFromPhysicalDamagePermyriad = 2215, - + LifeLeechFromPhysicalDamagePermyriad = 2216, + /// /// life_leech_from_fire_damage_permyriad /// - LifeLeechFromFireDamagePermyriad = 2216, - + LifeLeechFromFireDamagePermyriad = 2217, + /// /// life_leech_from_cold_damage_permyriad /// - LifeLeechFromColdDamagePermyriad = 2217, - + LifeLeechFromColdDamagePermyriad = 2218, + /// /// life_leech_from_lightning_damage_permyriad /// - LifeLeechFromLightningDamagePermyriad = 2218, - + LifeLeechFromLightningDamagePermyriad = 2219, + /// /// life_leech_from_chaos_damage_permyriad /// - LifeLeechFromChaosDamagePermyriad = 2219, - + LifeLeechFromChaosDamagePermyriad = 2220, + /// /// mana_leech_from_physical_damage_permyriad /// - ManaLeechFromPhysicalDamagePermyriad = 2220, - + ManaLeechFromPhysicalDamagePermyriad = 2221, + /// /// mana_leech_from_fire_damage_permyriad /// - ManaLeechFromFireDamagePermyriad = 2221, - + ManaLeechFromFireDamagePermyriad = 2222, + /// /// mana_leech_from_cold_damage_permyriad /// - ManaLeechFromColdDamagePermyriad = 2222, - + ManaLeechFromColdDamagePermyriad = 2223, + /// /// mana_leech_from_lightning_damage_permyriad /// - ManaLeechFromLightningDamagePermyriad = 2223, - + ManaLeechFromLightningDamagePermyriad = 2224, + /// /// mana_leech_from_chaos_damage_permyriad /// - ManaLeechFromChaosDamagePermyriad = 2224, - + ManaLeechFromChaosDamagePermyriad = 2225, + /// /// old_do_not_use_base_life_leech_from_elemental_damage_permyriad /// - OldDoNotUseBaseLifeLeechFromElementalDamagePermyriad = 2225, - + OldDoNotUseBaseLifeLeechFromElementalDamagePermyriad = 2226, + /// /// base_mana_leech_from_elemental_damage_permyriad /// - BaseManaLeechFromElementalDamagePermyriad = 2226, - + BaseManaLeechFromElementalDamagePermyriad = 2227, + /// /// attack_minimum_added_physical_damage_with_bow /// - AttackMinimumAddedPhysicalDamageWithBow = 2227, - + AttackMinimumAddedPhysicalDamageWithBow = 2228, + /// /// attack_maximum_added_physical_damage_with_bow /// - AttackMaximumAddedPhysicalDamageWithBow = 2228, - + AttackMaximumAddedPhysicalDamageWithBow = 2229, + /// /// attack_minimum_added_fire_damage_with_bow /// - AttackMinimumAddedFireDamageWithBow = 2229, - + AttackMinimumAddedFireDamageWithBow = 2230, + /// /// attack_maximum_added_fire_damage_with_bow /// - AttackMaximumAddedFireDamageWithBow = 2230, - + AttackMaximumAddedFireDamageWithBow = 2231, + /// /// number_of_packs_to_summon /// - NumberOfPacksToSummon = 2231, - + NumberOfPacksToSummon = 2232, + /// /// summon_monster_radius /// - SummonMonsterRadius = 2232, - + SummonMonsterRadius = 2233, + /// /// resist_life_leech_% /// - ResistLifeLeechPct = 2233, - + ResistLifeLeechPct = 2234, + /// /// resist_mana_leech_% /// - ResistManaLeechPct = 2234, - + ResistManaLeechPct = 2235, + /// /// level_11_or_lower_life_+%_final /// - Level11OrLowerLifePctFinal = 2235, - + Level11OrLowerLifePctFinal = 2236, + /// /// local_socketed_support_gem_level_+ /// - LocalSocketedSupportGemLevel = 2236, - + LocalSocketedSupportGemLevel = 2237, + /// /// level_33_or_lower_life_+%_final /// - Level33OrLowerLifePctFinal = 2237, - + Level33OrLowerLifePctFinal = 2238, + /// /// level_33_or_lower_damage_+%_final /// - Level33OrLowerDamagePctFinal = 2238, - + Level33OrLowerDamagePctFinal = 2239, + /// /// display_monster_casts_vaal_detonate_dead_text /// - DisplayMonsterCastsVaalDetonateDeadText = 2239, - + DisplayMonsterCastsVaalDetonateDeadText = 2240, + /// /// minions_have_chest_summon_indicator /// - MinionsHaveChestSummonIndicator = 2240, - + MinionsHaveChestSummonIndicator = 2241, + /// /// curse_on_hit_level_temporal_chains /// - CurseOnHitLevelTemporalChains = 2241, - + CurseOnHitLevelTemporalChains = 2242, + /// /// curse_on_hit_level_vulnerability /// - CurseOnHitLevelVulnerability = 2242, - + CurseOnHitLevelVulnerability = 2243, + /// /// curse_on_hit_level_elemental_weakness /// - CurseOnHitLevelElementalWeakness = 2243, - + CurseOnHitLevelElementalWeakness = 2244, + /// /// local_display_socketed_gems_get_melee_splash_level /// - LocalDisplaySocketedGemsGetMeleeSplashLevel = 2244, - + LocalDisplaySocketedGemsGetMeleeSplashLevel = 2245, + /// /// local_display_socketed_gems_get_cast_on_crit_level /// - LocalDisplaySocketedGemsGetCastOnCritLevel = 2245, - + LocalDisplaySocketedGemsGetCastOnCritLevel = 2246, + /// /// local_display_socketed_gems_get_cast_when_stunned_level /// - LocalDisplaySocketedGemsGetCastWhenStunnedLevel = 2246, - + LocalDisplaySocketedGemsGetCastWhenStunnedLevel = 2247, + /// /// is_double /// - IsDouble = 2247, - + IsDouble = 2248, + /// /// can_catch_corrupted_fish /// - CanCatchCorruptedFish = 2248, - + CanCatchCorruptedFish = 2249, + /// /// disable_animated_armour /// - DisableAnimatedArmour = 2249, - + DisableAnimatedArmour = 2250, + /// /// number_of_archer_skeletons_to_summon /// - NumberOfArcherSkeletonsToSummon = 2250, - + NumberOfArcherSkeletonsToSummon = 2251, + /// /// number_of_mage_skeletons_to_summon /// - NumberOfMageSkeletonsToSummon = 2251, - + NumberOfMageSkeletonsToSummon = 2252, + /// /// number_of_leader_skeletons_to_summon /// - NumberOfLeaderSkeletonsToSummon = 2252, - + NumberOfLeaderSkeletonsToSummon = 2253, + /// /// map_spawn_extra_exiles /// - MapSpawnExtraExiles = 2253, - + MapSpawnExtraExiles = 2254, + /// /// map_disable_new_instance_management /// - MapDisableNewInstanceManagement = 2254, - + MapDisableNewInstanceManagement = 2255, + /// /// local_display_socketed_gems_get_mana_multplier_% /// - LocalDisplaySocketedGemsGetManaMultplierPct = 2255, - + LocalDisplaySocketedGemsGetManaMultplierPct = 2256, + /// /// local_display_socketed_gems_get_stun_level /// - LocalDisplaySocketedGemsGetStunLevel = 2256, - + LocalDisplaySocketedGemsGetStunLevel = 2257, + /// /// local_display_socketed_gems_get_additional_accuracy_level /// - LocalDisplaySocketedGemsGetAdditionalAccuracyLevel = 2257, - + LocalDisplaySocketedGemsGetAdditionalAccuracyLevel = 2258, + /// /// local_display_socketed_gems_get_multistrike_level /// - LocalDisplaySocketedGemsGetMultistrikeLevel = 2258, - + LocalDisplaySocketedGemsGetMultistrikeLevel = 2259, + /// /// local_display_socketed_gems_get_faster_projectiles_level /// - LocalDisplaySocketedGemsGetFasterProjectilesLevel = 2259, - + LocalDisplaySocketedGemsGetFasterProjectilesLevel = 2260, + /// /// local_display_socketed_gems_get_life_leech_level /// - LocalDisplaySocketedGemsGetLifeLeechLevel = 2260, - + LocalDisplaySocketedGemsGetLifeLeechLevel = 2261, + /// /// local_display_socketed_gems_get_increased_critical_damage_level /// - LocalDisplaySocketedGemsGetIncreasedCriticalDamageLevel = 2261, - + LocalDisplaySocketedGemsGetIncreasedCriticalDamageLevel = 2262, + /// /// local_display_socketed_gems_get_fork_level /// - LocalDisplaySocketedGemsGetForkLevel = 2262, - + LocalDisplaySocketedGemsGetForkLevel = 2263, + /// /// local_display_socketed_gems_get_weapon_elemental_damage_level /// - LocalDisplaySocketedGemsGetWeaponElementalDamageLevel = 2263, - + LocalDisplaySocketedGemsGetWeaponElementalDamageLevel = 2264, + /// /// local_display_grants_skill_purity_of_fire_level /// - LocalDisplayGrantsSkillPurityOfFireLevel = 2264, - + LocalDisplayGrantsSkillPurityOfFireLevel = 2265, + /// /// local_display_grants_skill_purity_of_cold_level /// - LocalDisplayGrantsSkillPurityOfColdLevel = 2265, - + LocalDisplayGrantsSkillPurityOfColdLevel = 2266, + /// /// local_display_grants_skill_purity_of_lightning_level /// - LocalDisplayGrantsSkillPurityOfLightningLevel = 2266, - + LocalDisplayGrantsSkillPurityOfLightningLevel = 2267, + /// /// local_display_grants_skill_flammability_level /// - LocalDisplayGrantsSkillFlammabilityLevel = 2267, - + LocalDisplayGrantsSkillFlammabilityLevel = 2268, + /// /// local_display_grants_skill_conductivity_level /// - LocalDisplayGrantsSkillConductivityLevel = 2268, - + LocalDisplayGrantsSkillConductivityLevel = 2269, + /// /// local_display_grants_skill_frostbite_level /// - LocalDisplayGrantsSkillFrostbiteLevel = 2269, - + LocalDisplayGrantsSkillFrostbiteLevel = 2270, + /// /// local_display_grants_skill_temporal_chains_level /// - LocalDisplayGrantsSkillTemporalChainsLevel = 2270, - + LocalDisplayGrantsSkillTemporalChainsLevel = 2271, + /// /// local_display_grants_skill_haste_level /// - LocalDisplayGrantsSkillHasteLevel = 2271, - + LocalDisplayGrantsSkillHasteLevel = 2272, + /// /// local_display_grants_skill_clarity_level /// - LocalDisplayGrantsSkillClarityLevel = 2272, - + LocalDisplayGrantsSkillClarityLevel = 2273, + /// /// local_display_grants_skill_vitality_level /// - LocalDisplayGrantsSkillVitalityLevel = 2273, - + LocalDisplayGrantsSkillVitalityLevel = 2274, + /// /// local_display_grants_skill_purity_level /// - LocalDisplayGrantsSkillPurityLevel = 2274, - + LocalDisplayGrantsSkillPurityLevel = 2275, + /// /// local_display_grants_skill_critical_weakness_level /// - LocalDisplayGrantsSkillCriticalWeaknessLevel = 2275, - + LocalDisplayGrantsSkillCriticalWeaknessLevel = 2276, + /// /// local_display_grants_skill_wrath_level /// - LocalDisplayGrantsSkillWrathLevel = 2276, - + LocalDisplayGrantsSkillWrathLevel = 2277, + /// /// local_display_grants_skill_hatred_level /// - LocalDisplayGrantsSkillHatredLevel = 2277, - + LocalDisplayGrantsSkillHatredLevel = 2278, + /// /// local_display_grants_skill_anger_level /// - LocalDisplayGrantsSkillAngerLevel = 2278, - + LocalDisplayGrantsSkillAngerLevel = 2279, + /// /// local_display_grants_skill_determination_level /// - LocalDisplayGrantsSkillDeterminationLevel = 2279, - + LocalDisplayGrantsSkillDeterminationLevel = 2280, + /// /// local_display_grants_skill_grace_level /// - LocalDisplayGrantsSkillGraceLevel = 2280, - + LocalDisplayGrantsSkillGraceLevel = 2281, + /// /// local_display_grants_skill_discipline_level /// - LocalDisplayGrantsSkillDisciplineLevel = 2281, - + LocalDisplayGrantsSkillDisciplineLevel = 2282, + /// /// local_display_grants_skill_projectile_weakness_level /// - LocalDisplayGrantsSkillProjectileWeaknessLevel = 2282, - + LocalDisplayGrantsSkillProjectileWeaknessLevel = 2283, + /// /// local_display_grants_skill_elemental_weakness_level /// - LocalDisplayGrantsSkillElementalWeaknessLevel = 2283, - + LocalDisplayGrantsSkillElementalWeaknessLevel = 2284, + /// /// local_display_grants_skill_vulnerability_level /// - LocalDisplayGrantsSkillVulnerabilityLevel = 2284, - + LocalDisplayGrantsSkillVulnerabilityLevel = 2285, + /// /// cold_damage_cannot_chill /// - ColdDamageCannotChill = 2285, - + ColdDamageCannotChill = 2286, + /// /// elemental_damage_taken_%_as_chaos /// - ElementalDamageTakenPctAsChaos = 2286, - + ElementalDamageTakenPctAsChaos = 2287, + /// /// fire_damage_taken_%_as_chaos /// - FireDamageTakenPctAsChaos = 2287, - + FireDamageTakenPctAsChaos = 2288, + /// /// cold_damage_taken_%_as_chaos /// - ColdDamageTakenPctAsChaos = 2288, - + ColdDamageTakenPctAsChaos = 2289, + /// /// lightning_damage_taken_%_as_chaos /// - LightningDamageTakenPctAsChaos = 2289, - + LightningDamageTakenPctAsChaos = 2290, + /// /// global_reduce_enemy_block_% /// - GlobalReduceEnemyBlockPct = 2290, - + GlobalReduceEnemyBlockPct = 2291, + /// /// base_spell_repeat_count /// - BaseSpellRepeatCount = 2291, - + BaseSpellRepeatCount = 2292, + /// /// spell_repeat_count /// - SpellRepeatCount = 2292, - + SpellRepeatCount = 2293, + /// /// pvp_damage_+%_final_scale /// - PvpDamagePctFinalScale = 2293, - + PvpDamagePctFinalScale = 2294, + /// /// physical_damage_taken_+_vs_beasts /// - PhysicalDamageTakenVsBeasts = 2294, - + PhysicalDamageTakenVsBeasts = 2295, + /// /// local_strength_requirement_+ /// - LocalStrengthRequirement = 2295, - + LocalStrengthRequirement = 2296, + /// /// local_dexterity_requirement_+ /// - LocalDexterityRequirement = 2296, - + LocalDexterityRequirement = 2297, + /// /// local_intelligence_requirement_+ /// - LocalIntelligenceRequirement = 2297, - + LocalIntelligenceRequirement = 2298, + /// /// display_monster_vaal_storm_call /// - DisplayMonsterVaalStormCall = 2298, - + DisplayMonsterVaalStormCall = 2299, + /// /// reave_rotation_on_repeat /// - ReaveRotationOnRepeat = 2299, - + ReaveRotationOnRepeat = 2300, + /// /// reave_additional_max_stacks /// - ReaveAdditionalMaxStacks = 2300, - + ReaveAdditionalMaxStacks = 2301, + /// /// reave_additional_starting_stacks /// - ReaveAdditionalStartingStacks = 2301, - + ReaveAdditionalStartingStacks = 2302, + /// /// bleed_on_melee_crit_chance_% /// - BleedOnMeleeCritChancePct = 2302, - + BleedOnMeleeCritChancePct = 2303, + /// /// bleed_on_melee_crit_chance_duration_ms /// - BleedOnMeleeCritChanceDurationMs = 2303, - + BleedOnMeleeCritChanceDurationMs = 2304, + /// /// energy_shield_recharge_not_delayed_by_damage /// - EnergyShieldRechargeNotDelayedByDamage = 2304, - + EnergyShieldRechargeNotDelayedByDamage = 2305, + /// /// maximum_dodge_chance_% /// - MaximumDodgeChancePct = 2305, - + MaximumDodgeChancePct = 2306, + /// /// maximum_spell_dodge_chance_% /// - MaximumSpellDodgeChancePct = 2306, - + MaximumSpellDodgeChancePct = 2307, + /// /// weapon_physical_damage_%_to_add_as_random_element /// - WeaponPhysicalDamagePctToAddAsRandomElement = 2307, - + WeaponPhysicalDamagePctToAddAsRandomElement = 2308, + /// /// throw_traps_in_circle_radius /// - ThrowTrapsInCircleRadius = 2308, - + ThrowTrapsInCircleRadius = 2309, + /// /// damage_taken_+% /// - DamageTakenPct = 2309, - + DamageTakenPct = 2310, + /// /// Damage Taken +% increase per Frenzy Charge /// - DamageTakenPctPerFrenzyCharge = 2310, - + DamageTakenPctPerFrenzyCharge = 2311, + /// /// Lightning Damage +% increase per Frenzy Charge /// - LightningDamagePctPerFrenzyCharge = 2311, - + LightningDamagePctPerFrenzyCharge = 2312, + /// /// Life Gained on Kill /// - LifeGainedOnEnemyDeath = 2312, - + LifeGainedOnEnemyDeath = 2313, + /// /// Life Gained on Kill per Frenzy Charge /// - LifeGainedOnEnemyDeathPerFrenzyCharge = 2313, - + LifeGainedOnEnemyDeathPerFrenzyCharge = 2314, + /// /// vaal_sweep_additional_base_radius_for_push /// - VaalSweepAdditionalBaseRadiusForPush = 2314, - + VaalSweepAdditionalBaseRadiusForPush = 2315, + /// /// main_hand_weapon_elemental_damage_+% /// - MainHandWeaponElementalDamagePct = 2315, - + MainHandWeaponElementalDamagePct = 2316, + /// /// off_hand_weapon_elemental_damage_+% /// - OffHandWeaponElementalDamagePct = 2316, - + OffHandWeaponElementalDamagePct = 2317, + /// /// local_attacks_with_this_weapon_elemental_damage_+% /// - LocalAttacksWithThisWeaponElementalDamagePct = 2317, - + LocalAttacksWithThisWeaponElementalDamagePct = 2318, + /// /// monster_casts_glacial_cascade_text /// - MonsterCastsGlacialCascadeText = 2318, - + MonsterCastsGlacialCascadeText = 2319, + /// /// dual_wield_inherent_physical_attack_damage_+%_final /// - DualWieldInherentPhysicalAttackDamagePctFinal = 2319, - + DualWieldInherentPhysicalAttackDamagePctFinal = 2320, + /// /// damage_cannot_be_reflected /// - DamageCannotBeReflected = 2320, - + DamageCannotBeReflected = 2321, + /// /// map_base_ground_desecration_damage_to_deal_per_minute /// - MapBaseGroundDesecrationDamageToDealPerMinute = 2321, - + MapBaseGroundDesecrationDamageToDealPerMinute = 2322, + /// /// global_poison_on_hit /// - GlobalPoisonOnHit = 2322, - + GlobalPoisonOnHit = 2323, + /// /// map_monsters_poison_on_hit /// - MapMonstersPoisonOnHit = 2323, - + MapMonstersPoisonOnHit = 2324, + /// /// play_jack_the_axe_sounds /// - PlayJackTheAxeSounds = 2324, - + PlayJackTheAxeSounds = 2325, + /// /// sound_on_kill_wolf_call /// - SoundOnKillWolfCall = 2325, - + SoundOnKillWolfCall = 2326, + /// /// oba_decapitated /// - ObaDecapitated = 2326, - + ObaDecapitated = 2327, + /// /// chest_number_of_additional_kaom_uniques_to_drop /// - ChestNumberOfAdditionalKaomUniquesToDrop = 2327, - + ChestNumberOfAdditionalKaomUniquesToDrop = 2328, + /// /// chest_drop_additional_number_of_uniques_of_drop_pool_types /// - ChestDropAdditionalNumberOfUniquesOfDropPoolTypes = 2328, - + ChestDropAdditionalNumberOfUniquesOfDropPoolTypes = 2329, + /// /// chest_display_kaom_totems /// - ChestDisplayKaomTotems = 2329, - + ChestDisplayKaomTotems = 2330, + /// /// map_mission_id /// - MapMissionId = 2330, - + MapMissionId = 2331, + /// /// chest_no_regular_drops /// - ChestNoRegularDrops = 2331, - + ChestNoRegularDrops = 2332, + /// /// map_side_area_chance_+% /// - MapSideAreaChancePct = 2332, - + MapSideAreaChancePct = 2333, + /// /// chest_drop_additional_unique_maps /// - ChestDropAdditionalUniqueMaps = 2333, - + ChestDropAdditionalUniqueMaps = 2334, + /// /// map_display_garena_drop_buff /// - MapDisplayGarenaDropBuff = 2334, - + MapDisplayGarenaDropBuff = 2335, + /// /// keystone_unwavering_stance /// - KeystoneUnwaveringStance = 2335, - + KeystoneUnwaveringStance = 2336, + /// /// cannot_evade /// - CannotEvade = 2336, - + CannotEvade = 2337, + /// /// never_ignite /// - NeverIgnite = 2337, - + NeverIgnite = 2338, + /// /// global_chance_to_knockback_% /// - GlobalChanceToKnockbackPct = 2338, - + GlobalChanceToKnockbackPct = 2339, + /// /// local_unique_flask_instantly_recovers_%_maximum_life /// - LocalUniqueFlaskInstantlyRecoversPctMaximumLife = 2339, - + LocalUniqueFlaskInstantlyRecoversPctMaximumLife = 2340, + /// /// local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing /// - LocalUniqueFlaskChaosDamagePctOfMaximumLifeToDealPerMinuteWhileHealing = 2340, - + LocalUniqueFlaskChaosDamagePctOfMaximumLifeToDealPerMinuteWhileHealing = 2341, + /// /// unique_add_power_charge_on_melee_knockback_% /// - UniqueAddPowerChargeOnMeleeKnockbackPct = 2341, - + UniqueAddPowerChargeOnMeleeKnockbackPct = 2342, + /// /// display_map_boss_gives_experience_+% /// - DisplayMapBossGivesExperiencePct = 2342, - + DisplayMapBossGivesExperiencePct = 2343, + /// /// gain_power_charge_when_throwing_trap_% /// - GainPowerChargeWhenThrowingTrapPct = 2343, - + GainPowerChargeWhenThrowingTrapPct = 2344, + /// /// local_display_grants_skill_bear_trap_level /// - LocalDisplayGrantsSkillBearTrapLevel = 2344, - + LocalDisplayGrantsSkillBearTrapLevel = 2345, + /// /// critical_strike_chance_+%_per_8_strength /// - CriticalStrikeChancePctPer8Strength = 2345, - + CriticalStrikeChancePctPer8Strength = 2346, + /// /// skill_is_trapped /// - SkillIsTrapped = 2346, - + SkillIsTrapped = 2347, + /// /// skill_is_mined /// - SkillIsMined = 2347, - + SkillIsMined = 2348, + /// /// skill_is_totemified /// - SkillIsTotemified = 2348, - + SkillIsTotemified = 2349, + /// /// current_rampage_stacks /// - CurrentRampageStacks = 2349, - + CurrentRampageStacks = 2350, + /// /// max_rampage_stacks /// - MaxRampageStacks = 2350, - + MaxRampageStacks = 2351, + /// /// damage_+%_per_10_rampage_stacks /// - DamagePctPer10RampageStacks = 2351, - + DamagePctPer10RampageStacks = 2352, + /// /// movement_velocity_+%_per_10_rampage_stacks /// - MovementVelocityPctPer10RampageStacks = 2352, - + MovementVelocityPctPer10RampageStacks = 2353, + /// /// map_players_gain_rampage_stacks /// - MapPlayersGainRampageStacks = 2353, - + MapPlayersGainRampageStacks = 2354, + /// /// map_disable_missions /// - MapDisableMissions = 2354, - + MapDisableMissions = 2355, + /// /// map_spawn_map_portal /// - MapSpawnMapPortal = 2355, - + MapSpawnMapPortal = 2356, + /// /// local_unique_flask_block_%_while_healing /// - LocalUniqueFlaskBlockPctWhileHealing = 2356, - + LocalUniqueFlaskBlockPctWhileHealing = 2357, + /// /// local_unique_flask_spell_block_%_while_healing /// - LocalUniqueFlaskSpellBlockPctWhileHealing = 2357, - + LocalUniqueFlaskSpellBlockPctWhileHealing = 2358, + /// /// map_beyond_rules /// - MapBeyondRules = 2358, - + MapBeyondRules = 2359, + /// /// map_extra_ruleset /// - MapExtraRuleset = 2359, - + MapExtraRuleset = 2360, + /// /// map_mission_variation /// - MapMissionVariation = 2360, - + MapMissionVariation = 2361, + /// /// ground_spikes_physical_damage_to_deal_per_minute /// - GroundSpikesPhysicalDamageToDealPerMinute = 2361, - + GroundSpikesPhysicalDamageToDealPerMinute = 2362, + /// /// ground_spikes_moving_physical_damage_to_deal_per_minute /// - GroundSpikesMovingPhysicalDamageToDealPerMinute = 2362, - + GroundSpikesMovingPhysicalDamageToDealPerMinute = 2363, + /// /// attack_speed_+%_while_ignited /// - AttackSpeedPctWhileIgnited = 2363, - + AttackSpeedPctWhileIgnited = 2364, + /// /// cast_speed_+%_while_ignited /// - CastSpeedPctWhileIgnited = 2364, - + CastSpeedPctWhileIgnited = 2365, + /// /// chance_to_ignite_%_while_ignited /// - ChanceToIgnitePctWhileIgnited = 2365, - + ChanceToIgnitePctWhileIgnited = 2366, + /// /// fire_nova_damage_+%_per_repeat_final /// - FireNovaDamagePctPerRepeatFinal = 2366, - + FireNovaDamagePctPerRepeatFinal = 2367, + /// /// lightning_trap_projectiles_leave_shocking_ground /// - LightningTrapProjectilesLeaveShockingGround = 2367, - + LightningTrapProjectilesLeaveShockingGround = 2368, + /// /// main_hand_weapon_physical_damage_+%_per_250_evasion /// - MainHandWeaponPhysicalDamagePctPer250Evasion = 2368, - + MainHandWeaponPhysicalDamagePctPer250Evasion = 2369, + /// /// off_hand_weapon_physical_damage_+%_per_250_evasion /// - OffHandWeaponPhysicalDamagePctPer250Evasion = 2369, - + OffHandWeaponPhysicalDamagePctPer250Evasion = 2370, + /// /// local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion /// - LocalAttacksWithThisWeaponPhysicalDamagePctPer250Evasion = 2370, - + LocalAttacksWithThisWeaponPhysicalDamagePctPer250Evasion = 2371, + /// /// map_cagan_has_hidden_mods /// - MapCaganHasHiddenMods = 2371, - + MapCaganHasHiddenMods = 2372, + /// /// cyclone_places_ground_tar_movement_speed_+% /// - CyclonePlacesGroundTarMovementSpeedPct = 2372, - + CyclonePlacesGroundTarMovementSpeedPct = 2373, + /// /// wand_damage_+% /// - WandDamagePct = 2373, - + WandDamagePct = 2374, + /// /// cast_speed_while_dual_wielding_+% /// - CastSpeedWhileDualWieldingPct = 2374, - + CastSpeedWhileDualWieldingPct = 2375, + /// /// shield_spell_block_% /// - ShieldSpellBlockPct = 2375, - + ShieldSpellBlockPct = 2376, + /// /// local_display_socketed_gems_get_echo_level /// - LocalDisplaySocketedGemsGetEchoLevel = 2376, - + LocalDisplaySocketedGemsGetEchoLevel = 2377, + /// /// support_echo_damage_+%_final /// - SupportEchoDamagePctFinal = 2377, - + SupportEchoDamagePctFinal = 2378, + /// /// global_bleed_on_hit /// - GlobalBleedOnHit = 2378, - + GlobalBleedOnHit = 2379, + /// /// local_bleed_on_hit /// - LocalBleedOnHit = 2379, - + LocalBleedOnHit = 2380, + /// /// main_hand_bleed_on_hit /// - MainHandBleedOnHit = 2380, - + MainHandBleedOnHit = 2381, + /// /// off_hand_bleed_on_hit /// - OffHandBleedOnHit = 2381, - + OffHandBleedOnHit = 2382, + /// /// damage_+%_vs_ignited_enemies /// - DamagePctVsIgnitedEnemies = 2382, - + DamagePctVsIgnitedEnemies = 2383, + /// /// recover_%_maximum_life_on_rampage_threshold /// - RecoverPctMaximumLifeOnRampageThreshold = 2383, - + RecoverPctMaximumLifeOnRampageThreshold = 2384, + /// /// dispel_status_ailments_on_rampage_threshold /// - DispelStatusAilmentsOnRampageThreshold = 2384, - + DispelStatusAilmentsOnRampageThreshold = 2385, + /// /// gain_physical_damage_immunity_on_rampage_threshold_ms /// - GainPhysicalDamageImmunityOnRampageThresholdMs = 2385, - + GainPhysicalDamageImmunityOnRampageThresholdMs = 2386, + /// /// gain_X_vaal_souls_on_rampage_threshold /// - GainXVaalSoulsOnRampageThreshold = 2386, - + GainXVaalSoulsOnRampageThreshold = 2387, + /// /// physical_damage_+%_vs_poisoned_enemies /// - PhysicalDamagePctVsPoisonedEnemies = 2387, - + PhysicalDamagePctVsPoisonedEnemies = 2388, + /// /// block_causes_monster_flee_% /// - BlockCausesMonsterFleePct = 2388, - + BlockCausesMonsterFleePct = 2389, + /// /// life_regeneration_rate_per_minute_per_level /// - LifeRegenerationRatePerMinutePerLevel = 2389, - + LifeRegenerationRatePerMinutePerLevel = 2390, + /// /// critical_strike_chance_+%_per_level /// - CriticalStrikeChancePctPerLevel = 2390, - + CriticalStrikeChancePctPerLevel = 2391, + /// /// attack_damage_+%_per_level /// - AttackDamagePctPerLevel = 2391, - + AttackDamagePctPerLevel = 2392, + /// /// spell_damage_+%_per_level /// - SpellDamagePctPerLevel = 2392, - + SpellDamagePctPerLevel = 2393, + /// /// recharge_flasks_on_crit /// - RechargeFlasksOnCrit = 2393, - + RechargeFlasksOnCrit = 2394, + /// /// bleeding_monsters_movement_velocity_+% /// - BleedingMonstersMovementVelocityPct = 2394, - + BleedingMonstersMovementVelocityPct = 2395, + /// /// old_do_not_use_life_leech_permyriad_on_crit /// - OldDoNotUseLifeLeechPermyriadOnCrit = 2395, - + OldDoNotUseLifeLeechPermyriadOnCrit = 2396, + /// /// ground_smoke_on_rampage_threshold_ms /// - GroundSmokeOnRampageThresholdMs = 2396, - + GroundSmokeOnRampageThresholdMs = 2397, + /// /// phasing_on_rampage_threshold_ms /// - PhasingOnRampageThresholdMs = 2397, - + PhasingOnRampageThresholdMs = 2398, + /// /// on_full_energy_shield /// - OnFullEnergyShield = 2398, - + OnFullEnergyShield = 2399, + /// /// movement_velocity_+%_on_full_energy_shield /// - MovementVelocityPctOnFullEnergyShield = 2399, - + MovementVelocityPctOnFullEnergyShield = 2400, + /// /// sword_critical_strike_chance_+% /// - SwordCriticalStrikeChancePct = 2400, - + SwordCriticalStrikeChancePct = 2401, + /// /// attack_damage_+%_per_450_evasion /// - AttackDamagePctPer450Evasion = 2401, - + AttackDamagePctPer450Evasion = 2402, + /// /// old_do_not_use_mana_leech_from_physical_damage_with_claw_% /// - OldDoNotUseManaLeechFromPhysicalDamageWithClawPct = 2402, - + OldDoNotUseManaLeechFromPhysicalDamageWithClawPct = 2403, + /// /// main_hand_steal_power_frenzy_endurance_charges_on_hit_% /// - MainHandStealPowerFrenzyEnduranceChargesOnHitPct = 2403, - + MainHandStealPowerFrenzyEnduranceChargesOnHitPct = 2404, + /// /// off_hand_steal_power_frenzy_endurance_charges_on_hit_% /// - OffHandStealPowerFrenzyEnduranceChargesOnHitPct = 2404, - + OffHandStealPowerFrenzyEnduranceChargesOnHitPct = 2405, + /// /// claw_steal_power_frenzy_endurance_charges_on_hit_% /// - ClawStealPowerFrenzyEnduranceChargesOnHitPct = 2405, - + ClawStealPowerFrenzyEnduranceChargesOnHitPct = 2406, + /// /// player_gain_rampage_stacks /// - PlayerGainRampageStacks = 2406, - + PlayerGainRampageStacks = 2407, + /// /// regenerate_%_armour_as_life_over_1_second_on_block /// - RegeneratePctArmourAsLifeOver1SecondOnBlock = 2407, - + RegeneratePctArmourAsLifeOver1SecondOnBlock = 2408, + /// /// monster_cast_spell_%_on_attack_hit /// - MonsterCastSpellPctOnAttackHit = 2408, - + MonsterCastSpellPctOnAttackHit = 2409, + /// /// unique_chaos_damage_to_reflect_to_self_on_attack_%_chance /// - UniqueChaosDamageToReflectToSelfOnAttackPctChance = 2409, - + UniqueChaosDamageToReflectToSelfOnAttackPctChance = 2410, + /// /// unique_minimum_chaos_damage_to_reflect_to_self_on_attack /// - UniqueMinimumChaosDamageToReflectToSelfOnAttack = 2410, - + UniqueMinimumChaosDamageToReflectToSelfOnAttack = 2411, + /// /// unique_maximum_chaos_damage_to_reflect_to_self_on_attack /// - UniqueMaximumChaosDamageToReflectToSelfOnAttack = 2411, - + UniqueMaximumChaosDamageToReflectToSelfOnAttack = 2412, + /// /// map_monsters_curse_effect_+% /// - MapMonstersCurseEffectPct = 2412, - + MapMonstersCurseEffectPct = 2413, + /// /// map_mission_variation2 /// - MapMissionVariation2 = 2413, - + MapMissionVariation2 = 2414, + /// /// map_player_has_random_level_X_curse_every_10_seconds /// - MapPlayerHasRandomLevelXCurseEvery10Seconds = 2414, - + MapPlayerHasRandomLevelXCurseEvery10Seconds = 2415, + /// /// display_map_inhabited_by_wild_beasts /// - DisplayMapInhabitedByWildBeasts = 2415, - + DisplayMapInhabitedByWildBeasts = 2416, + /// /// monster_no_drops /// - MonsterNoDrops = 2416, - + MonsterNoDrops = 2417, + /// /// map_monster_no_drops /// - MapMonsterNoDrops = 2417, - + MapMonsterNoDrops = 2418, + /// /// life_regeneration_rate_+% /// - LifeRegenerationRatePct = 2418, - + LifeRegenerationRatePct = 2419, + /// /// cannot_be_blinded /// - CannotBeBlinded = 2419, - + CannotBeBlinded = 2420, + /// /// local_socketed_skill_gem_level_+ /// - LocalSocketedSkillGemLevel = 2420, - + LocalSocketedSkillGemLevel = 2421, + /// /// gain_unholy_might_on_rampage_threshold_ms /// - GainUnholyMightOnRampageThresholdMs = 2421, - + GainUnholyMightOnRampageThresholdMs = 2422, + /// /// elemental_damage_+%_per_level /// - ElementalDamagePctPerLevel = 2422, - + ElementalDamagePctPerLevel = 2423, + /// /// chaos_damage_+%_per_level /// - ChaosDamagePctPerLevel = 2423, - + ChaosDamagePctPerLevel = 2424, + /// /// life_gained_on_enemy_death_per_level /// - LifeGainedOnEnemyDeathPerLevel = 2424, - + LifeGainedOnEnemyDeathPerLevel = 2425, + /// /// mana_gained_on_enemy_death /// - ManaGainedOnEnemyDeath = 2425, - + ManaGainedOnEnemyDeath = 2426, + /// /// energy_shield_gained_on_enemy_death /// - EnergyShieldGainedOnEnemyDeath = 2426, - + EnergyShieldGainedOnEnemyDeath = 2427, + /// /// mana_gained_on_enemy_death_per_level /// - ManaGainedOnEnemyDeathPerLevel = 2427, - + ManaGainedOnEnemyDeathPerLevel = 2428, + /// /// energy_shield_gained_on_enemy_death_per_level /// - EnergyShieldGainedOnEnemyDeathPerLevel = 2428, - + EnergyShieldGainedOnEnemyDeathPerLevel = 2429, + /// /// aura_cannot_affect_self /// - AuraCannotAffectSelf = 2429, - + AuraCannotAffectSelf = 2430, + /// /// map_scion_mission_monster_pack /// - MapScionMissionMonsterPack = 2430, - + MapScionMissionMonsterPack = 2431, + /// /// mace_critical_strike_chance_+% /// - MaceCriticalStrikeChancePct = 2431, - + MaceCriticalStrikeChancePct = 2432, + /// /// staff_critical_strike_chance_+% /// - StaffCriticalStrikeChancePct = 2432, - + StaffCriticalStrikeChancePct = 2433, + /// /// wand_critical_strike_chance_+% /// - WandCriticalStrikeChancePct = 2433, - + WandCriticalStrikeChancePct = 2434, + /// /// wand_critical_strike_multiplier_+ /// - WandCriticalStrikeMultiplier = 2434, - + WandCriticalStrikeMultiplier = 2435, + /// /// bow_stun_threshold_reduction_+% /// - BowStunThresholdReductionPct = 2435, - + BowStunThresholdReductionPct = 2436, + /// /// number_of_animated_bows_to_summon /// - NumberOfAnimatedBowsToSummon = 2436, - + NumberOfAnimatedBowsToSummon = 2437, + /// /// number_of_animated_daggers_to_summon /// - NumberOfAnimatedDaggersToSummon = 2437, - + NumberOfAnimatedDaggersToSummon = 2438, + /// /// number_of_animated_two_handed_swords_to_summon /// - NumberOfAnimatedTwoHandedSwordsToSummon = 2438, - + NumberOfAnimatedTwoHandedSwordsToSummon = 2439, + /// /// firestorm_avoid_unwalkable_terrain /// - FirestormAvoidUnwalkableTerrain = 2439, - + FirestormAvoidUnwalkableTerrain = 2440, + /// /// ground_effect_ring_type /// - GroundEffectRingType = 2440, - + GroundEffectRingType = 2441, + /// /// local_display_socketed_gems_have_elemental_equilibrium /// - LocalDisplaySocketedGemsHaveElementalEquilibrium = 2441, - + LocalDisplaySocketedGemsHaveElementalEquilibrium = 2442, + /// /// unique_fire_damage_resistance_%_when_red_gem_socketed /// - UniqueFireDamageResistancePctWhenRedGemSocketed = 2442, - + UniqueFireDamageResistancePctWhenRedGemSocketed = 2443, + /// /// unique_cold_damage_resistance_%_when_green_gem_socketed /// - UniqueColdDamageResistancePctWhenGreenGemSocketed = 2443, - + UniqueColdDamageResistancePctWhenGreenGemSocketed = 2444, + /// /// unique_lightning_damage_resistance_%_when_blue_gem_socketed /// - UniqueLightningDamageResistancePctWhenBlueGemSocketed = 2444, - + UniqueLightningDamageResistancePctWhenBlueGemSocketed = 2445, + /// /// skill_mana_cost_+ /// - SkillManaCost = 2445, - + SkillManaCost = 2446, + /// /// map_aoe_daemons_per_100_tiles /// - MapAoeDaemonsPer100Tiles = 2446, - + MapAoeDaemonsPer100Tiles = 2447, + /// /// map_aoe_daemons_variation /// - MapAoeDaemonsVariation = 2447, - + MapAoeDaemonsVariation = 2448, + /// /// monster_no_beyond_portal /// - MonsterNoBeyondPortal = 2448, - + MonsterNoBeyondPortal = 2449, + /// /// local_socketed_support_gem_quality_+ /// - LocalSocketedSupportGemQuality = 2449, - + LocalSocketedSupportGemQuality = 2450, + /// /// map_packs_are_str_mission_totems /// - MapPacksAreStrMissionTotems = 2450, - + MapPacksAreStrMissionTotems = 2451, + /// /// chance_to_grant_frenzy_charge_on_death_% /// - ChanceToGrantFrenzyChargeOnDeathPct = 2451, - + ChanceToGrantFrenzyChargeOnDeathPct = 2452, + /// /// life_granted_when_hit_by_attacks /// - LifeGrantedWhenHitByAttacks = 2452, - + LifeGrantedWhenHitByAttacks = 2453, + /// /// mana_granted_when_hit_by_attacks /// - ManaGrantedWhenHitByAttacks = 2453, - + ManaGrantedWhenHitByAttacks = 2454, + /// /// life_granted_when_killed /// - LifeGrantedWhenKilled = 2454, - + LifeGrantedWhenKilled = 2455, + /// /// mana_granted_when_killed /// - ManaGrantedWhenKilled = 2455, - + ManaGrantedWhenKilled = 2456, + /// /// evasion_rating_+%_final_from_poachers_mark /// - EvasionRatingPctFinalFromPoachersMark = 2456, - + EvasionRatingPctFinalFromPoachersMark = 2457, + /// /// monster_interactible_corpse /// - MonsterInteractibleCorpse = 2457, - + MonsterInteractibleCorpse = 2458, + /// /// revive_all_with_onslaught_make_minions /// - ReviveAllWithOnslaughtMakeMinions = 2458, - + ReviveAllWithOnslaughtMakeMinions = 2459, + /// /// revive_all_with_onslaught_make_unusable /// - ReviveAllWithOnslaughtMakeUnusable = 2459, - + ReviveAllWithOnslaughtMakeUnusable = 2460, + /// /// additive_spell_damage_modifiers_apply_to_attack_damage /// - AdditiveSpellDamageModifiersApplyToAttackDamage = 2460, - + AdditiveSpellDamageModifiersApplyToAttackDamage = 2461, + /// /// monster_minimap_icon /// - MonsterMinimapIcon = 2461, - + MonsterMinimapIcon = 2462, + /// /// is_trap_object /// - IsTrapObject = 2462, - + IsTrapObject = 2463, + /// /// attack_projectiles_return /// - AttackProjectilesReturn = 2463, - + AttackProjectilesReturn = 2464, + /// /// attack_projectiles_return_if_no_hit_object /// - AttackProjectilesReturnIfNoHitObject = 2464, - + AttackProjectilesReturnIfNoHitObject = 2465, + /// /// minion_damage_+%_per_10_rampage_stacks /// - MinionDamagePctPer10RampageStacks = 2465, - + MinionDamagePctPer10RampageStacks = 2466, + /// /// minion_movement_velocity_+%_per_10_rampage_stacks /// - MinionMovementVelocityPctPer10RampageStacks = 2466, - + MinionMovementVelocityPctPer10RampageStacks = 2467, + /// /// virtual_minion_damage_+% /// - VirtualMinionDamagePct = 2467, - + VirtualMinionDamagePct = 2468, + /// /// player_dex_mission_enable_pointer /// - PlayerDexMissionEnablePointer = 2468, - + PlayerDexMissionEnablePointer = 2469, + /// /// map_hidden_monster_life_+%_final /// - MapHiddenMonsterLifePctFinal = 2469, - + MapHiddenMonsterLifePctFinal = 2470, + /// /// map_hidden_monster_damage_+%_final /// - MapHiddenMonsterDamagePctFinal = 2470, - + MapHiddenMonsterDamagePctFinal = 2471, + /// /// projectiles_not_offset /// - ProjectilesNotOffset = 2471, - + ProjectilesNotOffset = 2472, + /// /// herald_of_ash_fire_damage_+% /// - HeraldOfAshFireDamagePct = 2472, - + HeraldOfAshFireDamagePct = 2473, + /// /// map_num_extra_invasion_bosses /// - MapNumExtraInvasionBosses = 2473, - + MapNumExtraInvasionBosses = 2474, + /// /// map_num_extra_strongboxes /// - MapNumExtraStrongboxes = 2474, - + MapNumExtraStrongboxes = 2475, + /// /// map_num_extra_shrines /// - MapNumExtraShrines = 2475, - + MapNumExtraShrines = 2476, + /// /// map_all_monster_packs_rare_and_allow_magic /// - MapAllMonsterPacksRareAndAllowMagic = 2476, - + MapAllMonsterPacksRareAndAllowMagic = 2477, + /// /// duelist_master_is_dummy_variation /// - DuelistMasterIsDummyVariation = 2477, - + DuelistMasterIsDummyVariation = 2478, + /// /// soul_eater_ignore_non_experience_monsters /// - SoulEaterIgnoreNonExperienceMonsters = 2478, - + SoulEaterIgnoreNonExperienceMonsters = 2479, + /// /// summoned_monsters_are_minions /// - SummonedMonstersAreMinions = 2479, - + SummonedMonstersAreMinions = 2480, + /// /// summoned_monsters_no_drops_or_experience /// - SummonedMonstersNoDropsOrExperience = 2480, - + SummonedMonstersNoDropsOrExperience = 2481, + /// /// monster_do_not_fracture /// - MonsterDoNotFracture = 2481, - + MonsterDoNotFracture = 2482, + /// /// item_generation_cannot_change_prefixes /// - ItemGenerationCannotChangePrefixes = 2482, - + ItemGenerationCannotChangePrefixes = 2483, + /// /// item_generation_cannot_change_suffixes /// - ItemGenerationCannotChangeSuffixes = 2483, - + ItemGenerationCannotChangeSuffixes = 2484, + /// /// item_generation_cannot_roll_caster_affixes /// - ItemGenerationCannotRollCasterAffixes = 2484, - + ItemGenerationCannotRollCasterAffixes = 2485, + /// /// item_generation_cannot_roll_attack_affixes /// - ItemGenerationCannotRollAttackAffixes = 2485, - + ItemGenerationCannotRollAttackAffixes = 2486, + /// /// item_generation_can_have_multiple_crafted_mods /// - ItemGenerationCanHaveMultipleCraftedMods = 2486, - + ItemGenerationCanHaveMultipleCraftedMods = 2487, + /// /// map_set_league_category /// - MapSetLeagueCategory = 2487, - + MapSetLeagueCategory = 2488, + /// /// local_level_requirement_+ /// - LocalLevelRequirement2 = 2488, - + LocalLevelRequirement2 = 2489, + /// /// projectile_spiral_nova_starting_angle_offset /// - ProjectileSpiralNovaStartingAngleOffset = 2489, - + ProjectileSpiralNovaStartingAngleOffset = 2490, + /// /// projectile_spiral_nova_both_directions /// - ProjectileSpiralNovaBothDirections = 2490, - + ProjectileSpiralNovaBothDirections = 2491, + /// /// triggered_spell_spell_damage_+% /// - TriggeredSpellSpellDamagePct = 2491, - + TriggeredSpellSpellDamagePct = 2492, + /// /// damage_+%_vs_blinded_enemies /// - DamagePctVsBlindedEnemies = 2492, - + DamagePctVsBlindedEnemies = 2493, + /// /// ground_smoke_when_hit_% /// - GroundSmokeWhenHitPct = 2493, - + GroundSmokeWhenHitPct = 2494, + /// /// number_of_beacons /// - NumberOfBeacons = 2494, - + NumberOfBeacons = 2495, + /// /// is_dead /// - IsDead = 2495, - + IsDead = 2496, + /// /// area_of_effect_+%_while_dead /// - AreaOfEffectPctWhileDead = 2496, - + AreaOfEffectPctWhileDead = 2497, + /// /// beacon_placement_radius /// - BeaconPlacementRadius = 2497, - + BeaconPlacementRadius = 2498, + /// /// map_area_portal_variation /// - MapAreaPortalVariation = 2498, - + MapAreaPortalVariation = 2499, + /// /// skill_is_triggered /// - SkillIsTriggered = 2499, - + SkillIsTriggered = 2500, + /// /// skill_is_curse /// - SkillIsCurse = 2500, - + SkillIsCurse = 2501, + /// /// skill_triggerable_spell /// - SkillTriggerableSpell = 2501, - + SkillTriggerableSpell = 2502, + /// /// unique_mjolner_lightning_spells_triggered /// - UniqueMjolnerLightningSpellsTriggered = 2502, - + UniqueMjolnerLightningSpellsTriggered = 2503, + /// /// skill_number_of_triggers /// - SkillNumberOfTriggers = 2503, - + SkillNumberOfTriggers = 2504, + /// /// curse_on_block_level_5_vulnerability /// - CurseOnBlockLevel5Vulnerability = 2504, - + CurseOnBlockLevel5Vulnerability = 2505, + /// /// monster_enrages_on_low_life_text /// - MonsterEnragesOnLowLifeText = 2505, - + MonsterEnragesOnLowLifeText = 2506, + /// /// drop_bear_fall_on_target /// - DropBearFallOnTarget = 2506, - + DropBearFallOnTarget = 2507, + /// /// map_magic_pack_mod_rules /// - MapMagicPackModRules = 2507, - + MapMagicPackModRules = 2508, + /// /// display_map_has_oxygen /// - DisplayMapHasOxygen = 2508, - + DisplayMapHasOxygen = 2509, + /// /// bloodlines_beacon_on_death_variation /// - BloodlinesBeaconOnDeathVariation = 2509, - + BloodlinesBeaconOnDeathVariation = 2510, + /// /// actor_scale_+%_granted_to_pack_members_on_death /// - ActorScalePctGrantedToPackMembersOnDeath = 2510, - + ActorScalePctGrantedToPackMembersOnDeath = 2511, + /// /// maximum_life_+%_granted_to_pack_members_on_death /// - MaximumLifePctGrantedToPackMembersOnDeath = 2511, - + MaximumLifePctGrantedToPackMembersOnDeath = 2512, + /// /// monster_dodge_direction /// - MonsterDodgeDirection = 2512, - + MonsterDodgeDirection = 2513, + /// /// herald_of_ice_cold_damage_+% /// - HeraldOfIceColdDamagePct = 2513, - + HeraldOfIceColdDamagePct = 2514, + /// /// herald_of_thunder_lightning_damage_+% /// - HeraldOfThunderLightningDamagePct = 2514, - + HeraldOfThunderLightningDamagePct = 2515, + /// /// number_of_taniwha_tails_allowed /// - NumberOfTaniwhaTailsAllowed = 2515, - + NumberOfTaniwhaTailsAllowed = 2516, + /// /// minion_dies_when_parent_dies /// - MinionDiesWhenParentDies = 2516, - + MinionDiesWhenParentDies = 2517, + /// /// unique_nearby_allies_recover_permyriad_max_life_on_death /// - UniqueNearbyAlliesRecoverPermyriadMaxLifeOnDeath = 2517, - + UniqueNearbyAlliesRecoverPermyriadMaxLifeOnDeath = 2518, + /// /// suppress_mod_stat_display /// - SuppressModStatDisplay = 2518, - + SuppressModStatDisplay = 2519, + /// /// base_steal_power_frenzy_endurance_charges_on_hit_% /// - BaseStealPowerFrenzyEnduranceChargesOnHitPct = 2519, - + BaseStealPowerFrenzyEnduranceChargesOnHitPct = 2520, + /// /// cannot_die_and_damage_+%_near_pack_corpse /// - CannotDieAndDamagePctNearPackCorpse = 2520, - + CannotDieAndDamagePctNearPackCorpse = 2521, + /// /// projectile_spread_radius /// - ProjectileSpreadRadius = 2521, - + ProjectileSpreadRadius = 2522, + /// /// local_item_drops_on_death_if_equipped_by_animate_armour /// - LocalItemDropsOnDeathIfEquippedByAnimateArmour = 2522, - + LocalItemDropsOnDeathIfEquippedByAnimateArmour = 2523, + /// /// physical_attack_damage_+% /// - PhysicalAttackDamagePct = 2523, - + PhysicalAttackDamagePct = 2524, + /// /// melee_physical_damage_+%_while_holding_shield /// - MeleePhysicalDamagePctWhileHoldingShield = 2524, - + MeleePhysicalDamagePctWhileHoldingShield = 2525, + /// /// local_display_socketed_gems_get_cast_on_death_level /// - LocalDisplaySocketedGemsGetCastOnDeathLevel = 2525, - + LocalDisplaySocketedGemsGetCastOnDeathLevel = 2526, + /// /// cluster_burst_spawn_amount /// - ClusterBurstSpawnAmount = 2526, - + ClusterBurstSpawnAmount = 2527, + /// /// bloodline_daemon_update_count_on_death /// - BloodlineDaemonUpdateCountOnDeath = 2527, - + BloodlineDaemonUpdateCountOnDeath = 2528, + /// /// bloodline_daemon_pack_death_count /// - BloodlineDaemonPackDeathCount = 2528, - + BloodlineDaemonPackDeathCount = 2529, + /// /// bloodline_summon_blood_monster_on_pack_death /// - BloodlineSummonBloodMonsterOnPackDeath = 2529, - + BloodlineSummonBloodMonsterOnPackDeath = 2530, + /// /// damage_taken_+%_per_bloodline_damage_charge /// - DamageTakenPctPerBloodlineDamageCharge = 2530, - + DamageTakenPctPerBloodlineDamageCharge = 2531, + /// /// attack_speed_+%_per_bloodline_speed_charge /// - AttackSpeedPctPerBloodlineSpeedCharge = 2531, - + AttackSpeedPctPerBloodlineSpeedCharge = 2532, + /// /// cast_speed_+%_per_bloodline_speed_charge /// - CastSpeedPctPerBloodlineSpeedCharge = 2532, - + CastSpeedPctPerBloodlineSpeedCharge = 2533, + /// /// current_bloodline_damage_charges /// - CurrentBloodlineDamageCharges = 2533, - + CurrentBloodlineDamageCharges = 2534, + /// /// current_bloodline_speed_charges /// - CurrentBloodlineSpeedCharges = 2534, - + CurrentBloodlineSpeedCharges = 2535, + /// /// maximum_bloodline_damage_charges /// - MaximumBloodlineDamageCharges = 2535, - + MaximumBloodlineDamageCharges = 2536, + /// /// maximum_bloodline_speed_charges /// - MaximumBloodlineSpeedCharges = 2536, - + MaximumBloodlineSpeedCharges = 2537, + /// /// apply_X_random_curses_on_hit /// - ApplyXRandomCursesOnHit = 2537, - + ApplyXRandomCursesOnHit = 2538, + /// /// total_projectile_spread_angle_override /// - TotalProjectileSpreadAngleOverride = 2538, - + TotalProjectileSpreadAngleOverride = 2539, + /// /// map_beyond_chance_% /// - MapBeyondChancePct = 2539, - + MapBeyondChancePct = 2540, + /// /// map_boss_vaal_item_drop_% /// - MapBossVaalItemDropPct = 2540, - + MapBossVaalItemDropPct = 2541, + /// /// map_is_corrupted /// - MapIsCorrupted = 2541, - + MapIsCorrupted = 2542, + /// /// map_no_strongboxes /// - MapNoStrongboxes = 2542, - + MapNoStrongboxes = 2543, + /// /// keystone_acrobatics_block_chance_+%_final /// - KeystoneAcrobaticsBlockChancePctFinal = 2543, - + KeystoneAcrobaticsBlockChancePctFinal = 2544, + /// /// corpse_consumption_affects_pack /// - CorpseConsumptionAffectsPack = 2544, - + CorpseConsumptionAffectsPack = 2545, + /// /// damage_+%_per_bloodline_damage_charge /// - DamagePctPerBloodlineDamageCharge = 2545, - + DamagePctPerBloodlineDamageCharge = 2546, + /// /// movement_speed_+%_per_bloodline_speed_charge /// - MovementSpeedPctPerBloodlineSpeedCharge = 2546, - + MovementSpeedPctPerBloodlineSpeedCharge = 2547, + /// /// active_skill_area_damage_+%_final /// - ActiveSkillAreaDamagePctFinal = 2547, - + ActiveSkillAreaDamagePctFinal = 2548, + /// /// monster_share_charges_with_pack /// - MonsterShareChargesWithPack = 2548, - + MonsterShareChargesWithPack = 2549, + /// /// melee_counterattack_trigger_on_block_% /// - MeleeCounterattackTriggerOnBlockPct = 2549, - + MeleeCounterattackTriggerOnBlockPct = 2550, + /// /// bloodline_firestorm_scales_with_pack_death /// - BloodlineFirestormScalesWithPackDeath = 2550, - + BloodlineFirestormScalesWithPackDeath = 2551, + /// /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 2551, - + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 2552, + /// /// is_totem_object /// - IsTotemObject = 2552, - + IsTotemObject = 2553, + /// /// uses_no_mana /// - UsesNoMana = 2553, - + UsesNoMana = 2554, + /// /// monster_spawn_bloodlines_ghost_totem_on_death /// - MonsterSpawnBloodlinesGhostTotemOnDeath = 2554, - + MonsterSpawnBloodlinesGhostTotemOnDeath = 2555, + /// /// skill_triggerable_attack /// - SkillTriggerableAttack = 2555, - + SkillTriggerableAttack = 2556, + /// /// attack_unusable_if_triggerable /// - AttackUnusableIfTriggerable = 2556, - + AttackUnusableIfTriggerable = 2557, + /// /// clone_hidden_duration /// - CloneHiddenDuration = 2557, - + CloneHiddenDuration = 2558, + /// /// never_take_critical_strike /// - NeverTakeCriticalStrike = 2558, - + NeverTakeCriticalStrike = 2559, + /// /// tormented_necromancer_spawn_monster_on_death_variation /// - TormentedNecromancerSpawnMonsterOnDeathVariation = 2559, - + TormentedNecromancerSpawnMonsterOnDeathVariation = 2560, + /// /// tormented_mutilator_spawn_monster_on_death_variation /// - TormentedMutilatorSpawnMonsterOnDeathVariation = 2560, - + TormentedMutilatorSpawnMonsterOnDeathVariation = 2561, + /// /// spawn_monster_on_death_variation /// - SpawnMonsterOnDeathVariation = 2561, - + SpawnMonsterOnDeathVariation = 2562, + /// /// map_spawn_tormented_spirits /// - MapSpawnTormentedSpirits = 2562, - + MapSpawnTormentedSpirits = 2563, + /// /// damage_+%_vs_frozen_shocked_ignited_enemies /// - DamagePctVsFrozenShockedIgnitedEnemies = 2563, - + DamagePctVsFrozenShockedIgnitedEnemies = 2564, + /// /// bloodlines_animate_guardian_on_death /// - BloodlinesAnimateGuardianOnDeath = 2564, - + BloodlinesAnimateGuardianOnDeath = 2565, + /// /// melee_counterattack_trigger_on_hit_% /// - MeleeCounterattackTriggerOnHitPct = 2565, - + MeleeCounterattackTriggerOnHitPct = 2566, + /// /// reduce_enemy_dodge_% /// - ReduceEnemyDodgePct = 2566, - + ReduceEnemyDodgePct = 2567, + /// /// shield_counterattack_aoe_range /// - ShieldCounterattackAoeRange = 2567, - + ShieldCounterattackAoeRange = 2568, + /// /// bloodlines_monster_unholy_might_duration_ms /// - BloodlinesMonsterUnholyMightDurationMs = 2568, - + BloodlinesMonsterUnholyMightDurationMs = 2569, + /// /// bloodlines_monster_unholy_might_damage_taken_+% /// - BloodlinesMonsterUnholyMightDamageTakenPct = 2569, - + BloodlinesMonsterUnholyMightDamageTakenPct = 2570, + /// /// bloodlines_phylacteral_link_is_vulnerable /// - BloodlinesPhylacteralLinkIsVulnerable = 2570, - + BloodlinesPhylacteralLinkIsVulnerable = 2571, + /// /// bloodlines_full_guardian_size_+%_on_death /// - BloodlinesFullGuardianSizePctOnDeath = 2571, - + BloodlinesFullGuardianSizePctOnDeath = 2572, + /// /// bloodlines_guardian_damage_+%_on_death /// - BloodlinesGuardianDamagePctOnDeath = 2572, - + BloodlinesGuardianDamagePctOnDeath = 2573, + /// /// bloodlines_guardian_attack_speed_+%_on_death /// - BloodlinesGuardianAttackSpeedPctOnDeath = 2573, - + BloodlinesGuardianAttackSpeedPctOnDeath = 2574, + /// /// bloodlines_guardian_movement_speed_+%_on_death /// - BloodlinesGuardianMovementSpeedPctOnDeath = 2574, - + BloodlinesGuardianMovementSpeedPctOnDeath = 2575, + /// /// bloodlines_force_drop_of_pack_item_type_rarity /// - BloodlinesForceDropOfPackItemTypeRarity = 2575, - + BloodlinesForceDropOfPackItemTypeRarity = 2576, + /// /// merveil_number_of_geysers /// - MerveilNumberOfGeysers = 2576, - + MerveilNumberOfGeysers = 2577, + /// /// weapon_elemental_damage_+%_while_using_flask /// - WeaponElementalDamagePctWhileUsingFlask = 2577, - + WeaponElementalDamagePctWhileUsingFlask = 2578, + /// /// attack_speed_+%_while_holding_shield /// - AttackSpeedPctWhileHoldingShield = 2578, - + AttackSpeedPctWhileHoldingShield = 2579, + /// /// create_trap_at_target_location /// - CreateTrapAtTargetLocation = 2579, - + CreateTrapAtTargetLocation = 2580, + /// /// avoid_knockback_% /// - AvoidKnockbackPct = 2580, - + AvoidKnockbackPct = 2581, + /// /// bloodlines_corrupted_blood_%_average_damage_to_deal_per_minute_per_stack_for_20_pack_members /// - BloodlinesCorruptedBloodPctAverageDamageToDealPerMinutePerStackFor20PackMembers = 2581, - + BloodlinesCorruptedBloodPctAverageDamageToDealPerMinutePerStackFor20PackMembers = 2582, + /// /// cant_touch_this /// - CantTouchThis = 2582, - + CantTouchThis = 2583, + /// /// cant_possess_this /// - CantPossessThis = 2583, - + CantPossessThis = 2584, + /// /// base_physical_damage_%_of_maximum_life_taken_per_minute /// - BasePhysicalDamagePctOfMaximumLifeTakenPerMinute = 2584, - + BasePhysicalDamagePctOfMaximumLifeTakenPerMinute = 2585, + /// /// static_strike_explosion_damage_+%_final /// - StaticStrikeExplosionDamagePctFinal = 2585, - + StaticStrikeExplosionDamagePctFinal = 2586, + /// /// disable_highlight /// - DisableHighlight = 2586, - + DisableHighlight = 2587, + /// /// removes_%_mana_on_hit /// - RemovesPctManaOnHit = 2587, - + RemovesPctManaOnHit = 2588, + /// /// curse_when_hit_%_silence /// - CurseWhenHitPctSilence = 2588, - + CurseWhenHitPctSilence = 2589, + /// /// life_gain_on_ignited_enemy_hit /// - LifeGainOnIgnitedEnemyHit = 2589, - + LifeGainOnIgnitedEnemyHit = 2590, + /// /// minimum_added_physical_damage_vs_frozen_enemies /// - MinimumAddedPhysicalDamageVsFrozenEnemies = 2590, - + MinimumAddedPhysicalDamageVsFrozenEnemies = 2591, + /// /// maximum_added_physical_damage_vs_frozen_enemies /// - MaximumAddedPhysicalDamageVsFrozenEnemies = 2591, - + MaximumAddedPhysicalDamageVsFrozenEnemies = 2592, + /// /// damage_vs_shocked_enemies_+% /// - DamageVsShockedEnemiesPct = 2592, - + DamageVsShockedEnemiesPct = 2593, + /// /// old_do_not_use_life_leech_permyriad_vs_shocked_enemies /// - OldDoNotUseLifeLeechPermyriadVsShockedEnemies = 2593, - + OldDoNotUseLifeLeechPermyriadVsShockedEnemies = 2594, + /// /// physical_damage_as_fire_damage_vs_ignited_enemies_% /// - PhysicalDamageAsFireDamageVsIgnitedEnemiesPct = 2594, - + PhysicalDamageAsFireDamageVsIgnitedEnemiesPct = 2595, + /// /// local_display_socketed_melee_gems_have_area_radius_+% /// - LocalDisplaySocketedMeleeGemsHaveAreaRadiusPct = 2595, - + LocalDisplaySocketedMeleeGemsHaveAreaRadiusPct = 2596, + /// /// local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire /// - LocalDisplaySocketedRedGemsHavePctOfPhysicalDamageToAddAsFire = 2596, - + LocalDisplaySocketedRedGemsHavePctOfPhysicalDamageToAddAsFire = 2597, + /// /// curse_effect_+%_vs_players /// - CurseEffectPctVsPlayers = 2597, - + CurseEffectPctVsPlayers = 2598, + /// /// monster_drop_additional_currency_items /// - MonsterDropAdditionalCurrencyItems = 2598, - + MonsterDropAdditionalCurrencyItems = 2599, + /// /// monster_drop_additional_wisdom_scrolls /// - MonsterDropAdditionalWisdomScrolls = 2599, - + MonsterDropAdditionalWisdomScrolls = 2600, + /// /// monster_drop_additional_portal_scrolls /// - MonsterDropAdditionalPortalScrolls = 2600, - + MonsterDropAdditionalPortalScrolls = 2601, + /// /// monster_drop_additional_rings_amulets /// - MonsterDropAdditionalRingsAmulets = 2601, - + MonsterDropAdditionalRingsAmulets = 2602, + /// /// item_generation_local_maximum_mod_required_level_override /// - ItemGenerationLocalMaximumModRequiredLevelOverride = 2602, - + ItemGenerationLocalMaximumModRequiredLevelOverride = 2603, + /// /// block_chance_+% /// - BlockChancePct = 2603, - + BlockChancePct = 2604, + /// /// local_unique_flask_physical_damage_taken_%_as_cold_while_healing /// - LocalUniqueFlaskPhysicalDamageTakenPctAsColdWhileHealing = 2604, - + LocalUniqueFlaskPhysicalDamageTakenPctAsColdWhileHealing = 2605, + /// /// local_unique_flask_physical_damage_%_to_add_as_cold_while_healing /// - LocalUniqueFlaskPhysicalDamagePctToAddAsColdWhileHealing = 2605, - + LocalUniqueFlaskPhysicalDamagePctToAddAsColdWhileHealing = 2606, + /// /// local_unique_flask_avoid_chill_%_while_healing /// - LocalUniqueFlaskAvoidChillPctWhileHealing = 2606, - + LocalUniqueFlaskAvoidChillPctWhileHealing = 2607, + /// /// local_unique_flask_avoid_freeze_%_while_healing /// - LocalUniqueFlaskAvoidFreezePctWhileHealing = 2607, - + LocalUniqueFlaskAvoidFreezePctWhileHealing = 2608, + /// /// monster_drop_additional_map_items /// - MonsterDropAdditionalMapItems = 2608, - + MonsterDropAdditionalMapItems = 2609, + /// /// lightning_warp_move_speed_override /// - LightningWarpMoveSpeedOverride = 2609, - + LightningWarpMoveSpeedOverride = 2610, + /// /// fire_damage_taken_%_causes_additional_physical_damage /// - FireDamageTakenPctCausesAdditionalPhysicalDamage = 2610, - + FireDamageTakenPctCausesAdditionalPhysicalDamage = 2611, + /// /// chill_effectiveness_on_self_+% /// - ChillEffectivenessOnSelfPct = 2611, - + ChillEffectivenessOnSelfPct = 2612, + /// /// temporal_chains_effeciveness_+% /// - TemporalChainsEffecivenessPct = 2612, - + TemporalChainsEffecivenessPct = 2613, + /// /// gain_flask_charge_when_crit_% /// - GainFlaskChargeWhenCritPct = 2613, - + GainFlaskChargeWhenCritPct = 2614, + /// /// gain_flask_charge_when_crit_amount /// - GainFlaskChargeWhenCritAmount = 2614, - + GainFlaskChargeWhenCritAmount = 2615, + /// /// self_physical_damage_on_skill_use_%_mana_cost /// - SelfPhysicalDamageOnSkillUsePctManaCost = 2615, - + SelfPhysicalDamageOnSkillUsePctManaCost = 2616, + /// /// torment_embezzler_debuff_on_hit_recovery_speed_+% /// - TormentEmbezzlerDebuffOnHitRecoverySpeedPct = 2616, - + TormentEmbezzlerDebuffOnHitRecoverySpeedPct = 2617, + /// /// monster_no_drops_when_not_deleted_on_death /// - MonsterNoDropsWhenNotDeletedOnDeath = 2617, - + MonsterNoDropsWhenNotDeletedOnDeath = 2618, + /// /// leech_amount_+%_final_on_crit /// - LeechAmountPctFinalOnCrit = 2618, - + LeechAmountPctFinalOnCrit = 2619, + /// /// unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit /// - UnqiueAtzitisAcuityInstantLeech60PctEffectivenessOnCrit = 2619, - + UnqiueAtzitisAcuityInstantLeech60PctEffectivenessOnCrit = 2620, + /// /// life_and_mana_leech_is_instant_on_critical /// - LifeAndManaLeechIsInstantOnCritical = 2620, - + LifeAndManaLeechIsInstantOnCritical = 2621, + /// /// bleed_on_melee_attack_chance_% /// - BleedOnMeleeAttackChancePct = 2621, - + BleedOnMeleeAttackChancePct = 2622, + /// /// physical_damage_over_time_+% /// - PhysicalDamageOverTimePct = 2622, - + PhysicalDamageOverTimePct = 2623, + /// /// elemental_equilibrium_effect_+% /// - ElementalEquilibriumEffectPct = 2623, - + ElementalEquilibriumEffectPct = 2624, + /// /// local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent /// - LocalDisplaySocketedGemsHaveElementalEquilibriumEffectPluspercent = 2624, - + LocalDisplaySocketedGemsHaveElementalEquilibriumEffectPluspercent = 2625, + /// /// attack_damage_+% /// - AttackDamagePct = 2625, - + AttackDamagePct = 2626, + /// /// attack_damage_vs_bleeding_enemies_+% /// - AttackDamageVsBleedingEnemiesPct = 2626, - + AttackDamageVsBleedingEnemiesPct = 2627, + /// /// chance_to_gain_endurance_charge_on_crit_% /// - ChanceToGainEnduranceChargeOnCritPct = 2627, - + ChanceToGainEnduranceChargeOnCritPct = 2628, + /// /// chance_to_gain_power_charge_when_block_% /// - ChanceToGainPowerChargeWhenBlockPct = 2628, - + ChanceToGainPowerChargeWhenBlockPct = 2629, + /// /// stuns_have_culling_strike /// - StunsHaveCullingStrike = 2629, - + StunsHaveCullingStrike = 2630, + /// /// chance_to_gain_onslaught_on_kill_% /// - ChanceToGainOnslaughtOnKillPct = 2630, - + ChanceToGainOnslaughtOnKillPct = 2631, + /// /// onslaught_time_granted_on_kill_ms /// - OnslaughtTimeGrantedOnKillMs = 2631, - + OnslaughtTimeGrantedOnKillMs = 2632, + /// /// base_main_hand_damage_+% /// - BaseMainHandDamagePct = 2632, - + BaseMainHandDamagePct = 2633, + /// /// base_off_hand_attack_speed_+% /// - BaseOffHandAttackSpeedPct = 2633, - + BaseOffHandAttackSpeedPct = 2634, + /// /// damage_vs_enemies_on_low_life_+% /// - DamageVsEnemiesOnLowLifePct = 2634, - + DamageVsEnemiesOnLowLifePct = 2635, + /// /// drop_additional_rare_items /// - DropAdditionalRareItems = 2635, - + DropAdditionalRareItems = 2636, + /// /// monster_drop_additional_vaal_items /// - MonsterDropAdditionalVaalItems = 2636, - + MonsterDropAdditionalVaalItems = 2637, + /// /// bloodlines_shrouded /// - BloodlinesShrouded = 2637, - + BloodlinesShrouded = 2638, + /// /// monster_pretend_to_be_player_level /// - MonsterPretendToBePlayerLevel = 2638, - + MonsterPretendToBePlayerLevel = 2639, + /// /// monster_display_ES_when_life_full /// - MonsterDisplayESWhenLifeFull = 2639, - + MonsterDisplayESWhenLifeFull = 2640, + /// /// minimum_added_fire_damage_vs_ignited_enemies /// - MinimumAddedFireDamageVsIgnitedEnemies = 2640, - + MinimumAddedFireDamageVsIgnitedEnemies = 2641, + /// /// maximum_added_fire_damage_vs_ignited_enemies /// - MaximumAddedFireDamageVsIgnitedEnemies = 2641, - + MaximumAddedFireDamageVsIgnitedEnemies = 2642, + /// /// monster_is_possessed /// - MonsterIsPossessed = 2642, - + MonsterIsPossessed = 2643, + /// /// monster_has_second_form /// - MonsterHasSecondForm = 2643, - + MonsterHasSecondForm = 2644, + /// /// map_crash_instance_debug /// - MapCrashInstanceDebug = 2644, - + MapCrashInstanceDebug = 2645, + /// /// map_pause_instance_debug /// - MapPauseInstanceDebug = 2645, - + MapPauseInstanceDebug = 2646, + /// /// chance_to_gain_endurance_charge_on_melee_crit_% /// - ChanceToGainEnduranceChargeOnMeleeCritPct = 2646, - + ChanceToGainEnduranceChargeOnMeleeCritPct = 2647, + /// /// physical_damage_per_endurance_charge_+% /// - PhysicalDamagePerEnduranceChargePct = 2647, - + PhysicalDamagePerEnduranceChargePct = 2648, + /// /// penetrate_elemental_resistance_per_frenzy_charge_% /// - PenetrateElementalResistancePerFrenzyChargePct = 2648, - + PenetrateElementalResistancePerFrenzyChargePct = 2649, + /// /// damage_vs_enemies_on_full_life_per_power_charge_+% /// - DamageVsEnemiesOnFullLifePerPowerChargePct = 2649, - + DamageVsEnemiesOnFullLifePerPowerChargePct = 2650, + /// /// damage_vs_enemies_on_low_life_per_power_charge_+% /// - DamageVsEnemiesOnLowLifePerPowerChargePct = 2650, - + DamageVsEnemiesOnLowLifePerPowerChargePct = 2651, + /// /// monster_dodge_distance /// - MonsterDodgeDistance = 2651, - + MonsterDodgeDistance = 2652, + /// /// cast_socketed_minion_skills_on_bow_kill_% /// - CastSocketedMinionSkillsOnBowKillPct = 2652, - + CastSocketedMinionSkillsOnBowKillPct = 2653, + /// /// minion_damage_+%_per_10_dex /// - MinionDamagePctPer10Dex = 2653, - + MinionDamagePctPer10Dex = 2654, + /// /// unique_bow_minion_spells_triggered /// - UniqueBowMinionSpellsTriggered = 2654, - + UniqueBowMinionSpellsTriggered = 2655, + /// /// Local Flask Ignite Immunity While Healing /// - LocalFlaskIgniteImmunityWhileHealing = 2655, - + LocalFlaskIgniteImmunityWhileHealing = 2656, + /// /// Local Flask Chill And Freeze Immunity While Healing /// - LocalFlaskChillAndFreezeImmunityWhileHealing = 2656, - + LocalFlaskChillAndFreezeImmunityWhileHealing = 2657, + /// /// Local Flask Shock Immunity While Healing /// - LocalFlaskShockImmunityWhileHealing = 2657, - + LocalFlaskShockImmunityWhileHealing = 2658, + /// /// Local Flask Bleeding Immunity While Healing /// - LocalFlaskBleedingImmunityWhileHealing = 2658, - + LocalFlaskBleedingImmunityWhileHealing = 2659, + /// /// immune_to_bleeding /// - ImmuneToBleeding = 2659, - + ImmuneToBleeding = 2660, + /// /// local_display_socketed_gems_have_number_of_additional_projectiles /// - LocalDisplaySocketedGemsHaveNumberOfAdditionalProjectiles = 2660, - + LocalDisplaySocketedGemsHaveNumberOfAdditionalProjectiles = 2661, + /// /// local_display_socketed_gems_projectiles_nova /// - LocalDisplaySocketedGemsProjectilesNova = 2661, - + LocalDisplaySocketedGemsProjectilesNova = 2662, + /// /// local_display_socketed_gems_skill_effect_duration_+% /// - LocalDisplaySocketedGemsSkillEffectDurationPct = 2662, - + LocalDisplaySocketedGemsSkillEffectDurationPct = 2663, + /// /// life_regen_per_minute_per_endurance_charge /// - LifeRegenPerMinutePerEnduranceCharge = 2663, - + LifeRegenPerMinutePerEnduranceCharge = 2664, + /// /// vaal_souls_gained_per_minute /// - VaalSoulsGainedPerMinute = 2664, - + VaalSoulsGainedPerMinute = 2665, + /// /// attack_damage_that_stuns_also_chills /// - AttackDamageThatStunsAlsoChills = 2665, - + AttackDamageThatStunsAlsoChills = 2666, + /// /// cannot_knockback /// - CannotKnockback = 2666, - + CannotKnockback = 2667, + /// /// cleave_disable_predictive_damage /// - CleaveDisablePredictiveDamage = 2667, - + CleaveDisablePredictiveDamage = 2668, + /// /// display_map_contains_grandmasters /// - DisplayMapContainsGrandmasters = 2668, - + DisplayMapContainsGrandmasters = 2669, + /// /// gain_x_life_when_endurance_charge_expires_or_consumed /// - GainXLifeWhenEnduranceChargeExpiresOrConsumed = 2669, - + GainXLifeWhenEnduranceChargeExpiresOrConsumed = 2670, + /// /// virtual_maximum_endurance_charges /// - VirtualMaximumEnduranceCharges = 2670, - + VirtualMaximumEnduranceCharges = 2671, + /// /// virtual_maximum_frenzy_charges /// - VirtualMaximumFrenzyCharges = 2671, - + VirtualMaximumFrenzyCharges = 2672, + /// /// virtual_maximum_power_charges /// - VirtualMaximumPowerCharges = 2672, - + VirtualMaximumPowerCharges = 2673, + /// /// no_maximum_power_charges /// - NoMaximumPowerCharges = 2673, - + NoMaximumPowerCharges = 2674, + /// /// damage_vs_cursed_enemies_per_enemy_curse_+% /// - DamageVsCursedEnemiesPerEnemyCursePct = 2674, - + DamageVsCursedEnemiesPerEnemyCursePct = 2675, + /// /// virtual_ignite_duration_+% /// - VirtualIgniteDurationPct = 2675, - + VirtualIgniteDurationPct = 2676, + /// /// virtual_shock_duration_+% /// - VirtualShockDurationPct = 2676, - + VirtualShockDurationPct = 2677, + /// /// virtual_freeze_duration_+% /// - VirtualFreezeDurationPct = 2677, - + VirtualFreezeDurationPct = 2678, + /// /// virtual_chill_duration_+% /// - VirtualChillDurationPct = 2678, - + VirtualChillDurationPct = 2679, + /// /// base_elemental_status_ailment_duration_+% /// - BaseElementalStatusAilmentDurationPct = 2679, - + BaseElementalStatusAilmentDurationPct = 2680, + /// /// local_display_socketed_gems_supported_by_x_knockback_level /// - LocalDisplaySocketedGemsSupportedByXKnockbackLevel = 2680, - + LocalDisplaySocketedGemsSupportedByXKnockbackLevel = 2681, + /// /// enemy_knockback_direction_is_reversed /// - EnemyKnockbackDirectionIsReversed = 2681, - + EnemyKnockbackDirectionIsReversed = 2682, + /// /// map_zana_subarea_mission /// - MapZanaSubareaMission = 2682, - + MapZanaSubareaMission = 2683, + /// /// map_zana_subarea_extra_req /// - MapZanaSubareaExtraReq = 2683, - + MapZanaSubareaExtraReq = 2684, + /// /// immune_to_ally_buff_auras /// - ImmuneToAllyBuffAuras = 2684, - + ImmuneToAllyBuffAuras = 2685, + /// /// buff_auras_dont_affect_allies /// - BuffAurasDontAffectAllies = 2685, - + BuffAurasDontAffectAllies = 2686, + /// /// hits_can_only_kill_frozen_enemies /// - HitsCanOnlyKillFrozenEnemies = 2686, - + HitsCanOnlyKillFrozenEnemies = 2687, + /// /// spectral_throw_deceleration_override /// - SpectralThrowDecelerationOverride = 2687, - + SpectralThrowDecelerationOverride = 2688, + /// /// maximum_life_taken_as_physical_damage_on_minion_death_% /// - MaximumLifeTakenAsPhysicalDamageOnMinionDeathPct = 2688, - + MaximumLifeTakenAsPhysicalDamageOnMinionDeathPct = 2689, + /// /// maximum_es_taken_as_physical_damage_on_minion_death_% /// - MaximumEsTakenAsPhysicalDamageOnMinionDeathPct = 2689, - + MaximumEsTakenAsPhysicalDamageOnMinionDeathPct = 2690, + /// /// minion_skill_area_of_effect_+% /// - MinionSkillAreaOfEffectPct = 2690, - + MinionSkillAreaOfEffectPct = 2691, + /// /// energy_shield_regeneration_%_per_minute_while_shocked /// - EnergyShieldRegenerationPctPerMinuteWhileShocked = 2691, - + EnergyShieldRegenerationPctPerMinuteWhileShocked = 2692, + /// /// chest_drops_extra_vaal_fragments /// - ChestDropsExtraVaalFragments = 2692, - + ChestDropsExtraVaalFragments = 2693, + /// /// chest_drops_extra_rare_items_of_same_base_type /// - ChestDropsExtraRareItemsOfSameBaseType = 2693, - + ChestDropsExtraRareItemsOfSameBaseType = 2694, + /// /// ignite_art_variation /// - IgniteArtVariation = 2694, - + IgniteArtVariation = 2695, + /// /// curse_apply_as_aura /// - CurseApplyAsAura = 2695, - + CurseApplyAsAura = 2696, + /// /// combined_pvp_damage_+%_final /// - CombinedPvpDamagePctFinal = 2696, - + CombinedPvpDamagePctFinal = 2697, + /// /// support_cast_on_death_pvp_damage_+%_final /// - SupportCastOnDeathPvpDamagePctFinal = 2697, - + SupportCastOnDeathPvpDamagePctFinal = 2698, + /// /// support_cast_on_damage_taken_pvp_damage_+%_final /// - SupportCastOnDamageTakenPvpDamagePctFinal = 2698, - + SupportCastOnDamageTakenPvpDamagePctFinal = 2699, + /// /// support_cast_when_stunned_pvp_damage_+%_final /// - SupportCastWhenStunnedPvpDamagePctFinal = 2699, - + SupportCastWhenStunnedPvpDamagePctFinal = 2700, + /// /// support_cast_on_crit_pvp_damage_+%_final /// - SupportCastOnCritPvpDamagePctFinal = 2700, - + SupportCastOnCritPvpDamagePctFinal = 2701, + /// /// support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies /// - SupportBloodlustMeleePhysicalDamagePctFinalVsBleedingEnemies = 2701, - + SupportBloodlustMeleePhysicalDamagePctFinalVsBleedingEnemies = 2702, + /// /// support_bloodlust_melee_physical_damage_+%_final /// - SupportBloodlustMeleePhysicalDamagePctFinal = 2702, - + SupportBloodlustMeleePhysicalDamagePctFinal = 2703, + /// /// cannot_be_damaged_by_nonplayer_damage /// - CannotBeDamagedByNonplayerDamage = 2703, - + CannotBeDamagedByNonplayerDamage = 2704, + /// /// cannot_cause_bleeding /// - CannotCauseBleeding = 2704, - + CannotCauseBleeding = 2705, + /// /// inspiring_cry_damage_+%_per_one_hundred_nearby_enemies /// - InspiringCryDamagePctPerOneHundredNearbyEnemies = 2705, - + InspiringCryDamagePctPerOneHundredNearbyEnemies = 2706, + /// /// charge_duration_+% /// - ChargeDurationPct = 2706, - + ChargeDurationPct = 2707, + /// /// virtual_power_charge_duration_+% /// - VirtualPowerChargeDurationPct = 2707, - + VirtualPowerChargeDurationPct = 2708, + /// /// virtual_endurance_charge_duration_+% /// - VirtualEnduranceChargeDurationPct = 2708, - + VirtualEnduranceChargeDurationPct = 2709, + /// /// daresso_attack_combo_physical_damage_%_to_add_as_cold /// - DaressoAttackComboPhysicalDamagePctToAddAsCold = 2709, - + DaressoAttackComboPhysicalDamagePctToAddAsCold = 2710, + /// /// old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies /// - OldDoNotUseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 2710, - + OldDoNotUseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 2711, + /// /// base_life_leech_from_attack_damage_permyriad /// - BaseLifeLeechFromAttackDamagePermyriad = 2711, - + BaseLifeLeechFromAttackDamagePermyriad = 2712, + /// /// base_mana_leech_from_attack_damage_permyriad /// - BaseManaLeechFromAttackDamagePermyriad = 2712, - + BaseManaLeechFromAttackDamagePermyriad = 2713, + /// /// test_stat_check_code /// - TestStatCheckCode = 2713, - + TestStatCheckCode = 2714, + /// /// monster_penalty_against_minions_damage_+%_final /// - MonsterPenaltyAgainstMinionsDamagePctFinal = 2714, - + MonsterPenaltyAgainstMinionsDamagePctFinal = 2715, + /// /// monster_penalty_against_minions_damage_+%_final_vs_player_minions /// - MonsterPenaltyAgainstMinionsDamagePctFinalVsPlayerMinions = 2715, - + MonsterPenaltyAgainstMinionsDamagePctFinalVsPlayerMinions = 2716, + /// /// physical_damage_taken_on_minion_death /// - PhysicalDamageTakenOnMinionDeath = 2716, - + PhysicalDamageTakenOnMinionDeath = 2717, + /// /// abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies /// - AbyssalCryMovementVelocityPctPerOneHundredNearbyEnemies = 2717, - + AbyssalCryMovementVelocityPctPerOneHundredNearbyEnemies = 2718, + /// /// onslaught_buff_duration_on_culling_strike_ms /// - OnslaughtBuffDurationOnCullingStrikeMs = 2718, - + OnslaughtBuffDurationOnCullingStrikeMs = 2719, + /// /// base_avoid_chill_%_while_have_onslaught /// - BaseAvoidChillPctWhileHaveOnslaught = 2719, - + BaseAvoidChillPctWhileHaveOnslaught = 2720, + /// /// base_avoid_freeze_%_while_have_onslaught /// - BaseAvoidFreezePctWhileHaveOnslaught = 2720, - + BaseAvoidFreezePctWhileHaveOnslaught = 2721, + /// /// base_avoid_shock_%_while_have_onslaught /// - BaseAvoidShockPctWhileHaveOnslaught = 2721, - + BaseAvoidShockPctWhileHaveOnslaught = 2722, + /// /// base_avoid_ignite_%_while_have_onslaught /// - BaseAvoidIgnitePctWhileHaveOnslaught = 2722, - + BaseAvoidIgnitePctWhileHaveOnslaught = 2723, + /// /// avoid_chill_%_while_have_onslaught /// - AvoidChillPctWhileHaveOnslaught = 2723, - + AvoidChillPctWhileHaveOnslaught = 2724, + /// /// avoid_freeze_%_while_have_onslaught /// - AvoidFreezePctWhileHaveOnslaught = 2724, - + AvoidFreezePctWhileHaveOnslaught = 2725, + /// /// avoid_shock_%_while_have_onslaught /// - AvoidShockPctWhileHaveOnslaught = 2725, - + AvoidShockPctWhileHaveOnslaught = 2726, + /// /// avoid_ignite_%_while_have_onslaught /// - AvoidIgnitePctWhileHaveOnslaught = 2726, - + AvoidIgnitePctWhileHaveOnslaught = 2727, + /// /// attack_minimum_added_lightning_damage_while_unarmed /// - AttackMinimumAddedLightningDamageWhileUnarmed = 2727, - + AttackMinimumAddedLightningDamageWhileUnarmed = 2728, + /// /// attack_maximum_added_lightning_damage_while_unarmed /// - AttackMaximumAddedLightningDamageWhileUnarmed = 2728, - + AttackMaximumAddedLightningDamageWhileUnarmed = 2729, + /// /// spell_minimum_added_lightning_damage_while_unarmed /// - SpellMinimumAddedLightningDamageWhileUnarmed = 2729, - + SpellMinimumAddedLightningDamageWhileUnarmed = 2730, + /// /// spell_maximum_added_lightning_damage_while_unarmed /// - SpellMaximumAddedLightningDamageWhileUnarmed = 2730, - + SpellMaximumAddedLightningDamageWhileUnarmed = 2731, + /// /// gain_X_energy_shield_on_killing_shocked_enemy /// - GainXEnergyShieldOnKillingShockedEnemy = 2731, - + GainXEnergyShieldOnKillingShockedEnemy = 2732, + /// /// support_concentrated_effect_skill_area_of_effect_+%_final /// - SupportConcentratedEffectSkillAreaOfEffectPctFinal = 2732, - + SupportConcentratedEffectSkillAreaOfEffectPctFinal = 2733, + /// /// elemental_damage_+%_per_frenzy_charge /// - ElementalDamagePctPerFrenzyCharge = 2733, - + ElementalDamagePctPerFrenzyCharge = 2734, + /// /// chaos_damage_poisons /// - ChaosDamagePoisons = 2734, - + ChaosDamagePoisons = 2735, + /// /// mine_extra_uses /// - MineExtraUses = 2735, - + MineExtraUses = 2736, + /// /// from_code_active_skill_damage_+%_final /// - FromCodeActiveSkillDamagePctFinal = 2736, - + FromCodeActiveSkillDamagePctFinal = 2737, + /// /// newshocknova_first_ring_damage_+%_final /// - NewshocknovaFirstRingDamagePctFinal = 2737, - + NewshocknovaFirstRingDamagePctFinal = 2738, + /// /// ice_crash_second_hit_damage_+%_final /// - IceCrashSecondHitDamagePctFinal = 2738, - + IceCrashSecondHitDamagePctFinal = 2739, + /// /// killed_monster_dropped_item_rarity_+%_when_frozen /// - KilledMonsterDroppedItemRarityPctWhenFrozen = 2739, - + KilledMonsterDroppedItemRarityPctWhenFrozen = 2740, + /// /// local_six_linked_sockets /// - LocalSixLinkedSockets = 2740, - + LocalSixLinkedSockets = 2741, + /// /// local_display_socketed_gems_get_generosity_level /// - LocalDisplaySocketedGemsGetGenerosityLevel = 2741, - + LocalDisplaySocketedGemsGetGenerosityLevel = 2742, + /// /// local_display_socketed_gems_get_remote_mine_level /// - LocalDisplaySocketedGemsGetRemoteMineLevel = 2742, - + LocalDisplaySocketedGemsGetRemoteMineLevel = 2743, + /// /// local_display_aura_life_regeneration_rate_per_minute_% /// - LocalDisplayAuraLifeRegenerationRatePerMinutePct = 2743, - + LocalDisplayAuraLifeRegenerationRatePerMinutePct = 2744, + /// /// local_display_aura_mana_regeneration_rate_+% /// - LocalDisplayAuraManaRegenerationRatePct = 2744, - + LocalDisplayAuraManaRegenerationRatePct = 2745, + /// /// unique_insanity_do_weird_things /// - UniqueInsanityDoWeirdThings = 2745, - + UniqueInsanityDoWeirdThings = 2746, + /// /// base_elemental_damage_heals /// - BaseElementalDamageHeals = 2746, - + BaseElementalDamageHeals = 2747, + /// /// base_fire_damage_heals /// - BaseFireDamageHeals = 2747, - + BaseFireDamageHeals = 2748, + /// /// base_cold_damage_heals /// - BaseColdDamageHeals = 2748, - + BaseColdDamageHeals = 2749, + /// /// base_lightning_damage_heals /// - BaseLightningDamageHeals = 2749, - + BaseLightningDamageHeals = 2750, + /// /// fire_damage_heals /// - FireDamageHeals = 2750, - + FireDamageHeals = 2751, + /// /// cold_damage_heals /// - ColdDamageHeals = 2751, - + ColdDamageHeals = 2752, + /// /// lightning_damage_heals /// - LightningDamageHeals = 2752, - + LightningDamageHeals = 2753, + /// /// chance_to_gain_power_charge_on_melee_stun_% /// - ChanceToGainPowerChargeOnMeleeStunPct = 2753, - + ChanceToGainPowerChargeOnMeleeStunPct = 2754, + /// /// gain_unholy_might_for_2_seconds_on_melee_crit /// - GainUnholyMightFor2SecondsOnMeleeCrit = 2754, - + GainUnholyMightFor2SecondsOnMeleeCrit = 2755, + /// /// unique_mine_damage_+%_final /// - UniqueMineDamagePctFinal = 2755, - + UniqueMineDamagePctFinal = 2756, + /// /// abyssal_cry_%_max_life_as_chaos_on_death /// - AbyssalCryPctMaxLifeAsChaosOnDeath = 2756, - + AbyssalCryPctMaxLifeAsChaosOnDeath = 2757, + /// /// ignites_reflected_to_self /// - IgnitesReflectedToSelf = 2757, - + IgnitesReflectedToSelf = 2758, + /// /// avoid_freeze_chill_ignite_%_while_have_onslaught /// - AvoidFreezeChillIgnitePctWhileHaveOnslaught = 2758, - + AvoidFreezeChillIgnitePctWhileHaveOnslaught = 2759, + /// /// sword_physical_damage_%_to_add_as_fire /// - SwordPhysicalDamagePctToAddAsFire = 2759, - + SwordPhysicalDamagePctToAddAsFire = 2760, + /// /// gain_onslaught_when_ignited_ms /// - GainOnslaughtWhenIgnitedMs = 2760, - + GainOnslaughtWhenIgnitedMs = 2761, + /// /// blind_nearby_enemies_when_ignited_% /// - BlindNearbyEnemiesWhenIgnitedPct = 2761, - + BlindNearbyEnemiesWhenIgnitedPct = 2762, + /// /// map_has_weather /// - MapHasWeather = 2762, - + MapHasWeather = 2763, + /// /// malachai_elemental_cone_spell_minimum_damage /// - MalachaiElementalConeSpellMinimumDamage = 2763, - + MalachaiElementalConeSpellMinimumDamage = 2764, + /// /// malachai_elemental_cone_spell_maximum_damage /// - MalachaiElementalConeSpellMaximumDamage = 2764, - + MalachaiElementalConeSpellMaximumDamage = 2765, + /// /// local_display_socketed_gems_supported_by_pierce_level /// - LocalDisplaySocketedGemsSupportedByPierceLevel = 2765, - + LocalDisplaySocketedGemsSupportedByPierceLevel = 2766, + /// /// map_non_unique_equipment_drops_as_sell_price /// - MapNonUniqueEquipmentDropsAsSellPrice = 2766, - + MapNonUniqueEquipmentDropsAsSellPrice = 2767, + /// /// local_flask_use_causes_monster_flee_chance_% /// - LocalFlaskUseCausesMonsterFleeChancePct = 2767, - + LocalFlaskUseCausesMonsterFleeChancePct = 2768, + /// /// local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect /// - LocalUniqueLionsRoarMeleePhysicalDamagePctFinalDuringFlaskEffect = 2768, - + LocalUniqueLionsRoarMeleePhysicalDamagePctFinalDuringFlaskEffect = 2769, + /// /// unique_lions_roar_melee_physical_damage_+%_final /// - UniqueLionsRoarMeleePhysicalDamagePctFinal = 2769, - + UniqueLionsRoarMeleePhysicalDamagePctFinal = 2770, + /// /// local_flask_adds_knockback_during_flask_effect /// - LocalFlaskAddsKnockbackDuringFlaskEffect = 2770, - + LocalFlaskAddsKnockbackDuringFlaskEffect = 2771, + /// /// map_items_drop_corrupted /// - MapItemsDropCorrupted = 2771, - + MapItemsDropCorrupted = 2772, + /// /// chest_number_of_additional_spider_uniques_to_drop /// - ChestNumberOfAdditionalSpiderUniquesToDrop = 2772, - + ChestNumberOfAdditionalSpiderUniquesToDrop = 2773, + /// /// Mana Gained On Hit /// - VirtualManaGainPerTarget = 2773, - + VirtualManaGainPerTarget = 2774, + /// /// life_and_mana_gain_per_hit /// - LifeAndManaGainPerHit = 2774, - + LifeAndManaGainPerHit = 2775, + /// /// life_and_mana_leech_from_physical_damage_permyriad /// - LifeAndManaLeechFromPhysicalDamagePermyriad = 2775, - + LifeAndManaLeechFromPhysicalDamagePermyriad = 2776, + /// /// cannot_inflict_status_ailments /// - CannotInflictStatusAilments = 2776, - + CannotInflictStatusAilments = 2777, + /// /// map_weapons_drop_animated /// - MapWeaponsDropAnimated = 2777, - + MapWeaponsDropAnimated = 2778, + /// /// attacks_bleed_on_stun /// - AttacksBleedOnStun = 2778, - + AttacksBleedOnStun = 2779, + /// /// chance_to_fortify_on_melee_hit_+% /// - ChanceToFortifyOnMeleeHitPct = 2779, - + ChanceToFortifyOnMeleeHitPct = 2780, + /// /// taunt_target_id /// - TauntTargetId = 2780, - + TauntTargetId = 2781, + /// /// spell_minimum_base_cold_damage_+_per_10_intelligence /// - SpellMinimumBaseColdDamagePer10Intelligence = 2781, - + SpellMinimumBaseColdDamagePer10Intelligence = 2782, + /// /// spell_maximum_base_cold_damage_+_per_10_intelligence /// - SpellMaximumBaseColdDamagePer10Intelligence = 2782, - + SpellMaximumBaseColdDamagePer10Intelligence = 2783, + /// /// skill_effect_duration_+%_per_10_strength /// - SkillEffectDurationPctPer10Strength = 2783, - + SkillEffectDurationPctPer10Strength = 2784, + /// /// virtual_skill_effect_duration_+% /// - VirtualSkillEffectDurationPct = 2784, - + VirtualSkillEffectDurationPct = 2785, + /// /// skill_is_fire_skill /// - SkillIsFireSkill = 2785, - + SkillIsFireSkill = 2786, + /// /// skill_is_cold_skill /// - SkillIsColdSkill = 2786, - + SkillIsColdSkill = 2787, + /// /// skill_is_lightning_skill /// - SkillIsLightningSkill = 2787, - + SkillIsLightningSkill = 2788, + /// /// ground_slam_cone_angle_override /// - GroundSlamConeAngleOverride = 2788, - + GroundSlamConeAngleOverride = 2789, + /// /// virtual_minion_movement_velocity_+% /// - VirtualMinionMovementVelocityPct = 2789, - + VirtualMinionMovementVelocityPct = 2790, + /// /// map_disable_torment_spirits /// - MapDisableTormentSpirits = 2790, - + MapDisableTormentSpirits = 2791, + /// /// map_spawn_extra_torment_spirits /// - MapSpawnExtraTormentSpirits = 2791, - + MapSpawnExtraTormentSpirits = 2792, + /// /// use_goddess_player_audio /// - UseGoddessPlayerAudio = 2792, - + UseGoddessPlayerAudio = 2793, + /// /// local_display_grants_skill_gluttony_of_elements_level /// - LocalDisplayGrantsSkillGluttonyOfElementsLevel = 2793, - + LocalDisplayGrantsSkillGluttonyOfElementsLevel = 2794, + /// /// local_display_socketed_gems_get_pierce_level /// - LocalDisplaySocketedGemsGetPierceLevel = 2794, - + LocalDisplaySocketedGemsGetPierceLevel = 2795, + /// /// damage_with_fire_skills_+% /// - DamageWithFireSkillsPct = 2795, - + DamageWithFireSkillsPct = 2796, + /// /// damage_with_cold_skills_+% /// - DamageWithColdSkillsPct = 2796, - + DamageWithColdSkillsPct = 2797, + /// /// damage_with_lightning_skills_+% /// - DamageWithLightningSkillsPct = 2797, - + DamageWithLightningSkillsPct = 2798, + /// /// cast_speed_for_fire_skills_+% /// - CastSpeedForFireSkillsPct = 2798, - + CastSpeedForFireSkillsPct = 2799, + /// /// cast_speed_for_cold_skills_+% /// - CastSpeedForColdSkillsPct = 2799, - + CastSpeedForColdSkillsPct = 2800, + /// /// cast_speed_for_lightning_skills_+% /// - CastSpeedForLightningSkillsPct = 2800, - + CastSpeedForLightningSkillsPct = 2801, + /// /// movement_velocity_+%_while_phasing /// - MovementVelocityPctWhilePhasing = 2801, - + MovementVelocityPctWhilePhasing = 2802, + /// /// phase_on_vaal_skill_use_duration_ms /// - PhaseOnVaalSkillUseDurationMs = 2802, - + PhaseOnVaalSkillUseDurationMs = 2803, + /// /// monster_inherent_damage_taken_+%_final /// - MonsterInherentDamageTakenPctFinal = 2803, - + MonsterInherentDamageTakenPctFinal = 2804, + /// /// taunt_duration_+% /// - TauntDurationPct = 2804, - + TauntDurationPct = 2805, + /// /// cyclone_ice_path_radius /// - CycloneIcePathRadius = 2805, - + CycloneIcePathRadius = 2806, + /// /// unarmed_melee_physical_damage_+% /// - UnarmedMeleePhysicalDamagePct = 2806, - + UnarmedMeleePhysicalDamagePct = 2807, + /// /// unarmed_melee_attack_speed_+% /// - UnarmedMeleeAttackSpeedPct = 2807, - + UnarmedMeleeAttackSpeedPct = 2808, + /// /// cast_speed_+%_while_holding_shield /// - CastSpeedPctWhileHoldingShield = 2808, - + CastSpeedPctWhileHoldingShield = 2809, + /// /// cast_speed_+%_while_holding_staff /// - CastSpeedPctWhileHoldingStaff = 2809, - + CastSpeedPctWhileHoldingStaff = 2810, + /// /// virtual_energy_shield_gain_per_target /// - VirtualEnergyShieldGainPerTarget = 2810, - + VirtualEnergyShieldGainPerTarget = 2811, + /// /// energy_shield_gain_per_target /// - EnergyShieldGainPerTarget = 2811, - + EnergyShieldGainPerTarget = 2812, + /// /// axe_critical_strike_chance_+% /// - AxeCriticalStrikeChancePct = 2812, - + AxeCriticalStrikeChancePct = 2813, + /// /// claw_critical_strike_multiplier_+ /// - ClawCriticalStrikeMultiplier = 2813, - + ClawCriticalStrikeMultiplier = 2814, + /// /// staff_critical_strike_multiplier_+ /// - StaffCriticalStrikeMultiplier = 2814, - + StaffCriticalStrikeMultiplier = 2815, + /// /// local_jewel_effect_base_radius /// - LocalJewelEffectBaseRadius = 2815, - + LocalJewelEffectBaseRadius = 2816, + /// /// local_jewel_nearby_passives_str_to_dex /// - LocalJewelNearbyPassivesStrToDex = 2816, - + LocalJewelNearbyPassivesStrToDex = 2817, + /// /// local_jewel_nearby_passives_dex_to_str /// - LocalJewelNearbyPassivesDexToStr = 2817, - + LocalJewelNearbyPassivesDexToStr = 2818, + /// /// local_jewel_nearby_passives_str_to_int /// - LocalJewelNearbyPassivesStrToInt = 2818, - + LocalJewelNearbyPassivesStrToInt = 2819, + /// /// local_jewel_nearby_passives_int_to_str /// - LocalJewelNearbyPassivesIntToStr = 2819, - + LocalJewelNearbyPassivesIntToStr = 2820, + /// /// local_jewel_nearby_passives_dex_to_int /// - LocalJewelNearbyPassivesDexToInt = 2820, - + LocalJewelNearbyPassivesDexToInt = 2821, + /// /// local_jewel_nearby_passives_int_to_dex /// - LocalJewelNearbyPassivesIntToDex = 2821, - + LocalJewelNearbyPassivesIntToDex = 2822, + /// /// critical_strike_chance_while_wielding_shield_+% /// - CriticalStrikeChanceWhileWieldingShieldPct = 2822, - + CriticalStrikeChanceWhileWieldingShieldPct = 2823, + /// /// trap_critical_strike_chance_+% /// - TrapCriticalStrikeChancePct = 2823, - + TrapCriticalStrikeChancePct = 2824, + /// /// mine_critical_strike_chance_+% /// - MineCriticalStrikeChancePct = 2824, - + MineCriticalStrikeChancePct = 2825, + /// /// projectiles_can_shotgun /// - ProjectilesCanShotgun = 2825, - + ProjectilesCanShotgun = 2826, + /// /// life_recovery_rate_+% /// - LifeRecoveryRatePct = 2826, - + LifeRecoveryRatePct = 2827, + /// /// mana_recovery_rate_+% /// - ManaRecoveryRatePct = 2827, - + ManaRecoveryRatePct = 2828, + /// /// energy_shield_recovery_rate_+% /// - EnergyShieldRecoveryRatePct = 2828, - + EnergyShieldRecoveryRatePct = 2829, + /// /// spell_chance_to_shock_frozen_enemies_% /// - SpellChanceToShockFrozenEnemiesPct = 2829, - + SpellChanceToShockFrozenEnemiesPct = 2830, + /// /// cannot_be_taunted /// - CannotBeTaunted = 2830, - + CannotBeTaunted = 2831, + /// /// cannot_be_taunted_when_taunted_ms /// - CannotBeTauntedWhenTauntedMs = 2831, - + CannotBeTauntedWhenTauntedMs = 2832, + /// /// attacks_do_not_cost_mana /// - AttacksDoNotCostMana = 2832, - + AttacksDoNotCostMana = 2833, + /// /// cannot_leech_or_regenerate_mana /// - CannotLeechOrRegenerateMana = 2833, - + CannotLeechOrRegenerateMana = 2834, + /// /// virtual_global_cannot_crit /// - VirtualGlobalCannotCrit = 2834, - + VirtualGlobalCannotCrit = 2835, + /// /// virtual_global_attacks_always_hit /// - VirtualGlobalAttacksAlwaysHit = 2835, - + VirtualGlobalAttacksAlwaysHit = 2836, + /// /// resolute_technique /// - ResoluteTechnique = 2836, - + ResoluteTechnique = 2837, + /// /// local_life_and_mana_leech_from_physical_damage_permyriad /// - LocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2837, - + LocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2838, + /// /// main_hand_local_life_and_mana_leech_from_physical_damage_permyriad /// - MainHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2838, - + MainHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2839, + /// /// off_hand_local_life_and_mana_leech_from_physical_damage_permyriad /// - OffHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2839, - + OffHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2840, + /// /// local_flask_use_causes_area_knockback /// - LocalFlaskUseCausesAreaKnockback = 2840, - + LocalFlaskUseCausesAreaKnockback = 2841, + /// /// skill_is_chaos_skill /// - SkillIsChaosSkill = 2841, - + SkillIsChaosSkill = 2842, + /// /// critical_strike_multiplier_is_100 /// - CriticalStrikeMultiplierIs100 = 2842, - + CriticalStrikeMultiplierIs100 = 2843, + /// /// can_inflict_multiple_ignites /// - CanInflictMultipleIgnites = 2843, - + CanInflictMultipleIgnites = 2844, + /// /// ignite_duration_-% /// - IgniteDurationPct2 = 2844, - + IgniteDurationPct2 = 2845, + /// /// passive_can_be_allocated_without_connection /// - PassiveCanBeAllocatedWithoutConnection = 2845, - + PassiveCanBeAllocatedWithoutConnection = 2846, + /// /// local_unique_jewel_nearby_disconnected_passives_can_be_allocated /// - LocalUniqueJewelNearbyDisconnectedPassivesCanBeAllocated = 2846, - + LocalUniqueJewelNearbyDisconnectedPassivesCanBeAllocated = 2847, + /// /// Local Chance To Bleed On Hit % /// - LocalChanceToBleedOnHitPct = 2847, - + LocalChanceToBleedOnHitPct = 2848, + /// /// main_hand_local_chance_to_bleed_on_hit_% /// - MainHandLocalChanceToBleedOnHitPct = 2848, - + MainHandLocalChanceToBleedOnHitPct = 2849, + /// /// off_hand_local_chance_to_bleed_on_hit_% /// - OffHandLocalChanceToBleedOnHitPct = 2849, - + OffHandLocalChanceToBleedOnHitPct = 2850, + /// /// skill_total_pvp_damage_+%_final /// - SkillTotalPvpDamagePctFinal = 2850, - + SkillTotalPvpDamagePctFinal = 2851, + /// /// fire_critical_strike_chance_+% /// - FireCriticalStrikeChancePct = 2851, - + FireCriticalStrikeChancePct = 2852, + /// /// lightning_critical_strike_chance_+% /// - LightningCriticalStrikeChancePct = 2852, - + LightningCriticalStrikeChancePct = 2853, + /// /// cold_critical_strike_chance_+% /// - ColdCriticalStrikeChancePct = 2853, - + ColdCriticalStrikeChancePct = 2854, + /// /// elemental_critical_strike_chance_+% /// - ElementalCriticalStrikeChancePct = 2854, - + ElementalCriticalStrikeChancePct = 2855, + /// /// chaos_critical_strike_chance_+% /// - ChaosCriticalStrikeChancePct = 2855, - + ChaosCriticalStrikeChancePct = 2856, + /// /// pvp_shield_damage_+%_final /// - PvpShieldDamagePctFinal = 2856, - + PvpShieldDamagePctFinal = 2857, + /// /// skill_area_of_effect_when_unarmed_+% /// - SkillAreaOfEffectWhenUnarmedPct = 2857, - + SkillAreaOfEffectWhenUnarmedPct = 2858, + /// /// gain_X_random_rare_monster_mods_on_kill /// - GainXRandomRareMonsterModsOnKill = 2858, - + GainXRandomRareMonsterModsOnKill = 2859, + /// /// chance_to_gain_power_charge_on_stun_% /// - ChanceToGainPowerChargeOnStunPct = 2859, - + ChanceToGainPowerChargeOnStunPct = 2860, + /// /// gain_unholy_might_for_2_seconds_on_crit /// - GainUnholyMightFor2SecondsOnCrit = 2860, - + GainUnholyMightFor2SecondsOnCrit = 2861, + /// /// monster_life_+%_final_from_rarity /// - MonsterLifePctFinalFromRarity = 2861, - + MonsterLifePctFinalFromRarity = 2862, + /// /// monster_life_+%_final_from_map /// - MonsterLifePctFinalFromMap = 2862, - + MonsterLifePctFinalFromMap = 2863, + /// /// melee_critical_strike_multiplier_+_while_wielding_shield /// - MeleeCriticalStrikeMultiplierWhileWieldingShield = 2863, - + MeleeCriticalStrikeMultiplierWhileWieldingShield = 2864, + /// /// trap_critical_strike_multiplier_+ /// - TrapCriticalStrikeMultiplier = 2864, - + TrapCriticalStrikeMultiplier = 2865, + /// /// mine_critical_strike_multiplier_+ /// - MineCriticalStrikeMultiplier = 2865, - + MineCriticalStrikeMultiplier = 2866, + /// /// fire_critical_strike_multiplier_+ /// - FireCriticalStrikeMultiplier = 2866, - + FireCriticalStrikeMultiplier = 2867, + /// /// lightning_critical_strike_multiplier_+ /// - LightningCriticalStrikeMultiplier = 2867, - + LightningCriticalStrikeMultiplier = 2868, + /// /// cold_critical_strike_multiplier_+ /// - ColdCriticalStrikeMultiplier = 2868, - + ColdCriticalStrikeMultiplier = 2869, + /// /// elemental_critical_strike_multiplier_+ /// - ElementalCriticalStrikeMultiplier = 2869, - + ElementalCriticalStrikeMultiplier = 2870, + /// /// chaos_critical_strike_multiplier_+ /// - ChaosCriticalStrikeMultiplier = 2870, - + ChaosCriticalStrikeMultiplier = 2871, + /// /// cast_speed_for_chaos_skills_+% /// - CastSpeedForChaosSkillsPct = 2871, - + CastSpeedForChaosSkillsPct = 2872, + /// /// spell_block_while_dual_wielding_% /// - SpellBlockWhileDualWieldingPct = 2872, - + SpellBlockWhileDualWieldingPct = 2873, + /// /// spell_block_with_staff_% /// - SpellBlockWithStaffPct = 2873, - + SpellBlockWithStaffPct = 2874, + /// /// recover_%_maximum_life_when_corpse_destroyed_or_consumed /// - RecoverPctMaximumLifeWhenCorpseDestroyedOrConsumed = 2874, - + RecoverPctMaximumLifeWhenCorpseDestroyedOrConsumed = 2875, + /// /// local_unique_jewel_totem_life_+X%_per_10_str_in_radius /// - LocalUniqueJewelTotemLifeXpctPer10StrInRadius = 2875, - + LocalUniqueJewelTotemLifeXpctPer10StrInRadius = 2876, + /// /// minion_chance_to_dodge_% /// - MinionChanceToDodgePct = 2876, - + MinionChanceToDodgePct = 2877, + /// /// local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill /// - LocalUniqueJewelWith4NotablesGainXRandomRareMonsterModsOnKill = 2877, - + LocalUniqueJewelWith4NotablesGainXRandomRareMonsterModsOnKill = 2878, + /// /// minimum_added_fire_damage_per_active_buff /// - MinimumAddedFireDamagePerActiveBuff = 2878, - + MinimumAddedFireDamagePerActiveBuff = 2879, + /// /// maximum_added_fire_damage_per_active_buff /// - MaximumAddedFireDamagePerActiveBuff = 2879, - + MaximumAddedFireDamagePerActiveBuff = 2880, + /// /// recover_%_of_maximum_life_on_block /// - RecoverPctOfMaximumLifeOnBlock = 2880, - + RecoverPctOfMaximumLifeOnBlock = 2881, + /// /// minion_recover_%_of_maximum_life_on_block /// - MinionRecoverPctOfMaximumLifeOnBlock = 2881, - + MinionRecoverPctOfMaximumLifeOnBlock = 2882, + /// /// totems_cannot_be_stunned /// - TotemsCannotBeStunned = 2882, - + TotemsCannotBeStunned = 2883, + /// /// is_leeching /// - IsLeeching = 2883, - + IsLeeching = 2884, + /// /// damage_+%_while_leeching /// - DamagePctWhileLeeching = 2884, - + DamagePctWhileLeeching = 2885, + /// /// is_life_leeching /// - IsLifeLeeching = 2885, - + IsLifeLeeching = 2886, + /// /// is_mana_leeching /// - IsManaLeeching = 2886, - + IsManaLeeching = 2887, + /// /// is_es_leeching /// - IsEsLeeching = 2887, - + IsEsLeeching = 2888, + /// /// movement_velocity_+%_while_ignited /// - MovementVelocityPctWhileIgnited = 2888, - + MovementVelocityPctWhileIgnited = 2889, + /// /// bow_damage_+% /// - BowDamagePct = 2889, - + BowDamagePct = 2890, + /// /// display_bow_range_+ /// - DisplayBowRange = 2890, - + DisplayBowRange = 2891, + /// /// bleed_on_bow_attack_chance_% /// - BleedOnBowAttackChancePct = 2891, - + BleedOnBowAttackChancePct = 2892, + /// /// bow_physical_damage_+%_while_holding_shield /// - BowPhysicalDamagePctWhileHoldingShield = 2892, - + BowPhysicalDamagePctWhileHoldingShield = 2893, + /// /// bow_steal_power_frenzy_endurance_charges_on_hit_% /// - BowStealPowerFrenzyEnduranceChargesOnHitPct = 2893, - + BowStealPowerFrenzyEnduranceChargesOnHitPct = 2894, + /// /// life_leech_from_physical_damage_with_bow_permyriad /// - LifeLeechFromPhysicalDamageWithBowPermyriad = 2894, - + LifeLeechFromPhysicalDamageWithBowPermyriad = 2895, + /// /// mana_leech_from_physical_damage_with_bow_permyriad /// - ManaLeechFromPhysicalDamageWithBowPermyriad = 2895, - + ManaLeechFromPhysicalDamageWithBowPermyriad = 2896, + /// /// poison_on_critical_strike_with_bow /// - PoisonOnCriticalStrikeWithBow = 2896, - + PoisonOnCriticalStrikeWithBow = 2897, + /// /// bow_elemental_damage_+% /// - BowElementalDamagePct = 2897, - + BowElementalDamagePct = 2898, + /// /// with_bow_additional_block_% /// - WithBowAdditionalBlockPct = 2898, - + WithBowAdditionalBlockPct = 2899, + /// /// bow_enemy_block_-% /// - BowEnemyBlockPct = 2899, - + BowEnemyBlockPct = 2900, + /// /// local_unique_jewel_melee_applies_to_bow /// - LocalUniqueJewelMeleeAppliesToBow = 2900, - + LocalUniqueJewelMeleeAppliesToBow = 2901, + /// /// local_unique_jewel_chaos_damage_+%_per_10_int_in_radius /// - LocalUniqueJewelChaosDamagePctPer10IntInRadius = 2901, - + LocalUniqueJewelChaosDamagePctPer10IntInRadius = 2902, + /// /// local_unique_jewel_passives_in_radius_applied_to_minions_instead /// - LocalUniqueJewelPassivesInRadiusAppliedToMinionsInstead = 2902, - + LocalUniqueJewelPassivesInRadiusAppliedToMinionsInstead = 2903, + /// /// life_gained_on_hit_per_enemy_status_ailment /// - LifeGainedOnHitPerEnemyStatusAilment = 2903, - + LifeGainedOnHitPerEnemyStatusAilment = 2904, + /// /// life_gained_on_spell_hit_per_enemy_status_ailment /// - LifeGainedOnSpellHitPerEnemyStatusAilment = 2904, - + LifeGainedOnSpellHitPerEnemyStatusAilment = 2905, + /// /// life_regeneration_rate_+%_while_es_full /// - LifeRegenerationRatePctWhileEsFull = 2905, - + LifeRegenerationRatePctWhileEsFull = 2906, + /// /// local_unique_jewel_with_x_int_in_radius_+1_curse /// - LocalUniqueJewelWithXIntInRadius1Curse = 2906, - + LocalUniqueJewelWithXIntInRadius1Curse = 2907, + /// /// melee_range_+_while_unarmed /// - MeleeRangeWhileUnarmed = 2907, - + MeleeRangeWhileUnarmed = 2908, + /// /// damage_+%_per_equipped_magic_item /// - DamagePctPerEquippedMagicItem = 2908, - + DamagePctPerEquippedMagicItem = 2909, + /// /// number_of_equipped_magic_items /// - NumberOfEquippedMagicItems = 2909, - + NumberOfEquippedMagicItems = 2910, + /// /// base_number_of_golems_allowed /// - BaseNumberOfGolemsAllowed = 2910, - + BaseNumberOfGolemsAllowed = 2911, + /// /// number_of_golems_allowed /// - NumberOfGolemsAllowed = 2911, - + NumberOfGolemsAllowed = 2912, + /// /// fire_golem_grants_damage_+% /// - FireGolemGrantsDamagePct = 2912, - + FireGolemGrantsDamagePct = 2913, + /// /// ice_golem_grants_critical_strike_chance_+% /// - IceGolemGrantsCriticalStrikeChancePct = 2913, - + IceGolemGrantsCriticalStrikeChancePct = 2914, + /// /// ice_golem_grants_accuracy_+% /// - IceGolemGrantsAccuracyPct = 2914, - + IceGolemGrantsAccuracyPct = 2915, + /// /// chaos_golem_grants_additional_physical_damage_reduction_% /// - ChaosGolemGrantsAdditionalPhysicalDamageReductionPct = 2915, - + ChaosGolemGrantsAdditionalPhysicalDamageReductionPct = 2916, + /// /// spell_damage_+%_while_es_full /// - SpellDamagePctWhileEsFull = 2916, - + SpellDamagePctWhileEsFull = 2917, + /// /// virtual_number_of_additional_projectiles /// - VirtualNumberOfAdditionalProjectiles = 2917, - + VirtualNumberOfAdditionalProjectiles = 2918, + /// /// totem_number_of_additional_projectiles /// - TotemNumberOfAdditionalProjectiles = 2918, - + TotemNumberOfAdditionalProjectiles = 2919, + /// /// chance_to_dodge_spells_%_while_es_full /// - ChanceToDodgeSpellsPctWhileEsFull = 2919, - + ChanceToDodgeSpellsPctWhileEsFull = 2920, + /// /// chance_to_gain_unholy_might_on_melee_kill_% /// - ChanceToGainUnholyMightOnMeleeKillPct = 2920, - + ChanceToGainUnholyMightOnMeleeKillPct = 2921, + /// /// spell_damage_+%_while_no_mana_reserved /// - SpellDamagePctWhileNoManaReserved = 2921, - + SpellDamagePctWhileNoManaReserved = 2922, + /// /// mana_reserved /// - ManaReserved = 2922, - + ManaReserved = 2923, + /// /// spell_damage_+%_while_not_low_mana /// - SpellDamagePctWhileNotLowMana = 2923, - + SpellDamagePctWhileNotLowMana = 2924, + /// /// mana_cost_+%_while_not_low_mana /// - ManaCostPctWhileNotLowMana = 2924, - + ManaCostPctWhileNotLowMana = 2925, + /// /// local_display_grants_skill_icestorm_level /// - LocalDisplayGrantsSkillIcestormLevel = 2925, - + LocalDisplayGrantsSkillIcestormLevel = 2926, + /// /// spell_damage_+%_per_10_int /// - SpellDamagePctPer10Int = 2926, - + SpellDamagePctPer10Int = 2927, + /// /// virtual_firestorm_drop_chilled_ground_duration_ms /// - VirtualFirestormDropChilledGroundDurationMs = 2927, - + VirtualFirestormDropChilledGroundDurationMs = 2928, + /// /// virtual_firestorm_drop_shocked_ground_duration_ms /// - VirtualFirestormDropShockedGroundDurationMs = 2928, - + VirtualFirestormDropShockedGroundDurationMs = 2929, + /// /// virtual_firestorm_drop_burning_ground_duration_ms /// - VirtualFirestormDropBurningGroundDurationMs = 2929, - + VirtualFirestormDropBurningGroundDurationMs = 2930, + /// /// number_of_assigned_keystones /// - NumberOfAssignedKeystones = 2930, - + NumberOfAssignedKeystones = 2931, + /// /// all_attributes_+%_per_assigned_keystone /// - AllAttributesPctPerAssignedKeystone = 2931, - + AllAttributesPctPerAssignedKeystone = 2932, + /// /// number_of_additional_clones /// - NumberOfAdditionalClones = 2932, - + NumberOfAdditionalClones = 2933, + /// /// damage_taken_+%_from_hits /// - DamageTakenPctFromHits = 2933, - + DamageTakenPctFromHits = 2934, + /// /// chance_to_gain_frenzy_charge_on_killing_frozen_enemy_% /// - ChanceToGainFrenzyChargeOnKillingFrozenEnemyPct = 2934, - + ChanceToGainFrenzyChargeOnKillingFrozenEnemyPct = 2935, + /// /// damage_+%_vs_frozen_enemies /// - DamagePctVsFrozenEnemies = 2935, - + DamagePctVsFrozenEnemies = 2936, + /// /// support_hypothermia_damage_+%_vs_chilled_enemies_final /// - SupportHypothermiaDamagePctVsChilledEnemiesFinal = 2936, - + SupportHypothermiaDamagePctVsChilledEnemiesFinal = 2937, + /// /// additional_chance_to_freeze_chilled_enemies_% /// - AdditionalChanceToFreezeChilledEnemiesPct = 2937, - + AdditionalChanceToFreezeChilledEnemiesPct = 2938, + /// /// onslaught_time_granted_on_killing_shocked_enemy_ms /// - OnslaughtTimeGrantedOnKillingShockedEnemyMs = 2938, - + OnslaughtTimeGrantedOnKillingShockedEnemyMs = 2939, + /// /// support_hypothermia_damage_+%_final /// - SupportHypothermiaDamagePctFinal = 2939, - + SupportHypothermiaDamagePctFinal = 2940, + /// /// object_inherent_attack_skills_damage_+%_final_per_frenzy_charge /// - ObjectInherentAttackSkillsDamagePctFinalPerFrenzyCharge = 2940, - + ObjectInherentAttackSkillsDamagePctFinalPerFrenzyCharge = 2941, + /// /// skill_effect_duration_per_100_int /// - SkillEffectDurationPer100Int = 2941, - + SkillEffectDurationPer100Int = 2942, + /// /// local_unique_jewel_intelligence_per_unallocated_node_in_radius /// - LocalUniqueJewelIntelligencePerUnallocatedNodeInRadius = 2942, - + LocalUniqueJewelIntelligencePerUnallocatedNodeInRadius = 2943, + /// /// local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_% /// - LocalUniqueJewelWith70DexPhysicalDamageToAddAsChaosPct = 2943, - + LocalUniqueJewelWith70DexPhysicalDamageToAddAsChaosPct = 2944, + /// /// local_unique_jewel_with_70_str_life_recovery_speed_+% /// - LocalUniqueJewelWith70StrLifeRecoverySpeedPct = 2944, - + LocalUniqueJewelWith70StrLifeRecoverySpeedPct = 2945, + /// /// cannot_be_cursed_with_silence /// - CannotBeCursedWithSilence = 2945, - + CannotBeCursedWithSilence = 2946, + /// /// number_of_equipped_corrupted_items /// - NumberOfEquippedCorruptedItems = 2946, - + NumberOfEquippedCorruptedItems = 2947, + /// /// vaal_skill_damage_+% /// - VaalSkillDamagePct = 2947, - + VaalSkillDamagePct = 2948, + /// /// skill_is_vaal_skill /// - SkillIsVaalSkill = 2948, - + SkillIsVaalSkill = 2949, + /// /// damage_+%_while_dead /// - DamagePctWhileDead = 2949, - + DamagePctWhileDead = 2950, + /// /// chaos_damage_+%_per_equipped_corrupted_item /// - ChaosDamagePctPerEquippedCorruptedItem = 2950, - + ChaosDamagePctPerEquippedCorruptedItem = 2951, + /// /// life_leech_speed_+%_per_equipped_corrupted_item /// - LifeLeechSpeedPctPerEquippedCorruptedItem = 2951, - + LifeLeechSpeedPctPerEquippedCorruptedItem = 2952, + /// /// virtual_life_leech_speed_+% /// - VirtualLifeLeechSpeedPct = 2952, - + VirtualLifeLeechSpeedPct = 2953, + /// /// mana_leech_speed_+%_per_equipped_corrupted_item /// - ManaLeechSpeedPctPerEquippedCorruptedItem = 2953, - + ManaLeechSpeedPctPerEquippedCorruptedItem = 2954, + /// /// virtual_mana_leech_speed_+% /// - VirtualManaLeechSpeedPct = 2954, - + VirtualManaLeechSpeedPct = 2955, + /// /// skill_is_attack /// - SkillIsAttack = 2955, - + SkillIsAttack = 2956, + /// /// hundred_times_non_spell_casts_per_second /// - HundredTimesNonSpellCastsPerSecond = 2956, - + HundredTimesNonSpellCastsPerSecond = 2957, + /// /// sound_on_rare_kill_ice_whisper /// - SoundOnRareKillIceWhisper = 2957, - + SoundOnRareKillIceWhisper = 2958, + /// /// chance_to_gain_vaal_soul_on_kill_% /// - ChanceToGainVaalSoulOnKillPct = 2958, - + ChanceToGainVaalSoulOnKillPct = 2959, + /// /// piety_fire_form_hits_cause_stacking_damage_taken /// - PietyFireFormHitsCauseStackingDamageTaken = 2959, - + PietyFireFormHitsCauseStackingDamageTaken = 2960, + /// /// vaal_skill_effect_duration_+% /// - VaalSkillEffectDurationPct = 2960, - + VaalSkillEffectDurationPct = 2961, + /// /// energy_shield_protects_mana /// - EnergyShieldProtectsMana = 2961, - + EnergyShieldProtectsMana = 2962, + /// /// spend_energy_shield_for_costs_before_mana /// - SpendEnergyShieldForCostsBeforeMana = 2962, - + SpendEnergyShieldForCostsBeforeMana = 2963, + /// /// vaal_skill_critical_strike_chance_+% /// - VaalSkillCriticalStrikeChancePct = 2963, - + VaalSkillCriticalStrikeChancePct = 2964, + /// /// local_unique_item_limit /// - LocalUniqueItemLimit = 2964, - + LocalUniqueItemLimit = 2965, + /// /// vaal_skill_critical_strike_multiplier_+ /// - VaalSkillCriticalStrikeMultiplier = 2965, - + VaalSkillCriticalStrikeMultiplier = 2966, + /// /// local_display_aura_allies_have_culling_strike /// - LocalDisplayAuraAlliesHaveCullingStrike = 2966, - + LocalDisplayAuraAlliesHaveCullingStrike = 2967, + /// /// local_display_aura_allies_have_increased_item_rarity_+% /// - LocalDisplayAuraAlliesHaveIncreasedItemRarityPct = 2967, - + LocalDisplayAuraAlliesHaveIncreasedItemRarityPct = 2968, + /// /// chance_to_gain_vaal_soul_on_enemy_shatter_% /// - ChanceToGainVaalSoulOnEnemyShatterPct = 2968, - + ChanceToGainVaalSoulOnEnemyShatterPct = 2969, + /// /// mana_cost_+%_on_totemified_aura_skills /// - ManaCostPctOnTotemifiedAuraSkills = 2969, - + ManaCostPctOnTotemifiedAuraSkills = 2970, + /// /// skill_is_aura_skill /// - SkillIsAuraSkill = 2970, - + SkillIsAuraSkill = 2971, + /// /// corrupted_gem_experience_gain_+% /// - CorruptedGemExperienceGainPct = 2971, - + CorruptedGemExperienceGainPct = 2972, + /// /// active_skill_attack_damage_final_permyriad /// - ActiveSkillAttackDamageFinalPermyriad = 2972, - + ActiveSkillAttackDamageFinalPermyriad = 2973, + /// /// fortify_duration_+% /// - FortifyDurationPct = 2973, - + FortifyDurationPct = 2974, + /// /// support_slower_projectiles_damage_+%_final /// - SupportSlowerProjectilesDamagePctFinal = 2974, - + SupportSlowerProjectilesDamagePctFinal = 2975, + /// /// chance_to_evade_melee_attacks_+% /// - ChanceToEvadeMeleeAttacksPct = 2975, - + ChanceToEvadeMeleeAttacksPct = 2976, + /// /// support_elemental_proliferation_damage_+%_final /// - SupportElementalProliferationDamagePctFinal = 2976, - + SupportElementalProliferationDamagePctFinal = 2977, + /// /// flicker_strike_more_attack_speed_+%_final /// - FlickerStrikeMoreAttackSpeedPctFinal = 2977, - + FlickerStrikeMoreAttackSpeedPctFinal = 2978, + /// /// support_minion_damage_+%_final /// - SupportMinionDamagePctFinal = 2978, - + SupportMinionDamagePctFinal = 2979, + /// /// life_leech_uses_chaos_damage_when_X_corrupted_items_equipped /// - LifeLeechUsesChaosDamageWhenXCorruptedItemsEquipped = 2979, - + LifeLeechUsesChaosDamageWhenXCorruptedItemsEquipped = 2980, + /// /// half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped /// - HalfPhysicalBypassesEsHalfChaosDamagesEsWhenXCorruptedItemsEquipped = 2980, - + HalfPhysicalBypassesEsHalfChaosDamagesEsWhenXCorruptedItemsEquipped = 2981, + /// /// chaos_damage_damages_energy_shield_% /// - ChaosDamageDamagesEnergyShieldPct = 2981, - + ChaosDamageDamagesEnergyShieldPct = 2982, + /// /// physical_damage_bypass_energy_shield_% /// - PhysicalDamageBypassEnergyShieldPct = 2982, - + PhysicalDamageBypassEnergyShieldPct = 2983, + /// /// gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms /// - GainSoulEaterWithEquippedCorruptedItemsOnVaalSkillUseMs = 2983, - + GainSoulEaterWithEquippedCorruptedItemsOnVaalSkillUseMs = 2984, + /// /// base_spell_lightning_damage_+% /// - BaseSpellLightningDamagePct = 2984, - + BaseSpellLightningDamagePct = 2985, + /// /// wrath_aura_spell_lightning_damage_+%_final /// - WrathAuraSpellLightningDamagePctFinal = 2985, - + WrathAuraSpellLightningDamagePctFinal = 2986, + /// /// support_slower_projectiles_projectile_speed_+%_final /// - SupportSlowerProjectilesProjectileSpeedPctFinal = 2986, - + SupportSlowerProjectilesProjectileSpeedPctFinal = 2987, + /// /// support_reduced_duration_skill_effect_duration_+%_final /// - SupportReducedDurationSkillEffectDurationPctFinal = 2987, - + SupportReducedDurationSkillEffectDurationPctFinal = 2988, + /// /// maximum_mana_%_gained_on_kill /// - MaximumManaPctGainedOnKill = 2988, - + MaximumManaPctGainedOnKill = 2989, + /// /// maximum_life_%_lost_on_kill /// - MaximumLifePctLostOnKill = 2989, - + MaximumLifePctLostOnKill = 2990, + /// /// maximum_energy_shield_%_lost_on_kill /// - MaximumEnergyShieldPctLostOnKill = 2990, - + MaximumEnergyShieldPctLostOnKill = 2991, + /// /// passive_applies_to_minions /// - PassiveAppliesToMinions = 2991, - + PassiveAppliesToMinions = 2992, + /// /// chance_to_curse_self_with_punishment_on_kill_% /// - ChanceToCurseSelfWithPunishmentOnKillPct = 2992, - + ChanceToCurseSelfWithPunishmentOnKillPct = 2993, + /// /// damage_taken_+%_while_es_full /// - DamageTakenPctWhileEsFull = 2993, - + DamageTakenPctWhileEsFull = 2994, + /// /// base_deal_no_damage /// - BaseDealNoDamage = 2994, - + BaseDealNoDamage = 2995, + /// /// voll_slam_damage_+%_final_at_centre /// - VollSlamDamagePctFinalAtCentre = 2995, - + VollSlamDamagePctFinalAtCentre = 2996, + /// /// local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius /// - LocalUniqueJewelEvasionRatingPctPerXDexInRadius = 2996, - + LocalUniqueJewelEvasionRatingPctPerXDexInRadius = 2997, + /// /// local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius /// - LocalUniqueJewelClawPhysicalDamagePctPerXDexInRadius = 2997, - + LocalUniqueJewelClawPhysicalDamagePctPerXDexInRadius = 2998, + /// /// local_unique_jewel_damage_increases_applies_to_fire_damage /// - LocalUniqueJewelDamageIncreasesAppliesToFireDamage = 2998, - + LocalUniqueJewelDamageIncreasesAppliesToFireDamage = 2999, + /// /// fire_sword_damage_+% /// - FireSwordDamagePct = 2999, - + FireSwordDamagePct = 3000, + /// /// fire_wand_damage_+% /// - FireWandDamagePct = 3000, - + FireWandDamagePct = 3001, + /// /// two_handed_melee_fire_damage_+% /// - TwoHandedMeleeFireDamagePct = 3001, - + TwoHandedMeleeFireDamagePct = 3002, + /// /// spell_fire_damage_+% /// - SpellFireDamagePct = 3002, - + SpellFireDamagePct = 3003, + /// /// melee_fire_damage_+%_while_holding_shield /// - MeleeFireDamagePctWhileHoldingShield = 3003, - + MeleeFireDamagePctWhileHoldingShield = 3004, + /// /// fire_staff_damage_+% /// - FireStaffDamagePct = 3004, - + FireStaffDamagePct = 3005, + /// /// fire_mace_damage_+% /// - FireMaceDamagePct = 3005, - + FireMaceDamagePct = 3006, + /// /// fire_damage_while_dual_wielding_+% /// - FireDamageWhileDualWieldingPct = 3006, - + FireDamageWhileDualWieldingPct = 3007, + /// /// fire_dagger_damage_+% /// - FireDaggerDamagePct = 3007, - + FireDaggerDamagePct = 3008, + /// /// fire_claw_damage_+% /// - FireClawDamagePct = 3008, - + FireClawDamagePct = 3009, + /// /// fire_bow_damage_+% /// - FireBowDamagePct = 3009, - + FireBowDamagePct = 3010, + /// /// fire_axe_damage_+% /// - FireAxeDamagePct = 3010, - + FireAxeDamagePct = 3011, + /// /// fire_attack_damage_+% /// - FireAttackDamagePct = 3011, - + FireAttackDamagePct = 3012, + /// /// one_handed_melee_fire_damage_+% /// - OneHandedMeleeFireDamagePct = 3012, - + OneHandedMeleeFireDamagePct = 3013, + /// /// melee_fire_damage_+% /// - MeleeFireDamagePct = 3013, - + MeleeFireDamagePct = 3014, + /// /// fire_damage_over_time_+% /// - FireDamageOverTimePct = 3014, - + FireDamageOverTimePct = 3015, + /// /// local_unique_jewel_physical_damage_increases_applies_to_cold_damage /// - LocalUniqueJewelPhysicalDamageIncreasesAppliesToColdDamage = 3015, - + LocalUniqueJewelPhysicalDamageIncreasesAppliesToColdDamage = 3016, + /// /// cold_sword_damage_+% /// - ColdSwordDamagePct = 3016, - + ColdSwordDamagePct = 3017, + /// /// cold_wand_damage_+% /// - ColdWandDamagePct = 3017, - + ColdWandDamagePct = 3018, + /// /// two_handed_melee_cold_damage_+% /// - TwoHandedMeleeColdDamagePct = 3018, - + TwoHandedMeleeColdDamagePct = 3019, + /// /// spell_cold_damage_+% /// - SpellColdDamagePct = 3019, - + SpellColdDamagePct = 3020, + /// /// melee_cold_damage_+%_while_holding_shield /// - MeleeColdDamagePctWhileHoldingShield = 3020, - + MeleeColdDamagePctWhileHoldingShield = 3021, + /// /// cold_staff_damage_+% /// - ColdStaffDamagePct = 3021, - + ColdStaffDamagePct = 3022, + /// /// cold_mace_damage_+% /// - ColdMaceDamagePct = 3022, - + ColdMaceDamagePct = 3023, + /// /// cold_damage_while_dual_wielding_+% /// - ColdDamageWhileDualWieldingPct = 3023, - + ColdDamageWhileDualWieldingPct = 3024, + /// /// cold_dagger_damage_+% /// - ColdDaggerDamagePct = 3024, - + ColdDaggerDamagePct = 3025, + /// /// cold_claw_damage_+% /// - ColdClawDamagePct = 3025, - + ColdClawDamagePct = 3026, + /// /// cold_bow_damage_+% /// - ColdBowDamagePct = 3026, - + ColdBowDamagePct = 3027, + /// /// cold_axe_damage_+% /// - ColdAxeDamagePct = 3027, - + ColdAxeDamagePct = 3028, + /// /// cold_attack_damage_+% /// - ColdAttackDamagePct = 3028, - + ColdAttackDamagePct = 3029, + /// /// one_handed_melee_cold_damage_+% /// - OneHandedMeleeColdDamagePct = 3029, - + OneHandedMeleeColdDamagePct = 3030, + /// /// melee_cold_damage_+% /// - MeleeColdDamagePct = 3030, - + MeleeColdDamagePct = 3031, + /// /// cold_damage_over_time_+% /// - ColdDamageOverTimePct = 3031, - + ColdDamageOverTimePct = 3032, + /// /// additional_staff_block_% /// - AdditionalStaffBlockPct = 3032, - + AdditionalStaffBlockPct = 3033, + /// /// local_unique_jewel_cold_damage_increases_applies_to_physical_damage /// - LocalUniqueJewelColdDamageIncreasesAppliesToPhysicalDamage = 3033, - + LocalUniqueJewelColdDamageIncreasesAppliesToPhysicalDamage = 3034, + /// /// local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex /// - LocalUniqueJewelOneAdditionalMaximumLightningDamagePerXDex = 3034, - + LocalUniqueJewelOneAdditionalMaximumLightningDamagePerXDex = 3035, + /// /// local_unique_jewel_additional_life_per_X_int_in_radius /// - LocalUniqueJewelAdditionalLifePerXIntInRadius = 3035, - + LocalUniqueJewelAdditionalLifePerXIntInRadius = 3036, + /// /// local_unique_jewel_chaos_damage_+%_per_X_int_in_radius /// - LocalUniqueJewelChaosDamagePctPerXIntInRadius = 3036, - + LocalUniqueJewelChaosDamagePctPerXIntInRadius = 3037, + /// /// local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius /// - LocalUniqueJewelChillFreezeDurationPctPerXDexInRadius = 3037, - + LocalUniqueJewelChillFreezeDurationPctPerXDexInRadius = 3038, + /// /// local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius /// - LocalUniqueJewelDexAndIntApplyToStrMeleeDamageBonusInRadius = 3038, - + LocalUniqueJewelDexAndIntApplyToStrMeleeDamageBonusInRadius = 3039, + /// /// melee_damage_bonus_attributes_from_jewels /// - MeleeDamageBonusAttributesFromJewels = 3039, - + MeleeDamageBonusAttributesFromJewels = 3040, + /// /// kaom_number_of_spawners_triggered /// - KaomNumberOfSpawnersTriggered = 3040, - + KaomNumberOfSpawnersTriggered = 3041, + /// /// melee_damage_vs_bleeding_enemies_+% /// - MeleeDamageVsBleedingEnemiesPct = 3041, - + MeleeDamageVsBleedingEnemiesPct = 3042, + /// /// number_of_active_buffs /// - NumberOfActiveBuffs = 3042, - + NumberOfActiveBuffs = 3043, + /// /// fire_mortar_second_hit_damage_+%_final /// - FireMortarSecondHitDamagePctFinal = 3043, - + FireMortarSecondHitDamagePctFinal = 3044, + /// /// support_trap_and_mine_damage_+%_final /// - SupportTrapAndMineDamagePctFinal = 3044, - + SupportTrapAndMineDamagePctFinal = 3045, + /// /// active_skill_minion_added_damage_+%_final /// - ActiveSkillMinionAddedDamagePctFinal = 3045, - + ActiveSkillMinionAddedDamagePctFinal = 3046, + /// /// minion_added_damage_+%_final_from_skill /// - MinionAddedDamagePctFinalFromSkill = 3046, - + MinionAddedDamagePctFinalFromSkill = 3047, + /// /// newpunishment_melee_physical_damage_+%_final /// - NewpunishmentMeleePhysicalDamagePctFinal = 3047, - + NewpunishmentMeleePhysicalDamagePctFinal = 3048, + /// /// physical_damage_+%_while_life_leeching /// - PhysicalDamagePctWhileLifeLeeching = 3048, - + PhysicalDamagePctWhileLifeLeeching = 3049, + /// /// spell_staff_damage_+% /// - SpellStaffDamagePct = 3049, - + SpellStaffDamagePct = 3050, + /// /// spell_damage_+%_while_holding_shield /// - SpellDamagePctWhileHoldingShield = 3050, - + SpellDamagePctWhileHoldingShield = 3051, + /// /// spell_damage_+%_while_dual_wielding /// - SpellDamagePctWhileDualWielding = 3051, - + SpellDamagePctWhileDualWielding = 3052, + /// /// cyclone_places_ground_fire_damage_per_minute /// - CyclonePlacesGroundFireDamagePerMinute = 3052, - + CyclonePlacesGroundFireDamagePerMinute = 3053, + /// /// newpunishment_melee_damage_+%_final /// - NewpunishmentMeleeDamagePctFinal = 3053, - + NewpunishmentMeleeDamagePctFinal = 3054, + /// /// newpunishment_attack_speed_+% /// - NewpunishmentAttackSpeedPct = 3054, - + NewpunishmentAttackSpeedPct = 3055, + /// /// base_strength_and_dexterity /// - BaseStrengthAndDexterity = 3055, - + BaseStrengthAndDexterity = 3056, + /// /// base_strength_and_intelligence /// - BaseStrengthAndIntelligence = 3056, - + BaseStrengthAndIntelligence = 3057, + /// /// base_dexterity_and_intelligence /// - BaseDexterityAndIntelligence = 3057, - + BaseDexterityAndIntelligence = 3058, + /// /// base_physical_damage_%_of_maximum_life_to_deal_per_minute /// - BasePhysicalDamagePctOfMaximumLifeToDealPerMinute = 3058, - + BasePhysicalDamagePctOfMaximumLifeToDealPerMinute = 3059, + /// /// has_fortify /// - HasFortify = 3059, - + HasFortify = 3060, + /// /// physical_damage_reduction_rating_+%_while_fortify_is_active /// - PhysicalDamageReductionRatingPctWhileFortifyIsActive = 3060, - + PhysicalDamageReductionRatingPctWhileFortifyIsActive = 3061, + /// /// evasion_rating_+%_while_onslaught_is_active /// - EvasionRatingPctWhileOnslaughtIsActive = 3061, - + EvasionRatingPctWhileOnslaughtIsActive = 3062, + /// /// fortify_effect_+% /// - FortifyEffectPct = 3062, - + FortifyEffectPct = 3063, + /// /// melee_physical_damage_+%_while_fortify_is_active /// - MeleePhysicalDamagePctWhileFortifyIsActive = 3063, - + MeleePhysicalDamagePctWhileFortifyIsActive = 3064, + /// /// local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius /// - LocalUniqueJewelUnarmedDamagePctPerXDexInRadius = 3064, - + LocalUniqueJewelUnarmedDamagePctPerXDexInRadius = 3065, + /// /// increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem /// - IncreasedCriticalStrikeChanceBuffForXMillisecondsOnPlacingATotem = 3065, - + IncreasedCriticalStrikeChanceBuffForXMillisecondsOnPlacingATotem = 3066, + /// /// %_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy /// - PctChanceToGainPowerChargeOnTrapTriggeredByAnEnemy = 3066, - + PctChanceToGainPowerChargeOnTrapTriggeredByAnEnemy = 3067, + /// /// %_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy /// - PctChanceToGainPowerChargeOnMineDetonatedTargetingAnEnemy = 3067, - + PctChanceToGainPowerChargeOnMineDetonatedTargetingAnEnemy = 3068, + /// /// totem_critical_strike_chance_+% /// - TotemCriticalStrikeChancePct = 3068, - + TotemCriticalStrikeChancePct = 3069, + /// /// totem_critical_strike_multiplier_+ /// - TotemCriticalStrikeMultiplier = 3069, - + TotemCriticalStrikeMultiplier = 3070, + /// /// damage_+%_per_active_curse_on_self /// - DamagePctPerActiveCurseOnSelf = 3070, - + DamagePctPerActiveCurseOnSelf = 3071, + /// /// map_force_topology /// - MapForceTopology = 3071, - + MapForceTopology = 3072, + /// /// maximum_life_leech_rate_%_per_minute /// - MaximumLifeLeechRatePctPerMinute = 3072, - + MaximumLifeLeechRatePctPerMinute = 3073, + /// /// maximum_mana_leech_rate_%_per_minute /// - MaximumManaLeechRatePctPerMinute = 3073, - + MaximumManaLeechRatePctPerMinute = 3074, + /// /// chill_enemy_when_hit_duration_ms /// - ChillEnemyWhenHitDurationMs = 3074, - + ChillEnemyWhenHitDurationMs = 3075, + /// /// ice_crash_third_hit_damage_+%_final /// - IceCrashThirdHitDamagePctFinal = 3075, - + IceCrashThirdHitDamagePctFinal = 3076, + /// /// newpunishment_applied_buff_duration_ms /// - NewpunishmentAppliedBuffDurationMs = 3076, - + NewpunishmentAppliedBuffDurationMs = 3077, + /// /// recover_X_life_on_block /// - RecoverXLifeOnBlock = 3077, - + RecoverXLifeOnBlock = 3078, + /// /// minion_recover_X_life_on_block /// - MinionRecoverXLifeOnBlock = 3078, - + MinionRecoverXLifeOnBlock = 3079, + /// /// base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute /// - BasePhysicalDamagePctOfMaximumEnergyShieldToDealPerMinute = 3079, - + BasePhysicalDamagePctOfMaximumEnergyShieldToDealPerMinute = 3080, + /// /// base_physical_damage_%_of_maximum_energy_shield_taken_per_minute /// - BasePhysicalDamagePctOfMaximumEnergyShieldTakenPerMinute = 3080, - + BasePhysicalDamagePctOfMaximumEnergyShieldTakenPerMinute = 3081, + /// /// minimum_added_fire_attack_damage_per_active_buff /// - MinimumAddedFireAttackDamagePerActiveBuff = 3081, - + MinimumAddedFireAttackDamagePerActiveBuff = 3082, + /// /// maximum_added_fire_attack_damage_per_active_buff /// - MaximumAddedFireAttackDamagePerActiveBuff = 3082, - + MaximumAddedFireAttackDamagePerActiveBuff = 3083, + /// /// minimum_added_fire_spell_damage_per_active_buff /// - MinimumAddedFireSpellDamagePerActiveBuff = 3083, - + MinimumAddedFireSpellDamagePerActiveBuff = 3084, + /// /// maximum_added_fire_spell_damage_per_active_buff /// - MaximumAddedFireSpellDamagePerActiveBuff = 3084, - + MaximumAddedFireSpellDamagePerActiveBuff = 3085, + /// /// revenant_revive_explode_damage_% /// - RevenantReviveExplodeDamagePct = 3085, - + RevenantReviveExplodeDamagePct = 3086, + /// /// new_arctic_armour_physical_damage_taken_when_hit_+%_final /// - NewArcticArmourPhysicalDamageTakenWhenHitPctFinal = 3086, - + NewArcticArmourPhysicalDamageTakenWhenHitPctFinal = 3087, + /// /// new_arctic_armour_fire_damage_taken_when_hit_+%_final /// - NewArcticArmourFireDamageTakenWhenHitPctFinal = 3087, - + NewArcticArmourFireDamageTakenWhenHitPctFinal = 3088, + /// /// firestorm_use_server_effects /// - FirestormUseServerEffects = 3088, - + FirestormUseServerEffects = 3089, + /// /// monster_no_map_drops /// - MonsterNoMapDrops = 3089, - + MonsterNoMapDrops = 3090, + /// /// Local Life Gain Per Target /// - LocalLifeGainPerTarget = 3090, - + LocalLifeGainPerTarget = 3091, + /// /// base_main_hand_local_life_gain_per_target /// - BaseMainHandLocalLifeGainPerTarget = 3091, - + BaseMainHandLocalLifeGainPerTarget = 3092, + /// /// base_off_hand_local_life_gain_per_target /// - BaseOffHandLocalLifeGainPerTarget = 3092, - + BaseOffHandLocalLifeGainPerTarget = 3093, + /// /// Local Mana Gain Per Target /// - LocalManaGainPerTarget = 3093, - + LocalManaGainPerTarget = 3094, + /// /// base_main_hand_local_mana_gain_per_target /// - BaseMainHandLocalManaGainPerTarget = 3094, - + BaseMainHandLocalManaGainPerTarget = 3095, + /// /// base_off_hand_local_mana_gain_per_target /// - BaseOffHandLocalManaGainPerTarget = 3095, - + BaseOffHandLocalManaGainPerTarget = 3096, + /// /// local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect /// - LocalUniqueChaosDamageDoesNotBypassEnergyShieldDuringFlaskEffect = 3096, - + LocalUniqueChaosDamageDoesNotBypassEnergyShieldDuringFlaskEffect = 3097, + /// /// local_unique_remove_life_and_regen_es_from_removed_life /// - LocalUniqueRemoveLifeAndRegenEsFromRemovedLife = 3097, - + LocalUniqueRemoveLifeAndRegenEsFromRemovedLife = 3098, + /// /// local_unique_regen_es_from_removed_life_duration_ms /// - LocalUniqueRegenEsFromRemovedLifeDurationMs = 3098, - + LocalUniqueRegenEsFromRemovedLifeDurationMs = 3099, + /// /// elemental_strike_physical_damage_%_to_convert /// - ElementalStrikePhysicalDamagePctToConvert = 3099, - + ElementalStrikePhysicalDamagePctToConvert = 3100, + /// /// main_hand_local_life_gain_per_target /// - MainHandLocalLifeGainPerTarget = 3100, - + MainHandLocalLifeGainPerTarget = 3101, + /// /// off_hand_local_life_gain_per_target /// - OffHandLocalLifeGainPerTarget = 3101, - + OffHandLocalLifeGainPerTarget = 3102, + /// /// local_life_and_mana_gain_per_target /// - LocalLifeAndManaGainPerTarget = 3102, - + LocalLifeAndManaGainPerTarget = 3103, + /// /// base_main_hand_local_life_and_mana_gain_per_target /// - BaseMainHandLocalLifeAndManaGainPerTarget = 3103, - + BaseMainHandLocalLifeAndManaGainPerTarget = 3104, + /// /// base_off_hand_local_life_and_mana_gain_per_target /// - BaseOffHandLocalLifeAndManaGainPerTarget = 3104, - + BaseOffHandLocalLifeAndManaGainPerTarget = 3105, + /// /// main_hand_local_mana_gain_per_target /// - MainHandLocalManaGainPerTarget = 3105, - + MainHandLocalManaGainPerTarget = 3106, + /// /// off_hand_local_mana_gain_per_target /// - OffHandLocalManaGainPerTarget = 3106, - + OffHandLocalManaGainPerTarget = 3107, + /// /// Local Life Leech From Physical Damage Permyriad /// - LocalLifeLeechFromPhysicalDamagePermyriad = 3107, - + LocalLifeLeechFromPhysicalDamagePermyriad = 3108, + /// /// main_hand_local_life_leech_from_physical_damage_permyriad /// - MainHandLocalLifeLeechFromPhysicalDamagePermyriad = 3108, - + MainHandLocalLifeLeechFromPhysicalDamagePermyriad = 3109, + /// /// off_hand_local_life_leech_from_physical_damage_permyriad /// - OffHandLocalLifeLeechFromPhysicalDamagePermyriad = 3109, - + OffHandLocalLifeLeechFromPhysicalDamagePermyriad = 3110, + /// /// local_mana_leech_from_physical_damage_permyriad /// - LocalManaLeechFromPhysicalDamagePermyriad = 3110, - + LocalManaLeechFromPhysicalDamagePermyriad = 3111, + /// /// main_hand_local_mana_leech_from_physical_damage_permyriad /// - MainHandLocalManaLeechFromPhysicalDamagePermyriad = 3111, - + MainHandLocalManaLeechFromPhysicalDamagePermyriad = 3112, + /// /// off_hand_local_mana_leech_from_physical_damage_permyriad /// - OffHandLocalManaLeechFromPhysicalDamagePermyriad = 3112, - + OffHandLocalManaLeechFromPhysicalDamagePermyriad = 3113, + /// /// life_leech_from_physical_attack_damage_permyriad /// - LifeLeechFromPhysicalAttackDamagePermyriad = 3113, - + LifeLeechFromPhysicalAttackDamagePermyriad = 3114, + /// /// mana_leech_from_physical_attack_damage_permyriad /// - ManaLeechFromPhysicalAttackDamagePermyriad = 3114, - + ManaLeechFromPhysicalAttackDamagePermyriad = 3115, + /// /// local_flask_life_leech_permyriad_while_healing /// - LocalFlaskLifeLeechPermyriadWhileHealing = 3115, - + LocalFlaskLifeLeechPermyriadWhileHealing = 3116, + /// /// local_flask_mana_leech_permyriad_while_healing /// - LocalFlaskManaLeechPermyriadWhileHealing = 3116, - + LocalFlaskManaLeechPermyriadWhileHealing = 3117, + /// /// base_life_leech_from_spell_damage_permyriad /// - BaseLifeLeechFromSpellDamagePermyriad = 3117, - + BaseLifeLeechFromSpellDamagePermyriad = 3118, + /// /// base_mana_leech_from_spell_damage_permyriad /// - BaseManaLeechFromSpellDamagePermyriad = 3118, - + BaseManaLeechFromSpellDamagePermyriad = 3119, + /// /// life_leech_from_spell_damage_permyriad /// - LifeLeechFromSpellDamagePermyriad = 3119, - + LifeLeechFromSpellDamagePermyriad = 3120, + /// /// mana_leech_from_spell_damage_permyriad /// - ManaLeechFromSpellDamagePermyriad = 3120, - + ManaLeechFromSpellDamagePermyriad = 3121, + /// /// mana_leech_from_physical_damage_permyriad_per_power_charge /// - ManaLeechFromPhysicalDamagePermyriadPerPowerCharge = 3121, - + ManaLeechFromPhysicalDamagePermyriadPerPowerCharge = 3122, + /// /// global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item /// - GlobalManaLeechFromPhysicalAttackDamagePermyriadPerBlueSocketOnItem = 3122, - + GlobalManaLeechFromPhysicalAttackDamagePermyriadPerBlueSocketOnItem = 3123, + /// /// base_mana_leech_permyriad_vs_shocked_enemies /// - BaseManaLeechPermyriadVsShockedEnemies = 3123, - + BaseManaLeechPermyriadVsShockedEnemies = 3124, + /// /// base_life_leech_permyriad_vs_frozen_enemies /// - BaseLifeLeechPermyriadVsFrozenEnemies = 3124, - + BaseLifeLeechPermyriadVsFrozenEnemies = 3125, + /// /// mana_leech_permyriad_vs_shocked_enemies /// - ManaLeechPermyriadVsShockedEnemies = 3125, - + ManaLeechPermyriadVsShockedEnemies = 3126, + /// /// life_leech_permyriad_vs_frozen_enemies /// - LifeLeechPermyriadVsFrozenEnemies = 3126, - + LifeLeechPermyriadVsFrozenEnemies = 3127, + /// /// base_life_leech_from_physical_damage_permyriad /// - BaseLifeLeechFromPhysicalDamagePermyriad = 3127, - + BaseLifeLeechFromPhysicalDamagePermyriad = 3128, + /// /// base_life_leech_from_fire_damage_permyriad /// - BaseLifeLeechFromFireDamagePermyriad = 3128, - + BaseLifeLeechFromFireDamagePermyriad = 3129, + /// /// base_life_leech_from_cold_damage_permyriad /// - BaseLifeLeechFromColdDamagePermyriad = 3129, - + BaseLifeLeechFromColdDamagePermyriad = 3130, + /// /// base_life_leech_from_lightning_damage_permyriad /// - BaseLifeLeechFromLightningDamagePermyriad = 3130, - + BaseLifeLeechFromLightningDamagePermyriad = 3131, + /// /// base_mana_leech_from_lightning_damage_permyriad /// - BaseManaLeechFromLightningDamagePermyriad = 3131, - + BaseManaLeechFromLightningDamagePermyriad = 3132, + /// /// local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing /// - LocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 3132, - + LocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 3133, + /// /// base_life_leech_from_elemental_damage_permyriad /// - BaseLifeLeechFromElementalDamagePermyriad = 3133, - + BaseLifeLeechFromElementalDamagePermyriad = 3134, + /// /// life_leech_permyriad_on_crit /// - LifeLeechPermyriadOnCrit = 3134, - + LifeLeechPermyriadOnCrit = 3135, + /// /// base_life_leech_permyriad_vs_shocked_enemies /// - BaseLifeLeechPermyriadVsShockedEnemies = 3135, - + BaseLifeLeechPermyriadVsShockedEnemies = 3136, + /// /// life_leech_permyriad_vs_shocked_enemies /// - LifeLeechPermyriadVsShockedEnemies = 3136, - + LifeLeechPermyriadVsShockedEnemies = 3137, + /// /// base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies /// - BaseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3137, - + BaseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3138, + /// /// life_leech_from_physical_damage_with_claw_permyriad /// - LifeLeechFromPhysicalDamageWithClawPermyriad = 3138, - + LifeLeechFromPhysicalDamageWithClawPermyriad = 3139, + /// /// minion_life_leech_from_any_damage_permyriad /// - MinionLifeLeechFromAnyDamagePermyriad = 3139, - + MinionLifeLeechFromAnyDamagePermyriad = 3140, + /// /// mana_leech_from_physical_damage_with_claw_permyriad /// - ManaLeechFromPhysicalDamageWithClawPermyriad = 3140, - + ManaLeechFromPhysicalDamageWithClawPermyriad = 3141, + /// /// life_leech_from_attack_damage_permyriad_vs_chilled_enemies /// - LifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3141, - + LifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3142, + /// /// map_summon_exploding_buff_storms /// - MapSummonExplodingBuffStorms = 3142, - + MapSummonExplodingBuffStorms = 3143, + /// /// map_items_have_random_quality /// - MapItemsHaveRandomQuality = 3143, - + MapItemsHaveRandomQuality = 3144, + /// /// map_summon_runic_circles /// - MapSummonRunicCircles = 3144, - + MapSummonRunicCircles = 3145, + /// /// map_spawn_warbands /// - MapSpawnWarbands = 3145, - + MapSpawnWarbands = 3146, + /// /// chance_to_gain_endurance_charge_on_bow_crit_% /// - ChanceToGainEnduranceChargeOnBowCritPct = 3146, - + ChanceToGainEnduranceChargeOnBowCritPct = 3147, + /// /// global_critical_strike_chance_+%_while_holding_bow /// - GlobalCriticalStrikeChancePctWhileHoldingBow = 3147, - + GlobalCriticalStrikeChancePctWhileHoldingBow = 3148, + /// /// global_critical_strike_multiplier_+_while_holding_bow /// - GlobalCriticalStrikeMultiplierWhileHoldingBow = 3148, - + GlobalCriticalStrikeMultiplierWhileHoldingBow = 3149, + /// /// map_spawn_extra_warbands /// - MapSpawnExtraWarbands = 3149, - + MapSpawnExtraWarbands = 3150, + /// /// soul_is_consumed_on_death /// - SoulIsConsumedOnDeath = 3150, - + SoulIsConsumedOnDeath = 3151, + /// /// some_passives_apply_to_minions /// - SomePassivesApplyToMinions = 3151, - + SomePassivesApplyToMinions = 3152, + /// /// damage_+%_with_movement_skills /// - DamagePctWithMovementSkills = 3152, - + DamagePctWithMovementSkills = 3153, + /// /// attack_speed_+%_with_movement_skills /// - AttackSpeedPctWithMovementSkills = 3153, - + AttackSpeedPctWithMovementSkills = 3154, + /// /// life_gained_on_killing_ignited_enemies /// - LifeGainedOnKillingIgnitedEnemies = 3154, - + LifeGainedOnKillingIgnitedEnemies = 3155, + /// /// damage_taken_+%_from_skeletons /// - DamageTakenPctFromSkeletons = 3155, - + DamageTakenPctFromSkeletons = 3156, + /// /// damage_taken_+%_from_ghosts /// - DamageTakenPctFromGhosts = 3156, - + DamageTakenPctFromGhosts = 3157, + /// /// skill_is_movement_skill /// - SkillIsMovementSkill = 3157, - + SkillIsMovementSkill = 3158, + /// /// cannot_be_shocked_while_frozen /// - CannotBeShockedWhileFrozen = 3158, - + CannotBeShockedWhileFrozen = 3159, + /// /// local_display_grants_skill_lightning_warp_level /// - LocalDisplayGrantsSkillLightningWarpLevel = 3159, - + LocalDisplayGrantsSkillLightningWarpLevel = 3160, + /// /// life_leech_from_attack_damage_permyriad_vs_bleeding_enemies /// - LifeLeechFromAttackDamagePermyriadVsBleedingEnemies = 3160, - + LifeLeechFromAttackDamagePermyriadVsBleedingEnemies = 3161, + /// /// number_of_additional_curses_allowed_on_self /// - NumberOfAdditionalCursesAllowedOnSelf = 3161, - + NumberOfAdditionalCursesAllowedOnSelf = 3162, + /// /// map_spawn_warband_fire /// - MapSpawnWarbandFire = 3162, - + MapSpawnWarbandFire = 3163, + /// /// map_spawn_warband_cold /// - MapSpawnWarbandCold = 3163, - + MapSpawnWarbandCold = 3164, + /// /// map_spawn_warband_thunder /// - MapSpawnWarbandThunder = 3164, - + MapSpawnWarbandThunder = 3165, + /// /// map_spawn_warband_chaos /// - MapSpawnWarbandChaos = 3165, - + MapSpawnWarbandChaos = 3166, + /// /// map_max_warband_rank /// - MapMaxWarbandRank = 3166, - + MapMaxWarbandRank = 3167, + /// /// monster_report_warband_destroyed_on_death /// - MonsterReportWarbandDestroyedOnDeath = 3167, - + MonsterReportWarbandDestroyedOnDeath = 3168, + /// /// trap_throw_arm_time_override /// - TrapThrowArmTimeOverride = 3168, - + TrapThrowArmTimeOverride = 3169, + /// /// item_rarity_+%_while_using_flask /// - ItemRarityPctWhileUsingFlask = 3169, - + ItemRarityPctWhileUsingFlask = 3170, + /// /// dropped_items_are_corrupted /// - DroppedItemsAreCorrupted = 3170, - + DroppedItemsAreCorrupted = 3171, + /// /// monster_dropped_non_unique_equipment_drops_as_sell_price /// - MonsterDroppedNonUniqueEquipmentDropsAsSellPrice = 3171, - + MonsterDroppedNonUniqueEquipmentDropsAsSellPrice = 3172, + /// /// monster_dropped_items_have_random_quality /// - MonsterDroppedItemsHaveRandomQuality = 3172, - + MonsterDroppedItemsHaveRandomQuality = 3173, + /// /// player_found_items_are_corrupted /// - PlayerFoundItemsAreCorrupted = 3173, - + PlayerFoundItemsAreCorrupted = 3174, + /// /// player_non_unique_equipment_found_as_sell_price /// - PlayerNonUniqueEquipmentFoundAsSellPrice = 3174, - + PlayerNonUniqueEquipmentFoundAsSellPrice = 3175, + /// /// player_found_items_have_random_quality /// - PlayerFoundItemsHaveRandomQuality = 3175, - + PlayerFoundItemsHaveRandomQuality = 3176, + /// /// map_storm_delay_+% /// - MapStormDelayPct = 3176, - + MapStormDelayPct = 3177, + /// /// map_storm_duration_+% /// - MapStormDurationPct = 3177, - + MapStormDurationPct = 3178, + /// /// map_storm_area_of_effect_+% /// - MapStormAreaOfEffectPct = 3178, - + MapStormAreaOfEffectPct = 3179, + /// /// map_storm_buff_duration_+% /// - MapStormBuffDurationPct = 3179, - + MapStormBuffDurationPct = 3180, + /// /// map_storm_buff_duration_+%_on_low_life_target /// - MapStormBuffDurationPctOnLowLifeTarget = 3180, - + MapStormBuffDurationPctOnLowLifeTarget = 3181, + /// /// map_tempest_random_monster_drops_unique /// - MapTempestRandomMonsterDropsUnique = 3181, - + MapTempestRandomMonsterDropsUnique = 3182, + /// /// map_tempest_random_monster_drops_map /// - MapTempestRandomMonsterDropsMap = 3182, - + MapTempestRandomMonsterDropsMap = 3183, + /// /// map_tempest_fish_school_size_+% /// - MapTempestFishSchoolSizePct = 3183, - + MapTempestFishSchoolSizePct = 3184, + /// /// monster_stormcall_individually_trigger /// - MonsterStormcallIndividuallyTrigger = 3184, - + MonsterStormcallIndividuallyTrigger = 3185, + /// /// map_tempest_random_monster_drops_vaal_fragment /// - MapTempestRandomMonsterDropsVaalFragment = 3185, - + MapTempestRandomMonsterDropsVaalFragment = 3186, + /// /// map_bosses_have_phylacteral_link /// - MapBossesHavePhylacteralLink = 3186, - + MapBossesHavePhylacteralLink = 3187, + /// /// monster_can_have_bloodline /// - MonsterCanHaveBloodline = 3187, - + MonsterCanHaveBloodline = 3188, + /// /// local_socketed_warcry_gem_level_+ /// - LocalSocketedWarcryGemLevel = 3188, - + LocalSocketedWarcryGemLevel = 3189, + /// /// mana_gained_on_hitting_taunted_enemy /// - ManaGainedOnHittingTauntedEnemy = 3189, - + ManaGainedOnHittingTauntedEnemy = 3190, + /// /// life_gained_on_taunting_enemy /// - LifeGainedOnTauntingEnemy = 3190, - + LifeGainedOnTauntingEnemy = 3191, + /// /// onslaught_buff_duration_on_killing_taunted_enemy_ms /// - OnslaughtBuffDurationOnKillingTauntedEnemyMs = 3191, - + OnslaughtBuffDurationOnKillingTauntedEnemyMs = 3192, + /// /// local_socketed_golem_gem_level_+ /// - LocalSocketedGolemGemLevel = 3192, - + LocalSocketedGolemGemLevel = 3193, + /// /// local_display_socketed_gems_supported_by_x_increased_minion_life_level /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionLifeLevel = 3193, - + LocalDisplaySocketedGemsSupportedByXIncreasedMinionLifeLevel = 3194, + /// /// local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level /// - LocalDisplaySocketedGemsSupportedByXLesserMultipleProjectilesLevel = 3194, - + LocalDisplaySocketedGemsSupportedByXLesserMultipleProjectilesLevel = 3195, + /// /// local_display_socketed_gems_supported_by_x_increased_minion_damage_level /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionDamageLevel = 3195, - + LocalDisplaySocketedGemsSupportedByXIncreasedMinionDamageLevel = 3196, + /// /// local_display_socketed_gems_supported_by_x_increased_critical_damage_level /// - LocalDisplaySocketedGemsSupportedByXIncreasedCriticalDamageLevel = 3196, - + LocalDisplaySocketedGemsSupportedByXIncreasedCriticalDamageLevel = 3197, + /// /// number_of_power_charges_to_gain /// - NumberOfPowerChargesToGain = 3197, - + NumberOfPowerChargesToGain = 3198, + /// /// number_of_frenzy_charges_to_gain /// - NumberOfFrenzyChargesToGain = 3198, - + NumberOfFrenzyChargesToGain = 3199, + /// /// number_of_endurance_charges_to_gain /// - NumberOfEnduranceChargesToGain = 3199, - + NumberOfEnduranceChargesToGain = 3200, + /// /// animate_weapon_duration_+% /// - AnimateWeaponDurationPct = 3200, - + AnimateWeaponDurationPct = 3201, + /// /// totem_skill_area_of_effect_+% /// - TotemSkillAreaOfEffectPct = 3201, - + TotemSkillAreaOfEffectPct = 3202, + /// /// life_leech_from_skills_used_by_totems_permyriad /// - LifeLeechFromSkillsUsedByTotemsPermyriad = 3202, - + LifeLeechFromSkillsUsedByTotemsPermyriad = 3203, + /// /// damage_reflected_to_enemies_%_gained_as_life /// - DamageReflectedToEnemiesPctGainedAsLife = 3203, - + DamageReflectedToEnemiesPctGainedAsLife = 3204, + /// /// animate_weapon_number_of_additional_copies /// - AnimateWeaponNumberOfAdditionalCopies = 3204, - + AnimateWeaponNumberOfAdditionalCopies = 3205, + /// /// cannot_drop_below_%_life /// - CannotDropBelowPctLife = 3205, - + CannotDropBelowPctLife = 3206, + /// /// local_display_socketed_gems_supported_by_x_increased_minion_speed_level /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionSpeedLevel = 3206, - + LocalDisplaySocketedGemsSupportedByXIncreasedMinionSpeedLevel = 3207, + /// /// attack_is_not_melee_override /// - AttackIsNotMeleeOverride = 3207, - + AttackIsNotMeleeOverride = 3208, + /// /// map_storm_delay_+%_final /// - MapStormDelayPctFinal = 3208, - + MapStormDelayPctFinal = 3209, + /// /// map_storm_duration_+%_final /// - MapStormDurationPctFinal = 3209, - + MapStormDurationPctFinal = 3210, + /// /// map_always_has_weather /// - MapAlwaysHasWeather = 3210, - + MapAlwaysHasWeather = 3211, + /// /// melee_weapon_range_+ /// - MeleeWeaponRange = 3211, - + MeleeWeaponRange = 3212, + /// /// damage_+%_vs_players /// - DamagePctVsPlayers = 3212, - + DamagePctVsPlayers = 3213, + /// /// immune_vaal_lighting_warp /// - ImmuneVaalLightingWarp = 3213, - + ImmuneVaalLightingWarp = 3214, + /// /// base_secondary_skill_effect_duration /// - BaseSecondarySkillEffectDuration = 3214, - + BaseSecondarySkillEffectDuration = 3215, + /// /// secondary_skill_effect_duration /// - SecondarySkillEffectDuration = 3215, - + SecondarySkillEffectDuration = 3216, + /// /// enemy_aggro_radius_+% /// - EnemyAggroRadiusPct = 3216, - + EnemyAggroRadiusPct = 3217, + /// /// skill_effect_duration_+%_per_removable_frenzy_charge /// - SkillEffectDurationPctPerRemovableFrenzyCharge = 3217, - + SkillEffectDurationPctPerRemovableFrenzyCharge = 3218, + /// /// chilled_ground_effect_on_self_+% /// - ChilledGroundEffectOnSelfPct = 3218, - + ChilledGroundEffectOnSelfPct = 3219, + /// /// burning_ground_effect_on_self_+% /// - BurningGroundEffectOnSelfPct = 3219, - + BurningGroundEffectOnSelfPct = 3220, + /// /// shocked_ground_effect_on_self_+% /// - ShockedGroundEffectOnSelfPct = 3220, - + ShockedGroundEffectOnSelfPct = 3221, + /// /// desecrated_ground_effect_on_self_+% /// - DesecratedGroundEffectOnSelfPct = 3221, - + DesecratedGroundEffectOnSelfPct = 3222, + /// /// spell_and_attack_minimum_added_lightning_damage /// - SpellAndAttackMinimumAddedLightningDamage = 3222, - + SpellAndAttackMinimumAddedLightningDamage = 3223, + /// /// spell_and_attack_maximum_added_lightning_damage /// - SpellAndAttackMaximumAddedLightningDamage = 3223, - + SpellAndAttackMaximumAddedLightningDamage = 3224, + /// /// shocked_ground_when_hit_% /// - ShockedGroundWhenHitPct = 3224, - + ShockedGroundWhenHitPct = 3225, + /// /// map_tempest_base_ground_fire_damage_to_deal_per_minute /// - MapTempestBaseGroundFireDamageToDealPerMinute = 3225, - + MapTempestBaseGroundFireDamageToDealPerMinute = 3226, + /// /// map_tempest_base_ground_desecration_damage_to_deal_per_minute /// - MapTempestBaseGroundDesecrationDamageToDealPerMinute = 3226, - + MapTempestBaseGroundDesecrationDamageToDealPerMinute = 3227, + /// /// map_tempest_ground_ice /// - MapTempestGroundIce = 3227, - + MapTempestGroundIce = 3228, + /// /// map_tempest_ground_tar_movement_speed_+% /// - MapTempestGroundTarMovementSpeedPct = 3228, - + MapTempestGroundTarMovementSpeedPct = 3229, + /// /// map_tempest_ground_lightning /// - MapTempestGroundLightning = 3229, - + MapTempestGroundLightning = 3230, + /// /// map_tempest_ground_effect_patches_per_100_tiles /// - MapTempestGroundEffectPatchesPer100Tiles = 3230, - + MapTempestGroundEffectPatchesPer100Tiles = 3231, + /// /// map_tempest_ground_effect_radius /// - MapTempestGroundEffectRadius = 3231, - + MapTempestGroundEffectRadius = 3232, + /// /// projectile_minimum_range /// - ProjectileMinimumRange = 3232, - + ProjectileMinimumRange = 3233, + /// /// projectile_speed_variation_+% /// - ProjectileSpeedVariationPct = 3233, - + ProjectileSpeedVariationPct = 3234, + /// /// secondary_buff_effect_duration /// - SecondaryBuffEffectDuration = 3234, - + SecondaryBuffEffectDuration = 3235, + /// /// level_1_to_40_life_+%_final /// - Level1To40LifePctFinal = 3235, - + Level1To40LifePctFinal = 3236, + /// /// level_41_to_57_life_+%_final /// - Level41To57LifePctFinal = 3236, - + Level41To57LifePctFinal = 3237, + /// /// level_58_to_70_life_+%_final /// - Level58To70LifePctFinal = 3237, - + Level58To70LifePctFinal = 3238, + /// /// local_unique_jewel_energy_shield_increases_applies_to_armour_doubled /// - LocalUniqueJewelEnergyShieldIncreasesAppliesToArmourDoubled = 3238, - + LocalUniqueJewelEnergyShieldIncreasesAppliesToArmourDoubled = 3239, + /// /// local_unique_jewel_life_increases_applies_to_energy_shield /// - LocalUniqueJewelLifeIncreasesAppliesToEnergyShield = 3239, - + LocalUniqueJewelLifeIncreasesAppliesToEnergyShield = 3240, + /// /// local_unique_jewel_life_increases_applies_to_mana_doubled /// - LocalUniqueJewelLifeIncreasesAppliesToManaDoubled = 3240, - + LocalUniqueJewelLifeIncreasesAppliesToManaDoubled = 3241, + /// /// cyclone_first_hit_damage_+%_final /// - CycloneFirstHitDamagePctFinal = 3241, - + CycloneFirstHitDamagePctFinal = 3242, + /// /// cannot_use_warcries /// - CannotUseWarcries = 3242, - + CannotUseWarcries = 3243, + /// /// map_debug_disable_nonboss_monsters /// - MapDebugDisableNonbossMonsters = 3243, - + MapDebugDisableNonbossMonsters = 3244, + /// /// totem_mana_+% /// - TotemManaPct = 3244, - + TotemManaPct = 3245, + /// /// totem_energy_shield_+% /// - TotemEnergyShieldPct = 3245, - + TotemEnergyShieldPct = 3246, + /// /// minion_maximum_mana_+% /// - MinionMaximumManaPct = 3246, - + MinionMaximumManaPct = 3247, + /// /// minion_maximum_energy_shield_+% /// - MinionMaximumEnergyShieldPct = 3247, - + MinionMaximumEnergyShieldPct = 3248, + /// /// base_maximum_life_per_red_socket_on_item /// - BaseMaximumLifePerRedSocketOnItem = 3248, - + BaseMaximumLifePerRedSocketOnItem = 3249, + /// /// base_maximum_energy_shield_per_blue_socket_on_item /// - BaseMaximumEnergyShieldPerBlueSocketOnItem = 3249, - + BaseMaximumEnergyShieldPerBlueSocketOnItem = 3250, + /// /// base_maximum_mana_per_green_socket_on_item /// - BaseMaximumManaPerGreenSocketOnItem = 3250, - + BaseMaximumManaPerGreenSocketOnItem = 3251, + /// /// currently_has_no_energy_shield /// - CurrentlyHasNoEnergyShield = 3251, - + CurrentlyHasNoEnergyShield = 3252, + /// /// damage_+%_when_currently_has_no_energy_shield /// - DamagePctWhenCurrentlyHasNoEnergyShield = 3252, - + DamagePctWhenCurrentlyHasNoEnergyShield = 3253, + /// /// chance_to_gain_unholy_might_on_block_% /// - ChanceToGainUnholyMightOnBlockPct = 3253, - + ChanceToGainUnholyMightOnBlockPct = 3254, + /// /// damage_+%_when_on_burning_ground /// - DamagePctWhenOnBurningGround = 3254, - + DamagePctWhenOnBurningGround = 3255, + /// /// life_regeneration_rate_per_minute_%_when_on_chilled_ground /// - LifeRegenerationRatePerMinutePctWhenOnChilledGround = 3255, - + LifeRegenerationRatePerMinutePctWhenOnChilledGround = 3256, + /// /// movement_velocity_+%_when_on_shocked_ground /// - MovementVelocityPctWhenOnShockedGround = 3256, - + MovementVelocityPctWhenOnShockedGround = 3257, + /// /// is_on_ground_fire_burn /// - IsOnGroundFireBurn = 3257, - + IsOnGroundFireBurn = 3258, + /// /// is_on_ground_ice_chill /// - IsOnGroundIceChill = 3258, - + IsOnGroundIceChill = 3259, + /// /// is_on_ground_lightning_shock /// - IsOnGroundLightningShock = 3259, - + IsOnGroundLightningShock = 3260, + /// /// damage_taken_goes_to_mana_%_per_power_charge /// - DamageTakenGoesToManaPctPerPowerCharge = 3260, - + DamageTakenGoesToManaPctPerPowerCharge = 3261, + /// /// power_charge_art_variation /// - PowerChargeArtVariation = 3261, - + PowerChargeArtVariation = 3262, + /// /// map_tempest_display_prefix /// - MapTempestDisplayPrefix = 3262, - + MapTempestDisplayPrefix = 3263, + /// /// map_tempest_display_suffix /// - MapTempestDisplaySuffix = 3263, - + MapTempestDisplaySuffix = 3264, + /// /// temporal_chains_action_speed_+%_final /// - TemporalChainsActionSpeedPctFinal = 3264, - + TemporalChainsActionSpeedPctFinal = 3265, + /// /// virtual_action_speed_+% /// - VirtualActionSpeedPct = 3265, - + VirtualActionSpeedPct = 3266, + /// /// light_radius_+%_while_phased /// - LightRadiusPctWhilePhased = 3266, - + LightRadiusPctWhilePhased = 3267, + /// /// map_monsters_area_of_effect_+% /// - MapMonstersAreaOfEffectPct = 3267, - + MapMonstersAreaOfEffectPct = 3268, + /// /// map_monsters_avoid_freeze_and_chill_% /// - MapMonstersAvoidFreezeAndChillPct = 3268, - + MapMonstersAvoidFreezeAndChillPct = 3269, + /// /// map_monsters_avoid_ignite_% /// - MapMonstersAvoidIgnitePct = 3269, - + MapMonstersAvoidIgnitePct = 3270, + /// /// map_monsters_avoid_shock_% /// - MapMonstersAvoidShockPct = 3270, - + MapMonstersAvoidShockPct = 3271, + /// /// map_monsters_avoid_elemental_ailments_% /// - MapMonstersAvoidElementalAilmentsPct = 3271, - + MapMonstersAvoidElementalAilmentsPct = 3272, + /// /// map_monsters_critical_strike_chance_+% /// - MapMonstersCriticalStrikeChancePct = 3272, - + MapMonstersCriticalStrikeChancePct = 3273, + /// /// map_monsters_critical_strike_multiplier_+ /// - MapMonstersCriticalStrikeMultiplier = 3273, - + MapMonstersCriticalStrikeMultiplier = 3274, + /// /// map_monsters_life_leech_resistance_% /// - MapMonstersLifeLeechResistancePct = 3274, - + MapMonstersLifeLeechResistancePct = 3275, + /// /// map_monsters_mana_leech_resistance_% /// - MapMonstersManaLeechResistancePct = 3275, - + MapMonstersManaLeechResistancePct = 3276, + /// /// map_boss_maximum_life_+% /// - MapBossMaximumLifePct = 3276, - + MapBossMaximumLifePct = 3277, + /// /// map_boss_area_of_effect_+% /// - MapBossAreaOfEffectPct = 3277, - + MapBossAreaOfEffectPct = 3278, + /// /// map_hidden_experience_gain_+% /// - MapHiddenExperienceGainPct = 3278, - + MapHiddenExperienceGainPct = 3279, + /// /// map_hidden_rare_monsters_have_nemesis_mod /// - MapHiddenRareMonstersHaveNemesisMod = 3279, - + MapHiddenRareMonstersHaveNemesisMod = 3280, + /// /// map_hidden_spawn_extra_exiles /// - MapHiddenSpawnExtraExiles = 3280, - + MapHiddenSpawnExtraExiles = 3281, + /// /// map_hidden_spawn_extra_torment_spirits /// - MapHiddenSpawnExtraTormentSpirits = 3281, - + MapHiddenSpawnExtraTormentSpirits = 3282, + /// /// map_hidden_magic_pack_mod_rules /// - MapHiddenMagicPackModRules = 3282, - + MapHiddenMagicPackModRules = 3283, + /// /// map_hidden_monsters_additional_fire_resistance /// - MapHiddenMonstersAdditionalFireResistance = 3283, - + MapHiddenMonstersAdditionalFireResistance = 3284, + /// /// map_hidden_monsters_additional_cold_resistance /// - MapHiddenMonstersAdditionalColdResistance = 3284, - + MapHiddenMonstersAdditionalColdResistance = 3285, + /// /// map_hidden_monsters_additional_lightning_resistance /// - MapHiddenMonstersAdditionalLightningResistance = 3285, - + MapHiddenMonstersAdditionalLightningResistance = 3286, + /// /// map_hidden_monsters_poison_on_hit /// - MapHiddenMonstersPoisonOnHit = 3286, - + MapHiddenMonstersPoisonOnHit = 3287, + /// /// map_hidden_monsters_%_physical_damage_to_add_as_fire /// - MapHiddenMonstersPctPhysicalDamageToAddAsFire = 3287, - + MapHiddenMonstersPctPhysicalDamageToAddAsFire = 3288, + /// /// map_hidden_monsters_%_physical_damage_to_add_as_cold /// - MapHiddenMonstersPctPhysicalDamageToAddAsCold = 3288, - + MapHiddenMonstersPctPhysicalDamageToAddAsCold = 3289, + /// /// map_hidden_monsters_%_physical_damage_to_add_as_lightning /// - MapHiddenMonstersPctPhysicalDamageToAddAsLightning = 3289, - + MapHiddenMonstersPctPhysicalDamageToAddAsLightning = 3290, + /// /// map_hidden_monsters_%_physical_damage_to_add_as_chaos /// - MapHiddenMonstersPctPhysicalDamageToAddAsChaos = 3290, - + MapHiddenMonstersPctPhysicalDamageToAddAsChaos = 3291, + /// /// map_hidden_packs_are_totems /// - MapHiddenPacksAreTotems = 3291, - + MapHiddenPacksAreTotems = 3292, + /// /// skill_effect_duration_per_100_int_+% /// - SkillEffectDurationPer100IntPct = 3292, - + SkillEffectDurationPer100IntPct = 3293, + /// /// map_equipment_drops_identified /// - MapEquipmentDropsIdentified = 3293, - + MapEquipmentDropsIdentified = 3294, + /// /// player_found_equipment_drops_identified /// - PlayerFoundEquipmentDropsIdentified = 3294, - + PlayerFoundEquipmentDropsIdentified = 3295, + /// /// monster_equipment_drops_identified /// - MonsterEquipmentDropsIdentified = 3295, - + MonsterEquipmentDropsIdentified = 3296, + /// /// flask_charges_gained_+%_during_flask_effect /// - FlaskChargesGainedPctDuringFlaskEffect = 3296, - + FlaskChargesGainedPctDuringFlaskEffect = 3297, + /// /// mana_regeneration_rate_+%_during_flask_effect /// - ManaRegenerationRatePctDuringFlaskEffect = 3297, - + ManaRegenerationRatePctDuringFlaskEffect = 3298, + /// /// movement_speed_+%_during_flask_effect /// - MovementSpeedPctDuringFlaskEffect = 3298, - + MovementSpeedPctDuringFlaskEffect = 3299, + /// /// map_player_has_level_X_punishment /// - MapPlayerHasLevelXPunishment = 3299, - + MapPlayerHasLevelXPunishment = 3300, + /// /// item_found_quantity_+%_per_white_socket_on_item /// - ItemFoundQuantityPctPerWhiteSocketOnItem = 3300, - + ItemFoundQuantityPctPerWhiteSocketOnItem = 3301, + /// /// monster_number_of_additional_players /// - MonsterNumberOfAdditionalPlayers = 3301, - + MonsterNumberOfAdditionalPlayers = 3302, + /// /// local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius /// - LocalUniqueJewelPhysicalAttackDamage1PctPerXStrengthInRadius = 3302, - + LocalUniqueJewelPhysicalAttackDamage1PctPerXStrengthInRadius = 3303, + /// /// local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius /// - LocalUniqueJewelFortifyDuration1PctPerXIntInRadius = 3303, - + LocalUniqueJewelFortifyDuration1PctPerXIntInRadius = 3304, + /// /// local_unique_jewel_fire_damage_+1%_per_x_int_in_radius /// - LocalUniqueJewelFireDamage1PctPerXIntInRadius = 3304, - + LocalUniqueJewelFireDamage1PctPerXIntInRadius = 3305, + /// /// local_unique_jewel_cold_damage_+1%_per_x_int_in_radius /// - LocalUniqueJewelColdDamage1PctPerXIntInRadius = 3305, - + LocalUniqueJewelColdDamage1PctPerXIntInRadius = 3306, + /// /// local_unique_jewel_physical_damage_+1%_per_int_in_radius /// - LocalUniqueJewelPhysicalDamage1PctPerIntInRadius = 3306, - + LocalUniqueJewelPhysicalDamage1PctPerIntInRadius = 3307, + /// /// local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius /// - LocalUniqueJewelPhysicalAttackDamage1PctPerXDexInRadius = 3307, - + LocalUniqueJewelPhysicalAttackDamage1PctPerXDexInRadius = 3308, + /// /// local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius /// - LocalUniqueJewelProjectileDamage1PctPerXDexInRadius = 3308, - + LocalUniqueJewelProjectileDamage1PctPerXDexInRadius = 3309, + /// /// local_unique_jewel_fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range_with_x_int_in_radius /// - LocalUniqueJewelFireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRangeWithXIntInRadius = 3309, - + LocalUniqueJewelFireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRangeWithXIntInRadius = 3310, + /// /// local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius /// - LocalUniqueJewelGlacialCascadeAdditionalSequenceWithXIntInRadius = 3310, - + LocalUniqueJewelGlacialCascadeAdditionalSequenceWithXIntInRadius = 3311, + /// /// local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius /// - LocalUniqueJewelAnimateWeaponAnimatesBowsAndWandsWithXDexInRadius = 3311, - + LocalUniqueJewelAnimateWeaponAnimatesBowsAndWandsWithXDexInRadius = 3312, + /// /// local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius /// - LocalUniqueJewelSplitArrowFiresAdditionalArrowWithXDexInRadius = 3312, - + LocalUniqueJewelSplitArrowFiresAdditionalArrowWithXDexInRadius = 3313, + /// /// vigilant_strike_applies_to_nearby_allies_for_X_seconds /// - VigilantStrikeAppliesToNearbyAlliesForXSeconds = 3313, - + VigilantStrikeAppliesToNearbyAlliesForXSeconds = 3314, + /// /// split_arrow_number_of_additional_arrows /// - SplitArrowNumberOfAdditionalArrows = 3314, - + SplitArrowNumberOfAdditionalArrows = 3315, + /// /// animate_weapon_can_animate_bows /// - AnimateWeaponCanAnimateBows = 3315, - + AnimateWeaponCanAnimateBows = 3316, + /// /// animate_weapon_can_animate_wands /// - AnimateWeaponCanAnimateWands = 3316, - + AnimateWeaponCanAnimateWands = 3317, + /// /// fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range /// - FireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRange = 3317, - + FireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRange = 3318, + /// /// total_physical_damage_taken_per_minute /// - TotalPhysicalDamageTakenPerMinute = 3318, - + TotalPhysicalDamageTakenPerMinute = 3319, + /// /// total_fire_damage_taken_per_minute /// - TotalFireDamageTakenPerMinute = 3319, - + TotalFireDamageTakenPerMinute = 3320, + /// /// total_cold_damage_taken_per_minute /// - TotalColdDamageTakenPerMinute = 3320, - + TotalColdDamageTakenPerMinute = 3321, + /// /// total_lightning_damage_taken_per_minute /// - TotalLightningDamageTakenPerMinute = 3321, - + TotalLightningDamageTakenPerMinute = 3322, + /// /// total_chaos_damage_taken_per_minute /// - TotalChaosDamageTakenPerMinute = 3322, - + TotalChaosDamageTakenPerMinute = 3323, + /// /// total_nonlethal_fire_damage_taken_per_minute /// - TotalNonlethalFireDamageTakenPerMinute = 3323, - + TotalNonlethalFireDamageTakenPerMinute = 3324, + /// /// total_damage_taken_per_minute_to_energy_shield /// - TotalDamageTakenPerMinuteToEnergyShield = 3324, - + TotalDamageTakenPerMinuteToEnergyShield = 3325, + /// /// total_damage_taken_per_minute_to_life /// - TotalDamageTakenPerMinuteToLife = 3325, - + TotalDamageTakenPerMinuteToLife = 3326, + /// /// total_nonlethal_damage_taken_per_minute_to_energy_shield /// - TotalNonlethalDamageTakenPerMinuteToEnergyShield = 3326, - + TotalNonlethalDamageTakenPerMinuteToEnergyShield = 3327, + /// /// total_nonlethal_damage_taken_per_minute_to_life /// - TotalNonlethalDamageTakenPerMinuteToLife = 3327, - + TotalNonlethalDamageTakenPerMinuteToLife = 3328, + /// /// total_healing_from_damage_taken_per_minute /// - TotalHealingFromDamageTakenPerMinute = 3328, - + TotalHealingFromDamageTakenPerMinute = 3329, + /// /// chance_to_gain_unholy_might_on_kill_for_3_seconds_% /// - ChanceToGainUnholyMightOnKillFor3SecondsPct = 3329, - + ChanceToGainUnholyMightOnKillFor3SecondsPct = 3330, + /// /// chance_to_grant_nearby_enemies_onslaught_on_kill_% /// - ChanceToGrantNearbyEnemiesOnslaughtOnKillPct = 3330, - + ChanceToGrantNearbyEnemiesOnslaughtOnKillPct = 3331, + /// /// chance_to_grant_nearby_enemies_unholy_might_on_kill_% /// - ChanceToGrantNearbyEnemiesUnholyMightOnKillPct = 3331, - + ChanceToGrantNearbyEnemiesUnholyMightOnKillPct = 3332, + /// /// recover_%_maximum_life_on_kill /// - RecoverPctMaximumLifeOnKill = 3332, - + RecoverPctMaximumLifeOnKill = 3333, + /// /// chance_to_cast_on_kill_%_target_self /// - ChanceToCastOnKillPctTargetSelf = 3333, - + ChanceToCastOnKillPctTargetSelf = 3334, + /// /// socketed_trap_skills_create_smoke_cloud /// - SocketedTrapSkillsCreateSmokeCloud = 3334, - + SocketedTrapSkillsCreateSmokeCloud = 3335, + /// /// fire_damage_+%_to_blinded_enemies /// - FireDamagePctToBlindedEnemies = 3335, - + FireDamagePctToBlindedEnemies = 3336, + /// /// spell_damage_taken_+%_from_blinded_enemies /// - SpellDamageTakenPctFromBlindedEnemies = 3336, - + SpellDamageTakenPctFromBlindedEnemies = 3337, + /// /// curse_enemies_with_level_x_assassins_mark_when_curse_cast /// - CurseEnemiesWithLevelXAssassinsMarkWhenCurseCast = 3337, - + CurseEnemiesWithLevelXAssassinsMarkWhenCurseCast = 3338, + /// /// disable_weapons /// - DisableWeapons = 3338, - + DisableWeapons = 3339, + /// /// shock_dispelled_on_full_energy_shield /// - ShockDispelledOnFullEnergyShield = 3339, - + ShockDispelledOnFullEnergyShield = 3340, + /// /// local_display_nearby_enemies_take_X_lightning_damage_per_minute /// - LocalDisplayNearbyEnemiesTakeXLightningDamagePerMinute = 3340, - + LocalDisplayNearbyEnemiesTakeXLightningDamagePerMinute = 3341, + /// /// item_destroyed_on_death /// - ItemDestroyedOnDeath = 3341, - + ItemDestroyedOnDeath = 3342, + /// /// summoned_monsters_set_parent /// - SummonedMonstersSetParent = 3342, - + SummonedMonstersSetParent = 3343, + /// /// maximum_number_of_spinning_blades /// - MaximumNumberOfSpinningBlades = 3343, - + MaximumNumberOfSpinningBlades = 3344, + /// /// ball_lightning_damage_+% /// - BallLightningDamagePct = 3344, - + BallLightningDamagePct = 3345, + /// /// cast_when_critically_hit_% /// - CastWhenCriticallyHitPct = 3345, - + CastWhenCriticallyHitPct = 3346, + /// /// attack_trigger_on_hit_% /// - AttackTriggerOnHitPct = 3346, - + AttackTriggerOnHitPct = 3347, + /// /// cast_on_hit_% /// - CastOnHitPct = 3347, - + CastOnHitPct = 3348, + /// /// map_spawn_talismans /// - MapSpawnTalismans = 3348, - + MapSpawnTalismans = 3349, + /// /// map_spawn_extra_talismans /// - MapSpawnExtraTalismans = 3349, - + MapSpawnExtraTalismans = 3350, + /// /// map_hidden_num_extra_invasion_bosses /// - MapHiddenNumExtraInvasionBosses = 3350, - + MapHiddenNumExtraInvasionBosses = 3351, + /// /// monster_no_talismans /// - MonsterNoTalismans = 3351, - + MonsterNoTalismans = 3352, + /// /// enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit /// - EnchantmentBootsLifeRegenPerMinutePctFor4SecondsWhenHit = 3352, - + EnchantmentBootsLifeRegenPerMinutePctFor4SecondsWhenHit = 3353, + /// /// fire_damage_taken_%_as_lightning /// - FireDamageTakenPctAsLightning = 3353, - + FireDamageTakenPctAsLightning = 3354, + /// /// fire_damage_taken_%_as_cold /// - FireDamageTakenPctAsCold = 3354, - + FireDamageTakenPctAsCold = 3355, + /// /// lightning_damage_taken_%_as_cold /// - LightningDamageTakenPctAsCold = 3355, - + LightningDamageTakenPctAsCold = 3356, + /// /// lightning_damage_taken_%_as_fire /// - LightningDamageTakenPctAsFire = 3356, - + LightningDamageTakenPctAsFire = 3357, + /// /// cold_damage_taken_%_as_lightning /// - ColdDamageTakenPctAsLightning = 3357, - + ColdDamageTakenPctAsLightning = 3358, + /// /// cold_damage_taken_%_as_fire /// - ColdDamageTakenPctAsFire = 3358, - + ColdDamageTakenPctAsFire = 3359, + /// /// all_attributes_+% /// - AllAttributesPct = 3359, - + AllAttributesPct = 3360, + /// /// base_cooldown_speed_+% /// - BaseCooldownSpeedPct = 3360, - + BaseCooldownSpeedPct = 3361, + /// /// virtual_cooldown_speed_+% /// - VirtualCooldownSpeedPct = 3361, - + VirtualCooldownSpeedPct = 3362, + /// /// base_righteous_lightning_%_of_max_mana_to_deal_to_nearby_per_minute /// - BaseRighteousLightningPctOfMaxManaToDealToNearbyPerMinute = 3362, - + BaseRighteousLightningPctOfMaxManaToDealToNearbyPerMinute = 3363, + /// /// righteous_lightning_critical_strike_chance_+% /// - RighteousLightningCriticalStrikeChancePct = 3363, - + RighteousLightningCriticalStrikeChancePct = 3364, + /// /// mana_degeneration_per_minute_% /// - ManaDegenerationPerMinutePct = 3364, - + ManaDegenerationPerMinutePct = 3365, + /// /// active_skill_index /// - ActiveSkillIndex = 3365, - + ActiveSkillIndex = 3366, + /// /// stun_threshold_based_on_%_mana_instead_of_life /// - StunThresholdBasedOnPctManaInsteadOfLife = 3366, - + StunThresholdBasedOnPctManaInsteadOfLife = 3367, + /// /// local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge /// - LocalFlaskGainXSecondsOfOnslaughtPerFrenzyCharge = 3367, - + LocalFlaskGainXSecondsOfOnslaughtPerFrenzyCharge = 3368, + /// /// life_leech_applies_to_enemies_% /// - LifeLeechAppliesToEnemiesPct = 3368, - + LifeLeechAppliesToEnemiesPct = 3369, + /// /// enchantment_boots_minimum_added_fire_damage_on_kill_4s /// - EnchantmentBootsMinimumAddedFireDamageOnKill4S = 3369, - + EnchantmentBootsMinimumAddedFireDamageOnKill4S = 3370, + /// /// enchantment_boots_maximum_added_fire_damage_on_kill_4s /// - EnchantmentBootsMaximumAddedFireDamageOnKill4S = 3370, - + EnchantmentBootsMaximumAddedFireDamageOnKill4S = 3371, + /// /// enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds /// - EnchantmentBootsMovementSpeedPctWhenNotHitFor4Seconds = 3371, - + EnchantmentBootsMovementSpeedPctWhenNotHitFor4Seconds = 3372, + /// /// enchantment_boots_dodge_chance_when_critically_hit_% /// - EnchantmentBootsDodgeChanceWhenCriticallyHitPct = 3372, - + EnchantmentBootsDodgeChanceWhenCriticallyHitPct = 3373, + /// /// enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds /// - EnchantmentBootsStatusAilmentChancePctWhenHaventCritFor4Seconds = 3373, - + EnchantmentBootsStatusAilmentChancePctWhenHaventCritFor4Seconds = 3374, + /// /// base_chance_to_stun_% /// - BaseChanceToStunPct = 3374, - + BaseChanceToStunPct = 3375, + /// /// display_cast_word_of_flames_on_kill_% /// - DisplayCastWordOfFlamesOnKillPct = 3375, - + DisplayCastWordOfFlamesOnKillPct = 3376, + /// /// display_cast_word_of_blades_on_kill_% /// - DisplayCastWordOfBladesOnKillPct = 3376, - + DisplayCastWordOfBladesOnKillPct = 3377, + /// /// display_cast_word_of_reflection_on_kill_% /// - DisplayCastWordOfReflectionOnKillPct = 3377, - + DisplayCastWordOfReflectionOnKillPct = 3378, + /// /// display_cast_word_of_force_on_hit_% /// - DisplayCastWordOfForceOnHitPct = 3378, - + DisplayCastWordOfForceOnHitPct = 3379, + /// /// display_cast_word_of_light_when_hit_% /// - DisplayCastWordOfLightWhenHitPct = 3379, - + DisplayCastWordOfLightWhenHitPct = 3380, + /// /// display_cast_word_of_thunder_on_hit_% /// - DisplayCastWordOfThunderOnHitPct = 3380, - + DisplayCastWordOfThunderOnHitPct = 3381, + /// /// display_cast_word_of_the_grave_on_kill_% /// - DisplayCastWordOfTheGraveOnKillPct = 3381, - + DisplayCastWordOfTheGraveOnKillPct = 3382, + /// /// display_cast_word_of_war_on_kill_% /// - DisplayCastWordOfWarOnKillPct = 3382, - + DisplayCastWordOfWarOnKillPct = 3383, + /// /// map_spawn_stone_circles /// - MapSpawnStoneCircles = 3383, - + MapSpawnStoneCircles = 3384, + /// /// map_force_stone_circle /// - MapForceStoneCircle = 3384, - + MapForceStoneCircle = 3385, + /// /// base_poison_damage_+% /// - BasePoisonDamagePct = 3385, - + BasePoisonDamagePct = 3386, + /// /// base_poison_duration_+% /// - BasePoisonDurationPct = 3386, - + BasePoisonDurationPct = 3387, + /// /// poison_duration_+% /// - PoisonDurationPct = 3387, - + PoisonDurationPct = 3388, + /// /// poison_skill_effect_duration /// - PoisonSkillEffectDuration = 3388, - + PoisonSkillEffectDuration = 3389, + /// /// base_chance_to_poison_on_hit_% /// - BaseChanceToPoisonOnHitPct = 3389, - + BaseChanceToPoisonOnHitPct = 3390, + /// /// quake_slam_fully_charged_explosion_damage_+%_final /// - QuakeSlamFullyChargedExplosionDamagePctFinal = 3390, - + QuakeSlamFullyChargedExplosionDamagePctFinal = 3391, + /// /// local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius /// - LocalUniqueJewelGlacialHammerItemRarityOnShatteringEnemyPctWith50StrengthInRadius = 3391, - + LocalUniqueJewelGlacialHammerItemRarityOnShatteringEnemyPctWith50StrengthInRadius = 3392, + /// /// local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius /// - LocalUniqueJewelSpectralThrowDamageForEachEnemyHitWithSpectralWeaponPctWith50DexterityInRadius = 3392, - + LocalUniqueJewelSpectralThrowDamageForEachEnemyHitWithSpectralWeaponPctWith50DexterityInRadius = 3393, + /// /// local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius /// - LocalUniqueJewelDoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePctWith50DexterityInRadius = 3393, - + LocalUniqueJewelDoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePctWith50DexterityInRadius = 3394, + /// /// local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius /// - LocalUniqueJewelViperStrikeAttackDamagePerPoisonOnEnemyPctWith50DexterityInRadius = 3394, - + LocalUniqueJewelViperStrikeAttackDamagePerPoisonOnEnemyPctWith50DexterityInRadius = 3395, + /// /// local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius /// - LocalUniqueJewelHeavyStrikeChanceToDealDoubleDamagePctWith50StrengthInRadius = 3395, - + LocalUniqueJewelHeavyStrikeChanceToDealDoubleDamagePctWith50StrengthInRadius = 3396, + /// /// enchantment_boots_mana_costs_when_hit_+% /// - EnchantmentBootsManaCostsWhenHitPct = 3396, - + EnchantmentBootsManaCostsWhenHitPct = 3397, + /// /// enchantment_boots_stun_avoid_%_on_kill /// - EnchantmentBootsStunAvoidPctOnKill = 3397, - + EnchantmentBootsStunAvoidPctOnKill = 3398, + /// /// enchantment_boots_spell_dodge_when_hit_by_spells_% /// - EnchantmentBootsSpellDodgeWhenHitBySpellsPct = 3398, - + EnchantmentBootsSpellDodgeWhenHitBySpellsPct = 3399, + /// /// enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill /// - EnchantmentBootsAttackAndCastSpeedPctFor4SecondsOnKill = 3399, - + EnchantmentBootsAttackAndCastSpeedPctFor4SecondsOnKill = 3400, + /// /// enchantment_boots_added_cold_damage_when_hit_minimum /// - EnchantmentBootsAddedColdDamageWhenHitMinimum = 3400, - + EnchantmentBootsAddedColdDamageWhenHitMinimum = 3401, + /// /// enchantment_boots_added_cold_damage_when_hit_maximum /// - EnchantmentBootsAddedColdDamageWhenHitMaximum = 3401, - + EnchantmentBootsAddedColdDamageWhenHitMaximum = 3402, + /// /// enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds /// - EnchantmentBootsMinimumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3402, - + EnchantmentBootsMinimumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3403, + /// /// enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds /// - EnchantmentBootsMaximumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3403, - + EnchantmentBootsMaximumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3404, + /// /// enchantment_boots_life_leech_on_kill_permyriad /// - EnchantmentBootsLifeLeechOnKillPermyriad = 3404, - + EnchantmentBootsLifeLeechOnKillPermyriad = 3405, + /// /// enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds /// - EnchantmentCriticalStrikeChancePctIfYouHaventCritFor4Seconds = 3405, - + EnchantmentCriticalStrikeChancePctIfYouHaventCritFor4Seconds = 3406, + /// /// no_extra_bleed_damage_while_moving /// - NoExtraBleedDamageWhileMoving = 3406, - + NoExtraBleedDamageWhileMoving = 3407, + /// /// action_speed_cannot_be_reduced_below_base /// - ActionSpeedCannotBeReducedBelowBase = 3407, - + ActionSpeedCannotBeReducedBelowBase = 3408, + /// /// movement_speed_cannot_be_reduced_below_base /// - MovementSpeedCannotBeReducedBelowBase = 3408, - + MovementSpeedCannotBeReducedBelowBase = 3409, + /// /// damage_+%_while_fortified /// - DamagePctWhileFortified = 3409, - + DamagePctWhileFortified = 3410, + /// /// life_regeneration_per_minute_%_while_fortified /// - LifeRegenerationPerMinutePctWhileFortified = 3410, - + LifeRegenerationPerMinutePctWhileFortified = 3411, + /// /// damage_+%_per_endurance_charge /// - DamagePctPerEnduranceCharge = 3411, - + DamagePctPerEnduranceCharge = 3412, + /// /// warcry_duration_+% /// - WarcryDurationPct = 3412, - + WarcryDurationPct = 3413, + /// /// restore_life_and_mana_on_warcry_% /// - RestoreLifeAndManaOnWarcryPct = 3413, - + RestoreLifeAndManaOnWarcryPct = 3414, + /// /// attack_speed_+%_when_hit /// - AttackSpeedPctWhenHit = 3414, - + AttackSpeedPctWhenHit = 3415, + /// /// movement_velocity_while_not_hit_+% /// - MovementVelocityWhileNotHitPct = 3415, - + MovementVelocityWhileNotHitPct = 3416, + /// /// is_warcry /// - IsWarcry = 3416, - + IsWarcry = 3417, + /// /// map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack /// - MapPlayerCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 3417, - + MapPlayerCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 3418, + /// /// damage_+%_when_not_on_low_life /// - DamagePctWhenNotOnLowLife = 3418, - + DamagePctWhenNotOnLowLife = 3419, + /// /// gain_life_and_mana_leech_on_kill_permyriad /// - GainLifeAndManaLeechOnKillPermyriad = 3419, - + GainLifeAndManaLeechOnKillPermyriad = 3420, + /// /// number_of_active_minions /// - NumberOfActiveMinions = 3420, - + NumberOfActiveMinions = 3421, + /// /// number_of_active_totems /// - NumberOfActiveTotems = 3421, - + NumberOfActiveTotems = 3422, + /// /// damage_+%_while_totem_active /// - DamagePctWhileTotemActive = 3422, - + DamagePctWhileTotemActive = 3423, + /// /// physical_damage_%_added_as_fire_damage_on_kill /// - PhysicalDamagePctAddedAsFireDamageOnKill = 3423, - + PhysicalDamagePctAddedAsFireDamageOnKill = 3424, + /// /// totems_gain_%_of_players_armour /// - TotemsGainPctOfPlayersArmour = 3424, - + TotemsGainPctOfPlayersArmour = 3425, + /// /// attack_and_cast_speed_+%_on_placing_totem /// - AttackAndCastSpeedPctOnPlacingTotem = 3425, - + AttackAndCastSpeedPctOnPlacingTotem = 3426, + /// /// damage_+%_to_rare_and_unique_enemies /// - DamagePctToRareAndUniqueEnemies = 3426, - + DamagePctToRareAndUniqueEnemies = 3427, + /// /// life_leech_on_overkill_damage_% /// - LifeLeechOnOverkillDamagePct = 3427, - + LifeLeechOnOverkillDamagePct = 3428, + /// /// attack_speed_+%_while_leeching /// - AttackSpeedPctWhileLeeching = 3428, - + AttackSpeedPctWhileLeeching = 3429, + /// /// life_leech_does_not_stop_at_full_life /// - LifeLeechDoesNotStopAtFullLife = 3429, - + LifeLeechDoesNotStopAtFullLife = 3430, + /// /// cannot_be_stunned_while_leeching /// - CannotBeStunnedWhileLeeching = 3430, - + CannotBeStunnedWhileLeeching = 3431, + /// /// attacks_use_life_in_place_of_mana /// - AttacksUseLifeInPlaceOfMana = 3431, - + AttacksUseLifeInPlaceOfMana = 3432, + /// /// chance_to_taunt_on_hit_% /// - ChanceToTauntOnHitPct = 3432, - + ChanceToTauntOnHitPct = 3433, + /// /// bleeding_enemies_explode_for_%_life_as_physical_damage /// - BleedingEnemiesExplodeForPctLifeAsPhysicalDamage = 3433, - + BleedingEnemiesExplodeForPctLifeAsPhysicalDamage = 3434, + /// /// attack_and_cast_speed_when_hit_+% /// - AttackAndCastSpeedWhenHitPct = 3434, - + AttackAndCastSpeedWhenHitPct = 3435, + /// /// physical_damage_on_block_+% /// - PhysicalDamageOnBlockPct = 3435, - + PhysicalDamageOnBlockPct = 3436, + /// /// block_chance_on_damage_taken_% /// - BlockChanceOnDamageTakenPct = 3436, - + BlockChanceOnDamageTakenPct = 3437, + /// /// damage_while_no_damage_taken_+% /// - DamageWhileNoDamageTakenPct = 3437, - + DamageWhileNoDamageTakenPct = 3438, + /// /// attack_speed_while_fortified_+% /// - AttackSpeedWhileFortifiedPct = 3438, - + AttackSpeedWhileFortifiedPct = 3439, + /// /// taunted_enemies_damage_taken_+% /// - TauntedEnemiesDamageTakenPct = 3439, - + TauntedEnemiesDamageTakenPct = 3440, + /// /// taunted_enemies_chance_to_be_stunned_+% /// - TauntedEnemiesChanceToBeStunnedPct = 3440, - + TauntedEnemiesChanceToBeStunnedPct = 3441, + /// /// armour_and_evasion_on_low_life_+% /// - ArmourAndEvasionOnLowLifePct = 3441, - + ArmourAndEvasionOnLowLifePct = 3442, + /// /// is_taunted /// - IsTaunted = 3442, - + IsTaunted = 3443, + /// /// summoned_monsters_set_monster_mortar_parent /// - SummonedMonstersSetMonsterMortarParent = 3443, - + SummonedMonstersSetMonsterMortarParent = 3444, + /// /// storm_cloud_charged_damage_+%_final /// - StormCloudChargedDamagePctFinal = 3444, - + StormCloudChargedDamagePctFinal = 3445, + /// /// chaos_damage_taken_+% /// - ChaosDamageTakenPct = 3445, - + ChaosDamageTakenPct = 3446, + /// /// number_of_melee_skeletons_to_summon_as_mage_skeletons /// - NumberOfMeleeSkeletonsToSummonAsMageSkeletons = 3446, - + NumberOfMeleeSkeletonsToSummonAsMageSkeletons = 3447, + /// /// local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons /// - LocalUniqueJewelWith50IntInRadiusSummonXMeleeSkeletonsAsMageSkeletons = 3447, - + LocalUniqueJewelWith50IntInRadiusSummonXMeleeSkeletonsAsMageSkeletons = 3448, + /// /// local_display_socketed_trap_skills_create_smoke_cloud /// - LocalDisplaySocketedTrapSkillsCreateSmokeCloud = 3448, - + LocalDisplaySocketedTrapSkillsCreateSmokeCloud = 3449, + /// /// glacial_hammer_item_rarity_on_shattering_enemy_+% /// - GlacialHammerItemRarityOnShatteringEnemyPct = 3449, - + GlacialHammerItemRarityOnShatteringEnemyPct = 3450, + /// /// spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+% /// - SpectralThrowDamageForEachEnemyHitWithSpectralWeaponPct = 3450, - + SpectralThrowDamageForEachEnemyHitWithSpectralWeaponPct = 3451, + /// /// double_strike_chance_to_trigger_on_kill_effects_an_additional_time_% /// - DoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePct = 3451, - + DoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePct = 3452, + /// /// viper_strike_attack_damage_per_poison_on_enemy_+% /// - ViperStrikeAttackDamagePerPoisonOnEnemyPct = 3452, - + ViperStrikeAttackDamagePerPoisonOnEnemyPct = 3453, + /// /// heavy_strike_chance_to_deal_double_damage_% /// - HeavyStrikeChanceToDealDoubleDamagePct = 3453, - + HeavyStrikeChanceToDealDoubleDamagePct = 3454, + /// /// local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius /// - LocalUniqueJewelVigilantStrikeFortifiesNearbyAlliesForXSecondsWith50StrInRadius = 3454, - + LocalUniqueJewelVigilantStrikeFortifiesNearbyAlliesForXSecondsWith50StrInRadius = 3455, + /// /// local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius /// - LocalUniqueJewelFireballRadiusUpToPctAtLongerRangesWith50IntInRadius = 3455, - + LocalUniqueJewelFireballRadiusUpToPctAtLongerRangesWith50IntInRadius = 3456, + /// /// fireball_radius_up_to_+%_at_longer_ranges /// - FireballRadiusUpToPctAtLongerRanges = 3456, - + FireballRadiusUpToPctAtLongerRanges = 3457, + /// /// local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius /// - LocalUniqueJewelAnimateWeaponCanAnimateUpToXAdditionalRangedWeaponsWith50DexInRadius = 3457, - + LocalUniqueJewelAnimateWeaponCanAnimateUpToXAdditionalRangedWeaponsWith50DexInRadius = 3458, + /// /// animate_weapon_can_animate_up_to_x_additional_ranged_weapons /// - AnimateWeaponCanAnimateUpToXAdditionalRangedWeapons = 3458, - + AnimateWeaponCanAnimateUpToXAdditionalRangedWeapons = 3459, + /// /// local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius /// - LocalUniqueJewelGroundSlamAnglePctWith50StrInRadius = 3459, - + LocalUniqueJewelGroundSlamAnglePctWith50StrInRadius = 3460, + /// /// ground_slam_angle_+% /// - GroundSlamAnglePct = 3460, - + GroundSlamAnglePct = 3461, + /// /// local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius /// - LocalUniqueJewelColdSnapGainPowerChargeOnKillPctWith50IntInRadius = 3461, - + LocalUniqueJewelColdSnapGainPowerChargeOnKillPctWith50IntInRadius = 3462, + /// /// cold_snap_gain_power_charge_on_kill_% /// - ColdSnapGainPowerChargeOnKillPct = 3462, - + ColdSnapGainPowerChargeOnKillPct = 3463, + /// /// local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius /// - LocalUniqueJewelRallyingCryDamageTakenGoesToManaPctWith50IntInRadius = 3463, - + LocalUniqueJewelRallyingCryDamageTakenGoesToManaPctWith50IntInRadius = 3464, + /// /// rallying_cry_damage_taken_goes_to_mana_% /// - RallyingCryDamageTakenGoesToManaPct = 3464, - + RallyingCryDamageTakenGoesToManaPct = 3465, + /// /// local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius /// - LocalUniqueJewelBarrageFinalVolleyFiresXAdditionalProjectilesSimultaneouslyWith50DexInRadius = 3465, - + LocalUniqueJewelBarrageFinalVolleyFiresXAdditionalProjectilesSimultaneouslyWith50DexInRadius = 3466, + /// /// barrage_final_volley_fires_x_additional_projectiles_simultaneously /// - BarrageFinalVolleyFiresXAdditionalProjectilesSimultaneously = 3466, - + BarrageFinalVolleyFiresXAdditionalProjectilesSimultaneously = 3467, + /// /// never_block /// - NeverBlock = 3467, - + NeverBlock = 3468, + /// /// mana_cost_-%_per_endurance_charge /// - ManaCostPctPerEnduranceCharge = 3468, - + ManaCostPctPerEnduranceCharge = 3469, + /// /// gain_rampage_while_at_maximum_endurance_charges /// - GainRampageWhileAtMaximumEnduranceCharges = 3469, - + GainRampageWhileAtMaximumEnduranceCharges = 3470, + /// /// lose_endurance_charges_on_rampage_end /// - LoseEnduranceChargesOnRampageEnd = 3470, - + LoseEnduranceChargesOnRampageEnd = 3471, + /// /// physical_attack_damage_+%_while_holding_a_shield /// - PhysicalAttackDamagePctWhileHoldingAShield = 3471, - + PhysicalAttackDamagePctWhileHoldingAShield = 3472, + /// /// cold_attack_damage_+%_while_holding_a_shield /// - ColdAttackDamagePctWhileHoldingAShield = 3472, - + ColdAttackDamagePctWhileHoldingAShield = 3473, + /// /// fire_attack_damage_+%_while_holding_a_shield /// - FireAttackDamagePctWhileHoldingAShield = 3473, - + FireAttackDamagePctWhileHoldingAShield = 3474, + /// /// base_number_of_ranged_animated_weapons_allowed /// - BaseNumberOfRangedAnimatedWeaponsAllowed = 3474, - + BaseNumberOfRangedAnimatedWeaponsAllowed = 3475, + /// /// virtual_number_of_ranged_animated_weapons_allowed /// - VirtualNumberOfRangedAnimatedWeaponsAllowed = 3475, - + VirtualNumberOfRangedAnimatedWeaponsAllowed = 3476, + /// /// virtual_player_gain_rampage_stacks /// - VirtualPlayerGainRampageStacks = 3476, - + VirtualPlayerGainRampageStacks = 3477, + /// /// minion_does_not_equip_quiver /// - MinionDoesNotEquipQuiver = 3477, - + MinionDoesNotEquipQuiver = 3478, + /// /// number_of_grasping_ornaments /// - NumberOfGraspingOrnaments = 3478, - + NumberOfGraspingOrnaments = 3479, + /// /// grasping_ornament_placement_radius /// - GraspingOrnamentPlacementRadius = 3479, - + GraspingOrnamentPlacementRadius = 3480, + /// /// local_no_block_chance /// - LocalNoBlockChance = 3480, - + LocalNoBlockChance = 3481, + /// /// support_controlled_destruction_spell_damage_+%_final /// - SupportControlledDestructionSpellDamagePctFinal = 3481, - + SupportControlledDestructionSpellDamagePctFinal = 3482, + /// /// support_void_manipulation_chaos_damage_+%_final /// - SupportVoidManipulationChaosDamagePctFinal = 3482, - + SupportVoidManipulationChaosDamagePctFinal = 3483, + /// /// support_rapid_decay_damage_over_time_+%_final /// - SupportRapidDecayDamageOverTimePctFinal = 3483, - + SupportRapidDecayDamageOverTimePctFinal = 3484, + /// /// cast_on_any_damage_taken_% /// - CastOnAnyDamageTakenPct = 3484, - + CastOnAnyDamageTakenPct = 3485, + /// /// stun_threshold_+% /// - StunThresholdPct = 3485, - + StunThresholdPct = 3486, + /// /// number_of_active_spectres /// - NumberOfActiveSpectres = 3486, - + NumberOfActiveSpectres = 3487, + /// /// number_of_active_skeletons /// - NumberOfActiveSkeletons = 3487, - + NumberOfActiveSkeletons = 3488, + /// /// number_of_active_raging_spirits /// - NumberOfActiveRagingSpirits = 3488, - + NumberOfActiveRagingSpirits = 3489, + /// /// number_of_active_zombies /// - NumberOfActiveZombies = 3489, - + NumberOfActiveZombies = 3490, + /// /// minion_attack_and_cast_speed_+%_per_active_skeleton /// - MinionAttackAndCastSpeedPctPerActiveSkeleton = 3490, - + MinionAttackAndCastSpeedPctPerActiveSkeleton = 3491, + /// /// minion_duration_+%_per_active_zombie /// - MinionDurationPctPerActiveZombie = 3491, - + MinionDurationPctPerActiveZombie = 3492, + /// /// minion_damage_+%_per_active_spectre /// - MinionDamagePctPerActiveSpectre = 3492, - + MinionDamagePctPerActiveSpectre = 3493, + /// /// minion_life_regeneration_per_minute_per_active_raging_spirit /// - MinionLifeRegenerationPerMinutePerActiveRagingSpirit = 3493, - + MinionLifeRegenerationPerMinutePerActiveRagingSpirit = 3494, + /// /// virtual_skill_effect_duration_pluspercent_final /// - VirtualSkillEffectDurationPluspercentFinal = 3494, - + VirtualSkillEffectDurationPluspercentFinal = 3495, + /// /// virtual_additional_skill_effect_duration /// - VirtualAdditionalSkillEffectDuration = 3495, - + VirtualAdditionalSkillEffectDuration = 3496, + /// /// offering_of_judgement_counter /// - OfferingOfJudgementCounter = 3496, - + OfferingOfJudgementCounter = 3497, + /// /// gain_her_blessing_for_3_seconds_on_ignite_% /// - GainHerBlessingFor3SecondsOnIgnitePct = 3497, - + GainHerBlessingFor3SecondsOnIgnitePct = 3498, + /// /// blind_nearby_enemies_when_gaining_her_blessing_% /// - BlindNearbyEnemiesWhenGainingHerBlessingPct = 3498, - + BlindNearbyEnemiesWhenGainingHerBlessingPct = 3499, + /// /// have_her_blessing /// - HaveHerBlessing = 3499, - + HaveHerBlessing = 3500, + /// /// avoid_freeze_chill_ignite_%_with_her_blessing /// - AvoidFreezeChillIgnitePctWithHerBlessing = 3500, - + AvoidFreezeChillIgnitePctWithHerBlessing = 3501, + /// /// attack_and_movement_speed_+%_with_her_blessing /// - AttackAndMovementSpeedPctWithHerBlessing = 3501, - + AttackAndMovementSpeedPctWithHerBlessing = 3502, + /// /// warcry_speed_+% /// - WarcrySpeedPct = 3502, - + WarcrySpeedPct = 3503, + /// /// gain_power_charge_on_non_critical_strike_% /// - GainPowerChargeOnNonCriticalStrikePct = 3503, - + GainPowerChargeOnNonCriticalStrikePct = 3504, + /// /// critical_strike_multiplier_+_per_power_charge /// - CriticalStrikeMultiplierPerPowerCharge = 3504, - + CriticalStrikeMultiplierPerPowerCharge = 3505, + /// /// apply_poison_on_hit_vs_bleeding_enemies_% /// - ApplyPoisonOnHitVsBleedingEnemiesPct = 3505, - + ApplyPoisonOnHitVsBleedingEnemiesPct = 3506, + /// /// avoid_blind_% /// - AvoidBlindPct = 3506, - + AvoidBlindPct = 3507, + /// /// damage_taken_+%_from_blinded_enemies /// - DamageTakenPctFromBlindedEnemies = 3507, - + DamageTakenPctFromBlindedEnemies = 3508, + /// /// attack_damage_+%_per_frenzy_charge /// - AttackDamagePctPerFrenzyCharge = 3508, - + AttackDamagePctPerFrenzyCharge = 3509, + /// /// attack_damage_+%_while_onslaught_active /// - AttackDamagePctWhileOnslaughtActive = 3509, - + AttackDamagePctWhileOnslaughtActive = 3510, + /// /// onslaught_effect_+% /// - OnslaughtEffectPct = 3510, - + OnslaughtEffectPct = 3511, + /// /// critical_strike_multiplier_+_vs_bleeding_enemies /// - CriticalStrikeMultiplierVsBleedingEnemies = 3511, - + CriticalStrikeMultiplierVsBleedingEnemies = 3512, + /// /// critical_strike_chance_+%_vs_poisoned_enemies /// - CriticalStrikeChancePctVsPoisonedEnemies = 3512, - + CriticalStrikeChancePctVsPoisonedEnemies = 3513, + /// /// elemental_damage_taken_+% /// - ElementalDamageTakenPct = 3513, - + ElementalDamageTakenPct = 3514, + /// /// damage_taken_from_traps_and_mines_+% /// - DamageTakenFromTrapsAndMinesPct = 3514, - + DamageTakenFromTrapsAndMinesPct = 3515, + /// /// maim_on_hit_%_vs_poisoned_enemies /// - MaimOnHitPctVsPoisonedEnemies = 3515, - + MaimOnHitPctVsPoisonedEnemies = 3516, + /// /// raider_passive_evade_melee_attacks_while_onslaughted_+%_final /// - RaiderPassiveEvadeMeleeAttacksWhileOnslaughtedPctFinal = 3516, - + RaiderPassiveEvadeMeleeAttacksWhileOnslaughtedPctFinal = 3517, + /// /// raider_passive_evade_projectile_attacks_while_onslaughted_+%_final /// - RaiderPassiveEvadeProjectileAttacksWhileOnslaughtedPctFinal = 3517, - + RaiderPassiveEvadeProjectileAttacksWhileOnslaughtedPctFinal = 3518, + /// /// dispel_status_ailments_on_flask_use /// - DispelStatusAilmentsOnFlaskUse = 3518, - + DispelStatusAilmentsOnFlaskUse = 3519, + /// /// avoid_status_ailments_%_during_flask_effect /// - AvoidStatusAilmentsPctDuringFlaskEffect = 3519, - + AvoidStatusAilmentsPctDuringFlaskEffect = 3520, + /// /// attack_speed_+%_during_flask_effect /// - AttackSpeedPctDuringFlaskEffect = 3520, - + AttackSpeedPctDuringFlaskEffect = 3521, + /// /// poison_on_hit_during_flask_effect_% /// - PoisonOnHitDuringFlaskEffectPct = 3521, - + PoisonOnHitDuringFlaskEffectPct = 3522, + /// /// cyclone_places_ground_lightning /// - CyclonePlacesGroundLightning = 3522, - + CyclonePlacesGroundLightning = 3523, + /// /// cyclone_lightning_path_radius /// - CycloneLightningPathRadius = 3523, - + CycloneLightningPathRadius = 3524, + /// /// local_unique_flask_shock_nearby_enemies_during_flask_effect /// - LocalUniqueFlaskShockNearbyEnemiesDuringFlaskEffect = 3524, - + LocalUniqueFlaskShockNearbyEnemiesDuringFlaskEffect = 3525, + /// /// local_unique_flask_shocked_during_flask_effect /// - LocalUniqueFlaskShockedDuringFlaskEffect = 3525, - + LocalUniqueFlaskShockedDuringFlaskEffect = 3526, + /// /// local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect /// - LocalUniqueFlaskLeechLightningDamagePctAsLifeDuringFlaskEffect = 3526, - + LocalUniqueFlaskLeechLightningDamagePctAsLifeDuringFlaskEffect = 3527, + /// /// local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect /// - LocalUniqueFlaskLeechLightningDamagePctAsManaDuringFlaskEffect = 3527, - + LocalUniqueFlaskLeechLightningDamagePctAsManaDuringFlaskEffect = 3528, + /// /// local_unique_flask_leech_is_instant_during_flask_effect /// - LocalUniqueFlaskLeechIsInstantDuringFlaskEffect = 3528, - + LocalUniqueFlaskLeechIsInstantDuringFlaskEffect = 3529, + /// /// local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect /// - LocalUniqueFlaskMinimumAddedLightningDamageToAttacksDuringFlaskEffect = 3529, - + LocalUniqueFlaskMinimumAddedLightningDamageToAttacksDuringFlaskEffect = 3530, + /// /// local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect /// - LocalUniqueFlaskMaximumAddedLightningDamageToAttacksDuringFlaskEffect = 3530, - + LocalUniqueFlaskMaximumAddedLightningDamageToAttacksDuringFlaskEffect = 3531, + /// /// local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect /// - LocalUniqueFlaskMinimumAddedLightningDamageToSpellsDuringFlaskEffect = 3531, - + LocalUniqueFlaskMinimumAddedLightningDamageToSpellsDuringFlaskEffect = 3532, + /// /// local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect /// - LocalUniqueFlaskMaximumAddedLightningDamageToSpellsDuringFlaskEffect = 3532, - + LocalUniqueFlaskMaximumAddedLightningDamageToSpellsDuringFlaskEffect = 3533, + /// /// local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect /// - LocalUniqueFlaskPhysicalDamagePctConvertedToLightningDuringFlaskEffect = 3533, - + LocalUniqueFlaskPhysicalDamagePctConvertedToLightningDuringFlaskEffect = 3534, + /// /// local_unique_flask_lightning_resistance_penetration_%_during_flask_effect /// - LocalUniqueFlaskLightningResistancePenetrationPctDuringFlaskEffect = 3534, - + LocalUniqueFlaskLightningResistancePenetrationPctDuringFlaskEffect = 3535, + /// /// leech_is_instant /// - LeechIsInstant = 3535, - + LeechIsInstant = 3536, + /// /// mana_leech_is_instant /// - ManaLeechIsInstant = 3536, - + ManaLeechIsInstant = 3537, + /// /// projectiles_drop_ground_fire /// - ProjectilesDropGroundFire = 3537, - + ProjectilesDropGroundFire = 3538, + /// /// projectiles_drop_ground_lightning /// - ProjectilesDropGroundLightning = 3538, - + ProjectilesDropGroundLightning = 3539, + /// /// projectiles_drop_ground_ice /// - ProjectilesDropGroundIce = 3539, - + ProjectilesDropGroundIce = 3540, + /// /// projectiles_drop_ground_effects_on_client /// - ProjectilesDropGroundEffectsOnClient = 3540, - + ProjectilesDropGroundEffectsOnClient = 3541, + /// /// base_projectile_ground_effect_duration /// - BaseProjectileGroundEffectDuration = 3541, - + BaseProjectileGroundEffectDuration = 3542, + /// /// base_projectile_skill_dot_ground_fire_area_damage_per_minute /// - BaseProjectileSkillDotGroundFireAreaDamagePerMinute = 3542, - + BaseProjectileSkillDotGroundFireAreaDamagePerMinute = 3543, + /// /// projectile_ground_effect_duration /// - ProjectileGroundEffectDuration = 3543, - + ProjectileGroundEffectDuration = 3544, + /// /// projectile_skill_dot_ground_fire_area_damage_per_minute /// - ProjectileSkillDotGroundFireAreaDamagePerMinute = 3544, - + ProjectileSkillDotGroundFireAreaDamagePerMinute = 3545, + /// /// chaos_damage_can_chill /// - ChaosDamageCanChill = 3545, - + ChaosDamageCanChill = 3546, + /// /// explode_on_kill_%_chaos_damage_to_deal /// - ExplodeOnKillPctChaosDamageToDeal = 3546, - + ExplodeOnKillPctChaosDamageToDeal = 3547, + /// /// enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds /// - EnchantmentBootsDamagePenetratesElementalResistancePctWhileYouHaventKilledFor4Seconds = 3547, - + EnchantmentBootsDamagePenetratesElementalResistancePctWhileYouHaventKilledFor4Seconds = 3548, + /// /// enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds /// - EnchantmentBootsPhysicalDamagePctAddedAsElementsInSpellsThatHitYouInPast4Seconds = 3548, - + EnchantmentBootsPhysicalDamagePctAddedAsElementsInSpellsThatHitYouInPast4Seconds = 3549, + /// /// enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s /// - EnchantmentBootsMinimumAddedChaosDamageFor4SecondsWhenCrit4S = 3549, - + EnchantmentBootsMinimumAddedChaosDamageFor4SecondsWhenCrit4S = 3550, + /// /// enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s /// - EnchantmentBootsMaximumAddedChaosDamageFor4SecondsWhenCrit4S = 3550, - + EnchantmentBootsMaximumAddedChaosDamageFor4SecondsWhenCrit4S = 3551, + /// /// life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments /// - LifeLeechPermyriadFromElementalDamageAgainstEnemiesWithElementalStatusAilments = 3551, - + LifeLeechPermyriadFromElementalDamageAgainstEnemiesWithElementalStatusAilments = 3552, + /// /// movement_speed_+%_while_not_affected_by_status_ailments /// - MovementSpeedPctWhileNotAffectedByStatusAilments = 3552, - + MovementSpeedPctWhileNotAffectedByStatusAilments = 3553, + /// /// stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds /// - StackingSpellDamagePctWhenYouOrYourTotemsKillAnEnemyFor2Seconds = 3553, - + StackingSpellDamagePctWhenYouOrYourTotemsKillAnEnemyFor2Seconds = 3554, + /// /// give_parent_stacking_spell_damage_+%_for_2_seconds_on_kill /// - GiveParentStackingSpellDamagePctFor2SecondsOnKill = 3554, - + GiveParentStackingSpellDamagePctFor2SecondsOnKill = 3555, + /// /// totems_explode_for_%_of_max_life_as_fire_damage_on_low_life /// - TotemsExplodeForPctOfMaxLifeAsFireDamageOnLowLife = 3555, - + TotemsExplodeForPctOfMaxLifeAsFireDamageOnLowLife = 3556, + /// /// chance_to_avoid_stun_%_aura_while_wielding_a_staff /// - ChanceToAvoidStunPctAuraWhileWieldingAStaff = 3556, - + ChanceToAvoidStunPctAuraWhileWieldingAStaff = 3557, + /// /// map_monsters_have_onslaught /// - MapMonstersHaveOnslaught = 3557, - + MapMonstersHaveOnslaught = 3558, + /// /// monster_is_invasion_boss /// - MonsterIsInvasionBoss = 3558, - + MonsterIsInvasionBoss = 3559, + /// /// virtual_minion_attack_speed_+% /// - VirtualMinionAttackSpeedPct = 3559, - + VirtualMinionAttackSpeedPct = 3560, + /// /// virtual_minion_cast_speed_+% /// - VirtualMinionCastSpeedPct = 3560, - + VirtualMinionCastSpeedPct = 3561, + /// /// virtual_minion_life_regeneration_per_minute /// - VirtualMinionLifeRegenerationPerMinute = 3561, - + VirtualMinionLifeRegenerationPerMinute = 3562, + /// /// dropbear_desecration_area_of_effect_+% /// - DropbearDesecrationAreaOfEffectPct = 3562, - + DropbearDesecrationAreaOfEffectPct = 3563, + /// /// Physical Damage To Return To Melee Attacker /// - PhysicalDamageToReturnToMeleeAttacker = 3563, - + PhysicalDamageToReturnToMeleeAttacker = 3564, + /// /// cold_damage_to_return_to_melee_attacker /// - ColdDamageToReturnToMeleeAttacker = 3564, - + ColdDamageToReturnToMeleeAttacker = 3565, + /// /// fire_damage_to_return_to_melee_attacker /// - FireDamageToReturnToMeleeAttacker = 3565, - + FireDamageToReturnToMeleeAttacker = 3566, + /// /// lightning_damage_to_return_to_melee_attacker /// - LightningDamageToReturnToMeleeAttacker = 3566, - + LightningDamageToReturnToMeleeAttacker = 3567, + /// /// chaos_damage_to_return_to_melee_attacker /// - ChaosDamageToReturnToMeleeAttacker = 3567, - + ChaosDamageToReturnToMeleeAttacker = 3568, + /// /// physical_damage_to_return_when_hit /// - PhysicalDamageToReturnWhenHit = 3568, - + PhysicalDamageToReturnWhenHit = 3569, + /// /// cold_damage_to_return_when_hit /// - ColdDamageToReturnWhenHit = 3569, - + ColdDamageToReturnWhenHit = 3570, + /// /// fire_damage_to_return_when_hit /// - FireDamageToReturnWhenHit = 3570, - + FireDamageToReturnWhenHit = 3571, + /// /// lightning_damage_to_return_when_hit /// - LightningDamageToReturnWhenHit = 3571, - + LightningDamageToReturnWhenHit = 3572, + /// /// chaos_damage_to_return_when_hit /// - ChaosDamageToReturnWhenHit = 3572, - + ChaosDamageToReturnWhenHit = 3573, + /// /// trap_idle_duration /// - TrapIdleDuration = 3573, - + TrapIdleDuration = 3574, + /// /// trap_retracts /// - TrapRetracts = 3574, - + TrapRetracts = 3575, + /// /// physical_damage_taken_+%_while_frozen /// - PhysicalDamageTakenPctWhileFrozen = 3575, - + PhysicalDamageTakenPctWhileFrozen = 3576, + /// /// damage_+%_for_4_seconds_on_crit /// - DamagePctFor4SecondsOnCrit = 3576, - + DamagePctFor4SecondsOnCrit = 3577, + /// /// damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse /// - DamageAndMinionDamagePctFor4SecondsOnConsumeCorpse = 3577, - + DamageAndMinionDamagePctFor4SecondsOnConsumeCorpse = 3578, + /// /// enemies_damage_taken_+%_while_cursed /// - EnemiesDamageTakenPctWhileCursed = 3578, - + EnemiesDamageTakenPctWhileCursed = 3579, + /// /// spectre_damage_+% /// - SpectreDamagePct = 3579, - + SpectreDamagePct = 3580, + /// /// critical_strike_chance_+%_for_4_seconds_on_kill /// - CriticalStrikeChancePctFor4SecondsOnKill = 3580, - + CriticalStrikeChancePctFor4SecondsOnKill = 3581, + /// /// ignite_effect_+% /// - IgniteEffectPct = 3581, - + IgniteEffectPct = 3582, + /// /// chill_effect_+% /// - ChillEffectPct = 3582, - + ChillEffectPct = 3583, + /// /// shock_effect_+% /// - ShockEffectPct = 3583, - + ShockEffectPct = 3584, + /// /// frozen_effect_+% /// - FrozenEffectPct = 3584, - + FrozenEffectPct = 3585, + /// /// critical_strikes_ignore_elemental_resistances /// - CriticalStrikesIgnoreElementalResistances = 3585, - + CriticalStrikesIgnoreElementalResistances = 3586, + /// /// physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie /// - PhysicalDamageReductionAndMinionPhysicalDamageReductionPctPerRaisedZombie = 3586, - + PhysicalDamageReductionAndMinionPhysicalDamageReductionPctPerRaisedZombie = 3587, + /// /// damage_taken_+%_from_bleeding_enemies /// - DamageTakenPctFromBleedingEnemies = 3587, - + DamageTakenPctFromBleedingEnemies = 3588, + /// /// maim_bleeding_enemies_on_hit_% /// - MaimBleedingEnemiesOnHitPct = 3588, - + MaimBleedingEnemiesOnHitPct = 3589, + /// /// one_handed_attack_speed_+% /// - OneHandedAttackSpeedPct = 3589, - + OneHandedAttackSpeedPct = 3590, + /// /// movement_speed_+%_for_4_seconds_on_block /// - MovementSpeedPctFor4SecondsOnBlock = 3590, - + MovementSpeedPctFor4SecondsOnBlock = 3591, + /// /// movement_speed_+%_while_fortified /// - MovementSpeedPctWhileFortified = 3591, - + MovementSpeedPctWhileFortified = 3592, + /// /// elemental_damage_taken_+%_at_maximum_endurance_charges /// - ElementalDamageTakenPctAtMaximumEnduranceCharges = 3592, - + ElementalDamageTakenPctAtMaximumEnduranceCharges = 3593, + /// /// status_ailments_removed_at_low_life /// - StatusAilmentsRemovedAtLowLife = 3593, - + StatusAilmentsRemovedAtLowLife = 3594, + /// /// gain_frenzy_charge_on_main_hand_kill_% /// - GainFrenzyChargeOnMainHandKillPct = 3594, - + GainFrenzyChargeOnMainHandKillPct = 3595, + /// /// gain_endurance_charge_on_main_hand_kill_% /// - GainEnduranceChargeOnMainHandKillPct = 3595, - + GainEnduranceChargeOnMainHandKillPct = 3596, + /// /// damage_taken_+%_for_4_seconds_on_kill /// - DamageTakenPctFor4SecondsOnKill = 3596, - + DamageTakenPctFor4SecondsOnKill = 3597, + /// /// avoid_stun_%_for_4_seconds_on_kill /// - AvoidStunPctFor4SecondsOnKill = 3597, - + AvoidStunPctFor4SecondsOnKill = 3598, + /// /// damage_taken_+%_for_4_seconds_on_killing_taunted_enemy /// - DamageTakenPctFor4SecondsOnKillingTauntedEnemy = 3598, - + DamageTakenPctFor4SecondsOnKillingTauntedEnemy = 3599, + /// /// warcry_cooldown_speed_+% /// - WarcryCooldownSpeedPct = 3599, - + WarcryCooldownSpeedPct = 3600, + /// /// always_stun_enemies_that_are_on_full_life /// - AlwaysStunEnemiesThatAreOnFullLife = 3600, - + AlwaysStunEnemiesThatAreOnFullLife = 3601, + /// /// stun_duration_+%_vs_enemies_that_are_on_full_life /// - StunDurationPctVsEnemiesThatAreOnFullLife = 3601, - + StunDurationPctVsEnemiesThatAreOnFullLife = 3602, + /// /// stun_duration_+%_vs_enemies_that_are_on_low_life /// - StunDurationPctVsEnemiesThatAreOnLowLife = 3602, - + StunDurationPctVsEnemiesThatAreOnLowLife = 3603, + /// /// damage_+%_with_one_handed_weapons /// - DamagePctWithOneHandedWeapons = 3603, - + DamagePctWithOneHandedWeapons = 3604, + /// /// damage_+%_with_two_handed_weapons /// - DamagePctWithTwoHandedWeapons = 3604, - + DamagePctWithTwoHandedWeapons = 3605, + /// /// damage_reduction_rating_from_body_armour_doubled /// - DamageReductionRatingFromBodyArmourDoubled = 3605, - + DamageReductionRatingFromBodyArmourDoubled = 3606, + /// /// damage_reduction_rating_%_with_active_totem /// - DamageReductionRatingPctWithActiveTotem = 3606, - + DamageReductionRatingPctWithActiveTotem = 3607, + /// /// virtual_physical_damage_taken_+% /// - VirtualPhysicalDamageTakenPct = 3607, - + VirtualPhysicalDamageTakenPct = 3608, + /// /// virtual_elemental_damage_taken_+% /// - VirtualElementalDamageTakenPct = 3608, - + VirtualElementalDamageTakenPct = 3609, + /// /// is_burning /// - IsBurning = 3609, - + IsBurning = 3610, + /// /// ignite_effect_on_self_+% /// - IgniteEffectOnSelfPct = 3610, - + IgniteEffectOnSelfPct = 3611, + /// /// shocked_effect_on_self_+% /// - ShockedEffectOnSelfPct = 3611, - + ShockedEffectOnSelfPct = 3612, + /// /// ancestor_totem_parent_activiation_range /// - AncestorTotemParentActiviationRange = 3612, - + AncestorTotemParentActiviationRange = 3613, + /// /// support_clustertrap_damage_+%_final /// - SupportClustertrapDamagePctFinal = 3613, - + SupportClustertrapDamagePctFinal = 3614, + /// /// local_display_cast_level_x_manifest_rageblade /// - LocalDisplayCastLevelXManifestRageblade = 3614, - + LocalDisplayCastLevelXManifestRageblade = 3615, + /// /// local_display_manifest_rageblade_disables_weapons /// - LocalDisplayManifestRagebladeDisablesWeapons = 3615, - + LocalDisplayManifestRagebladeDisablesWeapons = 3616, + /// /// local_display_manifest_rageblade_destroy_on_end_rampage /// - LocalDisplayManifestRagebladeDestroyOnEndRampage = 3616, - + LocalDisplayManifestRagebladeDestroyOnEndRampage = 3617, + /// /// minions_grant_onslaught /// - MinionsGrantOnslaught = 3617, - + MinionsGrantOnslaught = 3618, + /// /// ground_fire_art_variation /// - GroundFireArtVariation = 3618, - + GroundFireArtVariation = 3619, + /// /// frost_blades_damage_+% /// - FrostBladesDamagePct = 3619, - + FrostBladesDamagePct = 3620, + /// /// frost_blades_projectile_speed_+% /// - FrostBladesProjectileSpeedPct = 3620, - + FrostBladesProjectileSpeedPct = 3621, + /// /// frost_blades_number_of_additional_projectiles_in_chain /// - FrostBladesNumberOfAdditionalProjectilesInChain = 3621, - + FrostBladesNumberOfAdditionalProjectilesInChain = 3622, + /// /// summoned_raging_spirit_duration_+% /// - SummonedRagingSpiritDurationPct = 3622, - + SummonedRagingSpiritDurationPct = 3623, + /// /// summoned_raging_spirit_chance_to_spawn_additional_minion_% /// - SummonedRagingSpiritChanceToSpawnAdditionalMinionPct = 3623, - + SummonedRagingSpiritChanceToSpawnAdditionalMinionPct = 3624, + /// /// discharge_damage_+% /// - DischargeDamagePct = 3624, - + DischargeDamagePct = 3625, + /// /// discharge_radius_+% /// - DischargeRadiusPct = 3625, - + DischargeRadiusPct = 3626, + /// /// discharge_chance_not_to_consume_charges_% /// - DischargeChanceNotToConsumeChargesPct = 3626, - + DischargeChanceNotToConsumeChargesPct = 3627, + /// /// anger_mana_reservation_+% /// - AngerManaReservationPct = 3627, - + AngerManaReservationPct = 3628, + /// /// anger_aura_effect_+% /// - AngerAuraEffectPct = 3628, - + AngerAuraEffectPct = 3629, + /// /// lightning_trap_damage_+% /// - LightningTrapDamagePct = 3629, - + LightningTrapDamagePct = 3630, + /// /// lightning_trap_number_of_additional_projectiles /// - LightningTrapNumberOfAdditionalProjectiles = 3630, - + LightningTrapNumberOfAdditionalProjectiles = 3631, + /// /// lightning_trap_cooldown_speed_+% /// - LightningTrapCooldownSpeedPct = 3631, - + LightningTrapCooldownSpeedPct = 3632, + /// /// virtual_number_of_chains /// - VirtualNumberOfChains = 3632, - + VirtualNumberOfChains = 3633, + /// /// ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final /// - AmbushPassiveCriticalStrikeChanceVsEnemiesOnFullLifePctFinal = 3633, - + AmbushPassiveCriticalStrikeChanceVsEnemiesOnFullLifePctFinal = 3634, + /// /// critical_strike_multiplier_vs_enemies_on_full_life_+ /// - CriticalStrikeMultiplierVsEnemiesOnFullLife = 3634, - + CriticalStrikeMultiplierVsEnemiesOnFullLife = 3635, + /// /// assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final /// - AssassinatePassiveCriticalStrikeChanceVsEnemiesOnLowLifePctFinal = 3635, - + AssassinatePassiveCriticalStrikeChanceVsEnemiesOnLowLifePctFinal = 3636, + /// /// ambush_passive_critical_strike_chance_+%_final /// - AmbushPassiveCriticalStrikeChancePctFinal = 3636, - + AmbushPassiveCriticalStrikeChancePctFinal = 3637, + /// /// assassinate_passive_critical_strike_chance_+%_final /// - AssassinatePassiveCriticalStrikeChancePctFinal = 3637, - + AssassinatePassiveCriticalStrikeChancePctFinal = 3638, + /// /// immune_to_lava_damage /// - ImmuneToLavaDamage = 3638, - + ImmuneToLavaDamage = 3639, + /// /// number_of_additional_storm_clouds_allowed /// - NumberOfAdditionalStormCloudsAllowed = 3639, - + NumberOfAdditionalStormCloudsAllowed = 3640, + /// /// local_flask_consumes_x_frenzy_charges_on_use /// - LocalFlaskConsumesXFrenzyChargesOnUse = 3640, - + LocalFlaskConsumesXFrenzyChargesOnUse = 3641, + /// /// local_flask_consumes_x_endurance_charges_on_use /// - LocalFlaskConsumesXEnduranceChargesOnUse = 3641, - + LocalFlaskConsumesXEnduranceChargesOnUse = 3642, + /// /// local_flask_consumes_x_power_charges_on_use /// - LocalFlaskConsumesXPowerChargesOnUse = 3642, - + LocalFlaskConsumesXPowerChargesOnUse = 3643, + /// /// map_shrines_are_darkshrines /// - MapShrinesAreDarkshrines = 3643, - + MapShrinesAreDarkshrines = 3644, + /// /// physical_damage_+%_while_frozen /// - PhysicalDamagePctWhileFrozen = 3644, - + PhysicalDamagePctWhileFrozen = 3645, + /// /// local_recharge_on_crit_% /// - LocalRechargeOnCritPct = 3645, - + LocalRechargeOnCritPct = 3646, + /// /// mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy /// - ManaAndEsRegenerationPerMinutePctWhenYouFreezeShockOrIgniteAnEnemy = 3646, - + ManaAndEsRegenerationPerMinutePctWhenYouFreezeShockOrIgniteAnEnemy = 3647, + /// /// damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element /// - DamageTakenPctToAnElementFor4SecondsWhenHitByDamageFromAnElement = 3647, - + DamageTakenPctToAnElementFor4SecondsWhenHitByDamageFromAnElement = 3648, + /// /// cold_damage_taken_+% /// - ColdDamageTakenPct = 3648, - + ColdDamageTakenPct = 3649, + /// /// lightning_damage_taken_+% /// - LightningDamageTakenPct = 3649, - + LightningDamageTakenPct = 3650, + /// /// burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_% /// - BurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3650, - + BurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3651, + /// /// burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_% /// - BurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3651, - + BurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3652, + /// /// local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius /// - LocalUniqueJewelBurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPctWith50DexterityInRadius = 3652, - + LocalUniqueJewelBurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPctWith50DexterityInRadius = 3653, + /// /// local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius /// - LocalUniqueJewelBurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPctWith50DexterityInRadius = 3653, - + LocalUniqueJewelBurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPctWith50DexterityInRadius = 3654, + /// /// bleed_on_hit_with_attacks_% /// - BleedOnHitWithAttacksPct = 3654, - + BleedOnHitWithAttacksPct = 3655, + /// /// gain_flask_chance_on_crit_% /// - GainFlaskChanceOnCritPct = 3655, - + GainFlaskChanceOnCritPct = 3656, + /// /// player_far_shot /// - PlayerFarShot = 3656, - + PlayerFarShot = 3657, + /// /// fire_elemental_meteor_landing_range /// - FireElementalMeteorLandingRange = 3657, - + FireElementalMeteorLandingRange = 3658, + /// /// virtual_aura_effect_pluspercent /// - VirtualAuraEffectPluspercent = 3658, - + VirtualAuraEffectPluspercent = 3659, + /// /// cannot_be_poisoned /// - CannotBePoisoned = 3659, - + CannotBePoisoned = 3660, + /// /// avoid_fire_damage_% /// - AvoidFireDamagePct = 3660, - + AvoidFireDamagePct = 3661, + /// /// avoid_cold_damage_% /// - AvoidColdDamagePct = 3661, - + AvoidColdDamagePct = 3662, + /// /// avoid_lightning_damage_% /// - AvoidLightningDamagePct = 3662, - + AvoidLightningDamagePct = 3663, + /// /// avoid_chaos_damage_% /// - AvoidChaosDamagePct = 3663, - + AvoidChaosDamagePct = 3664, + /// /// avoid_physical_damage_% /// - AvoidPhysicalDamagePct = 3664, - + AvoidPhysicalDamagePct = 3665, + /// /// remove_bleed_on_flask_use /// - RemoveBleedOnFlaskUse = 3665, - + RemoveBleedOnFlaskUse = 3666, + /// /// slayer_ascendancy_melee_splash_damage_+%_final /// - SlayerAscendancyMeleeSplashDamagePctFinal = 3666, - + SlayerAscendancyMeleeSplashDamagePctFinal = 3667, + /// /// slayer_ascendancy_melee_splash_damage_+%_final_for_splash /// - SlayerAscendancyMeleeSplashDamagePctFinalForSplash = 3667, - + SlayerAscendancyMeleeSplashDamagePctFinalForSplash = 3668, + /// /// guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield /// - GuardianReservedManaPctGivenToYouAndNearbyAlliesAsBaseMaximumEnergyShield = 3668, - + GuardianReservedManaPctGivenToYouAndNearbyAlliesAsBaseMaximumEnergyShield = 3669, + /// /// virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies /// - VirtualBaseMaximumEnergyShieldToGrantToYouAndNearbyAllies = 3669, - + VirtualBaseMaximumEnergyShieldToGrantToYouAndNearbyAllies = 3670, + /// /// virtual_armour_to_grant_to_you_and_nearby_allies /// - VirtualArmourToGrantToYouAndNearbyAllies = 3670, - + VirtualArmourToGrantToYouAndNearbyAllies = 3671, + /// /// number_of_additional_siege_ballistae_per_200_dexterity /// - NumberOfAdditionalSiegeBallistaePer200Dexterity = 3671, - + NumberOfAdditionalSiegeBallistaePer200Dexterity = 3672, + /// /// attack_minimum_added_physical_damage_per_25_dexterity /// - AttackMinimumAddedPhysicalDamagePer25Dexterity = 3672, - + AttackMinimumAddedPhysicalDamagePer25Dexterity = 3673, + /// /// attack_maximum_added_physical_damage_per_25_dexterity /// - AttackMaximumAddedPhysicalDamagePer25Dexterity = 3673, - + AttackMaximumAddedPhysicalDamagePer25Dexterity = 3674, + /// /// local_display_nearby_enemies_are_blinded /// - LocalDisplayNearbyEnemiesAreBlinded = 3674, - + LocalDisplayNearbyEnemiesAreBlinded = 3675, + /// /// local_display_nearby_enemies_movement_speed_+% /// - LocalDisplayNearbyEnemiesMovementSpeedPct = 3675, - + LocalDisplayNearbyEnemiesMovementSpeedPct = 3676, + /// /// local_display_socketed_gems_supported_by_x_hypothermia /// - LocalDisplaySocketedGemsSupportedByXHypothermia = 3676, - + LocalDisplaySocketedGemsSupportedByXHypothermia = 3677, + /// /// local_display_socketed_gems_supported_by_x_ice_bite /// - LocalDisplaySocketedGemsSupportedByXIceBite = 3677, - + LocalDisplaySocketedGemsSupportedByXIceBite = 3678, + /// /// local_display_socketed_gems_supported_by_x_cold_penetration /// - LocalDisplaySocketedGemsSupportedByXColdPenetration = 3678, - + LocalDisplaySocketedGemsSupportedByXColdPenetration = 3679, + /// /// local_display_socketed_gems_supported_by_x_mana_leech /// - LocalDisplaySocketedGemsSupportedByXManaLeech = 3679, - + LocalDisplaySocketedGemsSupportedByXManaLeech = 3680, + /// /// local_display_socketed_gems_supported_by_x_added_cold_damage /// - LocalDisplaySocketedGemsSupportedByXAddedColdDamage = 3680, - + LocalDisplaySocketedGemsSupportedByXAddedColdDamage = 3681, + /// /// local_display_socketed_gems_supported_by_x_reduced_mana_cost /// - LocalDisplaySocketedGemsSupportedByXReducedManaCost = 3681, - + LocalDisplaySocketedGemsSupportedByXReducedManaCost = 3682, + /// /// projectile_nova_extend_projectiles_forward_by_x_units /// - ProjectileNovaExtendProjectilesForwardByXUnits = 3682, - + ProjectileNovaExtendProjectilesForwardByXUnits = 3683, + /// /// storm_cloud_destroy_when_caster_dies /// - StormCloudDestroyWhenCasterDies = 3683, - + StormCloudDestroyWhenCasterDies = 3684, + /// /// chance_to_gain_onslaught_on_kill_for_4_seconds_% /// - ChanceToGainOnslaughtOnKillFor4SecondsPct = 3684, - + ChanceToGainOnslaughtOnKillFor4SecondsPct = 3685, + /// /// chance_to_cast_on_rampage_tier_% /// - ChanceToCastOnRampageTierPct = 3685, - + ChanceToCastOnRampageTierPct = 3686, + /// /// local_display_minions_grant_onslaught /// - LocalDisplayMinionsGrantOnslaught = 3686, - + LocalDisplayMinionsGrantOnslaught = 3687, + /// /// %_of_life_and_energy_shield_to_deal_as_damage /// - PctOfLifeAndEnergyShieldToDealAsDamage = 3687, - + PctOfLifeAndEnergyShieldToDealAsDamage = 3688, + /// /// critical_strike_chance_+%_vs_blinded_enemies /// - CriticalStrikeChancePctVsBlindedEnemies = 3688, - + CriticalStrikeChancePctVsBlindedEnemies = 3689, + /// /// is_in_singularity /// - IsInSingularity = 3689, - + IsInSingularity = 3690, + /// /// chilled_ground_on_freeze_%_chance_for_3_seconds /// - ChilledGroundOnFreezePctChanceFor3Seconds = 3690, - + ChilledGroundOnFreezePctChanceFor3Seconds = 3691, + /// /// consecrate_ground_on_kill_%_for_3_seconds /// - ConsecrateGroundOnKillPctFor3Seconds = 3691, - + ConsecrateGroundOnKillPctFor3Seconds = 3692, + /// /// in_symbol /// - InSymbol = 3692, - + InSymbol = 3693, + /// /// damage_taken_+%_from_enemies_in_symbols /// - DamageTakenPctFromEnemiesInSymbols = 3693, - + DamageTakenPctFromEnemiesInSymbols = 3694, + /// /// local_display_socketed_aura_gems_reserve_no_mana /// - LocalDisplaySocketedAuraGemsReserveNoMana = 3694, - + LocalDisplaySocketedAuraGemsReserveNoMana = 3695, + /// /// no_mana_reserved /// - NoManaReserved = 3695, - + NoManaReserved = 3696, + /// /// piercing_attacks_cause_bleeding /// - PiercingAttacksCauseBleeding = 3696, - + PiercingAttacksCauseBleeding = 3697, + /// /// spell_damage_modifiers_apply_to_skill_dot /// - SpellDamageModifiersApplyToSkillDot = 3697, - + SpellDamageModifiersApplyToSkillDot = 3698, + /// /// shadow_blades_projectile_spread /// - ShadowBladesProjectileSpread = 3698, - + ShadowBladesProjectileSpread = 3699, + /// /// map_disable_bloodlines /// - MapDisableBloodlines = 3699, - + MapDisableBloodlines = 3700, + /// /// map_disable_nemesis /// - MapDisableNemesis = 3700, - + MapDisableNemesis = 3701, + /// /// is_poisoned /// - IsPoisoned = 3701, - + IsPoisoned = 3702, + /// /// is_vinktar_lightning_bond_source /// - IsVinktarLightningBondSource = 3702, - + IsVinktarLightningBondSource = 3703, + /// /// is_vinktar_lightning_bond_target /// - IsVinktarLightningBondTarget = 3703, - + IsVinktarLightningBondTarget = 3704, + /// /// energy_shield_recharges_on_block_% /// - EnergyShieldRechargesOnBlockPct = 3704, - + EnergyShieldRechargesOnBlockPct = 3705, + /// /// dropped_weapons_have_20_quality /// - DroppedWeaponsHave20Quality = 3705, - + DroppedWeaponsHave20Quality = 3706, + /// /// drop_additional_20_quality_gems /// - DropAdditional20QualityGems = 3706, - + DropAdditional20QualityGems = 3707, + /// /// killed_rare_monsters_drop_additional_unique_items /// - KilledRareMonstersDropAdditionalUniqueItems = 3707, - + KilledRareMonstersDropAdditionalUniqueItems = 3708, + /// /// poison_duration_is_skill_duration /// - PoisonDurationIsSkillDuration = 3708, - + PoisonDurationIsSkillDuration = 3709, + /// /// map_players_gain_rare_monster_mods_on_kill_ms /// - MapPlayersGainRareMonsterModsOnKillMs = 3709, - + MapPlayersGainRareMonsterModsOnKillMs = 3710, + /// /// soul_eater_on_rare_kill_ms /// - SoulEaterOnRareKillMs = 3710, - + SoulEaterOnRareKillMs = 3711, + /// /// map_players_gain_soul_eater_on_rare_kill_ms /// - MapPlayersGainSoulEaterOnRareKillMs = 3711, - + MapPlayersGainSoulEaterOnRareKillMs = 3712, + /// /// gain_soul_eater_during_flask_effect /// - GainSoulEaterDuringFlaskEffect = 3712, - + GainSoulEaterDuringFlaskEffect = 3713, + /// /// lose_soul_eater_souls_on_flask_use /// - LoseSoulEaterSoulsOnFlaskUse = 3713, - + LoseSoulEaterSoulsOnFlaskUse = 3714, + /// /// totemified_skills_taunt_on_hit_% /// - TotemifiedSkillsTauntOnHitPct = 3714, - + TotemifiedSkillsTauntOnHitPct = 3715, + /// /// virtual_chance_to_taunt_on_hit_% /// - VirtualChanceToTauntOnHitPct = 3715, - + VirtualChanceToTauntOnHitPct = 3716, + /// /// offerings_also_buff_you /// - OfferingsAlsoBuffYou = 3716, - + OfferingsAlsoBuffYou = 3717, + /// /// caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% /// - CausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3717, - + CausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3718, + /// /// minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% /// - MinionCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3718, - + MinionCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3719, + /// /// storm_cloud_charge_count /// - StormCloudChargeCount = 3719, - + StormCloudChargeCount = 3720, + /// /// monster_is_duplicated /// - MonsterIsDuplicated = 3720, - + MonsterIsDuplicated = 3721, + /// /// gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit /// - GainLifeLeechFromAnyDamagePermyriadAsLifeFor4SecondsIfTakenSavageHit = 3721, - + GainLifeLeechFromAnyDamagePermyriadAsLifeFor4SecondsIfTakenSavageHit = 3722, + /// /// gain_damage_+%_for_4_seconds_if_taken_savage_hit /// - GainDamagePctFor4SecondsIfTakenSavageHit = 3722, - + GainDamagePctFor4SecondsIfTakenSavageHit = 3723, + /// /// gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit /// - GainAttackSpeedPctFor4SecondsIfTakenSavageHit = 3723, - + GainAttackSpeedPctFor4SecondsIfTakenSavageHit = 3724, + /// /// damage_+%_vs_burning_enemies /// - DamagePctVsBurningEnemies = 3724, - + DamagePctVsBurningEnemies = 3725, + /// /// endurance_charge_on_off_hand_kill_% /// - EnduranceChargeOnOffHandKillPct = 3725, - + EnduranceChargeOnOffHandKillPct = 3726, + /// /// aura_melee_physical_damage_+%_per_10_strength /// - AuraMeleePhysicalDamagePctPer10Strength = 3726, - + AuraMeleePhysicalDamagePctPer10Strength = 3727, + /// /// attack_on_death_% /// - AttackOnDeathPct = 3727, - + AttackOnDeathPct = 3728, + /// /// siphon_life_leech_from_damage_permyriad /// - SiphonLifeLeechFromDamagePermyriad = 3728, - + SiphonLifeLeechFromDamagePermyriad = 3729, + /// /// total_base_maximum_mana /// - TotalBaseMaximumMana = 3729, - + TotalBaseMaximumMana = 3730, + /// /// combined_mana_+% /// - CombinedManaPct = 3730, - + CombinedManaPct = 3731, + /// /// combined_mana_+%_final /// - CombinedManaPctFinal = 3731, - + CombinedManaPctFinal = 3732, + /// /// you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_% /// - YouAndYourTotemsGainAnEnduranceChargeOnBurningEnemyKillPct = 3732, - + YouAndYourTotemsGainAnEnduranceChargeOnBurningEnemyKillPct = 3733, + /// /// minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_% /// - MinionsGrantOwnerAndOwnersTotemsGainsEnduranceChargeOnBurningEnemyKillPct = 3733, - + MinionsGrantOwnerAndOwnersTotemsGainsEnduranceChargeOnBurningEnemyKillPct = 3734, + /// /// grant_owner_and_owners_totems_an_endurance_charge_on_burning_enemy_kill_% /// - GrantOwnerAndOwnersTotemsAnEnduranceChargeOnBurningEnemyKillPct = 3734, - + GrantOwnerAndOwnersTotemsAnEnduranceChargeOnBurningEnemyKillPct = 3735, + /// /// auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies /// - AurasGrantAdditionalPhysicalDamageReductionPctToYouAndYourAllies = 3735, - + AurasGrantAdditionalPhysicalDamageReductionPctToYouAndYourAllies = 3736, + /// /// auras_grant_damage_+%_to_you_and_your_allies /// - AurasGrantDamagePctToYouAndYourAllies = 3736, - + AurasGrantDamagePctToYouAndYourAllies = 3737, + /// /// auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies /// - AurasGrantAttackAndCastSpeedPctToYouAndYourAllies = 3737, - + AurasGrantAttackAndCastSpeedPctToYouAndYourAllies = 3738, + /// /// placing_traps_cooldown_recovery_+% /// - PlacingTrapsCooldownRecoveryPct = 3738, - + PlacingTrapsCooldownRecoveryPct = 3739, + /// /// damage_+%_vs_enemies_affected_by_status_ailments /// - DamagePctVsEnemiesAffectedByStatusAilments = 3739, - + DamagePctVsEnemiesAffectedByStatusAilments = 3740, + /// /// warcries_are_instant /// - WarcriesAreInstant = 3740, - + WarcriesAreInstant = 3741, + /// /// aura_grant_shield_defences_to_nearby_allies /// - AuraGrantShieldDefencesToNearbyAllies = 3741, - + AuraGrantShieldDefencesToNearbyAllies = 3742, + /// /// minion_additional_physical_damage_reduction_% /// - MinionAdditionalPhysicalDamageReductionPct = 3742, - + MinionAdditionalPhysicalDamageReductionPct = 3743, + /// /// phasing_for_4_seconds_on_kill_% /// - PhasingFor4SecondsOnKillPct = 3743, - + PhasingFor4SecondsOnKillPct = 3744, + /// /// skill_area_of_effect_+%_per_active_mine /// - SkillAreaOfEffectPctPerActiveMine = 3744, - + SkillAreaOfEffectPctPerActiveMine = 3745, + /// /// damage_+%_per_active_trap /// - DamagePctPerActiveTrap = 3745, - + DamagePctPerActiveTrap = 3746, + /// /// immune_to_status_ailments_while_phased /// - ImmuneToStatusAilmentsWhilePhased = 3746, - + ImmuneToStatusAilmentsWhilePhased = 3747, + /// /// chance_to_dodge_spells_%_while_phased /// - ChanceToDodgeSpellsPctWhilePhased = 3747, - + ChanceToDodgeSpellsPctWhilePhased = 3748, + /// /// additional_critical_strike_chance_per_power_charge_permyriad /// - AdditionalCriticalStrikeChancePerPowerChargePermyriad = 3748, - + AdditionalCriticalStrikeChancePerPowerChargePermyriad = 3749, + /// /// movement_skills_cost_no_mana /// - MovementSkillsCostNoMana = 3749, - + MovementSkillsCostNoMana = 3750, + /// /// attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use /// - AttackAndCastSpeedPctFor4SecondsOnMovementSkillUse = 3750, - + AttackAndCastSpeedPctFor4SecondsOnMovementSkillUse = 3751, + /// /// recover_10%_of_maximum_mana_on_skill_use_% /// - Recover10PctOfMaximumManaOnSkillUsePct = 3751, - + Recover10PctOfMaximumManaOnSkillUsePct = 3752, + /// /// mine_laying_speed_+%_for_4_seconds_on_detonation /// - MineLayingSpeedPctFor4SecondsOnDetonation = 3752, - + MineLayingSpeedPctFor4SecondsOnDetonation = 3753, + /// /// damage_+%_for_4_seconds_on_detonation /// - DamagePctFor4SecondsOnDetonation = 3753, - + DamagePctFor4SecondsOnDetonation = 3754, + /// /// flask_charges_recovered_per_3_seconds /// - FlaskChargesRecoveredPer3Seconds = 3754, - + FlaskChargesRecoveredPer3Seconds = 3755, + /// /// trap_skill_area_of_effect_+% /// - TrapSkillAreaOfEffectPct = 3755, - + TrapSkillAreaOfEffectPct = 3756, + /// /// number_of_active_mines /// - NumberOfActiveMines = 3756, - + NumberOfActiveMines = 3757, + /// /// number_of_active_traps /// - NumberOfActiveTraps = 3757, - + NumberOfActiveTraps = 3758, + /// /// is_spike_trap /// - IsSpikeTrap = 3758, - + IsSpikeTrap = 3759, + /// /// is_arrow_trap /// - IsArrowTrap = 3759, - + IsArrowTrap = 3760, + /// /// damage_taken_+%_from_spike_traps_final /// - DamageTakenPctFromSpikeTrapsFinal = 3760, - + DamageTakenPctFromSpikeTrapsFinal = 3761, + /// /// damage_taken_+%_from_arrow_traps_final /// - DamageTakenPctFromArrowTrapsFinal = 3761, - + DamageTakenPctFromArrowTrapsFinal = 3762, + /// /// minion_damage_taken_+%_from_spike_traps_final /// - MinionDamageTakenPctFromSpikeTrapsFinal = 3762, - + MinionDamageTakenPctFromSpikeTrapsFinal = 3763, + /// /// minion_damage_taken_+%_from_arrow_traps_final /// - MinionDamageTakenPctFromArrowTrapsFinal = 3763, - + MinionDamageTakenPctFromArrowTrapsFinal = 3764, + /// /// labyrinth_trap_degen_effect_on_self_+% /// - LabyrinthTrapDegenEffectOnSelfPct = 3764, - + LabyrinthTrapDegenEffectOnSelfPct = 3765, + /// /// minions_have_labyrinth_trap_degen_effect_+% /// - MinionsHaveLabyrinthTrapDegenEffectPct = 3765, - + MinionsHaveLabyrinthTrapDegenEffectPct = 3766, + /// /// immune_to_labyrinth_degen_effect /// - ImmuneToLabyrinthDegenEffect = 3766, - + ImmuneToLabyrinthDegenEffect = 3767, + /// /// minions_are_immune_to_labyrinth_degen_effect /// - MinionsAreImmuneToLabyrinthDegenEffect = 3767, - + MinionsAreImmuneToLabyrinthDegenEffect = 3768, + /// /// nearby_traps_within_x_units_also_trigger_on_triggering_trap /// - NearbyTrapsWithinXUnitsAlsoTriggerOnTriggeringTrap = 3768, - + NearbyTrapsWithinXUnitsAlsoTriggerOnTriggeringTrap = 3769, + /// /// number_of_additional_mines_to_place /// - NumberOfAdditionalMinesToPlace = 3769, - + NumberOfAdditionalMinesToPlace = 3770, + /// /// chance_to_place_an_additional_mine_% /// - ChanceToPlaceAnAdditionalMinePct = 3770, - + ChanceToPlaceAnAdditionalMinePct = 3771, + /// /// immune_to_shunt_geal /// - ImmuneToShuntGeal = 3771, - + ImmuneToShuntGeal = 3772, + /// /// chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_% /// - ChanceForElementalDamageToBeAddedAsAdditionalChaosDamagePct = 3772, - + ChanceForElementalDamageToBeAddedAsAdditionalChaosDamagePct = 3773, + /// /// critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments /// - CriticalStrikeChancePctVsEnemiesWithoutElementalStatusAilments = 3773, - + CriticalStrikeChancePctVsEnemiesWithoutElementalStatusAilments = 3774, + /// /// spell_damage_+%_for_4_seconds_on_cast /// - SpellDamagePctFor4SecondsOnCast = 3774, - + SpellDamagePctFor4SecondsOnCast = 3775, + /// /// attack_damage_+%_for_4_seconds_on_cast /// - AttackDamagePctFor4SecondsOnCast = 3775, - + AttackDamagePctFor4SecondsOnCast = 3776, + /// /// attack_speed_+%_for_4_seconds_on_attack /// - AttackSpeedPctFor4SecondsOnAttack = 3776, - + AttackSpeedPctFor4SecondsOnAttack = 3777, + /// /// cast_speed_+%_for_4_seconds_on_attack /// - CastSpeedPctFor4SecondsOnAttack = 3777, - + CastSpeedPctFor4SecondsOnAttack = 3778, + /// /// attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge /// - AttackAndCastSpeedPctFor4SecondsOnBeginEsRecharge = 3778, - + AttackAndCastSpeedPctFor4SecondsOnBeginEsRecharge = 3779, + /// /// display_attack_with_commandment_of_force_on_hit_% /// - DisplayAttackWithCommandmentOfForceOnHitPct = 3779, - + DisplayAttackWithCommandmentOfForceOnHitPct = 3780, + /// /// display_attack_with_commandment_of_fury_on_hit_% /// - DisplayAttackWithCommandmentOfFuryOnHitPct = 3780, - + DisplayAttackWithCommandmentOfFuryOnHitPct = 3781, + /// /// display_attack_with_commandment_of_light_when_critically_hit_% /// - DisplayAttackWithCommandmentOfLightWhenCriticallyHitPct = 3781, - + DisplayAttackWithCommandmentOfLightWhenCriticallyHitPct = 3782, + /// /// display_attack_with_commandment_of_spite_when_hit_% /// - DisplayAttackWithCommandmentOfSpiteWhenHitPct = 3782, - + DisplayAttackWithCommandmentOfSpiteWhenHitPct = 3783, + /// /// display_attack_with_decree_of_force_on_hit_% /// - DisplayAttackWithDecreeOfForceOnHitPct = 3783, - + DisplayAttackWithDecreeOfForceOnHitPct = 3784, + /// /// display_attack_with_decree_of_fury_on_hit_% /// - DisplayAttackWithDecreeOfFuryOnHitPct = 3784, - + DisplayAttackWithDecreeOfFuryOnHitPct = 3785, + /// /// display_attack_with_decree_of_light_when_critically_hit_% /// - DisplayAttackWithDecreeOfLightWhenCriticallyHitPct = 3785, - + DisplayAttackWithDecreeOfLightWhenCriticallyHitPct = 3786, + /// /// display_attack_with_decree_of_spite_when_hit_% /// - DisplayAttackWithDecreeOfSpiteWhenHitPct = 3786, - + DisplayAttackWithDecreeOfSpiteWhenHitPct = 3787, + /// /// display_attack_with_edict_of_force_on_hit_% /// - DisplayAttackWithEdictOfForceOnHitPct = 3787, - + DisplayAttackWithEdictOfForceOnHitPct = 3788, + /// /// display_attack_with_edict_of_fury_on_hit_% /// - DisplayAttackWithEdictOfFuryOnHitPct = 3788, - + DisplayAttackWithEdictOfFuryOnHitPct = 3789, + /// /// display_attack_with_edict_of_ire_when_hit_% /// - DisplayAttackWithEdictOfIreWhenHitPct = 3789, - + DisplayAttackWithEdictOfIreWhenHitPct = 3790, + /// /// display_attack_with_edict_of_light_when_critically_hit_% /// - DisplayAttackWithEdictOfLightWhenCriticallyHitPct = 3790, - + DisplayAttackWithEdictOfLightWhenCriticallyHitPct = 3791, + /// /// display_attack_with_edict_of_spite_when_hit_% /// - DisplayAttackWithEdictOfSpiteWhenHitPct = 3791, - + DisplayAttackWithEdictOfSpiteWhenHitPct = 3792, + /// /// display_attack_with_word_of_force_on_hit_% /// - DisplayAttackWithWordOfForceOnHitPct = 3792, - + DisplayAttackWithWordOfForceOnHitPct = 3793, + /// /// display_attack_with_word_of_fury_on_hit_% /// - DisplayAttackWithWordOfFuryOnHitPct = 3793, - + DisplayAttackWithWordOfFuryOnHitPct = 3794, + /// /// display_attack_with_word_of_light_when_critically_hit_% /// - DisplayAttackWithWordOfLightWhenCriticallyHitPct = 3794, - + DisplayAttackWithWordOfLightWhenCriticallyHitPct = 3795, + /// /// display_attack_with_word_of_ire_when_hit_% /// - DisplayAttackWithWordOfIreWhenHitPct = 3795, - + DisplayAttackWithWordOfIreWhenHitPct = 3796, + /// /// display_attack_with_word_of_spite_when_hit_% /// - DisplayAttackWithWordOfSpiteWhenHitPct = 3796, - + DisplayAttackWithWordOfSpiteWhenHitPct = 3797, + /// /// display_cast_commandment_of_blades_on_hit_%_ /// - DisplayCastCommandmentOfBladesOnHitPct = 3797, - + DisplayCastCommandmentOfBladesOnHitPct = 3798, + /// /// display_cast_commandment_of_inferno_on_kill_% /// - DisplayCastCommandmentOfInfernoOnKillPct = 3798, - + DisplayCastCommandmentOfInfernoOnKillPct = 3799, + /// /// display_cast_commandment_of_reflection_when_hit_% /// - DisplayCastCommandmentOfReflectionWhenHitPct = 3799, - + DisplayCastCommandmentOfReflectionWhenHitPct = 3800, + /// /// display_cast_commandment_of_tempest_on_hit_% /// - DisplayCastCommandmentOfTempestOnHitPct = 3800, - + DisplayCastCommandmentOfTempestOnHitPct = 3801, + /// /// display_cast_commandment_of_the_grave_on_kill_% /// - DisplayCastCommandmentOfTheGraveOnKillPct = 3801, - + DisplayCastCommandmentOfTheGraveOnKillPct = 3802, + /// /// display_cast_commandment_of_war_on_kill_% /// - DisplayCastCommandmentOfWarOnKillPct = 3802, - + DisplayCastCommandmentOfWarOnKillPct = 3803, + /// /// display_cast_commandment_of_winter_when_hit_% /// - DisplayCastCommandmentOfWinterWhenHitPct = 3803, - + DisplayCastCommandmentOfWinterWhenHitPct = 3804, + /// /// display_cast_decree_of_blades_on_hit_%__ /// - DisplayCastDecreeOfBladesOnHitPct = 3804, - + DisplayCastDecreeOfBladesOnHitPct = 3805, + /// /// display_cast_decree_of_inferno_on_kill_% /// - DisplayCastDecreeOfInfernoOnKillPct = 3805, - + DisplayCastDecreeOfInfernoOnKillPct = 3806, + /// /// display_cast_decree_of_reflection_when_hit_% /// - DisplayCastDecreeOfReflectionWhenHitPct = 3806, - + DisplayCastDecreeOfReflectionWhenHitPct = 3807, + /// /// display_cast_decree_of_tempest_on_hit_% /// - DisplayCastDecreeOfTempestOnHitPct = 3807, - + DisplayCastDecreeOfTempestOnHitPct = 3808, + /// /// display_cast_decree_of_the_grave_on_kill_% /// - DisplayCastDecreeOfTheGraveOnKillPct = 3808, - + DisplayCastDecreeOfTheGraveOnKillPct = 3809, + /// /// display_cast_decree_of_war_on_kill_% /// - DisplayCastDecreeOfWarOnKillPct = 3809, - + DisplayCastDecreeOfWarOnKillPct = 3810, + /// /// display_cast_decree_of_winter_when_hit_% /// - DisplayCastDecreeOfWinterWhenHitPct = 3810, - + DisplayCastDecreeOfWinterWhenHitPct = 3811, + /// /// display_cast_edict_of_blades_on_hit_%_ /// - DisplayCastEdictOfBladesOnHitPct = 3811, - + DisplayCastEdictOfBladesOnHitPct = 3812, + /// /// display_cast_edict_of_inferno_on_kill_% /// - DisplayCastEdictOfInfernoOnKillPct = 3812, - + DisplayCastEdictOfInfernoOnKillPct = 3813, + /// /// display_cast_edict_of_reflection_when_hit_% /// - DisplayCastEdictOfReflectionWhenHitPct = 3813, - + DisplayCastEdictOfReflectionWhenHitPct = 3814, + /// /// display_cast_edict_of_tempest_on_hit_% /// - DisplayCastEdictOfTempestOnHitPct = 3814, - + DisplayCastEdictOfTempestOnHitPct = 3815, + /// /// display_cast_edict_of_the_grave_on_kill_% /// - DisplayCastEdictOfTheGraveOnKillPct = 3815, - + DisplayCastEdictOfTheGraveOnKillPct = 3816, + /// /// display_cast_edict_of_war_on_kill_% /// - DisplayCastEdictOfWarOnKillPct = 3816, - + DisplayCastEdictOfWarOnKillPct = 3817, + /// /// display_cast_edict_of_winter_when_hit_% /// - DisplayCastEdictOfWinterWhenHitPct = 3817, - + DisplayCastEdictOfWinterWhenHitPct = 3818, + /// /// display_cast_word_of_blades_on_hit_% /// - DisplayCastWordOfBladesOnHitPct = 3818, - + DisplayCastWordOfBladesOnHitPct = 3819, + /// /// display_cast_word_of_inferno_on_kill_% /// - DisplayCastWordOfInfernoOnKillPct = 3819, - + DisplayCastWordOfInfernoOnKillPct = 3820, + /// /// display_cast_word_of_reflection_when_hit_% /// - DisplayCastWordOfReflectionWhenHitPct = 3820, - + DisplayCastWordOfReflectionWhenHitPct = 3821, + /// /// display_cast_word_of_tempest_on_hit_% /// - DisplayCastWordOfTempestOnHitPct = 3821, - + DisplayCastWordOfTempestOnHitPct = 3822, + /// /// display_cast_word_of_winter_when_hit_% /// - DisplayCastWordOfWinterWhenHitPct = 3822, - + DisplayCastWordOfWinterWhenHitPct = 3823, + /// /// life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen /// - LifeEsAndManaRecoveryPctFor4SecondsOnKillingEnemiesAffectedByYourDegen = 3823, - + LifeEsAndManaRecoveryPctFor4SecondsOnKillingEnemiesAffectedByYourDegen = 3824, + /// /// trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final /// - TricksterPassiveChanceToEvadeAttacksWhileNotOnFullEnergyShieldPctFinal = 3824, - + TricksterPassiveChanceToEvadeAttacksWhileNotOnFullEnergyShieldPctFinal = 3825, + /// /// display_cast_word_of_flames_on_hit_% /// - DisplayCastWordOfFlamesOnHitPct = 3825, - + DisplayCastWordOfFlamesOnHitPct = 3826, + /// /// display_cast_edict_of_flames_on_hit_% /// - DisplayCastEdictOfFlamesOnHitPct = 3826, - + DisplayCastEdictOfFlamesOnHitPct = 3827, + /// /// display_cast_decree_of_flames_on_hit_% /// - DisplayCastDecreeOfFlamesOnHitPct = 3827, - + DisplayCastDecreeOfFlamesOnHitPct = 3828, + /// /// display_cast_commandment_of_flames_on_hit_% /// - DisplayCastCommandmentOfFlamesOnHitPct = 3828, - + DisplayCastCommandmentOfFlamesOnHitPct = 3829, + /// /// display_cast_word_of_frost_on_kill_% /// - DisplayCastWordOfFrostOnKillPct = 3829, - + DisplayCastWordOfFrostOnKillPct = 3830, + /// /// display_cast_edict_of_frost_on_kill_% /// - DisplayCastEdictOfFrostOnKillPct = 3830, - + DisplayCastEdictOfFrostOnKillPct = 3831, + /// /// display_cast_decree_of_frost_on_kill_% /// - DisplayCastDecreeOfFrostOnKillPct = 3831, - + DisplayCastDecreeOfFrostOnKillPct = 3832, + /// /// display_cast_commandment_of_frost_on_kill_% /// - DisplayCastCommandmentOfFrostOnKillPct = 3832, - + DisplayCastCommandmentOfFrostOnKillPct = 3833, + /// /// display_cast_word_of_thunder_on_kill_% /// - DisplayCastWordOfThunderOnKillPct = 3833, - + DisplayCastWordOfThunderOnKillPct = 3834, + /// /// display_cast_edict_of_thunder_on_kill_% /// - DisplayCastEdictOfThunderOnKillPct = 3834, - + DisplayCastEdictOfThunderOnKillPct = 3835, + /// /// display_cast_decree_of_thunder_on_kill_% /// - DisplayCastDecreeOfThunderOnKillPct = 3835, - + DisplayCastDecreeOfThunderOnKillPct = 3836, + /// /// display_cast_commandment_of_thunder_on_kill_% /// - DisplayCastCommandmentOfThunderOnKillPct = 3836, - + DisplayCastCommandmentOfThunderOnKillPct = 3837, + /// /// display_cast_fire_burst_on_kill /// - DisplayCastFireBurstOnKill = 3837, - + DisplayCastFireBurstOnKill = 3838, + /// /// local_stat_monsters_pick_up_item /// - LocalStatMonstersPickUpItem = 3838, - + LocalStatMonstersPickUpItem = 3839, + /// /// stone_golem_grants_base_life_regeneration_rate_per_minute /// - StoneGolemGrantsBaseLifeRegenerationRatePerMinute = 3839, - + StoneGolemGrantsBaseLifeRegenerationRatePerMinute = 3840, + /// /// bladefall_damage_per_stage_+%_final /// - BladefallDamagePerStagePctFinal = 3840, - + BladefallDamagePerStagePctFinal = 3841, + /// /// global_maim_on_hit /// - GlobalMaimOnHit = 3841, - + GlobalMaimOnHit = 3842, + /// /// consecrate_ground_for_3_seconds_when_hit_% /// - ConsecrateGroundFor3SecondsWhenHitPct = 3842, - + ConsecrateGroundFor3SecondsWhenHitPct = 3843, + /// /// damage_+%_on_consecrated_ground /// - DamagePctOnConsecratedGround = 3843, - + DamagePctOnConsecratedGround = 3844, + /// /// mana_cost_+%_on_consecrated_ground /// - ManaCostPctOnConsecratedGround = 3844, - + ManaCostPctOnConsecratedGround = 3845, + /// /// avoid_ailments_%_on_consecrated_ground /// - AvoidAilmentsPctOnConsecratedGround = 3845, - + AvoidAilmentsPctOnConsecratedGround = 3846, + /// /// on_consecrated_ground /// - OnConsecratedGround = 3846, - + OnConsecratedGround = 3847, + /// /// inquisitor_aura_elemental_damage_+%_final /// - InquisitorAuraElementalDamagePctFinal = 3847, - + InquisitorAuraElementalDamagePctFinal = 3848, + /// /// critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment /// - CriticalStrikeMultiplierVsEnemiesAffectedByElementalStatusAilment = 3848, - + CriticalStrikeMultiplierVsEnemiesAffectedByElementalStatusAilment = 3849, + /// /// non_critical_strikes_penetrate_elemental_resistances_% /// - NonCriticalStrikesPenetrateElementalResistancesPct = 3849, - + NonCriticalStrikesPenetrateElementalResistancesPct = 3850, + /// /// virtual_penetrate_elemental_resistances_% /// - VirtualPenetrateElementalResistancesPct = 3850, - + VirtualPenetrateElementalResistancesPct = 3851, + /// /// base_penetrate_elemental_resistances_% /// - BasePenetrateElementalResistancesPct = 3851, - + BasePenetrateElementalResistancesPct = 3852, + /// /// virtual_minion_additional_physical_damage_reduction_percent /// - VirtualMinionAdditionalPhysicalDamageReductionPercent = 3852, - + VirtualMinionAdditionalPhysicalDamageReductionPercent = 3853, + /// /// chance_to_poison_on_hit_with_attacks_% /// - ChanceToPoisonOnHitWithAttacksPct = 3853, - + ChanceToPoisonOnHitWithAttacksPct = 3854, + /// /// chance_to_double_stun_duration_% /// - ChanceToDoubleStunDurationPct = 3854, - + ChanceToDoubleStunDurationPct = 3855, + /// /// is_guillotine_trap /// - IsGuillotineTrap = 3855, - + IsGuillotineTrap = 3856, + /// /// damage_taken_+%_from_guillotine_traps_final /// - DamageTakenPctFromGuillotineTrapsFinal = 3856, - + DamageTakenPctFromGuillotineTrapsFinal = 3857, + /// /// minion_damage_taken_+%_from_guillotine_traps_final /// - MinionDamageTakenPctFromGuillotineTrapsFinal = 3857, - + MinionDamageTakenPctFromGuillotineTrapsFinal = 3858, + /// /// labyrinth_arrow_movement_speed_+%_final /// - LabyrinthArrowMovementSpeedPctFinal = 3858, - + LabyrinthArrowMovementSpeedPctFinal = 3859, + /// /// map_disable_portal_use /// - MapDisablePortalUse = 3859, - + MapDisablePortalUse = 3860, + /// /// jorrhasts_blacksteel_animate_weapon_duration_+%_final /// - JorrhastsBlacksteelAnimateWeaponDurationPctFinal = 3860, - + JorrhastsBlacksteelAnimateWeaponDurationPctFinal = 3861, + /// /// shockwave_slam_explosion_damage_+%_final /// - ShockwaveSlamExplosionDamagePctFinal = 3861, - + ShockwaveSlamExplosionDamagePctFinal = 3862, + /// /// display_monster_casts_wither /// - DisplayMonsterCastsWither = 3862, - + DisplayMonsterCastsWither = 3863, + /// /// display_monster_causes_ground_desecration /// - DisplayMonsterCausesGroundDesecration = 3863, - + DisplayMonsterCausesGroundDesecration = 3864, + /// /// spread_tar_ground_when_not_igniting_enemy_on_hit_% /// - SpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3864, - + SpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3865, + /// /// spread_burning_ground_when_igniting_enemy_on_hit_% /// - SpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3865, - + SpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3866, + /// /// non_curse_aura_effect_+% /// - NonCurseAuraEffectPct = 3866, - + NonCurseAuraEffectPct = 3867, + /// /// max_talisman_degen_stacks /// - MaxTalismanDegenStacks = 3867, - + MaxTalismanDegenStacks = 3868, + /// /// current_talisman_degen_stacks /// - CurrentTalismanDegenStacks = 3868, - + CurrentTalismanDegenStacks = 3869, + /// /// base_physical_damage_taken_per_minute_per_talisman_degen_stack /// - BasePhysicalDamageTakenPerMinutePerTalismanDegenStack = 3869, - + BasePhysicalDamageTakenPerMinutePerTalismanDegenStack = 3870, + /// /// melee_splash_area_of_effect_+%_final /// - MeleeSplashAreaOfEffectPctFinal = 3870, - + MeleeSplashAreaOfEffectPctFinal = 3871, + /// /// unarmed_damage_+%_vs_bleeding_enemies /// - UnarmedDamagePctVsBleedingEnemies = 3871, - + UnarmedDamagePctVsBleedingEnemies = 3872, + /// /// life_gained_on_bleeding_enemy_hit /// - LifeGainedOnBleedingEnemyHit = 3872, - + LifeGainedOnBleedingEnemyHit = 3873, + /// /// base_critical_strike_chance_while_unarmed_% /// - BaseCriticalStrikeChanceWhileUnarmedPct = 3873, - + BaseCriticalStrikeChanceWhileUnarmedPct = 3874, + /// /// modifiers_to_claw_damage_also_affect_unarmed_damage /// - ModifiersToClawDamageAlsoAffectUnarmedDamage = 3874, - + ModifiersToClawDamageAlsoAffectUnarmedDamage = 3875, + /// /// damage_+%_while_unarmed /// - DamagePctWhileUnarmed = 3875, - + DamagePctWhileUnarmed = 3876, + /// /// bloodworm_on_damage_taken_% /// - BloodwormOnDamageTakenPct = 3876, - + BloodwormOnDamageTakenPct = 3877, + /// /// map_sidearea_level_override /// - MapSideareaLevelOverride = 3877, - + MapSideareaLevelOverride = 3878, + /// /// map_boss_talisman_tier /// - MapBossTalismanTier = 3878, - + MapBossTalismanTier = 3879, + /// /// map_boss_talisman_rarity /// - MapBossTalismanRarity = 3879, - + MapBossTalismanRarity = 3880, + /// /// local_display_illusory_warp_level /// - LocalDisplayIllusoryWarpLevel = 3880, - + LocalDisplayIllusoryWarpLevel = 3881, + /// /// fortify_effect_on_self_+% /// - FortifyEffectOnSelfPct = 3881, - + FortifyEffectOnSelfPct = 3882, + /// /// local_implicit_stat_magnitude_+% /// - LocalImplicitStatMagnitudePct = 3882, - + LocalImplicitStatMagnitudePct = 3883, + /// /// using_flask /// - UsingFlask = 3883, - + UsingFlask = 3884, + /// /// chance_to_poison_on_hit_% /// - ChanceToPoisonOnHitPct = 3884, - + ChanceToPoisonOnHitPct = 3885, + /// /// flask_charges_gained_+% /// - FlaskChargesGainedPct = 3885, - + FlaskChargesGainedPct = 3886, + /// /// soul_eater_from_stat /// - SoulEaterFromStat = 3886, - + SoulEaterFromStat = 3887, + /// /// gain_power_charge_on_kill_with_hit_% /// - GainPowerChargeOnKillWithHitPct = 3887, - + GainPowerChargeOnKillWithHitPct = 3888, + /// /// killed_monster_dropped_item_rarity_+%_when_shattered /// - KilledMonsterDroppedItemRarityPctWhenShattered = 3888, - + KilledMonsterDroppedItemRarityPctWhenShattered = 3889, + /// /// Energy Shield Delay Recovery Increase /// - EnergyShieldDelayDuringFlaskEffectPct = 3889, - + EnergyShieldDelayDuringFlaskEffectPct = 3890, + /// /// Energy Shield Delay Recovery Increase /// - VirtualEnergyShieldDelayPct = 3890, - + VirtualEnergyShieldDelayPct = 3891, + /// /// energy_shield_recharge_rate_during_flask_effect_+% /// - EnergyShieldRechargeRateDuringFlaskEffectPct = 3891, - + EnergyShieldRechargeRateDuringFlaskEffectPct = 3892, + /// /// virtual_energy_shield_recharge_rate_+% /// - VirtualEnergyShieldRechargeRatePct = 3892, - + VirtualEnergyShieldRechargeRatePct = 3893, + /// /// base_cold_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute /// - BaseColdDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3893, - + BaseColdDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3894, + /// /// base_lightning_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute /// - BaseLightningDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3894, - + BaseLightningDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3895, + /// /// modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed /// - ModifiersToClawAttackSpeedAlsoAffectUnarmedAttackSpeed = 3895, - + ModifiersToClawAttackSpeedAlsoAffectUnarmedAttackSpeed = 3896, + /// /// modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance /// - ModifiersToClawCriticalStrikeChanceAlsoAffectUnarmedCriticalStrikeChance = 3896, - + ModifiersToClawCriticalStrikeChanceAlsoAffectUnarmedCriticalStrikeChance = 3897, + /// /// main_hand_chance_to_poison_on_critical_strike_% /// - MainHandChanceToPoisonOnCriticalStrikePct = 3897, - + MainHandChanceToPoisonOnCriticalStrikePct = 3898, + /// /// off_hand_chance_to_poison_on_critical_strike_% /// - OffHandChanceToPoisonOnCriticalStrikePct = 3898, - + OffHandChanceToPoisonOnCriticalStrikePct = 3899, + /// /// chance_to_poison_on_critical_strike_with_dagger_% /// - ChanceToPoisonOnCriticalStrikeWithDaggerPct = 3899, - + ChanceToPoisonOnCriticalStrikeWithDaggerPct = 3900, + /// /// minion_duration /// - MinionDuration = 3900, - + MinionDuration = 3901, + /// /// number_of_wolves_allowed /// - NumberOfWolvesAllowed = 3901, - + NumberOfWolvesAllowed = 3902, + /// /// whirling_leap_bloodworms_to_spawn /// - WhirlingLeapBloodwormsToSpawn = 3902, - + WhirlingLeapBloodwormsToSpawn = 3903, + /// /// map_display_unique_boss_drops_X_maps /// - MapDisplayUniqueBossDropsXMaps = 3903, - + MapDisplayUniqueBossDropsXMaps = 3904, + /// /// endurance_charge_on_kill_% /// - EnduranceChargeOnKillPct = 3904, - + EnduranceChargeOnKillPct = 3905, + /// /// fishing_bite_sensitivity_+% /// - FishingBiteSensitivityPct = 3905, - + FishingBiteSensitivityPct = 3906, + /// /// local_display_summon_wolf_on_kill_% /// - LocalDisplaySummonWolfOnKillPct = 3906, - + LocalDisplaySummonWolfOnKillPct = 3907, + /// /// corrupted_blood_on_hit_%_average_damage_to_deal_per_minute_per_stack /// - CorruptedBloodOnHitPctAverageDamageToDealPerMinutePerStack = 3907, - + CorruptedBloodOnHitPctAverageDamageToDealPerMinutePerStack = 3908, + /// /// maim_on_hit_%_with_at_least_3_stacks_of_corrupted_blood /// - MaimOnHitPctWithAtLeast3StacksOfCorruptedBlood = 3908, - + MaimOnHitPctWithAtLeast3StacksOfCorruptedBlood = 3909, + /// /// monster_can_spawn_with_talisman /// - MonsterCanSpawnWithTalisman = 3909, - + MonsterCanSpawnWithTalisman = 3910, + /// /// monster_explodes_on_death_text /// - MonsterExplodesOnDeathText = 3910, - + MonsterExplodesOnDeathText = 3911, + /// /// number_of_active_wolves /// - NumberOfActiveWolves = 3911, - + NumberOfActiveWolves = 3912, + /// /// active_skill_area_of_effect_+%_final /// - ActiveSkillAreaOfEffectPctFinal = 3912, - + ActiveSkillAreaOfEffectPctFinal = 3913, + /// /// cold_damage_+%_per_1%_block_chance /// - ColdDamagePctPer1PctBlockChance = 3913, - + ColdDamagePctPer1PctBlockChance = 3914, + /// /// maximum_mana_+%_per_2%_spell_block_chance /// - MaximumManaPctPer2PctSpellBlockChance = 3914, - + MaximumManaPctPer2PctSpellBlockChance = 3915, + /// /// physical_damage_reduction_rating_+%_while_chilled_or_frozen /// - PhysicalDamageReductionRatingPctWhileChilledOrFrozen = 3915, - + PhysicalDamageReductionRatingPctWhileChilledOrFrozen = 3916, + /// /// support_reduced_duration_damage_+%_final /// - SupportReducedDurationDamagePctFinal = 3916, - + SupportReducedDurationDamagePctFinal = 3917, + /// /// map_players_action_speed_+%_while_chilled /// - MapPlayersActionSpeedPctWhileChilled = 3917, - + MapPlayersActionSpeedPctWhileChilled = 3918, + /// /// action_speed_+%_while_chilled /// - ActionSpeedPctWhileChilled = 3918, - + ActionSpeedPctWhileChilled = 3919, + /// /// extra_gore_chance_override_% /// - ExtraGoreChanceOverridePct = 3919, - + ExtraGoreChanceOverridePct = 3920, + /// /// siphon_base_chaos_damage_to_deal_per_minute /// - SiphonBaseChaosDamageToDealPerMinute = 3920, - + SiphonBaseChaosDamageToDealPerMinute = 3921, + /// /// blade_vortex_buff_range /// - BladeVortexBuffRange = 3921, - + BladeVortexBuffRange = 3922, + /// /// spell_and_attack_minimum_added_cold_damage /// - SpellAndAttackMinimumAddedColdDamage = 3922, - + SpellAndAttackMinimumAddedColdDamage = 3923, + /// /// spell_and_attack_maximum_added_cold_damage /// - SpellAndAttackMaximumAddedColdDamage = 3923, - + SpellAndAttackMaximumAddedColdDamage = 3924, + /// /// reduce_enemy_cold_resistance_with_weapons_% /// - ReduceEnemyColdResistanceWithWeaponsPct = 3924, - + ReduceEnemyColdResistanceWithWeaponsPct = 3925, + /// /// reduce_enemy_fire_resistance_with_weapons_% /// - ReduceEnemyFireResistanceWithWeaponsPct = 3925, - + ReduceEnemyFireResistanceWithWeaponsPct = 3926, + /// /// reduce_enemy_lightning_resistance_with_weapons_% /// - ReduceEnemyLightningResistanceWithWeaponsPct = 3926, - + ReduceEnemyLightningResistanceWithWeaponsPct = 3927, + /// /// reduce_enemy_chaos_resistance_with_weapons_% /// - ReduceEnemyChaosResistanceWithWeaponsPct = 3927, - + ReduceEnemyChaosResistanceWithWeaponsPct = 3928, + /// /// support_minefield_mine_damage_+%_final /// - SupportMinefieldMineDamagePctFinal = 3928, - + SupportMinefieldMineDamagePctFinal = 3929, + /// /// modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity /// - ModifiersToMapItemDropQuantityAlsoApplyToMapItemDropRarity = 3929, - + ModifiersToMapItemDropQuantityAlsoApplyToMapItemDropRarity = 3930, + /// /// map_monster_drop_higher_level_gear /// - MapMonsterDropHigherLevelGear = 3930, - + MapMonsterDropHigherLevelGear = 3931, + /// /// support_gem_elemental_damage_+%_final /// - SupportGemElementalDamagePctFinal = 3931, - + SupportGemElementalDamagePctFinal = 3932, + /// /// keystone_elemental_overload_damage_+%_final /// - KeystoneElementalOverloadDamagePctFinal = 3932, - + KeystoneElementalOverloadDamagePctFinal = 3933, + /// /// keystone_elemental_overload /// - KeystoneElementalOverload = 3933, - + KeystoneElementalOverload = 3934, + /// /// local_smoke_ground_on_flask_use_radius /// - LocalSmokeGroundOnFlaskUseRadius = 3934, - + LocalSmokeGroundOnFlaskUseRadius = 3935, + /// /// local_consecrate_ground_on_flask_use_radius /// - LocalConsecrateGroundOnFlaskUseRadius = 3935, - + LocalConsecrateGroundOnFlaskUseRadius = 3936, + /// /// gain_onslaught_during_flask_effect /// - GainOnslaughtDuringFlaskEffect = 3936, - + GainOnslaughtDuringFlaskEffect = 3937, + /// /// cast_linked_curses_on_curse /// - CastLinkedCursesOnCurse = 3937, - + CastLinkedCursesOnCurse = 3938, + /// /// reduce_enemy_elemental_resistance_with_weapons_% /// - ReduceEnemyElementalResistanceWithWeaponsPct = 3938, - + ReduceEnemyElementalResistanceWithWeaponsPct = 3939, + /// /// %_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy /// - PctChanceToGainFrenzyChargeOnTrapTriggeredByAnEnemy = 3939, - + PctChanceToGainFrenzyChargeOnTrapTriggeredByAnEnemy = 3940, + /// /// %_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy /// - PctChanceToGainEnduranceChargeOnTrapTriggeredByAnEnemy = 3940, - + PctChanceToGainEnduranceChargeOnTrapTriggeredByAnEnemy = 3941, + /// /// local_number_of_bloodworms_to_spawn_on_flask_use /// - LocalNumberOfBloodwormsToSpawnOnFlaskUse = 3941, - + LocalNumberOfBloodwormsToSpawnOnFlaskUse = 3942, + /// /// add_power_charge_on_hit_% /// - AddPowerChargeOnHitPct = 3942, - + AddPowerChargeOnHitPct = 3943, + /// /// lose_all_power_charges_on_reaching_maximum_power_charges /// - LoseAllPowerChargesOnReachingMaximumPowerCharges = 3943, - + LoseAllPowerChargesOnReachingMaximumPowerCharges = 3944, + /// /// shocked_for_4_seconds_on_reaching_maximum_power_charges /// - ShockedFor4SecondsOnReachingMaximumPowerCharges = 3944, - + ShockedFor4SecondsOnReachingMaximumPowerCharges = 3945, + /// /// local_display_molten_burst_on_melee_hit_% /// - LocalDisplayMoltenBurstOnMeleeHitPct = 3945, - + LocalDisplayMoltenBurstOnMeleeHitPct = 3946, + /// /// max_frost_nova_stacks /// - MaxFrostNovaStacks = 3946, - + MaxFrostNovaStacks = 3947, + /// /// current_frost_nova_stacks /// - CurrentFrostNovaStacks = 3947, - + CurrentFrostNovaStacks = 3948, + /// /// reverse_projectile_spread /// - ReverseProjectileSpread = 3948, - + ReverseProjectileSpread = 3949, + /// /// base_cold_damage_+%_per_frost_nova_stack /// - BaseColdDamagePctPerFrostNovaStack = 3949, - + BaseColdDamagePctPerFrostNovaStack = 3950, + /// /// frost_nova_cold_damage_+%_per_frost_nova_stack /// - FrostNovaColdDamagePctPerFrostNovaStack = 3950, - + FrostNovaColdDamagePctPerFrostNovaStack = 3951, + /// /// is_petrified /// - IsPetrified = 3951, - + IsPetrified = 3952, + /// /// cast_on_melee_hit_% /// - CastOnMeleeHitPct = 3952, - + CastOnMeleeHitPct = 3953, + /// /// izaro_curse_on_hit_level_temporal_chains /// - IzaroCurseOnHitLevelTemporalChains = 3953, - + IzaroCurseOnHitLevelTemporalChains = 3954, + /// /// izaro_curse_on_hit_level_elemental_weakness /// - IzaroCurseOnHitLevelElementalWeakness = 3954, - + IzaroCurseOnHitLevelElementalWeakness = 3955, + /// /// izaro_curse_on_hit_level_vulnerability /// - IzaroCurseOnHitLevelVulnerability = 3955, - + IzaroCurseOnHitLevelVulnerability = 3956, + /// /// labyrinth_trinket_instantly_kill_next_pylon /// - LabyrinthTrinketInstantlyKillNextPylon = 3956, - + LabyrinthTrinketInstantlyKillNextPylon = 3957, + /// /// labyrinth_trinket_instantly_kill_next_lieutenant /// - LabyrinthTrinketInstantlyKillNextLieutenant = 3957, - + LabyrinthTrinketInstantlyKillNextLieutenant = 3958, + /// /// labyrinth_trinket_instantly_kill_next_elemental /// - LabyrinthTrinketInstantlyKillNextElemental = 3958, - + LabyrinthTrinketInstantlyKillNextElemental = 3959, + /// /// labyrinth_trinket_instantly_kill_next_gargoyle /// - LabyrinthTrinketInstantlyKillNextGargoyle = 3959, - + LabyrinthTrinketInstantlyKillNextGargoyle = 3960, + /// /// labyrinth_trinket_permanently_disable_next_statue /// - LabyrinthTrinketPermanentlyDisableNextStatue = 3960, - + LabyrinthTrinketPermanentlyDisableNextStatue = 3961, + /// /// labyrinth_trinket_permanently_disable_next_symbol /// - LabyrinthTrinketPermanentlyDisableNextSymbol = 3961, - + LabyrinthTrinketPermanentlyDisableNextSymbol = 3962, + /// /// labyrinth_trinket_reactivate_next_charge_disruptor_after_5_seconds /// - LabyrinthTrinketReactivateNextChargeDisruptorAfter5Seconds = 3962, - + LabyrinthTrinketReactivateNextChargeDisruptorAfter5Seconds = 3963, + /// /// add_endurance_charge_on_gain_power_charge_% /// - AddEnduranceChargeOnGainPowerChargePct = 3963, - + AddEnduranceChargeOnGainPowerChargePct = 3964, + /// /// stacking_damage_+%_on_kill_for_4_seconds /// - StackingDamagePctOnKillFor4Seconds = 3964, - + StackingDamagePctOnKillFor4Seconds = 3965, + /// /// grant_owner_stacking_damage_+%_on_kill_for_4_seconds /// - GrantOwnerStackingDamagePctOnKillFor4Seconds = 3965, - + GrantOwnerStackingDamagePctOnKillFor4Seconds = 3966, + /// /// attack_and_cast_speed_+%_while_totem_active /// - AttackAndCastSpeedPctWhileTotemActive = 3966, - + AttackAndCastSpeedPctWhileTotemActive = 3967, + /// /// number_of_additional_totems_allowed_on_kill_for_8_seconds /// - NumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3967, - + NumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3968, + /// /// owner_number_of_additional_totems_allowed_on_kill_for_8_seconds /// - OwnerNumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3968, - + OwnerNumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3969, + /// /// map_monsters_base_self_critical_strike_multiplier_-% /// - MapMonstersBaseSelfCriticalStrikeMultiplierPct = 3969, - + MapMonstersBaseSelfCriticalStrikeMultiplierPct = 3970, + /// /// local_flask_is_petrified /// - LocalFlaskIsPetrified = 3970, - + LocalFlaskIsPetrified = 3971, + /// /// hierophant_helmet_supported_by_elemental_penetration /// - HierophantHelmetSupportedByElementalPenetration = 3971, - + HierophantHelmetSupportedByElementalPenetration = 3972, + /// /// hierophant_gloves_supported_by_increased_area_of_effect /// - HierophantGlovesSupportedByIncreasedAreaOfEffect = 3972, - + HierophantGlovesSupportedByIncreasedAreaOfEffect = 3973, + /// /// hierophant_boots_supported_by_life_leech /// - HierophantBootsSupportedByLifeLeech = 3973, - + HierophantBootsSupportedByLifeLeech = 3974, + /// /// power_frenzy_or_endurance_charge_on_kill_% /// - PowerFrenzyOrEnduranceChargeOnKillPct = 3974, - + PowerFrenzyOrEnduranceChargeOnKillPct = 3975, + /// /// local_flask_effect_+% /// - LocalFlaskEffectPct = 3975, - + LocalFlaskEffectPct = 3976, + /// /// local_flask_poison_immunity_during_flask_effect /// - LocalFlaskPoisonImmunityDuringFlaskEffect = 3976, - + LocalFlaskPoisonImmunityDuringFlaskEffect = 3977, + /// /// immune_to_poison /// - ImmuneToPoison = 3977, - + ImmuneToPoison = 3978, + /// /// local_flask_additional_physical_damage_reduction_% /// - LocalFlaskAdditionalPhysicalDamageReductionPct = 3978, - + LocalFlaskAdditionalPhysicalDamageReductionPct = 3979, + /// /// unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill /// - UniqueSpreadPoisonToNearbyAlliesAs200LifeRegenerationPerSecondOnKill = 3979, - + UniqueSpreadPoisonToNearbyAlliesAs200LifeRegenerationPerSecondOnKill = 3980, + /// /// support_pierce_projectile_damage_+%_final /// - SupportPierceProjectileDamagePctFinal = 3980, - + SupportPierceProjectileDamagePctFinal = 3981, + /// /// elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element /// - ElementalistDamageWithAnElementPctFor4SecondsAfterBeingHitByAnElement = 3981, - + ElementalistDamageWithAnElementPctFor4SecondsAfterBeingHitByAnElement = 3982, + /// /// elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds /// - ElementalistElementalDamagePctFor4SecondsEvery10Seconds = 3982, - + ElementalistElementalDamagePctFor4SecondsEvery10Seconds = 3983, + /// /// elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill /// - ElementalistColdPenetrationPctFor4SecondsOnUsingFireSkill = 3983, - + ElementalistColdPenetrationPctFor4SecondsOnUsingFireSkill = 3984, + /// /// elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill /// - ElementalistLightningPenetrationPctFor4SecondsOnUsingColdSkill = 3984, - + ElementalistLightningPenetrationPctFor4SecondsOnUsingColdSkill = 3985, + /// /// elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill /// - ElementalistFirePenetrationPctFor4SecondsOnUsingLightningSkill = 3985, - + ElementalistFirePenetrationPctFor4SecondsOnUsingLightningSkill = 3986, + /// /// elementalist_summon_elemental_golem_on_killing_enemy_with_element_% /// - ElementalistSummonElementalGolemOnKillingEnemyWithElementPct = 3986, - + ElementalistSummonElementalGolemOnKillingEnemyWithElementPct = 3987, + /// /// elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_% /// - ElementalistAllDamageCausesChillShockAndIgniteFor4SecondsOnKillPct = 3987, - + ElementalistAllDamageCausesChillShockAndIgniteFor4SecondsOnKillPct = 3988, + /// /// elementalist_elemental_status_effect_aura_radius /// - ElementalistElementalStatusEffectAuraRadius = 3988, - + ElementalistElementalStatusEffectAuraRadius = 3989, + /// /// elementalist_elemental_damage_rotation /// - ElementalistElementalDamageRotation = 3989, - + ElementalistElementalDamageRotation = 3990, + /// /// virtual_elemental_status_effect_aura_radius /// - VirtualElementalStatusEffectAuraRadius = 3990, - + VirtualElementalStatusEffectAuraRadius = 3991, + /// /// all_damage_can_chill_ignite_shock /// - AllDamageCanChillIgniteShock = 3991, - + AllDamageCanChillIgniteShock = 3992, + /// /// is_blighted /// - IsBlighted = 3992, - + IsBlighted = 3993, + /// /// virtual_life_leech_permyriad_on_crit /// - VirtualLifeLeechPermyriadOnCrit = 3993, - + VirtualLifeLeechPermyriadOnCrit = 3994, + /// /// occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds /// - OccultistGainPctOfNonChaosDamageAsChaosDamagePerCurseOnTargetOnKillFor4Seconds = 3994, - + OccultistGainPctOfNonChaosDamageAsChaosDamagePerCurseOnTargetOnKillFor4Seconds = 3995, + /// /// occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery /// - OccultistEnergyShieldAlwaysRecoversFor4SecondsAfterStartingRecovery = 3995, - + OccultistEnergyShieldAlwaysRecoversFor4SecondsAfterStartingRecovery = 3996, + /// /// occultist_stun_threshold_is_based_on_energy_shield_instead_of_life /// - OccultistStunThresholdIsBasedOnEnergyShieldInsteadOfLife = 3996, - + OccultistStunThresholdIsBasedOnEnergyShieldInsteadOfLife = 3997, + /// /// is_counterattack /// - IsCounterattack = 3997, - + IsCounterattack = 3998, + /// /// knockback_on_counterattack_% /// - KnockbackOnCounterattackPct = 3998, - + KnockbackOnCounterattackPct = 3999, + /// /// local_flask_chilled_ground_on_flask_use_radius /// - LocalFlaskChilledGroundOnFlaskUseRadius = 3999, - + LocalFlaskChilledGroundOnFlaskUseRadius = 4000, + /// /// local_flask_duration_+% /// - LocalFlaskDurationPct = 4000, - + LocalFlaskDurationPct = 4001, + /// /// max_charged_attack_stacks /// - MaxChargedAttackStacks = 4001, - + MaxChargedAttackStacks = 4002, + /// /// current_charged_attack_stacks /// - CurrentChargedAttackStacks = 4002, - + CurrentChargedAttackStacks = 4003, + /// /// local_display_socketed_curse_gems_supported_by_level_x_blasphemy /// - LocalDisplaySocketedCurseGemsSupportedByLevelXBlasphemy = 4003, - + LocalDisplaySocketedCurseGemsSupportedByLevelXBlasphemy = 4004, + /// /// chill_on_you_proliferates_to_nearby_enemies_within_x_radius /// - ChillOnYouProliferatesToNearbyEnemiesWithinXRadius = 4004, - + ChillOnYouProliferatesToNearbyEnemiesWithinXRadius = 4005, + /// /// freeze_on_you_proliferates_to_nearby_enemies_within_x_radius /// - FreezeOnYouProliferatesToNearbyEnemiesWithinXRadius = 4005, - + FreezeOnYouProliferatesToNearbyEnemiesWithinXRadius = 4006, + /// /// animate_weapon_damage_+% /// - AnimateWeaponDamagePct = 4006, - + AnimateWeaponDamagePct = 4007, + /// /// burning_arrow_damage_+% /// - BurningArrowDamagePct = 4007, - + BurningArrowDamagePct = 4008, + /// /// cleave_damage_+% /// - CleaveDamagePct = 4008, - + CleaveDamagePct = 4009, + /// /// double_strike_damage_+% /// - DoubleStrikeDamagePct = 4009, - + DoubleStrikeDamagePct = 4010, + /// /// dual_strike_damage_+% /// - DualStrikeDamagePct = 4010, - + DualStrikeDamagePct = 4011, + /// /// fire_trap_damage_+% /// - FireTrapDamagePct = 4011, - + FireTrapDamagePct = 4012, + /// /// fireball_damage_+% /// - FireballDamagePct = 4012, - + FireballDamagePct = 4013, + /// /// freezing_pulse_damage_+% /// - FreezingPulseDamagePct = 4013, - + FreezingPulseDamagePct = 4014, + /// /// glacial_hammer_damage_+% /// - GlacialHammerDamagePct = 4014, - + GlacialHammerDamagePct = 4015, + /// /// ground_slam_damage_+% /// - GroundSlamDamagePct = 4015, - + GroundSlamDamagePct = 4016, + /// /// heavy_strike_damage_+% /// - HeavyStrikeDamagePct = 4016, - + HeavyStrikeDamagePct = 4017, + /// /// infernal_blow_damage_+% /// - InfernalBlowDamagePct = 4017, - + InfernalBlowDamagePct = 4018, + /// /// lightning_strike_damage_+% /// - LightningStrikeDamagePct = 4018, - + LightningStrikeDamagePct = 4019, + /// /// lightning_tendrils_damage_+% /// - LightningTendrilsDamagePct = 4019, - + LightningTendrilsDamagePct = 4020, + /// /// magma_orb_damage_+% /// - MagmaOrbDamagePct = 4020, - + MagmaOrbDamagePct = 4021, + /// /// molten_strike_damage_+% /// - MoltenStrikeDamagePct = 4021, - + MoltenStrikeDamagePct = 4022, + /// /// zombie_damage_+% /// - ZombieDamagePct = 4022, - + ZombieDamagePct = 4023, + /// /// reave_damage_+% /// - ReaveDamagePct = 4023, - + ReaveDamagePct = 4024, + /// /// spark_damage_+% /// - SparkDamagePct = 4024, - + SparkDamagePct = 4025, + /// /// spectral_throw_damage_+% /// - SpectralThrowDamagePct = 4025, - + SpectralThrowDamagePct = 4026, + /// /// split_arrow_damage_+% /// - SplitArrowDamagePct = 4026, - + SplitArrowDamagePct = 4027, + /// /// ethereal_knives_damage_+% /// - EtherealKnivesDamagePct = 4027, - + EtherealKnivesDamagePct = 4028, + /// /// ice_shot_damage_+% /// - IceShotDamagePct = 4028, - + IceShotDamagePct = 4029, + /// /// rain_of_arrows_damage_+% /// - RainOfArrowsDamagePct = 4029, - + RainOfArrowsDamagePct = 4030, + /// /// raging_spirit_damage_+% /// - RagingSpiritDamagePct = 4030, - + RagingSpiritDamagePct = 4031, + /// /// viper_strike_damage_+% /// - ViperStrikeDamagePct = 4031, - + ViperStrikeDamagePct = 4032, + /// /// flicker_strike_damage_+% /// - FlickerStrikeDamagePct = 4032, - + FlickerStrikeDamagePct = 4033, + /// /// leap_slam_damage_+% /// - LeapSlamDamagePct = 4033, - + LeapSlamDamagePct = 4034, + /// /// lightning_arrow_damage_+% /// - LightningArrowDamagePct = 4034, - + LightningArrowDamagePct = 4035, + /// /// lightning_warp_damage_+% /// - LightningWarpDamagePct = 4035, - + LightningWarpDamagePct = 4036, + /// /// puncture_damage_+% /// - PunctureDamagePct = 4036, - + PunctureDamagePct = 4037, + /// /// shield_charge_damage_+% /// - ShieldChargeDamagePct = 4037, - + ShieldChargeDamagePct = 4038, + /// /// skeletons_damage_+% /// - SkeletonsDamagePct = 4038, - + SkeletonsDamagePct = 4039, + /// /// arc_damage_+% /// - ArcDamagePct = 4039, - + ArcDamagePct = 4040, + /// /// barrage_damage_+% /// - BarrageDamagePct = 4040, - + BarrageDamagePct = 4041, + /// /// fire_nova_mine_damage_+% /// - FireNovaMineDamagePct = 4041, - + FireNovaMineDamagePct = 4042, + /// /// fire_storm_damage_+% /// - FireStormDamagePct = 4042, - + FireStormDamagePct = 4043, + /// /// flame_surge_damage_+% /// - FlameSurgeDamagePct = 4043, - + FlameSurgeDamagePct = 4044, + /// /// ice_nova_damage_+% /// - IceNovaDamagePct = 4044, - + IceNovaDamagePct = 4045, + /// /// ice_spear_damage_+% /// - IceSpearDamagePct = 4045, - + IceSpearDamagePct = 4046, + /// /// incinerate_damage_+% /// - IncinerateDamagePct = 4046, - + IncinerateDamagePct = 4047, + /// /// power_siphon_damage_+% /// - PowerSiphonDamagePct = 4047, - + PowerSiphonDamagePct = 4048, + /// /// searing_bond_damage_+% /// - SearingBondDamagePct = 4048, - + SearingBondDamagePct = 4049, + /// /// static_strike_damage_+% /// - StaticStrikeDamagePct = 4049, - + StaticStrikeDamagePct = 4050, + /// /// storm_call_damage_+% /// - StormCallDamagePct = 4050, - + StormCallDamagePct = 4051, + /// /// sweep_damage_+% /// - SweepDamagePct = 4051, - + SweepDamagePct = 4052, + /// /// frenzy_damage_+% /// - FrenzyDamagePct = 4052, - + FrenzyDamagePct = 4053, + /// /// righteous_fire_damage_+% /// - RighteousFireDamagePct = 4053, - + RighteousFireDamagePct = 4054, + /// /// elemental_hit_damage_+% /// - ElementalHitDamagePct = 4054, - + ElementalHitDamagePct = 4055, + /// /// cyclone_damage_+% /// - CycloneDamagePct = 4055, - + CycloneDamagePct = 4056, + /// /// tornado_shot_damage_+% /// - TornadoShotDamagePct = 4056, - + TornadoShotDamagePct = 4057, + /// /// arctic_breath_damage_+% /// - ArcticBreathDamagePct = 4057, - + ArcticBreathDamagePct = 4058, + /// /// explosive_arrow_damage_+% /// - ExplosiveArrowDamagePct = 4058, - + ExplosiveArrowDamagePct = 4059, + /// /// flameblast_damage_+% /// - FlameblastDamagePct = 4059, - + FlameblastDamagePct = 4060, + /// /// glacial_cascade_damage_+% /// - GlacialCascadeDamagePct = 4060, - + GlacialCascadeDamagePct = 4061, + /// /// ice_crash_damage_+% /// - IceCrashDamagePct = 4061, - + IceCrashDamagePct = 4062, + /// /// kinetic_blast_damage_+% /// - KineticBlastDamagePct = 4062, - + KineticBlastDamagePct = 4063, + /// /// shock_nova_damage_+% /// - ShockNovaDamagePct = 4063, - + ShockNovaDamagePct = 4064, + /// /// shockwave_totem_damage_+% /// - ShockwaveTotemDamagePct = 4064, - + ShockwaveTotemDamagePct = 4065, + /// /// wild_strike_damage_+% /// - WildStrikeDamagePct = 4065, - + WildStrikeDamagePct = 4066, + /// /// detonate_dead_damage_+% /// - DetonateDeadDamagePct = 4066, - + DetonateDeadDamagePct = 4067, + /// /// caustic_arrow_damage_+% /// - CausticArrowDamagePct = 4067, - + CausticArrowDamagePct = 4068, + /// /// chaos_golem_damage_+% /// - ChaosGolemDamagePct = 4068, - + ChaosGolemDamagePct = 4069, + /// /// flame_golem_damage_+% /// - FlameGolemDamagePct = 4069, - + FlameGolemDamagePct = 4070, + /// /// ice_golem_damage_+% /// - IceGolemDamagePct = 4070, - + IceGolemDamagePct = 4071, + /// /// cold_snap_damage_+% /// - ColdSnapDamagePct = 4071, - + ColdSnapDamagePct = 4072, + /// /// flame_totem_damage_+% /// - FlameTotemDamagePct = 4072, - + FlameTotemDamagePct = 4073, + /// /// animate_guardian_damage_+% /// - AnimateGuardianDamagePct = 4073, - + AnimateGuardianDamagePct = 4074, + /// /// bear_trap_damage_+% /// - BearTrapDamagePct = 4074, - + BearTrapDamagePct = 4075, + /// /// frost_wall_damage_+% /// - FrostWallDamagePct = 4075, - + FrostWallDamagePct = 4076, + /// /// molten_shell_damage_+% /// - MoltenShellDamagePct = 4076, - + MoltenShellDamagePct = 4077, + /// /// reckoning_damage_+% /// - ReckoningDamagePct = 4077, - + ReckoningDamagePct = 4078, + /// /// vigilant_strike_damage_+% /// - VigilantStrikeDamagePct = 4078, - + VigilantStrikeDamagePct = 4079, + /// /// whirling_blades_damage_+% /// - WhirlingBladesDamagePct = 4079, - + WhirlingBladesDamagePct = 4080, + /// /// flame_dash_damage_+% /// - FlameDashDamagePct = 4080, - + FlameDashDamagePct = 4081, + /// /// freeze_mine_damage_+% /// - FreezeMineDamagePct = 4081, - + FreezeMineDamagePct = 4082, + /// /// herald_of_ash_damage_+% /// - HeraldOfAshDamagePct = 4082, - + HeraldOfAshDamagePct = 4083, + /// /// herald_of_ice_damage_+% /// - HeraldOfIceDamagePct = 4083, - + HeraldOfIceDamagePct = 4084, + /// /// herald_of_thunder_damage_+% /// - HeraldOfThunderDamagePct = 4084, - + HeraldOfThunderDamagePct = 4085, + /// /// tempest_shield_damage_+% /// - TempestShieldDamagePct = 4085, - + TempestShieldDamagePct = 4086, + /// /// desecrate_damage_+% /// - DesecrateDamagePct = 4086, - + DesecrateDamagePct = 4087, + /// /// blink_arrow_and_blink_arrow_clone_damage_+% /// - BlinkArrowAndBlinkArrowCloneDamagePct = 4087, - + BlinkArrowAndBlinkArrowCloneDamagePct = 4088, + /// /// mirror_arrow_and_mirror_arrow_clone_damage_+% /// - MirrorArrowAndMirrorArrowCloneDamagePct = 4088, - + MirrorArrowAndMirrorArrowCloneDamagePct = 4089, + /// /// riposte_damage_+% /// - RiposteDamagePct = 4089, - + RiposteDamagePct = 4090, + /// /// vengeance_damage_+% /// - VengeanceDamagePct = 4090, - + VengeanceDamagePct = 4091, + /// /// converted_enemies_damage_+% /// - ConvertedEnemiesDamagePct = 4091, - + ConvertedEnemiesDamagePct = 4092, + /// /// abyssal_cry_damage_+% /// - AbyssalCryDamagePct = 4092, - + AbyssalCryDamagePct = 4093, + /// /// shrapnel_shot_damage_+% /// - ShrapnelShotDamagePct = 4093, - + ShrapnelShotDamagePct = 4094, + /// /// blast_rain_damage_+% /// - BlastRainDamagePct = 4094, - + BlastRainDamagePct = 4095, + /// /// essence_drain_damage_+% /// - EssenceDrainDamagePct = 4095, - + EssenceDrainDamagePct = 4096, + /// /// contagion_damage_+% /// - ContagionDamagePct = 4096, - + ContagionDamagePct = 4097, + /// /// blade_vortex_damage_+% /// - BladeVortexDamagePct = 4097, - + BladeVortexDamagePct = 4098, + /// /// bladefall_damage_+% /// - BladefallDamagePct = 4098, - + BladefallDamagePct = 4099, + /// /// ice_trap_damage_+% /// - IceTrapDamagePct = 4099, - + IceTrapDamagePct = 4100, + /// /// earthquake_damage_+% /// - EarthquakeDamagePct = 4100, - + EarthquakeDamagePct = 4101, + /// /// stone_golem_damage_+% /// - StoneGolemDamagePct = 4101, - + StoneGolemDamagePct = 4102, + /// /// frost_bomb_damage_+% /// - FrostBombDamagePct = 4102, - + FrostBombDamagePct = 4103, + /// /// orb_of_storms_damage_+% /// - OrbOfStormsDamagePct = 4103, - + OrbOfStormsDamagePct = 4104, + /// /// siege_ballista_damage_+% /// - SiegeBallistaDamagePct = 4104, - + SiegeBallistaDamagePct = 4105, + /// /// blight_damage_+% /// - BlightDamagePct = 4105, - + BlightDamagePct = 4106, + /// /// shockwave_slam_damage_+% /// - ShockwaveSlamDamagePct = 4106, - + ShockwaveSlamDamagePct = 4107, + /// /// fire_beam_damage_+% /// - FireBeamDamagePct = 4107, - + FireBeamDamagePct = 4108, + /// /// life_regeneration_per_minute_%_while_frozen /// - LifeRegenerationPerMinutePctWhileFrozen = 4108, - + LifeRegenerationPerMinutePctWhileFrozen = 4109, + /// /// occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds /// - OccultistStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 4109, - + OccultistStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 4110, + /// /// occultist_immune_to_stun_while_has_energy_shield /// - OccultistImmuneToStunWhileHasEnergyShield = 4110, - + OccultistImmuneToStunWhileHasEnergyShield = 4111, + /// /// totem_damage_+%_final_per_active_totem /// - TotemDamagePctFinalPerActiveTotem = 4111, - + TotemDamagePctFinalPerActiveTotem = 4112, + /// /// totem_damage_+%_final /// - TotemDamagePctFinal = 4112, - + TotemDamagePctFinal = 4113, + /// /// cannot_be_affected_by_flasks /// - CannotBeAffectedByFlasks = 4113, - + CannotBeAffectedByFlasks = 4114, + /// /// flasks_apply_to_your_zombies_and_spectres /// - FlasksApplyToYourZombiesAndSpectres = 4114, - + FlasksApplyToYourZombiesAndSpectres = 4115, + /// /// modifiers_to_minion_damage_also_affect_you /// - ModifiersToMinionDamageAlsoAffectYou = 4115, - + ModifiersToMinionDamageAlsoAffectYou = 4116, + /// /// additive_modifiers_to_minion_attack_speed_also_affect_you /// - AdditiveModifiersToMinionAttackSpeedAlsoAffectYou = 4116, - + AdditiveModifiersToMinionAttackSpeedAlsoAffectYou = 4117, + /// /// modifiers_to_minion_cast_speed_also_affect_you /// - ModifiersToMinionCastSpeedAlsoAffectYou = 4117, - + ModifiersToMinionCastSpeedAlsoAffectYou = 4118, + /// /// modifiers_to_minion_life_regeneration_also_affect_you /// - ModifiersToMinionLifeRegenerationAlsoAffectYou = 4118, - + ModifiersToMinionLifeRegenerationAlsoAffectYou = 4119, + /// /// modifiers_to_minion_movement_speed_also_affect_you /// - ModifiersToMinionMovementSpeedAlsoAffectYou = 4119, - + ModifiersToMinionMovementSpeedAlsoAffectYou = 4120, + /// /// modifiers_to_minion_resistances_also_affect_you /// - ModifiersToMinionResistancesAlsoAffectYou = 4120, - + ModifiersToMinionResistancesAlsoAffectYou = 4121, + /// /// cast_on_gain_skill /// - CastOnGainSkill = 4121, - + CastOnGainSkill = 4122, + /// /// base_lightning_damage_taken_per_second /// - BaseLightningDamageTakenPerSecond = 4122, - + BaseLightningDamageTakenPerSecond = 4123, + /// /// Super Endurance Charges /// - CurrentIzaroCharges = 4123, - + CurrentIzaroCharges = 4124, + /// /// attack_speed_+%_per_izaro_charge /// - AttackSpeedPctPerIzaroCharge = 4124, - + AttackSpeedPctPerIzaroCharge = 4125, + /// /// cast_speed_+%_per_izaro_charge /// - CastSpeedPctPerIzaroCharge = 4125, - + CastSpeedPctPerIzaroCharge = 4126, + /// /// damage_+%_per_izaro_charge_final /// - DamagePctPerIzaroChargeFinal = 4126, - + DamagePctPerIzaroChargeFinal = 4127, + /// /// physical_damage_reduction_%_per_izaro_charge /// - PhysicalDamageReductionPctPerIzaroCharge = 4127, - + PhysicalDamageReductionPctPerIzaroCharge = 4128, + /// /// resist_all_elements_%_per_izaro_charge /// - ResistAllElementsPctPerIzaroCharge = 4128, - + ResistAllElementsPctPerIzaroCharge = 4129, + /// /// critical_strike_chance_+%_per_izaro_charge /// - CriticalStrikeChancePctPerIzaroCharge = 4129, - + CriticalStrikeChancePctPerIzaroCharge = 4130, + /// /// shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range /// - ShieldChargeScalingStunThresholdReductionPctAtMaximumRange = 4130, - + ShieldChargeScalingStunThresholdReductionPctAtMaximumRange = 4131, + /// /// map_spawn_perandus_chests /// - MapSpawnPerandusChests = 4131, - + MapSpawnPerandusChests = 4132, + /// /// set_user_life_to_1_on_skill_use /// - SetUserLifeTo1OnSkillUse = 4132, - + SetUserLifeTo1OnSkillUse = 4133, + /// /// grant_izaro_buff_on_skill_use /// - GrantIzaroBuffOnSkillUse = 4133, - + GrantIzaroBuffOnSkillUse = 4134, + /// /// local_double_damage_to_chilled_enemies /// - LocalDoubleDamageToChilledEnemies = 4134, - + LocalDoubleDamageToChilledEnemies = 4135, + /// /// main_hand_double_damage_to_chilled_enemies /// - MainHandDoubleDamageToChilledEnemies = 4135, - + MainHandDoubleDamageToChilledEnemies = 4136, + /// /// off_hand_double_damage_to_chilled_enemies /// - OffHandDoubleDamageToChilledEnemies = 4136, - + OffHandDoubleDamageToChilledEnemies = 4137, + /// /// global_number_of_times_damage_is_doubled /// - GlobalNumberOfTimesDamageIsDoubled = 4137, - + GlobalNumberOfTimesDamageIsDoubled = 4138, + /// /// main_hand_number_of_times_damage_is_doubled /// - MainHandNumberOfTimesDamageIsDoubled = 4138, - + MainHandNumberOfTimesDamageIsDoubled = 4139, + /// /// off_hand_number_of_times_damage_is_doubled /// - OffHandNumberOfTimesDamageIsDoubled = 4139, - + OffHandNumberOfTimesDamageIsDoubled = 4140, + /// /// base_main_hand_number_of_times_damage_is_doubled /// - BaseMainHandNumberOfTimesDamageIsDoubled = 4140, - + BaseMainHandNumberOfTimesDamageIsDoubled = 4141, + /// /// base_off_hand_number_of_times_damage_is_doubled /// - BaseOffHandNumberOfTimesDamageIsDoubled = 4141, - + BaseOffHandNumberOfTimesDamageIsDoubled = 4142, + /// /// local_elemental_penetration_% /// - LocalElementalPenetrationPct = 4142, - + LocalElementalPenetrationPct = 4143, + /// /// main_hand_elemental_penetration_% /// - MainHandElementalPenetrationPct = 4143, - + MainHandElementalPenetrationPct = 4144, + /// /// off_hand_elemental_penetration_% /// - OffHandElementalPenetrationPct = 4144, - + OffHandElementalPenetrationPct = 4145, + /// /// damage_while_no_frenzy_charges_+% /// - DamageWhileNoFrenzyChargesPct = 4145, - + DamageWhileNoFrenzyChargesPct = 4146, + /// /// local_flask_ghost_reaver /// - LocalFlaskGhostReaver = 4146, - + LocalFlaskGhostReaver = 4147, + /// /// local_flask_zealots_oath /// - LocalFlaskZealotsOath = 4147, - + LocalFlaskZealotsOath = 4148, + /// /// critical_strike_chance_against_enemies_on_full_life_+% /// - CriticalStrikeChanceAgainstEnemiesOnFullLifePct = 4148, - + CriticalStrikeChanceAgainstEnemiesOnFullLifePct = 4149, + /// /// spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed /// - SpiritOfferingLifePctAddedAsBaseMaximumEnergyShieldPerCorpseConsumed = 4149, - + SpiritOfferingLifePctAddedAsBaseMaximumEnergyShieldPerCorpseConsumed = 4150, + /// /// minions_deal_%_of_physical_damage_as_additional_chaos_damage /// - MinionsDealPctOfPhysicalDamageAsAdditionalChaosDamage = 4150, - + MinionsDealPctOfPhysicalDamageAsAdditionalChaosDamage = 4151, + /// /// attack_critical_strike_damage_life_leech_permyriad /// - AttackCriticalStrikeDamageLifeLeechPermyriad = 4151, - + AttackCriticalStrikeDamageLifeLeechPermyriad = 4152, + /// /// minion_attack_minimum_added_physical_damage /// - MinionAttackMinimumAddedPhysicalDamage = 4152, - + MinionAttackMinimumAddedPhysicalDamage = 4153, + /// /// minion_attack_maximum_added_physical_damage /// - MinionAttackMaximumAddedPhysicalDamage = 4153, - + MinionAttackMaximumAddedPhysicalDamage = 4154, + /// /// attack_physical_damage_%_to_add_as_lightning /// - AttackPhysicalDamagePctToAddAsLightning = 4154, - + AttackPhysicalDamagePctToAddAsLightning = 4155, + /// /// attack_physical_damage_%_to_add_as_fire /// - AttackPhysicalDamagePctToAddAsFire = 4155, - + AttackPhysicalDamagePctToAddAsFire = 4156, + /// /// maximum_energy_shield_+_per_5_strength /// - MaximumEnergyShieldPer5Strength = 4156, - + MaximumEnergyShieldPer5Strength = 4157, + /// /// attack_always_crit /// - AttackAlwaysCrit = 4157, - + AttackAlwaysCrit = 4158, + /// /// totem_aura_enemy_damage_+%_final /// - TotemAuraEnemyDamagePctFinal = 4158, - + TotemAuraEnemyDamagePctFinal = 4159, + /// /// totem_aura_enemy_fire_and_physical_damage_taken_+% /// - TotemAuraEnemyFireAndPhysicalDamageTakenPct = 4159, - + TotemAuraEnemyFireAndPhysicalDamageTakenPct = 4160, + /// /// local_varunastra_weapon_counts_as_all_1h_melee_weapon_types /// - LocalVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4160, - + LocalVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4161, + /// /// main_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types /// - MainHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4161, - + MainHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4162, + /// /// off_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types /// - OffHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4162, - + OffHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4163, + /// /// guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+% /// - GuardianWarcryGrantAttackCastAndMovementSpeedToYouAndNearbyAlliesPct = 4163, - + GuardianWarcryGrantAttackCastAndMovementSpeedToYouAndNearbyAlliesPct = 4164, + /// /// guardian_auras_grant_life_regeneration_per_minute_% /// - GuardianAurasGrantLifeRegenerationPerMinutePct = 4164, - + GuardianAurasGrantLifeRegenerationPerMinutePct = 4165, + /// /// guardian_nearby_enemies_cannot_gain_charges /// - GuardianNearbyEnemiesCannotGainCharges = 4165, - + GuardianNearbyEnemiesCannotGainCharges = 4166, + /// /// guardian_reserved_life_granted_to_you_and_allies_as_armour_% /// - GuardianReservedLifeGrantedToYouAndAlliesAsArmourPct = 4166, - + GuardianReservedLifeGrantedToYouAndAlliesAsArmourPct = 4167, + /// /// guardian_remove_curses_and_status_ailments_every_10_seconds /// - GuardianRemoveCursesAndStatusAilmentsEvery10Seconds = 4167, - + GuardianRemoveCursesAndStatusAilmentsEvery10Seconds = 4168, + /// /// guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds /// - GuardianGainLifeRegenerationPerMinutePctFor1SecondEvery10Seconds = 4168, - + GuardianGainLifeRegenerationPerMinutePctFor1SecondEvery10Seconds = 4169, + /// /// life_reserved /// - LifeReserved = 4169, - + LifeReserved = 4170, + /// /// cannot_gain_charges /// - CannotGainCharges = 4170, - + CannotGainCharges = 4171, + /// /// max_izaro_charges /// - MaxIzaroCharges = 4171, - + MaxIzaroCharges = 4172, + /// /// local_display_socketed_gems_supported_by_level_x_fortify /// - LocalDisplaySocketedGemsSupportedByLevelXFortify = 4172, - + LocalDisplaySocketedGemsSupportedByLevelXFortify = 4173, + /// /// base_fire_immunity /// - BaseFireImmunity = 4173, - + BaseFireImmunity = 4174, + /// /// totem_fire_immunity /// - TotemFireImmunity = 4174, - + TotemFireImmunity = 4175, + /// /// base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit /// - BasePctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4175, - + BasePctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4176, + /// /// totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit /// - TotemPctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4176, - + TotemPctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4177, + /// /// active_skill_attack_speed_+%_final_per_frenzy_charge /// - ActiveSkillAttackSpeedPctFinalPerFrenzyCharge = 4177, - + ActiveSkillAttackSpeedPctFinalPerFrenzyCharge = 4178, + /// /// trap_damage_buildup_damage_+%_final /// - TrapDamageBuildupDamagePctFinal = 4178, - + TrapDamageBuildupDamagePctFinal = 4179, + /// /// trap_damage_buildup_damage_+%_final_when_first_set /// - TrapDamageBuildupDamagePctFinalWhenFirstSet = 4179, - + TrapDamageBuildupDamagePctFinalWhenFirstSet = 4180, + /// /// trap_damage_buildup_damage_+%_final_after_4_seconds /// - TrapDamageBuildupDamagePctFinalAfter4Seconds = 4180, - + TrapDamageBuildupDamagePctFinalAfter4Seconds = 4181, + /// /// local_display_grants_level_x_summon_stone_golem /// - LocalDisplayGrantsLevelXSummonStoneGolem = 4181, - + LocalDisplayGrantsLevelXSummonStoneGolem = 4182, + /// /// global_total_minimum_added_physical_damage /// - GlobalTotalMinimumAddedPhysicalDamage = 4182, - + GlobalTotalMinimumAddedPhysicalDamage = 4183, + /// /// global_total_maximum_added_physical_damage /// - GlobalTotalMaximumAddedPhysicalDamage = 4183, - + GlobalTotalMaximumAddedPhysicalDamage = 4184, + /// /// local_flask_immune_to_damage /// - LocalFlaskImmuneToDamage = 4184, - + LocalFlaskImmuneToDamage = 4185, + /// /// local_weapon_always_crit /// - LocalWeaponAlwaysCrit = 4185, - + LocalWeaponAlwaysCrit = 4186, + /// /// main_hand_weapon_always_crit /// - MainHandWeaponAlwaysCrit = 4186, - + MainHandWeaponAlwaysCrit = 4187, + /// /// off_hand_weapon_always_crit /// - OffHandWeaponAlwaysCrit = 4187, - + OffHandWeaponAlwaysCrit = 4188, + /// /// trap_and_mine_minimum_added_physical_damage /// - TrapAndMineMinimumAddedPhysicalDamage = 4188, - + TrapAndMineMinimumAddedPhysicalDamage = 4189, + /// /// trap_and_mine_maximum_added_physical_damage /// - TrapAndMineMaximumAddedPhysicalDamage = 4189, - + TrapAndMineMaximumAddedPhysicalDamage = 4190, + /// /// trap_%_chance_to_trigger_twice /// - TrapPctChanceToTriggerTwice = 4190, - + TrapPctChanceToTriggerTwice = 4191, + /// /// trap_has_triggered /// - TrapHasTriggered = 4191, - + TrapHasTriggered = 4192, + /// /// physical_damage_over_time_per_10_dexterity_+% /// - PhysicalDamageOverTimePer10DexterityPct = 4192, - + PhysicalDamageOverTimePer10DexterityPct = 4193, + /// /// bleed_duration_per_12_intelligence_+% /// - BleedDurationPer12IntelligencePct = 4193, - + BleedDurationPer12IntelligencePct = 4194, + /// /// %_chance_to_cause_bleeding_enemies_to_flee_on_hit /// - PctChanceToCauseBleedingEnemiesToFleeOnHit = 4194, - + PctChanceToCauseBleedingEnemiesToFleeOnHit = 4195, + /// /// labyrinth_trinket_permanently_disable_statue_healing /// - LabyrinthTrinketPermanentlyDisableStatueHealing = 4195, - + LabyrinthTrinketPermanentlyDisableStatueHealing = 4196, + /// /// labyrinth_trinket_instantly_kill_next_pedestal /// - LabyrinthTrinketInstantlyKillNextPedestal = 4196, - + LabyrinthTrinketInstantlyKillNextPedestal = 4197, + /// /// labyrinth_trinket_instantly_kill_next_portal /// - LabyrinthTrinketInstantlyKillNextPortal = 4197, - + LabyrinthTrinketInstantlyKillNextPortal = 4198, + /// /// number_of_perandus_coin_stacks_to_drop /// - NumberOfPerandusCoinStacksToDrop = 4198, - + NumberOfPerandusCoinStacksToDrop = 4199, + /// /// melee_ancestor_totem_grant_owner_attack_speed_+%_final /// - MeleeAncestorTotemGrantOwnerAttackSpeedPctFinal = 4199, - + MeleeAncestorTotemGrantOwnerAttackSpeedPctFinal = 4200, + /// /// gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius /// - GainCannotBeStunnedAuraFor4SecondsOnBlockRadius = 4200, - + GainCannotBeStunnedAuraFor4SecondsOnBlockRadius = 4201, + /// /// cleave_radius_+% /// - CleaveRadiusPct = 4201, - + CleaveRadiusPct = 4202, + /// /// ground_slam_radius_+% /// - GroundSlamRadiusPct = 4202, - + GroundSlamRadiusPct = 4203, + /// /// infernal_blow_radius_+% /// - InfernalBlowRadiusPct = 4203, - + InfernalBlowRadiusPct = 4204, + /// /// lightning_tendrils_radius_+% /// - LightningTendrilsRadiusPct = 4204, - + LightningTendrilsRadiusPct = 4205, + /// /// magma_orb_radius_+% /// - MagmaOrbRadiusPct = 4205, - + MagmaOrbRadiusPct = 4206, + /// /// reave_radius_+% /// - ReaveRadiusPct = 4206, - + ReaveRadiusPct = 4207, + /// /// molten_strike_radius_+% /// - MoltenStrikeRadiusPct = 4207, - + MoltenStrikeRadiusPct = 4208, + /// /// ice_shot_radius_+% /// - IceShotRadiusPct = 4208, - + IceShotRadiusPct = 4209, + /// /// rain_of_arrows_radius_+% /// - RainOfArrowsRadiusPct = 4209, - + RainOfArrowsRadiusPct = 4210, + /// /// leap_slam_radius_+% /// - LeapSlamRadiusPct = 4210, - + LeapSlamRadiusPct = 4211, + /// /// lightning_arrow_radius_+% /// - LightningArrowRadiusPct = 4211, - + LightningArrowRadiusPct = 4212, + /// /// ice_nova_radius_+% /// - IceNovaRadiusPct = 4212, - + IceNovaRadiusPct = 4213, + /// /// static_strike_radius_+% /// - StaticStrikeRadiusPct = 4213, - + StaticStrikeRadiusPct = 4214, + /// /// storm_call_radius_+% /// - StormCallRadiusPct = 4214, - + StormCallRadiusPct = 4215, + /// /// sweep_radius_+% /// - SweepRadiusPct = 4215, - + SweepRadiusPct = 4216, + /// /// righteous_fire_radius_+% /// - RighteousFireRadiusPct = 4216, - + RighteousFireRadiusPct = 4217, + /// /// arctic_breath_radius_+% /// - ArcticBreathRadiusPct = 4217, - + ArcticBreathRadiusPct = 4218, + /// /// ball_lightning_radius_+% /// - BallLightningRadiusPct = 4218, - + BallLightningRadiusPct = 4219, + /// /// explosive_arrow_radius_+% /// - ExplosiveArrowRadiusPct = 4219, - + ExplosiveArrowRadiusPct = 4220, + /// /// flameblast_radius_+% /// - FlameblastRadiusPct = 4220, - + FlameblastRadiusPct = 4221, + /// /// glacial_cascade_radius_+% /// - GlacialCascadeRadiusPct = 4221, - + GlacialCascadeRadiusPct = 4222, + /// /// wild_strike_radius_+% /// - WildStrikeRadiusPct = 4222, - + WildStrikeRadiusPct = 4223, + /// /// detonate_dead_radius_+% /// - DetonateDeadRadiusPct = 4223, - + DetonateDeadRadiusPct = 4224, + /// /// ice_crash_radius_+% /// - IceCrashRadiusPct = 4224, - + IceCrashRadiusPct = 4225, + /// /// kinetic_blast_radius_+% /// - KineticBlastRadiusPct = 4225, - + KineticBlastRadiusPct = 4226, + /// /// caustic_arrow_radius_+% /// - CausticArrowRadiusPct = 4226, - + CausticArrowRadiusPct = 4227, + /// /// cold_snap_radius_+% /// - ColdSnapRadiusPct = 4227, - + ColdSnapRadiusPct = 4228, + /// /// decoy_totem_radius_+% /// - DecoyTotemRadiusPct = 4228, - + DecoyTotemRadiusPct = 4229, + /// /// shock_nova_radius_+% /// - ShockNovaRadiusPct = 4229, - + ShockNovaRadiusPct = 4230, + /// /// shockwave_totem_radius_+% /// - ShockwaveTotemRadiusPct = 4230, - + ShockwaveTotemRadiusPct = 4231, + /// /// cleave_attack_speed_+% /// - CleaveAttackSpeedPct = 4231, - + CleaveAttackSpeedPct = 4232, + /// /// double_strike_attack_speed_+% /// - DoubleStrikeAttackSpeedPct = 4232, - + DoubleStrikeAttackSpeedPct = 4233, + /// /// dual_strike_attack_speed_+% /// - DualStrikeAttackSpeedPct = 4233, - + DualStrikeAttackSpeedPct = 4234, + /// /// heavy_strike_attack_speed_+% /// - HeavyStrikeAttackSpeedPct = 4234, - + HeavyStrikeAttackSpeedPct = 4235, + /// /// zombie_attack_speed_+% /// - ZombieAttackSpeedPct = 4235, - + ZombieAttackSpeedPct = 4236, + /// /// rain_of_arrows_attack_speed_+% /// - RainOfArrowsAttackSpeedPct = 4236, - + RainOfArrowsAttackSpeedPct = 4237, + /// /// leap_slam_attack_speed_+% /// - LeapSlamAttackSpeedPct = 4237, - + LeapSlamAttackSpeedPct = 4238, + /// /// shield_charge_attack_speed_+% /// - ShieldChargeAttackSpeedPct = 4238, - + ShieldChargeAttackSpeedPct = 4239, + /// /// barrage_attack_speed_+% /// - BarrageAttackSpeedPct = 4239, - + BarrageAttackSpeedPct = 4240, + /// /// elemental_hit_attack_speed_+% /// - ElementalHitAttackSpeedPct = 4240, - + ElementalHitAttackSpeedPct = 4241, + /// /// cyclone_attack_speed_+% /// - CycloneAttackSpeedPct = 4241, - + CycloneAttackSpeedPct = 4242, + /// /// power_siphon_attack_speed_+% /// - PowerSiphonAttackSpeedPct = 4242, - + PowerSiphonAttackSpeedPct = 4243, + /// /// spectre_attack_and_cast_speed_+% /// - SpectreAttackAndCastSpeedPct = 4243, - + SpectreAttackAndCastSpeedPct = 4244, + /// /// freezing_pulse_cast_speed_+% /// - FreezingPulseCastSpeedPct = 4244, - + FreezingPulseCastSpeedPct = 4245, + /// /// fireball_cast_speed_+% /// - FireballCastSpeedPct = 4245, - + FireballCastSpeedPct = 4246, + /// /// fire_nova_mine_cast_speed_+% /// - FireNovaMineCastSpeedPct = 4246, - + FireNovaMineCastSpeedPct = 4247, + /// /// lightning_warp_cast_speed_+% /// - LightningWarpCastSpeedPct = 4247, - + LightningWarpCastSpeedPct = 4248, + /// /// fire_trap_cooldown_speed_+% /// - FireTrapCooldownSpeedPct = 4248, - + FireTrapCooldownSpeedPct = 4249, + /// /// flicker_strike_cooldown_speed_+% /// - FlickerStrikeCooldownSpeedPct = 4249, - + FlickerStrikeCooldownSpeedPct = 4250, + /// /// cold_snap_cooldown_speed_+% /// - ColdSnapCooldownSpeedPct = 4250, - + ColdSnapCooldownSpeedPct = 4251, + /// /// ball_lightning_projectile_speed_+% /// - BallLightningProjectileSpeedPct = 4251, - + BallLightningProjectileSpeedPct = 4252, + /// /// freezing_pulse_projectile_speed_+% /// - FreezingPulseProjectileSpeedPct = 4252, - + FreezingPulseProjectileSpeedPct = 4253, + /// /// spark_projectile_speed_+% /// - SparkProjectileSpeedPct = 4253, - + SparkProjectileSpeedPct = 4254, + /// /// spectral_throw_projectile_speed_+% /// - SpectralThrowProjectileSpeedPct = 4254, - + SpectralThrowProjectileSpeedPct = 4255, + /// /// ethereal_knives_projectile_speed_+% /// - EtherealKnivesProjectileSpeedPct = 4255, - + EtherealKnivesProjectileSpeedPct = 4256, + /// /// flame_totem_projectile_speed_+% /// - FlameTotemProjectileSpeedPct = 4256, - + FlameTotemProjectileSpeedPct = 4257, + /// /// incinerate_projectile_speed_+% /// - IncinerateProjectileSpeedPct = 4257, - + IncinerateProjectileSpeedPct = 4258, + /// /// dominating_blow_duration_+% /// - DominatingBlowDurationPct = 4258, - + DominatingBlowDurationPct = 4259, + /// /// puncture_duration_+% /// - PunctureDurationPct = 4259, - + PunctureDurationPct = 4260, + /// /// viper_strike_poison_duration_+% /// - ViperStrikePoisonDurationPct = 4260, - + ViperStrikePoisonDurationPct = 4261, + /// /// firestorm_duration_+% /// - FirestormDurationPct = 4261, - + FirestormDurationPct = 4262, + /// /// static_strike_duration_+% /// - StaticStrikeDurationPct = 4262, - + StaticStrikeDurationPct = 4263, + /// /// storm_call_duration_+% /// - StormCallDurationPct = 4263, - + StormCallDurationPct = 4264, + /// /// arctic_breath_duration_+% /// - ArcticBreathDurationPct = 4264, - + ArcticBreathDurationPct = 4265, + /// /// lightning_warp_duration_+% /// - LightningWarpDurationPct = 4265, - + LightningWarpDurationPct = 4266, + /// /// ice_shot_duration_+% /// - IceShotDurationPct = 4266, - + IceShotDurationPct = 4267, + /// /// caustic_arrow_duration_+% /// - CausticArrowDurationPct = 4267, - + CausticArrowDurationPct = 4268, + /// /// double_strike_critical_strike_chance_+% /// - DoubleStrikeCriticalStrikeChancePct = 4268, - + DoubleStrikeCriticalStrikeChancePct = 4269, + /// /// dual_strike_critical_strike_chance_+% /// - DualStrikeCriticalStrikeChancePct = 4269, - + DualStrikeCriticalStrikeChancePct = 4270, + /// /// split_arrow_critical_strike_chance_+% /// - SplitArrowCriticalStrikeChancePct = 4270, - + SplitArrowCriticalStrikeChancePct = 4271, + /// /// viper_strike_critical_strike_chance_+% /// - ViperStrikeCriticalStrikeChancePct = 4271, - + ViperStrikeCriticalStrikeChancePct = 4272, + /// /// flameblast_critical_strike_chance_+% /// - FlameblastCriticalStrikeChancePct = 4272, - + FlameblastCriticalStrikeChancePct = 4273, + /// /// flame_surge_critical_strike_chance_+% /// - FlameSurgeCriticalStrikeChancePct = 4273, - + FlameSurgeCriticalStrikeChancePct = 4274, + /// /// tornado_shot_critical_strike_chance_+% /// - TornadoShotCriticalStrikeChancePct = 4274, - + TornadoShotCriticalStrikeChancePct = 4275, + /// /// lightning_strike_num_of_additional_projectiles /// - LightningStrikeNumOfAdditionalProjectiles = 4275, - + LightningStrikeNumOfAdditionalProjectiles = 4276, + /// /// molten_strike_num_of_additional_projectiles /// - MoltenStrikeNumOfAdditionalProjectiles = 4276, - + MoltenStrikeNumOfAdditionalProjectiles = 4277, + /// /// spark_num_of_additional_projectiles /// - SparkNumOfAdditionalProjectiles = 4277, - + SparkNumOfAdditionalProjectiles = 4278, + /// /// split_arrow_num_of_additional_projectiles /// - SplitArrowNumOfAdditionalProjectiles = 4278, - + SplitArrowNumOfAdditionalProjectiles = 4279, + /// /// barrage_num_of_additional_projectiles /// - BarrageNumOfAdditionalProjectiles = 4279, - + BarrageNumOfAdditionalProjectiles = 4280, + /// /// tornado_shot_num_of_secondary_projectiles /// - TornadoShotNumOfSecondaryProjectiles = 4280, - + TornadoShotNumOfSecondaryProjectiles = 4281, + /// /// magma_orb_num_of_additional_projectiles_in_chain /// - MagmaOrbNumOfAdditionalProjectilesInChain = 4281, - + MagmaOrbNumOfAdditionalProjectilesInChain = 4282, + /// /// arc_num_of_additional_projectiles_in_chain /// - ArcNumOfAdditionalProjectilesInChain = 4282, - + ArcNumOfAdditionalProjectilesInChain = 4283, + /// /// flame_totem_num_of_additional_projectiles /// - FlameTotemNumOfAdditionalProjectiles = 4283, - + FlameTotemNumOfAdditionalProjectiles = 4284, + /// /// burning_arrow_ignite_chance_% /// - BurningArrowIgniteChancePct = 4284, - + BurningArrowIgniteChancePct = 4285, + /// /// burning_arrow_physical_damage_%_to_add_as_fire_damage /// - BurningArrowPhysicalDamagePctToAddAsFireDamage = 4285, - + BurningArrowPhysicalDamagePctToAddAsFireDamage = 4286, + /// /// infernal_blow_physical_damage_%_to_add_as_fire_damage /// - InfernalBlowPhysicalDamagePctToAddAsFireDamage = 4286, - + InfernalBlowPhysicalDamagePctToAddAsFireDamage = 4287, + /// /// fire_trap_burning_damage_+% /// - FireTrapBurningDamagePct = 4287, - + FireTrapBurningDamagePct = 4288, + /// /// fireball_ignite_chance_% /// - FireballIgniteChancePct = 4288, - + FireballIgniteChancePct = 4289, + /// /// glacial_hammer_freeze_chance_% /// - GlacialHammerFreezeChancePct = 4289, - + GlacialHammerFreezeChancePct = 4290, + /// /// ice_nova_freeze_chance_% /// - IceNovaFreezeChancePct = 4290, - + IceNovaFreezeChancePct = 4291, + /// /// reave_attack_speed_per_reave_stack_+% /// - ReaveAttackSpeedPerReaveStackPct = 4291, - + ReaveAttackSpeedPerReaveStackPct = 4292, + /// /// spectral_throw_projectile_deceleration_+% /// - SpectralThrowProjectileDecelerationPct = 4292, - + SpectralThrowProjectileDecelerationPct = 4293, + /// /// flicker_strike_damage_+%_per_frenzy_charge /// - FlickerStrikeDamagePctPerFrenzyCharge = 4293, - + FlickerStrikeDamagePctPerFrenzyCharge = 4294, + /// /// puncture_maim_on_hit_%_chance /// - PunctureMaimOnHitPctChance = 4294, - + PunctureMaimOnHitPctChance = 4295, + /// /// arc_shock_chance_% /// - ArcShockChancePct = 4295, - + ArcShockChancePct = 4296, + /// /// fire_nova_mine_num_of_additional_repeats /// - FireNovaMineNumOfAdditionalRepeats = 4296, - + FireNovaMineNumOfAdditionalRepeats = 4297, + /// /// firestorm_explosion_area_of_effect_+% /// - FirestormExplosionAreaOfEffectPct = 4297, - + FirestormExplosionAreaOfEffectPct = 4298, + /// /// flame_surge_damage_+%_vs_burning_enemies /// - FlameSurgeDamagePctVsBurningEnemies = 4298, - + FlameSurgeDamagePctVsBurningEnemies = 4299, + /// /// ice_spear_%_chance_to_gain_power_charge_on_critical_strike /// - IceSpearPctChanceToGainPowerChargeOnCriticalStrike = 4299, - + IceSpearPctChanceToGainPowerChargeOnCriticalStrike = 4300, + /// /// power_siphon_%_chance_to_gain_power_charge_on_kill /// - PowerSiphonPctChanceToGainPowerChargeOnKill = 4300, - + PowerSiphonPctChanceToGainPowerChargeOnKill = 4301, + /// /// searing_bond_totem_placement_speed_+% /// - SearingBondTotemPlacementSpeedPct = 4301, - + SearingBondTotemPlacementSpeedPct = 4302, + /// /// sweep_knockback_chance_% /// - SweepKnockbackChancePct = 4302, - + SweepKnockbackChancePct = 4303, + /// /// frenzy_damage_+%_per_frenzy_charge /// - FrenzyDamagePctPerFrenzyCharge = 4303, - + FrenzyDamagePctPerFrenzyCharge = 4304, + /// /// frenzy_%_chance_to_gain_additional_frenzy_charge /// - FrenzyPctChanceToGainAdditionalFrenzyCharge = 4304, - + FrenzyPctChanceToGainAdditionalFrenzyCharge = 4305, + /// /// elemental_hit_chance_to_freeze_shock_ignite_% /// - ElementalHitChanceToFreezeShockIgnitePct = 4305, - + ElementalHitChanceToFreezeShockIgnitePct = 4306, + /// /// glacial_cascade_physical_damage_%_to_convert_to_cold /// - GlacialCascadePhysicalDamagePctToConvertToCold = 4306, - + GlacialCascadePhysicalDamagePctToConvertToCold = 4307, + /// /// glacial_hammer_physical_damage_%_to_add_as_cold_damage /// - GlacialHammerPhysicalDamagePctToAddAsColdDamage = 4307, - + GlacialHammerPhysicalDamagePctToAddAsColdDamage = 4308, + /// /// ice_crash_physical_damage_%_to_add_as_cold_damage /// - IceCrashPhysicalDamagePctToAddAsColdDamage = 4308, - + IceCrashPhysicalDamagePctToAddAsColdDamage = 4309, + /// /// spectre_elemental_resistances_% /// - SpectreElementalResistancesPct = 4309, - + SpectreElementalResistancesPct = 4310, + /// /// zombie_elemental_resistances_% /// - ZombieElementalResistancesPct = 4310, - + ZombieElementalResistancesPct = 4311, + /// /// flame_golem_elemental_resistances_% /// - FlameGolemElementalResistancesPct = 4311, - + FlameGolemElementalResistancesPct = 4312, + /// /// chaos_golem_elemental_resistances_% /// - ChaosGolemElementalResistancesPct = 4312, - + ChaosGolemElementalResistancesPct = 4313, + /// /// ice_golem_elemental_resistances_% /// - IceGolemElementalResistancesPct = 4313, - + IceGolemElementalResistancesPct = 4314, + /// /// shock_nova_ring_damage_+% /// - ShockNovaRingDamagePct = 4314, - + ShockNovaRingDamagePct = 4315, + /// /// detonate_dead_%_chance_to_detonate_additional_corpse /// - DetonateDeadPctChanceToDetonateAdditionalCorpse = 4315, - + DetonateDeadPctChanceToDetonateAdditionalCorpse = 4316, + /// /// animate_weapon_chance_to_create_additional_copy_% /// - AnimateWeaponChanceToCreateAdditionalCopyPct = 4316, - + AnimateWeaponChanceToCreateAdditionalCopyPct = 4317, + /// /// decoy_totem_life_+% /// - DecoyTotemLifePct = 4317, - + DecoyTotemLifePct = 4318, + /// /// devouring_totem_leech_per_second_+% /// - DevouringTotemLeechPerSecondPct = 4318, - + DevouringTotemLeechPerSecondPct = 4319, + /// /// rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration /// - RejuvenationTotemPctLifeRegenerationAddedAsManaRegeneration = 4319, - + RejuvenationTotemPctLifeRegenerationAddedAsManaRegeneration = 4320, + /// /// rejuvenation_totem_aura_effect_+% /// - RejuvenationTotemAuraEffectPct = 4320, - + RejuvenationTotemAuraEffectPct = 4321, + /// /// summon_skeletons_num_additional_warrior_skeletons /// - SummonSkeletonsNumAdditionalWarriorSkeletons = 4321, - + SummonSkeletonsNumAdditionalWarriorSkeletons = 4322, + /// /// wild_strike_num_of_additional_projectiles_in_chain /// - WildStrikeNumOfAdditionalProjectilesInChain = 4322, - + WildStrikeNumOfAdditionalProjectilesInChain = 4323, + /// /// shockwave_totem_cast_speed_+% /// - ShockwaveTotemCastSpeedPct = 4323, - + ShockwaveTotemCastSpeedPct = 4324, + /// /// devouring_totem_%_chance_to_consume_additional_corpse /// - DevouringTotemPctChanceToConsumeAdditionalCorpse = 4324, - + DevouringTotemPctChanceToConsumeAdditionalCorpse = 4325, + /// /// incinerate_damage_+%_per_stage /// - IncinerateDamagePctPerStage = 4325, - + IncinerateDamagePctPerStage = 4326, + /// /// siege_ballista_totem_placement_speed_+% /// - SiegeBallistaTotemPlacementSpeedPct = 4326, - + SiegeBallistaTotemPlacementSpeedPct = 4327, + /// /// virtual_curse_effect_+% /// - VirtualCurseEffectPct = 4327, - + VirtualCurseEffectPct = 4328, + /// /// poachers_mark_curse_effect_+% /// - PoachersMarkCurseEffectPct = 4328, - + PoachersMarkCurseEffectPct = 4329, + /// /// projectile_weakness_curse_effect_+% /// - ProjectileWeaknessCurseEffectPct = 4329, - + ProjectileWeaknessCurseEffectPct = 4330, + /// /// temporal_chains_curse_effect_+% /// - TemporalChainsCurseEffectPct = 4330, - + TemporalChainsCurseEffectPct = 4331, + /// /// assassins_mark_curse_effect_+% /// - AssassinsMarkCurseEffectPct = 4331, - + AssassinsMarkCurseEffectPct = 4332, + /// /// conductivity_curse_effect_+% /// - ConductivityCurseEffectPct = 4332, - + ConductivityCurseEffectPct = 4333, + /// /// elemental_weakness_curse_effect_+% /// - ElementalWeaknessCurseEffectPct = 4333, - + ElementalWeaknessCurseEffectPct = 4334, + /// /// enfeeble_curse_effect_+% /// - EnfeebleCurseEffectPct = 4334, - + EnfeebleCurseEffectPct = 4335, + /// /// flammability_curse_effect_+% /// - FlammabilityCurseEffectPct = 4335, - + FlammabilityCurseEffectPct = 4336, + /// /// frostbite_curse_effect_+% /// - FrostbiteCurseEffectPct = 4336, - + FrostbiteCurseEffectPct = 4337, + /// /// punishment_curse_effect_+% /// - PunishmentCurseEffectPct = 4337, - + PunishmentCurseEffectPct = 4338, + /// /// vulnerability_curse_effect_+% /// - VulnerabilityCurseEffectPct = 4338, - + VulnerabilityCurseEffectPct = 4339, + /// /// warlords_mark_curse_effect_+% /// - WarlordsMarkCurseEffectPct = 4339, - + WarlordsMarkCurseEffectPct = 4340, + /// /// lightning_golem_grants_attack_and_cast_speed_+% /// - LightningGolemGrantsAttackAndCastSpeedPct = 4340, - + LightningGolemGrantsAttackAndCastSpeedPct = 4341, + /// /// lightning_golem_grants_added_lightning_damage /// - LightningGolemGrantsAddedLightningDamage = 4341, - + LightningGolemGrantsAddedLightningDamage = 4342, + /// /// arctic_armour_mana_reservation_+% /// - ArcticArmourManaReservationPct = 4342, - + ArcticArmourManaReservationPct = 4343, + /// /// herald_of_ash_mana_reservation_+% /// - HeraldOfAshManaReservationPct = 4343, - + HeraldOfAshManaReservationPct = 4344, + /// /// herald_of_ice_mana_reservation_+% /// - HeraldOfIceManaReservationPct = 4344, - + HeraldOfIceManaReservationPct = 4345, + /// /// herald_of_thunder_mana_reservation_+% /// - HeraldOfThunderManaReservationPct = 4345, - + HeraldOfThunderManaReservationPct = 4346, + /// /// clarity_mana_reservation_+% /// - ClarityManaReservationPct = 4346, - + ClarityManaReservationPct = 4347, + /// /// hatred_mana_reservation_+% /// - HatredManaReservationPct = 4347, - + HatredManaReservationPct = 4348, + /// /// purity_of_ice_mana_reservation_+% /// - PurityOfIceManaReservationPct = 4348, - + PurityOfIceManaReservationPct = 4349, + /// /// determination_mana_reservation_+% /// - DeterminationManaReservationPct = 4349, - + DeterminationManaReservationPct = 4350, + /// /// discipline_mana_reservation_+% /// - DisciplineManaReservationPct = 4350, - + DisciplineManaReservationPct = 4351, + /// /// purity_of_elements_mana_reservation_+% /// - PurityOfElementsManaReservationPct = 4351, - + PurityOfElementsManaReservationPct = 4352, + /// /// purity_of_fire_mana_reservation_+% /// - PurityOfFireManaReservationPct = 4352, - + PurityOfFireManaReservationPct = 4353, + /// /// purity_of_lightning_mana_reservation_+% /// - PurityOfLightningManaReservationPct = 4353, - + PurityOfLightningManaReservationPct = 4354, + /// /// vitality_mana_reservation_+% /// - VitalityManaReservationPct = 4354, - + VitalityManaReservationPct = 4355, + /// /// wrath_mana_reservation_+% /// - WrathManaReservationPct = 4355, - + WrathManaReservationPct = 4356, + /// /// grace_mana_reservation_+% /// - GraceManaReservationPct = 4356, - + GraceManaReservationPct = 4357, + /// /// haste_mana_reservation_+% /// - HasteManaReservationPct = 4357, - + HasteManaReservationPct = 4358, + /// /// immortal_call_duration_+% /// - ImmortalCallDurationPct = 4358, - + ImmortalCallDurationPct = 4359, + /// /// bone_offering_duration_+% /// - BoneOfferingDurationPct = 4359, - + BoneOfferingDurationPct = 4360, + /// /// flesh_offering_duration_+% /// - FleshOfferingDurationPct = 4360, - + FleshOfferingDurationPct = 4361, + /// /// smoke_mine_duration_+% /// - SmokeMineDurationPct = 4361, - + SmokeMineDurationPct = 4362, + /// /// frost_wall_duration_+% /// - FrostWallDurationPct = 4362, - + FrostWallDurationPct = 4363, + /// /// vigilant_strike_fortify_duration_+% /// - VigilantStrikeFortifyDurationPct = 4363, - + VigilantStrikeFortifyDurationPct = 4364, + /// /// poachers_mark_duration_+% /// - PoachersMarkDurationPct = 4364, - + PoachersMarkDurationPct = 4365, + /// /// projectile_weakness_duration_+% /// - ProjectileWeaknessDurationPct = 4365, - + ProjectileWeaknessDurationPct = 4366, + /// /// temporal_chains_duration_+% /// - TemporalChainsDurationPct = 4366, - + TemporalChainsDurationPct = 4367, + /// /// warlords_mark_duration_+% /// - WarlordsMarkDurationPct = 4367, - + WarlordsMarkDurationPct = 4368, + /// /// vulnerability_duration_+% /// - VulnerabilityDurationPct = 4368, - + VulnerabilityDurationPct = 4369, + /// /// punishment_duration_+% /// - PunishmentDurationPct = 4369, - + PunishmentDurationPct = 4370, + /// /// frostbite_duration_+% /// - FrostbiteDurationPct = 4370, - + FrostbiteDurationPct = 4371, + /// /// flammability_duration_+% /// - FlammabilityDurationPct = 4371, - + FlammabilityDurationPct = 4372, + /// /// enfeeble_duration_+% /// - EnfeebleDurationPct = 4372, - + EnfeebleDurationPct = 4373, + /// /// elemental_weakness_duration_+% /// - ElementalWeaknessDurationPct = 4373, - + ElementalWeaknessDurationPct = 4374, + /// /// conductivity_duration_+% /// - ConductivityDurationPct = 4374, - + ConductivityDurationPct = 4375, + /// /// assassins_mark_duration_+% /// - AssassinsMarkDurationPct = 4375, - + AssassinsMarkDurationPct = 4376, + /// /// rallying_cry_duration_+% /// - RallyingCryDurationPct = 4376, - + RallyingCryDurationPct = 4377, + /// /// abyssal_cry_duration_+% /// - AbyssalCryDurationPct = 4377, - + AbyssalCryDurationPct = 4378, + /// /// contagion_duration_+% /// - ContagionDurationPct = 4378, - + ContagionDurationPct = 4379, + /// /// siphon_duration_+% /// - SiphonDurationPct = 4379, - + SiphonDurationPct = 4380, + /// /// wither_duration_+% /// - WitherDurationPct = 4380, - + WitherDurationPct = 4381, + /// /// blade_vortex_duration_+% /// - BladeVortexDurationPct = 4381, - + BladeVortexDurationPct = 4382, + /// /// earthquake_duration_+% /// - EarthquakeDurationPct = 4382, - + EarthquakeDurationPct = 4383, + /// /// blight_duration_+% /// - BlightDurationPct = 4383, - + BlightDurationPct = 4384, + /// /// blight_secondary_skill_effect_duration_+% /// - BlightSecondarySkillEffectDurationPct = 4384, - + BlightSecondarySkillEffectDurationPct = 4385, + /// /// convocation_cooldown_speed_+% /// - ConvocationCooldownSpeedPct = 4385, - + ConvocationCooldownSpeedPct = 4386, + /// /// bear_trap_cooldown_speed_+% /// - BearTrapCooldownSpeedPct = 4386, - + BearTrapCooldownSpeedPct = 4387, + /// /// frost_wall_cooldown_speed_+% /// - FrostWallCooldownSpeedPct = 4387, - + FrostWallCooldownSpeedPct = 4388, + /// /// reckoning_cooldown_speed_+% /// - ReckoningCooldownSpeedPct = 4388, - + ReckoningCooldownSpeedPct = 4389, + /// /// flame_dash_cooldown_speed_+% /// - FlameDashCooldownSpeedPct = 4389, - + FlameDashCooldownSpeedPct = 4390, + /// /// desecrate_cooldown_speed_+% /// - DesecrateCooldownSpeedPct = 4390, - + DesecrateCooldownSpeedPct = 4391, + /// /// blink_arrow_cooldown_speed_+% /// - BlinkArrowCooldownSpeedPct = 4391, - + BlinkArrowCooldownSpeedPct = 4392, + /// /// mirror_arrow_cooldown_speed_+% /// - MirrorArrowCooldownSpeedPct = 4392, - + MirrorArrowCooldownSpeedPct = 4393, + /// /// riposte_cooldown_speed_+% /// - RiposteCooldownSpeedPct = 4393, - + RiposteCooldownSpeedPct = 4394, + /// /// vengeance_cooldown_speed_+% /// - VengeanceCooldownSpeedPct = 4394, - + VengeanceCooldownSpeedPct = 4395, + /// /// enduring_cry_cooldown_speed_+% /// - EnduringCryCooldownSpeedPct = 4395, - + EnduringCryCooldownSpeedPct = 4396, + /// /// frost_bomb_cooldown_speed_+% /// - FrostBombCooldownSpeedPct = 4396, - + FrostBombCooldownSpeedPct = 4397, + /// /// conversion_trap_cooldown_speed_+% /// - ConversionTrapCooldownSpeedPct = 4397, - + ConversionTrapCooldownSpeedPct = 4398, + /// /// ice_trap_cooldown_speed_+% /// - IceTrapCooldownSpeedPct = 4398, - + IceTrapCooldownSpeedPct = 4399, + /// /// siege_ballista_attack_speed_+% /// - SiegeBallistaAttackSpeedPct = 4399, - + SiegeBallistaAttackSpeedPct = 4400, + /// /// shockwave_slam_attack_speed_+% /// - ShockwaveSlamAttackSpeedPct = 4400, - + ShockwaveSlamAttackSpeedPct = 4401, + /// /// mirror_arrow_and_mirror_arrow_clone_attack_speed_+% /// - MirrorArrowAndMirrorArrowCloneAttackSpeedPct = 4401, - + MirrorArrowAndMirrorArrowCloneAttackSpeedPct = 4402, + /// /// freeze_mine_radius_+% /// - FreezeMineRadiusPct = 4402, - + FreezeMineRadiusPct = 4403, + /// /// shrapnel_shot_radius_+% /// - ShrapnelShotRadiusPct = 4403, - + ShrapnelShotRadiusPct = 4404, + /// /// blast_rain_radius_+% /// - BlastRainRadiusPct = 4404, - + BlastRainRadiusPct = 4405, + /// /// contagion_radius_+% /// - ContagionRadiusPct = 4405, - + ContagionRadiusPct = 4406, + /// /// wither_radius_+% /// - WitherRadiusPct = 4406, - + WitherRadiusPct = 4407, + /// /// blade_vortex_radius_+% /// - BladeVortexRadiusPct = 4407, - + BladeVortexRadiusPct = 4408, + /// /// bladefall_radius_+% /// - BladefallRadiusPct = 4408, - + BladefallRadiusPct = 4409, + /// /// ice_trap_radius_+% /// - IceTrapRadiusPct = 4409, - + IceTrapRadiusPct = 4410, + /// /// earthquake_radius_+% /// - EarthquakeRadiusPct = 4410, - + EarthquakeRadiusPct = 4411, + /// /// frost_bomb_radius_+% /// - FrostBombRadiusPct = 4411, - + FrostBombRadiusPct = 4412, + /// /// storm_cloud_radius_+% /// - StormCloudRadiusPct = 4412, - + StormCloudRadiusPct = 4413, + /// /// blight_radius_+% /// - BlightRadiusPct = 4413, - + BlightRadiusPct = 4414, + /// /// shockwave_slam_radius_+% /// - ShockwaveSlamRadiusPct = 4414, - + ShockwaveSlamRadiusPct = 4415, + /// /// display_attack_with_decree_of_ire_when_hit_% /// - DisplayAttackWithDecreeOfIreWhenHitPct = 4415, - + DisplayAttackWithDecreeOfIreWhenHitPct = 4416, + /// /// display_attack_with_commandment_of_ire_when_hit_% /// - DisplayAttackWithCommandmentOfIreWhenHitPct = 4416, - + DisplayAttackWithCommandmentOfIreWhenHitPct = 4417, + /// /// blink_arrow_and_blink_arrow_clone_attack_speed_+% /// - BlinkArrowAndBlinkArrowCloneAttackSpeedPct = 4417, - + BlinkArrowAndBlinkArrowCloneAttackSpeedPct = 4418, + /// /// whirling_blades_attack_speed_+% /// - WhirlingBladesAttackSpeedPct = 4418, - + WhirlingBladesAttackSpeedPct = 4419, + /// /// arctic_armour_buff_effect_+% /// - ArcticArmourBuffEffectPct = 4419, - + ArcticArmourBuffEffectPct = 4420, + /// /// immortal_call_%_chance_to_not_consume_endurance_charges /// - ImmortalCallPctChanceToNotConsumeEnduranceCharges = 4420, - + ImmortalCallPctChanceToNotConsumeEnduranceCharges = 4421, + /// /// phase_run_%_chance_to_not_consume_frenzy_charges /// - PhaseRunPctChanceToNotConsumeFrenzyCharges = 4421, - + PhaseRunPctChanceToNotConsumeFrenzyCharges = 4422, + /// /// animate_guardian_elemental_resistances_% /// - AnimateGuardianElementalResistancesPct = 4422, - + AnimateGuardianElementalResistancesPct = 4423, + /// /// shrapnel_shot_physical_damage_%_to_add_as_lightning_damage /// - ShrapnelShotPhysicalDamagePctToAddAsLightningDamage = 4423, - + ShrapnelShotPhysicalDamagePctToAddAsLightningDamage = 4424, + /// /// bladefall_critical_strike_chance_+% /// - BladefallCriticalStrikeChancePct = 4424, - + BladefallCriticalStrikeChancePct = 4425, + /// /// storm_cloud_critical_strike_chance_+% /// - StormCloudCriticalStrikeChancePct = 4425, - + StormCloudCriticalStrikeChancePct = 4426, + /// /// tempest_shield_num_of_additional_projectiles_in_chain /// - TempestShieldNumOfAdditionalProjectilesInChain = 4426, - + TempestShieldNumOfAdditionalProjectilesInChain = 4427, + /// /// map_labyrinth_secret1_override /// - MapLabyrinthSecret1Override = 4427, - + MapLabyrinthSecret1Override = 4428, + /// /// map_labyrinth_secret2_override /// - MapLabyrinthSecret2Override = 4428, - + MapLabyrinthSecret2Override = 4429, + /// /// melee_ancestor_totem_granted_attack_speed_+%_final /// - MeleeAncestorTotemGrantedAttackSpeedPctFinal = 4429, - + MeleeAncestorTotemGrantedAttackSpeedPctFinal = 4430, + /// /// cannot_be_stunned_while_at_max_endurance_charges /// - CannotBeStunnedWhileAtMaxEnduranceCharges = 4430, - + CannotBeStunnedWhileAtMaxEnduranceCharges = 4431, + /// /// life_regenerate_rate_per_second_%_while_totem_active /// - LifeRegenerateRatePerSecondPctWhileTotemActive = 4431, - + LifeRegenerateRatePerSecondPctWhileTotemActive = 4432, + /// /// gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit /// - GainAttackAndCastSpeedPctFor4SecondsIfTakenSavageHit = 4432, - + GainAttackAndCastSpeedPctFor4SecondsIfTakenSavageHit = 4433, + /// /// berserker_damage_+%_final /// - BerserkerDamagePctFinal = 4433, - + BerserkerDamagePctFinal = 4434, + /// /// elemental_damage_taken_+%_while_on_consecrated_ground /// - ElementalDamageTakenPctWhileOnConsecratedGround = 4434, - + ElementalDamageTakenPctWhileOnConsecratedGround = 4435, + /// /// critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments /// - CriticalStrikeChancePctVsEnemiesWithElementalStatusAilments = 4435, - + CriticalStrikeChancePctVsEnemiesWithElementalStatusAilments = 4436, + /// /// scion_helmet_skill_maximum_totems_+ /// - ScionHelmetSkillMaximumTotems = 4436, - + ScionHelmetSkillMaximumTotems = 4437, + /// /// %_chance_to_gain_power_charge_on_placing_a_totem /// - PctChanceToGainPowerChargeOnPlacingATotem = 4437, - + PctChanceToGainPowerChargeOnPlacingATotem = 4438, + /// /// attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras /// - AttackAndCastSpeedPctForYouAndAlliesAffectedByYourAuras = 4438, - + AttackAndCastSpeedPctForYouAndAlliesAffectedByYourAuras = 4439, + /// /// gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy /// - GainElementalConfluxForXMsWhenYouKillARareOrUniqueEnemy = 4439, - + GainElementalConfluxForXMsWhenYouKillARareOrUniqueEnemy = 4440, + /// /// enemies_chaos_resistance_%_while_cursed /// - EnemiesChaosResistancePctWhileCursed = 4440, - + EnemiesChaosResistancePctWhileCursed = 4441, + /// /// damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy /// - DamagePctFor4SecondsWhenYouKillACursedEnemy = 4441, - + DamagePctFor4SecondsWhenYouKillACursedEnemy = 4442, + /// /// physical_damage_reduction_and_minion_physical_damage_reduction_% /// - PhysicalDamageReductionAndMinionPhysicalDamageReductionPct = 4442, - + PhysicalDamageReductionAndMinionPhysicalDamageReductionPct = 4443, + /// /// offering_spells_effect_+% /// - OfferingSpellsEffectPct = 4443, - + OfferingSpellsEffectPct = 4444, + /// /// damage_+%_for_you_and_allies_affected_by_your_auras /// - DamagePctForYouAndAlliesAffectedByYourAuras = 4444, - + DamagePctForYouAndAlliesAffectedByYourAuras = 4445, + /// /// you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed /// - YouAndMinionAttackAndCastSpeedPctFor4SecondsWhenCorpseDestroyed = 4445, - + YouAndMinionAttackAndCastSpeedPctFor4SecondsWhenCorpseDestroyed = 4446, + /// /// %_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life /// - PctChanceToGainPowerChargeOnHitAgainstEnemiesOnFullLife = 4446, - + PctChanceToGainPowerChargeOnHitAgainstEnemiesOnFullLife = 4447, + /// /// cause_maim_on_critical_strike_attack /// - CauseMaimOnCriticalStrikeAttack = 4447, - + CauseMaimOnCriticalStrikeAttack = 4448, + /// /// %_chance_to_create_smoke_cloud_on_mine_or_trap_creation /// - PctChanceToCreateSmokeCloudOnMineOrTrapCreation = 4448, - + PctChanceToCreateSmokeCloudOnMineOrTrapCreation = 4449, + /// /// damage_+%_for_each_trap_and_mine_active /// - DamagePctForEachTrapAndMineActive = 4449, - + DamagePctForEachTrapAndMineActive = 4450, + /// /// evasion_rating_while_es_full_+%_final /// - EvasionRatingWhileEsFullPctFinal = 4450, - + EvasionRatingWhileEsFullPctFinal = 4451, + /// /// damage_+%_while_es_not_full /// - DamagePctWhileEsNotFull = 4451, - + DamagePctWhileEsNotFull = 4452, + /// /// mana_regeneration_+%_for_4_seconds_on_movement_skill_use /// - ManaRegenerationPctFor4SecondsOnMovementSkillUse = 4452, - + ManaRegenerationPctFor4SecondsOnMovementSkillUse = 4453, + /// /// gain_onslaught_while_frenzy_charges_full /// - GainOnslaughtWhileFrenzyChargesFull = 4453, - + GainOnslaughtWhileFrenzyChargesFull = 4454, + /// /// projectile_damage_+%_max_as_distance_travelled_increases /// - ProjectileDamagePctMaxAsDistanceTravelledIncreases = 4454, - + ProjectileDamagePctMaxAsDistanceTravelledIncreases = 4455, + /// /// damage_+%_during_flask_effect /// - DamagePctDuringFlaskEffect = 4455, - + DamagePctDuringFlaskEffect = 4456, + /// /// avoid_freeze_shock_ignite_bleed_%_during_flask_effect /// - AvoidFreezeShockIgniteBleedPctDuringFlaskEffect = 4456, - + AvoidFreezeShockIgniteBleedPctDuringFlaskEffect = 4457, + /// /// elemental_damage_taken_+%_during_flask_effect /// - ElementalDamageTakenPctDuringFlaskEffect = 4457, - + ElementalDamageTakenPctDuringFlaskEffect = 4458, + /// /// damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy /// - DamagePctFor4SecondsWhenYouKillABleedingEnemy = 4458, - + DamagePctFor4SecondsWhenYouKillABleedingEnemy = 4459, + /// /// damage_+%_to_you_and_nearby_allies_while_you_have_fortify /// - DamagePctToYouAndNearbyAlliesWhileYouHaveFortify = 4459, - + DamagePctToYouAndNearbyAlliesWhileYouHaveFortify = 4460, + /// /// damage_taken_+%_from_taunted_enemies /// - DamageTakenPctFromTauntedEnemies = 4460, - + DamageTakenPctFromTauntedEnemies = 4461, + /// /// attack_and_cast_speed_+%_while_leeching /// - AttackAndCastSpeedPctWhileLeeching = 4461, - + AttackAndCastSpeedPctWhileLeeching = 4462, + /// /// base_avoid_bleed_% /// - BaseAvoidBleedPct = 4462, - + BaseAvoidBleedPct = 4463, + /// /// avoid_bleed_% /// - AvoidBleedPct = 4463, - + AvoidBleedPct = 4464, + /// /// virtual_phase_through_objects /// - VirtualPhaseThroughObjects = 4464, - + VirtualPhaseThroughObjects = 4465, + /// /// virtual_has_onslaught /// - VirtualHasOnslaught = 4465, - + VirtualHasOnslaught = 4466, + /// /// shield_charge_damage_per_target_hit_+% /// - ShieldChargeDamagePerTargetHitPct = 4466, - + ShieldChargeDamagePerTargetHitPct = 4467, + /// /// number_of_mines_to_place /// - NumberOfMinesToPlace = 4467, - + NumberOfMinesToPlace = 4468, + /// /// local_flask_life_gain_on_skill_use_%_mana_cost /// - LocalFlaskLifeGainOnSkillUsePctManaCost = 4468, - + LocalFlaskLifeGainOnSkillUsePctManaCost = 4469, + /// /// life_gain_on_skill_use_percent_mana_cost /// - LifeGainOnSkillUsePercentManaCost = 4469, - + LifeGainOnSkillUsePercentManaCost = 4470, + /// /// traps_and_mines_%_chance_to_poison /// - TrapsAndMinesPctChanceToPoison = 4470, - + TrapsAndMinesPctChanceToPoison = 4471, + /// /// damage_+%_of_each_type_that_you_have_an_active_golem_of /// - DamagePctOfEachTypeThatYouHaveAnActiveGolemOf = 4471, - + DamagePctOfEachTypeThatYouHaveAnActiveGolemOf = 4472, + /// /// elemental_golem_immunity_to_elemental_damage /// - ElementalGolemImmunityToElementalDamage = 4472, - + ElementalGolemImmunityToElementalDamage = 4473, + /// /// elemental_golem_granted_buff_effect_+% /// - ElementalGolemGrantedBuffEffectPct = 4473, - + ElementalGolemGrantedBuffEffectPct = 4474, + /// /// current_number_of_fire_golems /// - CurrentNumberOfFireGolems = 4474, - + CurrentNumberOfFireGolems = 4475, + /// /// current_number_of_ice_golems /// - CurrentNumberOfIceGolems = 4475, - + CurrentNumberOfIceGolems = 4476, + /// /// current_number_of_lightning_golems /// - CurrentNumberOfLightningGolems = 4476, - + CurrentNumberOfLightningGolems = 4477, + /// /// current_number_of_stone_golems /// - CurrentNumberOfStoneGolems = 4477, - + CurrentNumberOfStoneGolems = 4478, + /// /// current_number_of_chaos_golems /// - CurrentNumberOfChaosGolems = 4478, - + CurrentNumberOfChaosGolems = 4479, + /// /// base_cold_immunity /// - BaseColdImmunity = 4479, - + BaseColdImmunity = 4480, + /// /// base_lightning_immunity /// - BaseLightningImmunity = 4480, - + BaseLightningImmunity = 4481, + /// /// gain_elemental_penetration_for_4_seconds_on_mine_detonation /// - GainElementalPenetrationFor4SecondsOnMineDetonation = 4481, - + GainElementalPenetrationFor4SecondsOnMineDetonation = 4482, + /// /// display_can_take_character_start_point /// - DisplayCanTakeCharacterStartPoint = 4482, - + DisplayCanTakeCharacterStartPoint = 4483, + /// /// fire_damage_immunity /// - FireDamageImmunity = 4483, - + FireDamageImmunity = 4484, + /// /// cold_damage_immunity /// - ColdDamageImmunity = 4484, - + ColdDamageImmunity = 4485, + /// /// lightning_damage_immunity /// - LightningDamageImmunity = 4485, - + LightningDamageImmunity = 4486, + /// /// chaos_damage_immunity /// - ChaosDamageImmunity = 4486, - + ChaosDamageImmunity = 4487, + /// /// elemental_damage_immunity /// - ElementalDamageImmunity = 4487, - + ElementalDamageImmunity = 4488, + /// /// global_total_minimum_added_lightning_damage /// - GlobalTotalMinimumAddedLightningDamage = 4488, - + GlobalTotalMinimumAddedLightningDamage = 4489, + /// /// global_total_maximum_added_lightning_damage /// - GlobalTotalMaximumAddedLightningDamage = 4489, - + GlobalTotalMaximumAddedLightningDamage = 4490, + /// /// have_killed_recently /// - HaveKilledRecently = 4490, - + HaveKilledRecently = 4491, + /// /// track_have_killed_recently /// - TrackHaveKilledRecently = 4491, - + TrackHaveKilledRecently = 4492, + /// /// number_of_times_have_been_hit_recently /// - NumberOfTimesHaveBeenHitRecently = 4492, - + NumberOfTimesHaveBeenHitRecently = 4493, + /// /// track_have_been_hit_recently /// - TrackHaveBeenHitRecently = 4493, - + TrackHaveBeenHitRecently = 4494, + /// /// have_crit_recently /// - HaveCritRecently = 4494, - + HaveCritRecently = 4495, + /// /// track_have_crit_recently /// - TrackHaveCritRecently = 4495, - + TrackHaveCritRecently = 4496, + /// /// base_body_armour_physical_damage_reduction_rating /// - BaseBodyArmourPhysicalDamageReductionRating = 4496, - + BaseBodyArmourPhysicalDamageReductionRating = 4497, + /// /// chance_to_grant_power_charge_to_nearby_allies_on_kill_% /// - ChanceToGrantPowerChargeToNearbyAlliesOnKillPct = 4497, - + ChanceToGrantPowerChargeToNearbyAlliesOnKillPct = 4498, + /// /// chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_% /// - ChanceToGrantFrenzyChargeToNearbyAlliesOnHitPct = 4498, - + ChanceToGrantFrenzyChargeToNearbyAlliesOnHitPct = 4499, + /// /// blood_rage_grants_additional_attack_speed_+% /// - BloodRageGrantsAdditionalAttackSpeedPct = 4499, - + BloodRageGrantsAdditionalAttackSpeedPct = 4500, + /// /// blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill /// - BloodRageGrantsAdditionalPctChanceToGainFrenzyOnKill = 4500, - + BloodRageGrantsAdditionalPctChanceToGainFrenzyOnKill = 4501, + /// /// play_tempestuous_steel_sounds /// - PlayTempestuousSteelSounds = 4501, - + PlayTempestuousSteelSounds = 4502, + /// /// from_totem_aura_damage_+%_final /// - FromTotemAuraDamagePctFinal = 4502, - + FromTotemAuraDamagePctFinal = 4503, + /// /// explode_enemies_for_25%_life_as_chaos_on_kill_chance_% /// - ExplodeEnemiesFor25PctLifeAsChaosOnKillChancePct = 4503, - + ExplodeEnemiesFor25PctLifeAsChaosOnKillChancePct = 4504, + /// /// explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_% /// - ExplodeCursedEnemiesFor25PctLifeAsChaosOnKillChancePct = 4504, - + ExplodeCursedEnemiesFor25PctLifeAsChaosOnKillChancePct = 4505, + /// /// base_minion_duration_+% /// - BaseMinionDurationPct = 4505, - + BaseMinionDurationPct = 4506, + /// /// skill_specific_minion_duration_+%_final /// - SkillSpecificMinionDurationPctFinal = 4506, - + SkillSpecificMinionDurationPctFinal = 4507, + /// /// base_chaos_golem_granted_buff_effect_+% /// - BaseChaosGolemGrantedBuffEffectPct = 4507, - + BaseChaosGolemGrantedBuffEffectPct = 4508, + /// /// base_stone_golem_granted_buff_effect_+% /// - BaseStoneGolemGrantedBuffEffectPct = 4508, - + BaseStoneGolemGrantedBuffEffectPct = 4509, + /// /// base_fire_golem_granted_buff_effect_+% /// - BaseFireGolemGrantedBuffEffectPct = 4509, - + BaseFireGolemGrantedBuffEffectPct = 4510, + /// /// base_ice_golem_granted_buff_effect_+% /// - BaseIceGolemGrantedBuffEffectPct = 4510, - + BaseIceGolemGrantedBuffEffectPct = 4511, + /// /// base_lightning_golem_granted_buff_effect_+% /// - BaseLightningGolemGrantedBuffEffectPct = 4511, - + BaseLightningGolemGrantedBuffEffectPct = 4512, + /// /// stone_golem_elemental_resistances_% /// - StoneGolemElementalResistancesPct = 4512, - + StoneGolemElementalResistancesPct = 4513, + /// /// dominating_blow_minion_damage_+% /// - DominatingBlowMinionDamagePct = 4513, - + DominatingBlowMinionDamagePct = 4514, + /// /// dominating_blow_skill_attack_damage_+% /// - DominatingBlowSkillAttackDamagePct = 4514, - + DominatingBlowSkillAttackDamagePct = 4515, + /// /// lightning_golem_elemental_resistances_% /// - LightningGolemElementalResistancesPct = 4515, - + LightningGolemElementalResistancesPct = 4516, + /// /// lightning_golem_damage_+% /// - LightningGolemDamagePct = 4516, - + LightningGolemDamagePct = 4517, + /// /// is_hindered /// - IsHindered = 4517, - + IsHindered = 4518, + /// /// damage_+%_vs_hindered_enemies /// - DamagePctVsHinderedEnemies = 4518, - + DamagePctVsHinderedEnemies = 4519, + /// /// blast_rain_number_of_blasts /// - BlastRainNumberOfBlasts = 4519, - + BlastRainNumberOfBlasts = 4520, + /// /// local_display_socketed_curse_gems_have_mana_reservation_+% /// - LocalDisplaySocketedCurseGemsHaveManaReservationPct = 4520, - + LocalDisplaySocketedCurseGemsHaveManaReservationPct = 4521, + /// /// bone_offering_block_chance_+% /// - BoneOfferingBlockChancePct = 4521, - + BoneOfferingBlockChancePct = 4522, + /// /// map_number_of_explicit_mods /// - MapNumberOfExplicitMods = 4522, - + MapNumberOfExplicitMods = 4523, + /// /// curse_orb_additional_height /// - CurseOrbAdditionalHeight = 4523, - + CurseOrbAdditionalHeight = 4524, + /// /// curse_orb_additional_radius /// - CurseOrbAdditionalRadius = 4524, - + CurseOrbAdditionalRadius = 4525, + /// /// phase_run_skill_effect_duration_+% /// - PhaseRunSkillEffectDurationPct = 4525, - + PhaseRunSkillEffectDurationPct = 4526, + /// /// lightning_tendrils_critical_strike_chance_+% /// - LightningTendrilsCriticalStrikeChancePct = 4526, - + LightningTendrilsCriticalStrikeChancePct = 4527, + /// /// searing_totem_elemental_resistance_+% /// - SearingTotemElementalResistancePct = 4527, - + SearingTotemElementalResistancePct = 4528, + /// /// flesh_offering_attack_speed_+% /// - FleshOfferingAttackSpeedPct = 4528, - + FleshOfferingAttackSpeedPct = 4529, + /// /// smoke_mine_base_movement_velocity_+% /// - SmokeMineBaseMovementVelocityPct = 4529, - + SmokeMineBaseMovementVelocityPct = 4530, + /// /// convocation_buff_effect_+% /// - ConvocationBuffEffectPct = 4530, - + ConvocationBuffEffectPct = 4531, + /// /// molten_shell_buff_effect_+% /// - MoltenShellBuffEffectPct = 4531, - + MoltenShellBuffEffectPct = 4532, + /// /// enduring_cry_buff_effect_+% /// - EnduringCryBuffEffectPct = 4532, - + EnduringCryBuffEffectPct = 4533, + /// /// righteous_fire_spell_damage_+% /// - RighteousFireSpellDamagePct = 4533, - + RighteousFireSpellDamagePct = 4534, + /// /// rallying_cry_buff_effect_+% /// - RallyingCryBuffEffectPct = 4534, - + RallyingCryBuffEffectPct = 4535, + /// /// attack_trigger_when_critically_hit_% /// - AttackTriggerWhenCriticallyHitPct = 4535, - + AttackTriggerWhenCriticallyHitPct = 4536, + /// /// cast_when_hit_% /// - CastWhenHitPct = 4536, - + CastWhenHitPct = 4537, + /// /// attack_trigger_when_hit_% /// - AttackTriggerWhenHitPct = 4537, - + AttackTriggerWhenHitPct = 4538, + /// /// attack_trigger_on_kill_% /// - AttackTriggerOnKillPct = 4538, - + AttackTriggerOnKillPct = 4539, + /// /// decrement_parent_counter_on_death /// - DecrementParentCounterOnDeath = 4539, - + DecrementParentCounterOnDeath = 4540, + /// /// minions_explode_on_death_for_%_max_life_at_end_of_duration /// - MinionsExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4540, - + MinionsExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4541, + /// /// explode_on_death_for_%_max_life_at_end_of_duration /// - ExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4541, - + ExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4542, + /// /// melee_ancestor_totem_damage_+% /// - MeleeAncestorTotemDamagePct = 4542, - + MeleeAncestorTotemDamagePct = 4543, + /// /// melee_ancestor_totem_placement_speed_+% /// - MeleeAncestorTotemPlacementSpeedPct = 4543, - + MeleeAncestorTotemPlacementSpeedPct = 4544, + /// /// melee_ancestor_totem_elemental_resistance_% /// - MeleeAncestorTotemElementalResistancePct = 4544, - + MeleeAncestorTotemElementalResistancePct = 4545, + /// /// blast_rain_%_chance_for_additional_blast /// - BlastRainPctChanceForAdditionalBlast = 4545, - + BlastRainPctChanceForAdditionalBlast = 4546, + /// /// perandus_chest_revive_targeted_monster /// - PerandusChestReviveTargetedMonster = 4546, - + PerandusChestReviveTargetedMonster = 4547, + /// /// current_difficulty /// - CurrentDifficulty = 4547, - + CurrentDifficulty = 4548, + /// /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_cruel /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInCruel = 4548, - + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInCruel = 4549, + /// /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_merciless /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInMerciless = 4549, - + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInMerciless = 4550, + /// /// kinetic_blast_%_chance_for_additional_blast /// - KineticBlastPctChanceForAdditionalBlast = 4550, - + KineticBlastPctChanceForAdditionalBlast = 4551, + /// /// share_charges_with_party_members_in_aura /// - ShareChargesWithPartyMembersInAura = 4551, - + ShareChargesWithPartyMembersInAura = 4552, + /// /// guardian_nearby_allies_share_charges /// - GuardianNearbyAlliesShareCharges = 4552, - + GuardianNearbyAlliesShareCharges = 4553, + /// /// bleed_duration_+% /// - BleedDurationPct = 4553, - + BleedDurationPct = 4554, + /// /// summoned_monsters_are_parented_to_my_parent /// - SummonedMonstersAreParentedToMyParent = 4554, - + SummonedMonstersAreParentedToMyParent = 4555, + /// /// monster_grants_no_experience_after_x_revives /// - MonsterGrantsNoExperienceAfterXRevives = 4555, - + MonsterGrantsNoExperienceAfterXRevives = 4556, + /// /// consecrate_ground_on_shatter_%_chance_for_3_seconds /// - ConsecrateGroundOnShatterPctChanceFor3Seconds = 4556, - + ConsecrateGroundOnShatterPctChanceFor3Seconds = 4557, + /// /// summoned_monsters_decrement_parent_counter /// - SummonedMonstersDecrementParentCounter = 4557, - + SummonedMonstersDecrementParentCounter = 4558, + /// /// skill_buff_effect_+% /// - SkillBuffEffectPct = 4558, - + SkillBuffEffectPct = 4559, + /// /// glows_in_area_with_unique_fish /// - GlowsInAreaWithUniqueFish = 4559, - + GlowsInAreaWithUniqueFish = 4560, + /// /// local_display_summon_raging_spirit_on_kill_% /// - LocalDisplaySummonRagingSpiritOnKillPct = 4560, - + LocalDisplaySummonRagingSpiritOnKillPct = 4561, + /// /// attacks_num_of_additional_chains /// - AttacksNumOfAdditionalChains = 4561, - + AttacksNumOfAdditionalChains = 4562, + /// /// monster_do_not_give_soul_to_soul_eater /// - MonsterDoNotGiveSoulToSoulEater = 4562, - + MonsterDoNotGiveSoulToSoulEater = 4563, + /// /// monster_grants_no_flask_charges /// - MonsterGrantsNoFlaskCharges = 4563, - + MonsterGrantsNoFlaskCharges = 4564, + /// /// used_teleports /// - UsedTeleports = 4564, - + UsedTeleports = 4565, + /// /// explosive_arrow_attack_speed_+% /// - ExplosiveArrowAttackSpeedPct = 4565, - + ExplosiveArrowAttackSpeedPct = 4566, + /// /// slam_ancestor_totem_grant_owner_melee_damage_+%_final /// - SlamAncestorTotemGrantOwnerMeleeDamagePctFinal = 4566, - + SlamAncestorTotemGrantOwnerMeleeDamagePctFinal = 4567, + /// /// slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+% /// - SlashAncestorTotemGrantOwnerPhysicalDamageAddedAsFirePct = 4567, - + SlashAncestorTotemGrantOwnerPhysicalDamageAddedAsFirePct = 4568, + /// /// slam_ancestor_totem_granted_melee_damage_+%_final /// - SlamAncestorTotemGrantedMeleeDamagePctFinal = 4568, - + SlamAncestorTotemGrantedMeleeDamagePctFinal = 4569, + /// /// perandus_chest_spawned_bosses /// - PerandusChestSpawnedBosses = 4569, - + PerandusChestSpawnedBosses = 4570, + /// /// lightning_damage_+%_per_10_intelligence /// - LightningDamagePctPer10Intelligence = 4570, - + LightningDamagePctPer10Intelligence = 4571, + /// /// shield_charge_range_+% /// - ShieldChargeRangePct = 4571, - + ShieldChargeRangePct = 4572, + /// /// local_maim_on_hit /// - LocalMaimOnHit = 4572, - + LocalMaimOnHit = 4573, + /// /// main_hand_maim_on_hit /// - MainHandMaimOnHit = 4573, - + MainHandMaimOnHit = 4574, + /// /// off_hand_maim_on_hit /// - OffHandMaimOnHit = 4574, - + OffHandMaimOnHit = 4575, + /// /// warcries_cost_no_mana /// - WarcriesCostNoMana = 4575, - + WarcriesCostNoMana = 4576, + /// /// is_on_ground_maelstrom /// - IsOnGroundMaelstrom = 4576, - + IsOnGroundMaelstrom = 4577, + /// /// gain_a_power_charge_when_you_or_your_totems_kill_%_chance /// - GainAPowerChargeWhenYouOrYourTotemsKillPctChance = 4577, - + GainAPowerChargeWhenYouOrYourTotemsKillPctChance = 4578, + /// /// give_parent_power_charge_on_kill_%_chance /// - GiveParentPowerChargeOnKillPctChance = 4578, - + GiveParentPowerChargeOnKillPctChance = 4579, + /// /// buff_visuals_show_while_hidden_override /// - BuffVisualsShowWhileHiddenOverride = 4579, - + BuffVisualsShowWhileHiddenOverride = 4580, + /// /// always_pierce /// - AlwaysPierce = 4580, - + AlwaysPierce = 4581, + /// /// always_crit_shocked_enemies /// - AlwaysCritShockedEnemies = 4581, - + AlwaysCritShockedEnemies = 4582, + /// /// cannot_crit_non_shocked_enemies /// - CannotCritNonShockedEnemies = 4582, - + CannotCritNonShockedEnemies = 4583, + /// /// map_prophecy /// - MapProphecy = 4583, - + MapProphecy = 4584, + /// /// frost_bolt_damage_+% /// - FrostBoltDamagePct = 4584, - + FrostBoltDamagePct = 4585, + /// /// frost_bolt_nova_damage_+% /// - FrostBoltNovaDamagePct = 4585, - + FrostBoltNovaDamagePct = 4586, + /// /// double_slash_damage_+% /// - DoubleSlashDamagePct = 4586, - + DoubleSlashDamagePct = 4587, + /// /// charged_attack_damage_+% /// - ChargedAttackDamagePct = 4587, - + ChargedAttackDamagePct = 4588, + /// /// slam_ancestor_totem_damage_+% /// - SlamAncestorTotemDamagePct = 4588, - + SlamAncestorTotemDamagePct = 4589, + /// /// slash_ancestor_totem_damage_+% /// - SlashAncestorTotemDamagePct = 4589, - + SlashAncestorTotemDamagePct = 4590, + /// /// slash_ancestor_totem_radius_+% /// - SlashAncestorTotemRadiusPct = 4590, - + SlashAncestorTotemRadiusPct = 4591, + /// /// slam_ancestor_totem_radius_+% /// - SlamAncestorTotemRadiusPct = 4591, - + SlamAncestorTotemRadiusPct = 4592, + /// /// frost_bolt_nova_radius_+% /// - FrostBoltNovaRadiusPct = 4592, - + FrostBoltNovaRadiusPct = 4593, + /// /// double_slash_critical_strike_chance_+% /// - DoubleSlashCriticalStrikeChancePct = 4593, - + DoubleSlashCriticalStrikeChancePct = 4594, + /// /// charged_attack_radius_+% /// - ChargedAttackRadiusPct = 4594, - + ChargedAttackRadiusPct = 4595, + /// /// double_slash_radius_+% /// - DoubleSlashRadiusPct = 4595, - + DoubleSlashRadiusPct = 4596, + /// /// charged_attack_damage_per_stack_+%_final /// - ChargedAttackDamagePerStackPctFinal = 4596, - + ChargedAttackDamagePerStackPctFinal = 4597, + /// /// %_of_life_and_energy_shield_to_take_as_damage_on_using_a_movement_skill /// - PctOfLifeAndEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4597, - + PctOfLifeAndEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4598, + /// /// remove_%_of_targets_current_flask_charges_on_hit /// - RemovePctOfTargetsCurrentFlaskChargesOnHit = 4598, - + RemovePctOfTargetsCurrentFlaskChargesOnHit = 4599, + /// /// virtual_reduce_enemy_cold_resistance_with_weapons_% /// - VirtualReduceEnemyColdResistanceWithWeaponsPct = 4599, - + VirtualReduceEnemyColdResistanceWithWeaponsPct = 4600, + /// /// virtual_reduce_enemy_fire_resistance_with_weapons_% /// - VirtualReduceEnemyFireResistanceWithWeaponsPct = 4600, - + VirtualReduceEnemyFireResistanceWithWeaponsPct = 4601, + /// /// virtual_reduce_enemy_lightning_resistance_with_weapons_% /// - VirtualReduceEnemyLightningResistanceWithWeaponsPct = 4601, - + VirtualReduceEnemyLightningResistanceWithWeaponsPct = 4602, + /// /// minions_%_chance_to_blind_on_hit /// - MinionsPctChanceToBlindOnHit = 4602, - + MinionsPctChanceToBlindOnHit = 4603, + /// /// minions_cannot_be_blinded /// - MinionsCannotBeBlinded = 4603, - + MinionsCannotBeBlinded = 4604, + /// /// display_socketed_minion_gems_supported_by_level_X_life_leech /// - DisplaySocketedMinionGemsSupportedByLevelXLifeLeech = 4604, - + DisplaySocketedMinionGemsSupportedByLevelXLifeLeech = 4605, + /// /// magic_items_drop_identified /// - MagicItemsDropIdentified = 4605, - + MagicItemsDropIdentified = 4606, + /// /// number_of_stackable_unique_jewels /// - NumberOfStackableUniqueJewels = 4606, - + NumberOfStackableUniqueJewels = 4607, + /// /// X_mana_per_stackable_unique_jewel /// - XManaPerStackableUniqueJewel = 4607, - + XManaPerStackableUniqueJewel = 4608, + /// /// X_armour_per_stackable_unique_jewel /// - XArmourPerStackableUniqueJewel = 4608, - + XArmourPerStackableUniqueJewel = 4609, + /// /// elemental_damage_+%_per_stackable_unique_jewel /// - ElementalDamagePctPerStackableUniqueJewel = 4609, - + ElementalDamagePctPerStackableUniqueJewel = 4610, + /// /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_normal /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInNormal = 4610, - + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInNormal = 4611, + /// /// projectile_uses_contact_position /// - ProjectileUsesContactPosition = 4611, - + ProjectileUsesContactPosition = 4612, + /// /// skeletal_chains_aoe_%_health_dealt_as_chaos_damage /// - SkeletalChainsAoePctHealthDealtAsChaosDamage = 4612, - + SkeletalChainsAoePctHealthDealtAsChaosDamage = 4613, + /// /// virtual_number_of_inca_minions_allowed /// - VirtualNumberOfIncaMinionsAllowed = 4613, - + VirtualNumberOfIncaMinionsAllowed = 4614, + /// /// virtual_number_of_insects_allowed /// - VirtualNumberOfInsectsAllowed = 4614, - + VirtualNumberOfInsectsAllowed = 4615, + /// /// virtual_number_of_taniwha_tails_allowed /// - VirtualNumberOfTaniwhaTailsAllowed = 4615, - + VirtualNumberOfTaniwhaTailsAllowed = 4616, + /// /// virtual_number_of_wolves_allowed /// - VirtualNumberOfWolvesAllowed = 4616, - + VirtualNumberOfWolvesAllowed = 4617, + /// /// you_cannot_have_non_golem_minions /// - YouCannotHaveNonGolemMinions = 4617, - + YouCannotHaveNonGolemMinions = 4618, + /// /// lightning_damage_%_taken_from_mana_before_life /// - LightningDamagePctTakenFromManaBeforeLife = 4618, - + LightningDamagePctTakenFromManaBeforeLife = 4619, + /// /// recover_%_maximum_mana_when_enemy_shocked /// - RecoverPctMaximumManaWhenEnemyShocked = 4619, - + RecoverPctMaximumManaWhenEnemyShocked = 4620, + /// /// ground_caustic_art_variation /// - GroundCausticArtVariation = 4620, - + GroundCausticArtVariation = 4621, + /// /// global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad /// - GlobalLifeLeechFromPhysicalAttackDamagePerRedSocketOnItemPermyriad = 4621, - + GlobalLifeLeechFromPhysicalAttackDamagePerRedSocketOnItemPermyriad = 4622, + /// /// spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently /// - SpellDodgeChancePctIfYouHaveTakenAttackDamageRecently = 4622, - + SpellDodgeChancePctIfYouHaveTakenAttackDamageRecently = 4623, + /// /// dodge_chance_+%_if_you_have_taken_spell_damage_recently /// - DodgeChancePctIfYouHaveTakenSpellDamageRecently = 4623, - + DodgeChancePctIfYouHaveTakenSpellDamageRecently = 4624, + /// /// quantity_of_items_dropped_by_maimed_enemies_+% /// - QuantityOfItemsDroppedByMaimedEnemiesPct = 4624, - + QuantityOfItemsDroppedByMaimedEnemiesPct = 4625, + /// /// rarity_of_items_dropped_by_maimed_enemies_+% /// - RarityOfItemsDroppedByMaimedEnemiesPct = 4625, - + RarityOfItemsDroppedByMaimedEnemiesPct = 4626, + /// /// damage_taken_+%_if_you_have_taken_a_savage_hit_recently /// - DamageTakenPctIfYouHaveTakenASavageHitRecently = 4626, - + DamageTakenPctIfYouHaveTakenASavageHitRecently = 4627, + /// /// is_maimed /// - IsMaimed = 4627, - + IsMaimed = 4628, + /// /// track_have_been_savage_hit_recently /// - TrackHaveBeenSavageHitRecently = 4628, - + TrackHaveBeenSavageHitRecently = 4629, + /// /// have_been_savage_hit_recently /// - HaveBeenSavageHitRecently = 4629, - + HaveBeenSavageHitRecently = 4630, + /// /// track_have_taken_attack_damage_recently /// - TrackHaveTakenAttackDamageRecently = 4630, - + TrackHaveTakenAttackDamageRecently = 4631, + /// /// have_taken_attack_damage_recently /// - HaveTakenAttackDamageRecently = 4631, - + HaveTakenAttackDamageRecently = 4632, + /// /// track_have_taken_spell_damage_recently /// - TrackHaveTakenSpellDamageRecently = 4632, - + TrackHaveTakenSpellDamageRecently = 4633, + /// /// have_taken_spell_damage_recently /// - HaveTakenSpellDamageRecently = 4633, - + HaveTakenSpellDamageRecently = 4634, + /// /// stun_duration_on_self_+% /// - StunDurationOnSelfPct = 4634, - + StunDurationOnSelfPct = 4635, + /// /// melee_damage_+%_per_endurance_charge /// - MeleeDamagePctPerEnduranceCharge = 4635, - + MeleeDamagePctPerEnduranceCharge = 4636, + /// /// totems_resist_all_elements_+%_per_active_totem /// - TotemsResistAllElementsPctPerActiveTotem = 4636, - + TotemsResistAllElementsPctPerActiveTotem = 4637, + /// /// summon_your_maximum_number_of_totems_in_formation /// - SummonYourMaximumNumberOfTotemsInFormation = 4637, - + SummonYourMaximumNumberOfTotemsInFormation = 4638, + /// /// gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit /// - GainLifeRegenerationPctPerSecondFor1SecondIfTakenSavageHit = 4638, - + GainLifeRegenerationPctPerSecondFor1SecondIfTakenSavageHit = 4639, + /// /// maximum_life_%_to_add_as_maximum_energy_shield /// - MaximumLifePctToAddAsMaximumEnergyShield = 4639, - + MaximumLifePctToAddAsMaximumEnergyShield = 4640, + /// /// total_base_maximum_life /// - TotalBaseMaximumLife = 4640, - + TotalBaseMaximumLife = 4641, + /// /// combined_life_+% /// - CombinedLifePct = 4641, - + CombinedLifePct = 4642, + /// /// combined_life_+%_final /// - CombinedLifePctFinal = 4642, - + CombinedLifePctFinal = 4643, + /// /// cannot_be_shocked_while_at_maximum_endurance_charges /// - CannotBeShockedWhileAtMaximumEnduranceCharges = 4643, - + CannotBeShockedWhileAtMaximumEnduranceCharges = 4644, + /// /// movement_speed_+%_if_used_a_warcry_recently /// - MovementSpeedPctIfUsedAWarcryRecently = 4644, - + MovementSpeedPctIfUsedAWarcryRecently = 4645, + /// /// mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies /// - ManaLeechFromAttackDamagePermyriadVsPoisonedEnemies = 4645, - + ManaLeechFromAttackDamagePermyriadVsPoisonedEnemies = 4646, + /// /// have_used_a_warcry_recently /// - HaveUsedAWarcryRecently = 4646, - + HaveUsedAWarcryRecently = 4647, + /// /// track_have_used_a_warcry_recently /// - TrackHaveUsedAWarcryRecently = 4647, - + TrackHaveUsedAWarcryRecently = 4648, + /// /// totems_spells_cast_speed_+%_per_active_totem /// - TotemsSpellsCastSpeedPctPerActiveTotem = 4648, - + TotemsSpellsCastSpeedPctPerActiveTotem = 4649, + /// /// movement_skills_mana_cost_+% /// - MovementSkillsManaCostPct = 4649, - + MovementSkillsManaCostPct = 4650, + /// /// global_critical_strike_mulitplier_+_per_green_socket_on_item /// - GlobalCriticalStrikeMulitplierPerGreenSocketOnItem = 4650, - + GlobalCriticalStrikeMulitplierPerGreenSocketOnItem = 4651, + /// /// additional_block_chance_%_when_in_off_hand /// - AdditionalBlockChancePctWhenInOffHand = 4651, - + AdditionalBlockChancePctWhenInOffHand = 4652, + /// /// critical_strike_chance_+%_when_in_main_hand /// - CriticalStrikeChancePctWhenInMainHand = 4652, - + CriticalStrikeChancePctWhenInMainHand = 4653, + /// /// spirit_offering_duration_+% /// - SpiritOfferingDurationPct = 4653, - + SpiritOfferingDurationPct = 4654, + /// /// spirit_offering_physical_damage_%_to_add_as_chaos /// - SpiritOfferingPhysicalDamagePctToAddAsChaos = 4654, - + SpiritOfferingPhysicalDamagePctToAddAsChaos = 4655, + /// /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_normal /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInNormal = 4655, - + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInNormal = 4656, + /// /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_normal /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInNormal = 4656, - + BaseFireDamagePctOfMaximumEsTakenPerMinuteInNormal = 4657, + /// /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_cruel /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInCruel = 4657, - + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInCruel = 4658, + /// /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_cruel /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInCruel = 4658, - + BaseFireDamagePctOfMaximumEsTakenPerMinuteInCruel = 4659, + /// /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_merciless /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInMerciless = 4659, - + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInMerciless = 4660, + /// /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_merciless /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInMerciless = 4660, - + BaseFireDamagePctOfMaximumEsTakenPerMinuteInMerciless = 4661, + /// /// %_of_life_to_deal_as_damage /// - PctOfLifeToDealAsDamage = 4661, - + PctOfLifeToDealAsDamage = 4662, + /// /// %_of_es_to_deal_as_damage /// - PctOfEsToDealAsDamage = 4662, - + PctOfEsToDealAsDamage = 4663, + /// /// %_of_life_to_take_as_damage_on_using_a_movement_skill /// - PctOfLifeToTakeAsDamageOnUsingAMovementSkill = 4663, - + PctOfLifeToTakeAsDamageOnUsingAMovementSkill = 4664, + /// /// %_of_energy_shield_to_take_as_damage_on_using_a_movement_skill /// - PctOfEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4664, - + PctOfEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4665, + /// /// %_of_life_to_deal_as_damage_on_using_a_movement_skill /// - PctOfLifeToDealAsDamageOnUsingAMovementSkill = 4665, - + PctOfLifeToDealAsDamageOnUsingAMovementSkill = 4666, + /// /// %_of_energy_shield_to_deal_as_damage_on_using_a_movement_skill /// - PctOfEnergyShieldToDealAsDamageOnUsingAMovementSkill = 4666, - + PctOfEnergyShieldToDealAsDamageOnUsingAMovementSkill = 4667, + /// /// local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect /// - LocalUniqueOverflowingChaliceFlaskCannotGainFlaskChargesDuringFlaskEffect = 4667, - + LocalUniqueOverflowingChaliceFlaskCannotGainFlaskChargesDuringFlaskEffect = 4668, + /// /// using_flask_overflowing_chalice /// - UsingFlaskOverflowingChalice = 4668, - + UsingFlaskOverflowingChalice = 4669, + /// /// cannot_be_chained_from /// - CannotBeChainedFrom = 4669, - + CannotBeChainedFrom = 4670, + /// /// damage_taken_+%_if_not_hit_recently_final /// - DamageTakenPctIfNotHitRecentlyFinal = 4670, - + DamageTakenPctIfNotHitRecentlyFinal = 4671, + /// /// evasion_+%_if_hit_recently /// - EvasionPctIfHitRecently = 4671, - + EvasionPctIfHitRecently = 4672, + /// /// cast_socketed_spells_on_X_mana_spent /// - CastSocketedSpellsOnXManaSpent = 4672, - + CastSocketedSpellsOnXManaSpent = 4673, + /// /// cast_socketed_spells_on_mana_spent_%_chance /// - CastSocketedSpellsOnManaSpentPctChance = 4673, - + CastSocketedSpellsOnManaSpentPctChance = 4674, + /// /// block_chance_%_vs_taunted_enemies /// - BlockChancePctVsTauntedEnemies = 4674, - + BlockChancePctVsTauntedEnemies = 4675, + /// /// minion_cold_damage_resistance_% /// - MinionColdDamageResistancePct = 4675, - + MinionColdDamageResistancePct = 4676, + /// /// minion_physical_damage_%_to_add_as_cold /// - MinionPhysicalDamagePctToAddAsCold = 4676, - + MinionPhysicalDamagePctToAddAsCold = 4677, + /// /// armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently /// - ArmourAndEvasionRatingPctIfKilledATauntedEnemyRecently = 4677, - + ArmourAndEvasionRatingPctIfKilledATauntedEnemyRecently = 4678, + /// /// have_killed_a_taunted_enemy_recently /// - HaveKilledATauntedEnemyRecently = 4678, - + HaveKilledATauntedEnemyRecently = 4679, + /// /// map_owner_master_exp_favour_+% /// - MapOwnerMasterExpFavourPct = 4679, - + MapOwnerMasterExpFavourPct = 4680, + /// /// support_cast_on_mana_spent /// - SupportCastOnManaSpent = 4680, - + SupportCastOnManaSpent = 4681, + /// /// num_of_additional_chains_at_max_frenzy_charges /// - NumOfAdditionalChainsAtMaxFrenzyCharges = 4681, - + NumOfAdditionalChainsAtMaxFrenzyCharges = 4682, + /// /// critical_strikes_do_not_always_freeze /// - CriticalStrikesDoNotAlwaysFreeze = 4682, - + CriticalStrikesDoNotAlwaysFreeze = 4683, + /// /// damage_+%_for_each_level_the_enemy_is_higher_than_you /// - DamagePctForEachLevelTheEnemyIsHigherThanYou = 4683, - + DamagePctForEachLevelTheEnemyIsHigherThanYou = 4684, + /// /// local_unique_flask_charges_gained_+%_during_flask_effect /// - LocalUniqueFlaskChargesGainedPctDuringFlaskEffect = 4684, - + LocalUniqueFlaskChargesGainedPctDuringFlaskEffect = 4685, + /// /// gain_phasing_for_4_seconds_on_begin_es_recharge /// - GainPhasingFor4SecondsOnBeginEsRecharge = 4685, - + GainPhasingFor4SecondsOnBeginEsRecharge = 4686, + /// /// chance_to_dodge_attacks_%_while_phasing /// - ChanceToDodgeAttacksPctWhilePhasing = 4686, - + ChanceToDodgeAttacksPctWhilePhasing = 4687, + /// /// item_found_rarity_+%_while_phasing /// - ItemFoundRarityPctWhilePhasing = 4687, - + ItemFoundRarityPctWhilePhasing = 4688, + /// /// hexproof /// - Hexproof = 4688, - + Hexproof = 4689, + /// /// map_monsters_are_hexproof /// - MapMonstersAreHexproof = 4689, - + MapMonstersAreHexproof = 4690, + /// /// ignore_hexproof /// - IgnoreHexproof = 4690, - + IgnoreHexproof = 4691, + /// /// totems_attack_speed_+%_per_active_totem /// - TotemsAttackSpeedPctPerActiveTotem = 4691, - + TotemsAttackSpeedPctPerActiveTotem = 4692, + /// /// attacks_num_of_additional_chains_when_in_main_hand /// - AttacksNumOfAdditionalChainsWhenInMainHand = 4692, - + AttacksNumOfAdditionalChainsWhenInMainHand = 4693, + /// /// attacks_number_of_additional_projectiles /// - AttacksNumberOfAdditionalProjectiles = 4693, - + AttacksNumberOfAdditionalProjectiles = 4694, + /// /// attacks_number_of_additional_projectiles_when_in_off_hand /// - AttacksNumberOfAdditionalProjectilesWhenInOffHand = 4694, - + AttacksNumberOfAdditionalProjectilesWhenInOffHand = 4695, + /// /// counter_attacks_minimum_added_physical_damage /// - CounterAttacksMinimumAddedPhysicalDamage = 4695, - + CounterAttacksMinimumAddedPhysicalDamage = 4696, + /// /// counter_attacks_maximum_added_physical_damage /// - CounterAttacksMaximumAddedPhysicalDamage = 4696, - + CounterAttacksMaximumAddedPhysicalDamage = 4697, + /// /// golem_damage_+%_per_active_golem_type /// - GolemDamagePctPerActiveGolemType = 4697, - + GolemDamagePctPerActiveGolemType = 4698, + /// /// life_+%_with_no_corrupted_equipped_items /// - LifePctWithNoCorruptedEquippedItems = 4698, - + LifePctWithNoCorruptedEquippedItems = 4699, + /// /// life_regeneration_per_minute_with_no_corrupted_equipped_items /// - LifeRegenerationPerMinuteWithNoCorruptedEquippedItems = 4699, - + LifeRegenerationPerMinuteWithNoCorruptedEquippedItems = 4700, + /// /// energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items /// - EnergyShieldRechargeRatePerMinuteWithAllCorruptedEquippedItems = 4700, - + EnergyShieldRechargeRatePerMinuteWithAllCorruptedEquippedItems = 4701, + /// /// local_display_nearby_enemies_take_X_chaos_damage_per_minute /// - LocalDisplayNearbyEnemiesTakeXChaosDamagePerMinute = 4701, - + LocalDisplayNearbyEnemiesTakeXChaosDamagePerMinute = 4702, + /// /// number_of_equipped_items /// - NumberOfEquippedItems = 4702, - + NumberOfEquippedItems = 4703, + /// /// virtual_mana_leech_from_any_damage_permyriad /// - VirtualManaLeechFromAnyDamagePermyriad = 4703, - + VirtualManaLeechFromAnyDamagePermyriad = 4704, + /// /// virtual_current_number_of_golem_types /// - VirtualCurrentNumberOfGolemTypes = 4704, - + VirtualCurrentNumberOfGolemTypes = 4705, + /// /// local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation /// - LocalDisplaySocketedSkillsSummonYourMaximumNumberOfTotemsInFormation = 4705, - + LocalDisplaySocketedSkillsSummonYourMaximumNumberOfTotemsInFormation = 4706, + /// /// energy_shield_regeneration_rate_per_minute_%_while_on_low_life /// - EnergyShieldRegenerationRatePerMinutePctWhileOnLowLife = 4706, - + EnergyShieldRegenerationRatePerMinutePctWhileOnLowLife = 4707, + /// /// counter_attacks_minimum_added_cold_damage /// - CounterAttacksMinimumAddedColdDamage = 4707, - + CounterAttacksMinimumAddedColdDamage = 4708, + /// /// counter_attacks_maximum_added_cold_damage /// - CounterAttacksMaximumAddedColdDamage = 4708, - + CounterAttacksMaximumAddedColdDamage = 4709, + /// /// movement_speed_+%_if_pierced_recently /// - MovementSpeedPctIfPiercedRecently = 4709, - + MovementSpeedPctIfPiercedRecently = 4710, + /// /// have_pierced_recently /// - HavePiercedRecently = 4710, - + HavePiercedRecently = 4711, + /// /// track_have_pierced_recently /// - TrackHavePiercedRecently = 4711, - + TrackHavePiercedRecently = 4712, + /// /// item_found_quantity_+%_if_wearing_a_magic_item /// - ItemFoundQuantityPctIfWearingAMagicItem = 4712, - + ItemFoundQuantityPctIfWearingAMagicItem = 4713, + /// /// item_found_rarity_+%_if_wearing_a_normal_item /// - ItemFoundRarityPctIfWearingANormalItem = 4713, - + ItemFoundRarityPctIfWearingANormalItem = 4714, + /// /// number_of_equipped_normal_items /// - NumberOfEquippedNormalItems = 4714, - + NumberOfEquippedNormalItems = 4715, + /// /// poison_cursed_enemies_on_hit /// - PoisonCursedEnemiesOnHit = 4715, - + PoisonCursedEnemiesOnHit = 4716, + /// /// base_fire_damage_%_to_convert_to_chaos_60%_value /// - BaseFireDamagePctToConvertToChaos60PctValue = 4716, - + BaseFireDamagePctToConvertToChaos60PctValue = 4717, + /// /// base_lightning_damage_%_to_convert_to_chaos_60%_value /// - BaseLightningDamagePctToConvertToChaos60PctValue = 4717, - + BaseLightningDamagePctToConvertToChaos60PctValue = 4718, + /// /// gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster /// - GainOnslaughtForXMsOnKillingRareOrUniqueMonster = 4718, - + GainOnslaughtForXMsOnKillingRareOrUniqueMonster = 4719, + /// /// kill_enemy_on_hit_if_under_20%_life /// - KillEnemyOnHitIfUnder20PctLife = 4719, - + KillEnemyOnHitIfUnder20PctLife = 4720, + /// /// immune_to_bleeding_while_leeching /// - ImmuneToBleedingWhileLeeching = 4720, - + ImmuneToBleedingWhileLeeching = 4721, + /// /// damage_+%_if_enemy_killed_recently_final /// - DamagePctIfEnemyKilledRecentlyFinal = 4721, - + DamagePctIfEnemyKilledRecentlyFinal = 4722, + /// /// skill_area_of_effect_+%_if_enemy_killed_recently /// - SkillAreaOfEffectPctIfEnemyKilledRecently = 4722, - + SkillAreaOfEffectPctIfEnemyKilledRecently = 4723, + /// /// virtual_immune_to_bleeding /// - VirtualImmuneToBleeding = 4723, - + VirtualImmuneToBleeding = 4724, + /// /// have_killed_a_maimed_enemy_recently /// - HaveKilledAMaimedEnemyRecently = 4724, - + HaveKilledAMaimedEnemyRecently = 4725, + /// /// track_have_killed_a_maimed_enemy_recently /// - TrackHaveKilledAMaimedEnemyRecently = 4725, - + TrackHaveKilledAMaimedEnemyRecently = 4726, + /// /// skill_effect_duration_+%_if_killed_maimed_enemy_recently /// - SkillEffectDurationPctIfKilledMaimedEnemyRecently = 4726, - + SkillEffectDurationPctIfKilledMaimedEnemyRecently = 4727, + /// /// have_taunted_an_enemy_recently /// - HaveTauntedAnEnemyRecently = 4727, - + HaveTauntedAnEnemyRecently = 4728, + /// /// track_have_taunted_an_enemy_recently /// - TrackHaveTauntedAnEnemyRecently = 4728, - + TrackHaveTauntedAnEnemyRecently = 4729, + /// /// damage_taken_+%_if_taunted_an_enemy_recently /// - DamageTakenPctIfTauntedAnEnemyRecently = 4729, - + DamageTakenPctIfTauntedAnEnemyRecently = 4730, + /// /// life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently /// - LifeRegenerationRatePerMinutePctIfTauntedAnEnemyRecently = 4730, - + LifeRegenerationRatePerMinutePctIfTauntedAnEnemyRecently = 4731, + /// /// immune_to_elemental_status_ailments_during_flask_effect /// - ImmuneToElementalStatusAilmentsDuringFlaskEffect = 4731, - + ImmuneToElementalStatusAilmentsDuringFlaskEffect = 4732, + /// /// elemental_damage_+%_during_flask_effect /// - ElementalDamagePctDuringFlaskEffect = 4732, - + ElementalDamagePctDuringFlaskEffect = 4733, + /// /// chance_to_freeze_shock_ignite_%_during_flask_effect /// - ChanceToFreezeShockIgnitePctDuringFlaskEffect = 4733, - + ChanceToFreezeShockIgnitePctDuringFlaskEffect = 4734, + /// /// summoned_monster_types_arent_duplicated /// - SummonedMonsterTypesArentDuplicated = 4734, - + SummonedMonsterTypesArentDuplicated = 4735, + /// /// slash_ancestor_totem_elemental_resistance_% /// - SlashAncestorTotemElementalResistancePct = 4735, - + SlashAncestorTotemElementalResistancePct = 4736, + /// /// melee_ancestor_totem_grant_owner_attack_speed_+% /// - MeleeAncestorTotemGrantOwnerAttackSpeedPct = 4736, - + MeleeAncestorTotemGrantOwnerAttackSpeedPct = 4737, + /// /// slam_ancestor_totem_grant_owner_melee_damage_+% /// - SlamAncestorTotemGrantOwnerMeleeDamagePct = 4737, - + SlamAncestorTotemGrantOwnerMeleeDamagePct = 4738, + /// /// frost_bolt_cast_speed_+% /// - FrostBoltCastSpeedPct = 4738, - + FrostBoltCastSpeedPct = 4739, + /// /// frost_bolt_freeze_chance_% /// - FrostBoltFreezeChancePct = 4739, - + FrostBoltFreezeChancePct = 4740, + /// /// frost_bolt_nova_duration_+% /// - FrostBoltNovaDurationPct = 4740, - + FrostBoltNovaDurationPct = 4741, + /// /// chest_drop_additional_fire_warband_uniques /// - ChestDropAdditionalFireWarbandUniques = 4741, - + ChestDropAdditionalFireWarbandUniques = 4742, + /// /// chest_drop_additional_cold_warband_uniques /// - ChestDropAdditionalColdWarbandUniques = 4742, - + ChestDropAdditionalColdWarbandUniques = 4743, + /// /// chest_drop_additional_lightning_warband_uniques /// - ChestDropAdditionalLightningWarbandUniques = 4743, - + ChestDropAdditionalLightningWarbandUniques = 4744, + /// /// chest_drop_additional_chaos_warband_uniques /// - ChestDropAdditionalChaosWarbandUniques = 4744, - + ChestDropAdditionalChaosWarbandUniques = 4745, + /// /// weapons_drop_animated /// - WeaponsDropAnimated = 4745, - + WeaponsDropAnimated = 4746, + /// /// es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground /// - EsAndManaRegenerationRatePerMinutePctWhileOnConsecratedGround = 4746, - + EsAndManaRegenerationRatePerMinutePctWhileOnConsecratedGround = 4747, + /// /// attack_and_cast_speed_+%_while_on_consecrated_ground /// - AttackAndCastSpeedPctWhileOnConsecratedGround = 4747, - + AttackAndCastSpeedPctWhileOnConsecratedGround = 4748, + /// /// chest_display_summons_fire_warband /// - ChestDisplaySummonsFireWarband = 4748, - + ChestDisplaySummonsFireWarband = 4749, + /// /// chest_display_summons_cold_warband /// - ChestDisplaySummonsColdWarband = 4749, - + ChestDisplaySummonsColdWarband = 4750, + /// /// chest_display_summons_lightning_warband /// - ChestDisplaySummonsLightningWarband = 4750, - + ChestDisplaySummonsLightningWarband = 4751, + /// /// chest_display_summons_chaos_warband /// - ChestDisplaySummonsChaosWarband = 4751, - + ChestDisplaySummonsChaosWarband = 4752, + /// /// is_dominated /// - IsDominated = 4752, - + IsDominated = 4753, + /// /// blast_rain_arrow_delay_ms /// - BlastRainArrowDelayMs = 4753, - + BlastRainArrowDelayMs = 4754, + /// /// additional_block_chance_%_for_1_second_every_5_seconds /// - AdditionalBlockChancePctFor1SecondEvery5Seconds = 4754, - + AdditionalBlockChancePctFor1SecondEvery5Seconds = 4755, + /// /// mine_arming_speed_+% /// - MineArmingSpeedPct = 4755, - + MineArmingSpeedPct = 4756, + /// /// flasks_%_chance_to_not_consume_charges /// - FlasksPctChanceToNotConsumeCharges = 4756, - + FlasksPctChanceToNotConsumeCharges = 4757, + /// /// critical_strike_chance_+%_vs_bleeding_enemies /// - CriticalStrikeChancePctVsBleedingEnemies = 4757, - + CriticalStrikeChancePctVsBleedingEnemies = 4758, + /// /// physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit /// - PhysicalDamagePctFor4SecondsWhenYouBlockAUniqueEnemyHit = 4758, - + PhysicalDamagePctFor4SecondsWhenYouBlockAUniqueEnemyHit = 4759, + /// /// your_consecrated_ground_grants_damage_+% /// - YourConsecratedGroundGrantsDamagePct = 4759, - + YourConsecratedGroundGrantsDamagePct = 4760, + /// /// attack_speed_+%_if_enemy_not_killed_recently /// - AttackSpeedPctIfEnemyNotKilledRecently = 4760, - + AttackSpeedPctIfEnemyNotKilledRecently = 4761, + /// /// physical_damage_+%_while_at_maximum_frenzy_charges_final /// - PhysicalDamagePctWhileAtMaximumFrenzyChargesFinal = 4761, - + PhysicalDamagePctWhileAtMaximumFrenzyChargesFinal = 4762, + /// /// physical_damage_taken_+%_while_at_maximum_endurance_charges /// - PhysicalDamageTakenPctWhileAtMaximumEnduranceCharges = 4762, - + PhysicalDamageTakenPctWhileAtMaximumEnduranceCharges = 4763, + /// /// totem_damage_leeched_as_life_to_you_permyriad /// - TotemDamageLeechedAsLifeToYouPermyriad = 4763, - + TotemDamageLeechedAsLifeToYouPermyriad = 4764, + /// /// damage_leeched_as_life_to_parent_permyriad /// - DamageLeechedAsLifeToParentPermyriad = 4764, - + DamageLeechedAsLifeToParentPermyriad = 4765, + /// /// attack_speed_+%_per_200_accuracy_rating /// - AttackSpeedPctPer200AccuracyRating = 4765, - + AttackSpeedPctPer200AccuracyRating = 4766, + /// /// gain_phasing_while_at_maximum_frenzy_charges /// - GainPhasingWhileAtMaximumFrenzyCharges = 4766, - + GainPhasingWhileAtMaximumFrenzyCharges = 4767, + /// /// gain_phasing_while_you_have_onslaught /// - GainPhasingWhileYouHaveOnslaught = 4767, - + GainPhasingWhileYouHaveOnslaught = 4768, + /// /// gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance /// - GainMaximumEnduranceChargesOnEnduranceChargeGainedPctChance = 4768, - + GainMaximumEnduranceChargesOnEnduranceChargeGainedPctChance = 4769, + /// /// elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds /// - ElementalistSkillAreaOfEffectPctFor4SecondsEvery10Seconds = 4769, - + ElementalistSkillAreaOfEffectPctFor4SecondsEvery10Seconds = 4770, + /// /// physical_damage_%_to_add_as_chaos_vs_bleeding_enemies /// - PhysicalDamagePctToAddAsChaosVsBleedingEnemies = 4770, - + PhysicalDamagePctToAddAsChaosVsBleedingEnemies = 4771, + /// /// elemental_resistances_+%_for_you_and_allies_affected_by_your_auras /// - ElementalResistancesPctForYouAndAlliesAffectedByYourAuras = 4771, - + ElementalResistancesPctForYouAndAlliesAffectedByYourAuras = 4772, + /// /// gain_x_life_on_trap_triggered_by_an_enemy /// - GainXLifeOnTrapTriggeredByAnEnemy = 4772, - + GainXLifeOnTrapTriggeredByAnEnemy = 4773, + /// /// gain_x_es_on_trap_triggered_by_an_enemy /// - GainXEsOnTrapTriggeredByAnEnemy = 4773, - + GainXEsOnTrapTriggeredByAnEnemy = 4774, + /// /// phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy /// - PhasingPctFor3SecondsOnTrapTriggeredByAnEnemy = 4774, - + PhasingPctFor3SecondsOnTrapTriggeredByAnEnemy = 4775, + /// /// visual_always_use_smallest_blood_effect /// - VisualAlwaysUseSmallestBloodEffect = 4775, - + VisualAlwaysUseSmallestBloodEffect = 4776, + /// /// attack_skills_additional_totems_allowed /// - AttackSkillsAdditionalTotemsAllowed = 4776, - + AttackSkillsAdditionalTotemsAllowed = 4777, + /// /// global_defences_+%_per_white_socket_on_item /// - GlobalDefencesPctPerWhiteSocketOnItem = 4777, - + GlobalDefencesPctPerWhiteSocketOnItem = 4778, + /// /// global_total_minimum_added_cold_damage /// - GlobalTotalMinimumAddedColdDamage = 4778, - + GlobalTotalMinimumAddedColdDamage = 4779, + /// /// global_total_maximum_added_cold_damage /// - GlobalTotalMaximumAddedColdDamage = 4779, - + GlobalTotalMaximumAddedColdDamage = 4780, + /// /// poison_from_critical_strikes_damage_+%_final /// - PoisonFromCriticalStrikesDamagePctFinal = 4780, - + PoisonFromCriticalStrikesDamagePctFinal = 4781, + /// /// bleed_damage_+%_vs_maimed_enemies_final /// - BleedDamagePctVsMaimedEnemiesFinal = 4781, - + BleedDamagePctVsMaimedEnemiesFinal = 4782, + /// /// flask_charges_+%_from_enemies_with_status_ailments /// - FlaskChargesPctFromEnemiesWithStatusAilments = 4782, - + FlaskChargesPctFromEnemiesWithStatusAilments = 4783, + /// /// mana_cost_+%_while_on_full_energy_shield /// - ManaCostPctWhileOnFullEnergyShield = 4783, - + ManaCostPctWhileOnFullEnergyShield = 4784, + /// /// permanently_intimidate_enemies_you_hit_on_full_life /// - PermanentlyIntimidateEnemiesYouHitOnFullLife = 4784, - + PermanentlyIntimidateEnemiesYouHitOnFullLife = 4785, + /// /// number_of_corpses_consumed_recently /// - NumberOfCorpsesConsumedRecently = 4785, - + NumberOfCorpsesConsumedRecently = 4786, + /// /// track_number_of_corpses_consumed_recently /// - TrackNumberOfCorpsesConsumedRecently = 4786, - + TrackNumberOfCorpsesConsumedRecently = 4787, + /// /// damage_+%_if_you_have_consumed_a_corpse_recently /// - DamagePctIfYouHaveConsumedACorpseRecently = 4787, - + DamagePctIfYouHaveConsumedACorpseRecently = 4788, + /// /// attack_and_cast_speed_+%_per_corpse_consumed_recently /// - AttackAndCastSpeedPctPerCorpseConsumedRecently = 4788, - + AttackAndCastSpeedPctPerCorpseConsumedRecently = 4789, + /// /// armour_and_evasion_+%_while_fortified /// - ArmourAndEvasionPctWhileFortified = 4789, - + ArmourAndEvasionPctWhileFortified = 4790, + /// /// melee_damage_+%_while_fortified /// - MeleeDamagePctWhileFortified = 4790, - + MeleeDamagePctWhileFortified = 4791, + /// /// desecrate_creates_X_additional_corpses /// - DesecrateCreatesXAdditionalCorpses = 4791, - + DesecrateCreatesXAdditionalCorpses = 4792, + /// /// mana_regeneration_rate_+%_while_phasing /// - ManaRegenerationRatePctWhilePhasing = 4792, - + ManaRegenerationRatePctWhilePhasing = 4793, + /// /// chaos_skill_effect_duration_+% /// - ChaosSkillEffectDurationPct = 4793, - + ChaosSkillEffectDurationPct = 4794, + /// /// damage_+%_final_vs_non_taunt_target_from_ot /// - DamagePctFinalVsNonTauntTargetFromOt = 4794, - + DamagePctFinalVsNonTauntTargetFromOt = 4795, + /// /// damage_+%_final_vs_non_taunt_target_from_passive /// - DamagePctFinalVsNonTauntTargetFromPassive = 4795, - + DamagePctFinalVsNonTauntTargetFromPassive = 4796, + /// /// damage_+%_final_from_damaging_non_taunt_target /// - DamagePctFinalFromDamagingNonTauntTarget = 4796, - + DamagePctFinalFromDamagingNonTauntTarget = 4797, + /// /// taunted_enemies_damage_+%_final_vs_non_taunt_target /// - TauntedEnemiesDamagePctFinalVsNonTauntTarget = 4797, - + TauntedEnemiesDamagePctFinalVsNonTauntTarget = 4798, + /// /// chest_drop_additional_deshret_uniques /// - ChestDropAdditionalDeshretUniques = 4798, - + ChestDropAdditionalDeshretUniques = 4799, + /// /// chest_drop_additional_rare_maraketh_weapons /// - ChestDropAdditionalRareMarakethWeapons = 4799, - + ChestDropAdditionalRareMarakethWeapons = 4800, + /// /// chest_display_spawns_torment_spirits_continuously /// - ChestDisplaySpawnsTormentSpiritsContinuously = 4800, - + ChestDisplaySpawnsTormentSpiritsContinuously = 4801, + /// /// chance_to_cast_on_owned_kill_% /// - ChanceToCastOnOwnedKillPct = 4801, - + ChanceToCastOnOwnedKillPct = 4802, + /// /// local_flask_cannot_be_stunned_during_flask_effect /// - LocalFlaskCannotBeStunnedDuringFlaskEffect = 4802, - + LocalFlaskCannotBeStunnedDuringFlaskEffect = 4803, + /// /// local_flask_lose_all_charges_on_entering_new_area /// - LocalFlaskLoseAllChargesOnEnteringNewArea = 4803, - + LocalFlaskLoseAllChargesOnEnteringNewArea = 4804, + /// /// summon_specific_monsters_radius_+% /// - SummonSpecificMonstersRadiusPct = 4804, - + SummonSpecificMonstersRadiusPct = 4805, + /// /// monster_drop_additional_currency_items_with_quality /// - MonsterDropAdditionalCurrencyItemsWithQuality = 4805, - + MonsterDropAdditionalCurrencyItemsWithQuality = 4806, + /// /// prophecy_spawned_monster_magic_minimum_rarity /// - ProphecySpawnedMonsterMagicMinimumRarity = 4806, - + ProphecySpawnedMonsterMagicMinimumRarity = 4807, + /// /// gain_life_leech_on_kill_permyriad /// - GainLifeLeechOnKillPermyriad = 4807, - + GainLifeLeechOnKillPermyriad = 4808, + /// /// immune_to_shock /// - ImmuneToShock = 4808, - + ImmuneToShock = 4809, + /// /// poison_on_melee_hit /// - PoisonOnMeleeHit = 4809, - + PoisonOnMeleeHit = 4810, + /// /// life_leech_permyriad_vs_cursed_enemies /// - LifeLeechPermyriadVsCursedEnemies = 4810, - + LifeLeechPermyriadVsCursedEnemies = 4811, + /// /// movement_speed_+%_if_enemy_killed_recently /// - MovementSpeedPctIfEnemyKilledRecently = 4811, - + MovementSpeedPctIfEnemyKilledRecently = 4812, + /// /// local_display_socketed_gems_supported_by_x_controlled_destruction /// - LocalDisplaySocketedGemsSupportedByXControlledDestruction = 4812, - + LocalDisplaySocketedGemsSupportedByXControlledDestruction = 4813, + /// /// local_unique_flask_kiaras_determination /// - LocalUniqueFlaskKiarasDetermination = 4813, - + LocalUniqueFlaskKiarasDetermination = 4814, + /// /// map_items_dropped_are_mirrored /// - MapItemsDroppedAreMirrored = 4814, - + MapItemsDroppedAreMirrored = 4815, + /// /// monster_is_corrupted_display /// - MonsterIsCorruptedDisplay = 4815, - + MonsterIsCorruptedDisplay = 4816, + /// /// monster_casts_fire_nova_text /// - MonsterCastsFireNovaText = 4816, - + MonsterCastsFireNovaText = 4817, + /// /// monster_casts_flask_charge_nova_text /// - MonsterCastsFlaskChargeNovaText = 4817, - + MonsterCastsFlaskChargeNovaText = 4818, + /// /// monster_has_damage_taken_aura_text /// - MonsterHasDamageTakenAuraText = 4818, - + MonsterHasDamageTakenAuraText = 4819, + /// /// monster_has_temporal_chains_aura_text /// - MonsterHasTemporalChainsAuraText = 4819, - + MonsterHasTemporalChainsAuraText = 4820, + /// /// monster_has_movement_skill_damage_aura_text /// - MonsterHasMovementSkillDamageAuraText = 4820, - + MonsterHasMovementSkillDamageAuraText = 4821, + /// /// monster_casts_bleed_nova_text /// - MonsterCastsBleedNovaText = 4821, - + MonsterCastsBleedNovaText = 4822, + /// /// weapon_physical_damage_%_to_add_as_each_element /// - WeaponPhysicalDamagePctToAddAsEachElement = 4822, - + WeaponPhysicalDamagePctToAddAsEachElement = 4823, + /// /// map_force_labyrinth_trial /// - MapForceLabyrinthTrial = 4823, - + MapForceLabyrinthTrial = 4824, + /// /// unique_cold_damage_can_also_ignite /// - UniqueColdDamageCanAlsoIgnite = 4824, - + UniqueColdDamageCanAlsoIgnite = 4825, + /// /// monster_throws_chaos_bombs_text /// - MonsterThrowsChaosBombsText = 4825, - + MonsterThrowsChaosBombsText = 4826, + /// /// attack_trigger_on_melee_hit_% /// - AttackTriggerOnMeleeHitPct = 4826, - + AttackTriggerOnMeleeHitPct = 4827, + /// /// physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems /// - PhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecentlyByYouOrYourTotems = 4827, - + PhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecentlyByYouOrYourTotems = 4828, + /// /// give_parent_physical_damage_%_added_as_fire_damage_if_enemy_killed_recently /// - GiveParentPhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecently = 4828, - + GiveParentPhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecently = 4829, + /// /// unique_boss_curse_effect_on_self_+%_final /// - UniqueBossCurseEffectOnSelfPctFinal = 4829, - + UniqueBossCurseEffectOnSelfPctFinal = 4830, + /// /// chest_drop_additional_unique_item_divination_cards /// - ChestDropAdditionalUniqueItemDivinationCards = 4830, - + ChestDropAdditionalUniqueItemDivinationCards = 4831, + /// /// chest_drop_additional_corrupted_item_divination_cards /// - ChestDropAdditionalCorruptedItemDivinationCards = 4831, - + ChestDropAdditionalCorruptedItemDivinationCards = 4832, + /// /// chest_drop_additional_currency_item_divination_cards /// - ChestDropAdditionalCurrencyItemDivinationCards = 4832, - + ChestDropAdditionalCurrencyItemDivinationCards = 4833, + /// /// chest_drop_additional_divination_cards_from_current_world_area /// - ChestDropAdditionalDivinationCardsFromCurrentWorldArea = 4833, - + ChestDropAdditionalDivinationCardsFromCurrentWorldArea = 4834, + /// /// chest_drop_additional_divination_cards_from_same_set /// - ChestDropAdditionalDivinationCardsFromSameSet = 4834, - + ChestDropAdditionalDivinationCardsFromSameSet = 4835, + /// /// global_critical_strike_chance_while_dual_wielding_+% /// - GlobalCriticalStrikeChanceWhileDualWieldingPct = 4835, - + GlobalCriticalStrikeChanceWhileDualWieldingPct = 4836, + /// /// global_critical_strike_multiplier_while_dual_wielding_+ /// - GlobalCriticalStrikeMultiplierWhileDualWielding = 4836, - + GlobalCriticalStrikeMultiplierWhileDualWielding = 4837, + /// /// doom_arrow_number_of_arrows /// - DoomArrowNumberOfArrows = 4837, - + DoomArrowNumberOfArrows = 4838, + /// /// stance_movement_speed_+%_final /// - StanceMovementSpeedPctFinal = 4838, - + StanceMovementSpeedPctFinal = 4839, + /// /// Base Physical Damage Reduction and Evasion Rating /// - BasePhysicalDamageReductionAndEvasionRating = 4839, - + BasePhysicalDamageReductionAndEvasionRating = 4840, + /// /// first_blood_extra_gore /// - FirstBloodExtraGore = 4840, - + FirstBloodExtraGore = 4841, + /// /// cast_when_triggered_by_other_skill_% /// - CastWhenTriggeredByOtherSkillPct = 4841, - + CastWhenTriggeredByOtherSkillPct = 4842, + /// /// local_display_socketed_gems_minimum_added_fire_damage /// - LocalDisplaySocketedGemsMinimumAddedFireDamage = 4842, - + LocalDisplaySocketedGemsMinimumAddedFireDamage = 4843, + /// /// local_display_socketed_gems_maximum_added_fire_damage /// - LocalDisplaySocketedGemsMaximumAddedFireDamage = 4843, - + LocalDisplaySocketedGemsMaximumAddedFireDamage = 4844, + /// /// local_display_socketed_gems_attack_and_cast_speed_+%_final /// - LocalDisplaySocketedGemsAttackAndCastSpeedPctFinal = 4844, - + LocalDisplaySocketedGemsAttackAndCastSpeedPctFinal = 4845, + /// /// local_display_socketed_gems_physical_damage_%_to_add_as_lightning /// - LocalDisplaySocketedGemsPhysicalDamagePctToAddAsLightning = 4845, - + LocalDisplaySocketedGemsPhysicalDamagePctToAddAsLightning = 4846, + /// /// local_display_socketed_gems_elemental_damage_+%_final /// - LocalDisplaySocketedGemsElementalDamagePctFinal = 4846, - + LocalDisplaySocketedGemsElementalDamagePctFinal = 4847, + /// /// curse_nova_damage_+%_final_per_curse_removed /// - CurseNovaDamagePctFinalPerCurseRemoved = 4847, - + CurseNovaDamagePctFinalPerCurseRemoved = 4848, + /// /// elemental_penetration_%_during_flask_effect /// - ElementalPenetrationPctDuringFlaskEffect = 4848, - + ElementalPenetrationPctDuringFlaskEffect = 4849, + /// /// additional_physical_damage_reduction_%_during_flask_effect /// - AdditionalPhysicalDamageReductionPctDuringFlaskEffect = 4849, - + AdditionalPhysicalDamageReductionPctDuringFlaskEffect = 4850, + /// /// reflect_damage_taken_+% /// - ReflectDamageTakenPct = 4850, - + ReflectDamageTakenPct = 4851, + /// /// power_charge_on_block_%_chance /// - PowerChargeOnBlockPctChance = 4851, - + PowerChargeOnBlockPctChance = 4852, + /// /// nearby_enemies_chilled_on_block /// - NearbyEnemiesChilledOnBlock = 4852, - + NearbyEnemiesChilledOnBlock = 4853, + /// /// arrow_projectile_variation /// - ArrowProjectileVariation = 4853, - + ArrowProjectileVariation = 4854, + /// /// essence_buff_elemental_damage_taken_+% /// - EssenceBuffElementalDamageTakenPct = 4854, - + EssenceBuffElementalDamageTakenPct = 4855, + /// /// essence_buff_ground_fire_damage_to_deal_per_second /// - EssenceBuffGroundFireDamageToDealPerSecond = 4855, - + EssenceBuffGroundFireDamageToDealPerSecond = 4856, + /// /// essence_buff_ground_fire_duration_ms /// - EssenceBuffGroundFireDurationMs = 4856, - + EssenceBuffGroundFireDurationMs = 4857, + /// /// trigger_spawners_override_row /// - TriggerSpawnersOverrideRow = 4857, - + TriggerSpawnersOverrideRow = 4858, + /// /// trigger_spawners_max_count /// - TriggerSpawnersMaxCount = 4858, - + TriggerSpawnersMaxCount = 4859, + /// /// map_race_data /// - MapRaceData = 4859, - + MapRaceData = 4860, + /// /// map_packs_have_pop_up_traps /// - MapPacksHavePopUpTraps = 4860, - + MapPacksHavePopUpTraps = 4861, + /// /// permanent_damage_taken_+%_on_minion_death /// - PermanentDamageTakenPctOnMinionDeath = 4861, - + PermanentDamageTakenPctOnMinionDeath = 4862, + /// /// permanent_actor_scale_+%_on_minion_death /// - PermanentActorScalePctOnMinionDeath = 4862, - + PermanentActorScalePctOnMinionDeath = 4863, + /// /// permanent_item_quantity_+%_on_minion_death /// - PermanentItemQuantityPctOnMinionDeath = 4863, - + PermanentItemQuantityPctOnMinionDeath = 4864, + /// /// permanent_item_rarity_+%_on_minion_death /// - PermanentItemRarityPctOnMinionDeath = 4864, - + PermanentItemRarityPctOnMinionDeath = 4865, + /// /// ground_maelstrom_art_variation /// - GroundMaelstromArtVariation = 4865, - + GroundMaelstromArtVariation = 4866, + /// /// do_not_revive_after_time /// - DoNotReviveAfterTime = 4866, - + DoNotReviveAfterTime = 4867, + /// /// chaos_damage_taken_over_time_+% /// - ChaosDamageTakenOverTimePct = 4867, - + ChaosDamageTakenOverTimePct = 4868, + /// /// local_display_socketed_gems_additional_critical_strike_chance_% /// - LocalDisplaySocketedGemsAdditionalCriticalStrikeChancePct = 4868, - + LocalDisplaySocketedGemsAdditionalCriticalStrikeChancePct = 4869, + /// /// attack_and_cast_speed_+%_during_flask_effect /// - AttackAndCastSpeedPctDuringFlaskEffect = 4869, - + AttackAndCastSpeedPctDuringFlaskEffect = 4870, + /// /// minimum_added_cold_damage_per_frenzy_charge /// - MinimumAddedColdDamagePerFrenzyCharge = 4870, - + MinimumAddedColdDamagePerFrenzyCharge = 4871, + /// /// maximum_added_cold_damage_per_frenzy_charge /// - MaximumAddedColdDamagePerFrenzyCharge = 4871, - + MaximumAddedColdDamagePerFrenzyCharge = 4872, + /// /// minimum_added_fire_damage_if_blocked_recently /// - MinimumAddedFireDamageIfBlockedRecently = 4872, - + MinimumAddedFireDamageIfBlockedRecently = 4873, + /// /// maximum_added_fire_damage_if_blocked_recently /// - MaximumAddedFireDamageIfBlockedRecently = 4873, - + MaximumAddedFireDamageIfBlockedRecently = 4874, + /// /// track_have_blocked_attack_recently /// - TrackHaveBlockedAttackRecently = 4874, - + TrackHaveBlockedAttackRecently = 4875, + /// /// have_blocked_attack_recently /// - HaveBlockedAttackRecently = 4875, - + HaveBlockedAttackRecently = 4876, + /// /// global_total_minimum_added_fire_damage /// - GlobalTotalMinimumAddedFireDamage = 4876, - + GlobalTotalMinimumAddedFireDamage = 4877, + /// /// global_total_maximum_added_fire_damage /// - GlobalTotalMaximumAddedFireDamage = 4877, - + GlobalTotalMaximumAddedFireDamage = 4878, + /// /// stun_threshold_based_on_energy_shield_instead_of_life /// - StunThresholdBasedOnEnergyShieldInsteadOfLife = 4878, - + StunThresholdBasedOnEnergyShieldInsteadOfLife = 4879, + /// /// cannot_leech_life_from_critical_strikes /// - CannotLeechLifeFromCriticalStrikes = 4879, - + CannotLeechLifeFromCriticalStrikes = 4880, + /// /// %_chance_to_blind_on_critical_strike /// - PctChanceToBlindOnCriticalStrike = 4880, - + PctChanceToBlindOnCriticalStrike = 4881, + /// /// bleed_on_melee_critical_strike /// - BleedOnMeleeCriticalStrike = 4881, - + BleedOnMeleeCriticalStrike = 4882, + /// /// map_has_monoliths /// - MapHasMonoliths = 4882, - + MapHasMonoliths = 4883, + /// /// in_lava /// - InLava = 4883, - + InLava = 4884, + /// /// base_life_regeneration_per_minute_%_while_in_lava /// - BaseLifeRegenerationPerMinutePctWhileInLava = 4884, - + BaseLifeRegenerationPerMinutePctWhileInLava = 4885, + /// /// lava_buff_effect_on_self_+% /// - LavaBuffEffectOnSelfPct = 4885, - + LavaBuffEffectOnSelfPct = 4886, + /// /// current_fire_beam_stacks /// - CurrentFireBeamStacks = 4886, - + CurrentFireBeamStacks = 4887, + /// /// max_fire_beam_stacks /// - MaxFireBeamStacks = 4887, - + MaxFireBeamStacks = 4888, + /// /// marker_warp_marker_variation /// - MarkerWarpMarkerVariation = 4888, - + MarkerWarpMarkerVariation = 4889, + /// /// self_take_no_extra_damage_from_critical_strikes /// - SelfTakeNoExtraDamageFromCriticalStrikes = 4889, - + SelfTakeNoExtraDamageFromCriticalStrikes = 4890, + /// /// enemies_you_shock_cast_speed_+% /// - EnemiesYouShockCastSpeedPct = 4890, - + EnemiesYouShockCastSpeedPct = 4891, + /// /// enemies_you_shock_movement_speed_+% /// - EnemiesYouShockMovementSpeedPct = 4891, - + EnemiesYouShockMovementSpeedPct = 4892, + /// /// burning_damage_+%_if_ignited_an_enemy_recently /// - BurningDamagePctIfIgnitedAnEnemyRecently = 4892, - + BurningDamagePctIfIgnitedAnEnemyRecently = 4893, + /// /// recover_%_maximum_life_on_enemy_ignited /// - RecoverPctMaximumLifeOnEnemyIgnited = 4893, - + RecoverPctMaximumLifeOnEnemyIgnited = 4894, + /// /// melee_physical_damage_+%_vs_ignited_enemies /// - MeleePhysicalDamagePctVsIgnitedEnemies = 4894, - + MeleePhysicalDamagePctVsIgnitedEnemies = 4895, + /// /// critical_strike_chance_+%_for_forking_arrows /// - CriticalStrikeChancePctForForkingArrows = 4895, - + CriticalStrikeChancePctForForkingArrows = 4896, + /// /// arrows_always_pierce_after_chaining /// - ArrowsAlwaysPierceAfterChaining = 4896, - + ArrowsAlwaysPierceAfterChaining = 4897, + /// /// arrows_that_pierce_cause_bleeding /// - ArrowsThatPierceCauseBleeding = 4897, - + ArrowsThatPierceCauseBleeding = 4898, + /// /// spells_number_of_additional_projectiles /// - SpellsNumberOfAdditionalProjectiles = 4898, - + SpellsNumberOfAdditionalProjectiles = 4899, + /// /// minion_damage_+%_if_enemy_hit_recently /// - MinionDamagePctIfEnemyHitRecently = 4899, - + MinionDamagePctIfEnemyHitRecently = 4900, + /// /// have_hit_an_enemy_recently /// - HaveHitAnEnemyRecently = 4900, - + HaveHitAnEnemyRecently = 4901, + /// /// track_have_hit_an_enemy_recently /// - TrackHaveHitAnEnemyRecently = 4901, - + TrackHaveHitAnEnemyRecently = 4902, + /// /// minion_damage_increases_and_reductions_also_affects_you /// - MinionDamageIncreasesAndReductionsAlsoAffectsYou = 4902, - + MinionDamageIncreasesAndReductionsAlsoAffectsYou = 4903, + /// /// projectile_attack_damage_+%_per_200_accuracy /// - ProjectileAttackDamagePctPer200Accuracy = 4903, - + ProjectileAttackDamagePctPer200Accuracy = 4904, + /// /// map_bosses_have_union_of_souls /// - MapBossesHaveUnionOfSouls = 4904, - + MapBossesHaveUnionOfSouls = 4905, + /// /// map_extra_monoliths /// - MapExtraMonoliths = 4905, - + MapExtraMonoliths = 4906, + /// /// minion_dies_when_parent_deleted /// - MinionDiesWhenParentDeleted = 4906, - + MinionDiesWhenParentDeleted = 4907, + /// /// spectral_throw_projectile_scale_+% /// - SpectralThrowProjectileScalePct = 4907, - + SpectralThrowProjectileScalePct = 4908, + /// /// gain_onslaught_for_3_seconds_%_chance_when_hit /// - GainOnslaughtFor3SecondsPctChanceWhenHit = 4908, - + GainOnslaughtFor3SecondsPctChanceWhenHit = 4909, + /// /// local_display_socketed_gems_damage_over_time_+%_final /// - LocalDisplaySocketedGemsDamageOverTimePctFinal = 4909, - + LocalDisplaySocketedGemsDamageOverTimePctFinal = 4910, + /// /// deal_chaos_damage_per_second_for_10_seconds_on_hit /// - DealChaosDamagePerSecondFor10SecondsOnHit = 4910, - + DealChaosDamagePerSecondFor10SecondsOnHit = 4911, + /// /// movement_speed_+%_while_on_burning_chilled_shocked_ground /// - MovementSpeedPctWhileOnBurningChilledShockedGround = 4911, - + MovementSpeedPctWhileOnBurningChilledShockedGround = 4912, + /// /// mana_%_gained_on_block /// - ManaPctGainedOnBlock = 4912, - + ManaPctGainedOnBlock = 4913, + /// /// projectiles_drop_caustic_cloud /// - ProjectilesDropCausticCloud = 4913, - + ProjectilesDropCausticCloud = 4914, + /// /// base_projectile_ground_caustic_cloud_damage_per_minute /// - BaseProjectileGroundCausticCloudDamagePerMinute = 4914, - + BaseProjectileGroundCausticCloudDamagePerMinute = 4915, + /// /// local_display_socketed_non_curse_aura_gems_effect_+% /// - LocalDisplaySocketedNonCurseAuraGemsEffectPct = 4915, - + LocalDisplaySocketedNonCurseAuraGemsEffectPct = 4916, + /// /// local_display_fire_burst_on_hit_% /// - LocalDisplayFireBurstOnHitPct = 4916, - + LocalDisplayFireBurstOnHitPct = 4917, + /// /// essence_support_attack_and_cast_speed_+%_final /// - EssenceSupportAttackAndCastSpeedPctFinal = 4917, - + EssenceSupportAttackAndCastSpeedPctFinal = 4918, + /// /// essence_support_elemental_damage_+%_final /// - EssenceSupportElementalDamagePctFinal = 4918, - + EssenceSupportElementalDamagePctFinal = 4919, + /// /// base_number_of_essence_spirits_allowed /// - BaseNumberOfEssenceSpiritsAllowed = 4919, - + BaseNumberOfEssenceSpiritsAllowed = 4920, + /// /// number_of_essence_spirits_allowed /// - NumberOfEssenceSpiritsAllowed = 4920, - + NumberOfEssenceSpiritsAllowed = 4921, + /// /// number_of_active_essence_spirits /// - NumberOfActiveEssenceSpirits = 4921, - + NumberOfActiveEssenceSpirits = 4922, + /// /// chest_drop_additional_prophecy_coins /// - ChestDropAdditionalProphecyCoins = 4922, - + ChestDropAdditionalProphecyCoins = 4923, + /// /// ground_effect_variation /// - GroundEffectVariation = 4923, - + GroundEffectVariation = 4924, + /// /// essence_support_damage_over_time_+%_final /// - EssenceSupportDamageOverTimePctFinal = 4924, - + EssenceSupportDamageOverTimePctFinal = 4925, + /// /// local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius /// - LocalUniqueJewelSpectresGainSoulEaterOnKillPctChanceWith50IntInRadius = 4925, - + LocalUniqueJewelSpectresGainSoulEaterOnKillPctChanceWith50IntInRadius = 4926, + /// - /// spectres_gain_soul_eater_for_30_seconds_on_kill_%_chance + /// spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance /// - SpectresGainSoulEaterFor30SecondsOnKillPctChance = 4926, - + SpectresGainSoulEaterFor20SecondsOnKillPctChance = 4927, + /// - /// gain_soul_eater_for_30_seconds_on_kill_%_chance + /// gain_soul_eater_for_20_seconds_on_kill_%_chance /// - GainSoulEaterFor30SecondsOnKillPctChance = 4927, - + GainSoulEaterFor20SecondsOnKillPctChance = 4928, + /// /// local_unique_cast_socketed_cold_skills_on_melee_critical_strike /// - LocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4928, - + LocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4929, + /// /// main_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike /// - MainHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4929, - + MainHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4930, + /// /// off_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike /// - OffHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4930, - + OffHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4931, + /// /// global_critical_strike_chance_+%_vs_chilled_enemies /// - GlobalCriticalStrikeChancePctVsChilledEnemies = 4931, - + GlobalCriticalStrikeChancePctVsChilledEnemies = 4932, + /// /// unique_cospris_malice_cold_spells_triggered /// - UniqueCosprisMaliceColdSpellsTriggered = 4932, - + UniqueCosprisMaliceColdSpellsTriggered = 4933, + /// /// projectile_ground_caustic_cloud_radius /// - ProjectileGroundCausticCloudRadius = 4933, - + ProjectileGroundCausticCloudRadius = 4934, + /// /// gain_phasing_if_enemy_killed_recently /// - GainPhasingIfEnemyKilledRecently = 4934, - + GainPhasingIfEnemyKilledRecently = 4935, + /// /// movement_skills_deal_no_physical_damage /// - MovementSkillsDealNoPhysicalDamage = 4935, - + MovementSkillsDealNoPhysicalDamage = 4936, + /// /// X_mana_per_4_strength /// - XManaPer4Strength = 4936, - + XManaPer4Strength = 4937, + /// /// energy_shield_+%_per_10_strength /// - EnergyShieldPctPer10Strength = 4937, - + EnergyShieldPctPer10Strength = 4938, + /// /// X_life_per_4_dexterity /// - XLifePer4Dexterity = 4938, - + XLifePer4Dexterity = 4939, + /// /// melee_physical_damage_+%_per_10_dexterity /// - MeleePhysicalDamagePctPer10Dexterity = 4939, - + MeleePhysicalDamagePctPer10Dexterity = 4940, + /// /// X_accuracy_per_2_intelligence /// - XAccuracyPer2Intelligence = 4940, - + XAccuracyPer2Intelligence = 4941, + /// /// evasion_+%_per_10_intelligence /// - EvasionPctPer10Intelligence = 4941, - + EvasionPctPer10Intelligence = 4942, + /// /// maximum_life_%_to_add_as_maximum_armour /// - MaximumLifePctToAddAsMaximumArmour = 4942, - + MaximumLifePctToAddAsMaximumArmour = 4943, + /// /// monster_no_drops_if_death_timer_expired /// - MonsterNoDropsIfDeathTimerExpired = 4943, - + MonsterNoDropsIfDeathTimerExpired = 4944, + /// /// attack_area_of_effect_+% /// - AttackAreaOfEffectPct = 4944, - + AttackAreaOfEffectPct = 4945, + /// /// physical_damage_can_shock /// - PhysicalDamageCanShock = 4945, - + PhysicalDamageCanShock = 4946, + /// /// deal_no_elemental_damage /// - DealNoElementalDamage = 4946, - + DealNoElementalDamage = 4947, + /// /// immune_to_freeze /// - ImmuneToFreeze = 4947, - + ImmuneToFreeze = 4948, + /// /// immune_to_ignite /// - ImmuneToIgnite = 4948, - + ImmuneToIgnite = 4949, + /// /// immune_to_chill /// - ImmuneToChill = 4949, - + ImmuneToChill = 4950, + /// /// monster_drop_no_essences /// - MonsterDropNoEssences = 4950, - + MonsterDropNoEssences = 4951, + /// /// base_immune_to_freeze /// - BaseImmuneToFreeze = 4951, - + BaseImmuneToFreeze = 4952, + /// /// base_immune_to_chill /// - BaseImmuneToChill = 4952, - + BaseImmuneToChill = 4953, + /// /// base_immune_to_ignite /// - BaseImmuneToIgnite = 4953, - + BaseImmuneToIgnite = 4954, + /// /// base_immune_to_shock /// - BaseImmuneToShock = 4954, - + BaseImmuneToShock = 4955, + /// /// base_cannot_gain_bleeding /// - BaseCannotGainBleeding = 4955, - + BaseCannotGainBleeding = 4956, + /// /// map_boss_dropped_unique_items_+ /// - MapBossDroppedUniqueItems = 4956, - + MapBossDroppedUniqueItems = 4957, + /// /// map_boss_drops_corrupted_items /// - MapBossDropsCorruptedItems = 4957, - + MapBossDropsCorruptedItems = 4958, + /// /// map_players_and_monsters_damage_+%_per_curse /// - MapPlayersAndMonstersDamagePctPerCurse = 4958, - + MapPlayersAndMonstersDamagePctPerCurse = 4959, + /// /// map_players_and_monsters_critical_strike_chance_+% /// - MapPlayersAndMonstersCriticalStrikeChancePct = 4959, - + MapPlayersAndMonstersCriticalStrikeChancePct = 4960, + /// /// map_monsters_steal_charges /// - MapMonstersStealCharges = 4960, - + MapMonstersStealCharges = 4961, + /// /// map_unidentified_maps_item_quantity_+% /// - MapUnidentifiedMapsItemQuantityPct = 4961, - + MapUnidentifiedMapsItemQuantityPct = 4962, + /// /// map_boss_dropped_item_quantity_+% /// - MapBossDroppedItemQuantityPct = 4962, - + MapBossDroppedItemQuantityPct = 4963, + /// /// map_number_of_additional_mods /// - MapNumberOfAdditionalMods = 4963, - + MapNumberOfAdditionalMods = 4964, + /// /// map_nemesis_dropped_items_+ /// - MapNemesisDroppedItems = 4964, - + MapNemesisDroppedItems = 4965, + /// /// map_contains_master /// - MapContainsMaster = 4965, - + MapContainsMaster = 4966, + /// /// buff_impl_stat /// - BuffImplStat = 4966, - + BuffImplStat = 4967, + /// /// cannot_be_shocked /// - CannotBeShocked = 4967, - + CannotBeShocked = 4968, + /// /// restore_skill_life_% /// - RestoreSkillLifePct = 4968, - + RestoreSkillLifePct = 4969, + /// /// restore_skill_mana_% /// - RestoreSkillManaPct = 4969, - + RestoreSkillManaPct = 4970, + /// /// restore_skill_es_% /// - RestoreSkillEsPct = 4970, - + RestoreSkillEsPct = 4971, + /// /// ground_tar_art_variation /// - GroundTarArtVariation = 4971, - + GroundTarArtVariation = 4972, + /// /// fire_damage_taken_when_enemy_ignited /// - FireDamageTakenWhenEnemyIgnited = 4972, - + FireDamageTakenWhenEnemyIgnited = 4973, + /// /// life_leech_from_fire_damage_while_ignited_permyriad /// - LifeLeechFromFireDamageWhileIgnitedPermyriad = 4973, - + LifeLeechFromFireDamageWhileIgnitedPermyriad = 4974, + /// /// action_ignores_crit_tracking /// - ActionIgnoresCritTracking = 4974, - + ActionIgnoresCritTracking = 4975, + /// /// movement_velocity_while_spider_+% /// - MovementVelocityWhileSpiderPct = 4975, - + MovementVelocityWhileSpiderPct = 4976, + /// /// is_spider /// - IsSpider = 4976, - + IsSpider = 4977, + /// /// Projectile Attack Damage +% /// - ProjectileAttackDamagePct = 4977, - + ProjectileAttackDamagePct = 4978, + /// /// covered_in_spiders_damage_+%_final /// - CoveredInSpidersDamagePctFinal = 4978, - + CoveredInSpidersDamagePctFinal = 4979, + /// /// covered_in_spiders_attack_and_cast_speed_+%_final /// - CoveredInSpidersAttackAndCastSpeedPctFinal = 4979, - + CoveredInSpidersAttackAndCastSpeedPctFinal = 4980, + /// /// map_create_instance_terrain_plugin /// - MapCreateInstanceTerrainPlugin = 4980, - + MapCreateInstanceTerrainPlugin = 4981, + + /// + /// map_create_subarea + /// + MapCreateSubarea = 4982, + /// /// monster_map_boss_take_critical_strike_chance_+%_final /// - MonsterMapBossTakeCriticalStrikeChancePctFinal = 4981, - + MonsterMapBossTakeCriticalStrikeChancePctFinal = 4983, + /// /// monster_map_boss_extra_damage_taken_from_crit_+%_final /// - MonsterMapBossExtraDamageTakenFromCritPctFinal = 4982, - + MonsterMapBossExtraDamageTakenFromCritPctFinal = 4984, + /// /// extra_damage_taken_from_crit_+% /// - ExtraDamageTakenFromCritPct = 4983, - + ExtraDamageTakenFromCritPct = 4985, + /// /// chance_to_gain_frenzy_charge_on_stun_% /// - ChanceToGainFrenzyChargeOnStunPct = 4984, - + ChanceToGainFrenzyChargeOnStunPct = 4986, + /// /// local_unique_flask_damage_over_time_+%_during_flask_effect /// - LocalUniqueFlaskDamageOverTimePctDuringFlaskEffect = 4985, - + LocalUniqueFlaskDamageOverTimePctDuringFlaskEffect = 4987, + /// /// local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect /// - LocalUniqueFlaskNearbyEnemiesCursedWithLevelXDespairDuringFlaskEffect = 4986, - + LocalUniqueFlaskNearbyEnemiesCursedWithLevelXDespairDuringFlaskEffect = 4988, + /// /// restore_skill_life_regeneration_rate_per_minute_% /// - RestoreSkillLifeRegenerationRatePerMinutePct = 4987, - + RestoreSkillLifeRegenerationRatePerMinutePct = 4989, + /// /// restore_skill_mana_regeneration_rate_per_minute_% /// - RestoreSkillManaRegenerationRatePerMinutePct = 4988, - + RestoreSkillManaRegenerationRatePerMinutePct = 4990, + /// /// restore_skill_es_regeneration_rate_per_minute_% /// - RestoreSkillEsRegenerationRatePerMinutePct = 4989, - + RestoreSkillEsRegenerationRatePerMinutePct = 4991, + /// /// projectiles_pierce_while_phasing /// - ProjectilesPierceWhilePhasing = 4990, - + ProjectilesPierceWhilePhasing = 4992, + /// /// avoid_projectiles_while_phasing_%_chance /// - AvoidProjectilesWhilePhasingPctChance = 4991, - + AvoidProjectilesWhilePhasingPctChance = 4993, + /// /// essence_display_drop_burning_ground_while_moving_fire_damage_per_second /// - EssenceDisplayDropBurningGroundWhileMovingFireDamagePerSecond = 4992, - + EssenceDisplayDropBurningGroundWhileMovingFireDamagePerSecond = 4994, + /// /// essence_display_elemental_damage_taken_while_not_moving_+% /// - EssenceDisplayElementalDamageTakenWhileNotMovingPct = 4993, - + EssenceDisplayElementalDamageTakenWhileNotMovingPct = 4995, + /// /// local_flask_area_of_effect_+%_during_flask_effect /// - LocalFlaskAreaOfEffectPctDuringFlaskEffect = 4994, - + LocalFlaskAreaOfEffectPctDuringFlaskEffect = 4996, + /// /// local_flask_number_of_additional_projectiles_during_flask_effect /// - LocalFlaskNumberOfAdditionalProjectilesDuringFlaskEffect = 4995, - + LocalFlaskNumberOfAdditionalProjectilesDuringFlaskEffect = 4997, + /// /// corrupted_blood_on_hit_duration /// - CorruptedBloodOnHitDuration = 4996, - + CorruptedBloodOnHitDuration = 4998, + + /// + /// corrupted_blood_on_hit_num_stacks + /// + CorruptedBloodOnHitNumStacks = 4999, + /// /// take_no_actions_while_parent_dead /// - TakeNoActionsWhileParentDead = 4997, - + TakeNoActionsWhileParentDead = 5000, + /// /// cast_on_hide_% /// - CastOnHidePct = 4998, - + CastOnHidePct = 5001, + /// /// map_item_level_override /// - MapItemLevelOverride = 4999, - + MapItemLevelOverride = 5002, + /// /// hallowed_ground_boss_use_clone_attack /// - HallowedGroundBossUseCloneAttack = 5000, - + HallowedGroundBossUseCloneAttack = 5003, + /// /// hallowed_ground_boss_drop_tar_on_ground_slam /// - HallowedGroundBossDropTarOnGroundSlam = 5001, - + HallowedGroundBossDropTarOnGroundSlam = 5004, + /// /// drop_ground_tar_on_hit_% /// - DropGroundTarOnHitPct = 5002, - + DropGroundTarOnHitPct = 5005, + /// /// map_drop_stacked_deck_on_death_permyriad /// - MapDropStackedDeckOnDeathPermyriad = 5003, - + MapDropStackedDeckOnDeathPermyriad = 5006, + /// /// magic_monster_dropped_item_rarity_+% /// - MagicMonsterDroppedItemRarityPct = 5004, - + MagicMonsterDroppedItemRarityPct = 5007, + /// /// normal_monster_dropped_item_quantity_+% /// - NormalMonsterDroppedItemQuantityPct = 5005, - + NormalMonsterDroppedItemQuantityPct = 5008, + /// /// map_player_has_level_X_projectile_weakness /// - MapPlayerHasLevelXProjectileWeakness = 5006, - + MapPlayerHasLevelXProjectileWeakness = 5009, + /// /// map_player_has_level_X_conductivity /// - MapPlayerHasLevelXConductivity = 5007, - + MapPlayerHasLevelXConductivity = 5010, + /// /// map_player_has_level_X_flammability /// - MapPlayerHasLevelXFlammability = 5008, - + MapPlayerHasLevelXFlammability = 5011, + /// /// map_player_has_level_X_frostbite /// - MapPlayerHasLevelXFrostbite = 5009, - + MapPlayerHasLevelXFrostbite = 5012, + /// /// support_cast_on_crit_spell_damage_+%_final /// - SupportCastOnCritSpellDamagePctFinal = 5010, - + SupportCastOnCritSpellDamagePctFinal = 5013, + /// /// support_cast_on_melee_kill_spell_damage_+%_final /// - SupportCastOnMeleeKillSpellDamagePctFinal = 5011, - + SupportCastOnMeleeKillSpellDamagePctFinal = 5014, + /// /// avoid_projectiles_%_chance /// - AvoidProjectilesPctChance = 5012, - + AvoidProjectilesPctChance = 5015, + /// /// monster_inside_monolith /// - MonsterInsideMonolith = 5013, - + MonsterInsideMonolith = 5016, + /// /// map_spawn_extra_perandus_chests /// - MapSpawnExtraPerandusChests = 5014, - + MapSpawnExtraPerandusChests = 5017, + /// /// map_spawn_cadiro_%_chance /// - MapSpawnCadiroPctChance = 5015, - + MapSpawnCadiroPctChance = 5018, + /// /// cast_on_unhide_% /// - CastOnUnhidePct = 5016, - + CastOnUnhidePct = 5019, + /// /// map_players_and_monsters_have_resolute_technique /// - MapPlayersAndMonstersHaveResoluteTechnique = 5017, - + MapPlayersAndMonstersHaveResoluteTechnique = 5020, + /// /// map_resolute_technique /// - MapResoluteTechnique = 5018, - + MapResoluteTechnique = 5021, + /// /// map_unique_boss_drops_divination_cards /// - MapUniqueBossDropsDivinationCards = 5019, - + MapUniqueBossDropsDivinationCards = 5022, + /// /// all_damage_can_chill /// - AllDamageCanChill = 5020, - + AllDamageCanChill = 5023, + /// /// all_damage_can_shock /// - AllDamageCanShock = 5021, - + AllDamageCanShock = 5024, + /// /// all_damage_can_ignite /// - AllDamageCanIgnite = 5022, - + AllDamageCanIgnite = 5025, + /// /// elementalist_gain_shaper_of_desolation_every_10_seconds /// - ElementalistGainShaperOfDesolationEvery10Seconds = 5023, - + ElementalistGainShaperOfDesolationEvery10Seconds = 5026, + /// /// monster_delay_item_drops_millis /// - MonsterDelayItemDropsMillis = 5024, - + MonsterDelayItemDropsMillis = 5027, + /// /// map_area_contains_grandmaster_ally /// - MapAreaContainsGrandmasterAlly = 5025, - + MapAreaContainsGrandmasterAlly = 5028, + /// /// map_contains_creeping_agony /// - MapContainsCreepingAgony = 5026, - + MapContainsCreepingAgony = 5029, + /// /// map_portals_do_not_expire /// - MapPortalsDoNotExpire = 5027, - + MapPortalsDoNotExpire = 5030, + /// /// map_monsters_are_converted_on_kill /// - MapMonstersAreConvertedOnKill = 5028, - + MapMonstersAreConvertedOnKill = 5031, + /// /// map_contains_x_fewer_portals /// - MapContainsXFewerPortals = 5029, - + MapContainsXFewerPortals = 5032, + /// /// monsters_are_converted_on_kill /// - MonstersAreConvertedOnKill = 5030, - + MonstersAreConvertedOnKill = 5033, + /// /// map_no_uniques_drop_randomly /// - MapNoUniquesDropRandomly = 5031, - + MapNoUniquesDropRandomly = 5034, + /// /// map_players_additional_number_of_projectiles /// - MapPlayersAdditionalNumberOfProjectiles = 5032, - + MapPlayersAdditionalNumberOfProjectiles = 5035, + /// /// map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on /// - MapDamagePctOfTypeInflictedByCurrentGroundEffectYouAreOn = 5033, - + MapDamagePctOfTypeInflictedByCurrentGroundEffectYouAreOn = 5036, + /// /// on_desecrated_ground /// - OnDesecratedGround = 5034, - + OnDesecratedGround = 5037, + /// /// map_players_and_monsters_curses_are_reflected /// - MapPlayersAndMonstersCursesAreReflected = 5035, - + MapPlayersAndMonstersCursesAreReflected = 5038, + /// /// map_player_has_level_X_silence /// - MapPlayerHasLevelXSilence = 5036, - + MapPlayerHasLevelXSilence = 5039, + /// /// map_strongbox_items_dropped_are_mirrored /// - MapStrongboxItemsDroppedAreMirrored = 5037, - + MapStrongboxItemsDroppedAreMirrored = 5040, + /// /// map_players_are_poisoned_while_moving_chaos_damage_per_second /// - MapPlayersArePoisonedWhileMovingChaosDamagePerSecond = 5038, - + MapPlayersArePoisonedWhileMovingChaosDamagePerSecond = 5041, + /// /// discharge_triggered_damage_+%_final /// - DischargeTriggeredDamagePctFinal = 5039, - + DischargeTriggeredDamagePctFinal = 5042, + /// /// map_normal_items_drop_as_magic /// - MapNormalItemsDropAsMagic = 5040, - + MapNormalItemsDropAsMagic = 5043, + /// /// monster_no_additional_player_scaling /// - MonsterNoAdditionalPlayerScaling = 5041, - + MonsterNoAdditionalPlayerScaling = 5044, + /// /// phase_through_objects_while_spider /// - PhaseThroughObjectsWhileSpider = 5042, - + PhaseThroughObjectsWhileSpider = 5045, + /// /// map_flask_charges_recovered_per_3_seconds_% /// - MapFlaskChargesRecoveredPer3SecondsPct = 5043, - + MapFlaskChargesRecoveredPer3SecondsPct = 5046, + /// /// virtual_flask_charges_recovered_per_3_seconds_% /// - VirtualFlaskChargesRecoveredPer3SecondsPct = 5044, - + VirtualFlaskChargesRecoveredPer3SecondsPct = 5047, + /// /// combined_hit_all_damage_+%_final /// - CombinedHitAllDamagePctFinal = 5045, - + CombinedHitAllDamagePctFinal = 5048, + /// /// support_remote_mine_hit_damage_+%_final /// - SupportRemoteMineHitDamagePctFinal = 5046, - + SupportRemoteMineHitDamagePctFinal = 5049, + /// /// map_magic_items_drop_as_normal /// - MapMagicItemsDropAsNormal = 5047, - + MapMagicItemsDropAsNormal = 5050, + /// /// flask_charges_recovered_per_3_seconds_% /// - FlaskChargesRecoveredPer3SecondsPct = 5048, - + FlaskChargesRecoveredPer3SecondsPct = 5051, + /// /// support_trap_hit_damage_+%_final /// - SupportTrapHitDamagePctFinal = 5049, - + SupportTrapHitDamagePctFinal = 5052, + /// /// damage_vs_tiki_totems_+% /// - DamageVsTikiTotemsPct = 5050, - + DamageVsTikiTotemsPct = 5053, + /// /// is_tiki_totem /// - IsTikiTotem = 5051, - + IsTikiTotem = 5054, + /// /// self_ignite_duration_+%_final /// - SelfIgniteDurationPctFinal = 5052, - + SelfIgniteDurationPctFinal = 5055, + /// /// self_bleed_duration_+%_final /// - SelfBleedDurationPctFinal = 5053, - + SelfBleedDurationPctFinal = 5056, + /// /// self_poison_duration_+%_final /// - SelfPoisonDurationPctFinal = 5054, - + SelfPoisonDurationPctFinal = 5057, + /// /// treasure_pile_damage_+%_final /// - TreasurePileDamagePctFinal = 5055, - + TreasurePileDamagePctFinal = 5058, + /// /// map_contains_additional_packs_of_fire_monsters /// - MapContainsAdditionalPacksOfFireMonsters = 5056, - + MapContainsAdditionalPacksOfFireMonsters = 5059, + /// /// map_contains_additional_packs_of_chaos_monsters /// - MapContainsAdditionalPacksOfChaosMonsters = 5057, - + MapContainsAdditionalPacksOfChaosMonsters = 5060, + /// /// map_contains_additional_packs_of_physical_monsters /// - MapContainsAdditionalPacksOfPhysicalMonsters = 5058, - + MapContainsAdditionalPacksOfPhysicalMonsters = 5061, + /// /// map_contains_additional_packs_of_lightning_monsters /// - MapContainsAdditionalPacksOfLightningMonsters = 5059, - + MapContainsAdditionalPacksOfLightningMonsters = 5062, + /// /// map_contains_additional_packs_of_cold_monsters /// - MapContainsAdditionalPacksOfColdMonsters = 5060, - + MapContainsAdditionalPacksOfColdMonsters = 5063, + /// /// map_players_and_monsters_fire_damage_taken_+% /// - MapPlayersAndMonstersFireDamageTakenPct = 5061, - + MapPlayersAndMonstersFireDamageTakenPct = 5064, + /// /// map_players_and_monsters_chaos_damage_taken_+% /// - MapPlayersAndMonstersChaosDamageTakenPct = 5062, - + MapPlayersAndMonstersChaosDamageTakenPct = 5065, + /// /// map_players_and_monsters_physical_damage_taken_+% /// - MapPlayersAndMonstersPhysicalDamageTakenPct = 5063, - + MapPlayersAndMonstersPhysicalDamageTakenPct = 5066, + /// /// map_players_and_monsters_lightning_damage_taken_+% /// - MapPlayersAndMonstersLightningDamageTakenPct = 5064, - + MapPlayersAndMonstersLightningDamageTakenPct = 5067, + /// /// map_players_and_monsters_cold_damage_taken_+% /// - MapPlayersAndMonstersColdDamageTakenPct = 5065, - + MapPlayersAndMonstersColdDamageTakenPct = 5068, + /// /// map_players_and_monsters_have_onslaught_if_hit_recently /// - MapPlayersAndMonstersHaveOnslaughtIfHitRecently = 5066, - + MapPlayersAndMonstersHaveOnslaughtIfHitRecently = 5069, + /// /// map_players_and_monsters_damage_taken_+%_while_stationary /// - MapPlayersAndMonstersDamageTakenPctWhileStationary = 5067, - + MapPlayersAndMonstersDamageTakenPctWhileStationary = 5070, + /// /// chance_to_poison_on_melee_hit_% /// - ChanceToPoisonOnMeleeHitPct = 5068, - + ChanceToPoisonOnMeleeHitPct = 5071, + /// /// chilled_ground_effect_+% /// - ChilledGroundEffectPct = 5069, - + ChilledGroundEffectPct = 5072, + /// /// damage_vs_spiders_while_spider_+% /// - DamageVsSpidersWhileSpiderPct = 5070, - + DamageVsSpidersWhileSpiderPct = 5073, + /// /// damage_taken_from_spiders_while_spider_+% /// - DamageTakenFromSpidersWhileSpiderPct = 5071, - + DamageTakenFromSpidersWhileSpiderPct = 5074, + /// /// map_players_and_monsters_movement_speed_+% /// - MapPlayersAndMonstersMovementSpeedPct = 5072, - + MapPlayersAndMonstersMovementSpeedPct = 5075, + /// /// damage_taken_+%_for_4_seconds_after_spending_200_mana /// - DamageTakenPctFor4SecondsAfterSpending200Mana = 5073, - + DamageTakenPctFor4SecondsAfterSpending200Mana = 5076, + /// /// life_regeneration_per_minute_per_active_buff /// - LifeRegenerationPerMinutePerActiveBuff = 5074, - + LifeRegenerationPerMinutePerActiveBuff = 5077, + /// /// buff_effect_+%_on_low_energy_shield /// - BuffEffectPctOnLowEnergyShield = 5075, - + BuffEffectPctOnLowEnergyShield = 5078, + /// /// on_low_energy_shield /// - OnLowEnergyShield = 5076, - + OnLowEnergyShield = 5079, + /// /// map_ground_haste_action_speed_+% /// - MapGroundHasteActionSpeedPct = 5077, - + MapGroundHasteActionSpeedPct = 5080, + /// /// map_drops_all_maps /// - MapDropsAllMaps = 5078, - + MapDropsAllMaps = 5081, + /// /// essence_delirium_spawn_monster_on_death_variation /// - EssenceDeliriumSpawnMonsterOnDeathVariation = 5079, - + EssenceDeliriumSpawnMonsterOnDeathVariation = 5082, + /// /// essence_anguish_spawn_monster_on_death_variation /// - EssenceAnguishSpawnMonsterOnDeathVariation = 5080, - + EssenceAnguishSpawnMonsterOnDeathVariation = 5083, + /// /// essence_suffering_spawn_monster_on_death_variation /// - EssenceSufferingSpawnMonsterOnDeathVariation = 5081, - + EssenceSufferingSpawnMonsterOnDeathVariation = 5084, + /// /// essence_corrupt_spawn_monster_on_death_variation /// - EssenceCorruptSpawnMonsterOnDeathVariation = 5082, - + EssenceCorruptSpawnMonsterOnDeathVariation = 5085, + /// /// map_ground_haste_effect_patches_per_100_tiles /// - MapGroundHasteEffectPatchesPer100Tiles = 5083, - + MapGroundHasteEffectPatchesPer100Tiles = 5086, + /// /// map_ground_haste_effect_radius /// - MapGroundHasteEffectRadius = 5084, - + MapGroundHasteEffectRadius = 5087, + /// /// map_breach_rules /// - MapBreachRules = 5085, - + MapBreachRules = 5088, + /// /// cannot_regenerate_energy_shield /// - CannotRegenerateEnergyShield = 5086, - + CannotRegenerateEnergyShield = 5089, + /// /// cannot_recharge_energy_shield /// - CannotRechargeEnergyShield = 5087, - + CannotRechargeEnergyShield = 5090, + /// /// energy_shield_lost_per_minute_% /// - EnergyShieldLostPerMinutePct = 5088, - + EnergyShieldLostPerMinutePct = 5091, + /// /// life_leech_applies_to_energy_shield_on_full_life /// - LifeLeechAppliesToEnergyShieldOnFullLife = 5089, - + LifeLeechAppliesToEnergyShieldOnFullLife = 5092, + /// /// virtual_leech_energy_shield_instead_of_life /// - VirtualLeechEnergyShieldInsteadOfLife = 5090, - + VirtualLeechEnergyShieldInsteadOfLife = 5093, + /// /// current_number_of_spinning_blades /// - CurrentNumberOfSpinningBlades = 5091, - + CurrentNumberOfSpinningBlades = 5094, + /// /// virtual_current_number_of_spinning_blades /// - VirtualCurrentNumberOfSpinningBlades = 5092, - + VirtualCurrentNumberOfSpinningBlades = 5095, + /// /// vaal_blade_vortex_has_10_spinning_blades /// - VaalBladeVortexHas10SpinningBlades = 5093, - + VaalBladeVortexHas10SpinningBlades = 5096, + /// /// fire_beam_additional_stack_damage_+%_final /// - FireBeamAdditionalStackDamagePctFinal = 5094, - + FireBeamAdditionalStackDamagePctFinal = 5097, + /// /// number_of_blood_ravens_to_summon /// - NumberOfBloodRavensToSummon = 5095, - + NumberOfBloodRavensToSummon = 5098, + /// /// map_fishy_effect_0 /// - MapFishyEffect0 = 5096, - + MapFishyEffect0 = 5099, + /// /// map_hidden_players_have_insanity /// - MapHiddenPlayersHaveInsanity = 5097, - + MapHiddenPlayersHaveInsanity = 5100, + /// /// map_monster_and_player_onslaught_effect_+% /// - MapMonsterAndPlayerOnslaughtEffectPct = 5098, - + MapMonsterAndPlayerOnslaughtEffectPct = 5101, + /// /// map_damage_while_stationary_+% /// - MapDamageWhileStationaryPct = 5099, - + MapDamageWhileStationaryPct = 5102, + /// /// map_damage_taken_while_stationary_+% /// - MapDamageTakenWhileStationaryPct = 5100, - + MapDamageTakenWhileStationaryPct = 5103, + /// /// map_item_drop_quality_also_applies_to_map_item_drop_rarity /// - MapItemDropQualityAlsoAppliesToMapItemDropRarity = 5101, - + MapItemDropQualityAlsoAppliesToMapItemDropRarity = 5104, + /// /// map_has_x%_quality /// - MapHasXpctQuality = 5102, - + MapHasXpctQuality = 5105, + /// /// map_unique_monsters_drop_corrupted_items /// - MapUniqueMonstersDropCorruptedItems = 5103, - + MapUniqueMonstersDropCorruptedItems = 5106, + /// /// fire_beam_degen_spread_to_enemies_in_radius_on_kill /// - FireBeamDegenSpreadToEnemiesInRadiusOnKill = 5104, - + FireBeamDegenSpreadToEnemiesInRadiusOnKill = 5107, + /// /// fire_beam_enemy_fire_resistance_%_per_stack /// - FireBeamEnemyFireResistancePctPerStack = 5105, - + FireBeamEnemyFireResistancePctPerStack = 5108, + /// /// fire_beam_cast_speed_+% /// - FireBeamCastSpeedPct = 5106, - + FireBeamCastSpeedPct = 5109, + /// /// map_corrupted_bosses_drop_x_additional_vaal_items /// - MapCorruptedBossesDropXAdditionalVaalItems = 5107, - + MapCorruptedBossesDropXAdditionalVaalItems = 5110, + /// /// map_strongboxes_are_corrupted /// - MapStrongboxesAreCorrupted = 5108, - + MapStrongboxesAreCorrupted = 5111, + /// /// map_players_cannot_take_reflected_damage /// - MapPlayersCannotTakeReflectedDamage = 5109, - + MapPlayersCannotTakeReflectedDamage = 5112, + /// /// map_player_flask_recovery_is_instant /// - MapPlayerFlaskRecoveryIsInstant = 5110, - + MapPlayerFlaskRecoveryIsInstant = 5113, + /// /// map_contains_x_additional_packs_with_mirrored_rare_monsters /// - MapContainsXAdditionalPacksWithMirroredRareMonsters = 5111, - + MapContainsXAdditionalPacksWithMirroredRareMonsters = 5114, + /// /// map_contains_x_additional_healing_packs /// - MapContainsXAdditionalHealingPacks = 5112, - + MapContainsXAdditionalHealingPacks = 5115, + /// /// map_contains_x_additional_normal_packs /// - MapContainsXAdditionalNormalPacks = 5113, - + MapContainsXAdditionalNormalPacks = 5116, + /// /// map_contains_x_additional_magic_packs /// - MapContainsXAdditionalMagicPacks = 5114, - + MapContainsXAdditionalMagicPacks = 5117, + /// /// map_contains_x_additional_rare_packs /// - MapContainsXAdditionalRarePacks = 5115, - + MapContainsXAdditionalRarePacks = 5118, + /// /// map_contains_x_additional_packs_that_convert_on_death /// - MapContainsXAdditionalPacksThatConvertOnDeath = 5116, - + MapContainsXAdditionalPacksThatConvertOnDeath = 5119, + /// /// map_contains_x_additional_packs_on_their_own_team /// - MapContainsXAdditionalPacksOnTheirOwnTeam = 5117, - + MapContainsXAdditionalPacksOnTheirOwnTeam = 5120, + /// /// map_on_complete_drop_x_additional_maps /// - MapOnCompleteDropXAdditionalMaps = 5118, - + MapOnCompleteDropXAdditionalMaps = 5121, + /// /// monster_converts_on_death /// - MonsterConvertsOnDeath = 5119, - + MonsterConvertsOnDeath = 5122, + /// /// flask_recovery_is_instant /// - FlaskRecoveryIsInstant = 5120, - + FlaskRecoveryIsInstant = 5123, + /// /// map_fishy_effect_1 /// - MapFishyEffect1 = 5121, - + MapFishyEffect1 = 5124, + /// /// map_fishy_effect_2 /// - MapFishyEffect2 = 5122, - + MapFishyEffect2 = 5125, + /// /// map_fishy_effect_3 /// - MapFishyEffect3 = 5123, - + MapFishyEffect3 = 5126, + /// /// map_magic_pack_size_+% /// - MapMagicPackSizePct = 5124, - + MapMagicPackSizePct = 5127, + /// /// map_rogue_exiles_damage_+% /// - MapRogueExilesDamagePct = 5125, - + MapRogueExilesDamagePct = 5128, + /// /// map_rogue_exiles_maximum_life_+% /// - MapRogueExilesMaximumLifePct = 5126, - + MapRogueExilesMaximumLifePct = 5129, + /// /// map_rogue_exiles_drop_x_additional_jewels /// - MapRogueExilesDropXAdditionalJewels = 5127, - + MapRogueExilesDropXAdditionalJewels = 5130, + /// /// monster_drop_additional_jewels /// - MonsterDropAdditionalJewels = 5128, - + MonsterDropAdditionalJewels = 5131, + /// /// map_strongbox_monsters_item_quantity_+% /// - MapStrongboxMonstersItemQuantityPct = 5129, - + MapStrongboxMonstersItemQuantityPct = 5132, + /// /// map_strongbox_monsters_actor_scale_+% /// - MapStrongboxMonstersActorScalePct = 5130, - + MapStrongboxMonstersActorScalePct = 5133, + /// /// map_strongbox_monsters_attack_speed_+% /// - MapStrongboxMonstersAttackSpeedPct = 5131, - + MapStrongboxMonstersAttackSpeedPct = 5134, + /// /// map_strongbox_monsters_movement_velocity_+% /// - MapStrongboxMonstersMovementVelocityPct = 5132, - + MapStrongboxMonstersMovementVelocityPct = 5135, + /// /// strongbox_monsters_item_quantity_+% /// - StrongboxMonstersItemQuantityPct = 5133, - + StrongboxMonstersItemQuantityPct = 5136, + /// /// strongbox_monsters_actor_scale_+% /// - StrongboxMonstersActorScalePct = 5134, - + StrongboxMonstersActorScalePct = 5137, + /// /// strongbox_monsters_attack_speed_+% /// - StrongboxMonstersAttackSpeedPct = 5135, - + StrongboxMonstersAttackSpeedPct = 5138, + /// /// strongbox_monsters_movement_velocity_+% /// - StrongboxMonstersMovementVelocityPct = 5136, - + StrongboxMonstersMovementVelocityPct = 5139, + /// /// damage_+%_per_poison_stack /// - DamagePctPerPoisonStack = 5137, - + DamagePctPerPoisonStack = 5140, + /// /// movement_velocity_+%_per_poison_stack /// - MovementVelocityPctPerPoisonStack = 5138, - + MovementVelocityPctPerPoisonStack = 5141, + /// /// map_damage_+%_per_poison_stack /// - MapDamagePctPerPoisonStack = 5139, - + MapDamagePctPerPoisonStack = 5142, + /// /// map_movement_velocity_+%_per_poison_stack /// - MapMovementVelocityPctPerPoisonStack = 5140, - + MapMovementVelocityPctPerPoisonStack = 5143, + /// /// map_contains_x_additional_poison_packs /// - MapContainsXAdditionalPoisonPacks = 5141, - + MapContainsXAdditionalPoisonPacks = 5144, + /// /// inspiring_cry_enemy_count_override /// - InspiringCryEnemyCountOverride = 5142, - + InspiringCryEnemyCountOverride = 5145, + /// /// map_area_contains_x_additional_clusters_of_explosive_barrels /// - MapAreaContainsXAdditionalClustersOfExplosiveBarrels = 5143, - + MapAreaContainsXAdditionalClustersOfExplosiveBarrels = 5146, + /// /// map_bonus_barrel_% /// - MapBonusBarrelPct = 5144, - + MapBonusBarrelPct = 5147, + /// /// empowering_cry_physical_damage_added_as_fire_damage_% /// - EmpoweringCryPhysicalDamageAddedAsFireDamagePct = 5145, - + EmpoweringCryPhysicalDamageAddedAsFireDamagePct = 5148, + /// /// map_boss_accompanied_by_bodyguards /// - MapBossAccompaniedByBodyguards = 5146, - + MapBossAccompaniedByBodyguards = 5149, + /// /// blade_vortex_hit_rate_+%_per_blade /// - BladeVortexHitRatePctPerBlade = 5147, - + BladeVortexHitRatePctPerBlade = 5150, + /// /// blade_vortex_damage_+%_per_blade_final /// - BladeVortexDamagePctPerBladeFinal = 5148, - + BladeVortexDamagePctPerBladeFinal = 5151, + /// /// golem_maximum_life_+% /// - GolemMaximumLifePct = 5149, - + GolemMaximumLifePct = 5152, + /// /// golem_life_regeneration_per_minute_% /// - GolemLifeRegenerationPerMinutePct = 5150, - + GolemLifeRegenerationPerMinutePct = 5153, + /// /// have_summoned_a_golem_in_past_8_seconds /// - HaveSummonedAGolemInPast8Seconds = 5151, - + HaveSummonedAGolemInPast8Seconds = 5154, + /// /// damage_+%_if_golem_summoned_in_past_8_seconds /// - DamagePctIfGolemSummonedInPast8Seconds = 5152, - + DamagePctIfGolemSummonedInPast8Seconds = 5155, + /// /// golem_damage_+%_if_summoned_in_past_8_seconds /// - GolemDamagePctIfSummonedInPast8Seconds = 5153, - + GolemDamagePctIfSummonedInPast8Seconds = 5156, + /// /// golem_skill_cooldown_recovery_+% /// - GolemSkillCooldownRecoveryPct = 5154, - + GolemSkillCooldownRecoveryPct = 5157, + /// /// golem_cooldown_recovery_+% /// - GolemCooldownRecoveryPct = 5155, - + GolemCooldownRecoveryPct = 5158, + /// /// golem_buff_effect_+% /// - GolemBuffEffectPct = 5156, - + GolemBuffEffectPct = 5159, + /// /// golem_attack_and_cast_speed_+% /// - GolemAttackAndCastSpeedPct = 5157, - + GolemAttackAndCastSpeedPct = 5160, + /// /// golem_physical_damage_reduction_rating /// - GolemPhysicalDamageReductionRating = 5158, - + GolemPhysicalDamageReductionRating = 5161, + /// /// primordial_jewel_count /// - PrimordialJewelCount = 5159, - + PrimordialJewelCount = 5162, + /// /// number_of_golems_allowed_with_3_primordial_jewels /// - NumberOfGolemsAllowedWith3PrimordialJewels = 5160, - + NumberOfGolemsAllowedWith3PrimordialJewels = 5163, + /// /// map_monster_curse_effect_on_self_+% /// - MapMonsterCurseEffectOnSelfPct = 5161, - + MapMonsterCurseEffectOnSelfPct = 5164, + /// /// map_player_curse_effect_on_self_+% /// - MapPlayerCurseEffectOnSelfPct = 5162, - + MapPlayerCurseEffectOnSelfPct = 5165, + /// /// thrown_shield_num_additional_projectiles /// - ThrownShieldNumAdditionalProjectiles = 5163, - + ThrownShieldNumAdditionalProjectiles = 5166, + /// /// buff_damage_while_stationery_+% /// - BuffDamageWhileStationeryPct = 5164, - + BuffDamageWhileStationeryPct = 5167, + /// /// buff_damage_taken_while_stationery_+% /// - BuffDamageTakenWhileStationeryPct = 5165, - + BuffDamageTakenWhileStationeryPct = 5168, + /// /// map_display_strongbox_monsters_are_enraged /// - MapDisplayStrongboxMonstersAreEnraged = 5166, - + MapDisplayStrongboxMonstersAreEnraged = 5169, + /// /// celestial_footprints_from_item /// - CelestialFootprintsFromItem = 5167, - + CelestialFootprintsFromItem = 5170, + /// /// deal_1000_chaos_damage_per_second_for_10_seconds_on_hit /// - Deal1000ChaosDamagePerSecondFor10SecondsOnHit = 5168, - + Deal1000ChaosDamagePerSecondFor10SecondsOnHit = 5171, + /// /// map_strongboxes_minimum_rarity /// - MapStrongboxesMinimumRarity = 5169, - + MapStrongboxesMinimumRarity = 5172, + /// /// map_area_contains_x_additional_clusters_of_wealthy_barrels /// - MapAreaContainsXAdditionalClustersOfWealthyBarrels = 5170, - + MapAreaContainsXAdditionalClustersOfWealthyBarrels = 5173, + /// /// map_area_contains_x_additional_clusters_of_volatile_barrels /// - MapAreaContainsXAdditionalClustersOfVolatileBarrels = 5171, - + MapAreaContainsXAdditionalClustersOfVolatileBarrels = 5174, + /// /// map_area_contains_x_additional_clusters_of_bloodworm_barrels /// - MapAreaContainsXAdditionalClustersOfBloodwormBarrels = 5172, - + MapAreaContainsXAdditionalClustersOfBloodwormBarrels = 5175, + /// /// map_area_contains_x_additional_clusters_of_parasite_barrels /// - MapAreaContainsXAdditionalClustersOfParasiteBarrels = 5173, - + MapAreaContainsXAdditionalClustersOfParasiteBarrels = 5176, + /// /// map_area_contains_x_additional_clusters_of_beacon_barrels /// - MapAreaContainsXAdditionalClustersOfBeaconBarrels = 5174, - + MapAreaContainsXAdditionalClustersOfBeaconBarrels = 5177, + /// /// map_contains_x_additional_rare_packs_if_rare /// - MapContainsXAdditionalRarePacksIfRare = 5175, - + MapContainsXAdditionalRarePacksIfRare = 5178, + /// /// map_contains_x_additional_magic_packs_if_magic /// - MapContainsXAdditionalMagicPacksIfMagic = 5176, - + MapContainsXAdditionalMagicPacksIfMagic = 5179, + /// /// map_contains_x_additional_normal_packs_if_normal /// - MapContainsXAdditionalNormalPacksIfNormal = 5177, - + MapContainsXAdditionalNormalPacksIfNormal = 5180, + /// /// map_boss_drops_x_additional_vaal_items /// - MapBossDropsXAdditionalVaalItems = 5178, - + MapBossDropsXAdditionalVaalItems = 5181, + /// /// fire_beam_length_+% /// - FireBeamLengthPct = 5179, - + FireBeamLengthPct = 5182, + /// /// is_breach_monster /// - IsBreachMonster = 5180, - + IsBreachMonster = 5183, + /// /// cast_linked_spells_on_shocked_enemy_kill_% /// - CastLinkedSpellsOnShockedEnemyKillPct = 5181, - + CastLinkedSpellsOnShockedEnemyKillPct = 5184, + /// /// map_equipment_drops_identified_in_identified_areas /// - MapEquipmentDropsIdentifiedInIdentifiedAreas = 5182, - + MapEquipmentDropsIdentifiedInIdentifiedAreas = 5185, + /// /// map_items_drop_corrupted_% /// - MapItemsDropCorruptedPct = 5183, - + MapItemsDropCorruptedPct = 5186, + /// /// doom_arrow_area_of_effect_+%_final_per_frenzy_charge /// - DoomArrowAreaOfEffectPctFinalPerFrenzyCharge = 5184, - + DoomArrowAreaOfEffectPctFinalPerFrenzyCharge = 5187, + /// /// bonespire_number_of_bone_piles_to_spawn /// - BonespireNumberOfBonePilesToSpawn = 5185, - + BonespireNumberOfBonePilesToSpawn = 5188, + /// /// mortar_cone_angle /// - MortarConeAngle = 5186, - + MortarConeAngle = 5189, + /// /// current_consume_charges /// - CurrentConsumeCharges = 5187, - + CurrentConsumeCharges = 5190, + /// /// maximum_consume_charges /// - MaximumConsumeCharges = 5188, - + MaximumConsumeCharges = 5191, + /// /// expend_consume_charges_on_skill_use /// - ExpendConsumeChargesOnSkillUse = 5189, - + ExpendConsumeChargesOnSkillUse = 5192, + /// /// gain_consume_charges_on_skill_use /// - GainConsumeChargesOnSkillUse = 5190, - + GainConsumeChargesOnSkillUse = 5193, + /// /// secondary_skill_effect_duration_+% /// - SecondarySkillEffectDurationPct = 5191, - + SecondarySkillEffectDurationPct = 5194, + /// /// X_armour_per_active_totem /// - XArmourPerActiveTotem = 5192, - + XArmourPerActiveTotem = 5195, + /// /// map_pack_size_+%_in_unidentified_areas /// - MapPackSizePctInUnidentifiedAreas = 5193, - + MapPackSizePctInUnidentifiedAreas = 5196, + /// /// chance_to_dodge_%_at_max_charged_attack_stacks /// - ChanceToDodgePctAtMaxChargedAttackStacks = 5194, - + ChanceToDodgePctAtMaxChargedAttackStacks = 5197, + /// /// critical_strikes_deal_no_damage /// - CriticalStrikesDealNoDamage = 5195, - + CriticalStrikesDealNoDamage = 5198, + /// /// spell_damage_+%_if_have_crit_recently /// - SpellDamagePctIfHaveCritRecently = 5196, - + SpellDamagePctIfHaveCritRecently = 5199, + /// /// critical_strike_multiplier_+_if_have_dealt_non_crit_recently /// - CriticalStrikeMultiplierIfHaveDealtNonCritRecently = 5197, - + CriticalStrikeMultiplierIfHaveDealtNonCritRecently = 5200, + /// /// track_have_dealt_non_crit_recently /// - TrackHaveDealtNonCritRecently = 5198, - + TrackHaveDealtNonCritRecently = 5201, + /// /// have_dealt_non_crit_recently /// - HaveDealtNonCritRecently = 5199, - + HaveDealtNonCritRecently = 5202, + /// /// total_base_armour_rating /// - TotalBaseArmourRating = 5200, - + TotalBaseArmourRating = 5203, + /// /// combined_only_armour_+% /// - CombinedOnlyArmourPct = 5201, - + CombinedOnlyArmourPct = 5204, + /// /// combined_armour_+% /// - CombinedArmourPct = 5202, - + CombinedArmourPct = 5205, + /// /// combined_only_armour_+%_final /// - CombinedOnlyArmourPctFinal = 5203, - + CombinedOnlyArmourPctFinal = 5206, + /// /// combined_evasion_rating_+%_final /// - CombinedEvasionRatingPctFinal = 5204, - + CombinedEvasionRatingPctFinal = 5207, + /// /// combined_only_armour_from_shield_+% /// - CombinedOnlyArmourFromShieldPct = 5205, - + CombinedOnlyArmourFromShieldPct = 5208, + /// /// combined_armour_from_shield_+% /// - CombinedArmourFromShieldPct = 5206, - + CombinedArmourFromShieldPct = 5209, + /// /// armour_differs_against_projectiles /// - ArmourDiffersAgainstProjectiles = 5207, - + ArmourDiffersAgainstProjectiles = 5210, + /// /// armour_while_stationary /// - ArmourWhileStationary = 5208, - + ArmourWhileStationary = 5211, + /// /// mana_regeneration_rate_+%_while_stationary /// - ManaRegenerationRatePctWhileStationary = 5209, - + ManaRegenerationRatePctWhileStationary = 5212, + /// /// non_critical_strikes_deal_no_damage /// - NonCriticalStrikesDealNoDamage = 5210, - + NonCriticalStrikesDealNoDamage = 5213, + /// /// chilled_ground_when_hit_with_attack_% /// - ChilledGroundWhenHitWithAttackPct = 5211, - + ChilledGroundWhenHitWithAttackPct = 5214, + /// /// critical_strike_multiplier_+_per_1%_block_chance /// - CriticalStrikeMultiplierPer1PctBlockChance = 5212, - + CriticalStrikeMultiplierPer1PctBlockChance = 5215, + /// /// local_flask_unholy_might_during_flask_effect /// - LocalFlaskUnholyMightDuringFlaskEffect = 5213, - + LocalFlaskUnholyMightDuringFlaskEffect = 5216, + /// /// spell_minimum_added_cold_damage_per_power_charge /// - SpellMinimumAddedColdDamagePerPowerCharge = 5214, - + SpellMinimumAddedColdDamagePerPowerCharge = 5217, + /// /// spell_maximum_added_cold_damage_per_power_charge /// - SpellMaximumAddedColdDamagePerPowerCharge = 5215, - + SpellMaximumAddedColdDamagePerPowerCharge = 5218, + /// /// recover_X_mana_on_killing_frozen_enemy /// - RecoverXManaOnKillingFrozenEnemy = 5216, - + RecoverXManaOnKillingFrozenEnemy = 5219, + /// /// chance_to_gain_power_charge_on_killing_frozen_enemy_% /// - ChanceToGainPowerChargeOnKillingFrozenEnemyPct = 5217, - + ChanceToGainPowerChargeOnKillingFrozenEnemyPct = 5220, + /// /// damage_+%_if_you_have_frozen_enemy_recently /// - DamagePctIfYouHaveFrozenEnemyRecently = 5218, - + DamagePctIfYouHaveFrozenEnemyRecently = 5221, + /// /// track_have_frozen_enemy_recently /// - TrackHaveFrozenEnemyRecently = 5219, - + TrackHaveFrozenEnemyRecently = 5222, + /// /// have_frozen_enemy_recently /// - HaveFrozenEnemyRecently = 5220, - + HaveFrozenEnemyRecently = 5223, + /// /// maximum_added_lightning_damage_per_10_int /// - MaximumAddedLightningDamagePer10Int = 5221, - + MaximumAddedLightningDamagePer10Int = 5224, + /// /// attack_speed_+%_per_25_dex /// - AttackSpeedPctPer25Dex = 5222, - + AttackSpeedPctPer25Dex = 5225, + /// /// number_of_shocked_enemies_killed_recently /// - NumberOfShockedEnemiesKilledRecently = 5223, - + NumberOfShockedEnemiesKilledRecently = 5226, + /// /// minimum_added_lightning_damage_per_shocked_enemy_killed_recently /// - MinimumAddedLightningDamagePerShockedEnemyKilledRecently = 5224, - + MinimumAddedLightningDamagePerShockedEnemyKilledRecently = 5227, + /// /// maximum_added_lightning_damage_per_shocked_enemy_killed_recently /// - MaximumAddedLightningDamagePerShockedEnemyKilledRecently = 5225, - + MaximumAddedLightningDamagePerShockedEnemyKilledRecently = 5228, + /// /// reflect_shocks /// - ReflectShocks = 5226, - + ReflectShocks = 5229, + /// /// movement_speed_+%_while_bleeding /// - MovementSpeedPctWhileBleeding = 5227, - + MovementSpeedPctWhileBleeding = 5230, + /// /// physical_damage_taken_+%_while_moving /// - PhysicalDamageTakenPctWhileMoving = 5228, - + PhysicalDamageTakenPctWhileMoving = 5231, + /// /// physical_damage_reduction_rating_%_while_not_moving /// - PhysicalDamageReductionRatingPctWhileNotMoving = 5229, - + PhysicalDamageReductionRatingPctWhileNotMoving = 5232, + /// /// display_max_fire_beam_stacks /// - DisplayMaxFireBeamStacks = 5230, - + DisplayMaxFireBeamStacks = 5233, + /// /// display_max_blight_stacks /// - DisplayMaxBlightStacks = 5231, - + DisplayMaxBlightStacks = 5234, + /// /// virtual_track_movement /// - VirtualTrackMovement = 5232, - + VirtualTrackMovement = 5235, + /// /// is_moving /// - IsMoving = 5233, - + IsMoving = 5236, + /// /// mass_flicker_strike_number_of_teleports /// - MassFlickerStrikeNumberOfTeleports = 5234, - + MassFlickerStrikeNumberOfTeleports = 5237, + /// /// blind_chilled_enemies_on_hit_% /// - BlindChilledEnemiesOnHitPct = 5235, - + BlindChilledEnemiesOnHitPct = 5238, + /// /// cold_damage_+%_per_frenzy_charge /// - ColdDamagePctPerFrenzyCharge = 5236, - + ColdDamagePctPerFrenzyCharge = 5239, + /// /// gain_frenzy_charge_on_reaching_maximum_power_charges /// - GainFrenzyChargeOnReachingMaximumPowerCharges = 5237, - + GainFrenzyChargeOnReachingMaximumPowerCharges = 5240, + /// /// gain_frenzy_charge_on_hit_while_bleeding /// - GainFrenzyChargeOnHitWhileBleeding = 5238, - + GainFrenzyChargeOnHitWhileBleeding = 5241, + /// /// virtual_chaos_damage_does_not_bypass_energy_shield /// - VirtualChaosDamageDoesNotBypassEnergyShield = 5239, - + VirtualChaosDamageDoesNotBypassEnergyShield = 5242, + /// /// chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana /// - ChaosDamageDoesNotBypassEnergyShieldWhileNotLowLifeOrMana = 5240, - + ChaosDamageDoesNotBypassEnergyShieldWhileNotLowLifeOrMana = 5243, + /// /// local_display_grants_level_X_reckoning /// - LocalDisplayGrantsLevelXReckoning = 5241, - + LocalDisplayGrantsLevelXReckoning = 5244, + /// /// reflect_shocks_to_enemies_in_radius /// - ReflectShocksToEnemiesInRadius = 5242, - + ReflectShocksToEnemiesInRadius = 5245, + /// /// recover_%_maximum_life_on_killing_poisoned_enemy /// - RecoverPctMaximumLifeOnKillingPoisonedEnemy = 5243, - + RecoverPctMaximumLifeOnKillingPoisonedEnemy = 5246, + /// /// minions_recover_%_maximum_life_on_killing_poisoned_enemy /// - MinionsRecoverPctMaximumLifeOnKillingPoisonedEnemy = 5244, - + MinionsRecoverPctMaximumLifeOnKillingPoisonedEnemy = 5247, + /// /// recover_X_life_on_enemy_ignited /// - RecoverXLifeOnEnemyIgnited = 5245, - + RecoverXLifeOnEnemyIgnited = 5248, + /// /// cold_penetration_%_vs_chilled_enemies /// - ColdPenetrationPctVsChilledEnemies = 5246, - + ColdPenetrationPctVsChilledEnemies = 5249, + /// /// local_display_grants_level_X_envy /// - LocalDisplayGrantsLevelXEnvy = 5247, - + LocalDisplayGrantsLevelXEnvy = 5250, + /// /// cast_on_cyclone_contact_% /// - CastOnCycloneContactPct = 5248, - + CastOnCycloneContactPct = 5251, + /// /// cyclone_has_triggered_skill /// - CycloneHasTriggeredSkill = 5249, - + CycloneHasTriggeredSkill = 5252, + /// /// minions_chance_to_poison_on_hit_% /// - MinionsChanceToPoisonOnHitPct = 5250, - + MinionsChanceToPoisonOnHitPct = 5253, + /// /// X_armour_if_you_have_blocked_recently /// - XArmourIfYouHaveBlockedRecently = 5251, - + XArmourIfYouHaveBlockedRecently = 5254, + /// /// enemies_explode_on_kill /// - EnemiesExplodeOnKill = 5252, - + EnemiesExplodeOnKill = 5255, + /// /// local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill /// - LocalDisplayAttackWithLevelXBoneNovaOnBleedingEnemyKill = 5253, - + LocalDisplayAttackWithLevelXBoneNovaOnBleedingEnemyKill = 5256, + /// /// attack_trigger_on_killing_bleeding_enemy_% /// - AttackTriggerOnKillingBleedingEnemyPct = 5254, - + AttackTriggerOnKillingBleedingEnemyPct = 5257, + /// /// permanently_intimidate_enemy_on_block /// - PermanentlyIntimidateEnemyOnBlock = 5255, - + PermanentlyIntimidateEnemyOnBlock = 5258, + /// /// receive_bleeding_chance_%_when_hit_by_attack /// - ReceiveBleedingChancePctWhenHitByAttack = 5256, - + ReceiveBleedingChancePctWhenHitByAttack = 5259, + /// /// attacks_cause_bleeding_vs_cursed_enemies /// - AttacksCauseBleedingVsCursedEnemies = 5257, - + AttacksCauseBleedingVsCursedEnemies = 5260, + /// /// armour_increased_by_uncapped_fire_resistance /// - ArmourIncreasedByUncappedFireResistance = 5258, - + ArmourIncreasedByUncappedFireResistance = 5261, + /// /// evasion_rating_increased_by_uncapped_cold_resistance /// - EvasionRatingIncreasedByUncappedColdResistance = 5259, - + EvasionRatingIncreasedByUncappedColdResistance = 5262, + /// /// critical_strike_chance_increased_by_uncapped_lightning_resistance /// - CriticalStrikeChanceIncreasedByUncappedLightningResistance = 5260, - + CriticalStrikeChanceIncreasedByUncappedLightningResistance = 5263, + /// /// combined_critical_strike_chance_+% /// - CombinedCriticalStrikeChancePct = 5261, - + CombinedCriticalStrikeChancePct = 5264, + /// /// combined_critical_strike_chance_+%_final /// - CombinedCriticalStrikeChancePctFinal = 5262, - + CombinedCriticalStrikeChancePctFinal = 5265, + /// /// totems_cannot_evade /// - TotemsCannotEvade = 5263, - + TotemsCannotEvade = 5266, + /// /// disable_seek_seal_prophecies /// - DisableSeekSealProphecies = 5264, - + DisableSeekSealProphecies = 5267, + /// /// mortar_distance_in_front_of_target /// - MortarDistanceInFrontOfTarget = 5265, - + MortarDistanceInFrontOfTarget = 5268, + /// /// apply_covered_in_ash_to_attacker_when_hit_% /// - ApplyCoveredInAshToAttackerWhenHitPct = 5266, - + ApplyCoveredInAshToAttackerWhenHitPct = 5269, + /// /// covered_in_ash_movement_speed_+%_final /// - CoveredInAshMovementSpeedPctFinal = 5267, - + CoveredInAshMovementSpeedPctFinal = 5270, + /// /// secondary_total_minimum_base_physical_damage /// - SecondaryTotalMinimumBasePhysicalDamage = 5268, - + SecondaryTotalMinimumBasePhysicalDamage = 5271, + /// /// secondary_total_maximum_base_physical_damage /// - SecondaryTotalMaximumBasePhysicalDamage = 5269, - + SecondaryTotalMaximumBasePhysicalDamage = 5272, + /// /// minimum_secondary_physical_damage_per_15_strength /// - MinimumSecondaryPhysicalDamagePer15Strength = 5270, - + MinimumSecondaryPhysicalDamagePer15Strength = 5273, + /// /// maximum_secondary_physical_damage_per_15_strength /// - MaximumSecondaryPhysicalDamagePer15Strength = 5271, - + MaximumSecondaryPhysicalDamagePer15Strength = 5274, + /// /// flame_geyser_number_of_splits /// - FlameGeyserNumberOfSplits = 5272, - + FlameGeyserNumberOfSplits = 5275, + /// /// keystone_avatar_of_fire /// - KeystoneAvatarOfFire = 5273, - + KeystoneAvatarOfFire = 5276, + /// /// keystone_eldritch_battery /// - KeystoneEldritchBattery = 5274, - + KeystoneEldritchBattery = 5277, + /// /// keystone_ancestral_bond /// - KeystoneAncestralBond = 5275, - + KeystoneAncestralBond = 5278, + /// /// skeletal_chains_no_minions_damage_+%_final /// - SkeletalChainsNoMinionsDamagePctFinal = 5276, - + SkeletalChainsNoMinionsDamagePctFinal = 5279, + /// /// virtual_energy_shield_protects_mana /// - VirtualEnergyShieldProtectsMana = 5277, - + VirtualEnergyShieldProtectsMana = 5280, + /// /// virtual_spend_energy_shield_for_costs_before_mana /// - VirtualSpendEnergyShieldForCostsBeforeMana = 5278, - + VirtualSpendEnergyShieldForCostsBeforeMana = 5281, + /// /// shock_nova_skill_area_of_effect_+%_per_contact_point /// - ShockNovaSkillAreaOfEffectPctPerContactPoint = 5279, - + ShockNovaSkillAreaOfEffectPctPerContactPoint = 5282, + /// /// spell_skills_deal_no_damage /// - SpellSkillsDealNoDamage = 5280, - + SpellSkillsDealNoDamage = 5283, + /// /// ignite_proliferation_radius /// - IgniteProliferationRadius = 5281, - + IgniteProliferationRadius = 5284, + /// /// base_ignite_proliferation_radius /// - BaseIgniteProliferationRadius = 5282, - + BaseIgniteProliferationRadius = 5285, + /// /// transition_objects_at_state /// - TransitionObjectsAtState = 5283, - + TransitionObjectsAtState = 5286, + /// /// fire_beam_enemy_fire_resistance_%_at_max_stacks /// - FireBeamEnemyFireResistancePctAtMaxStacks = 5284, - + FireBeamEnemyFireResistancePctAtMaxStacks = 5287, + /// /// attack_damage_+1%_per_300_of_min_of_armour_or_evasion /// - AttackDamage1PctPer300OfMinOfArmourOrEvasion = 5285, - + AttackDamage1PctPer300OfMinOfArmourOrEvasion = 5288, + /// /// chance_to_fortify_on_melee_stun_% /// - ChanceToFortifyOnMeleeStunPct = 5286, - + ChanceToFortifyOnMeleeStunPct = 5289, + /// /// gain_onslaught_while_you_have_fortify /// - GainOnslaughtWhileYouHaveFortify = 5287, - + GainOnslaughtWhileYouHaveFortify = 5290, + /// /// local_six_linked_random_sockets /// - LocalSixLinkedRandomSockets = 5288, - + LocalSixLinkedRandomSockets = 5291, + /// /// local_can_only_socket_corrupted_gems /// - LocalCanOnlySocketCorruptedGems = 5289, - + LocalCanOnlySocketCorruptedGems = 5292, + /// /// fire_beam_enemy_fire_resistance_%_maximum /// - FireBeamEnemyFireResistancePctMaximum = 5290, - + FireBeamEnemyFireResistancePctMaximum = 5293, + /// /// proximity_shield_ground_lightning_duration_ms /// - ProximityShieldGroundLightningDurationMs = 5291, - + ProximityShieldGroundLightningDurationMs = 5294, + /// /// map_player_charges_gained_+% /// - MapPlayerChargesGainedPct = 5292, - + MapPlayerChargesGainedPct = 5295, + /// /// curse_effect_on_self_+%_final /// - CurseEffectOnSelfPctFinal = 5293, - + CurseEffectOnSelfPctFinal = 5296, + /// /// map_monsters_curse_effect_on_self_+%_final /// - MapMonstersCurseEffectOnSelfPctFinal = 5294, - + MapMonstersCurseEffectOnSelfPctFinal = 5297, + /// /// map_monsters_%_chance_to_inflict_status_ailments /// - MapMonstersPctChanceToInflictStatusAilments = 5295, - + MapMonstersPctChanceToInflictStatusAilments = 5298, + /// /// map_monsters_movement_speed_cannot_be_reduced_below_base /// - MapMonstersMovementSpeedCannotBeReducedBelowBase = 5296, - + MapMonstersMovementSpeedCannotBeReducedBelowBase = 5299, + /// /// map_monsters_cannot_be_taunted /// - MapMonstersCannotBeTaunted = 5297, - + MapMonstersCannotBeTaunted = 5300, + /// /// map_monsters_always_ignite /// - MapMonstersAlwaysIgnite = 5298, - + MapMonstersAlwaysIgnite = 5301, + /// /// map_monsters_additional_chaos_resistance /// - MapMonstersAdditionalChaosResistance = 5299, - + MapMonstersAdditionalChaosResistance = 5302, + /// /// map_monsters_avoid_poison_blind_bleed_% /// - MapMonstersAvoidPoisonBlindBleedPct = 5300, - + MapMonstersAvoidPoisonBlindBleedPct = 5303, + /// /// base_avoid_poison_% /// - BaseAvoidPoisonPct = 5301, - + BaseAvoidPoisonPct = 5304, + /// /// map_players_have_point_blank /// - MapPlayersHavePointBlank = 5302, - + MapPlayersHavePointBlank = 5305, + /// /// map_players_block_chance_+% /// - MapPlayersBlockChancePct = 5303, - + MapPlayersBlockChancePct = 5306, + /// /// map_players_armour_+%_final /// - MapPlayersArmourPctFinal = 5304, - + MapPlayersArmourPctFinal = 5307, + /// /// map_monsters_accuracy_rating_+% /// - MapMonstersAccuracyRatingPct = 5305, - + MapMonstersAccuracyRatingPct = 5308, + /// /// map_players_extra_dodge_rolls /// - MapPlayersExtraDodgeRolls = 5306, - + MapPlayersExtraDodgeRolls = 5309, + /// /// extra_dodge_rolls /// - ExtraDodgeRolls = 5307, - + ExtraDodgeRolls = 5310, + /// /// map_players_skill_area_of_effect_+%_final /// - MapPlayersSkillAreaOfEffectPctFinal = 5308, - + MapPlayersSkillAreaOfEffectPctFinal = 5311, + /// /// cannot_gain_frenzy_charges /// - CannotGainFrenzyCharges = 5309, - + CannotGainFrenzyCharges = 5312, + /// /// cannot_gain_power_charges /// - CannotGainPowerCharges = 5310, - + CannotGainPowerCharges = 5313, + /// /// map_players_cannot_gain_power_charges /// - MapPlayersCannotGainPowerCharges = 5311, - + MapPlayersCannotGainPowerCharges = 5314, + /// /// map_players_cannot_gain_frenzy_charges /// - MapPlayersCannotGainFrenzyCharges = 5312, - + MapPlayersCannotGainFrenzyCharges = 5315, + /// /// map_players_cannot_gain_endurance_charges /// - MapPlayersCannotGainEnduranceCharges = 5313, - + MapPlayersCannotGainEnduranceCharges = 5316, + /// /// map_players_no_regeneration_including_es /// - MapPlayersNoRegenerationIncludingEs = 5314, - + MapPlayersNoRegenerationIncludingEs = 5317, + /// /// map_player_life_and_es_recovery_speed_+%_final /// - MapPlayerLifeAndEsRecoverySpeedPctFinal = 5315, - + MapPlayerLifeAndEsRecoverySpeedPctFinal = 5318, + /// /// armour_+%_final /// - ArmourPctFinal = 5316, - + ArmourPctFinal = 5319, + /// /// map_packs_are_abomination_monsters /// - MapPacksAreAbominationMonsters = 5317, - + MapPacksAreAbominationMonsters = 5320, + /// /// gain_frenzy_charge_on_hitting_rare_or_unique_enemy_% /// - GainFrenzyChargeOnHittingRareOrUniqueEnemyPct = 5318, - + GainFrenzyChargeOnHittingRareOrUniqueEnemyPct = 5321, + /// /// onslaught_duration_+% /// - OnslaughtDurationPct = 5319, - + OnslaughtDurationPct = 5322, + /// /// curse_on_hit_level_10_vulnerability_% /// - CurseOnHitLevel10VulnerabilityPct = 5320, - + CurseOnHitLevel10VulnerabilityPct = 5323, + /// /// local_item_stats_are_doubled_in_breach /// - LocalItemStatsAreDoubledInBreach = 5321, - + LocalItemStatsAreDoubledInBreach = 5324, + /// /// cast_on_crit_% /// - CastOnCritPct = 5322, - + CastOnCritPct = 5325, + /// /// local_unique_jewel_cold_and_lightning_resistance_to_melee_damage /// - LocalUniqueJewelColdAndLightningResistanceToMeleeDamage = 5323, - + LocalUniqueJewelColdAndLightningResistanceToMeleeDamage = 5326, + /// /// local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage /// - LocalUniqueJewelFireAndLightningResistanceToProjectileAttackDamage = 5324, - + LocalUniqueJewelFireAndLightningResistanceToProjectileAttackDamage = 5327, + /// /// local_unique_jewel_fire_and_cold_resistance_to_spell_damage /// - LocalUniqueJewelFireAndColdResistanceToSpellDamage = 5325, - + LocalUniqueJewelFireAndColdResistanceToSpellDamage = 5328, + /// /// local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_% /// - LocalUniqueJewelFireResistanceAlsoGrantsBlockChanceScaledPct = 5326, - + LocalUniqueJewelFireResistanceAlsoGrantsBlockChanceScaledPct = 5329, + /// /// local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_% /// - LocalUniqueJewelColdResistanceAlsoGrantsDodgeChanceScaledPct = 5327, - + LocalUniqueJewelColdResistanceAlsoGrantsDodgeChanceScaledPct = 5330, + /// /// local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_% /// - LocalUniqueJewelLightningResistanceAlsoGrantsBlockSpellsChanceScaledPct = 5328, - + LocalUniqueJewelLightningResistanceAlsoGrantsBlockSpellsChanceScaledPct = 5331, + /// /// local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance /// - LocalUniqueJewelFireResistanceAlsoGrantsEnduranceChargeOnKillChance = 5329, - + LocalUniqueJewelFireResistanceAlsoGrantsEnduranceChargeOnKillChance = 5332, + /// /// local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance /// - LocalUniqueJewelColdResistanceAlsoGrantsFrenzyChargeOnKillChance = 5330, - + LocalUniqueJewelColdResistanceAlsoGrantsFrenzyChargeOnKillChance = 5333, + /// /// local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance /// - LocalUniqueJewelLightningResistanceAlsoGrantsPowerChargeOnKillChance = 5331, - + LocalUniqueJewelLightningResistanceAlsoGrantsPowerChargeOnKillChance = 5334, + /// /// cast_while_channelling_time_ms /// - CastWhileChannellingTimeMs = 5332, - + CastWhileChannellingTimeMs = 5335, + /// /// support_cast_while_channelling_triggered_skill_damage_+%_final /// - SupportCastWhileChannellingTriggeredSkillDamagePctFinal = 5333, - + SupportCastWhileChannellingTriggeredSkillDamagePctFinal = 5336, + /// /// number_of_spider_minions_allowed /// - NumberOfSpiderMinionsAllowed = 5334, - + NumberOfSpiderMinionsAllowed = 5337, + /// /// number_of_active_spider_minions /// - NumberOfActiveSpiderMinions = 5335, - + NumberOfActiveSpiderMinions = 5338, + /// /// local_display_raise_spider_on_kill_%_chance /// - LocalDisplayRaiseSpiderOnKillPctChance = 5336, - + LocalDisplayRaiseSpiderOnKillPctChance = 5339, + /// /// local_display_cast_lightning_on_critical_strike /// - LocalDisplayCastLightningOnCriticalStrike = 5337, - + LocalDisplayCastLightningOnCriticalStrike = 5340, + /// /// your_spells_are_disabled /// - YourSpellsAreDisabled = 5338, - + YourSpellsAreDisabled = 5341, + /// /// monster_ruleset_id /// - MonsterRulesetId = 5339, - + MonsterRulesetId = 5342, + /// /// map_monsters_additional_elemental_resistance /// - MapMonstersAdditionalElementalResistance = 5340, - + MapMonstersAdditionalElementalResistance = 5343, + /// /// support_minion_totem_resistance_elemental_damage_+%_final /// - SupportMinionTotemResistanceElementalDamagePctFinal = 5341, - + SupportMinionTotemResistanceElementalDamagePctFinal = 5344, + /// /// elemental_damage_+%_final_on_minion_from_resistance_support /// - ElementalDamagePctFinalOnMinionFromResistanceSupport = 5342, - + ElementalDamagePctFinalOnMinionFromResistanceSupport = 5345, + /// /// goat_footprints_from_item /// - GoatFootprintsFromItem = 5343, - + GoatFootprintsFromItem = 5346, + /// /// totem_ignores_cooldown /// - TotemIgnoresCooldown = 5344, - + TotemIgnoresCooldown = 5347, + /// /// totem_ignores_vaal_skill_cost /// - TotemIgnoresVaalSkillCost = 5345, - + TotemIgnoresVaalSkillCost = 5348, + /// /// attack_minimum_added_lightning_damage_per_10_int /// - AttackMinimumAddedLightningDamagePer10Int = 5346, - + AttackMinimumAddedLightningDamagePer10Int = 5349, + /// /// attack_maximum_added_lightning_damage_per_10_int /// - AttackMaximumAddedLightningDamagePer10Int = 5347, - + AttackMaximumAddedLightningDamagePer10Int = 5350, + /// /// fire_damage_+%_per_20_strength /// - FireDamagePctPer20Strength = 5348, - + FireDamagePctPer20Strength = 5351, + /// /// mana_recharge_rate_per_minute_with_all_corrupted_equipped_items /// - ManaRechargeRatePerMinuteWithAllCorruptedEquippedItems = 5349, - + ManaRechargeRatePerMinuteWithAllCorruptedEquippedItems = 5352, + /// /// life_leech_permyriad_vs_poisoned_enemies /// - LifeLeechPermyriadVsPoisonedEnemies = 5350, - + LifeLeechPermyriadVsPoisonedEnemies = 5353, + /// /// minion_life_leech_permyriad_vs_poisoned_enemies /// - MinionLifeLeechPermyriadVsPoisonedEnemies = 5351, - + MinionLifeLeechPermyriadVsPoisonedEnemies = 5354, + /// /// display_vaal_breach_no_drops_xp /// - DisplayVaalBreachNoDropsXp = 5352, - + DisplayVaalBreachNoDropsXp = 5355, + /// /// golems_larger_aggro_radius /// - GolemsLargerAggroRadius = 5353, - + GolemsLargerAggroRadius = 5356, + /// /// maximum_life_%_to_convert_to_maximum_energy_shield /// - MaximumLifePctToConvertToMaximumEnergyShield = 5354, - + MaximumLifePctToConvertToMaximumEnergyShield = 5357, + /// /// display_abberaths_hooves_skill_level /// - DisplayAbberathsHoovesSkillLevel = 5355, - + DisplayAbberathsHoovesSkillLevel = 5358, + /// /// cannot_be_used_as_minion /// - CannotBeUsedAsMinion = 5356, - + CannotBeUsedAsMinion = 5359, + /// /// breach_map_time_to_portal_ms /// - BreachMapTimeToPortalMs = 5357, - + BreachMapTimeToPortalMs = 5360, + /// /// breach_map_initial_time_ms /// - BreachMapInitialTimeMs = 5358, - + BreachMapInitialTimeMs = 5361, + /// /// breach_team_warp_buff_damage_taken_+% /// - BreachTeamWarpBuffDamageTakenPct = 5359, - + BreachTeamWarpBuffDamageTakenPct = 5362, + /// /// local_poison_on_hit_% /// - LocalPoisonOnHitPct = 5360, - + LocalPoisonOnHitPct = 5363, + /// /// main_hand_local_poison_on_hit_% /// - MainHandLocalPoisonOnHitPct = 5361, - + MainHandLocalPoisonOnHitPct = 5364, + /// /// off_hand_local_poison_on_hit_% /// - OffHandLocalPoisonOnHitPct = 5362, - + OffHandLocalPoisonOnHitPct = 5365, + /// /// breach_team_warp_buff_movement_velocity_+% /// - BreachTeamWarpBuffMovementVelocityPct = 5363, - + BreachTeamWarpBuffMovementVelocityPct = 5366, + /// /// breach_team_warp_buff_lightning_damage_+% /// - BreachTeamWarpBuffLightningDamagePct = 5364, - + BreachTeamWarpBuffLightningDamagePct = 5367, + /// /// base_blade_vortex_hit_rate_ms /// - BaseBladeVortexHitRateMs = 5365, - + BaseBladeVortexHitRateMs = 5368, + /// /// blade_vortex_hit_rate_ms /// - BladeVortexHitRateMs = 5366, - + BladeVortexHitRateMs = 5369, + /// /// additional_maximum_all_resistances_%_with_no_endurance_charges /// - AdditionalMaximumAllResistancesPctWithNoEnduranceCharges = 5367, - + AdditionalMaximumAllResistancesPctWithNoEnduranceCharges = 5370, + /// /// spell_damage_+%_while_shocked /// - SpellDamagePctWhileShocked = 5368, - - /// - /// display_skill_minions_level_is_corpse_level - /// - DisplaySkillMinionsLevelIsCorpseLevel = 5369, - + SpellDamagePctWhileShocked = 5371, + /// /// monster_beyond_portal_chance_+% /// - MonsterBeyondPortalChancePct = 5370, - + MonsterBeyondPortalChancePct = 5372, + /// /// life_leech_uses_chaos_damage /// - LifeLeechUsesChaosDamage = 5371, - + LifeLeechUsesChaosDamage = 5373, + /// /// base_cannot_gain_endurance_charges /// - BaseCannotGainEnduranceCharges = 5372, - + BaseCannotGainEnduranceCharges = 5374, + /// /// gain_onslaught_while_at_maximum_endurance_charges /// - GainOnslaughtWhileAtMaximumEnduranceCharges = 5373, - + GainOnslaughtWhileAtMaximumEnduranceCharges = 5375, + /// /// number_of_zombies_allowed_+1_per_X_strength /// - NumberOfZombiesAllowed1PerXStrength = 5374, - + NumberOfZombiesAllowed1PerXStrength = 5376, + /// /// minions_gain_your_strength /// - MinionsGainYourStrength = 5375, - + MinionsGainYourStrength = 5377, + /// /// avarius_cast_on_charge_contact /// - AvariusCastOnChargeContact = 5376, - + AvariusCastOnChargeContact = 5378, + /// /// zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength /// - ZombieDamageLeechedAsLifeToYouPermyriadIfOver1000Strength = 5377, - + ZombieDamageLeechedAsLifeToYouPermyriadIfOver1000Strength = 5379, + /// /// virtual_minion_additional_strength /// - VirtualMinionAdditionalStrength = 5378, - + VirtualMinionAdditionalStrength = 5380, + /// /// virtual_zombie_damage_leeched_as_life_to_you_permyriad /// - VirtualZombieDamageLeechedAsLifeToYouPermyriad = 5379, - + VirtualZombieDamageLeechedAsLifeToYouPermyriad = 5381, + /// /// base_bleed_duration_+% /// - BaseBleedDurationPct = 5380, - + BaseBleedDurationPct = 5382, + /// /// item_found_rarity_+1%_per_X_rampage_stacks /// - ItemFoundRarity1PctPerXRampageStacks = 5381, - + ItemFoundRarity1PctPerXRampageStacks = 5383, + /// /// is_channelling /// - IsChannelling = 5382, - + IsChannelling = 5384, + /// /// warcries_knock_back_enemies /// - WarcriesKnockBackEnemies = 5383, - + WarcriesKnockBackEnemies = 5385, + /// /// map_monsters_no_drops_or_experience /// - MapMonstersNoDropsOrExperience = 5384, - + MapMonstersNoDropsOrExperience = 5386, + /// /// off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating /// - OffHandMinimumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5385, - + OffHandMinimumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5387, + /// /// off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating /// - OffHandMaximumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5386, - + OffHandMaximumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5388, + /// /// off_hand_minimum_added_physical_damage_per_5_shield_armour /// - OffHandMinimumAddedPhysicalDamagePer5ShieldArmour = 5387, - + OffHandMinimumAddedPhysicalDamagePer5ShieldArmour = 5389, + /// /// off_hand_maximum_added_physical_damage_per_5_shield_armour /// - OffHandMaximumAddedPhysicalDamagePer5ShieldArmour = 5388, - + OffHandMaximumAddedPhysicalDamagePer5ShieldArmour = 5390, + /// /// off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating /// - OffHandMinimumAddedPhysicalDamagePer5ShieldEvasionRating = 5389, - + OffHandMinimumAddedPhysicalDamagePer5ShieldEvasionRating = 5391, + /// /// off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating /// - OffHandMaximumAddedPhysicalDamagePer5ShieldEvasionRating = 5390, - + OffHandMaximumAddedPhysicalDamagePer5ShieldEvasionRating = 5392, + /// /// gain_vaal_soul_on_hit_cooldown_ms /// - GainVaalSoulOnHitCooldownMs = 5391, - + GainVaalSoulOnHitCooldownMs = 5393, + /// /// unique_spells_triggered_on_shocked_kill /// - UniqueSpellsTriggeredOnShockedKill = 5392, - + UniqueSpellsTriggeredOnShockedKill = 5394, + /// /// maximum_life_per_2%_increased_item_found_rarity /// - MaximumLifePer2PctIncreasedItemFoundRarity = 5393, - + MaximumLifePer2PctIncreasedItemFoundRarity = 5395, + /// /// damage_+%_per_1%_increased_item_found_quantity /// - DamagePctPer1PctIncreasedItemFoundQuantity = 5394, - + DamagePctPer1PctIncreasedItemFoundQuantity = 5396, + /// /// item_found_quantity_+%_per_chest_opened_recently /// - ItemFoundQuantityPctPerChestOpenedRecently = 5395, - + ItemFoundQuantityPctPerChestOpenedRecently = 5397, + /// /// number_of_chests_opened_recently /// - NumberOfChestsOpenedRecently = 5396, - + NumberOfChestsOpenedRecently = 5398, + /// /// track_number_of_chests_opened_recently /// - TrackNumberOfChestsOpenedRecently = 5397, - + TrackNumberOfChestsOpenedRecently = 5399, + /// /// movement_speed_+%_per_chest_opened_recently /// - MovementSpeedPctPerChestOpenedRecently = 5398, - + MovementSpeedPctPerChestOpenedRecently = 5400, + /// /// immune_to_burning_shocks_and_chilled_ground /// - ImmuneToBurningShocksAndChilledGround = 5399, - + ImmuneToBurningShocksAndChilledGround = 5401, + /// /// maximum_life_per_10_dexterity /// - MaximumLifePer10Dexterity = 5400, - + MaximumLifePer10Dexterity = 5402, + /// /// life_regeneration_per_minute_while_moving /// - LifeRegenerationPerMinuteWhileMoving = 5401, - + LifeRegenerationPerMinuteWhileMoving = 5403, + /// /// chest_number_of_additional_pirate_uniques_to_drop /// - ChestNumberOfAdditionalPirateUniquesToDrop = 5402, - + ChestNumberOfAdditionalPirateUniquesToDrop = 5404, + /// /// shrapnel_shot_number_of_additional_cones /// - ShrapnelShotNumberOfAdditionalCones = 5403, - + ShrapnelShotNumberOfAdditionalCones = 5405, + /// /// local_unique_jewel_shrapnel_shot_number_of_additional_cones_with_50_dex_in_radius /// - LocalUniqueJewelShrapnelShotNumberOfAdditionalConesWith50DexInRadius = 5404, - + LocalUniqueJewelShrapnelShotNumberOfAdditionalConesWith50DexInRadius = 5406, + /// /// burning_arrow_additional_ignite_stacks /// - BurningArrowAdditionalIgniteStacks = 5405, - + BurningArrowAdditionalIgniteStacks = 5407, + /// /// local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius /// - LocalUniqueJewelBurningArrowAdditionalIgniteStacksWith50DexInRadius = 5406, - + LocalUniqueJewelBurningArrowAdditionalIgniteStacksWith50DexInRadius = 5408, + /// /// cleave_fortify_on_hit /// - CleaveFortifyOnHit = 5407, - + CleaveFortifyOnHit = 5409, + /// /// local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius /// - LocalUniqueJewelCleaveFortifyOnHitWith50StrInRadius = 5408, - + LocalUniqueJewelCleaveFortifyOnHitWith50StrInRadius = 5410, + /// /// cleave_+1_base_radius_per_nearby_enemy_up_to_10 /// - Cleave1BaseRadiusPerNearbyEnemyUpTo10 = 5409, - + Cleave1BaseRadiusPerNearbyEnemyUpTo10 = 5411, + /// /// local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius /// - LocalUniqueJewelCleave1BaseRadiusPerNearbyEnemyUpTo10With40StrInRadius = 5410, - + LocalUniqueJewelCleave1BaseRadiusPerNearbyEnemyUpTo10With40StrInRadius = 5412, + /// /// freezing_pulse_number_of_additional_projectiles /// - FreezingPulseNumberOfAdditionalProjectiles = 5411, - + FreezingPulseNumberOfAdditionalProjectiles = 5413, + /// /// local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius /// - LocalUniqueJewelFreezingPulseNumberOfAdditionalProjectilesWith50IntInRadius = 5412, - + LocalUniqueJewelFreezingPulseNumberOfAdditionalProjectilesWith50IntInRadius = 5414, + /// /// freezing_pulse_damage_+%_if_enemy_shattered_recently /// - FreezingPulseDamagePctIfEnemyShatteredRecently = 5413, - + FreezingPulseDamagePctIfEnemyShatteredRecently = 5415, + /// /// local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius /// - LocalUniqueJewelFreezingPulseDamagePctIfEnemyShatteredRecentlyWith50IntInRadius = 5414, - + LocalUniqueJewelFreezingPulseDamagePctIfEnemyShatteredRecentlyWith50IntInRadius = 5416, + /// /// local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius /// - LocalUniqueJewelIceShotExplosionSkillAreaOfEffectPctWith50DexInRadius = 5415, - + LocalUniqueJewelIceShotExplosionSkillAreaOfEffectPctWith50DexInRadius = 5417, + /// /// ice_shot_damage_+%_to_chilled_enemies /// - IceShotDamagePctToChilledEnemies = 5416, - + IceShotDamagePctToChilledEnemies = 5418, + /// /// local_unique_jewel_ice_shot_damage_+%_to_chilled_enemies_with_50_dex_in_radius /// - LocalUniqueJewelIceShotDamagePctToChilledEnemiesWith50DexInRadius = 5417, - + LocalUniqueJewelIceShotDamagePctToChilledEnemiesWith50DexInRadius = 5419, + /// /// local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius /// - LocalUniqueJewelMoltenStrikeNumberOfAdditionalProjectilesWith50StrInRadius = 5418, - + LocalUniqueJewelMoltenStrikeNumberOfAdditionalProjectilesWith50StrInRadius = 5420, + /// /// local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius /// - LocalUniqueJewelMoltenStrikeSkillAreaOfEffectPctWith50StrInRadius = 5419, - + LocalUniqueJewelMoltenStrikeSkillAreaOfEffectPctWith50StrInRadius = 5421, + /// /// frost_blades_melee_cold_damage_+%_per_frenzy_charge /// - FrostBladesMeleeColdDamagePctPerFrenzyCharge = 5420, - + FrostBladesMeleeColdDamagePctPerFrenzyCharge = 5422, + /// /// local_unique_jewel_frost_blades_melee_cold_damage_+%_per_frenzy_charge_with_50_dex_in_radius /// - LocalUniqueJewelFrostBladesMeleeColdDamagePctPerFrenzyChargeWith50DexInRadius = 5421, - + LocalUniqueJewelFrostBladesMeleeColdDamagePctPerFrenzyChargeWith50DexInRadius = 5423, + /// /// dual_strike_melee_splash_with_off_hand_weapon /// - DualStrikeMeleeSplashWithOffHandWeapon = 5422, - + DualStrikeMeleeSplashWithOffHandWeapon = 5424, + /// /// local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius /// - LocalUniqueJewelDualStrikeMeleeSplashWithOffHandWeaponWith50DexInRadius = 5423, - + LocalUniqueJewelDualStrikeMeleeSplashWithOffHandWeaponWith50DexInRadius = 5425, + /// /// frostbolt_projectile_acceleration /// - FrostboltProjectileAcceleration = 5424, - + FrostboltProjectileAcceleration = 5426, + /// /// local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius /// - LocalUniqueJewelFrostboltProjectileAccelerationWith50IntInRadius = 5425, - + LocalUniqueJewelFrostboltProjectileAccelerationWith50IntInRadius = 5427, + /// /// ethereal_knives_projectiles_nova /// - EtherealKnivesProjectilesNova = 5426, - + EtherealKnivesProjectilesNova = 5428, + /// /// local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius /// - LocalUniqueJewelEtherealKnivesProjectilesNovaWith50DexInRadius = 5427, - + LocalUniqueJewelEtherealKnivesProjectilesNovaWith50DexInRadius = 5429, + /// /// ethereal_knives_number_of_additional_projectiles /// - EtherealKnivesNumberOfAdditionalProjectiles = 5428, - + EtherealKnivesNumberOfAdditionalProjectiles = 5430, + /// /// local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius /// - LocalUniqueJewelEtherealKnivesNumberOfAdditionalProjectilesWith50DexInRadius = 5429, - + LocalUniqueJewelEtherealKnivesNumberOfAdditionalProjectilesWith50DexInRadius = 5431, + /// /// ethereal_knives_projectile_speed_+%_per_frenzy_charge /// - EtherealKnivesProjectileSpeedPctPerFrenzyCharge = 5430, - + EtherealKnivesProjectileSpeedPctPerFrenzyCharge = 5432, + /// /// local_unique_jewel_ethereal_knives_projectile_speed_+%_per_frenzy_charge_with_50_dex_in_radius /// - LocalUniqueJewelEtherealKnivesProjectileSpeedPctPerFrenzyChargeWith50DexInRadius = 5431, - + LocalUniqueJewelEtherealKnivesProjectileSpeedPctPerFrenzyChargeWith50DexInRadius = 5433, + /// /// ethereal_knives_grant_frenzy_charge_on_kill /// - EtherealKnivesGrantFrenzyChargeOnKill = 5432, - + EtherealKnivesGrantFrenzyChargeOnKill = 5434, + /// /// local_unique_jewel_ethereal_knives_grant_frenzy_charge_on_kill_with_50_dex_in_radius /// - LocalUniqueJewelEtherealKnivesGrantFrenzyChargeOnKillWith50DexInRadius = 5433, - + LocalUniqueJewelEtherealKnivesGrantFrenzyChargeOnKillWith50DexInRadius = 5435, + /// /// lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit /// - LightningTendrilsSkillAreaOfEffectPctPerEnemyHit = 5434, - + LightningTendrilsSkillAreaOfEffectPctPerEnemyHit = 5436, + /// /// local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius /// - LocalUniqueJewelLightningTendrilsSkillAreaOfEffectPctPerEnemyHitWith50IntInRadius = 5435, - + LocalUniqueJewelLightningTendrilsSkillAreaOfEffectPctPerEnemyHitWith50IntInRadius = 5437, + /// /// magma_orb_skill_area_of_effect_+%_per_bounce /// - MagmaOrbSkillAreaOfEffectPctPerBounce = 5436, - + MagmaOrbSkillAreaOfEffectPctPerBounce = 5438, + /// /// local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius /// - LocalUniqueJewelMagmaOrbSkillAreaOfEffectPctPerBounceWith50IntInRadius = 5437, - + LocalUniqueJewelMagmaOrbSkillAreaOfEffectPctPerBounceWith50IntInRadius = 5439, + /// /// glacial_hammer_melee_splash_with_cold_damage /// - GlacialHammerMeleeSplashWithColdDamage = 5438, - + GlacialHammerMeleeSplashWithColdDamage = 5440, + /// /// local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius /// - LocalUniqueJewelGlacialHammerMeleeSplashWithColdDamageWith50StrInRadius = 5439, - + LocalUniqueJewelGlacialHammerMeleeSplashWithColdDamageWith50StrInRadius = 5441, + /// /// glacial_hammer_physical_damage_%_to_convert_to_cold /// - GlacialHammerPhysicalDamagePctToConvertToCold = 5440, - + GlacialHammerPhysicalDamagePctToConvertToCold = 5442, + /// /// local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius /// - LocalUniqueJewelGlacialHammerPhysicalDamagePctToConvertToColdWith50StrInRadius = 5441, - + LocalUniqueJewelGlacialHammerPhysicalDamagePctToConvertToColdWith50StrInRadius = 5443, + /// /// blight_skill_area_of_effect_+%_after_1_second_channelling /// - BlightSkillAreaOfEffectPctAfter1SecondChannelling = 5442, - + BlightSkillAreaOfEffectPctAfter1SecondChannelling = 5444, + /// /// local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius /// - LocalUniqueJewelBlightSkillAreaOfEffectPctAfter1SecondChannellingWith50IntInRadius = 5443, - + LocalUniqueJewelBlightSkillAreaOfEffectPctAfter1SecondChannellingWith50IntInRadius = 5445, + /// /// fortify_on_hit /// - FortifyOnHit = 5444, - + FortifyOnHit = 5446, + /// /// melee_splash_cold_damage_only /// - MeleeSplashColdDamageOnly = 5445, - + MeleeSplashColdDamageOnly = 5447, + /// /// track_have_shattered_recently /// - TrackHaveShatteredRecently = 5446, - + TrackHaveShatteredRecently = 5448, + /// /// have_shattered_recently /// - HaveShatteredRecently = 5447, - + HaveShatteredRecently = 5449, + /// /// can_gain_vaal_souls_from_no_experience_monsters /// - CanGainVaalSoulsFromNoExperienceMonsters = 5448, - + CanGainVaalSoulsFromNoExperienceMonsters = 5450, + /// /// maim_on_hit_% /// - MaimOnHitPct = 5449, - + MaimOnHitPct = 5451, + /// /// total_skill_area_of_effect_radius_+%_including_final /// - TotalSkillAreaOfEffectRadiusPctIncludingFinal = 5450, - + TotalSkillAreaOfEffectRadiusPctIncludingFinal = 5452, + /// /// melee_splash_off_hand_only /// - MeleeSplashOffHandOnly = 5451, - + MeleeSplashOffHandOnly = 5453, + /// /// classic_remaining_areas_to_apply_leaguestone /// - ClassicRemainingAreasToApplyLeaguestone = 5452, - + ClassicRemainingAreasToApplyLeaguestone = 5454, + /// /// map_spawn_leaguestones /// - MapSpawnLeaguestones = 5453, - + MapSpawnLeaguestones = 5455, + /// /// monster_can_spawn_with_leaguestone /// - MonsterCanSpawnWithLeaguestone = 5454, - + MonsterCanSpawnWithLeaguestone = 5456, + /// /// monster_no_leaguestone /// - MonsterNoLeaguestone = 5455, - + MonsterNoLeaguestone = 5457, + /// - /// local_unique_jewel_shrapnel_shot_cone_%_chance_to_deal_double_damage_with_50_dex_in_radius + /// local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius /// - LocalUniqueJewelShrapnelShotConePctChanceToDealDoubleDamageWith50DexInRadius = 5456, - + LocalUniqueJewelGalvanicArrowAreaDamagePctWith40DexInRadius = 5458, + /// - /// shrapnel_shot_cone_%_chance_to_deal_double_damage + /// galvanic_arrow_area_damage_+% /// - ShrapnelShotConePctChanceToDealDoubleDamage = 5457, - + GalvanicArrowAreaDamagePct = 5459, + /// /// local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius /// - LocalUniqueJewelShrapnelShotRadiusPctWith50DexInRadius = 5458, - + LocalUniqueJewelShrapnelShotRadiusPctWith50DexInRadius = 5460, + /// /// endurance_charge_on_kill_percent_chance_while_holding_shield /// - EnduranceChargeOnKillPercentChanceWhileHoldingShield = 5459, - + EnduranceChargeOnKillPercentChanceWhileHoldingShield = 5461, + /// /// frenzy_charge_on_kill_percent_chance_while_holding_shield /// - FrenzyChargeOnKillPercentChanceWhileHoldingShield = 5460, - + FrenzyChargeOnKillPercentChanceWhileHoldingShield = 5462, + /// /// power_charge_on_kill_percent_chance_while_holding_shield /// - PowerChargeOnKillPercentChanceWhileHoldingShield = 5461, - + PowerChargeOnKillPercentChanceWhileHoldingShield = 5463, + /// /// block_chance_%_while_holding_shield /// - BlockChancePctWhileHoldingShield = 5462, - + BlockChancePctWhileHoldingShield = 5464, + /// /// dodge_chance_%_while_holding_shield /// - DodgeChancePctWhileHoldingShield = 5463, - + DodgeChancePctWhileHoldingShield = 5465, + /// /// block_spells_chance_%_while_holding_shield /// - BlockSpellsChancePctWhileHoldingShield = 5464, - + BlockSpellsChancePctWhileHoldingShield = 5466, + /// /// local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type /// - LocalUniqueFlaskElementalDamageTakenPctOfLowestUncappedResistanceType = 5465, - + LocalUniqueFlaskElementalDamageTakenPctOfLowestUncappedResistanceType = 5467, + /// /// local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type /// - LocalUniqueFlaskElementalPenetrationPctOfHighestUncappedResistanceType = 5466, - + LocalUniqueFlaskElementalPenetrationPctOfHighestUncappedResistanceType = 5468, + /// /// elemental_damage_taken_+%_of_lowest_uncapped_resistance_type /// - ElementalDamageTakenPctOfLowestUncappedResistanceType = 5467, - + ElementalDamageTakenPctOfLowestUncappedResistanceType = 5469, + /// /// elemental_penetration_%_of_highest_uncapped_resistance_type /// - ElementalPenetrationPctOfHighestUncappedResistanceType = 5468, - + ElementalPenetrationPctOfHighestUncappedResistanceType = 5470, + /// /// virtual_fire_damage_taken_+%_from_lowest_uncapped_resistance_type /// - VirtualFireDamageTakenPctFromLowestUncappedResistanceType = 5469, - + VirtualFireDamageTakenPctFromLowestUncappedResistanceType = 5471, + /// /// virtual_cold_damage_taken_+%_from_lowest_uncapped_resistance_type /// - VirtualColdDamageTakenPctFromLowestUncappedResistanceType = 5470, - + VirtualColdDamageTakenPctFromLowestUncappedResistanceType = 5472, + /// /// virtual_lightning_damage_taken_+%_from_lowest_uncapped_resistance_type /// - VirtualLightningDamageTakenPctFromLowestUncappedResistanceType = 5471, - + VirtualLightningDamageTakenPctFromLowestUncappedResistanceType = 5473, + /// /// virtual_fire_penetration_%_from_highest_uncapped_resistance_type /// - VirtualFirePenetrationPctFromHighestUncappedResistanceType = 5472, - + VirtualFirePenetrationPctFromHighestUncappedResistanceType = 5474, + /// /// virtual_cold_penetration_%_from_highest_uncapped_resistance_type /// - VirtualColdPenetrationPctFromHighestUncappedResistanceType = 5473, - + VirtualColdPenetrationPctFromHighestUncappedResistanceType = 5475, + /// /// virtual_lightning_penetration_%_from_highest_uncapped_resistance_type /// - VirtualLightningPenetrationPctFromHighestUncappedResistanceType = 5474, - + VirtualLightningPenetrationPctFromHighestUncappedResistanceType = 5476, + /// /// start_at_zero_energy_shield /// - StartAtZeroEnergyShield = 5475, - + StartAtZeroEnergyShield = 5477, + /// /// map_number_of_additional_silver_coin_drops /// - MapNumberOfAdditionalSilverCoinDrops = 5476, - + MapNumberOfAdditionalSilverCoinDrops = 5478, + /// /// map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins /// - MapMonstersThatDropSilverCoinDropXAdditionalSilverCoins = 5477, - + MapMonstersThatDropSilverCoinDropXAdditionalSilverCoins = 5479, + /// /// map_item_quantity_from_monsters_that_drop_silver_coin_+% /// - MapItemQuantityFromMonstersThatDropSilverCoinPct = 5478, - + MapItemQuantityFromMonstersThatDropSilverCoinPct = 5480, + /// /// local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius /// - LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith50IntInRadius = 5479, - + LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith50IntInRadius = 5481, + /// /// spark_num_of_additional_projectiles_in_chain /// - SparkNumOfAdditionalProjectilesInChain = 5480, - + SparkNumOfAdditionalProjectilesInChain = 5482, + /// /// local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius /// - LocalUniqueJewelSparkNumberOfAdditionalChainsWith50IntInRadius = 5481, - + LocalUniqueJewelSparkNumberOfAdditionalChainsWith50IntInRadius = 5483, + /// /// monster_slam_cooldown_speed_+% /// - MonsterSlamCooldownSpeedPct = 5482, - + MonsterSlamCooldownSpeedPct = 5484, + /// /// zombie_slam_cooldown_speed_+% /// - ZombieSlamCooldownSpeedPct = 5483, - + ZombieSlamCooldownSpeedPct = 5485, + /// /// local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius /// - LocalUniqueJewelZombieSlamCooldownSpeedPctWith50IntInRadius = 5484, - + LocalUniqueJewelZombieSlamCooldownSpeedPctWith50IntInRadius = 5486, + /// /// monster_slam_damage_+% /// - MonsterSlamDamagePct = 5485, - + MonsterSlamDamagePct = 5487, + /// /// zombie_slam_damage_+% /// - ZombieSlamDamagePct = 5486, - + ZombieSlamDamagePct = 5488, + /// /// local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius /// - LocalUniqueJewelZombieSlamDamagePctWith50IntInRadius = 5487, - + LocalUniqueJewelZombieSlamDamagePctWith50IntInRadius = 5489, + /// /// map_leaguestone_override_base_num_rogue_exiles /// - MapLeaguestoneOverrideBaseNumRogueExiles = 5488, - + MapLeaguestoneOverrideBaseNumRogueExiles = 5490, + /// /// map_rogue_exiles_are_doubled /// - MapRogueExilesAreDoubled = 5489, - + MapRogueExilesAreDoubled = 5491, + /// /// map_rogue_exile_drop_skill_gem_with_quality /// - MapRogueExileDropSkillGemWithQuality = 5490, - + MapRogueExileDropSkillGemWithQuality = 5492, + /// /// map_rogue_exile_attack_cast_and_movement_speed_+% /// - MapRogueExileAttackCastAndMovementSpeedPct = 5491, - + MapRogueExileAttackCastAndMovementSpeedPct = 5493, + /// /// map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final /// - MapLeaguestoneRogueExilesDroppedItemRarityPctFinal = 5492, - + MapLeaguestoneRogueExilesDroppedItemRarityPctFinal = 5494, + /// /// monster_drop_skill_gem_with_quality /// - MonsterDropSkillGemWithQuality = 5493, - + MonsterDropSkillGemWithQuality = 5495, + /// /// map_leaguestone_override_base_num_breaches /// - MapLeaguestoneOverrideBaseNumBreaches = 5494, - + MapLeaguestoneOverrideBaseNumBreaches = 5496, + /// /// map_contains_additional_breaches /// - MapContainsAdditionalBreaches = 5495, - + MapContainsAdditionalBreaches = 5497, + /// /// map_rare_breach_monsters_drop_additional_shards /// - MapRareBreachMonstersDropAdditionalShards = 5496, - + MapRareBreachMonstersDropAdditionalShards = 5498, + /// /// map_breach_has_boss /// - MapBreachHasBoss = 5497, - + MapBreachHasBoss = 5499, + /// /// map_breach_has_large_chest /// - MapBreachHasLargeChest = 5498, - + MapBreachHasLargeChest = 5500, + /// /// map_breach_monster_quantity_+% /// - MapBreachMonsterQuantityPct = 5499, - + MapBreachMonsterQuantityPct = 5501, + /// /// map_leaguestone_override_base_num_monoliths /// - MapLeaguestoneOverrideBaseNumMonoliths = 5500, - + MapLeaguestoneOverrideBaseNumMonoliths = 5502, + /// /// map_essence_monsters_have_additional_essences /// - MapEssenceMonstersHaveAdditionalEssences = 5501, - + MapEssenceMonstersHaveAdditionalEssences = 5503, + /// /// map_essence_monsters_are_corrupted /// - MapEssenceMonstersAreCorrupted = 5502, - + MapEssenceMonstersAreCorrupted = 5504, + /// /// map_essence_monsters_higher_tier /// - MapEssenceMonstersHigherTier = 5503, - + MapEssenceMonstersHigherTier = 5505, + /// /// fire_beam_rotation_speed_+% /// - FireBeamRotationSpeedPct = 5504, - + FireBeamRotationSpeedPct = 5506, + /// /// fire_beam_charge_up_time_ms /// - FireBeamChargeUpTimeMs = 5505, - + FireBeamChargeUpTimeMs = 5507, + /// /// map_leaguestone_override_base_num_talismans /// - MapLeaguestoneOverrideBaseNumTalismans = 5506, - + MapLeaguestoneOverrideBaseNumTalismans = 5508, + /// /// map_talismans_higher_tier /// - MapTalismansHigherTier = 5507, - + MapTalismansHigherTier = 5509, + /// /// map_talismans_dropped_as_rare /// - MapTalismansDroppedAsRare = 5508, - + MapTalismansDroppedAsRare = 5510, + /// /// map_contains_talisman_boss_with_higher_tier /// - MapContainsTalismanBossWithHigherTier = 5509, - + MapContainsTalismanBossWithHigherTier = 5511, + /// /// virtual_fire_damage_taken_+% /// - VirtualFireDamageTakenPct = 5510, - + VirtualFireDamageTakenPct = 5512, + /// /// virtual_chaos_damage_taken_+% /// - VirtualChaosDamageTakenPct = 5511, - + VirtualChaosDamageTakenPct = 5513, + /// /// virtual_lightning_damage_taken_+% /// - VirtualLightningDamageTakenPct = 5512, - + VirtualLightningDamageTakenPct = 5514, + /// /// virtual_cold_damage_taken_+% /// - VirtualColdDamageTakenPct = 5513, - + VirtualColdDamageTakenPct = 5515, + /// /// local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun /// - LocalDisplaySocketedGemsSupportedByLevelXEnduranceChargeOnStun = 5514, - + LocalDisplaySocketedGemsSupportedByLevelXEnduranceChargeOnStun = 5516, + /// /// number_of_generic_limited_minions_allowed /// - NumberOfGenericLimitedMinionsAllowed = 5515, - + NumberOfGenericLimitedMinionsAllowed = 5517, + /// /// number_of_active_generic_limited_minions /// - NumberOfActiveGenericLimitedMinions = 5516, - + NumberOfActiveGenericLimitedMinions = 5518, + /// /// local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius /// - LocalUniqueJewelViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemyWith50DexInRadius = 5517, - + LocalUniqueJewelViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemyWith50DexInRadius = 5519, + /// /// local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius /// - LocalUniqueJewelGroundSlamChanceToGainEnduranceChargePctOnStunWith50StrInRadius = 5518, - + LocalUniqueJewelGroundSlamChanceToGainEnduranceChargePctOnStunWith50StrInRadius = 5520, + /// /// viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy /// - ViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemy = 5519, - + ViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemy = 5521, + /// /// ground_slam_chance_to_gain_endurance_charge_%_on_stun /// - GroundSlamChanceToGainEnduranceChargePctOnStun = 5520, - + GroundSlamChanceToGainEnduranceChargePctOnStun = 5522, + /// /// classic_next_area_contains_talisman /// - ClassicNextAreaContainsTalisman = 5521, - + ClassicNextAreaContainsTalisman = 5523, + /// /// classic_next_area_contains_anarchy /// - ClassicNextAreaContainsAnarchy = 5522, - + ClassicNextAreaContainsAnarchy = 5524, + /// /// map_area_contains_avatar_of_prophecy /// - MapAreaContainsAvatarOfProphecy = 5523, - + MapAreaContainsAvatarOfProphecy = 5525, + /// /// map_area_contains_avatar_of_breach /// - MapAreaContainsAvatarOfBreach = 5524, - + MapAreaContainsAvatarOfBreach = 5526, + /// /// map_area_contains_avatar_of_essence /// - MapAreaContainsAvatarOfEssence = 5525, - + MapAreaContainsAvatarOfEssence = 5527, + /// /// map_area_contains_avatar_of_perandus /// - MapAreaContainsAvatarOfPerandus = 5526, - + MapAreaContainsAvatarOfPerandus = 5528, + /// /// map_area_contains_avatar_of_anarchy /// - MapAreaContainsAvatarOfAnarchy = 5527, - + MapAreaContainsAvatarOfAnarchy = 5529, + /// /// map_area_contains_avatar_of_talisman /// - MapAreaContainsAvatarOfTalisman = 5528, - + MapAreaContainsAvatarOfTalisman = 5530, + /// /// map_area_contains_avatar_of_tempest /// - MapAreaContainsAvatarOfTempest = 5529, - + MapAreaContainsAvatarOfTempest = 5531, + /// /// map_random_area_prophecy /// - MapRandomAreaProphecy = 5530, - + MapRandomAreaProphecy = 5532, + /// /// map_contains_nevalis_monkey /// - MapContainsNevalisMonkey = 5531, - + MapContainsNevalisMonkey = 5533, + /// /// armour_+%_while_no_energy_shield /// - ArmourPctWhileNoEnergyShield = 5532, - + ArmourPctWhileNoEnergyShield = 5534, + /// /// life_leech_from_attack_damage_permyriad_vs_taunted_enemies /// - LifeLeechFromAttackDamagePermyriadVsTauntedEnemies = 5533, - + LifeLeechFromAttackDamagePermyriadVsTauntedEnemies = 5535, + /// /// random_curse_on_hit_%_against_uncursed_enemies /// - RandomCurseOnHitPctAgainstUncursedEnemies = 5534, - + RandomCurseOnHitPctAgainstUncursedEnemies = 5536, + /// /// mana_leech_from_attack_damage_permyriad_per_power_charge /// - ManaLeechFromAttackDamagePermyriadPerPowerCharge = 5535, - + ManaLeechFromAttackDamagePermyriadPerPowerCharge = 5537, + /// /// virtual_life_leech_from_attack_damage_permyriad /// - VirtualLifeLeechFromAttackDamagePermyriad = 5536, - + VirtualLifeLeechFromAttackDamagePermyriad = 5538, + /// /// virtual_mana_leech_from_attack_damage_permyriad /// - VirtualManaLeechFromAttackDamagePermyriad = 5537, - + VirtualManaLeechFromAttackDamagePermyriad = 5539, + /// /// gain_X_life_on_stun /// - GainXLifeOnStun = 5538, - + GainXLifeOnStun = 5540, + /// /// blood_offering_%_of_life_to_lose /// - BloodOfferingPctOfLifeToLose = 5539, - + BloodOfferingPctOfLifeToLose = 5541, + /// /// blood_offering_%_of_lost_life_to_regenerate_as_life_per_second /// - BloodOfferingPctOfLostLifeToRegenerateAsLifePerSecond = 5540, - + BloodOfferingPctOfLostLifeToRegenerateAsLifePerSecond = 5542, + /// /// blood_offering_life_regenerated_+%_final_per_corpse /// - BloodOfferingLifeRegeneratedPctFinalPerCorpse = 5541, - + BloodOfferingLifeRegeneratedPctFinalPerCorpse = 5543, + /// /// damage_+%_vs_chilled_enemies /// - DamagePctVsChilledEnemies = 5542, - + DamagePctVsChilledEnemies = 5544, + /// /// additional_block_%_while_on_consecrated_ground /// - AdditionalBlockPctWhileOnConsecratedGround = 5543, - + AdditionalBlockPctWhileOnConsecratedGround = 5545, + /// /// warcry_buff_effect_+% /// - WarcryBuffEffectPct = 5544, - + WarcryBuffEffectPct = 5546, + /// /// spell_and_attack_minimum_added_fire_damage /// - SpellAndAttackMinimumAddedFireDamage = 5545, - + SpellAndAttackMinimumAddedFireDamage = 5547, + /// /// spell_and_attack_maximum_added_fire_damage /// - SpellAndAttackMaximumAddedFireDamage = 5546, - + SpellAndAttackMaximumAddedFireDamage = 5548, + /// /// resist_all_elements_%_with_200_or_more_strength /// - ResistAllElementsPctWith200OrMoreStrength = 5547, - + ResistAllElementsPctWith200OrMoreStrength = 5549, + /// /// spell_block_%_if_blocked_an_attack_recently /// - SpellBlockPctIfBlockedAnAttackRecently = 5548, - + SpellBlockPctIfBlockedAnAttackRecently = 5550, + /// /// track_have_blocked_spell_recently /// - TrackHaveBlockedSpellRecently = 5549, - + TrackHaveBlockedSpellRecently = 5551, + /// /// have_blocked_spell_recently /// - HaveBlockedSpellRecently = 5550, - + HaveBlockedSpellRecently = 5552, + /// /// attack_block_%_if_blocked_a_spell_recently /// - AttackBlockPctIfBlockedASpellRecently = 5551, - + AttackBlockPctIfBlockedASpellRecently = 5553, + /// /// life_regeneration_rate_per_minute_%_if_have_been_hit_recently /// - LifeRegenerationRatePerMinutePctIfHaveBeenHitRecently = 5552, - + LifeRegenerationRatePerMinutePctIfHaveBeenHitRecently = 5554, + /// /// life_regeneration_rate_per_minute_%_with_400_or_more_strength /// - LifeRegenerationRatePerMinutePctWith400OrMoreStrength = 5553, - + LifeRegenerationRatePerMinutePctWith400OrMoreStrength = 5555, + /// /// ground_tar_when_hit_%_chance /// - GroundTarWhenHitPctChance = 5554, - + GroundTarWhenHitPctChance = 5556, + /// /// spell_and_attack_minimum_added_chaos_damage_during_flask_effect /// - SpellAndAttackMinimumAddedChaosDamageDuringFlaskEffect = 5555, - + SpellAndAttackMinimumAddedChaosDamageDuringFlaskEffect = 5557, + /// /// spell_and_attack_maximum_added_chaos_damage_during_flask_effect /// - SpellAndAttackMaximumAddedChaosDamageDuringFlaskEffect = 5556, - + SpellAndAttackMaximumAddedChaosDamageDuringFlaskEffect = 5558, + /// /// fire_damage_+%_if_you_have_been_hit_recently /// - FireDamagePctIfYouHaveBeenHitRecently = 5557, - + FireDamagePctIfYouHaveBeenHitRecently = 5559, + /// /// immune_to_freeze_and_chill_while_ignited /// - ImmuneToFreezeAndChillWhileIgnited = 5558, - + ImmuneToFreezeAndChillWhileIgnited = 5560, + /// /// fire_penetration_%_if_you_have_blocked_recently /// - FirePenetrationPctIfYouHaveBlockedRecently = 5559, - + FirePenetrationPctIfYouHaveBlockedRecently = 5561, + /// /// local_display_grants_level_X_vengeance /// - LocalDisplayGrantsLevelXVengeance = 5560, - + LocalDisplayGrantsLevelXVengeance = 5562, + /// /// gain_X_power_charges_on_using_a_warcry /// - GainXPowerChargesOnUsingAWarcry = 5561, - + GainXPowerChargesOnUsingAWarcry = 5563, + /// /// gain_onslaught_ms_on_using_a_warcry /// - GainOnslaughtMsOnUsingAWarcry = 5562, - + GainOnslaughtMsOnUsingAWarcry = 5564, + /// /// local_display_socketed_golem_buff_effect_+% /// - LocalDisplaySocketedGolemBuffEffectPct = 5563, - + LocalDisplaySocketedGolemBuffEffectPct = 5565, + /// /// local_display_socketed_golem_chance_to_taunt_% /// - LocalDisplaySocketedGolemChanceToTauntPct = 5564, - + LocalDisplaySocketedGolemChanceToTauntPct = 5566, + /// /// local_display_socketed_golem_life_regeneration_rate_per_minute_% /// - LocalDisplaySocketedGolemLifeRegenerationRatePerMinutePct = 5565, - + LocalDisplaySocketedGolemLifeRegenerationRatePerMinutePct = 5567, + /// /// minimum_added_cold_damage_vs_chilled_enemies /// - MinimumAddedColdDamageVsChilledEnemies = 5566, - + MinimumAddedColdDamageVsChilledEnemies = 5568, + /// /// maximum_added_cold_damage_vs_chilled_enemies /// - MaximumAddedColdDamageVsChilledEnemies = 5567, - + MaximumAddedColdDamageVsChilledEnemies = 5569, + /// /// map_area_contains_avatar_of_rampage /// - MapAreaContainsAvatarOfRampage = 5568, - + MapAreaContainsAvatarOfRampage = 5570, + /// /// map_area_contains_avatar_of_beyond /// - MapAreaContainsAvatarOfBeyond = 5569, - + MapAreaContainsAvatarOfBeyond = 5571, + /// /// map_area_contains_avatar_of_onslaught /// - MapAreaContainsAvatarOfOnslaught = 5570, - + MapAreaContainsAvatarOfOnslaught = 5572, + /// /// map_area_contains_avatar_of_ambush /// - MapAreaContainsAvatarOfAmbush = 5571, - + MapAreaContainsAvatarOfAmbush = 5573, + /// /// map_area_contains_avatar_of_bloodlines /// - MapAreaContainsAvatarOfBloodlines = 5572, - + MapAreaContainsAvatarOfBloodlines = 5574, + /// /// map_area_contains_avatar_of_nemesis /// - MapAreaContainsAvatarOfNemesis = 5573, - + MapAreaContainsAvatarOfNemesis = 5575, + /// /// map_area_contains_avatar_of_torment /// - MapAreaContainsAvatarOfTorment = 5574, - + MapAreaContainsAvatarOfTorment = 5576, + /// /// map_area_contains_avatar_of_domination /// - MapAreaContainsAvatarOfDomination = 5575, - + MapAreaContainsAvatarOfDomination = 5577, + /// /// map_area_contains_avatar_of_invasion /// - MapAreaContainsAvatarOfInvasion = 5576, - + MapAreaContainsAvatarOfInvasion = 5578, + /// /// map_area_contains_avatar_of_warbands /// - MapAreaContainsAvatarOfWarbands = 5577, - + MapAreaContainsAvatarOfWarbands = 5579, + /// /// avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently /// - AvoidFreezeAndChillPctIfYouHaveUsedAFireSkillRecently = 5578, - + AvoidFreezeAndChillPctIfYouHaveUsedAFireSkillRecently = 5580, + /// /// track_have_used_a_fire_skill_recently /// - TrackHaveUsedAFireSkillRecently = 5579, - + TrackHaveUsedAFireSkillRecently = 5581, + /// /// have_used_a_fire_skill_recently /// - HaveUsedAFireSkillRecently = 5580, - + HaveUsedAFireSkillRecently = 5582, + /// /// avoid_shock_%_while_chilled /// - AvoidShockPctWhileChilled = 5581, - + AvoidShockPctWhileChilled = 5583, + /// /// local_display_nearby_enemies_are_intimidated /// - LocalDisplayNearbyEnemiesAreIntimidated = 5582, - + LocalDisplayNearbyEnemiesAreIntimidated = 5584, + /// /// chance_to_shock_chilled_enemies_% /// - ChanceToShockChilledEnemiesPct = 5583, - + ChanceToShockChilledEnemiesPct = 5585, + /// /// map_area_contains_map_chest /// - MapAreaContainsMapChest = 5584, - + MapAreaContainsMapChest = 5586, + /// /// map_area_contains_unique_item_chest /// - MapAreaContainsUniqueItemChest = 5585, - + MapAreaContainsUniqueItemChest = 5587, + /// /// map_area_contains_currency_chest /// - MapAreaContainsCurrencyChest = 5586, - + MapAreaContainsCurrencyChest = 5588, + /// /// map_area_contains_perandus_coin_chest /// - MapAreaContainsPerandusCoinChest = 5587, - + MapAreaContainsPerandusCoinChest = 5589, + /// /// map_area_contains_jewellery_chest /// - MapAreaContainsJewelleryChest = 5588, - + MapAreaContainsJewelleryChest = 5590, + /// /// perandus_double_number_of_coins_found /// - PerandusDoubleNumberOfCoinsFound = 5589, - + PerandusDoubleNumberOfCoinsFound = 5591, + /// /// local_chill_on_hit_ms_if_in_off_hand /// - LocalChillOnHitMsIfInOffHand = 5590, - + LocalChillOnHitMsIfInOffHand = 5592, + /// /// off_hand_local_chill_on_hit_ms /// - OffHandLocalChillOnHitMs = 5591, - + OffHandLocalChillOnHitMs = 5593, + /// /// movement_speed_+%_on_throwing_trap /// - MovementSpeedPctOnThrowingTrap = 5592, - + MovementSpeedPctOnThrowingTrap = 5594, + /// /// herald_of_thunder_buff_effect_+% /// - HeraldOfThunderBuffEffectPct = 5593, - + HeraldOfThunderBuffEffectPct = 5595, + /// /// local_display_movement_speed_+%_for_you_and_nearby_allies /// - LocalDisplayMovementSpeedPctForYouAndNearbyAllies = 5594, - + LocalDisplayMovementSpeedPctForYouAndNearbyAllies = 5596, + /// /// curse_on_hit_level_flammability /// - CurseOnHitLevelFlammability = 5595, - + CurseOnHitLevelFlammability = 5597, + /// /// phasing_on_trap_triggered_by_an_enemy_ms /// - PhasingOnTrapTriggeredByAnEnemyMs = 5596, - + PhasingOnTrapTriggeredByAnEnemyMs = 5598, + /// /// global_attack_speed_+%_per_level /// - GlobalAttackSpeedPctPerLevel = 5597, - + GlobalAttackSpeedPctPerLevel = 5599, + /// /// physical_damage_+%_final_for_minion /// - PhysicalDamagePctFinalForMinion = 5598, - + PhysicalDamagePctFinalForMinion = 5600, + /// /// zombie_physical_damage_+%_final /// - ZombiePhysicalDamagePctFinal = 5599, - + ZombiePhysicalDamagePctFinal = 5601, + /// /// ground_tar_when_hit_base_area_of_effect_radius /// - GroundTarWhenHitBaseAreaOfEffectRadius = 5600, - + GroundTarWhenHitBaseAreaOfEffectRadius = 5602, + /// /// ground_tar_when_hit_duration_ms /// - GroundTarWhenHitDurationMs = 5601, - + GroundTarWhenHitDurationMs = 5603, + /// /// ground_tar_when_hit_movement_speed_+% /// - GroundTarWhenHitMovementSpeedPct = 5602, - + GroundTarWhenHitMovementSpeedPct = 5604, + /// /// chance_to_gain_unholy_might_on_block_ms /// - ChanceToGainUnholyMightOnBlockMs = 5603, - + ChanceToGainUnholyMightOnBlockMs = 5605, + /// /// old_dagger_implicit_critical_strike_chance_+30% /// - OldDaggerImplicitCriticalStrikeChance30Pct = 5604, - + OldDaggerImplicitCriticalStrikeChance30Pct = 5606, + /// /// old_dagger_implicit_critical_strike_chance_+40% /// - OldDaggerImplicitCriticalStrikeChance40Pct = 5605, - + OldDaggerImplicitCriticalStrikeChance40Pct = 5607, + /// /// old_dagger_implicit_critical_strike_chance_+50% /// - OldDaggerImplicitCriticalStrikeChance50Pct = 5606, - + OldDaggerImplicitCriticalStrikeChance50Pct = 5608, + /// /// old_dagger_implicit_critical_strike_chance_+30%_from_main_hand /// - OldDaggerImplicitCriticalStrikeChance30PctFromMainHand = 5607, - + OldDaggerImplicitCriticalStrikeChance30PctFromMainHand = 5609, + /// /// old_dagger_implicit_critical_strike_chance_+40%_from_main_hand /// - OldDaggerImplicitCriticalStrikeChance40PctFromMainHand = 5608, - + OldDaggerImplicitCriticalStrikeChance40PctFromMainHand = 5610, + /// /// old_dagger_implicit_critical_strike_chance_+50%_from_main_hand /// - OldDaggerImplicitCriticalStrikeChance50PctFromMainHand = 5609, - + OldDaggerImplicitCriticalStrikeChance50PctFromMainHand = 5611, + /// /// old_dagger_implicit_critical_strike_chance_+30%_from_off_hand /// - OldDaggerImplicitCriticalStrikeChance30PctFromOffHand = 5610, - + OldDaggerImplicitCriticalStrikeChance30PctFromOffHand = 5612, + /// /// old_dagger_implicit_critical_strike_chance_+40%_from_off_hand /// - OldDaggerImplicitCriticalStrikeChance40PctFromOffHand = 5611, - + OldDaggerImplicitCriticalStrikeChance40PctFromOffHand = 5613, + /// /// old_dagger_implicit_critical_strike_chance_+50%_from_off_hand /// - OldDaggerImplicitCriticalStrikeChance50PctFromOffHand = 5612, - + OldDaggerImplicitCriticalStrikeChance50PctFromOffHand = 5614, + /// /// has_defender_conditional_damage_stats /// - HasDefenderConditionalDamageStats = 5613, - + HasDefenderConditionalDamageStats = 5615, + /// /// area_transition_animation_index /// - AreaTransitionAnimationIndex = 5614, - + AreaTransitionAnimationIndex = 5616, + /// /// map_leaguestone_override_base_num_tormented_spirits /// - MapLeaguestoneOverrideBaseNumTormentedSpirits = 5615, - + MapLeaguestoneOverrideBaseNumTormentedSpirits = 5617, + /// /// map_leaguestone_additional_tormented_spirits /// - MapLeaguestoneAdditionalTormentedSpirits = 5616, - + MapLeaguestoneAdditionalTormentedSpirits = 5618, + /// /// map_random_unique_monster_is_possessed /// - MapRandomUniqueMonsterIsPossessed = 5617, - + MapRandomUniqueMonsterIsPossessed = 5619, + /// /// map_tormented_spirits_drop_x_additional_rare_items /// - MapTormentedSpiritsDropXAdditionalRareItems = 5618, - + MapTormentedSpiritsDropXAdditionalRareItems = 5620, + /// /// map_area_contains_tormented_vaal_cultist /// - MapAreaContainsTormentedVaalCultist = 5619, - + MapAreaContainsTormentedVaalCultist = 5621, + /// /// map_area_contains_tormented_seditionist /// - MapAreaContainsTormentedSeditionist = 5620, - + MapAreaContainsTormentedSeditionist = 5622, + /// /// map_area_contains_tormented_embezzler /// - MapAreaContainsTormentedEmbezzler = 5621, - + MapAreaContainsTormentedEmbezzler = 5623, + /// /// map_leaguestone_override_base_num_perandus_chests /// - MapLeaguestoneOverrideBaseNumPerandusChests = 5622, - + MapLeaguestoneOverrideBaseNumPerandusChests = 5624, + /// /// display_monster_uses_vaal_burning_arrow /// - DisplayMonsterUsesVaalBurningArrow = 5623, - + DisplayMonsterUsesVaalBurningArrow = 5625, + /// /// remove_parent_life_on_death_permyriad /// - RemoveParentLifeOnDeathPermyriad = 5624, - + RemoveParentLifeOnDeathPermyriad = 5626, + /// /// curse_on_hit_level_projectile_weakness /// - CurseOnHitLevelProjectileWeakness = 5625, - + CurseOnHitLevelProjectileWeakness = 5627, + /// /// local_left_ring_slot_maximum_mana /// - LocalLeftRingSlotMaximumMana = 5626, - + LocalLeftRingSlotMaximumMana = 5628, + /// /// local_right_ring_slot_energy_shield /// - LocalRightRingSlotEnergyShield = 5627, - + LocalRightRingSlotEnergyShield = 5629, + /// /// map_leaguestone_additional_breaches /// - MapLeaguestoneAdditionalBreaches = 5628, - + MapLeaguestoneAdditionalBreaches = 5630, + /// /// map_leaguestone_additional_monoliths /// - MapLeaguestoneAdditionalMonoliths = 5629, - + MapLeaguestoneAdditionalMonoliths = 5631, + /// /// map_leaguestone_additional_talismans /// - MapLeaguestoneAdditionalTalismans = 5630, - + MapLeaguestoneAdditionalTalismans = 5632, + /// /// map_leaguestone_additional_rogue_exiles /// - MapLeaguestoneAdditionalRogueExiles = 5631, - + MapLeaguestoneAdditionalRogueExiles = 5633, + /// /// map_leaguestone_additional_perandus_chests /// - MapLeaguestoneAdditionalPerandusChests = 5632, - + MapLeaguestoneAdditionalPerandusChests = 5634, + /// /// local_left_ring_slot_mana_regeneration_rate_per_minute /// - LocalLeftRingSlotManaRegenerationRatePerMinute = 5633, - + LocalLeftRingSlotManaRegenerationRatePerMinute = 5635, + /// /// local_right_ring_slot_maximum_mana /// - LocalRightRingSlotMaximumMana = 5634, - + LocalRightRingSlotMaximumMana = 5636, + /// /// local_left_ring_slot_energy_shield /// - LocalLeftRingSlotEnergyShield = 5635, - + LocalLeftRingSlotEnergyShield = 5637, + /// /// local_display_cast_level_X_consecrate_on_crit /// - LocalDisplayCastLevelXConsecrateOnCrit = 5636, - + LocalDisplayCastLevelXConsecrateOnCrit = 5638, + /// /// is_tormented_spirit /// - IsTormentedSpirit = 5637, - + IsTormentedSpirit = 5639, + /// /// shavronne_teleport_number_of_markers /// - ShavronneTeleportNumberOfMarkers = 5638, - + ShavronneTeleportNumberOfMarkers = 5640, + /// /// map_packs_are_spiders /// - MapPacksAreSpiders = 5639, - + MapPacksAreSpiders = 5641, + /// /// map_packs_are_blackguards /// - MapPacksAreBlackguards = 5640, - + MapPacksAreBlackguards = 5642, + /// /// local_display_cast_level_1_summon_lesser_shrine_on_kill_% /// - LocalDisplayCastLevel1SummonLesserShrineOnKillPct = 5641, - + LocalDisplayCastLevel1SummonLesserShrineOnKillPct = 5643, + /// /// shavronne_teleport_no_teleport /// - ShavronneTeleportNoTeleport = 5642, - + ShavronneTeleportNoTeleport = 5644, + /// /// debug_projectile_index_override /// - DebugProjectileIndexOverride = 5643, - + DebugProjectileIndexOverride = 5645, + /// /// ground_slam_retarget_after_contact_point /// - GroundSlamRetargetAfterContactPoint = 5644, - + GroundSlamRetargetAfterContactPoint = 5646, + /// /// map_leaguestone_override_base_num_warband_packs /// - MapLeaguestoneOverrideBaseNumWarbandPacks = 5645, - + MapLeaguestoneOverrideBaseNumWarbandPacks = 5647, + /// /// map_leaguestone_additional_warband_packs /// - MapLeaguestoneAdditionalWarbandPacks = 5646, - + MapLeaguestoneAdditionalWarbandPacks = 5648, + /// /// map_leaguestone_explicit_warband_type_override /// - MapLeaguestoneExplicitWarbandTypeOverride = 5647, - + MapLeaguestoneExplicitWarbandTypeOverride = 5649, + /// /// map_leaguestone_contains_warband_leader /// - MapLeaguestoneContainsWarbandLeader = 5648, - + MapLeaguestoneContainsWarbandLeader = 5650, + /// /// map_leaguestone_override_base_num_shrines /// - MapLeaguestoneOverrideBaseNumShrines = 5649, - + MapLeaguestoneOverrideBaseNumShrines = 5651, + /// /// map_leaguestone_shrine_monster_rarity_override /// - MapLeaguestoneShrineMonsterRarityOverride = 5650, - + MapLeaguestoneShrineMonsterRarityOverride = 5652, + /// /// map_leaguestone_shrine_override_type /// - MapLeaguestoneShrineOverrideType = 5651, - + MapLeaguestoneShrineOverrideType = 5653, + /// /// map_rampage_time_+% /// - MapRampageTimePct = 5652, - + MapRampageTimePct = 5654, + /// /// map_contains_x_additional_animated_weapon_packs /// - MapContainsXAdditionalAnimatedWeaponPacks = 5653, - + MapContainsXAdditionalAnimatedWeaponPacks = 5655, + /// /// map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks /// - MapLeaguestonesCurrencyItemsDropWhenFirstReachingXRampageStacks = 5654, - + MapLeaguestonesCurrencyItemsDropWhenFirstReachingXRampageStacks = 5656, + /// /// map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks /// - MapLeaguestonesSpawnPowerfulMonsterWhenReachingXRampageStacks = 5655, - + MapLeaguestonesSpawnPowerfulMonsterWhenReachingXRampageStacks = 5657, + /// /// map_contains_keepers_of_the_trove_bloodline_pack /// - MapContainsKeepersOfTheTroveBloodlinePack = 5656, - + MapContainsKeepersOfTheTroveBloodlinePack = 5658, + /// /// map_contains_wealthy_pack /// - MapContainsWealthyPack = 5657, - + MapContainsWealthyPack = 5659, + /// /// map_leaguestone_implicit_tempest_random /// - MapLeaguestoneImplicitTempestRandom = 5658, - + MapLeaguestoneImplicitTempestRandom = 5660, + /// /// map_leaguestone_explicit_tempest_type_override /// - MapLeaguestoneExplicitTempestTypeOverride = 5659, - + MapLeaguestoneExplicitTempestTypeOverride = 5661, + /// /// local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius /// - LocalUniqueJewelFrostboltAdditionalProjectilesWith40IntInRadius = 5660, - + LocalUniqueJewelFrostboltAdditionalProjectilesWith40IntInRadius = 5662, + /// /// frostbolt_number_of_additional_projectiles /// - FrostboltNumberOfAdditionalProjectiles = 5661, - + FrostboltNumberOfAdditionalProjectiles = 5663, + /// /// skill_area_of_effect_+%_final /// - SkillAreaOfEffectPctFinal = 5662, - + SkillAreaOfEffectPctFinal = 5664, + /// /// total_skill_area_of_effect_+%_including_final /// - TotalSkillAreaOfEffectPctIncludingFinal = 5663, - + TotalSkillAreaOfEffectPctIncludingFinal = 5665, + /// /// local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius /// - LocalUniqueJewelMagmaOrbAdditionalProjectilesWith40IntInRadius = 5664, - + LocalUniqueJewelMagmaOrbAdditionalProjectilesWith40IntInRadius = 5666, + /// /// magma_orb_number_of_additional_projectiles /// - MagmaOrbNumberOfAdditionalProjectiles = 5665, - + MagmaOrbNumberOfAdditionalProjectiles = 5667, + /// /// curse_on_hit_level_cold_weakness /// - CurseOnHitLevelColdWeakness = 5666, - + CurseOnHitLevelColdWeakness = 5668, + /// /// elemental_damage_+%_if_used_a_warcry_recently /// - ElementalDamagePctIfUsedAWarcryRecently = 5667, - + ElementalDamagePctIfUsedAWarcryRecently = 5669, + /// /// local_display_socketed_golem_attack_and_cast_speed_+% /// - LocalDisplaySocketedGolemAttackAndCastSpeedPct = 5668, - + LocalDisplaySocketedGolemAttackAndCastSpeedPct = 5670, + /// /// local_display_cast_animate_weapon_on_kill_%_chance /// - LocalDisplayCastAnimateWeaponOnKillPctChance = 5669, - + LocalDisplayCastAnimateWeaponOnKillPctChance = 5671, + /// /// gain_onslaught_ms_on_skill_use /// - GainOnslaughtMsOnSkillUse = 5670, - + GainOnslaughtMsOnSkillUse = 5672, + /// /// local_display_socketed_golem_skill_grants_onslaught_when_summoned /// - LocalDisplaySocketedGolemSkillGrantsOnslaughtWhenSummoned = 5671, - + LocalDisplaySocketedGolemSkillGrantsOnslaughtWhenSummoned = 5673, + /// /// has_unholy_might /// - HasUnholyMight = 5672, - + HasUnholyMight = 5674, + /// /// chest_drop_reliquary_items /// - ChestDropReliquaryItems = 5673, - + ChestDropReliquaryItems = 5675, + /// /// deal_no_skill_dot_damage_over_time /// - DealNoSkillDotDamageOverTime = 5674, - + DealNoSkillDotDamageOverTime = 5676, + /// /// combined_all_projectile_damage_+% /// - CombinedAllProjectileDamagePct = 5675, - + CombinedAllProjectileDamagePct = 5677, + /// /// combined_all_projectile_damage_+%_final /// - CombinedAllProjectileDamagePctFinal = 5676, - + CombinedAllProjectileDamagePctFinal = 5678, + /// /// combined_all_area_damage_+% /// - CombinedAllAreaDamagePct = 5677, - + CombinedAllAreaDamagePct = 5679, + /// /// combined_all_area_damage_+%_final /// - CombinedAllAreaDamagePctFinal = 5678, - + CombinedAllAreaDamagePctFinal = 5680, + /// /// combined_all_added_damage_+%_final /// - CombinedAllAddedDamagePctFinal = 5679, - + CombinedAllAddedDamagePctFinal = 5681, + /// /// combined_hit_all_damage_+% /// - CombinedHitAllDamagePct = 5680, - + CombinedHitAllDamagePct = 5682, + /// /// combined_skill_dot_all_damage_over_time_+% /// - CombinedSkillDotAllDamageOverTimePct = 5681, - + CombinedSkillDotAllDamageOverTimePct = 5683, + /// /// combined_skill_dot_all_damage_over_time_+%_final /// - CombinedSkillDotAllDamageOverTimePctFinal = 5682, - + CombinedSkillDotAllDamageOverTimePctFinal = 5684, + /// /// projectile_damage_modifiers_apply_to_skill_dot /// - ProjectileDamageModifiersApplyToSkillDot = 5683, - + ProjectileDamageModifiersApplyToSkillDot = 5685, + /// /// fire_beam_max_rotation_speed_+% /// - FireBeamMaxRotationSpeedPct = 5684, - + FireBeamMaxRotationSpeedPct = 5686, + /// /// map_player_onslaught_on_kill_% /// - MapPlayerOnslaughtOnKillPct = 5685, - + MapPlayerOnslaughtOnKillPct = 5687, + /// /// map_monster_attack_cast_and_movement_speed_+% /// - MapMonsterAttackCastAndMovementSpeedPct = 5686, - + MapMonsterAttackCastAndMovementSpeedPct = 5688, + /// /// map_rare_monsters_drop_x_additional_rare_items /// - MapRareMonstersDropXAdditionalRareItems = 5687, - + MapRareMonstersDropXAdditionalRareItems = 5689, + /// /// map_area_contains_x_rare_monsters_with_inner_treasure /// - MapAreaContainsXRareMonstersWithInnerTreasure = 5688, - + MapAreaContainsXRareMonstersWithInnerTreasure = 5690, + /// /// map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final /// - MapLeaguestoneInvasionBossItemQuantityAndRarityPctFinal = 5689, - + MapLeaguestoneInvasionBossItemQuantityAndRarityPctFinal = 5691, + /// /// map_first_invasion_boss_killed_drops_x_additional_currency /// - MapFirstInvasionBossKilledDropsXAdditionalCurrency = 5690, - + MapFirstInvasionBossKilledDropsXAdditionalCurrency = 5692, + /// /// map_invasion_monsters_guarded_by_x_magic_packs /// - MapInvasionMonstersGuardedByXMagicPacks = 5691, - + MapInvasionMonstersGuardedByXMagicPacks = 5693, + /// /// map_leaguestone_override_base_num_strongboxes /// - MapLeaguestoneOverrideBaseNumStrongboxes = 5692, - + MapLeaguestoneOverrideBaseNumStrongboxes = 5694, + /// /// map_leaguestone_additional_strongboxes /// - MapLeaguestoneAdditionalStrongboxes = 5693, - + MapLeaguestoneAdditionalStrongboxes = 5695, + /// /// map_first_strongbox_contains_x_additional_rare_monsters /// - MapFirstStrongboxContainsXAdditionalRareMonsters = 5694, - + MapFirstStrongboxContainsXAdditionalRareMonsters = 5696, + /// /// map_area_contains_gemcutters_strongbox /// - MapAreaContainsGemcuttersStrongbox = 5695, - + MapAreaContainsGemcuttersStrongbox = 5697, + /// /// map_area_contains_cartographers_strongbox /// - MapAreaContainsCartographersStrongbox = 5696, - + MapAreaContainsCartographersStrongbox = 5698, + /// /// map_area_contains_unique_strongbox /// - MapAreaContainsUniqueStrongbox = 5697, - + MapAreaContainsUniqueStrongbox = 5699, + /// /// map_area_contains_arcanists_strongbox /// - MapAreaContainsArcanistsStrongbox = 5698, - + MapAreaContainsArcanistsStrongbox = 5700, + /// /// map_strongboxes_drop_x_additional_rare_items /// - MapStrongboxesDropXAdditionalRareItems = 5699, - + MapStrongboxesDropXAdditionalRareItems = 5701, + /// /// map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final /// - MapLeaguestoneBeyondMonsterItemQuantityAndRarityPctFinal = 5700, - + MapLeaguestoneBeyondMonsterItemQuantityAndRarityPctFinal = 5702, + /// /// map_first_unique_beyond_boss_slain_drops_x_beyond_uniques /// - MapFirstUniqueBeyondBossSlainDropsXBeyondUniques = 5701, - + MapFirstUniqueBeyondBossSlainDropsXBeyondUniques = 5703, + /// /// map_leaguestone_x_monsters_spawn_random_beyond_boss /// - MapLeaguestoneXMonstersSpawnRandomBeyondBoss = 5702, - + MapLeaguestoneXMonstersSpawnRandomBeyondBoss = 5704, + /// /// map_leaguestone_x_monsters_spawn_abaxoth /// - MapLeaguestoneXMonstersSpawnAbaxoth = 5703, - + MapLeaguestoneXMonstersSpawnAbaxoth = 5705, + /// /// map_item_found_rarity_+%_per_15_rampage_stacks /// - MapItemFoundRarityPctPer15RampageStacks = 5704, - + MapItemFoundRarityPctPer15RampageStacks = 5706, + /// /// item_found_rarity_+%_per_15_rampage_stacks /// - ItemFoundRarityPctPer15RampageStacks = 5705, - + ItemFoundRarityPctPer15RampageStacks = 5707, + /// /// leaguestone_spawn_beyond_monster_on_death_index /// - LeaguestoneSpawnBeyondMonsterOnDeathIndex = 5706, - + LeaguestoneSpawnBeyondMonsterOnDeathIndex = 5708, + /// /// map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+% /// - MapContainsThreeMagicPacksWithAttackCastAndMovementSpeedPct = 5707, - + MapContainsThreeMagicPacksWithAttackCastAndMovementSpeedPct = 5709, + /// /// map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final /// - MapContainsThreeMagicPacksWithItemQuantityOfDroppedItemsPctFinal = 5708, - + MapContainsThreeMagicPacksWithItemQuantityOfDroppedItemsPctFinal = 5710, + /// /// leaguestone_maximum_area_level /// - LeaguestoneMaximumAreaLevel = 5709, - + LeaguestoneMaximumAreaLevel = 5711, + /// /// attack_minimum_added_physical_damage_per_level /// - AttackMinimumAddedPhysicalDamagePerLevel = 5710, - + AttackMinimumAddedPhysicalDamagePerLevel = 5712, + /// /// attack_maximum_added_physical_damage_per_level /// - AttackMaximumAddedPhysicalDamagePerLevel = 5711, - + AttackMaximumAddedPhysicalDamagePerLevel = 5713, + /// /// attack_minimum_added_fire_damage_per_10_strength /// - AttackMinimumAddedFireDamagePer10Strength = 5712, - + AttackMinimumAddedFireDamagePer10Strength = 5714, + /// /// attack_maximum_added_fire_damage_per_10_strength /// - AttackMaximumAddedFireDamagePer10Strength = 5713, - + AttackMaximumAddedFireDamagePer10Strength = 5715, + /// /// unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final /// - UniqueRyuslathasClutchesMinimumPhysicalAttackDamagePctFinal = 5714, - + UniqueRyuslathasClutchesMinimumPhysicalAttackDamagePctFinal = 5716, + /// /// unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final /// - UniqueRyuslathasClutchesMaximumPhysicalAttackDamagePctFinal = 5715, - + UniqueRyuslathasClutchesMaximumPhysicalAttackDamagePctFinal = 5717, + /// /// is_intimidated /// - IsIntimidated = 5716, - + IsIntimidated = 5718, + /// /// local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius /// - LocalUniqueJewelFrostBladesMeleeDamagePenetratesPctColdResistanceWith40DexInRadius = 5717, - + LocalUniqueJewelFrostBladesMeleeDamagePenetratesPctColdResistanceWith40DexInRadius = 5719, + /// /// frost_blades_melee_damage_penetrates_%_cold_resistance /// - FrostBladesMeleeDamagePenetratesPctColdResistance = 5718, - + FrostBladesMeleeDamagePenetratesPctColdResistance = 5720, + /// /// melee_damage_penetrates_%_cold_resistance /// - MeleeDamagePenetratesPctColdResistance = 5719, - + MeleeDamagePenetratesPctColdResistance = 5721, + /// /// local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield /// - LocalDisplaySocketedGolemSkillsMinionsLifePctToAddAsEnergyShield = 5720, - + LocalDisplaySocketedGolemSkillsMinionsLifePctToAddAsEnergyShield = 5722, + /// /// mana_leech_permyriad_vs_frozen_enemies /// - ManaLeechPermyriadVsFrozenEnemies = 5721, - + ManaLeechPermyriadVsFrozenEnemies = 5723, + /// /// map_mini_monolith_monsters_are_magic /// - MapMiniMonolithMonstersAreMagic = 5722, - + MapMiniMonolithMonstersAreMagic = 5724, + /// /// map_shrines_grant_a_random_additional_effect /// - MapShrinesGrantARandomAdditionalEffect = 5723, - + MapShrinesGrantARandomAdditionalEffect = 5725, + /// /// map_shrines_drop_x_currency_items_on_activation /// - MapShrinesDropXCurrencyItemsOnActivation = 5724, - + MapShrinesDropXCurrencyItemsOnActivation = 5726, + /// /// map_monsters_spawned_with_talisman_drop_additional_rare_items /// - MapMonstersSpawnedWithTalismanDropAdditionalRareItems = 5725, - + MapMonstersSpawnedWithTalismanDropAdditionalRareItems = 5727, + /// /// chance_to_cast_on_kill_% /// - ChanceToCastOnKillPct = 5726, - + ChanceToCastOnKillPct = 5728, + /// /// map_warbands_packs_have_additional_grunts /// - MapWarbandsPacksHaveAdditionalGrunts = 5727, - + MapWarbandsPacksHaveAdditionalGrunts = 5729, + /// /// map_warbands_packs_have_additional_supports /// - MapWarbandsPacksHaveAdditionalSupports = 5728, - + MapWarbandsPacksHaveAdditionalSupports = 5730, + /// /// map_warbands_packs_have_additional_elites /// - MapWarbandsPacksHaveAdditionalElites = 5729, - + MapWarbandsPacksHaveAdditionalElites = 5731, + /// /// map_leaguestone_warbands_packs_have_item_rarity_+%_final /// - MapLeaguestoneWarbandsPacksHaveItemRarityPctFinal = 5730, - + MapLeaguestoneWarbandsPacksHaveItemRarityPctFinal = 5732, + /// /// map_leaguestone_warbands_packs_have_item_quantity_+%_final /// - MapLeaguestoneWarbandsPacksHaveItemQuantityPctFinal = 5731, - + MapLeaguestoneWarbandsPacksHaveItemQuantityPctFinal = 5733, + /// /// map_monsters_near_shrines_are_chilled /// - MapMonstersNearShrinesAreChilled = 5732, - + MapMonstersNearShrinesAreChilled = 5734, + /// /// map_imprisoned_monsters_damage_taken_+% /// - MapImprisonedMonstersDamageTakenPct = 5733, - + MapImprisonedMonstersDamageTakenPct = 5735, + /// /// map_imprisoned_monsters_damage_+% /// - MapImprisonedMonstersDamagePct = 5734, - + MapImprisonedMonstersDamagePct = 5736, + /// /// map_leaguestone_imprisoned_monsters_item_rarity_+%_final /// - MapLeaguestoneImprisonedMonstersItemRarityPctFinal = 5735, - + MapLeaguestoneImprisonedMonstersItemRarityPctFinal = 5737, + /// /// map_leaguestone_imprisoned_monsters_item_quantity_+%_final /// - MapLeaguestoneImprisonedMonstersItemQuantityPctFinal = 5736, - + MapLeaguestoneImprisonedMonstersItemQuantityPctFinal = 5738, + /// /// map_leaguestone_strongboxes_rarity_override /// - MapLeaguestoneStrongboxesRarityOverride = 5737, - + MapLeaguestoneStrongboxesRarityOverride = 5739, + /// /// has_shrine_effect /// - HasShrineEffect = 5738, - + HasShrineEffect = 5740, + /// /// map_player_dodge_chance_%_during_shrine_effect /// - MapPlayerDodgeChancePctDuringShrineEffect = 5739, - + MapPlayerDodgeChancePctDuringShrineEffect = 5741, + /// /// dodge_chance_%_during_shrine_effect /// - DodgeChancePctDuringShrineEffect = 5740, - + DodgeChancePctDuringShrineEffect = 5742, + /// /// map_player_damage_+%_vs_breach_monsters /// - MapPlayerDamagePctVsBreachMonsters = 5741, - + MapPlayerDamagePctVsBreachMonsters = 5743, + /// /// map_player_damage_taken_+%_vs_breach_monsters /// - MapPlayerDamageTakenPctVsBreachMonsters = 5742, - + MapPlayerDamageTakenPctVsBreachMonsters = 5744, + /// /// damage_+%_vs_breach_monsters /// - DamagePctVsBreachMonsters = 5743, - + DamagePctVsBreachMonsters = 5745, + /// /// damage_taken_+%_vs_breach_monsters /// - DamageTakenPctVsBreachMonsters = 5744, - + DamageTakenPctVsBreachMonsters = 5746, + /// /// map_rare_breach_monster_additional_breach_ring_drop_chance_% /// - MapRareBreachMonsterAdditionalBreachRingDropChancePct = 5745, - + MapRareBreachMonsterAdditionalBreachRingDropChancePct = 5747, + /// /// map_strongboxes_vaal_orb_drop_chance_% /// - MapStrongboxesVaalOrbDropChancePct = 5746, - + MapStrongboxesVaalOrbDropChancePct = 5748, + /// /// map_player_shrine_effect_duration_+% /// - MapPlayerShrineEffectDurationPct = 5747, - + MapPlayerShrineEffectDurationPct = 5749, + /// /// monster_is_beyond_boss /// - MonsterIsBeyondBoss = 5748, - + MonsterIsBeyondBoss = 5750, + /// /// active_skill_base_radius_+ /// - ActiveSkillBaseRadius = 5749, - + ActiveSkillBaseRadius = 5751, + /// /// map_leaguestone_area_contains_x_additional_leaguestones /// - MapLeaguestoneAreaContainsXAdditionalLeaguestones = 5750, - + MapLeaguestoneAreaContainsXAdditionalLeaguestones = 5752, + /// /// map_leaguestone_monolith_contains_essence_type /// - MapLeaguestoneMonolithContainsEssenceType = 5751, - + MapLeaguestoneMonolithContainsEssenceType = 5753, + /// /// map_contains_uul_netol_breach /// - MapContainsUulNetolBreach = 5752, - + MapContainsUulNetolBreach = 5754, + /// /// map_contains_chayula_breach /// - MapContainsChayulaBreach = 5753, - + MapContainsChayulaBreach = 5755, + /// /// number_of_animated_weapons_allowed /// - NumberOfAnimatedWeaponsAllowed = 5754, - + NumberOfAnimatedWeaponsAllowed = 5756, + /// /// number_of_active_animated_weapons /// - NumberOfActiveAnimatedWeapons = 5755, - + NumberOfActiveAnimatedWeapons = 5757, + /// /// map_leaguestone_perandus_chests_have_item_rarity_+%_final /// - MapLeaguestonePerandusChestsHaveItemRarityPctFinal = 5756, - + MapLeaguestonePerandusChestsHaveItemRarityPctFinal = 5758, + /// /// map_leaguestone_perandus_chests_have_item_quantity_+%_final /// - MapLeaguestonePerandusChestsHaveItemQuantityPctFinal = 5757, - + MapLeaguestonePerandusChestsHaveItemQuantityPctFinal = 5759, + /// /// map_perandus_monsters_drop_perandus_coin_stack_% /// - MapPerandusMonstersDropPerandusCoinStackPct = 5758, - + MapPerandusMonstersDropPerandusCoinStackPct = 5760, + /// /// map_perandus_guards_are_rare /// - MapPerandusGuardsAreRare = 5759, - + MapPerandusGuardsAreRare = 5761, + /// /// map_contains_perandus_boss /// - MapContainsPerandusBoss = 5760, - + MapContainsPerandusBoss = 5762, + /// /// drop_perandus_coin_stack_% /// - DropPerandusCoinStackPct = 5761, - + DropPerandusCoinStackPct = 5763, + /// /// kills_count_twice_for_rampage_% /// - KillsCountTwiceForRampagePct = 5762, - + KillsCountTwiceForRampagePct = 5764, + /// /// map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs /// - MapNextAreaContainsXAdditionalVoidspawnOfAbaxothPacks = 5763, - + MapNextAreaContainsXAdditionalVoidspawnOfAbaxothPacks = 5765, + /// /// map_next_area_contains_x_additional_bearers_of_the_guardian_packs /// - MapNextAreaContainsXAdditionalBearersOfTheGuardianPacks = 5764, - + MapNextAreaContainsXAdditionalBearersOfTheGuardianPacks = 5766, + /// /// map_gain_onslaught_for_x_ms_on_killing_rare_monster /// - MapGainOnslaughtForXMsOnKillingRareMonster = 5765, - + MapGainOnslaughtForXMsOnKillingRareMonster = 5767, + /// /// gain_onslaught_for_x_ms_on_killing_rare_monster /// - GainOnslaughtForXMsOnKillingRareMonster = 5766, - + GainOnslaughtForXMsOnKillingRareMonster = 5768, + /// /// monster_held_item_force_no_drop_penalty /// - MonsterHeldItemForceNoDropPenalty = 5767, - + MonsterHeldItemForceNoDropPenalty = 5769, + /// /// leaguestone_prefix_minimum_area_level /// - LeaguestonePrefixMinimumAreaLevel = 5768, - + LeaguestonePrefixMinimumAreaLevel = 5770, + /// /// leaguestone_suffix_minimum_area_level /// - LeaguestoneSuffixMinimumAreaLevel = 5769, - + LeaguestoneSuffixMinimumAreaLevel = 5771, + /// /// map_rare_monsters_drop_rare_prismatic_ring_on_death_% /// - MapRareMonstersDropRarePrismaticRingOnDeathPct = 5770, - + MapRareMonstersDropRarePrismaticRingOnDeathPct = 5772, + /// /// drop_rare_prismatic_ring_on_death_% /// - DropRarePrismaticRingOnDeathPct = 5771, - + DropRarePrismaticRingOnDeathPct = 5773, + /// /// map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_% /// - MapPlayersGain1RareMonsterModsOnKillFor20SecondsPct = 5772, - + MapPlayersGain1RareMonsterModsOnKillFor20SecondsPct = 5774, + /// /// gain_1_rare_monster_mods_on_kill_for_20_seconds_% /// - Gain1RareMonsterModsOnKillFor20SecondsPct = 5773, - + Gain1RareMonsterModsOnKillFor20SecondsPct = 5775, + /// /// monster_is_beyond_monster /// - MonsterIsBeyondMonster = 5774, - + MonsterIsBeyondMonster = 5776, + /// /// map_spawn_beyond_boss_when_beyond_boss_slain_% /// - MapSpawnBeyondBossWhenBeyondBossSlainPct = 5775, - + MapSpawnBeyondBossWhenBeyondBossSlainPct = 5777, + /// /// map_damage_taken_+%_from_beyond_monsters /// - MapDamageTakenPctFromBeyondMonsters = 5776, - + MapDamageTakenPctFromBeyondMonsters = 5778, + /// /// damage_taken_+%_from_beyond_monsters /// - DamageTakenPctFromBeyondMonsters = 5777, - + DamageTakenPctFromBeyondMonsters = 5779, + /// /// map_monster_damage_taken_+%_while_possessed /// - MapMonsterDamageTakenPctWhilePossessed = 5778, - + MapMonsterDamageTakenPctWhilePossessed = 5780, + /// /// monster_damage_taken_+%_while_possessed /// - MonsterDamageTakenPctWhilePossessed = 5779, - + MonsterDamageTakenPctWhilePossessed = 5781, + /// /// map_invasion_bosses_drop_x_additional_vaal_orbs /// - MapInvasionBossesDropXAdditionalVaalOrbs = 5780, - + MapInvasionBossesDropXAdditionalVaalOrbs = 5782, + /// /// map_invasion_bosses_dropped_items_are_fully_linked /// - MapInvasionBossesDroppedItemsAreFullyLinked = 5781, - + MapInvasionBossesDroppedItemsAreFullyLinked = 5783, + /// /// map_invasion_bosses_dropped_items_have_x_additional_sockets /// - MapInvasionBossesDroppedItemsHaveXAdditionalSockets = 5782, - + MapInvasionBossesDroppedItemsHaveXAdditionalSockets = 5784, + /// /// is_holding_silver_coin /// - IsHoldingSilverCoin = 5783, - + IsHoldingSilverCoin = 5785, + /// /// map_monsters_with_silver_coins_drop_x_additional_rare_items /// - MapMonstersWithSilverCoinsDropXAdditionalRareItems = 5784, - + MapMonstersWithSilverCoinsDropXAdditionalRareItems = 5786, + /// /// map_monsters_with_silver_coins_drop_x_additional_currency_items /// - MapMonstersWithSilverCoinsDropXAdditionalCurrencyItems = 5785, - + MapMonstersWithSilverCoinsDropXAdditionalCurrencyItems = 5787, + /// /// map_bloodline_packs_drop_x_additional_rare_items /// - MapBloodlinePacksDropXAdditionalRareItems = 5786, - + MapBloodlinePacksDropXAdditionalRareItems = 5788, + /// /// map_bloodline_packs_drop_x_additional_currency_items /// - MapBloodlinePacksDropXAdditionalCurrencyItems = 5787, - + MapBloodlinePacksDropXAdditionalCurrencyItems = 5789, + /// /// map_player_attack_cast_and_movement_speed_+%_during_onslaught /// - MapPlayerAttackCastAndMovementSpeedPctDuringOnslaught = 5788, - + MapPlayerAttackCastAndMovementSpeedPctDuringOnslaught = 5790, + /// /// attack_cast_and_movement_speed_+%_during_onslaught /// - AttackCastAndMovementSpeedPctDuringOnslaught = 5789, - + AttackCastAndMovementSpeedPctDuringOnslaught = 5791, + /// /// map_leaguestone_additional_shrines /// - MapLeaguestoneAdditionalShrines = 5790, - + MapLeaguestoneAdditionalShrines = 5792, + /// /// active_skill_area_of_effect_radius_+%_final /// - ActiveSkillAreaOfEffectRadiusPctFinal = 5791, - + ActiveSkillAreaOfEffectRadiusPctFinal = 5793, + /// /// map_rare_monsters_are_hindered /// - MapRareMonstersAreHindered = 5792, - + MapRareMonstersAreHindered = 5794, + /// /// map_players_movement_speed_+% /// - MapPlayersMovementSpeedPct = 5793, - + MapPlayersMovementSpeedPct = 5795, + /// /// map_magic_monsters_damage_taken_+% /// - MapMagicMonstersDamageTakenPct = 5794, - + MapMagicMonstersDamageTakenPct = 5796, + /// /// map_magic_monsters_are_maimed /// - MapMagicMonstersAreMaimed = 5795, - + MapMagicMonstersAreMaimed = 5797, + /// /// map_players_gain_onslaught_during_flask_effect /// - MapPlayersGainOnslaughtDuringFlaskEffect = 5796, - + MapPlayersGainOnslaughtDuringFlaskEffect = 5798, + /// /// map_players_gain_rare_monster_mods_on_kill_%_chance /// - MapPlayersGainRareMonsterModsOnKillPctChance = 5797, - + MapPlayersGainRareMonsterModsOnKillPctChance = 5799, + /// /// gain_rare_monster_mods_on_kill_%_chance /// - GainRareMonsterModsOnKillPctChance = 5798, - + GainRareMonsterModsOnKillPctChance = 5800, + /// /// map_invasion_bosses_are_twinned /// - MapInvasionBossesAreTwinned = 5799, - + MapInvasionBossesAreTwinned = 5801, + /// /// map_tormented_spirits_movement_speed_+% /// - MapTormentedSpiritsMovementSpeedPct = 5800, - + MapTormentedSpiritsMovementSpeedPct = 5802, + /// /// map_tormented_spirits_duration_+% /// - MapTormentedSpiritsDurationPct = 5801, - + MapTormentedSpiritsDurationPct = 5803, + /// /// map_players_gain_onslaught_after_opening_a_strongbox_ms /// - MapPlayersGainOnslaughtAfterOpeningAStrongboxMs = 5802, - + MapPlayersGainOnslaughtAfterOpeningAStrongboxMs = 5804, + /// /// gain_onslaught_after_opening_a_strongbox_ms /// - GainOnslaughtAfterOpeningAStrongboxMs = 5803, - + GainOnslaughtAfterOpeningAStrongboxMs = 5805, + /// /// map_players_additional_spell_dodge_% /// - MapPlayersAdditionalSpellDodgePct = 5804, - + MapPlayersAdditionalSpellDodgePct = 5806, + /// /// map_rare_monsters_have_inner_treasure /// - MapRareMonstersHaveInnerTreasure = 5805, - + MapRareMonstersHaveInnerTreasure = 5807, + /// /// map_leaguestone_override_base_num_prophecy_coins /// - MapLeaguestoneOverrideBaseNumProphecyCoins = 5806, - + MapLeaguestoneOverrideBaseNumProphecyCoins = 5808, + /// /// map_leaguestone_additional_prophecy_coins /// - MapLeaguestoneAdditionalProphecyCoins = 5807, - + MapLeaguestoneAdditionalProphecyCoins = 5809, + /// /// map_leaguestone_override_base_num_invasion_bosses /// - MapLeaguestoneOverrideBaseNumInvasionBosses = 5808, - + MapLeaguestoneOverrideBaseNumInvasionBosses = 5810, + /// /// map_leaguestone_additional_invasion_bosses /// - MapLeaguestoneAdditionalInvasionBosses = 5809, - + MapLeaguestoneAdditionalInvasionBosses = 5811, + /// /// map_monster_beyond_portal_chance_+% /// - MapMonsterBeyondPortalChancePct = 5810, - + MapMonsterBeyondPortalChancePct = 5812, + /// /// local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius /// - LocalUniqueJewelFireballBaseRadiusUpToAtLongerRangesWith40IntInRadius = 5811, - + LocalUniqueJewelFireballBaseRadiusUpToAtLongerRangesWith40IntInRadius = 5813, + /// /// fireball_base_radius_up_to_+_at_longer_ranges /// - FireballBaseRadiusUpToAtLongerRanges = 5812, - + FireballBaseRadiusUpToAtLongerRanges = 5814, + /// /// local_display_cast_level_x_shock_ground_when_hit /// - LocalDisplayCastLevelXShockGroundWhenHit = 5813, - + LocalDisplayCastLevelXShockGroundWhenHit = 5815, + /// /// curse_with_enfeeble_on_hit_%_against_uncursed_enemies /// - CurseWithEnfeebleOnHitPctAgainstUncursedEnemies = 5814, - + CurseWithEnfeebleOnHitPctAgainstUncursedEnemies = 5816, + /// /// map_rogue_exiles_drop_additional_currency_items_with_quality /// - MapRogueExilesDropAdditionalCurrencyItemsWithQuality = 5815, - + MapRogueExilesDropAdditionalCurrencyItemsWithQuality = 5817, + /// /// map_rogue_exiles_dropped_items_are_duplicated /// - MapRogueExilesDroppedItemsAreDuplicated = 5816, - + MapRogueExilesDroppedItemsAreDuplicated = 5818, + /// /// map_rogue_exiles_dropped_items_are_corrupted /// - MapRogueExilesDroppedItemsAreCorrupted = 5817, - + MapRogueExilesDroppedItemsAreCorrupted = 5819, + /// /// map_rogue_exiles_dropped_items_are_fully_linked /// - MapRogueExilesDroppedItemsAreFullyLinked = 5818, - + MapRogueExilesDroppedItemsAreFullyLinked = 5820, + /// /// drop_additional_vaal_orbs /// - DropAdditionalVaalOrbs = 5819, - + DropAdditionalVaalOrbs = 5821, + /// /// map_contains_additional_mandible_talisman /// - MapContainsAdditionalMandibleTalisman = 5820, - + MapContainsAdditionalMandibleTalisman = 5822, + /// /// map_contains_additional_chrysalis_talisman /// - MapContainsAdditionalChrysalisTalisman = 5821, - + MapContainsAdditionalChrysalisTalisman = 5823, + /// /// map_contains_additional_writhing_talisman /// - MapContainsAdditionalWrithingTalisman = 5822, - + MapContainsAdditionalWrithingTalisman = 5824, + /// /// map_contains_additional_fangjaw_talisman /// - MapContainsAdditionalFangjawTalisman = 5823, - + MapContainsAdditionalFangjawTalisman = 5825, + /// /// map_contains_additional_clutching_talisman /// - MapContainsAdditionalClutchingTalisman = 5824, - + MapContainsAdditionalClutchingTalisman = 5826, + /// /// map_contains_additional_three_rat_talisman /// - MapContainsAdditionalThreeRatTalisman = 5825, - + MapContainsAdditionalThreeRatTalisman = 5827, + /// /// map_contains_additional_unique_talisman /// - MapContainsAdditionalUniqueTalisman = 5826, - + MapContainsAdditionalUniqueTalisman = 5828, + /// /// map_tempest_frequency_+% /// - MapTempestFrequencyPct = 5827, - + MapTempestFrequencyPct = 5829, + /// /// map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks /// - MapPlayerLifeRegenerationRatePerMinutePctPer25RampageStacks = 5828, - + MapPlayerLifeRegenerationRatePerMinutePctPer25RampageStacks = 5830, + /// /// life_regeneration_rate_per_minute_%_per_25_rampage_stacks /// - LifeRegenerationRatePerMinutePctPer25RampageStacks = 5829, - + LifeRegenerationRatePerMinutePctPer25RampageStacks = 5831, + /// /// map_player_damage_taken_+%_while_rampaging /// - MapPlayerDamageTakenPctWhileRampaging = 5830, - + MapPlayerDamageTakenPctWhileRampaging = 5832, + /// /// damage_taken_+%_while_rampaging /// - DamageTakenPctWhileRampaging = 5831, - + DamageTakenPctWhileRampaging = 5833, + /// /// map_contains_corrupted_strongbox /// - MapContainsCorruptedStrongbox = 5832, - + MapContainsCorruptedStrongbox = 5834, + /// /// number_of_monsters_to_summon_override /// - NumberOfMonstersToSummonOverride = 5833, - + NumberOfMonstersToSummonOverride = 5835, + /// /// monster_beyond_portal_chance_+%_final /// - MonsterBeyondPortalChancePctFinal = 5834, - + MonsterBeyondPortalChancePctFinal = 5836, + /// /// map_num_leaguestones_active /// - MapNumLeaguestonesActive = 5835, - + MapNumLeaguestonesActive = 5837, + /// /// virtual_monster_dropped_item_rarity_+% /// - VirtualMonsterDroppedItemRarityPct = 5836, - + VirtualMonsterDroppedItemRarityPct = 5838, + /// /// virtual_monster_dropped_item_quantity_+% /// - VirtualMonsterDroppedItemQuantityPct = 5837, - + VirtualMonsterDroppedItemQuantityPct = 5839, + /// /// virtual_chest_item_quantity_+% /// - VirtualChestItemQuantityPct = 5838, - + VirtualChestItemQuantityPct = 5840, + /// /// virtual_chest_item_rarity_+% /// - VirtualChestItemRarityPct = 5839, - + VirtualChestItemRarityPct = 5841, + /// /// leaguestone_monster_dropped_item_rarity_+%_final /// - LeaguestoneMonsterDroppedItemRarityPctFinal = 5840, - + LeaguestoneMonsterDroppedItemRarityPctFinal = 5842, + /// /// leaguestone_monster_dropped_item_quantity_+%_final /// - LeaguestoneMonsterDroppedItemQuantityPctFinal = 5841, - + LeaguestoneMonsterDroppedItemQuantityPctFinal = 5843, + /// /// leaguestone_chest_item_quantity_+%_final /// - LeaguestoneChestItemQuantityPctFinal = 5842, - + LeaguestoneChestItemQuantityPctFinal = 5844, + /// /// leaguestone_chest_item_rarity_+%_final /// - LeaguestoneChestItemRarityPctFinal = 5843, - + LeaguestoneChestItemRarityPctFinal = 5845, + /// /// map_leaguestone_stone_circle_%_chance /// - MapLeaguestoneStoneCirclePctChance = 5844, - + MapLeaguestoneStoneCirclePctChance = 5846, + /// /// local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius /// - LocalUniqueJewelFrostBladesProjectileSpeedPctWith40DexInRadius = 5845, - + LocalUniqueJewelFrostBladesProjectileSpeedPctWith40DexInRadius = 5847, + /// /// local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius /// - LocalUniqueJewelDualStrikeMainHandDealsDoubleDamagePctWith40DexInRadius = 5846, - + LocalUniqueJewelDualStrikeMainHandDealsDoubleDamagePctWith40DexInRadius = 5848, + /// /// dual_strike_main_hand_deals_double_damage_% /// - DualStrikeMainHandDealsDoubleDamagePct = 5847, - + DualStrikeMainHandDealsDoubleDamagePct = 5849, + /// /// chance_to_deal_double_damage_% /// - ChanceToDealDoubleDamagePct = 5848, - + ChanceToDealDoubleDamagePct = 5850, + /// /// always_ignite_while_burning /// - AlwaysIgniteWhileBurning = 5849, - + AlwaysIgniteWhileBurning = 5851, + /// /// full_life_threshold /// - FullLifeThreshold = 5850, - + FullLifeThreshold = 5852, + /// /// unique_rat_cage_chance_to_squeak_when_hit_by_fire_damage /// - UniqueRatCageChanceToSqueakWhenHitByFireDamage = 5851, - + UniqueRatCageChanceToSqueakWhenHitByFireDamage = 5853, + /// /// map_monster_slain_experience_+% /// - MapMonsterSlainExperiencePct = 5852, - + MapMonsterSlainExperiencePct = 5854, + /// /// map_imprisoned_monsters_action_speed_+% /// - MapImprisonedMonstersActionSpeedPct = 5853, - + MapImprisonedMonstersActionSpeedPct = 5855, + /// /// is_beyond_monster_daemon /// - IsBeyondMonsterDaemon = 5854, - + IsBeyondMonsterDaemon = 5856, + /// /// map_tempest_area_of_effect_+%_visible /// - MapTempestAreaOfEffectPctVisible = 5855, - + MapTempestAreaOfEffectPctVisible = 5857, + /// /// fortify_applies_to_nearby_allies_for_X_seconds /// - FortifyAppliesToNearbyAlliesForXSeconds = 5856, - + FortifyAppliesToNearbyAlliesForXSeconds = 5858, + /// /// suppress_phasing_visual /// - SuppressPhasingVisual = 5857, - + SuppressPhasingVisual = 5859, + /// /// show_phasing_visual /// - ShowPhasingVisual = 5858, - + ShowPhasingVisual = 5860, + /// /// energy_shield_has_started_recharging_recently /// - EnergyShieldHasStartedRechargingRecently = 5859, - + EnergyShieldHasStartedRechargingRecently = 5861, + /// /// track_energy_shield_has_started_recharging_recently /// - TrackEnergyShieldHasStartedRechargingRecently = 5860, - + TrackEnergyShieldHasStartedRechargingRecently = 5862, + /// /// not_affected_by_action_speed_modifiers /// - NotAffectedByActionSpeedModifiers = 5861, - + NotAffectedByActionSpeedModifiers = 5863, + /// /// map_player_movement_velocity_+% /// - MapPlayerMovementVelocityPct = 5862, - + MapPlayerMovementVelocityPct = 5864, + /// /// lunaris_glaive_angle /// - LunarisGlaiveAngle = 5863, - + LunarisGlaiveAngle = 5865, + /// /// lunaris_glaive_acceleration_x /// - LunarisGlaiveAccelerationX = 5864, - + LunarisGlaiveAccelerationX = 5866, + /// /// lunaris_glaive_acceleration_y /// - LunarisGlaiveAccelerationY = 5865, - + LunarisGlaiveAccelerationY = 5867, + /// /// maintain_projectile_direction_when_using_contact_position /// - MaintainProjectileDirectionWhenUsingContactPosition = 5866, - + MaintainProjectileDirectionWhenUsingContactPosition = 5868, + /// /// map_force_side_area /// - MapForceSideArea = 5867, - + MapForceSideArea = 5869, + /// /// map_num_sextant_mods /// - MapNumSextantMods = 5868, - + MapNumSextantMods = 5870, + /// /// cannot_be_stunned_if_you_have_been_stunned_recently /// - CannotBeStunnedIfYouHaveBeenStunnedRecently = 5869, - + CannotBeStunnedIfYouHaveBeenStunnedRecently = 5871, + /// /// track_have_been_stunned_recently /// - TrackHaveBeenStunnedRecently = 5870, - + TrackHaveBeenStunnedRecently = 5872, + /// /// have_been_stunned_recently /// - HaveBeenStunnedRecently = 5871, - + HaveBeenStunnedRecently = 5873, + /// /// cannot_be_frozen_if_you_have_been_frozen_recently /// - CannotBeFrozenIfYouHaveBeenFrozenRecently = 5872, - + CannotBeFrozenIfYouHaveBeenFrozenRecently = 5874, + /// /// track_have_been_frozen_recently /// - TrackHaveBeenFrozenRecently = 5873, - + TrackHaveBeenFrozenRecently = 5875, + /// /// have_been_frozen_recently /// - HaveBeenFrozenRecently = 5874, - + HaveBeenFrozenRecently = 5876, + /// /// life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently /// - LifeAndEnergyShieldRecoveryRatePctIfStoppedTakingDamageOverTimeRecently = 5875, - + LifeAndEnergyShieldRecoveryRatePctIfStoppedTakingDamageOverTimeRecently = 5877, + /// /// movement_speed_+%_while_on_burning_ground /// - MovementSpeedPctWhileOnBurningGround = 5876, - + MovementSpeedPctWhileOnBurningGround = 5878, + /// /// chaos_damage_over_time_resistance_% /// - ChaosDamageOverTimeResistancePct = 5877, - + ChaosDamageOverTimeResistancePct = 5879, + /// /// while_stationary_gain_additional_physical_damage_reduction_% /// - WhileStationaryGainAdditionalPhysicalDamageReductionPct = 5878, - + WhileStationaryGainAdditionalPhysicalDamageReductionPct = 5880, + /// /// while_stationary_gain_life_regeneration_rate_per_minute_% /// - WhileStationaryGainLifeRegenerationRatePerMinutePct = 5879, - + WhileStationaryGainLifeRegenerationRatePerMinutePct = 5881, + /// /// fire_damage_taken_+%_while_moving /// - FireDamageTakenPctWhileMoving = 5880, - + FireDamageTakenPctWhileMoving = 5882, + /// /// life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently /// - LifeFlasksGainXChargesEvery3SecondsIfYouHaveNotUsedALifeFlaskRecently = 5881, - + LifeFlasksGainXChargesEvery3SecondsIfYouHaveNotUsedALifeFlaskRecently = 5883, + /// /// life_recovery_+%_from_flasks_while_on_low_life /// - LifeRecoveryPctFromFlasksWhileOnLowLife = 5882, - + LifeRecoveryPctFromFlasksWhileOnLowLife = 5884, + /// /// virtual_flask_life_to_recover_+% /// - VirtualFlaskLifeToRecoverPct = 5883, - + VirtualFlaskLifeToRecoverPct = 5885, + /// /// additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently /// - AdditionalPctChanceToEvadeAttacksIfYouHaveTakenASavageHitRecently = 5884, - + AdditionalPctChanceToEvadeAttacksIfYouHaveTakenASavageHitRecently = 5886, + /// /// physical_damage_reduction_%_per_hit_you_have_taken_recently /// - PhysicalDamageReductionPctPerHitYouHaveTakenRecently = 5885, - + PhysicalDamageReductionPctPerHitYouHaveTakenRecently = 5887, + /// /// curses_have_no_effect_on_you_for_4_seconds_every_10_seconds /// - CursesHaveNoEffectOnYouFor4SecondsEvery10Seconds = 5886, - + CursesHaveNoEffectOnYouFor4SecondsEvery10Seconds = 5888, + /// /// hinder_effect_on_self_+% /// - HinderEffectOnSelfPct = 5887, - + HinderEffectOnSelfPct = 5889, + /// /// avoid_corrupted_blood_%_chance /// - AvoidCorruptedBloodPctChance = 5888, - + AvoidCorruptedBloodPctChance = 5890, + /// /// avoid_maim_%_chance /// - AvoidMaimPctChance = 5889, - + AvoidMaimPctChance = 5891, + /// /// monster_ground_fire_on_death_variation /// - MonsterGroundFireOnDeathVariation = 5890, - + MonsterGroundFireOnDeathVariation = 5892, + /// /// traps_explode_on_timeout /// - TrapsExplodeOnTimeout = 5891, - + TrapsExplodeOnTimeout = 5893, + /// /// physical_skill_dot_damage_to_deal_per_minute /// - PhysicalSkillDotDamageToDealPerMinute = 5892, - + PhysicalSkillDotDamageToDealPerMinute = 5894, + /// /// fire_skill_dot_damage_to_deal_per_minute /// - FireSkillDotDamageToDealPerMinute = 5893, - + FireSkillDotDamageToDealPerMinute = 5895, + /// /// cold_skill_dot_damage_to_deal_per_minute /// - ColdSkillDotDamageToDealPerMinute = 5894, - + ColdSkillDotDamageToDealPerMinute = 5896, + /// /// lightning_skill_dot_damage_to_deal_per_minute /// - LightningSkillDotDamageToDealPerMinute = 5895, - + LightningSkillDotDamageToDealPerMinute = 5897, + /// /// chaos_skill_dot_damage_to_deal_per_minute /// - ChaosSkillDotDamageToDealPerMinute = 5896, - + ChaosSkillDotDamageToDealPerMinute = 5898, + /// /// physical_area_damage_to_deal_per_minute /// - PhysicalAreaDamageToDealPerMinute = 5897, - + PhysicalAreaDamageToDealPerMinute = 5899, + /// /// fire_area_damage_to_deal_per_minute /// - FireAreaDamageToDealPerMinute = 5898, - + FireAreaDamageToDealPerMinute = 5900, + /// /// cold_area_damage_to_deal_per_minute /// - ColdAreaDamageToDealPerMinute = 5899, - + ColdAreaDamageToDealPerMinute = 5901, + /// /// lightning_area_damage_to_deal_per_minute /// - LightningAreaDamageToDealPerMinute = 5900, - + LightningAreaDamageToDealPerMinute = 5902, + /// /// chaos_area_damage_to_deal_per_minute /// - ChaosAreaDamageToDealPerMinute = 5901, - + ChaosAreaDamageToDealPerMinute = 5903, + /// /// physical_skill_dot_area_damage_to_deal_per_minute /// - PhysicalSkillDotAreaDamageToDealPerMinute = 5902, - + PhysicalSkillDotAreaDamageToDealPerMinute = 5904, + /// /// fire_skill_dot_area_damage_to_deal_per_minute /// - FireSkillDotAreaDamageToDealPerMinute = 5903, - + FireSkillDotAreaDamageToDealPerMinute = 5905, + /// /// cold_skill_dot_area_damage_to_deal_per_minute /// - ColdSkillDotAreaDamageToDealPerMinute = 5904, - + ColdSkillDotAreaDamageToDealPerMinute = 5906, + /// /// lightning_skill_dot_area_damage_to_deal_per_minute /// - LightningSkillDotAreaDamageToDealPerMinute = 5905, - + LightningSkillDotAreaDamageToDealPerMinute = 5907, + /// /// chaos_skill_dot_area_damage_to_deal_per_minute /// - ChaosSkillDotAreaDamageToDealPerMinute = 5906, - + ChaosSkillDotAreaDamageToDealPerMinute = 5908, + /// /// combined_attack_elemental_damage_pluspercent /// - CombinedAttackElementalDamagePluspercent = 5907, - + CombinedAttackElementalDamagePluspercent = 5909, + /// /// combined_attack_lightning_damage_pluspercent /// - CombinedAttackLightningDamagePluspercent = 5908, - + CombinedAttackLightningDamagePluspercent = 5910, + /// /// combined_attack_lightning_damage_pluspercent_final /// - CombinedAttackLightningDamagePluspercentFinal = 5909, - + CombinedAttackLightningDamagePluspercentFinal = 5911, + /// /// combined_skill_dot_elemental_damage_over_time_+% /// - CombinedSkillDotElementalDamageOverTimePct = 5910, - + CombinedSkillDotElementalDamageOverTimePct = 5912, + /// /// combined_skill_dot_fire_damage_over_time_+% /// - CombinedSkillDotFireDamageOverTimePct = 5911, - + CombinedSkillDotFireDamageOverTimePct = 5913, + /// /// combined_skill_dot_cold_damage_over_time_+% /// - CombinedSkillDotColdDamageOverTimePct = 5912, - + CombinedSkillDotColdDamageOverTimePct = 5914, + /// /// combined_skill_dot_lightning_damage_over_time_+% /// - CombinedSkillDotLightningDamageOverTimePct = 5913, - + CombinedSkillDotLightningDamageOverTimePct = 5915, + /// /// combined_skill_dot_lightning_damage_over_time_+%_final /// - CombinedSkillDotLightningDamageOverTimePctFinal = 5914, - + CombinedSkillDotLightningDamageOverTimePctFinal = 5916, + /// /// ignite_damage_+% /// - IgniteDamagePct = 5915, - + IgniteDamagePct = 5917, + /// /// combined_ignite_damage_over_time_+% /// - CombinedIgniteDamageOverTimePct = 5916, - + CombinedIgniteDamageOverTimePct = 5918, + /// /// bleed_is_skill_dot /// - BleedIsSkillDot = 5917, - + BleedIsSkillDot = 5919, + /// /// ignite_is_skill_dot /// - IgniteIsSkillDot = 5918, - + IgniteIsSkillDot = 5920, + /// /// poison_is_skill_dot /// - PoisonIsSkillDot = 5919, - + PoisonIsSkillDot = 5921, + /// /// deal_no_bleed_damage_over_time /// - DealNoBleedDamageOverTime = 5920, - + DealNoBleedDamageOverTime = 5922, + /// /// deal_no_ignite_damage_over_time /// - DealNoIgniteDamageOverTime = 5921, - + DealNoIgniteDamageOverTime = 5923, + /// /// deal_no_poison_damage_over_time /// - DealNoPoisonDamageOverTime = 5922, - + DealNoPoisonDamageOverTime = 5924, + /// /// minimum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MinimumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5923, - + MinimumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5925, + /// /// maximum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MaximumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5924, - + MaximumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5926, + /// /// keystone_ghost_reaver /// - KeystoneGhostReaver = 5925, - + KeystoneGhostReaver = 5927, + /// /// infest_on_hit_chance_% /// - InfestOnHitChancePct = 5926, - + InfestOnHitChancePct = 5928, + /// /// infest_on_hit_duration_ms /// - InfestOnHitDurationMs = 5927, - + InfestOnHitDurationMs = 5929, + /// /// energy_shield_per_level /// - EnergyShieldPerLevel = 5928, - + EnergyShieldPerLevel = 5930, + /// /// minimum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MinimumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5929, - + MinimumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5931, + /// /// maximum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MaximumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5930, - + MaximumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5932, + /// /// virtual_physical_damage_can_ignite /// - VirtualPhysicalDamageCanIgnite = 5931, - + VirtualPhysicalDamageCanIgnite = 5933, + /// /// virtual_fire_damage_cannot_ignite /// - VirtualFireDamageCannotIgnite = 5932, - + VirtualFireDamageCannotIgnite = 5934, + /// /// virtual_cold_damage_can_ignite /// - VirtualColdDamageCanIgnite = 5933, - + VirtualColdDamageCanIgnite = 5935, + /// /// virtual_lightning_damage_can_ignite /// - VirtualLightningDamageCanIgnite = 5934, - + VirtualLightningDamageCanIgnite = 5936, + /// /// virtual_chaos_damage_can_ignite /// - VirtualChaosDamageCanIgnite = 5935, - + VirtualChaosDamageCanIgnite = 5937, + /// /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MinimumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5936, - + MinimumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5938, + /// /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MaximumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5937, - + MaximumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5939, + /// /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage /// - MinimumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5938, - + MinimumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5940, + /// /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage /// - MaximumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5939, - + MaximumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5941, + /// /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage /// - MinimumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5940, - + MinimumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5942, + /// /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage /// - MaximumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5941, - + MaximumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5943, + /// /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage /// - MinimumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5942, - + MinimumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5944, + /// /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage /// - MaximumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5943, - + MaximumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5945, + /// /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage /// - MinimumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5944, - + MinimumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5946, + /// /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage /// - MaximumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5945, - + MaximumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5947, + /// /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MinimumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5946, - + MinimumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5948, + /// /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MaximumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5947, - + MaximumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5949, + /// /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage /// - MinimumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5948, - + MinimumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5950, + /// /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage /// - MaximumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5949, - + MaximumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5951, + /// /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage /// - MinimumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5950, - + MinimumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5952, + /// /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage /// - MaximumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5951, - + MaximumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5953, + /// /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage /// - MinimumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5952, - + MinimumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5954, + /// /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage /// - MaximumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5953, - + MaximumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5955, + /// /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage /// - MinimumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5954, - + MinimumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5956, + /// /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage /// - MaximumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5955, - + MaximumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5957, + /// /// minimum_ignite_damage_to_deal_per_minute_from_spell_physical_damage /// - MinimumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5956, - + MinimumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5958, + /// /// maximum_ignite_damage_to_deal_per_minute_from_spell_physical_damage /// - MaximumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5957, - + MaximumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5959, + /// /// minimum_ignite_damage_to_deal_per_minute_from_spell_fire_damage /// - MinimumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5958, - + MinimumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5960, + /// /// maximum_ignite_damage_to_deal_per_minute_from_spell_fire_damage /// - MaximumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5959, - + MaximumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5961, + /// /// minimum_ignite_damage_to_deal_per_minute_from_spell_cold_damage /// - MinimumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5960, - + MinimumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5962, + /// /// maximum_ignite_damage_to_deal_per_minute_from_spell_cold_damage /// - MaximumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5961, - + MaximumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5963, + /// /// minimum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage /// - MinimumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5962, - + MinimumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5964, + /// /// maximum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage /// - MaximumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5963, - + MaximumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5965, + /// /// minimum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage /// - MinimumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5964, - + MinimumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5966, + /// /// maximum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage /// - MaximumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5965, - + MaximumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5967, + /// /// minimum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5966, - + MinimumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5968, + /// /// maximum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5967, - + MaximumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5969, + /// /// minimum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5968, - + MinimumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5970, + /// /// maximum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5969, - + MaximumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5971, + /// /// minimum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5970, - + MinimumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5972, + /// /// maximum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5971, - + MaximumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5973, + /// /// minimum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5972, - + MinimumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5974, + /// /// maximum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5973, - + MaximumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5975, + /// /// minimum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5974, - + MinimumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5976, + /// /// maximum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5975, - + MaximumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5977, + /// /// global_total_minimum_added_chaos_damage /// - GlobalTotalMinimumAddedChaosDamage = 5976, - + GlobalTotalMinimumAddedChaosDamage = 5978, + /// /// global_total_maximum_added_chaos_damage /// - GlobalTotalMaximumAddedChaosDamage = 5977, - + GlobalTotalMaximumAddedChaosDamage = 5979, + /// /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5978, - + MinimumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5980, + /// /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5979, - + MaximumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5981, + /// /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5980, - + MinimumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5982, + /// /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5981, - + MaximumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5983, + /// /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5982, - + MinimumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5984, + /// /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5983, - + MaximumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5985, + /// /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5984, - + MinimumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5986, + /// /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5985, - + MaximumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5987, + /// /// virtual_always_ignite /// - VirtualAlwaysIgnite = 5986, - + VirtualAlwaysIgnite = 5988, + /// /// trap_additional_random_duration_ms /// - TrapAdditionalRandomDurationMs = 5987, - + TrapAdditionalRandomDurationMs = 5989, + /// /// minions_hits_can_only_kill_ignited_enemies /// - MinionsHitsCanOnlyKillIgnitedEnemies = 5988, - + MinionsHitsCanOnlyKillIgnitedEnemies = 5990, + /// /// hits_can_only_kill_ignited_enemies /// - HitsCanOnlyKillIgnitedEnemies = 5989, - + HitsCanOnlyKillIgnitedEnemies = 5991, + /// /// additional_spell_block_%_while_cursed /// - AdditionalSpellBlockPctWhileCursed = 5990, - + AdditionalSpellBlockPctWhileCursed = 5992, + /// /// additional_block_%_while_not_cursed /// - AdditionalBlockPctWhileNotCursed = 5991, - + AdditionalBlockPctWhileNotCursed = 5993, + /// /// ignite_damage_from_attack_skills_+% /// - IgniteDamageFromAttackSkillsPct = 5992, - + IgniteDamageFromAttackSkillsPct = 5994, + /// /// minimum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MinimumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5993, - + MinimumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5995, + /// /// maximum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage /// - MaximumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5994, - + MaximumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5996, + /// /// minimum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage /// - MinimumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5995, - + MinimumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5997, + /// /// maximum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage /// - MaximumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5996, - + MaximumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5998, + /// /// minimum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage /// - MinimumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5997, - + MinimumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5999, + /// /// maximum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage /// - MaximumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5998, - + MaximumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 6000, + /// /// minimum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage /// - MinimumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 5999, - + MinimumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 6001, + /// /// maximum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage /// - MaximumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 6000, - + MaximumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 6002, + /// /// minimum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage /// - MinimumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6001, - + MinimumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6003, + /// /// maximum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage /// - MaximumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6002, - + MaximumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6004, + /// /// minimum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MinimumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6003, - + MinimumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6005, + /// /// maximum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage /// - MaximumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6004, - + MaximumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6006, + /// /// minimum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage /// - MinimumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6005, - + MinimumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6007, + /// /// maximum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage /// - MaximumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6006, - + MaximumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6008, + /// /// minimum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage /// - MinimumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6007, - + MinimumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6009, + /// /// maximum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage /// - MaximumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6008, - + MaximumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6010, + /// /// minimum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage /// - MinimumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6009, - + MinimumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6011, + /// /// maximum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage /// - MaximumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6010, - + MaximumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6012, + /// /// minimum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage /// - MinimumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6011, - + MinimumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6013, + /// /// maximum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage /// - MaximumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6012, - + MaximumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6014, + /// /// minimum_poison_damage_to_deal_per_minute_from_spell_physical_damage /// - MinimumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6013, - + MinimumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6015, + /// /// maximum_poison_damage_to_deal_per_minute_from_spell_physical_damage /// - MaximumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6014, - + MaximumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6016, + /// /// minimum_poison_damage_to_deal_per_minute_from_spell_fire_damage /// - MinimumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6015, - + MinimumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6017, + /// /// maximum_poison_damage_to_deal_per_minute_from_spell_fire_damage /// - MaximumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6016, - + MaximumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6018, + /// /// minimum_poison_damage_to_deal_per_minute_from_spell_cold_damage /// - MinimumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6017, - + MinimumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6019, + /// /// maximum_poison_damage_to_deal_per_minute_from_spell_cold_damage /// - MaximumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6018, - + MaximumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6020, + /// /// minimum_poison_damage_to_deal_per_minute_from_spell_lightning_damage /// - MinimumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6019, - + MinimumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6021, + /// /// maximum_poison_damage_to_deal_per_minute_from_spell_lightning_damage /// - MaximumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6020, - + MaximumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6022, + /// /// minimum_poison_damage_to_deal_per_minute_from_spell_chaos_damage /// - MinimumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6021, - + MinimumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6023, + /// /// maximum_poison_damage_to_deal_per_minute_from_spell_chaos_damage /// - MaximumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6022, - + MaximumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6024, + /// /// minimum_poison_damage_to_deal_per_minute_from_secondary_physical_damage /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6023, - + MinimumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6025, + /// /// maximum_poison_damage_to_deal_per_minute_from_secondary_physical_damage /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6024, - + MaximumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6026, + /// /// minimum_poison_damage_to_deal_per_minute_from_secondary_fire_damage /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6025, - + MinimumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6027, + /// /// maximum_poison_damage_to_deal_per_minute_from_secondary_fire_damage /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6026, - + MaximumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6028, + /// /// minimum_poison_damage_to_deal_per_minute_from_secondary_cold_damage /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6027, - + MinimumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6029, + /// /// maximum_poison_damage_to_deal_per_minute_from_secondary_cold_damage /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6028, - + MaximumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6030, + /// /// minimum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6029, - + MinimumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6031, + /// /// maximum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6030, - + MaximumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6032, + /// /// minimum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6031, - + MinimumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6033, + /// /// maximum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6032, - + MaximumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6034, + /// /// combined_poison_damage_over_time_+% /// - CombinedPoisonDamageOverTimePct = 6033, - + CombinedPoisonDamageOverTimePct = 6035, + /// /// poison_damage_from_attack_skills_+% /// - PoisonDamageFromAttackSkillsPct = 6034, - + PoisonDamageFromAttackSkillsPct = 6036, + /// /// virtual_physical_damage_cannot_poison /// - VirtualPhysicalDamageCannotPoison = 6035, - + VirtualPhysicalDamageCannotPoison = 6037, + /// /// virtual_fire_damage_can_poison /// - VirtualFireDamageCanPoison = 6036, - + VirtualFireDamageCanPoison = 6038, + /// /// virtual_cold_damage_can_poison /// - VirtualColdDamageCanPoison = 6037, - + VirtualColdDamageCanPoison = 6039, + /// /// virtual_lightning_damage_can_poison /// - VirtualLightningDamageCanPoison = 6038, - + VirtualLightningDamageCanPoison = 6040, + /// /// virtual_chaos_damage_cannot_poison /// - VirtualChaosDamageCannotPoison = 6039, - + VirtualChaosDamageCannotPoison = 6041, + /// /// non_chaos_damage_cannot_poison /// - NonChaosDamageCannotPoison = 6040, - + NonChaosDamageCannotPoison = 6042, + /// /// all_damage_can_poison /// - AllDamageCanPoison = 6041, - + AllDamageCanPoison = 6043, + /// /// minimum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6042, - + MinimumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6044, + /// /// maximum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6043, - + MaximumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6045, + /// /// minimum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6044, - + MinimumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6046, + /// /// maximum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6045, - + MaximumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6047, + /// /// minimum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6046, - + MinimumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6048, + /// /// maximum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6047, - + MaximumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6049, + /// /// minimum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6048, - + MinimumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6050, + /// /// maximum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6049, - + MaximumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6051, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6050, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6052, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6051, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6053, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6052, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6054, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6053, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6055, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6054, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6056, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6055, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6057, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6056, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6058, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6057, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6059, + /// /// ice_spear_second_form_damage_+% /// - IceSpearSecondFormDamagePct = 6058, - + IceSpearSecondFormDamagePct = 6060, + /// /// extra_damage_taken_from_crit_while_no_power_charges_+% /// - ExtraDamageTakenFromCritWhileNoPowerChargesPct = 6059, - + ExtraDamageTakenFromCritWhileNoPowerChargesPct = 6061, + /// /// chest_display_weylams_war /// - ChestDisplayWeylamsWar = 6060, - + ChestDisplayWeylamsWar = 6062, + /// /// minion_movement_speed_+%_per_50_dex /// - MinionMovementSpeedPctPer50Dex = 6061, - + MinionMovementSpeedPctPer50Dex = 6063, + /// /// minion_attack_speed_+%_per_50_dex /// - MinionAttackSpeedPctPer50Dex = 6062, - + MinionAttackSpeedPctPer50Dex = 6064, + /// /// main_hand_attack_minimum_added_lightning_damage_per_10_int /// - MainHandAttackMinimumAddedLightningDamagePer10Int = 6063, - + MainHandAttackMinimumAddedLightningDamagePer10Int = 6065, + /// /// main_hand_attack_maximum_added_lightning_damage_per_10_int /// - MainHandAttackMaximumAddedLightningDamagePer10Int = 6064, - + MainHandAttackMaximumAddedLightningDamagePer10Int = 6066, + /// /// off_hand_attack_minimum_added_lightning_damage_per_10_int /// - OffHandAttackMinimumAddedLightningDamagePer10Int = 6065, - + OffHandAttackMinimumAddedLightningDamagePer10Int = 6067, + /// /// off_hand_attack_maximum_added_lightning_damage_per_10_int /// - OffHandAttackMaximumAddedLightningDamagePer10Int = 6066, - + OffHandAttackMaximumAddedLightningDamagePer10Int = 6068, + /// /// main_hand_attack_minimum_added_fire_damage_per_10_strength /// - MainHandAttackMinimumAddedFireDamagePer10Strength = 6067, - + MainHandAttackMinimumAddedFireDamagePer10Strength = 6069, + /// /// main_hand_attack_maximum_added_fire_damage_per_10_strength /// - MainHandAttackMaximumAddedFireDamagePer10Strength = 6068, - + MainHandAttackMaximumAddedFireDamagePer10Strength = 6070, + /// /// off_hand_attack_minimum_added_fire_damage_per_10_strength /// - OffHandAttackMinimumAddedFireDamagePer10Strength = 6069, - + OffHandAttackMinimumAddedFireDamagePer10Strength = 6071, + /// /// off_hand_attack_maximum_added_fire_damage_per_10_strength /// - OffHandAttackMaximumAddedFireDamagePer10Strength = 6070, - + OffHandAttackMaximumAddedFireDamagePer10Strength = 6072, + /// /// fire_beam_start_angle_offset_variance /// - FireBeamStartAngleOffsetVariance = 6071, - + FireBeamStartAngleOffsetVariance = 6073, + /// /// display_monster_may_inflict_bleeding /// - DisplayMonsterMayInflictBleeding = 6072, - + DisplayMonsterMayInflictBleeding = 6074, + /// /// combined_bleeding_damage_over_time_+% /// - CombinedBleedingDamageOverTimePct = 6073, - + CombinedBleedingDamageOverTimePct = 6075, + /// /// combined_bleeding_damage_over_time_+%_final /// - CombinedBleedingDamageOverTimePctFinal = 6074, - + CombinedBleedingDamageOverTimePctFinal = 6076, + /// /// bleeding_damage_+% /// - BleedingDamagePct = 6075, - + BleedingDamagePct = 6077, + /// /// active_skill_bleeding_damage_+%_final /// - ActiveSkillBleedingDamagePctFinal = 6076, - + ActiveSkillBleedingDamagePctFinal = 6078, + /// /// frog_god_number_of_orbs_to_summon /// - FrogGodNumberOfOrbsToSummon = 6077, - + FrogGodNumberOfOrbsToSummon = 6079, + /// /// combined_ignite_damage_over_time_+%_final /// - CombinedIgniteDamageOverTimePctFinal = 6078, - + CombinedIgniteDamageOverTimePctFinal = 6080, + /// /// physical_damage_with_attack_skills_+% /// - PhysicalDamageWithAttackSkillsPct = 6079, - + PhysicalDamageWithAttackSkillsPct = 6081, + /// /// Elemental Damage With Attack Skills +% /// - ElementalDamageWithAttackSkillsPct = 6080, - + ElementalDamageWithAttackSkillsPct = 6082, + /// /// fire_damage_with_attack_skills_+% /// - FireDamageWithAttackSkillsPct = 6081, - + FireDamageWithAttackSkillsPct = 6083, + /// /// cold_damage_with_attack_skills_+% /// - ColdDamageWithAttackSkillsPct = 6082, - + ColdDamageWithAttackSkillsPct = 6084, + /// /// lightning_damage_with_attack_skills_+% /// - LightningDamageWithAttackSkillsPct = 6083, - + LightningDamageWithAttackSkillsPct = 6085, + /// /// chaos_damage_with_attack_skills_+% /// - ChaosDamageWithAttackSkillsPct = 6084, - + ChaosDamageWithAttackSkillsPct = 6086, + /// /// doedre_aura_damage_+%_final /// - DoedreAuraDamagePctFinal = 6085, - + DoedreAuraDamagePctFinal = 6087, + /// /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_to_deal_per_minute /// - BaseFireDamagePctOfMaximumLifePlusMaximumESToDealPerMinute = 6086, - + BaseFireDamagePctOfMaximumLifePlusMaximumESToDealPerMinute = 6088, + /// /// cast_at_teleport_start_% /// - CastAtTeleportStartPct = 6087, - + CastAtTeleportStartPct = 6089, + /// /// cast_at_teleport_end_% /// - CastAtTeleportEndPct = 6088, - + CastAtTeleportEndPct = 6090, + /// /// summoned_monsters_are_parented_to_my_target /// - SummonedMonstersAreParentedToMyTarget = 6089, - + SummonedMonstersAreParentedToMyTarget = 6091, + /// /// cast_at_mortar_impact_% /// - CastAtMortarImpactPct = 6090, - + CastAtMortarImpactPct = 6092, + /// /// mortar_has_triggered_skills /// - MortarHasTriggeredSkills = 6091, - + MortarHasTriggeredSkills = 6093, + /// - /// active_skill_base_attack_damage_final_permyriad + /// active_skill_base_attack_damage_final_+permyriad /// - ActiveSkillBaseAttackDamageFinalPermyriad = 6092, - + ActiveSkillBaseAttackDamageFinalPermyriad = 6094, + /// /// map_bosses_have_summon_zombie_giant /// - MapBossesHaveSummonZombieGiant = 6093, - + MapBossesHaveSummonZombieGiant = 6095, + /// /// monster_spawn_bloodlines_zombie_giant /// - MonsterSpawnBloodlinesZombieGiant = 6094, - + MonsterSpawnBloodlinesZombieGiant = 6096, + /// /// critical_ailment_dot_multiplier_+ /// - CriticalAilmentDotMultiplier = 6095, - + CriticalAilmentDotMultiplier = 6097, + /// /// monster_ignite_damage_+%_final /// - MonsterIgniteDamagePctFinal = 6096, - + MonsterIgniteDamagePctFinal = 6098, + /// /// monster_bleeding_damage_+%_final /// - MonsterBleedingDamagePctFinal = 6097, - + MonsterBleedingDamagePctFinal = 6099, + /// /// monster_poison_damage_+%_final /// - MonsterPoisonDamagePctFinal = 6098, - + MonsterPoisonDamagePctFinal = 6100, + /// /// combined_poison_damage_over_time_+%_final /// - CombinedPoisonDamageOverTimePctFinal = 6099, - + CombinedPoisonDamageOverTimePctFinal = 6101, + /// /// bleeding_moving_damage_%_of_base_override /// - BleedingMovingDamagePctOfBaseOverride = 6100, - + BleedingMovingDamagePctOfBaseOverride = 6102, + /// /// active_skill_if_used_through_frostbolt_damage_+%_final /// - ActiveSkillIfUsedThroughFrostboltDamagePctFinal = 6101, - + ActiveSkillIfUsedThroughFrostboltDamagePctFinal = 6103, + /// /// used_through_frostbolt /// - UsedThroughFrostbolt = 6102, - + UsedThroughFrostbolt = 6104, + /// /// display_monster_may_inflict_maim /// - DisplayMonsterMayInflictMaim = 6103, - + DisplayMonsterMayInflictMaim = 6105, + /// /// support_attack_skills_elemental_damage_+%_final /// - SupportAttackSkillsElementalDamagePctFinal = 6104, - + SupportAttackSkillsElementalDamagePctFinal = 6106, + /// /// elemental_damage_with_attack_skills_+%_while_using_flask /// - ElementalDamageWithAttackSkillsPctWhileUsingFlask = 6105, - + ElementalDamageWithAttackSkillsPctWhileUsingFlask = 6107, + /// /// support_burning_damage_+%_final /// - SupportBurningDamagePctFinal = 6106, - + SupportBurningDamagePctFinal = 6108, + /// /// bleeding_skill_effect_duration /// - BleedingSkillEffectDuration = 6107, - + BleedingSkillEffectDuration = 6109, + /// /// bleed_duration_is_skill_duration /// - BleedDurationIsSkillDuration = 6108, - + BleedDurationIsSkillDuration = 6110, + /// /// base_all_ailment_duration_+% /// - BaseAllAilmentDurationPct = 6109, - + BaseAllAilmentDurationPct = 6111, + /// /// shocked_enemies_explode_for_%_life_as_lightning_damage /// - ShockedEnemiesExplodeForPctLifeAsLightningDamage = 6110, - + ShockedEnemiesExplodeForPctLifeAsLightningDamage = 6112, + /// /// track_number_of_enemies_shocked_recently /// - TrackNumberOfEnemiesShockedRecently = 6111, - + TrackNumberOfEnemiesShockedRecently = 6113, + /// /// number_of_enemies_shocked_recently /// - NumberOfEnemiesShockedRecently = 6112, - + NumberOfEnemiesShockedRecently = 6114, + /// /// damage_+%_if_you_have_shocked_recently /// - DamagePctIfYouHaveShockedRecently = 6113, - + DamagePctIfYouHaveShockedRecently = 6115, + /// /// herald_mana_reservation_override_45% /// - HeraldManaReservationOverride45Pct = 6114, - + HeraldManaReservationOverride45Pct = 6116, + /// /// avoid_stun_35%_per_active_herald /// - AvoidStun35PctPerActiveHerald = 6115, - + AvoidStun35PctPerActiveHerald = 6117, + /// /// number_of_active_heralds /// - NumberOfActiveHeralds = 6116, - + NumberOfActiveHeralds = 6118, + /// /// base_avoid_stun_% /// - BaseAvoidStunPct = 6117, - + BaseAvoidStunPct = 6119, + /// /// herald_of_ash_burning_damage_+%_final /// - HeraldOfAshBurningDamagePctFinal = 6118, - + HeraldOfAshBurningDamagePctFinal = 6120, + /// /// depair_bear_upheaval_movement_speed_+% /// - DepairBearUpheavalMovementSpeedPct = 6119, - + DepairBearUpheavalMovementSpeedPct = 6121, + /// /// virtual_ignite_faster_burn_% /// - VirtualIgniteFasterBurnPct = 6120, - + VirtualIgniteFasterBurnPct = 6122, + /// /// kill_traps_mines_and_totems_on_death /// - KillTrapsMinesAndTotemsOnDeath = 6121, - + KillTrapsMinesAndTotemsOnDeath = 6123, + /// /// chest_drop_X_divination_cards /// - ChestDropXDivinationCards = 6122, - + ChestDropXDivinationCards = 6124, + /// /// chest_drop_divination_cards_with_full_stack_number_X /// - ChestDropDivinationCardsWithFullStackNumberX = 6123, - + ChestDropDivinationCardsWithFullStackNumberX = 6125, + /// /// keystone_ailment_crit /// - KeystoneAilmentCrit = 6124, - + KeystoneAilmentCrit = 6126, + /// /// fire_beam_prioritise_players_for_targeting /// - FireBeamPrioritisePlayersForTargeting = 6125, - + FireBeamPrioritisePlayersForTargeting = 6127, + /// /// support_ignite_proliferation_radius /// - SupportIgniteProliferationRadius = 6126, - + SupportIgniteProliferationRadius = 6128, + /// /// support_maimed_enemies_physical_damage_taken_+% /// - SupportMaimedEnemiesPhysicalDamageTakenPct = 6127, - + SupportMaimedEnemiesPhysicalDamageTakenPct = 6129, + /// /// support_chance_to_ignite_fire_damage_+%_final /// - SupportChanceToIgniteFireDamagePctFinal = 6128, - + SupportChanceToIgniteFireDamagePctFinal = 6130, + /// /// support_better_ailments_ailment_damage_+%_final /// - SupportBetterAilmentsAilmentDamagePctFinal = 6129, - + SupportBetterAilmentsAilmentDamagePctFinal = 6131, + /// /// support_better_ailments_hit_damage_+%_final /// - SupportBetterAilmentsHitDamagePctFinal = 6130, - + SupportBetterAilmentsHitDamagePctFinal = 6132, + /// /// additional_chaos_resistance_against_damage_over_time_% /// - AdditionalChaosResistanceAgainstDamageOverTimePct = 6131, - + AdditionalChaosResistanceAgainstDamageOverTimePct = 6133, + /// /// from_code_active_skill_hit_damage_+%_final /// - FromCodeActiveSkillHitDamagePctFinal = 6132, - + FromCodeActiveSkillHitDamagePctFinal = 6134, + /// /// hit_damage_+% /// - HitDamagePct = 6133, - + HitDamagePct = 6135, + /// /// uncapped_chaos_damage_over_time_resistance_% /// - UncappedChaosDamageOverTimeResistancePct = 6134, - + UncappedChaosDamageOverTimeResistancePct = 6136, + /// /// attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently /// - AttackCastMovementSpeedPctIfTakenASavageHitRecently = 6135, - + AttackCastMovementSpeedPctIfTakenASavageHitRecently = 6137, + /// /// chaos_resistance_%_for_you_and_allies_affected_by_your_auras /// - ChaosResistancePctForYouAndAlliesAffectedByYourAuras = 6136, - + ChaosResistancePctForYouAndAlliesAffectedByYourAuras = 6138, + /// /// additional_block_chance_%_for_you_and_allies_affected_by_your_auras /// - AdditionalBlockChancePctForYouAndAlliesAffectedByYourAuras = 6137, - + AdditionalBlockChancePctForYouAndAlliesAffectedByYourAuras = 6139, + /// /// attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras /// - AttackCastMovementSpeedPctForYouAndAlliesAffectedByYourAuras = 6138, - + AttackCastMovementSpeedPctForYouAndAlliesAffectedByYourAuras = 6140, + /// /// mana_regeneration_rate_per_minute_if_used_movement_skill_recently /// - ManaRegenerationRatePerMinuteIfUsedMovementSkillRecently = 6139, - + ManaRegenerationRatePerMinuteIfUsedMovementSkillRecently = 6141, + /// /// movement_speed_+%_if_placed_trap_or_mine_recently /// - MovementSpeedPctIfPlacedTrapOrMineRecently = 6140, - + MovementSpeedPctIfPlacedTrapOrMineRecently = 6142, + /// /// trap_and_mine_damage_+%_if_armed_for_4_seconds /// - TrapAndMineDamagePctIfArmedFor4Seconds = 6141, - + TrapAndMineDamagePctIfArmedFor4Seconds = 6143, + /// /// skill_effect_and_damaging_ailment_duration_+% /// - SkillEffectAndDamagingAilmentDurationPct = 6142, - + SkillEffectAndDamagingAilmentDurationPct = 6144, + /// /// active_skill_damage_over_time_from_projectile_hits_+%_final /// - ActiveSkillDamageOverTimeFromProjectileHitsPctFinal = 6143, - + ActiveSkillDamageOverTimeFromProjectileHitsPctFinal = 6145, + /// /// trigger_spawners_time_between_min_ms /// - TriggerSpawnersTimeBetweenMinMs = 6144, - + TriggerSpawnersTimeBetweenMinMs = 6146, + /// /// trigger_spawners_time_between_max_ms /// - TriggerSpawnersTimeBetweenMaxMs = 6145, - + TriggerSpawnersTimeBetweenMaxMs = 6147, + /// /// cast_on_delayed_skill_trigger_% /// - CastOnDelayedSkillTriggerPct = 6146, - + CastOnDelayedSkillTriggerPct = 6148, + /// /// track_have_used_movement_skill_recently /// - TrackHaveUsedMovementSkillRecently = 6147, - + TrackHaveUsedMovementSkillRecently = 6149, + /// /// have_used_movement_skill_recently /// - HaveUsedMovementSkillRecently = 6148, - + HaveUsedMovementSkillRecently = 6150, + /// /// track_have_placed_trap_or_mine_recently /// - TrackHavePlacedTrapOrMineRecently = 6149, - + TrackHavePlacedTrapOrMineRecently = 6151, + /// /// have_placed_trap_or_mine_recently /// - HavePlacedTrapOrMineRecently = 6150, - + HavePlacedTrapOrMineRecently = 6152, + /// /// blast_rain_no_los_required /// - BlastRainNoLosRequired = 6151, - + BlastRainNoLosRequired = 6153, + /// /// despair_bear_upheaval_physical_damage_to_deal_per_minute /// - DespairBearUpheavalPhysicalDamageToDealPerMinute = 6152, - + DespairBearUpheavalPhysicalDamageToDealPerMinute = 6154, + /// /// number_of_additional_ignites_allowed /// - NumberOfAdditionalIgnitesAllowed = 6153, - + NumberOfAdditionalIgnitesAllowed = 6155, + /// /// cast_on_trigger_charge_event_% /// - CastOnTriggerChargeEventPct = 6154, - + CastOnTriggerChargeEventPct = 6156, + /// /// support_efficacy_spell_damage_+%_final /// - SupportEfficacySpellDamagePctFinal = 6155, - + SupportEfficacySpellDamagePctFinal = 6157, + /// /// support_efficacy_damage_over_time_+%_final /// - SupportEfficacyDamageOverTimePctFinal = 6156, - + SupportEfficacyDamageOverTimePctFinal = 6158, + /// /// support_debilitate_poison_damage_+%_final /// - SupportDebilitatePoisonDamagePctFinal = 6157, - + SupportDebilitatePoisonDamagePctFinal = 6159, + /// /// support_debilitate_hit_damage_+%_final /// - SupportDebilitateHitDamagePctFinal = 6158, - + SupportDebilitateHitDamagePctFinal = 6160, + /// /// support_debilitate_hit_damage_+%_final_per_poison_stack /// - SupportDebilitateHitDamagePctFinalPerPoisonStack = 6159, - + SupportDebilitateHitDamagePctFinalPerPoisonStack = 6161, + /// /// support_debilitate_hit_damage_max_poison_stacks /// - SupportDebilitateHitDamageMaxPoisonStacks = 6160, - + SupportDebilitateHitDamageMaxPoisonStacks = 6162, + /// /// global_minimum_added_fire_damage_vs_burning_enemies /// - GlobalMinimumAddedFireDamageVsBurningEnemies = 6161, - + GlobalMinimumAddedFireDamageVsBurningEnemies = 6163, + /// /// global_maximum_added_fire_damage_vs_burning_enemies /// - GlobalMaximumAddedFireDamageVsBurningEnemies = 6162, - + GlobalMaximumAddedFireDamageVsBurningEnemies = 6164, + /// /// support_unbound_ailments_ailment_damage_+%_final /// - SupportUnboundAilmentsAilmentDamagePctFinal = 6163, - + SupportUnboundAilmentsAilmentDamagePctFinal = 6165, + /// /// trigger_charge_additional_block_chance_against_projectiles_% /// - TriggerChargeAdditionalBlockChanceAgainstProjectilesPct = 6164, - + TriggerChargeAdditionalBlockChanceAgainstProjectilesPct = 6166, + /// /// chaos_damage_resistance_is_doubled /// - ChaosDamageResistanceIsDoubled = 6165, - + ChaosDamageResistanceIsDoubled = 6167, + /// /// skill_area_of_effect_+%_while_no_frenzy_charges /// - SkillAreaOfEffectPctWhileNoFrenzyCharges = 6166, - + SkillAreaOfEffectPctWhileNoFrenzyCharges = 6168, + /// /// global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges /// - GlobalCriticalStrikeMultiplierWhileYouHaveNoFrenzyCharges = 6167, - + GlobalCriticalStrikeMultiplierWhileYouHaveNoFrenzyCharges = 6169, + /// /// gain_maximum_power_charges_on_power_charge_gained_%_chance /// - GainMaximumPowerChargesOnPowerChargeGainedPctChance = 6168, - + GainMaximumPowerChargesOnPowerChargeGainedPctChance = 6170, + /// /// damage_+%_per_power_charge /// - DamagePctPerPowerCharge = 6169, - + DamagePctPerPowerCharge = 6171, + /// /// base_fire_damage_can_poison /// - BaseFireDamageCanPoison = 6170, - + BaseFireDamageCanPoison = 6172, + /// /// base_cold_damage_can_poison /// - BaseColdDamageCanPoison = 6171, - + BaseColdDamageCanPoison = 6173, + /// /// base_lightning_damage_can_poison /// - BaseLightningDamageCanPoison = 6172, - + BaseLightningDamageCanPoison = 6174, + /// /// fire_skills_chance_to_poison_on_hit_% /// - FireSkillsChanceToPoisonOnHitPct = 6173, - + FireSkillsChanceToPoisonOnHitPct = 6175, + /// /// cold_skills_chance_to_poison_on_hit_% /// - ColdSkillsChanceToPoisonOnHitPct = 6174, - + ColdSkillsChanceToPoisonOnHitPct = 6176, + /// /// lightning_skills_chance_to_poison_on_hit_% /// - LightningSkillsChanceToPoisonOnHitPct = 6175, - + LightningSkillsChanceToPoisonOnHitPct = 6177, + /// /// movement_attack_skills_attack_speed_+% /// - MovementAttackSkillsAttackSpeedPct = 6176, - + MovementAttackSkillsAttackSpeedPct = 6178, + /// /// local_socketed_herald_gem_level_+ /// - LocalSocketedHeraldGemLevel = 6177, - + LocalSocketedHeraldGemLevel = 6179, + /// /// cold_damage_+%_if_you_have_used_a_fire_skill_recently /// - ColdDamagePctIfYouHaveUsedAFireSkillRecently = 6178, - + ColdDamagePctIfYouHaveUsedAFireSkillRecently = 6180, + /// /// fire_damage_+%_if_you_have_used_a_cold_skill_recently /// - FireDamagePctIfYouHaveUsedAColdSkillRecently = 6179, - + FireDamagePctIfYouHaveUsedAColdSkillRecently = 6181, + /// /// track_have_used_a_cold_skill_recently /// - TrackHaveUsedAColdSkillRecently = 6180, - + TrackHaveUsedAColdSkillRecently = 6182, + /// /// have_used_a_cold_skill_recently /// - HaveUsedAColdSkillRecently = 6181, - + HaveUsedAColdSkillRecently = 6183, + /// /// support_maim_chance_physical_damage_+%_final /// - SupportMaimChancePhysicalDamagePctFinal = 6182, - + SupportMaimChancePhysicalDamagePctFinal = 6184, + /// /// support_brutality_physical_damage_+%_final /// - SupportBrutalityPhysicalDamagePctFinal = 6183, - + SupportBrutalityPhysicalDamagePctFinal = 6185, + /// /// summon_specific_monsters_in_front_offset /// - SummonSpecificMonstersInFrontOffset = 6184, - + SummonSpecificMonstersInFrontOffset = 6186, + /// /// trap_and_mine_damage_penetrates_%_elemental_resistance /// - TrapAndMineDamagePenetratesPctElementalResistance = 6185, - + TrapAndMineDamagePenetratesPctElementalResistance = 6187, + /// /// cooldown_speed_+%_per_additional_player /// - CooldownSpeedPctPerAdditionalPlayer = 6186, - + CooldownSpeedPctPerAdditionalPlayer = 6188, + /// /// total_damage_taken_per_minute_to_mana /// - TotalDamageTakenPerMinuteToMana = 6187, - + TotalDamageTakenPerMinuteToMana = 6189, + /// /// enemies_that_hit_you_with_attack_recently_attack_speed_+% /// - EnemiesThatHitYouWithAttackRecentlyAttackSpeedPct = 6188, - + EnemiesThatHitYouWithAttackRecentlyAttackSpeedPct = 6190, + /// /// vaal_skill_soul_cost_+% /// - VaalSkillSoulCostPct = 6189, - + VaalSkillSoulCostPct = 6191, + /// /// has_attacker_projectile_attack_conditional_damage_stats /// - HasAttackerProjectileAttackConditionalDamageStats = 6190, - + HasAttackerProjectileAttackConditionalDamageStats = 6192, + /// /// has_attacker_conditional_damage_stats /// - HasAttackerConditionalDamageStats = 6191, - + HasAttackerConditionalDamageStats = 6193, + /// /// has_attacker_projectile_spell_conditional_damage_stats /// - HasAttackerProjectileSpellConditionalDamageStats = 6192, - + HasAttackerProjectileSpellConditionalDamageStats = 6194, + /// /// number_of_projectiles_override /// - NumberOfProjectilesOverride = 6193, - + NumberOfProjectilesOverride = 6195, + /// /// map_pantheon_flask_capture_boss_soul /// - MapPantheonFlaskCaptureBossSoul = 6194, - + MapPantheonFlaskCaptureBossSoul = 6196, + /// /// physical_damage_over_time_taken_+%_while_moving /// - PhysicalDamageOverTimeTakenPctWhileMoving = 6195, - + PhysicalDamageOverTimeTakenPctWhileMoving = 6197, + /// /// physical_damage_reduction_%_if_only_one_enemy_nearby /// - PhysicalDamageReductionPctIfOnlyOneEnemyNearby = 6196, - + PhysicalDamageReductionPctIfOnlyOneEnemyNearby = 6198, + /// /// take_half_area_damage_from_hit_%_chance /// - TakeHalfAreaDamageFromHitPctChance = 6197, - + TakeHalfAreaDamageFromHitPctChance = 6199, + /// /// elemental_damage_taken_+%_if_not_hit_recently /// - ElementalDamageTakenPctIfNotHitRecently = 6198, - + ElementalDamageTakenPctIfNotHitRecently = 6200, + /// /// self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently /// - SelfTakeNoExtraDamageFromCriticalStrikesIfHaveBeenCritRecently = 6199, - + SelfTakeNoExtraDamageFromCriticalStrikesIfHaveBeenCritRecently = 6201, + /// /// have_been_crit_recently /// - HaveBeenCritRecently = 6200, - + HaveBeenCritRecently = 6202, + /// /// track_have_been_crit_recently /// - TrackHaveBeenCritRecently = 6201, - + TrackHaveBeenCritRecently = 6203, + /// /// avoid_ailments_%_from_crit /// - AvoidAilmentsPctFromCrit = 6202, - + AvoidAilmentsPctFromCrit = 6204, + /// /// physical_damage_reduction_%_per_nearby_enemy /// - PhysicalDamageReductionPctPerNearbyEnemy = 6203, - + PhysicalDamageReductionPctPerNearbyEnemy = 6205, + /// /// movement_speed_+%_per_nearby_enemy /// - MovementSpeedPctPerNearbyEnemy = 6204, - + MovementSpeedPctPerNearbyEnemy = 6206, + /// /// base_avoid_projectiles_%_chance /// - BaseAvoidProjectilesPctChance = 6205, - + BaseAvoidProjectilesPctChance = 6207, + /// /// dodge_attacks_and_spells_%_chance_if_have_been_hit_recently /// - DodgeAttacksAndSpellsPctChanceIfHaveBeenHitRecently = 6206, - + DodgeAttacksAndSpellsPctChanceIfHaveBeenHitRecently = 6208, + /// /// prevent_projectile_chaining_%_chance /// - PreventProjectileChainingPctChance = 6207, - + PreventProjectileChainingPctChance = 6209, + /// /// avoid_chained_projectile_%_chance /// - AvoidChainedProjectilePctChance = 6208, - + AvoidChainedProjectilePctChance = 6210, + /// /// cold_damage_taken_+%_if_have_been_hit_recently /// - ColdDamageTakenPctIfHaveBeenHitRecently = 6209, - + ColdDamageTakenPctIfHaveBeenHitRecently = 6211, + /// /// reflect_chill_and_freeze_%_chance /// - ReflectChillAndFreezePctChance = 6210, - + ReflectChillAndFreezePctChance = 6212, + /// /// virtual_self_take_no_extra_damage_from_critical_strikes /// - VirtualSelfTakeNoExtraDamageFromCriticalStrikes = 6211, - + VirtualSelfTakeNoExtraDamageFromCriticalStrikes = 6213, + /// /// projectile_spread_radius_per_additional_projectile /// - ProjectileSpreadRadiusPerAdditionalProjectile = 6212, - + ProjectileSpreadRadiusPerAdditionalProjectile = 6214, + /// /// trigger_cascade_number_of_spikes /// - TriggerCascadeNumberOfSpikes = 6213, - + TriggerCascadeNumberOfSpikes = 6215, + /// /// trigger_cascade_ms_between_spikes /// - TriggerCascadeMsBetweenSpikes = 6214, - + TriggerCascadeMsBetweenSpikes = 6216, + /// /// cast_on_trigger_cascade_event_% /// - CastOnTriggerCascadeEventPct = 6215, - + CastOnTriggerCascadeEventPct = 6217, + /// /// trigger_cascade_behaviour_variation /// - TriggerCascadeBehaviourVariation = 6216, - + TriggerCascadeBehaviourVariation = 6218, + /// /// garukhan_number_of_tornadoes /// - GarukhanNumberOfTornadoes = 6217, - + GarukhanNumberOfTornadoes = 6219, + /// /// map_pack_subindex_override /// - MapPackSubindexOverride = 6218, - + MapPackSubindexOverride = 6220, + /// /// map_boss_override /// - MapBossOverride = 6219, - + MapBossOverride = 6221, + /// /// map_daily_mission_master_level /// - MapDailyMissionMasterLevel = 6220, - + MapDailyMissionMasterLevel = 6222, + /// /// number_of_nearby_enemies /// - NumberOfNearbyEnemies = 6221, - + NumberOfNearbyEnemies = 6223, + /// /// track_number_of_nearby_enemies /// - TrackNumberOfNearbyEnemies = 6222, - + TrackNumberOfNearbyEnemies = 6224, + /// /// volatile_flameblood_spawn_monster_on_death_variation /// - VolatileFlamebloodSpawnMonsterOnDeathVariation = 6223, - + VolatileFlamebloodSpawnMonsterOnDeathVariation = 6225, + /// /// hit_and_poison_damage_+% /// - HitAndPoisonDamagePct = 6224, - + HitAndPoisonDamagePct = 6226, + /// /// hit_and_poison_damage_+%_per_poison_on_enemy /// - HitAndPoisonDamagePctPerPoisonOnEnemy = 6225, - + HitAndPoisonDamagePctPerPoisonOnEnemy = 6227, + /// /// attack_minimum_added_physical_damage_with_weapons /// - AttackMinimumAddedPhysicalDamageWithWeapons = 6226, - + AttackMinimumAddedPhysicalDamageWithWeapons = 6228, + /// /// attack_maximum_added_physical_damage_with_weapons /// - AttackMaximumAddedPhysicalDamageWithWeapons = 6227, - + AttackMaximumAddedPhysicalDamageWithWeapons = 6229, + /// /// trigger_on_projectile_loop_count /// - TriggerOnProjectileLoopCount = 6228, - + TriggerOnProjectileLoopCount = 6230, + /// /// trigger_on_projectile_death /// - TriggerOnProjectileDeath = 6229, - + TriggerOnProjectileDeath = 6231, + /// /// base_number_of_beast_minions_allowed /// - BaseNumberOfBeastMinionsAllowed = 6230, - + BaseNumberOfBeastMinionsAllowed = 6232, + /// /// number_of_beast_minions_allowed /// - NumberOfBeastMinionsAllowed = 6231, - + NumberOfBeastMinionsAllowed = 6233, + /// /// local_display_grants_summon_beast_companion /// - LocalDisplayGrantsSummonBeastCompanion = 6232, - + LocalDisplayGrantsSummonBeastCompanion = 6234, + /// /// molten_shell_explosion_cooldown_ms /// - MoltenShellExplosionCooldownMs = 6233, - + MoltenShellExplosionCooldownMs = 6235, + /// /// from_code_active_skill_hit_and_ailment_damage_+%_final /// - FromCodeActiveSkillHitAndAilmentDamagePctFinal = 6234, - + FromCodeActiveSkillHitAndAilmentDamagePctFinal = 6236, + /// /// tornado_movement_velocity_+% /// - TornadoMovementVelocityPct = 6235, - + TornadoMovementVelocityPct = 6237, + /// /// monster_aggro_radius_+% /// - MonsterAggroRadiusPct = 6236, - + MonsterAggroRadiusPct = 6238, + /// /// ground_ice_art_variation /// - GroundIceArtVariation = 6237, - + GroundIceArtVariation = 6239, + /// /// virtual_additional_projectiles_fire_parallel_x_dist /// - VirtualAdditionalProjectilesFireParallelXDist = 6238, - + VirtualAdditionalProjectilesFireParallelXDist = 6240, + /// /// additional_projectiles_fire_parallel_y_dist /// - AdditionalProjectilesFireParallelYDist = 6239, - + AdditionalProjectilesFireParallelYDist = 6241, + /// /// from_code_active_skill_ailment_damage_+%_final /// - FromCodeActiveSkillAilmentDamagePctFinal = 6240, - + FromCodeActiveSkillAilmentDamagePctFinal = 6242, + /// /// flameblast_ailment_damage_+%_final_per_stack /// - FlameblastAilmentDamagePctFinalPerStack = 6241, - + FlameblastAilmentDamagePctFinalPerStack = 6243, + /// /// trigger_cascade_A /// - TriggerCascadeA = 6242, - + TriggerCascadeA = 6244, + /// /// trigger_cascade_B /// - TriggerCascadeB = 6243, - + TriggerCascadeB = 6245, + /// /// trigger_cascade_C /// - TriggerCascadeC = 6244, - + TriggerCascadeC = 6246, + /// /// trigger_cascade_D /// - TriggerCascadeD = 6245, - + TriggerCascadeD = 6247, + /// /// trigger_cascade_angle /// - TriggerCascadeAngle = 6246, - + TriggerCascadeAngle = 6248, + /// /// local_use_skill_on_hit_% /// - LocalUseSkillOnHitPct = 6247, - + LocalUseSkillOnHitPct = 6249, + /// /// main_hand_use_skill_on_hit_% /// - MainHandUseSkillOnHitPct = 6248, - + MainHandUseSkillOnHitPct = 6250, + /// /// off_hand_use_skill_on_hit_% /// - OffHandUseSkillOnHitPct = 6249, - + OffHandUseSkillOnHitPct = 6251, + /// /// skill_has_trigger_from_unique_item /// - SkillHasTriggerFromUniqueItem = 6250, - + SkillHasTriggerFromUniqueItem = 6252, + /// /// local_display_use_level_X_abyssal_cry_on_hit /// - LocalDisplayUseLevelXAbyssalCryOnHit = 6251, - + LocalDisplayUseLevelXAbyssalCryOnHit = 6253, + /// /// accelerate_min /// - AccelerateMin = 6252, - + AccelerateMin = 6254, + /// /// accelerate_max /// - AccelerateMax = 6253, - + AccelerateMax = 6255, + /// /// accelerate_time /// - AccelerateTime = 6254, - + AccelerateTime = 6256, + /// /// skill_is_minion_skill /// - SkillIsMinionSkill = 6255, - + SkillIsMinionSkill = 6257, + /// /// minion_skill_mana_cost_+% /// - MinionSkillManaCostPct = 6256, - + MinionSkillManaCostPct = 6258, + /// /// local_display_grants_skill_doryanis_touch_level /// - LocalDisplayGrantsSkillDoryanisTouchLevel = 6257, - + LocalDisplayGrantsSkillDoryanisTouchLevel = 6259, + /// /// trigger_cascade_target_variation /// - TriggerCascadeTargetVariation = 6258, - + TriggerCascadeTargetVariation = 6260, + /// /// trigger_cascade_number_of_arms /// - TriggerCascadeNumberOfArms = 6259, - + TriggerCascadeNumberOfArms = 6261, + /// /// trigger_cascade_angle_between_arms /// - TriggerCascadeAngleBetweenArms = 6260, - + TriggerCascadeAngleBetweenArms = 6262, + /// /// support_ruthless_big_hit_max_count /// - SupportRuthlessBigHitMaxCount = 6261, - + SupportRuthlessBigHitMaxCount = 6263, + /// /// melee_damage_+%_final_from_ruthless_blow /// - MeleeDamagePctFinalFromRuthlessBlow = 6262, - + MeleeDamagePctFinalFromRuthlessBlow = 6264, + /// /// stun_base_duration_override_ms /// - StunBaseDurationOverrideMs = 6263, - + StunBaseDurationOverrideMs = 6265, + /// /// support_ruthless_big_hit_stun_base_duration_override_ms /// - SupportRuthlessBigHitStunBaseDurationOverrideMs = 6264, - + SupportRuthlessBigHitStunBaseDurationOverrideMs = 6266, + /// /// support_ruthless_big_hit_damage_+%_final /// - SupportRuthlessBigHitDamagePctFinal = 6265, - + SupportRuthlessBigHitDamagePctFinal = 6267, + /// /// support_scion_onslaught_on_killing_blow_%_chance /// - SupportScionOnslaughtOnKillingBlowPctChance = 6266, - + SupportScionOnslaughtOnKillingBlowPctChance = 6268, + /// /// support_scion_onslaught_on_killing_blow_duration_ms /// - SupportScionOnslaughtOnKillingBlowDurationMs = 6267, - + SupportScionOnslaughtOnKillingBlowDurationMs = 6269, + /// /// support_arcane_surge_gain_buff_on_mana_use_threshold /// - SupportArcaneSurgeGainBuffOnManaUseThreshold = 6268, - + SupportArcaneSurgeGainBuffOnManaUseThreshold = 6270, + /// /// support_arcane_surge_spell_damage_+%_final /// - SupportArcaneSurgeSpellDamagePctFinal = 6269, - + SupportArcaneSurgeSpellDamagePctFinal = 6271, + /// /// spell_damage_+%_final_from_arcane_surge /// - SpellDamagePctFinalFromArcaneSurge = 6270, - + SpellDamagePctFinalFromArcaneSurge = 6272, + /// /// support_arcane_surge_duration_ms /// - SupportArcaneSurgeDurationMs = 6271, - + SupportArcaneSurgeDurationMs = 6273, + /// /// support_arcane_surge_base_duration_ms /// - SupportArcaneSurgeBaseDurationMs = 6272, - + SupportArcaneSurgeBaseDurationMs = 6274, + /// /// support_arcane_surge_cast_speed_+% /// - SupportArcaneSurgeCastSpeedPct = 6273, - + SupportArcaneSurgeCastSpeedPct = 6275, + /// /// support_arcane_surge_mana_regeneration_rate_per_minute_% /// - SupportArcaneSurgeManaRegenerationRatePerMinutePct = 6274, - + SupportArcaneSurgeManaRegenerationRatePerMinutePct = 6276, + /// /// hidden_monster_can_have_auras /// - HiddenMonsterCanHaveAuras = 6275, - + HiddenMonsterCanHaveAuras = 6277, + /// /// projectile_number_of_targets_to_pierce /// - ProjectileNumberOfTargetsToPierce = 6276, - + ProjectileNumberOfTargetsToPierce = 6278, + /// /// arrow_number_of_targets_to_pierce /// - ArrowNumberOfTargetsToPierce = 6277, - + ArrowNumberOfTargetsToPierce = 6279, + /// /// projectile_base_number_of_targets_to_pierce /// - ProjectileBaseNumberOfTargetsToPierce = 6278, - + ProjectileBaseNumberOfTargetsToPierce = 6280, + /// /// arrow_base_number_of_targets_to_pierce /// - ArrowBaseNumberOfTargetsToPierce = 6279, - + ArrowBaseNumberOfTargetsToPierce = 6281, + /// /// arrows_always_pierce /// - ArrowsAlwaysPierce = 6280, - + ArrowsAlwaysPierce = 6282, + /// /// base_arrows_always_pierce /// - BaseArrowsAlwaysPierce = 6281, - + BaseArrowsAlwaysPierce = 6283, + /// /// virtual_always_pierce /// - VirtualAlwaysPierce = 6282, - + VirtualAlwaysPierce = 6284, + /// /// support_ignite_prolif_ignite_damage_+%_final /// - SupportIgniteProlifIgniteDamagePctFinal = 6283, - + SupportIgniteProlifIgniteDamagePctFinal = 6285, + /// /// combined_ailment_all_damage_over_time_+%_final /// - CombinedAilmentAllDamageOverTimePctFinal = 6284, - + CombinedAilmentAllDamageOverTimePctFinal = 6286, + /// /// projectiles_always_pierce_you /// - ProjectilesAlwaysPierceYou = 6285, - + ProjectilesAlwaysPierceYou = 6287, + /// /// arrow_damage_+%_vs_pierced_targets /// - ArrowDamagePctVsPiercedTargets = 6286, - + ArrowDamagePctVsPiercedTargets = 6288, + /// /// projectiles_pierce_x_additional_targets_while_you_have_phasing /// - ProjectilesPierceXAdditionalTargetsWhileYouHavePhasing = 6287, - + ProjectilesPierceXAdditionalTargetsWhileYouHavePhasing = 6289, + /// /// quiver_projectiles_pierce_1_additional_target /// - QuiverProjectilesPierce1AdditionalTarget = 6288, - + QuiverProjectilesPierce1AdditionalTarget = 6290, + /// /// quiver_projectiles_pierce_2_additional_targets /// - QuiverProjectilesPierce2AdditionalTargets = 6289, - + QuiverProjectilesPierce2AdditionalTargets = 6291, + /// /// quiver_projectiles_pierce_3_additional_targets /// - QuiverProjectilesPierce3AdditionalTargets = 6290, - + QuiverProjectilesPierce3AdditionalTargets = 6292, + /// /// projectiles_pierce_all_nearby_targets /// - ProjectilesPierceAllNearbyTargets = 6291, - + ProjectilesPierceAllNearbyTargets = 6293, + /// /// projectiles_pierce_1_additional_target_per_10_stat_value /// - ProjectilesPierce1AdditionalTargetPer10StatValue = 6292, - + ProjectilesPierce1AdditionalTargetPer10StatValue = 6294, + /// /// projectiles_pierce_1_additional_target_per_15_stat_value /// - ProjectilesPierce1AdditionalTargetPer15StatValue = 6293, - + ProjectilesPierce1AdditionalTargetPer15StatValue = 6295, + /// /// talisman_implicit_projectiles_pierce_1_additional_target_per_10 /// - TalismanImplicitProjectilesPierce1AdditionalTargetPer10 = 6294, - + TalismanImplicitProjectilesPierce1AdditionalTargetPer10 = 6296, + /// /// blade_vortex_ailment_damage_+%_per_blade_final /// - BladeVortexAilmentDamagePctPerBladeFinal = 6295, - + BladeVortexAilmentDamagePctPerBladeFinal = 6297, + /// /// bladefall_width_+% /// - BladefallWidthPct = 6296, - + BladefallWidthPct = 6298, + /// /// lightning_strike_additional_pierce_per_10_old /// - LightningStrikeAdditionalPiercePer10Old = 6297, - + LightningStrikeAdditionalPiercePer10Old = 6299, + /// /// lightning_strike_additional_pierce /// - LightningStrikeAdditionalPierce = 6298, - + LightningStrikeAdditionalPierce = 6300, + /// /// lightning_trap_additional_pierce_per_10_old /// - LightningTrapAdditionalPiercePer10Old = 6299, - + LightningTrapAdditionalPiercePer10Old = 6301, + /// /// lightning_trap_additional_pierce /// - LightningTrapAdditionalPierce = 6300, - + LightningTrapAdditionalPierce = 6302, + /// /// support_poison_poison_damage_+%_final /// - SupportPoisonPoisonDamagePctFinal = 6301, - + SupportPoisonPoisonDamagePctFinal = 6303, + /// /// attacks_chance_to_poison_%_on_max_frenzy_charges /// - AttacksChanceToPoisonPctOnMaxFrenzyCharges = 6302, - + AttacksChanceToPoisonPctOnMaxFrenzyCharges = 6304, + /// /// chance_to_poison_%_vs_cursed_enemies /// - ChanceToPoisonPctVsCursedEnemies = 6303, - + ChanceToPoisonPctVsCursedEnemies = 6305, + /// /// chaos_damage_chance_to_poison_% /// - ChaosDamageChanceToPoisonPct = 6304, - + ChaosDamageChanceToPoisonPct = 6306, + /// /// virtual_chance_to_poison_on_hit_with_attacks_% /// - VirtualChanceToPoisonOnHitWithAttacksPct = 6305, - + VirtualChanceToPoisonOnHitWithAttacksPct = 6307, + /// /// support_innervate_minimum_added_lightning_damage /// - SupportInnervateMinimumAddedLightningDamage = 6306, - + SupportInnervateMinimumAddedLightningDamage = 6308, + /// /// support_innervate_maximum_added_lightning_damage /// - SupportInnervateMaximumAddedLightningDamage = 6307, - + SupportInnervateMaximumAddedLightningDamage = 6309, + /// /// support_innervate_buff_duration_ms /// - SupportInnervateBuffDurationMs = 6308, - + SupportInnervateBuffDurationMs = 6310, + /// /// support_innervate_buff_base_duration_ms /// - SupportInnervateBuffBaseDurationMs = 6309, - + SupportInnervateBuffBaseDurationMs = 6311, + /// /// local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius /// - LocalUniqueJewelSparkProjectilesNovaWith40IntInRadius = 6310, - + LocalUniqueJewelSparkProjectilesNovaWith40IntInRadius = 6312, + /// /// spark_projectiles_nova /// - SparkProjectilesNova = 6311, - + SparkProjectilesNova = 6313, + /// /// local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius /// - LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith40IntInRadius = 6312, - + LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith40IntInRadius = 6314, + /// /// spark_number_of_additional_projectiles /// - SparkNumberOfAdditionalProjectiles = 6313, - + SparkNumberOfAdditionalProjectiles = 6315, + /// /// local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius /// - LocalUniqueJewelBlightHinderEnemyChaosDamageTakenPctWith40IntInRadius = 6314, - + LocalUniqueJewelBlightHinderEnemyChaosDamageTakenPctWith40IntInRadius = 6316, + /// /// blight_hinder_enemy_chaos_damage_taken_+% /// - BlightHinderEnemyChaosDamageTakenPct = 6315, - + BlightHinderEnemyChaosDamageTakenPct = 6317, + /// /// local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius /// - LocalUniqueJewelBlightHinderDurationPctWith40IntInRadius = 6316, - + LocalUniqueJewelBlightHinderDurationPctWith40IntInRadius = 6318, + /// /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius /// - LocalUniqueJewelSplitArrowProjectilesFireInParallelXDistWith40DexInRadius = 6317, - + LocalUniqueJewelSplitArrowProjectilesFireInParallelXDistWith40DexInRadius = 6319, + /// /// split_arrow_projectiles_fire_in_parallel_x_dist /// - SplitArrowProjectilesFireInParallelXDist = 6318, - + SplitArrowProjectilesFireInParallelXDist = 6320, + /// /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_y_dist_with_40_dex_in_radius /// - LocalUniqueJewelSplitArrowProjectilesFireInParallelYDistWith40DexInRadius = 6319, - + LocalUniqueJewelSplitArrowProjectilesFireInParallelYDistWith40DexInRadius = 6321, + /// /// split_arrow_projectiles_fire_in_parallel_y_dist /// - SplitArrowProjectilesFireInParallelYDist = 6320, - + SplitArrowProjectilesFireInParallelYDist = 6322, + /// /// local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius /// - LocalUniqueJewelFireTrapNumberOfAdditionalTrapsToThrowWith40DexInRadius = 6321, - + LocalUniqueJewelFireTrapNumberOfAdditionalTrapsToThrowWith40DexInRadius = 6323, + /// /// fire_trap_number_of_additional_traps_to_throw /// - FireTrapNumberOfAdditionalTrapsToThrow = 6322, - + FireTrapNumberOfAdditionalTrapsToThrow = 6324, + /// /// piercing_projectiles_critical_strike_chance_+% /// - PiercingProjectilesCriticalStrikeChancePct = 6323, - + PiercingProjectilesCriticalStrikeChancePct = 6325, + /// /// arrow_damage_+50%_vs_pierced_targets /// - ArrowDamage50PctVsPiercedTargets = 6324, - + ArrowDamage50PctVsPiercedTargets = 6326, + /// /// arrows_pierce_additional_target /// - ArrowsPierceAdditionalTarget = 6325, - + ArrowsPierceAdditionalTarget = 6327, + /// /// ice_shot_additional_pierce_per_10_old /// - IceShotAdditionalPiercePer10Old = 6326, - + IceShotAdditionalPiercePer10Old = 6328, + /// /// local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius /// - LocalUniqueJewelIceShotAdditionalPiercePer10OldWith40DexInRadius = 6327, - + LocalUniqueJewelIceShotAdditionalPiercePer10OldWith40DexInRadius = 6329, + /// /// virtual_cooldown_modifier_ms /// - VirtualCooldownModifierMs = 6328, - + VirtualCooldownModifierMs = 6330, + /// /// base_cooldown_modifier_ms /// - BaseCooldownModifierMs = 6329, - + BaseCooldownModifierMs = 6331, + /// /// summon_skeletons_cooldown_modifier_ms /// - SummonSkeletonsCooldownModifierMs = 6330, - + SummonSkeletonsCooldownModifierMs = 6332, + /// /// trigger_cascade_use_contact_points /// - TriggerCascadeUseContactPoints = 6331, - + TriggerCascadeUseContactPoints = 6333, + /// /// arrows_pierce_1_additional_target_per_10_stat_value /// - ArrowsPierce1AdditionalTargetPer10StatValue = 6332, - + ArrowsPierce1AdditionalTargetPer10StatValue = 6334, + /// /// summon_skeletons_additional_warrior_skeleton_%_chance /// - SummonSkeletonsAdditionalWarriorSkeletonPctChance = 6333, - + SummonSkeletonsAdditionalWarriorSkeletonPctChance = 6335, + /// /// map_spawn_harbingers /// - MapSpawnHarbingers = 6334, - + MapSpawnHarbingers = 6336, + /// /// map_num_extra_harbingers /// - MapNumExtraHarbingers = 6335, - + MapNumExtraHarbingers = 6337, + /// /// map_packs_are_lunaris /// - MapPacksAreLunaris = 6336, - + MapPacksAreLunaris = 6338, + /// /// map_packs_are_solaris /// - MapPacksAreSolaris = 6337, - + MapPacksAreSolaris = 6339, + /// /// map_packs_are_ghosts /// - MapPacksAreGhosts = 6338, - + MapPacksAreGhosts = 6340, + /// /// skeletal_chains_no_minions_radius_+ /// - SkeletalChainsNoMinionsRadius = 6339, - + SkeletalChainsNoMinionsRadius = 6341, + /// /// skeletal_chains_no_minions_targets_self /// - SkeletalChainsNoMinionsTargetsSelf = 6340, - + SkeletalChainsNoMinionsTargetsSelf = 6342, + /// /// ice_shot_pierce_+ /// - IceShotPierce = 6341, - + IceShotPierce = 6343, + /// /// local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius /// - LocalUniqueJewelIceShotPierceWith40DexInRadius = 6342, - + LocalUniqueJewelIceShotPierceWith40DexInRadius = 6344, + /// /// non_damaging_ailment_effect_+% /// - NonDamagingAilmentEffectPct = 6343, - + NonDamagingAilmentEffectPct = 6345, + /// /// bleeding_stacks_up_to_x_times /// - BleedingStacksUpToXTimes = 6344, - + BleedingStacksUpToXTimes = 6346, + /// /// energy_shield_recharge_start_when_stunned /// - EnergyShieldRechargeStartWhenStunned = 6345, - + EnergyShieldRechargeStartWhenStunned = 6347, + /// /// no_extra_bleed_damage_while_target_is_moving /// - NoExtraBleedDamageWhileTargetIsMoving = 6346, - + NoExtraBleedDamageWhileTargetIsMoving = 6348, + /// /// track_which_enemies_hit_index /// - TrackWhichEnemiesHitIndex = 6347, - + TrackWhichEnemiesHitIndex = 6349, + /// /// track_skill_used_index /// - TrackSkillUsedIndex = 6348, - + TrackSkillUsedIndex = 6350, + /// /// skill_behaviour_variation /// - SkillBehaviourVariation = 6349, - + SkillBehaviourVariation = 6351, + /// /// trigger_skill_restriction /// - TriggerSkillRestriction = 6350, - + TriggerSkillRestriction = 6352, + /// /// prophecy_monster_spawn_level /// - ProphecyMonsterSpawnLevel = 6351, - + ProphecyMonsterSpawnLevel = 6353, + /// /// number_of_skeletons_allowed_per_2_old /// - NumberOfSkeletonsAllowedPer2Old = 6352, - + NumberOfSkeletonsAllowedPer2Old = 6354, + /// /// cast_on_trigger_cascade_event /// - CastOnTriggerCascadeEvent = 6353, - + CastOnTriggerCascadeEvent = 6355, + /// /// spark_skill_effect_duration_+% /// - SparkSkillEffectDurationPct = 6354, - + SparkSkillEffectDurationPct = 6356, + /// /// support_innervate_gain_buff_on_killing_shocked_enemy /// - SupportInnervateGainBuffOnKillingShockedEnemy = 6355, - + SupportInnervateGainBuffOnKillingShockedEnemy = 6357, + /// /// additional_critical_strike_chance_permyriad_while_at_maximum_power_charges /// - AdditionalCriticalStrikeChancePermyriadWhileAtMaximumPowerCharges = 6356, - + AdditionalCriticalStrikeChancePermyriadWhileAtMaximumPowerCharges = 6358, + /// /// object_inherent_spell_damage_+%_final_per_power_charge /// - ObjectInherentSpellDamagePctFinalPerPowerCharge = 6357, - + ObjectInherentSpellDamagePctFinalPerPowerCharge = 6359, + /// /// damage_over_time_+%_per_frenzy_charge /// - DamageOverTimePctPerFrenzyCharge = 6358, - + DamageOverTimePctPerFrenzyCharge = 6360, + /// /// damage_over_time_+%_per_power_charge /// - DamageOverTimePctPerPowerCharge = 6359, - + DamageOverTimePctPerPowerCharge = 6361, + /// /// gain_frenzy_and_power_charge_on_kill_% /// - GainFrenzyAndPowerChargeOnKillPct = 6360, - + GainFrenzyAndPowerChargeOnKillPct = 6362, + /// /// maximum_power_and_frenzy_charges_+ /// - MaximumPowerAndFrenzyCharges = 6361, - + MaximumPowerAndFrenzyCharges = 6363, + /// /// labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+% /// - LabyrinthDarkshrinePlayersDamageTakenFromLabyrinthTrapsPct = 6362, - + LabyrinthDarkshrinePlayersDamageTakenFromLabyrinthTrapsPct = 6364, + /// /// labyrinth_darkshrine_boss_room_traps_are_disabled /// - LabyrinthDarkshrineBossRoomTrapsAreDisabled = 6363, - + LabyrinthDarkshrineBossRoomTrapsAreDisabled = 6365, + /// /// labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth /// - LabyrinthDarkshrinePlayersHaveShrineRowXEffectForThisLabyrinth = 6364, - + LabyrinthDarkshrinePlayersHaveShrineRowXEffectForThisLabyrinth = 6366, + /// /// labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x /// - LabyrinthDarkshrineDivineFontGrantsOneAdditionalEnchantmentUseToPlayerX = 6365, - + LabyrinthDarkshrineDivineFontGrantsOneAdditionalEnchantmentUseToPlayerX = 6367, + /// /// labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys /// - LabyrinthDarkshrineIzaroDropsXAdditionalTreasureKeys = 6366, - + LabyrinthDarkshrineIzaroDropsXAdditionalTreasureKeys = 6368, + /// /// damage_taken_from_labyrinth_traps_+% /// - DamageTakenFromLabyrinthTrapsPct = 6367, - + DamageTakenFromLabyrinthTrapsPct = 6369, + /// /// labyrinth_darkshrine_izaro_dropped_unique_items_+ /// - LabyrinthDarkshrineIzaroDroppedUniqueItems = 6368, - + LabyrinthDarkshrineIzaroDroppedUniqueItems = 6370, + /// /// convocation_max_number_of_minions_to_teleport /// - ConvocationMaxNumberOfMinionsToTeleport = 6369, - + ConvocationMaxNumberOfMinionsToTeleport = 6371, + /// /// local_chance_to_bleed_on_hit_25% /// - LocalChanceToBleedOnHit25Pct = 6370, - + LocalChanceToBleedOnHit25Pct = 6372, + /// /// main_hand_local_chance_to_bleed_on_hit_25% /// - MainHandLocalChanceToBleedOnHit25Pct = 6371, - + MainHandLocalChanceToBleedOnHit25Pct = 6373, + /// /// off_hand_local_chance_to_bleed_on_hit_25% /// - OffHandLocalChanceToBleedOnHit25Pct = 6372, - + OffHandLocalChanceToBleedOnHit25Pct = 6374, + /// /// recover_%_maximum_mana_on_kill /// - RecoverPctMaximumManaOnKill = 6373, - + RecoverPctMaximumManaOnKill = 6375, + /// /// arctic_armour_chill_when_hit_duration /// - ArcticArmourChillWhenHitDuration = 6374, - + ArcticArmourChillWhenHitDuration = 6376, + /// /// debuff_time_passed_+% /// - DebuffTimePassedPct = 6375, - + DebuffTimePassedPct = 6377, + /// /// skill_is_channelled /// - SkillIsChannelled = 6376, - + SkillIsChannelled = 6378, + /// /// channelled_skill_damage_+% /// - ChannelledSkillDamagePct = 6377, - + ChannelledSkillDamagePct = 6379, + /// /// local_display_socketed_gems_supported_by_x_innervate_level /// - LocalDisplaySocketedGemsSupportedByXInnervateLevel = 6378, - + LocalDisplaySocketedGemsSupportedByXInnervateLevel = 6380, + /// /// local_display_summon_harbinger_x_on_equip /// - LocalDisplaySummonHarbingerXOnEquip = 6379, - + LocalDisplaySummonHarbingerXOnEquip = 6381, + /// /// skeleton_movement_speed_+% /// - SkeletonMovementSpeedPct = 6380, - + SkeletonMovementSpeedPct = 6382, + /// /// skeleton_attack_speed_+% /// - SkeletonAttackSpeedPct = 6381, - + SkeletonAttackSpeedPct = 6383, + /// /// skeleton_cast_speed_+% /// - SkeletonCastSpeedPct = 6382, - + SkeletonCastSpeedPct = 6384, + /// /// physical_damage_over_time_taken_+% /// - PhysicalDamageOverTimeTakenPct = 6383, - + PhysicalDamageOverTimeTakenPct = 6385, + /// /// summon_skeletons_additional_warrior_skeleton_one_twentieth_chance /// - SummonSkeletonsAdditionalWarriorSkeletonOneTwentiethChance = 6384, - + SummonSkeletonsAdditionalWarriorSkeletonOneTwentiethChance = 6386, + /// /// leapslam_overshoot_distance /// - LeapslamOvershootDistance = 6385, - + LeapslamOvershootDistance = 6387, + /// /// skill_is_projectile_skill /// - SkillIsProjectileSkill = 6386, - + SkillIsProjectileSkill = 6388, + /// /// projectile_attack_skill_critical_strike_chance_+% /// - ProjectileAttackSkillCriticalStrikeChancePct = 6387, - + ProjectileAttackSkillCriticalStrikeChancePct = 6389, + /// /// storm_burst_avoid_interruption_while_casting_% /// - StormBurstAvoidInterruptionWhileCastingPct = 6388, - + StormBurstAvoidInterruptionWhileCastingPct = 6390, + /// /// storm_burst_area_of_effect_+% /// - StormBurstAreaOfEffectPct = 6389, - + StormBurstAreaOfEffectPct = 6391, + /// /// skeletal_chains_cast_speed_+% /// - SkeletalChainsCastSpeedPct = 6390, - + SkeletalChainsCastSpeedPct = 6392, + /// /// skeletal_chains_area_of_effect_+% /// - SkeletalChainsAreaOfEffectPct = 6391, - + SkeletalChainsAreaOfEffectPct = 6393, + /// /// unique_volkuurs_clutch_poison_duration_+%_final /// - UniqueVolkuursClutchPoisonDurationPctFinal = 6392, - + UniqueVolkuursClutchPoisonDurationPctFinal = 6394, + /// /// combined_poison_duration_+%_final /// - CombinedPoisonDurationPctFinal = 6393, - + CombinedPoisonDurationPctFinal = 6395, + /// /// local_display_trigger_level_X_darktongue_kiss_on_curse /// - LocalDisplayTriggerLevelXDarktongueKissOnCurse = 6394, - + LocalDisplayTriggerLevelXDarktongueKissOnCurse = 6396, + /// /// cast_when_cast_curse_% /// - CastWhenCastCursePct = 6395, - + CastWhenCastCursePct = 6397, + /// /// move_daemon_number_of_daemons_to_spawn /// - MoveDaemonNumberOfDaemonsToSpawn = 6396, - + MoveDaemonNumberOfDaemonsToSpawn = 6398, + /// /// move_daemon_movement_speed /// - MoveDaemonMovementSpeed = 6397, - + MoveDaemonMovementSpeed = 6399, + /// /// move_daemon_distance_to_travel /// - MoveDaemonDistanceToTravel = 6398, - + MoveDaemonDistanceToTravel = 6400, + /// /// move_daemon_delay_between_daemons_ms /// - MoveDaemonDelayBetweenDaemonsMs = 6399, - + MoveDaemonDelayBetweenDaemonsMs = 6401, + /// /// move_daemon_rotation /// - MoveDaemonRotation = 6400, - + MoveDaemonRotation = 6402, + /// /// move_daemon_rotation_per_daemon /// - MoveDaemonRotationPerDaemon = 6401, - + MoveDaemonRotationPerDaemon = 6403, + /// /// move_daemon_end_rotation /// - MoveDaemonEndRotation = 6402, - + MoveDaemonEndRotation = 6404, + /// /// move_daemon_end_rotation_per_daemon /// - MoveDaemonEndRotationPerDaemon = 6403, - + MoveDaemonEndRotationPerDaemon = 6405, + /// /// move_daemon_x_offset /// - MoveDaemonXOffset = 6404, - + MoveDaemonXOffset = 6406, + /// /// move_daemon_y_offset /// - MoveDaemonYOffset = 6405, - + MoveDaemonYOffset = 6407, + /// /// move_daemon_x_offset_per_daemon /// - MoveDaemonXOffsetPerDaemon = 6406, - + MoveDaemonXOffsetPerDaemon = 6408, + /// /// move_daemon_y_offset_per_daemon /// - MoveDaemonYOffsetPerDaemon = 6407, - + MoveDaemonYOffsetPerDaemon = 6409, + /// /// move_daemon_pivot_variation /// - MoveDaemonPivotVariation = 6408, - + MoveDaemonPivotVariation = 6410, + /// /// harbinger_minion_damage_taken_+%_final_min /// - HarbingerMinionDamageTakenPctFinalMin = 6409, - + HarbingerMinionDamageTakenPctFinalMin = 6411, + /// /// harbinger_minion_damage_taken_+%_final_max /// - HarbingerMinionDamageTakenPctFinalMax = 6410, - + HarbingerMinionDamageTakenPctFinalMax = 6412, + /// /// harbinger_minion_damage_taken_+%_final_time /// - HarbingerMinionDamageTakenPctFinalTime = 6411, - + HarbingerMinionDamageTakenPctFinalTime = 6413, + /// /// harbinger_minion_rare_chance_% /// - HarbingerMinionRareChancePct = 6412, - + HarbingerMinionRareChancePct = 6414, + /// /// harbinger_minion_magic_chance_% /// - HarbingerMinionMagicChancePct = 6413, - + HarbingerMinionMagicChancePct = 6415, + /// /// harbinger_minion_remove_parent_life_on_death_permyriad /// - HarbingerMinionRemoveParentLifeOnDeathPermyriad = 6414, - + HarbingerMinionRemoveParentLifeOnDeathPermyriad = 6416, + /// /// critical_strike_chance_increased_by_lightning_resistance /// - CriticalStrikeChanceIncreasedByLightningResistance = 6415, - + CriticalStrikeChanceIncreasedByLightningResistance = 6417, + /// /// piercing_projectiles_critical_strike_chance_+100% /// - PiercingProjectilesCriticalStrikeChance100Pct = 6416, - + PiercingProjectilesCriticalStrikeChance100Pct = 6418, + /// /// cast_on_skill_use_% /// - CastOnSkillUsePct = 6417, - + CastOnSkillUsePct = 6419, + /// /// local_display_trigger_level_X_void_gaze_on_skill_use /// - LocalDisplayTriggerLevelXVoidGazeOnSkillUse = 6418, - + LocalDisplayTriggerLevelXVoidGazeOnSkillUse = 6420, + /// /// cannot_be_stunned_if_you_have_blocked_a_stun_recently /// - CannotBeStunnedIfYouHaveBlockedAStunRecently = 6419, - + CannotBeStunnedIfYouHaveBlockedAStunRecently = 6421, + /// /// track_have_blocked_a_stun_recently /// - TrackHaveBlockedAStunRecently = 6420, - + TrackHaveBlockedAStunRecently = 6422, + /// /// have_blocked_a_stun_recently /// - HaveBlockedAStunRecently = 6421, - + HaveBlockedAStunRecently = 6423, + /// /// local_display_trigger_level_x_storm_cascade_on_attack /// - LocalDisplayTriggerLevelXStormCascadeOnAttack = 6422, - + LocalDisplayTriggerLevelXStormCascadeOnAttack = 6424, + /// /// empty_action_state_value /// - EmptyActionStateValue = 6423, - + EmptyActionStateValue = 6425, + /// /// minimum_added_chaos_damage_vs_enemies_with_5+_poisons /// - MinimumAddedChaosDamageVsEnemiesWith5Poisons = 6424, - + MinimumAddedChaosDamageVsEnemiesWith5Poisons = 6426, + /// /// maximum_added_chaos_damage_vs_enemies_with_5+_poisons /// - MaximumAddedChaosDamageVsEnemiesWith5Poisons = 6425, - + MaximumAddedChaosDamageVsEnemiesWith5Poisons = 6427, + /// /// main_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons /// - MainHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6426, - + MainHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6428, + /// /// main_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons /// - MainHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6427, - + MainHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6429, + /// /// off_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons /// - OffHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6428, - + OffHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6430, + /// /// off_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons /// - OffHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6429, - + OffHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6431, + /// /// life_leech_from_attack_damage_permyriad_vs_poisoned_enemies /// - LifeLeechFromAttackDamagePermyriadVsPoisonedEnemies = 6430, - + LifeLeechFromAttackDamagePermyriadVsPoisonedEnemies = 6432, + /// /// poison_duration_+%_per_power_charge /// - PoisonDurationPctPerPowerCharge = 6431, - + PoisonDurationPctPerPowerCharge = 6433, + /// /// poison_damage_+%_per_frenzy_charge /// - PoisonDamagePctPerFrenzyCharge = 6432, - + PoisonDamagePctPerFrenzyCharge = 6434, + /// /// gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_% /// - GainFrenzyChargeOnKillVsEnemiesWith5PoisonsPct = 6433, - + GainFrenzyChargeOnKillVsEnemiesWith5PoisonsPct = 6435, + /// /// gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_% /// - GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsPct = 6434, - + GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsPct = 6436, + /// /// local_display_socketed_gems_supported_by_X_lesser_poison /// - LocalDisplaySocketedGemsSupportedByXLesserPoison = 6435, - + LocalDisplaySocketedGemsSupportedByXLesserPoison = 6437, + /// /// poison_duration_+%_with_over_150_intelligence /// - PoisonDurationPctWithOver150Intelligence = 6436, - + PoisonDurationPctWithOver150Intelligence = 6438, + /// /// poison_damage_+%_with_over_300_dexterity /// - PoisonDamagePctWithOver300Dexterity = 6437, - + PoisonDamagePctWithOver300Dexterity = 6439, + /// /// local_display_socketed_gems_supported_by_X_vile_toxins /// - LocalDisplaySocketedGemsSupportedByXVileToxins = 6438, - + LocalDisplaySocketedGemsSupportedByXVileToxins = 6440, + /// /// local_display_grants_skill_blight_level /// - LocalDisplayGrantsSkillBlightLevel = 6439, - + LocalDisplayGrantsSkillBlightLevel = 6441, + /// /// you_cannot_be_hindered /// - YouCannotBeHindered = 6440, - + YouCannotBeHindered = 6442, + /// /// support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits /// - SupportMeleePhysicalDamagePoisonAndBleedingDamagePctFinalFromMeleeHits = 6441, - + SupportMeleePhysicalDamagePoisonAndBleedingDamagePctFinalFromMeleeHits = 6443, + /// /// support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits /// - SupportPhysProjAttackDamageBleeingAndPoisonDamagePctFinalFromProjectileHits = 6442, - + SupportPhysProjAttackDamageBleeingAndPoisonDamagePctFinalFromProjectileHits = 6444, + /// /// support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final /// - SupportRuthlessBlowBleedingDamageFromMeleeHitsPctFinal = 6443, - + SupportRuthlessBlowBleedingDamageFromMeleeHitsPctFinal = 6445, + /// /// melee_hit_bleeding_damage_+%_final_from_ruthless_blow /// - MeleeHitBleedingDamagePctFinalFromRuthlessBlow = 6444, - + MeleeHitBleedingDamagePctFinalFromRuthlessBlow = 6446, + /// /// support_chance_to_bleed_bleeding_damage_+%_final /// - SupportChanceToBleedBleedingDamagePctFinal = 6445, - + SupportChanceToBleedBleedingDamagePctFinal = 6447, + /// /// charged_dash_chance_to_dodge_%_if_finished_channelling_recently /// - ChargedDashChanceToDodgePctIfFinishedChannellingRecently = 6446, - + ChargedDashChanceToDodgePctIfFinishedChannellingRecently = 6448, + /// /// charged_dash_area_of_effect_radius_+_of_final_explosion /// - ChargedDashAreaOfEffectRadiusOfFinalExplosion = 6447, - + ChargedDashAreaOfEffectRadiusOfFinalExplosion = 6449, + /// /// additional_physical_damage_reduction_%_if_not_player /// - AdditionalPhysicalDamageReductionPctIfNotPlayer = 6448, - + AdditionalPhysicalDamageReductionPctIfNotPlayer = 6450, + /// /// resist_all_elements_%_if_not_player /// - ResistAllElementsPctIfNotPlayer = 6449, - + ResistAllElementsPctIfNotPlayer = 6451, + /// /// physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges /// - PhysicalDamagePctToGainAsChaosWhileAtMaximumPowerCharges = 6450, - + PhysicalDamagePctToGainAsChaosWhileAtMaximumPowerCharges = 6452, + /// /// attack_ailment_damage_+%_while_wielding_dagger /// - AttackAilmentDamagePctWhileWieldingDagger = 6451, - + AttackAilmentDamagePctWhileWieldingDagger = 6453, + /// /// attack_ailment_damage_+%_while_wielding_claw /// - AttackAilmentDamagePctWhileWieldingClaw = 6452, - + AttackAilmentDamagePctWhileWieldingClaw = 6454, + /// /// attack_ailment_damage_+%_while_wielding_sword /// - AttackAilmentDamagePctWhileWieldingSword = 6453, - + AttackAilmentDamagePctWhileWieldingSword = 6455, + /// /// attack_ailment_damage_+%_while_wielding_bow /// - AttackAilmentDamagePctWhileWieldingBow = 6454, - + AttackAilmentDamagePctWhileWieldingBow = 6456, + /// /// attack_ailment_damage_+%_while_wielding_axe /// - AttackAilmentDamagePctWhileWieldingAxe = 6455, - + AttackAilmentDamagePctWhileWieldingAxe = 6457, + /// /// attack_ailment_damage_+%_while_wielding_mace /// - AttackAilmentDamagePctWhileWieldingMace = 6456, - + AttackAilmentDamagePctWhileWieldingMace = 6458, + /// /// attack_ailment_damage_+%_while_wielding_one_handed_weapon /// - AttackAilmentDamagePctWhileWieldingOneHandedWeapon = 6457, - + AttackAilmentDamagePctWhileWieldingOneHandedWeapon = 6459, + /// /// attack_ailment_damage_+%_while_wielding_two_handed_weapon /// - AttackAilmentDamagePctWhileWieldingTwoHandedWeapon = 6458, - + AttackAilmentDamagePctWhileWieldingTwoHandedWeapon = 6460, + /// /// attack_ailment_damage_+%_while_dual_wielding /// - AttackAilmentDamagePctWhileDualWielding = 6459, - + AttackAilmentDamagePctWhileDualWielding = 6461, + /// /// attack_ailment_damage_+%_while_holding_shield /// - AttackAilmentDamagePctWhileHoldingShield = 6460, - + AttackAilmentDamagePctWhileHoldingShield = 6462, + /// /// attack_ailment_damage_+%_while_wielding_melee_weapon /// - AttackAilmentDamagePctWhileWieldingMeleeWeapon = 6461, - + AttackAilmentDamagePctWhileWieldingMeleeWeapon = 6463, + /// - /// combined_ailment_damage_+%_from_weapon_types + /// combined_ailment_damage_+%_from_wielding_weapon_types /// - CombinedAilmentDamagePctFromWeaponTypes = 6462, - + CombinedAilmentDamagePctFromWieldingWeaponTypes = 6464, + /// /// immune_to_status_ailments /// - ImmuneToStatusAilments = 6463, - + ImmuneToStatusAilments = 6465, + /// /// chance_to_hit_while_blinded_+%_final /// - ChanceToHitWhileBlindedPctFinal = 6464, - + ChanceToHitWhileBlindedPctFinal = 6466, + /// /// chance_to_hit_+%_final /// - ChanceToHitPctFinal = 6465, - + ChanceToHitPctFinal = 6467, + /// /// is_summoned_harbinger_monster /// - IsSummonedHarbingerMonster = 6466, - + IsSummonedHarbingerMonster = 6468, + /// /// ignored_by_enemy_target_selection /// - IgnoredByEnemyTargetSelection = 6467, - + IgnoredByEnemyTargetSelection = 6469, + /// /// base_ignored_by_enemy_target_selection /// - BaseIgnoredByEnemyTargetSelection = 6468, - + BaseIgnoredByEnemyTargetSelection = 6470, + /// /// map_packs_have_belly_totems /// - MapPacksHaveBellyTotems = 6469, - + MapPacksHaveBellyTotems = 6471, + /// /// harbinger_minion_max_magic_count /// - HarbingerMinionMaxMagicCount = 6470, - + HarbingerMinionMaxMagicCount = 6472, + /// /// harbinger_minion_max_rare_count /// - HarbingerMinionMaxRareCount = 6471, - + HarbingerMinionMaxRareCount = 6473, + /// /// cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds /// - CannotBeStunnedIfHaveBeenStunnedOrBlockedStunningHitInPast2Seconds = 6472, - + CannotBeStunnedIfHaveBeenStunnedOrBlockedStunningHitInPast2Seconds = 6474, + /// /// glacial_cascade_number_of_additional_bursts /// - GlacialCascadeNumberOfAdditionalBursts = 6473, - + GlacialCascadeNumberOfAdditionalBursts = 6475, + /// /// local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius /// - LocalUniqueJewelGlacialCascadeNumberOfAdditionalBurstsWith40IntInRadius = 6474, - + LocalUniqueJewelGlacialCascadeNumberOfAdditionalBurstsWith40IntInRadius = 6476, + /// /// number_of_active_beast_minions /// - NumberOfActiveBeastMinions = 6475, - + NumberOfActiveBeastMinions = 6477, + /// /// projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion /// - ProjectileAttacksChanceToBleedOnHitPctIfYouHaveBeastMinion = 6476, - + ProjectileAttacksChanceToBleedOnHitPctIfYouHaveBeastMinion = 6478, + /// /// attack_minimum_added_physical_damage_if_you_have_beast_minion /// - AttackMinimumAddedPhysicalDamageIfYouHaveBeastMinion = 6477, - + AttackMinimumAddedPhysicalDamageIfYouHaveBeastMinion = 6479, + /// /// attack_maximum_added_physical_damage_if_you_have_beast_minion /// - AttackMaximumAddedPhysicalDamageIfYouHaveBeastMinion = 6478, - + AttackMaximumAddedPhysicalDamageIfYouHaveBeastMinion = 6480, + /// /// projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion /// - ProjectileAttacksChanceToMaimOnHitPctIfYouHaveBeastMinion = 6479, - + ProjectileAttacksChanceToMaimOnHitPctIfYouHaveBeastMinion = 6481, + /// /// attack_and_movement_speed_+%_if_you_have_beast_minion /// - AttackAndMovementSpeedPctIfYouHaveBeastMinion = 6480, - + AttackAndMovementSpeedPctIfYouHaveBeastMinion = 6482, + /// /// projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion /// - ProjectileAttacksChanceToPoisonOnHitPctIfYouHaveBeastMinion = 6481, - + ProjectileAttacksChanceToPoisonOnHitPctIfYouHaveBeastMinion = 6483, + /// /// attack_minimum_added_chaos_damage_if_you_have_beast_minion /// - AttackMinimumAddedChaosDamageIfYouHaveBeastMinion = 6482, - + AttackMinimumAddedChaosDamageIfYouHaveBeastMinion = 6484, + /// /// attack_maximum_added_chaos_damage_if_you_have_beast_minion /// - AttackMaximumAddedChaosDamageIfYouHaveBeastMinion = 6483, - + AttackMaximumAddedChaosDamageIfYouHaveBeastMinion = 6485, + /// /// local_bleed_on_critical_strike_chance_% /// - LocalBleedOnCriticalStrikeChancePct = 6484, - + LocalBleedOnCriticalStrikeChancePct = 6486, + /// /// main_hand_local_bleed_on_critical_strike_chance_% /// - MainHandLocalBleedOnCriticalStrikeChancePct = 6485, - + MainHandLocalBleedOnCriticalStrikeChancePct = 6487, + /// /// off_hand_local_bleed_on_critical_strike_chance_% /// - OffHandLocalBleedOnCriticalStrikeChancePct = 6486, - + OffHandLocalBleedOnCriticalStrikeChancePct = 6488, + /// /// local_poison_on_critical_strike_chance_% /// - LocalPoisonOnCriticalStrikeChancePct = 6487, - + LocalPoisonOnCriticalStrikeChancePct = 6489, + /// /// main_hand_local_poison_on_critical_strike_chance_% /// - MainHandLocalPoisonOnCriticalStrikeChancePct = 6488, - + MainHandLocalPoisonOnCriticalStrikeChancePct = 6490, + /// /// off_hand_local_poison_on_critical_strike_chance_% /// - OffHandLocalPoisonOnCriticalStrikeChancePct = 6489, - + OffHandLocalPoisonOnCriticalStrikeChancePct = 6491, + /// /// virtual_main_hand_chance_to_bleed_on_critical_strike_% /// - VirtualMainHandChanceToBleedOnCriticalStrikePct = 6490, - + VirtualMainHandChanceToBleedOnCriticalStrikePct = 6492, + /// /// virtual_off_hand_chance_to_bleed_on_critical_strike_% /// - VirtualOffHandChanceToBleedOnCriticalStrikePct = 6491, - + VirtualOffHandChanceToBleedOnCriticalStrikePct = 6493, + /// /// local_chance_to_bleed_on_crit_50% /// - LocalChanceToBleedOnCrit50Pct = 6492, - + LocalChanceToBleedOnCrit50Pct = 6494, + /// /// main_hand_local_chance_to_bleed_on_crit_50% /// - MainHandLocalChanceToBleedOnCrit50Pct = 6493, - + MainHandLocalChanceToBleedOnCrit50Pct = 6495, + /// /// off_hand_local_chance_to_bleed_on_crit_50% /// - OffHandLocalChanceToBleedOnCrit50Pct = 6494, - + OffHandLocalChanceToBleedOnCrit50Pct = 6496, + /// /// cast_on_attack_use_% /// - CastOnAttackUsePct = 6495, - + CastOnAttackUsePct = 6497, + /// /// ignite_slower_burn_% /// - IgniteSlowerBurnPct = 6496, - + IgniteSlowerBurnPct = 6498, + /// /// virtual_ignite_duration_+%_final /// - VirtualIgniteDurationPctFinal = 6497, - + VirtualIgniteDurationPctFinal = 6499, + /// /// object_inherent_damage_+%_final_per_frenzy_charge /// - ObjectInherentDamagePctFinalPerFrenzyCharge = 6498, - + ObjectInherentDamagePctFinalPerFrenzyCharge = 6500, + /// /// local_maim_on_hit_% /// - LocalMaimOnHitPct = 6499, - + LocalMaimOnHitPct = 6501, + /// /// main_hand_local_maim_on_hit_% /// - MainHandLocalMaimOnHitPct = 6500, - + MainHandLocalMaimOnHitPct = 6502, + /// /// off_hand_local_maim_on_hit_% /// - OffHandLocalMaimOnHitPct = 6501, - + OffHandLocalMaimOnHitPct = 6503, + /// /// life_leech_from_attack_damage_permyriad_vs_maimed_enemies /// - LifeLeechFromAttackDamagePermyriadVsMaimedEnemies = 6502, - + LifeLeechFromAttackDamagePermyriadVsMaimedEnemies = 6504, + /// /// local_display_grants_skill_death_aura_level /// - LocalDisplayGrantsSkillDeathAuraLevel = 6503, - + LocalDisplayGrantsSkillDeathAuraLevel = 6505, + /// /// chilled_ground_base_magnitude_override /// - ChilledGroundBaseMagnitudeOverride = 6504, - + ChilledGroundBaseMagnitudeOverride = 6506, + /// /// shocked_ground_base_magnitude_override /// - ShockedGroundBaseMagnitudeOverride = 6505, - + ShockedGroundBaseMagnitudeOverride = 6507, + /// /// harbinger_base_currency_shard_stack_tenths_to_drop /// - HarbingerBaseCurrencyShardStackTenthsToDrop = 6506, - + HarbingerBaseCurrencyShardStackTenthsToDrop = 6508, + /// /// charged_dash_damage_+% /// - ChargedDashDamagePct = 6507, - + ChargedDashDamagePct = 6509, + /// /// storm_burst_damage_+% /// - StormBurstDamagePct = 6508, - + StormBurstDamagePct = 6510, + /// /// skeletal_chains_damage_+% /// - SkeletalChainsDamagePct = 6509, - + SkeletalChainsDamagePct = 6511, + /// /// whirling_blades_base_ground_chaos_damage_to_deal_per_minute /// - WhirlingBladesBaseGroundChaosDamageToDealPerMinute = 6510, - + WhirlingBladesBaseGroundChaosDamageToDealPerMinute = 6512, + /// /// chill_and_freeze_duration_+% /// - ChillAndFreezeDurationPct = 6511, - + ChillAndFreezeDurationPct = 6513, + /// /// local_chance_to_bleed_on_hit_50% /// - LocalChanceToBleedOnHit50Pct = 6512, - + LocalChanceToBleedOnHit50Pct = 6514, + /// /// main_hand_local_chance_to_bleed_on_hit_50% /// - MainHandLocalChanceToBleedOnHit50Pct = 6513, - + MainHandLocalChanceToBleedOnHit50Pct = 6515, + /// /// off_hand_local_chance_to_bleed_on_hit_50% /// - OffHandLocalChanceToBleedOnHit50Pct = 6514, - + OffHandLocalChanceToBleedOnHit50Pct = 6516, + /// /// arrows_that_pierce_chance_to_bleed_25% /// - ArrowsThatPierceChanceToBleed25Pct = 6515, - + ArrowsThatPierceChanceToBleed25Pct = 6517, + /// /// attacks_chance_to_bleed_25%_vs_cursed_enemies /// - AttacksChanceToBleed25PctVsCursedEnemies = 6516, - + AttacksChanceToBleed25PctVsCursedEnemies = 6518, + /// /// damage_taken_+%_final /// - DamageTakenPctFinal = 6517, - + DamageTakenPctFinal = 6519, + /// /// display_one_harbinger_allowed /// - DisplayOneHarbingerAllowed = 6518, - + DisplayOneHarbingerAllowed = 6520, + /// /// action_speed_+%_minimum_value /// - ActionSpeedPctMinimumValue = 6519, - + ActionSpeedPctMinimumValue = 6521, + /// /// shavronne_ball_lightning_held_projectile_damage_+%_final /// - ShavronneBallLightningHeldProjectileDamagePctFinal = 6520, - + ShavronneBallLightningHeldProjectileDamagePctFinal = 6522, + /// /// grant_rampage_kill_to_parent_on_hitting_unique_enemy_% /// - GrantRampageKillToParentOnHittingUniqueEnemyPct = 6521, - + GrantRampageKillToParentOnHittingUniqueEnemyPct = 6523, + /// /// minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_% /// - MinionGrantsRampageKillToParentOnHittingUniqueEnemyPct = 6522, - + MinionGrantsRampageKillToParentOnHittingUniqueEnemyPct = 6524, + /// /// monster_inherent_experience_granted_+%_final_because_deleted_on_death /// - MonsterInherentExperienceGrantedPctFinalBecauseDeletedOnDeath = 6523, - + MonsterInherentExperienceGrantedPctFinalBecauseDeletedOnDeath = 6525, + /// /// monster_inherent_experience_granted_+%_final_if_deleted_on_death /// - MonsterInherentExperienceGrantedPctFinalIfDeletedOnDeath = 6524, - + MonsterInherentExperienceGrantedPctFinalIfDeletedOnDeath = 6526, + /// /// harbinger_minion_extra_monster_chance_% /// - HarbingerMinionExtraMonsterChancePct = 6525, - + HarbingerMinionExtraMonsterChancePct = 6527, + /// /// harbinger_minion_max_extra_monsters_count /// - HarbingerMinionMaxExtraMonstersCount = 6526, - + HarbingerMinionMaxExtraMonstersCount = 6528, + /// /// harbinger_minion_damage_taken_+%_final /// - HarbingerMinionDamageTakenPctFinal = 6527, - + HarbingerMinionDamageTakenPctFinal = 6529, + /// /// virtual_total_main_hand_chance_to_bleed_on_hit_% /// - VirtualTotalMainHandChanceToBleedOnHitPct = 6528, - + VirtualTotalMainHandChanceToBleedOnHitPct = 6530, + /// /// virtual_total_off_hand_chance_to_bleed_on_hit_% /// - VirtualTotalOffHandChanceToBleedOnHitPct = 6529, - + VirtualTotalOffHandChanceToBleedOnHitPct = 6531, + /// /// virtual_total_main_hand_chance_to_ignite_on_hit_% /// - VirtualTotalMainHandChanceToIgniteOnHitPct = 6530, - + VirtualTotalMainHandChanceToIgniteOnHitPct = 6532, + /// /// virtual_total_off_hand_chance_to_ignite_on_hit_% /// - VirtualTotalOffHandChanceToIgniteOnHitPct = 6531, - + VirtualTotalOffHandChanceToIgniteOnHitPct = 6533, + /// /// virtual_total_spell_chance_to_ignite_on_hit_% /// - VirtualTotalSpellChanceToIgniteOnHitPct = 6532, - + VirtualTotalSpellChanceToIgniteOnHitPct = 6534, + /// /// virtual_total_secondary_chance_to_ignite_on_hit_% /// - VirtualTotalSecondaryChanceToIgniteOnHitPct = 6533, - + VirtualTotalSecondaryChanceToIgniteOnHitPct = 6535, + /// /// virtual_total_main_hand_chance_to_poison_on_hit_% /// - VirtualTotalMainHandChanceToPoisonOnHitPct = 6534, - + VirtualTotalMainHandChanceToPoisonOnHitPct = 6536, + /// /// virtual_total_off_hand_chance_to_poison_on_hit_% /// - VirtualTotalOffHandChanceToPoisonOnHitPct = 6535, - + VirtualTotalOffHandChanceToPoisonOnHitPct = 6537, + /// /// virtual_total_spell_chance_to_poison_on_hit_% /// - VirtualTotalSpellChanceToPoisonOnHitPct = 6536, - + VirtualTotalSpellChanceToPoisonOnHitPct = 6538, + /// /// virtual_total_secondary_chance_to_poison_on_hit_% /// - VirtualTotalSecondaryChanceToPoisonOnHitPct = 6537, - + VirtualTotalSecondaryChanceToPoisonOnHitPct = 6539, + /// /// total_number_of_map_mods /// - TotalNumberOfMapMods = 6538, - + TotalNumberOfMapMods = 6540, + /// /// harbinger_currency_shard_stack_size_+% /// - HarbingerCurrencyShardStackSizePct = 6539, - + HarbingerCurrencyShardStackSizePct = 6541, + /// /// map_force_monster_pack_index /// - MapForceMonsterPackIndex = 6540, - + MapForceMonsterPackIndex = 6542, + /// /// volatile_dead_base_number_of_corpses_to_consume /// - VolatileDeadBaseNumberOfCorpsesToConsume = 6541, - + VolatileDeadBaseNumberOfCorpsesToConsume = 6543, + /// /// chance_to_cast_when_your_trap_is_triggered_% /// - ChanceToCastWhenYourTrapIsTriggeredPct = 6542, - + ChanceToCastWhenYourTrapIsTriggeredPct = 6544, + /// /// local_display_gain_power_charge_on_spending_mana /// - LocalDisplayGainPowerChargeOnSpendingMana = 6543, - + LocalDisplayGainPowerChargeOnSpendingMana = 6545, + /// /// is_untethered_pet /// - IsUntetheredPet = 6544, - + IsUntetheredPet = 6546, + /// /// walk_emerge_distance /// - WalkEmergeDistance = 6545, - + WalkEmergeDistance = 6547, + /// /// walk_emerge_extra_distance /// - WalkEmergeExtraDistance = 6546, - + WalkEmergeExtraDistance = 6548, + /// /// walk_emerge_height_offset /// - WalkEmergeHeightOffset = 6547, - + WalkEmergeHeightOffset = 6549, + /// /// walk_emerge_tilt /// - WalkEmergeTilt = 6548, - + WalkEmergeTilt = 6550, + /// /// combined_armour_and_evasion_rating_+% /// - CombinedArmourAndEvasionRatingPct = 6549, - + CombinedArmourAndEvasionRatingPct = 6551, + /// /// herald_of_ash_burning_%_overkill_damage_per_minute /// - HeraldOfAshBurningPctOverkillDamagePerMinute = 6550, - + HeraldOfAshBurningPctOverkillDamagePerMinute = 6552, + /// /// local_display_grants_skill_scorching_ray_level /// - LocalDisplayGrantsSkillScorchingRayLevel = 6551, - + LocalDisplayGrantsSkillScorchingRayLevel = 6553, + /// /// support_minion_maximum_life_+%_final /// - SupportMinionMaximumLifePctFinal = 6552, - + SupportMinionMaximumLifePctFinal = 6554, + /// /// max_life_+%_final_for_minion_from_support /// - MaxLifePctFinalForMinionFromSupport = 6553, - + MaxLifePctFinalForMinionFromSupport = 6555, + /// /// lightning_tendrils_channelled_larger_pulse_radius_+ /// - LightningTendrilsChannelledLargerPulseRadius = 6554, - + LightningTendrilsChannelledLargerPulseRadius = 6556, + /// /// lightning_tendrils_channelled_larger_pulse_damage_+%_final /// - LightningTendrilsChannelledLargerPulseDamagePctFinal = 6555, - + LightningTendrilsChannelledLargerPulseDamagePctFinal = 6557, + /// /// discorectangle_slam_damage_with_endurance_charge_+%_final /// - DiscorectangleSlamDamageWithEnduranceChargePctFinal = 6556, - + DiscorectangleSlamDamageWithEnduranceChargePctFinal = 6558, + /// /// discorectangle_slam_radius_with_endurance_charge_+ /// - DiscorectangleSlamRadiusWithEnduranceCharge = 6557, - + DiscorectangleSlamRadiusWithEnduranceCharge = 6559, + /// /// unearth_base_corpse_level /// - UnearthBaseCorpseLevel = 6558, - + UnearthBaseCorpseLevel = 6560, + /// /// map_tencent_event_shards_drop_rate /// - MapTencentEventShardsDropRate = 6559, - + MapTencentEventShardsDropRate = 6561, + /// /// map_tencent_event_coins_drop_rate /// - MapTencentEventCoinsDropRate = 6560, - + MapTencentEventCoinsDropRate = 6562, + /// /// is_in_caustic_cloud /// - IsInCausticCloud = 6561, - + IsInCausticCloud = 6563, + /// /// chaos_damage_taken_over_time_+%_while_in_caustic_cloud /// - ChaosDamageTakenOverTimePctWhileInCausticCloud = 6562, - + ChaosDamageTakenOverTimePctWhileInCausticCloud = 6564, + /// /// local_can_socket_gems_ignoring_colour /// - LocalCanSocketGemsIgnoringColour = 6563, - + LocalCanSocketGemsIgnoringColour = 6565, + /// /// local_no_attribute_requirements /// - LocalNoAttributeRequirements = 6564, - + LocalNoAttributeRequirements = 6566, + /// /// local_socketed_gems_in_red_sockets_get_level_+ /// - LocalSocketedGemsInRedSocketsGetLevel = 6565, - + LocalSocketedGemsInRedSocketsGetLevel = 6567, + /// /// local_socketed_gems_in_green_sockets_get_quality_% /// - LocalSocketedGemsInGreenSocketsGetQualityPct = 6566, - + LocalSocketedGemsInGreenSocketsGetQualityPct = 6568, + /// /// local_socketed_gems_in_blue_sockets_experience_gained_+% /// - LocalSocketedGemsInBlueSocketsExperienceGainedPct = 6567, - + LocalSocketedGemsInBlueSocketsExperienceGainedPct = 6569, + /// /// local_socketed_gems_in_white_sockets_get_nothing /// - LocalSocketedGemsInWhiteSocketsGetNothing = 6568, - + LocalSocketedGemsInWhiteSocketsGetNothing = 6570, + /// /// corpse_erruption_base_maximum_number_of_geyers /// - CorpseErruptionBaseMaximumNumberOfGeyers = 6569, - + CorpseErruptionBaseMaximumNumberOfGeyers = 6571, + /// /// thaumaturgy_rotation_active /// - ThaumaturgyRotationActive = 6570, - + ThaumaturgyRotationActive = 6572, + /// /// thaumaturgy_rotation_buff_exists /// - ThaumaturgyRotationBuffExists = 6571, - + ThaumaturgyRotationBuffExists = 6573, + /// /// trigger_on_delayed_blast /// - TriggerOnDelayedBlast = 6572, - + TriggerOnDelayedBlast = 6574, + /// /// trigger_on_delayed_blast_% /// - TriggerOnDelayedBlastPct = 6573, - + TriggerOnDelayedBlastPct = 6575, + /// /// delayed_blast_has_trigger /// - DelayedBlastHasTrigger = 6574, - + DelayedBlastHasTrigger = 6576, + /// /// spirit_charge_tier /// - SpiritChargeTier = 6575, - + SpiritChargeTier = 6577, + /// /// current_spirit_charges /// - CurrentSpiritCharges = 6576, - + CurrentSpiritCharges = 6578, + /// /// maximum_spirit_charges /// - MaximumSpiritCharges = 6577, - + MaximumSpiritCharges = 6579, + /// /// recover_%_of_maximum_life_on_gaining_a_spirit_charge /// - RecoverPctOfMaximumLifeOnGainingASpiritCharge = 6578, - + RecoverPctOfMaximumLifeOnGainingASpiritCharge = 6580, + /// /// corpse_skill_has_triggers /// - CorpseSkillHasTriggers = 6579, - + CorpseSkillHasTriggers = 6581, + /// /// cast_on_corpse_consume /// - CastOnCorpseConsume = 6580, - + CastOnCorpseConsume = 6582, + /// /// cast_on_corpse_consume_% /// - CastOnCorpseConsumePct = 6581, - + CastOnCorpseConsumePct = 6583, + /// /// cast_on_damage_taken_also_tracks_dot /// - CastOnDamageTakenAlsoTracksDot = 6582, - + CastOnDamageTakenAlsoTracksDot = 6584, + /// /// thrown_shield_projectile_max_distance /// - ThrownShieldProjectileMaxDistance = 6583, - + ThrownShieldProjectileMaxDistance = 6585, + /// /// thrown_shield_projectile_fire_random_directions /// - ThrownShieldProjectileFireRandomDirections = 6584, - + ThrownShieldProjectileFireRandomDirections = 6586, + /// /// thrown_shield_secondary_projectile_damage_+%_final /// - ThrownShieldSecondaryProjectileDamagePctFinal = 6585, - + ThrownShieldSecondaryProjectileDamagePctFinal = 6587, + /// /// cast_on_corpse_consume_id /// - CastOnCorpseConsumeId = 6586, - + CastOnCorpseConsumeId = 6588, + /// /// gain_random_charge_per_second_while_stationary /// - GainRandomChargePerSecondWhileStationary = 6587, - + GainRandomChargePerSecondWhileStationary = 6589, + /// /// lose_all_charges_on_starting_movement /// - LoseAllChargesOnStartingMovement = 6588, - + LoseAllChargesOnStartingMovement = 6590, + /// /// mana_regeneration_rate_per_minute_per_power_charge /// - ManaRegenerationRatePerMinutePerPowerCharge = 6589, - + ManaRegenerationRatePerMinutePerPowerCharge = 6591, + /// /// spectre_maximum_life_+ /// - SpectreMaximumLife = 6590, - + SpectreMaximumLife = 6592, + /// /// accuracy_rating_while_at_maximum_frenzy_charges /// - AccuracyRatingWhileAtMaximumFrenzyCharges = 6591, - + AccuracyRatingWhileAtMaximumFrenzyCharges = 6593, + /// /// display_map_inhabited_by_solaris_fanatics /// - DisplayMapInhabitedBySolarisFanatics = 6592, - + DisplayMapInhabitedBySolarisFanatics = 6594, + /// /// display_map_inhabited_by_lunaris_fanatics /// - DisplayMapInhabitedByLunarisFanatics = 6593, - + DisplayMapInhabitedByLunarisFanatics = 6595, + /// /// map_elder_boss_variation /// - MapElderBossVariation = 6594, - + MapElderBossVariation = 6596, + /// /// ignite_triggered_ground_fire_base_damage_per_minute /// - IgniteTriggeredGroundFireBaseDamagePerMinute = 6595, - + IgniteTriggeredGroundFireBaseDamagePerMinute = 6597, + /// /// virtual_shock_effect_+% /// - VirtualShockEffectPct = 6596, - + VirtualShockEffectPct = 6598, + /// /// virtual_chill_effect_+% /// - VirtualChillEffectPct = 6597, - + VirtualChillEffectPct = 6599, + /// /// local_unique_jewel_non_keystone_passive_in_radius_effect_+% /// - LocalUniqueJewelNonKeystonePassiveInRadiusEffectPct = 6598, - + LocalUniqueJewelNonKeystonePassiveInRadiusEffectPct = 6600, + /// /// local_unique_jewel_notable_passive_in_radius_does_nothing /// - LocalUniqueJewelNotablePassiveInRadiusDoesNothing = 6599, - + LocalUniqueJewelNotablePassiveInRadiusDoesNothing = 6601, + /// /// passive_skill_does_nothing /// - PassiveSkillDoesNothing = 6600, - + PassiveSkillDoesNothing = 6602, + /// /// local_unique_hungry_loop_number_of_gems_to_consume /// - LocalUniqueHungryLoopNumberOfGemsToConsume = 6601, - + LocalUniqueHungryLoopNumberOfGemsToConsume = 6603, + /// /// local_unique_hungry_loop_has_consumed_gem /// - LocalUniqueHungryLoopHasConsumedGem = 6602, - + LocalUniqueHungryLoopHasConsumedGem = 6604, + /// /// local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterMultipleProjectiles = 6603, - + LocalDisplaySocketedGemsSupportedByLevelXGreaterMultipleProjectiles = 6605, + /// /// local_display_socketed_gems_supported_by_level_x_increased_critical_strikes /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedCriticalStrikes = 6604, - + LocalDisplaySocketedGemsSupportedByLevelXIncreasedCriticalStrikes = 6606, + /// /// local_display_socketed_gems_supported_by_level_x_item_quantity /// - LocalDisplaySocketedGemsSupportedByLevelXItemQuantity = 6605, - + LocalDisplaySocketedGemsSupportedByLevelXItemQuantity = 6607, + /// /// local_display_socketed_gems_supported_by_level_x_item_rarity /// - LocalDisplaySocketedGemsSupportedByLevelXItemRarity = 6606, - + LocalDisplaySocketedGemsSupportedByLevelXItemRarity = 6608, + /// /// local_display_socketed_gems_supported_by_level_x_increased_duration /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedDuration = 6607, - + LocalDisplaySocketedGemsSupportedByLevelXIncreasedDuration = 6609, + /// /// local_display_socketed_gems_supported_by_level_x_chance_to_ignite /// - LocalDisplaySocketedGemsSupportedByLevelXChanceToIgnite = 6608, - + LocalDisplaySocketedGemsSupportedByLevelXChanceToIgnite = 6610, + /// /// local_display_socketed_gems_supported_by_level_x_bloodlust /// - LocalDisplaySocketedGemsSupportedByLevelXBloodlust = 6609, - + LocalDisplaySocketedGemsSupportedByLevelXBloodlust = 6611, + /// /// local_display_socketed_gems_supported_by_level_x_life_gain_on_hit /// - LocalDisplaySocketedGemsSupportedByLevelXLifeGainOnHit = 6610, - + LocalDisplaySocketedGemsSupportedByLevelXLifeGainOnHit = 6612, + /// /// local_display_socketed_gems_supported_by_level_x_culling_strike /// - LocalDisplaySocketedGemsSupportedByLevelXCullingStrike = 6611, - + LocalDisplaySocketedGemsSupportedByLevelXCullingStrike = 6613, + /// /// local_display_socketed_gems_supported_by_level_x_point_blank /// - LocalDisplaySocketedGemsSupportedByLevelXPointBlank = 6612, - + LocalDisplaySocketedGemsSupportedByLevelXPointBlank = 6614, + /// /// local_display_socketed_gems_supported_by_level_x_iron_grip /// - LocalDisplaySocketedGemsSupportedByLevelXIronGrip = 6613, - + LocalDisplaySocketedGemsSupportedByLevelXIronGrip = 6615, + /// /// local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life /// - LocalDisplaySocketedGemsSupportedByLevelXMeleeDamageOnFullLife = 6614, - + LocalDisplaySocketedGemsSupportedByLevelXMeleeDamageOnFullLife = 6616, + /// /// local_display_socketed_gems_supported_by_level_x_ranged_attack_totem /// - LocalDisplaySocketedGemsSupportedByLevelXRangedAttackTotem = 6615, - + LocalDisplaySocketedGemsSupportedByLevelXRangedAttackTotem = 6617, + /// /// local_display_socketed_gems_supported_by_level_x_fire_penetration /// - LocalDisplaySocketedGemsSupportedByLevelXFirePenetration = 6616, - + LocalDisplaySocketedGemsSupportedByLevelXFirePenetration = 6618, + /// /// local_display_socketed_gems_supported_by_level_x_lightning_penetration /// - LocalDisplaySocketedGemsSupportedByLevelXLightningPenetration = 6617, - + LocalDisplaySocketedGemsSupportedByLevelXLightningPenetration = 6619, + /// /// local_display_socketed_gems_supported_by_level_x_chain /// - LocalDisplaySocketedGemsSupportedByLevelXChain = 6618, - + LocalDisplaySocketedGemsSupportedByLevelXChain = 6620, + /// /// local_display_socketed_gems_supported_by_level_x_multicast /// - LocalDisplaySocketedGemsSupportedByLevelXMulticast = 6619, - + LocalDisplaySocketedGemsSupportedByLevelXMulticast = 6621, + /// /// local_display_socketed_gems_supported_by_level_x_power_charge_on_crit /// - LocalDisplaySocketedGemsSupportedByLevelXPowerChargeOnCrit = 6620, - + LocalDisplaySocketedGemsSupportedByLevelXPowerChargeOnCrit = 6622, + /// /// local_display_socketed_gems_supported_by_level_x_increased_burning_damage /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedBurningDamage = 6621, - + LocalDisplaySocketedGemsSupportedByLevelXIncreasedBurningDamage = 6623, + /// /// local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance /// - LocalDisplaySocketedGemsSupportedByLevelXSummonElementalResistance = 6622, - + LocalDisplaySocketedGemsSupportedByLevelXSummonElementalResistance = 6624, + /// /// local_display_socketed_gems_supported_by_level_x_curse_on_hit /// - LocalDisplaySocketedGemsSupportedByLevelXCurseOnHit = 6623, - + LocalDisplaySocketedGemsSupportedByLevelXCurseOnHit = 6625, + /// /// local_display_socketed_gems_supported_by_level_x_cast_on_kill /// - LocalDisplaySocketedGemsSupportedByLevelXCastOnKill = 6624, - + LocalDisplaySocketedGemsSupportedByLevelXCastOnKill = 6626, + /// /// local_display_socketed_gems_supported_by_level_x_multi_trap /// - LocalDisplaySocketedGemsSupportedByLevelXMultiTrap = 6625, - + LocalDisplaySocketedGemsSupportedByLevelXMultiTrap = 6627, + /// /// local_display_socketed_gems_supported_by_level_x_empower /// - LocalDisplaySocketedGemsSupportedByLevelXEmpower = 6626, - + LocalDisplaySocketedGemsSupportedByLevelXEmpower = 6628, + /// /// local_display_socketed_gems_supported_by_level_x_slower_projectiles /// - LocalDisplaySocketedGemsSupportedByLevelXSlowerProjectiles = 6627, - + LocalDisplaySocketedGemsSupportedByLevelXSlowerProjectiles = 6629, + /// /// local_display_socketed_gems_supported_by_level_x_reduced_duration /// - LocalDisplaySocketedGemsSupportedByLevelXReducedDuration = 6628, - + LocalDisplaySocketedGemsSupportedByLevelXReducedDuration = 6630, + /// /// local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken /// - LocalDisplaySocketedGemsSupportedByLevelXCastOnDamageTaken = 6629, - + LocalDisplaySocketedGemsSupportedByLevelXCastOnDamageTaken = 6631, + /// /// local_display_socketed_gems_supported_by_level_x_enhance /// - LocalDisplaySocketedGemsSupportedByLevelXEnhance = 6630, - + LocalDisplaySocketedGemsSupportedByLevelXEnhance = 6632, + /// /// local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage /// - LocalDisplaySocketedGemsSupportedByLevelXPhysicalProjectileAttackDamage = 6631, - + LocalDisplaySocketedGemsSupportedByLevelXPhysicalProjectileAttackDamage = 6633, + /// /// local_display_socketed_gems_supported_by_level_x_enlighten /// - LocalDisplaySocketedGemsSupportedByLevelXEnlighten = 6632, - + LocalDisplaySocketedGemsSupportedByLevelXEnlighten = 6634, + /// /// local_display_socketed_gems_supported_by_level_x_physical_to_lightning /// - LocalDisplaySocketedGemsSupportedByLevelXPhysicalToLightning = 6633, - + LocalDisplaySocketedGemsSupportedByLevelXPhysicalToLightning = 6635, + /// /// local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage /// - LocalDisplaySocketedGemsSupportedByLevelXTrapAndMineDamage = 6634, - + LocalDisplaySocketedGemsSupportedByLevelXTrapAndMineDamage = 6636, + /// /// local_display_socketed_gems_supported_by_level_x_poison /// - LocalDisplaySocketedGemsSupportedByLevelXPoison = 6635, - + LocalDisplaySocketedGemsSupportedByLevelXPoison = 6637, + /// /// local_display_socketed_gems_supported_by_level_x_void_manipulation /// - LocalDisplaySocketedGemsSupportedByLevelXVoidManipulation = 6636, - + LocalDisplaySocketedGemsSupportedByLevelXVoidManipulation = 6638, + /// /// local_display_socketed_gems_supported_by_level_x_rapid_decay /// - LocalDisplaySocketedGemsSupportedByLevelXRapidDecay = 6637, - + LocalDisplaySocketedGemsSupportedByLevelXRapidDecay = 6639, + /// /// local_display_socketed_gems_supported_by_level_x_cluster_trap /// - LocalDisplaySocketedGemsSupportedByLevelXClusterTrap = 6638, - + LocalDisplaySocketedGemsSupportedByLevelXClusterTrap = 6640, + /// /// local_display_socketed_gems_supported_by_level_x_elemental_focus /// - LocalDisplaySocketedGemsSupportedByLevelXElementalFocus = 6639, - + LocalDisplaySocketedGemsSupportedByLevelXElementalFocus = 6641, + /// /// local_display_socketed_gems_supported_by_level_x_minefield /// - LocalDisplaySocketedGemsSupportedByLevelXMinefield = 6640, - + LocalDisplaySocketedGemsSupportedByLevelXMinefield = 6642, + /// /// local_display_socketed_gems_supported_by_level_x_trap_cooldown /// - LocalDisplaySocketedGemsSupportedByLevelXTrapCooldown = 6641, - + LocalDisplaySocketedGemsSupportedByLevelXTrapCooldown = 6643, + /// /// local_display_socketed_gems_supported_by_level_x_cast_while_channelling /// - LocalDisplaySocketedGemsSupportedByLevelXCastWhileChannelling = 6642, - + LocalDisplaySocketedGemsSupportedByLevelXCastWhileChannelling = 6644, + /// /// local_display_socketed_gems_supported_by_level_x_ignite_proliferation /// - LocalDisplaySocketedGemsSupportedByLevelXIgniteProliferation = 6643, - + LocalDisplaySocketedGemsSupportedByLevelXIgniteProliferation = 6645, + /// /// local_display_socketed_gems_supported_by_level_x_chance_to_bleed /// - LocalDisplaySocketedGemsSupportedByLevelXChanceToBleed = 6644, - + LocalDisplaySocketedGemsSupportedByLevelXChanceToBleed = 6646, + /// /// local_display_socketed_gems_supported_by_level_x_deadly_ailments /// - LocalDisplaySocketedGemsSupportedByLevelXDeadlyAilments = 6645, - + LocalDisplaySocketedGemsSupportedByLevelXDeadlyAilments = 6647, + /// /// local_display_socketed_gems_supported_by_level_x_decay /// - LocalDisplaySocketedGemsSupportedByLevelXDecay = 6646, - + LocalDisplaySocketedGemsSupportedByLevelXDecay = 6648, + /// /// local_display_socketed_gems_supported_by_level_x_efficacy /// - LocalDisplaySocketedGemsSupportedByLevelXEfficacy = 6647, - + LocalDisplaySocketedGemsSupportedByLevelXEfficacy = 6649, + /// /// local_display_socketed_gems_supported_by_level_x_maim /// - LocalDisplaySocketedGemsSupportedByLevelXMaim = 6648, - + LocalDisplaySocketedGemsSupportedByLevelXMaim = 6650, + /// /// local_display_socketed_gems_supported_by_level_x_immolate /// - LocalDisplaySocketedGemsSupportedByLevelXImmolate = 6649, - + LocalDisplaySocketedGemsSupportedByLevelXImmolate = 6651, + /// /// local_display_socketed_gems_supported_by_level_x_unbound_ailments /// - LocalDisplaySocketedGemsSupportedByLevelXUnboundAilments = 6650, - + LocalDisplaySocketedGemsSupportedByLevelXUnboundAilments = 6652, + /// /// local_display_socketed_gems_supported_by_level_x_brutality /// - LocalDisplaySocketedGemsSupportedByLevelXBrutality = 6651, - + LocalDisplaySocketedGemsSupportedByLevelXBrutality = 6653, + /// /// local_display_socketed_gems_supported_by_level_x_ruthless /// - LocalDisplaySocketedGemsSupportedByLevelXRuthless = 6652, - + LocalDisplaySocketedGemsSupportedByLevelXRuthless = 6654, + /// /// local_display_socketed_gems_supported_by_level_x_onslaught /// - LocalDisplaySocketedGemsSupportedByLevelXOnslaught = 6653, - + LocalDisplaySocketedGemsSupportedByLevelXOnslaught = 6655, + /// /// local_display_socketed_gems_supported_by_level_x_arcane_surge /// - LocalDisplaySocketedGemsSupportedByLevelXArcaneSurge = 6654, - + LocalDisplaySocketedGemsSupportedByLevelXArcaneSurge = 6656, + /// /// local_display_socketed_gems_supported_by_level_x_reduced_block_chance /// - LocalDisplaySocketedGemsSupportedByLevelXReducedBlockChance = 6655, - + LocalDisplaySocketedGemsSupportedByLevelXReducedBlockChance = 6657, + /// /// local_display_socketed_gems_supported_by_level_x_bonechill /// - LocalDisplaySocketedGemsSupportedByLevelXBonechill = 6656, - + LocalDisplaySocketedGemsSupportedByLevelXBonechill = 6658, + /// /// local_display_socketed_gems_supported_by_level_x_multi_totem /// - LocalDisplaySocketedGemsSupportedByLevelXMultiTotem = 6657, - + LocalDisplaySocketedGemsSupportedByLevelXMultiTotem = 6659, + + /// + /// local_display_socketed_gems_supported_by_level_x_barrage + /// + LocalDisplaySocketedGemsSupportedByLevelXBarrage = 6660, + + /// + /// local_display_socketed_gems_supported_by_level_x_rain + /// + LocalDisplaySocketedGemsSupportedByLevelXRain = 6661, + /// /// spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_% /// - SpectralThrowGainVaalSoulForVaalSpectralThrowOnHitPct = 6658, - + SpectralThrowGainVaalSoulForVaalSpectralThrowOnHitPct = 6662, + /// /// local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius /// - LocalUniqueJewelSpectralThrowGainVaalSoulForVaalStOnHitPctWith40DexInRadius = 6659, - + LocalUniqueJewelSpectralThrowGainVaalSoulForVaalStOnHitPctWith40DexInRadius = 6663, + /// /// trigger_socketed_spell_on_attack_% /// - TriggerSocketedSpellOnAttackPct = 6660, - + TriggerSocketedSpellOnAttackPct = 6664, + /// /// main_hand_trigger_socketed_spell_on_attack_% /// - MainHandTriggerSocketedSpellOnAttackPct = 6661, - + MainHandTriggerSocketedSpellOnAttackPct = 6665, + /// /// off_hand_trigger_socketed_spell_on_attack_% /// - OffHandTriggerSocketedSpellOnAttackPct = 6662, - + OffHandTriggerSocketedSpellOnAttackPct = 6666, + /// /// local_attack_minimum_added_physical_damage_per_3_levels /// - LocalAttackMinimumAddedPhysicalDamagePer3Levels = 6663, - + LocalAttackMinimumAddedPhysicalDamagePer3Levels = 6667, + /// /// local_attack_maximum_added_physical_damage_per_3_levels /// - LocalAttackMaximumAddedPhysicalDamagePer3Levels = 6664, - + LocalAttackMaximumAddedPhysicalDamagePer3Levels = 6668, + /// /// main_hand_attack_minimum_added_physical_damage_per_3_levels /// - MainHandAttackMinimumAddedPhysicalDamagePer3Levels = 6665, - + MainHandAttackMinimumAddedPhysicalDamagePer3Levels = 6669, + /// /// main_hand_attack_maximum_added_physical_damage_per_3_levels /// - MainHandAttackMaximumAddedPhysicalDamagePer3Levels = 6666, - + MainHandAttackMaximumAddedPhysicalDamagePer3Levels = 6670, + /// /// off_hand_attack_minimum_added_physical_damage_per_3_levels /// - OffHandAttackMinimumAddedPhysicalDamagePer3Levels = 6667, - + OffHandAttackMinimumAddedPhysicalDamagePer3Levels = 6671, + /// /// off_hand_attack_maximum_added_physical_damage_per_3_levels /// - OffHandAttackMaximumAddedPhysicalDamagePer3Levels = 6668, - + OffHandAttackMaximumAddedPhysicalDamagePer3Levels = 6672, + /// /// local_poison_duration_+%_during_flask_effect /// - LocalPoisonDurationPctDuringFlaskEffect = 6669, - + LocalPoisonDurationPctDuringFlaskEffect = 6673, + /// /// local_grant_perfect_agony_during_flask_effect /// - LocalGrantPerfectAgonyDuringFlaskEffect = 6670, - + LocalGrantPerfectAgonyDuringFlaskEffect = 6674, + /// /// local_chance_to_poison_on_hit_%_during_flask_effect /// - LocalChanceToPoisonOnHitPctDuringFlaskEffect = 6671, - + LocalChanceToPoisonOnHitPctDuringFlaskEffect = 6675, + /// /// local_no_critical_strike_multiplier_during_flask_effect /// - LocalNoCriticalStrikeMultiplierDuringFlaskEffect = 6672, - + LocalNoCriticalStrikeMultiplierDuringFlaskEffect = 6676, + /// /// local_socketed_skill_gem_level_+1_per_x_player_levels /// - LocalSocketedSkillGemLevel1PerXPlayerLevels = 6673, - + LocalSocketedSkillGemLevel1PerXPlayerLevels = 6677, + /// /// map_spawn_abysses /// - MapSpawnAbysses = 6674, - + MapSpawnAbysses = 6678, + /// /// map_num_extra_abysses /// - MapNumExtraAbysses = 6675, - + MapNumExtraAbysses = 6679, + /// /// lightning_tendrils_channelled_larger_pulse_interval /// - LightningTendrilsChannelledLargerPulseInterval = 6676, - + LightningTendrilsChannelledLargerPulseInterval = 6680, + /// /// local_has_X_abyss_sockets /// - LocalHasXAbyssSockets = 6677, - + LocalHasXAbyssSockets = 6681, + /// /// melee_skills_area_of_effect_+% /// - MeleeSkillsAreaOfEffectPct = 6678, - + MeleeSkillsAreaOfEffectPct = 6682, + /// /// skill_is_melee_skill /// - SkillIsMeleeSkill = 6679, - + SkillIsMeleeSkill = 6683, + /// /// local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start /// - LocalUniqueJewelMeleeSkillsAreaOfEffectPctWithPassiveTreeConnectedToMarauderStart = 6680, - + LocalUniqueJewelMeleeSkillsAreaOfEffectPctWithPassiveTreeConnectedToMarauderStart = 6684, + /// /// local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start /// - LocalUniqueJewelLifeLeechFromAttackDamagePermyriadWithPassiveTreeConnectedToDuelistStart = 6681, - + LocalUniqueJewelLifeLeechFromAttackDamagePermyriadWithPassiveTreeConnectedToDuelistStart = 6685, + /// /// local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start /// - LocalUniqueJewelMovementSpeedPctWithPassiveTreeConnectedToRangerStart = 6682, - + LocalUniqueJewelMovementSpeedPctWithPassiveTreeConnectedToRangerStart = 6686, + /// /// local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start /// - LocalUniqueJewelAdditionalCriticalStrikeChancePermyriadWithPassiveTreeConnectedToShadowStart = 6683, - + LocalUniqueJewelAdditionalCriticalStrikeChancePermyriadWithPassiveTreeConnectedToShadowStart = 6687, + /// /// local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start /// - LocalUniqueJewelManaRegenerationRatePerMinutePctWithPassiveTreeConnectedToWitchStart = 6684, - + LocalUniqueJewelManaRegenerationRatePerMinutePctWithPassiveTreeConnectedToWitchStart = 6688, + /// /// local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start /// - LocalUniqueJewelElementalPenetrationPctWithPassiveTreeConnectedToTemplarStart = 6685, - + LocalUniqueJewelElementalPenetrationPctWithPassiveTreeConnectedToTemplarStart = 6689, + /// /// local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start /// - LocalUniqueJewelAdditionalAllAttributesWithPassiveTreeConnectedToScionStart = 6686, - + LocalUniqueJewelAdditionalAllAttributesWithPassiveTreeConnectedToScionStart = 6690, + /// /// local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius /// - LocalUniqueJewelGlacialCascadePhysicalDamagePctToConvertToColdWith40IntInRadius = 6687, - + LocalUniqueJewelGlacialCascadePhysicalDamagePctToConvertToColdWith40IntInRadius = 6691, + /// /// attack_critical_strike_chance_+%_per_200_accuracy_rating /// - AttackCriticalStrikeChancePctPer200AccuracyRating = 6688, - + AttackCriticalStrikeChancePctPer200AccuracyRating = 6692, + /// /// attack_minimum_added_physical_damage_with_wands /// - AttackMinimumAddedPhysicalDamageWithWands = 6689, - + AttackMinimumAddedPhysicalDamageWithWands = 6693, + /// /// attack_maximum_added_physical_damage_with_wands /// - AttackMaximumAddedPhysicalDamageWithWands = 6690, - + AttackMaximumAddedPhysicalDamageWithWands = 6694, + /// /// attack_minimum_added_physical_damage_with_daggers /// - AttackMinimumAddedPhysicalDamageWithDaggers = 6691, - + AttackMinimumAddedPhysicalDamageWithDaggers = 6695, + /// /// attack_maximum_added_physical_damage_with_daggers /// - AttackMaximumAddedPhysicalDamageWithDaggers = 6692, - + AttackMaximumAddedPhysicalDamageWithDaggers = 6696, + /// /// attack_minimum_added_physical_damage_with_claws /// - AttackMinimumAddedPhysicalDamageWithClaws = 6693, - + AttackMinimumAddedPhysicalDamageWithClaws = 6697, + /// /// attack_maximum_added_physical_damage_with_claws /// - AttackMaximumAddedPhysicalDamageWithClaws = 6694, - + AttackMaximumAddedPhysicalDamageWithClaws = 6698, + /// /// attack_minimum_added_physical_damage_with_swords /// - AttackMinimumAddedPhysicalDamageWithSwords = 6695, - + AttackMinimumAddedPhysicalDamageWithSwords = 6699, + /// /// attack_maximum_added_physical_damage_with_swords /// - AttackMaximumAddedPhysicalDamageWithSwords = 6696, - + AttackMaximumAddedPhysicalDamageWithSwords = 6700, + /// /// attack_minimum_added_physical_damage_with_axes /// - AttackMinimumAddedPhysicalDamageWithAxes = 6697, - + AttackMinimumAddedPhysicalDamageWithAxes = 6701, + /// /// attack_maximum_added_physical_damage_with_axes /// - AttackMaximumAddedPhysicalDamageWithAxes = 6698, - + AttackMaximumAddedPhysicalDamageWithAxes = 6702, + /// /// attack_minimum_added_physical_damage_with_maces /// - AttackMinimumAddedPhysicalDamageWithMaces = 6699, - + AttackMinimumAddedPhysicalDamageWithMaces = 6703, + /// /// attack_maximum_added_physical_damage_with_maces /// - AttackMaximumAddedPhysicalDamageWithMaces = 6700, - + AttackMaximumAddedPhysicalDamageWithMaces = 6704, + /// /// attack_minimum_added_physical_damage_with_staves /// - AttackMinimumAddedPhysicalDamageWithStaves = 6701, - + AttackMinimumAddedPhysicalDamageWithStaves = 6705, + /// /// attack_maximum_added_physical_damage_with_staves /// - AttackMaximumAddedPhysicalDamageWithStaves = 6702, - + AttackMaximumAddedPhysicalDamageWithStaves = 6706, + /// /// attack_minimum_added_lightning_damage_with_daggers /// - AttackMinimumAddedLightningDamageWithDaggers = 6703, - + AttackMinimumAddedLightningDamageWithDaggers = 6707, + /// /// attack_maximum_added_lightning_damage_with_daggers /// - AttackMaximumAddedLightningDamageWithDaggers = 6704, - + AttackMaximumAddedLightningDamageWithDaggers = 6708, + /// /// attack_minimum_added_lightning_damage_with_claws /// - AttackMinimumAddedLightningDamageWithClaws = 6705, - + AttackMinimumAddedLightningDamageWithClaws = 6709, + /// /// attack_maximum_added_lightning_damage_with_claws /// - AttackMaximumAddedLightningDamageWithClaws = 6706, - + AttackMaximumAddedLightningDamageWithClaws = 6710, + /// /// attack_minimum_added_lightning_damage_with_bows /// - AttackMinimumAddedLightningDamageWithBows = 6707, - + AttackMinimumAddedLightningDamageWithBows = 6711, + /// /// attack_maximum_added_lightning_damage_with_bows /// - AttackMaximumAddedLightningDamageWithBows = 6708, - + AttackMaximumAddedLightningDamageWithBows = 6712, + /// /// attack_minimum_added_lightning_damage_with_swords /// - AttackMinimumAddedLightningDamageWithSwords = 6709, - + AttackMinimumAddedLightningDamageWithSwords = 6713, + /// /// attack_maximum_added_lightning_damage_with_swords /// - AttackMaximumAddedLightningDamageWithSwords = 6710, - + AttackMaximumAddedLightningDamageWithSwords = 6714, + /// /// attack_minimum_added_lightning_damage_with_axes /// - AttackMinimumAddedLightningDamageWithAxes = 6711, - + AttackMinimumAddedLightningDamageWithAxes = 6715, + /// /// attack_maximum_added_lightning_damage_with_axes /// - AttackMaximumAddedLightningDamageWithAxes = 6712, - + AttackMaximumAddedLightningDamageWithAxes = 6716, + /// /// attack_minimum_added_lightning_damage_with_maces /// - AttackMinimumAddedLightningDamageWithMaces = 6713, - + AttackMinimumAddedLightningDamageWithMaces = 6717, + /// /// attack_maximum_added_lightning_damage_with_maces /// - AttackMaximumAddedLightningDamageWithMaces = 6714, - + AttackMaximumAddedLightningDamageWithMaces = 6718, + /// /// attack_minimum_added_lightning_damage_with_staves /// - AttackMinimumAddedLightningDamageWithStaves = 6715, - + AttackMinimumAddedLightningDamageWithStaves = 6719, + /// /// attack_maximum_added_lightning_damage_with_staves /// - AttackMaximumAddedLightningDamageWithStaves = 6716, - + AttackMaximumAddedLightningDamageWithStaves = 6720, + /// /// attack_minimum_added_fire_damage_with_daggers /// - AttackMinimumAddedFireDamageWithDaggers = 6717, - + AttackMinimumAddedFireDamageWithDaggers = 6721, + /// /// attack_maximum_added_fire_damage_with_daggers /// - AttackMaximumAddedFireDamageWithDaggers = 6718, - + AttackMaximumAddedFireDamageWithDaggers = 6722, + /// /// attack_minimum_added_fire_damage_with_claws /// - AttackMinimumAddedFireDamageWithClaws = 6719, - + AttackMinimumAddedFireDamageWithClaws = 6723, + /// /// attack_maximum_added_fire_damage_with_claws /// - AttackMaximumAddedFireDamageWithClaws = 6720, - + AttackMaximumAddedFireDamageWithClaws = 6724, + /// /// attack_minimum_added_fire_damage_with_swords /// - AttackMinimumAddedFireDamageWithSwords = 6721, - + AttackMinimumAddedFireDamageWithSwords = 6725, + /// /// attack_maximum_added_fire_damage_with_swords /// - AttackMaximumAddedFireDamageWithSwords = 6722, - + AttackMaximumAddedFireDamageWithSwords = 6726, + /// /// attack_minimum_added_fire_damage_with_axes /// - AttackMinimumAddedFireDamageWithAxes = 6723, - + AttackMinimumAddedFireDamageWithAxes = 6727, + /// /// attack_maximum_added_fire_damage_with_axes /// - AttackMaximumAddedFireDamageWithAxes = 6724, - + AttackMaximumAddedFireDamageWithAxes = 6728, + /// /// attack_minimum_added_fire_damage_with_maces /// - AttackMinimumAddedFireDamageWithMaces = 6725, - + AttackMinimumAddedFireDamageWithMaces = 6729, + /// /// attack_maximum_added_fire_damage_with_maces /// - AttackMaximumAddedFireDamageWithMaces = 6726, - + AttackMaximumAddedFireDamageWithMaces = 6730, + /// /// attack_minimum_added_fire_damage_with_staves /// - AttackMinimumAddedFireDamageWithStaves = 6727, - + AttackMinimumAddedFireDamageWithStaves = 6731, + /// /// attack_maximum_added_fire_damage_with_staves /// - AttackMaximumAddedFireDamageWithStaves = 6728, - + AttackMaximumAddedFireDamageWithStaves = 6732, + /// /// attack_minimum_added_cold_damage_with_daggers /// - AttackMinimumAddedColdDamageWithDaggers = 6729, - + AttackMinimumAddedColdDamageWithDaggers = 6733, + /// /// attack_maximum_added_cold_damage_with_daggers /// - AttackMaximumAddedColdDamageWithDaggers = 6730, - + AttackMaximumAddedColdDamageWithDaggers = 6734, + /// /// attack_minimum_added_cold_damage_with_claws /// - AttackMinimumAddedColdDamageWithClaws = 6731, - + AttackMinimumAddedColdDamageWithClaws = 6735, + /// /// attack_maximum_added_cold_damage_with_claws /// - AttackMaximumAddedColdDamageWithClaws = 6732, - + AttackMaximumAddedColdDamageWithClaws = 6736, + /// /// attack_minimum_added_cold_damage_with_bows /// - AttackMinimumAddedColdDamageWithBows = 6733, - + AttackMinimumAddedColdDamageWithBows = 6737, + /// /// attack_maximum_added_cold_damage_with_bows /// - AttackMaximumAddedColdDamageWithBows = 6734, - + AttackMaximumAddedColdDamageWithBows = 6738, + /// /// attack_minimum_added_cold_damage_with_swords /// - AttackMinimumAddedColdDamageWithSwords = 6735, - + AttackMinimumAddedColdDamageWithSwords = 6739, + /// /// attack_maximum_added_cold_damage_with_swords /// - AttackMaximumAddedColdDamageWithSwords = 6736, - + AttackMaximumAddedColdDamageWithSwords = 6740, + /// /// attack_minimum_added_cold_damage_with_axes /// - AttackMinimumAddedColdDamageWithAxes = 6737, - + AttackMinimumAddedColdDamageWithAxes = 6741, + /// /// attack_maximum_added_cold_damage_with_axes /// - AttackMaximumAddedColdDamageWithAxes = 6738, - + AttackMaximumAddedColdDamageWithAxes = 6742, + /// /// attack_minimum_added_cold_damage_with_maces /// - AttackMinimumAddedColdDamageWithMaces = 6739, - + AttackMinimumAddedColdDamageWithMaces = 6743, + /// /// attack_maximum_added_cold_damage_with_maces /// - AttackMaximumAddedColdDamageWithMaces = 6740, - + AttackMaximumAddedColdDamageWithMaces = 6744, + /// /// attack_minimum_added_cold_damage_with_staves /// - AttackMinimumAddedColdDamageWithStaves = 6741, - + AttackMinimumAddedColdDamageWithStaves = 6745, + /// /// attack_maximum_added_cold_damage_with_staves /// - AttackMaximumAddedColdDamageWithStaves = 6742, - + AttackMaximumAddedColdDamageWithStaves = 6746, + /// /// attack_minimum_added_physical_damage_while_unarmed /// - AttackMinimumAddedPhysicalDamageWhileUnarmed = 6743, - + AttackMinimumAddedPhysicalDamageWhileUnarmed = 6747, + /// /// attack_maximum_added_physical_damage_while_unarmed /// - AttackMaximumAddedPhysicalDamageWhileUnarmed = 6744, - + AttackMaximumAddedPhysicalDamageWhileUnarmed = 6748, + /// /// attack_minimum_added_physical_damage_while_holding_a_shield /// - AttackMinimumAddedPhysicalDamageWhileHoldingAShield = 6745, - + AttackMinimumAddedPhysicalDamageWhileHoldingAShield = 6749, + /// /// attack_maximum_added_physical_damage_while_holding_a_shield /// - AttackMaximumAddedPhysicalDamageWhileHoldingAShield = 6746, - + AttackMaximumAddedPhysicalDamageWhileHoldingAShield = 6750, + /// /// spell_minimum_added_fire_damage_while_dual_wielding /// - SpellMinimumAddedFireDamageWhileDualWielding = 6747, - + SpellMinimumAddedFireDamageWhileDualWielding = 6751, + /// /// spell_maximum_added_fire_damage_while_dual_wielding /// - SpellMaximumAddedFireDamageWhileDualWielding = 6748, - + SpellMaximumAddedFireDamageWhileDualWielding = 6752, + /// /// spell_minimum_added_cold_damage_while_dual_wielding /// - SpellMinimumAddedColdDamageWhileDualWielding = 6749, - + SpellMinimumAddedColdDamageWhileDualWielding = 6753, + /// /// spell_maximum_added_cold_damage_while_dual_wielding /// - SpellMaximumAddedColdDamageWhileDualWielding = 6750, - + SpellMaximumAddedColdDamageWhileDualWielding = 6754, + /// /// spell_minimum_added_lightning_damage_while_dual_wielding /// - SpellMinimumAddedLightningDamageWhileDualWielding = 6751, - + SpellMinimumAddedLightningDamageWhileDualWielding = 6755, + /// /// spell_maximum_added_lightning_damage_while_dual_wielding /// - SpellMaximumAddedLightningDamageWhileDualWielding = 6752, - + SpellMaximumAddedLightningDamageWhileDualWielding = 6756, + /// /// spell_minimum_added_physical_damage_while_dual_wielding /// - SpellMinimumAddedPhysicalDamageWhileDualWielding = 6753, - + SpellMinimumAddedPhysicalDamageWhileDualWielding = 6757, + /// /// spell_maximum_added_physical_damage_while_dual_wielding /// - SpellMaximumAddedPhysicalDamageWhileDualWielding = 6754, - + SpellMaximumAddedPhysicalDamageWhileDualWielding = 6758, + /// /// spell_minimum_added_chaos_damage_while_dual_wielding /// - SpellMinimumAddedChaosDamageWhileDualWielding = 6755, - + SpellMinimumAddedChaosDamageWhileDualWielding = 6759, + /// /// spell_maximum_added_chaos_damage_while_dual_wielding /// - SpellMaximumAddedChaosDamageWhileDualWielding = 6756, - + SpellMaximumAddedChaosDamageWhileDualWielding = 6760, + /// /// spell_minimum_added_fire_damage_while_wielding_two_handed_weapon /// - SpellMinimumAddedFireDamageWhileWieldingTwoHandedWeapon = 6757, - + SpellMinimumAddedFireDamageWhileWieldingTwoHandedWeapon = 6761, + /// /// spell_maximum_added_fire_damage_while_wielding_two_handed_weapon /// - SpellMaximumAddedFireDamageWhileWieldingTwoHandedWeapon = 6758, - + SpellMaximumAddedFireDamageWhileWieldingTwoHandedWeapon = 6762, + /// /// spell_minimum_added_cold_damage_while_wielding_two_handed_weapon /// - SpellMinimumAddedColdDamageWhileWieldingTwoHandedWeapon = 6759, - + SpellMinimumAddedColdDamageWhileWieldingTwoHandedWeapon = 6763, + /// /// spell_maximum_added_cold_damage_while_wielding_two_handed_weapon /// - SpellMaximumAddedColdDamageWhileWieldingTwoHandedWeapon = 6760, - + SpellMaximumAddedColdDamageWhileWieldingTwoHandedWeapon = 6764, + /// /// spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon /// - SpellMinimumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6761, - + SpellMinimumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6765, + /// /// spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon /// - SpellMaximumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6762, - + SpellMaximumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6766, + /// /// spell_minimum_added_physical_damage_while_wielding_two_handed_weapon /// - SpellMinimumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6763, - + SpellMinimumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6767, + /// /// spell_maximum_added_physical_damage_while_wielding_two_handed_weapon /// - SpellMaximumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6764, - + SpellMaximumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6768, + /// /// spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon /// - SpellMinimumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6765, - + SpellMinimumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6769, + /// /// spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon /// - SpellMaximumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6766, - + SpellMaximumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6770, + /// /// spell_minimum_added_fire_damage_while_holding_a_shield /// - SpellMinimumAddedFireDamageWhileHoldingAShield = 6767, - + SpellMinimumAddedFireDamageWhileHoldingAShield = 6771, + /// /// spell_maximum_added_fire_damage_while_holding_a_shield /// - SpellMaximumAddedFireDamageWhileHoldingAShield = 6768, - + SpellMaximumAddedFireDamageWhileHoldingAShield = 6772, + /// /// spell_minimum_added_cold_damage_while_holding_a_shield /// - SpellMinimumAddedColdDamageWhileHoldingAShield = 6769, - + SpellMinimumAddedColdDamageWhileHoldingAShield = 6773, + /// /// spell_maximum_added_cold_damage_while_holding_a_shield /// - SpellMaximumAddedColdDamageWhileHoldingAShield = 6770, - + SpellMaximumAddedColdDamageWhileHoldingAShield = 6774, + /// /// spell_minimum_added_lightning_damage_while_holding_a_shield /// - SpellMinimumAddedLightningDamageWhileHoldingAShield = 6771, - + SpellMinimumAddedLightningDamageWhileHoldingAShield = 6775, + /// /// spell_maximum_added_lightning_damage_while_holding_a_shield /// - SpellMaximumAddedLightningDamageWhileHoldingAShield = 6772, - + SpellMaximumAddedLightningDamageWhileHoldingAShield = 6776, + /// /// spell_minimum_added_physical_damage_while_holding_a_shield /// - SpellMinimumAddedPhysicalDamageWhileHoldingAShield = 6773, - + SpellMinimumAddedPhysicalDamageWhileHoldingAShield = 6777, + /// /// spell_maximum_added_physical_damage_while_holding_a_shield /// - SpellMaximumAddedPhysicalDamageWhileHoldingAShield = 6774, - + SpellMaximumAddedPhysicalDamageWhileHoldingAShield = 6778, + /// /// spell_minimum_added_chaos_damage_while_holding_a_shield /// - SpellMinimumAddedChaosDamageWhileHoldingAShield = 6775, - + SpellMinimumAddedChaosDamageWhileHoldingAShield = 6779, + /// /// spell_maximum_added_chaos_damage_while_holding_a_shield /// - SpellMaximumAddedChaosDamageWhileHoldingAShield = 6776, - + SpellMaximumAddedChaosDamageWhileHoldingAShield = 6780, + /// /// damage_over_time_+%_while_dual_wielding /// - DamageOverTimePctWhileDualWielding = 6777, - + DamageOverTimePctWhileDualWielding = 6781, + /// /// damage_over_time_+%_while_wielding_two_handed_weapon /// - DamageOverTimePctWhileWieldingTwoHandedWeapon = 6778, - + DamageOverTimePctWhileWieldingTwoHandedWeapon = 6782, + /// /// damage_over_time_+%_while_holding_a_shield /// - DamageOverTimePctWhileHoldingAShield = 6779, - + DamageOverTimePctWhileHoldingAShield = 6783, + /// /// minion_global_minimum_added_fire_damage /// - MinionGlobalMinimumAddedFireDamage = 6780, - + MinionGlobalMinimumAddedFireDamage = 6784, + /// /// minion_global_maximum_added_fire_damage /// - MinionGlobalMaximumAddedFireDamage = 6781, - + MinionGlobalMaximumAddedFireDamage = 6785, + /// /// minion_global_minimum_added_cold_damage /// - MinionGlobalMinimumAddedColdDamage = 6782, - + MinionGlobalMinimumAddedColdDamage = 6786, + /// /// minion_global_maximum_added_cold_damage /// - MinionGlobalMaximumAddedColdDamage = 6783, - + MinionGlobalMaximumAddedColdDamage = 6787, + /// /// minion_global_minimum_added_lightning_damage /// - MinionGlobalMinimumAddedLightningDamage = 6784, - + MinionGlobalMinimumAddedLightningDamage = 6788, + /// /// minion_global_maximum_added_lightning_damage /// - MinionGlobalMaximumAddedLightningDamage = 6785, - + MinionGlobalMaximumAddedLightningDamage = 6789, + /// /// minion_global_minimum_added_physical_damage /// - MinionGlobalMinimumAddedPhysicalDamage = 6786, - + MinionGlobalMinimumAddedPhysicalDamage = 6790, + /// /// minion_global_maximum_added_physical_damage /// - MinionGlobalMaximumAddedPhysicalDamage = 6787, - + MinionGlobalMaximumAddedPhysicalDamage = 6791, + /// /// minion_global_minimum_added_chaos_damage /// - MinionGlobalMinimumAddedChaosDamage = 6788, - + MinionGlobalMinimumAddedChaosDamage = 6792, + /// /// minion_global_maximum_added_chaos_damage /// - MinionGlobalMaximumAddedChaosDamage = 6789, - + MinionGlobalMaximumAddedChaosDamage = 6793, + /// /// minion_life_regeneration_rate_per_second /// - MinionLifeRegenerationRatePerSecond = 6790, - + MinionLifeRegenerationRatePerSecond = 6794, + /// /// energy_shield_regeneration_rate_per_second /// - EnergyShieldRegenerationRatePerSecond = 6791, - + EnergyShieldRegenerationRatePerSecond = 6795, + /// /// local_attack_cast_movement_speed_+%_during_flask_effect /// - LocalAttackCastMovementSpeedPctDuringFlaskEffect = 6792, - + LocalAttackCastMovementSpeedPctDuringFlaskEffect = 6796, + /// /// local_attack_cast_movement_speed_+%_per_second_during_flask_effect /// - LocalAttackCastMovementSpeedPctPerSecondDuringFlaskEffect = 6793, - + LocalAttackCastMovementSpeedPctPerSecondDuringFlaskEffect = 6797, + /// /// damage_+%_vs_abyssal_monsters /// - DamagePctVsAbyssalMonsters = 6794, - + DamagePctVsAbyssalMonsters = 6798, + /// /// minion_damage_+%_vs_abyssal_monsters /// - MinionDamagePctVsAbyssalMonsters = 6795, - + MinionDamagePctVsAbyssalMonsters = 6799, + /// /// additional_physical_damage_reduction_%_vs_abyssal_monsters /// - AdditionalPhysicalDamageReductionPctVsAbyssalMonsters = 6796, - + AdditionalPhysicalDamageReductionPctVsAbyssalMonsters = 6800, + /// /// attacker_conditional_damage_stats_requires_tags /// - AttackerConditionalDamageStatsRequiresTags = 6797, - + AttackerConditionalDamageStatsRequiresTags = 6801, + /// /// defender_conditional_damage_stats_requires_tags /// - DefenderConditionalDamageStatsRequiresTags = 6798, - + DefenderConditionalDamageStatsRequiresTags = 6802, + /// /// chance_to_block_spells_%_if_damaged_by_a_hit_recently /// - ChanceToBlockSpellsPctIfDamagedByAHitRecently = 6799, - + ChanceToBlockSpellsPctIfDamagedByAHitRecently = 6803, + /// /// track_have_been_damaged_by_a_hit_recently /// - TrackHaveBeenDamagedByAHitRecently = 6800, - + TrackHaveBeenDamagedByAHitRecently = 6804, + /// /// have_been_damaged_by_a_hit_recently /// - HaveBeenDamagedByAHitRecently = 6801, - + HaveBeenDamagedByAHitRecently = 6805, + /// /// movement_speed_+%_if_have_not_taken_damage_recently /// - MovementSpeedPctIfHaveNotTakenDamageRecently = 6802, - + MovementSpeedPctIfHaveNotTakenDamageRecently = 6806, + /// /// track_have_stopped_taking_damage_over_time_recently /// - TrackHaveStoppedTakingDamageOverTimeRecently = 6803, - + TrackHaveStoppedTakingDamageOverTimeRecently = 6807, + /// /// have_stopped_taking_damage_over_time_recently /// - HaveStoppedTakingDamageOverTimeRecently = 6804, - + HaveStoppedTakingDamageOverTimeRecently = 6808, + /// /// is_currently_taking_damage_over_time /// - IsCurrentlyTakingDamageOverTime = 6805, - + IsCurrentlyTakingDamageOverTime = 6809, + /// /// damage_+%_if_enemy_killed_recently /// - DamagePctIfEnemyKilledRecently = 6806, - + DamagePctIfEnemyKilledRecently = 6810, + /// /// critical_strike_multiplier_+_if_enemy_killed_recently /// - CriticalStrikeMultiplierIfEnemyKilledRecently = 6807, - + CriticalStrikeMultiplierIfEnemyKilledRecently = 6811, + /// /// armour_+%_if_enemy_not_killed_recently /// - ArmourPctIfEnemyNotKilledRecently = 6808, - + ArmourPctIfEnemyNotKilledRecently = 6812, + /// /// accuracy_rating_+%_if_enemy_not_killed_recently /// - AccuracyRatingPctIfEnemyNotKilledRecently = 6809, - + AccuracyRatingPctIfEnemyNotKilledRecently = 6813, + /// /// damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently /// - DamagePenetratesPctElementalResistanceIfEnemyNotKilledRecently = 6810, - + DamagePenetratesPctElementalResistanceIfEnemyNotKilledRecently = 6814, + /// /// cast_speed_+%_if_player_minion_has_been_killed_recently /// - CastSpeedPctIfPlayerMinionHasBeenKilledRecently = 6811, - + CastSpeedPctIfPlayerMinionHasBeenKilledRecently = 6815, + /// /// track_has_player_minion_been_killed_recently /// - TrackHasPlayerMinionBeenKilledRecently = 6812, - + TrackHasPlayerMinionBeenKilledRecently = 6816, + /// /// has_player_minion_been_killed_recently /// - HasPlayerMinionBeenKilledRecently = 6813, - + HasPlayerMinionBeenKilledRecently = 6817, + /// /// minion_damage_+%_if_have_used_a_minion_skill_recently /// - MinionDamagePctIfHaveUsedAMinionSkillRecently = 6814, - + MinionDamagePctIfHaveUsedAMinionSkillRecently = 6818, + /// /// track_have_used_a_minion_skill_recently /// - TrackHaveUsedAMinionSkillRecently = 6815, - + TrackHaveUsedAMinionSkillRecently = 6819, + /// /// have_used_a_minion_skill_recently /// - HaveUsedAMinionSkillRecently = 6816, - + HaveUsedAMinionSkillRecently = 6820, + /// /// evasion_rating_+%_while_moving /// - EvasionRatingPctWhileMoving = 6817, - + EvasionRatingPctWhileMoving = 6821, + /// /// mana_regeneration_rate_+%_while_moving /// - ManaRegenerationRatePctWhileMoving = 6818, - + ManaRegenerationRatePctWhileMoving = 6822, + /// /// life_regeneration_rate_per_minute_%_while_moving /// - LifeRegenerationRatePerMinutePctWhileMoving = 6819, - + LifeRegenerationRatePerMinutePctWhileMoving = 6823, + /// /// physical_damage_%_to_add_as_fire_if_have_crit_recently /// - PhysicalDamagePctToAddAsFireIfHaveCritRecently = 6820, - + PhysicalDamagePctToAddAsFireIfHaveCritRecently = 6824, + /// /// attack_speed_+%_if_have_crit_recently /// - AttackSpeedPctIfHaveCritRecently = 6821, - + AttackSpeedPctIfHaveCritRecently = 6825, + /// /// cast_speed_+%_if_have_crit_recently /// - CastSpeedPctIfHaveCritRecently = 6822, - + CastSpeedPctIfHaveCritRecently = 6826, + /// /// critical_strike_chance_+%_if_have_not_crit_recently /// - CriticalStrikeChancePctIfHaveNotCritRecently = 6823, - + CriticalStrikeChancePctIfHaveNotCritRecently = 6827, + /// /// minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently /// - MinionAttackAndCastSpeedPctIfYouOrMinionsHaveKilledEnemyRecently = 6824, - + MinionAttackAndCastSpeedPctIfYouOrMinionsHaveKilledEnemyRecently = 6828, + /// /// notify_parent_have_killed_enemy_recently /// - NotifyParentHaveKilledEnemyRecently = 6825, - + NotifyParentHaveKilledEnemyRecently = 6829, + /// /// minion_has_killed_enemy_recently /// - MinionHasKilledEnemyRecently = 6826, - + MinionHasKilledEnemyRecently = 6830, + /// /// attacks_chance_to_blind_on_hit_% /// - AttacksChanceToBlindOnHitPct = 6827, - + AttacksChanceToBlindOnHitPct = 6831, + /// /// attacks_chance_to_taunt_on_hit_% /// - AttacksChanceToTauntOnHitPct = 6828, - + AttacksChanceToTauntOnHitPct = 6832, + /// /// spells_chance_to_hinder_on_hit_% /// - SpellsChanceToHinderOnHitPct = 6829, - + SpellsChanceToHinderOnHitPct = 6833, + /// /// minion_attacks_chance_to_blind_on_hit_% /// - MinionAttacksChanceToBlindOnHitPct = 6830, - + MinionAttacksChanceToBlindOnHitPct = 6834, + /// /// minion_attacks_chance_to_taunt_on_hit_% /// - MinionAttacksChanceToTauntOnHitPct = 6831, - + MinionAttacksChanceToTauntOnHitPct = 6835, + /// /// minion_spells_chance_to_hinder_on_hit_% /// - MinionSpellsChanceToHinderOnHitPct = 6832, - + MinionSpellsChanceToHinderOnHitPct = 6836, + /// /// desecrate_maximum_number_of_corpses /// - DesecrateMaximumNumberOfCorpses = 6833, - + DesecrateMaximumNumberOfCorpses = 6837, + /// /// additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently /// - AdditionalPhysicalDamageReductionPctIfNotDamagedByAHitRecently = 6834, - + AdditionalPhysicalDamageReductionPctIfNotDamagedByAHitRecently = 6838, + /// /// has_aegis_shield_type /// - HasAegisShieldType = 6835, - + HasAegisShieldType = 6839, + /// /// local_display_cast_fire_aegis_on_gain_skill /// - LocalDisplayCastFireAegisOnGainSkill = 6836, - + LocalDisplayCastFireAegisOnGainSkill = 6840, + /// /// local_display_cast_cold_aegis_on_gain_skill /// - LocalDisplayCastColdAegisOnGainSkill = 6837, - + LocalDisplayCastColdAegisOnGainSkill = 6841, + /// /// local_display_cast_elemental_aegis_on_gain_skill /// - LocalDisplayCastElementalAegisOnGainSkill = 6838, - + LocalDisplayCastElementalAegisOnGainSkill = 6842, + /// /// poison_reflected_to_self /// - PoisonReflectedToSelf = 6839, - + PoisonReflectedToSelf = 6843, + /// /// bleeding_reflected_to_self /// - BleedingReflectedToSelf = 6840, - + BleedingReflectedToSelf = 6844, + /// /// chaos_damage_resistance_%_per_poison_stack /// - ChaosDamageResistancePctPerPoisonStack = 6841, - + ChaosDamageResistancePctPerPoisonStack = 6845, + /// /// armour_+%_while_bleeding /// - ArmourPctWhileBleeding = 6842, - + ArmourPctWhileBleeding = 6846, + /// /// avoid_poison_% /// - AvoidPoisonPct = 6843, - + AvoidPoisonPct = 6847, + /// /// cannot_be_frozen /// - CannotBeFrozen = 6844, - + CannotBeFrozen = 6848, + /// /// local_display_grants_level_x_curse_pillar_skill /// - LocalDisplayGrantsLevelXCursePillarSkill = 6845, - + LocalDisplayGrantsLevelXCursePillarSkill = 6849, + /// /// local_socketed_active_skill_gem_level_+ /// - LocalSocketedActiveSkillGemLevel = 6846, - + LocalSocketedActiveSkillGemLevel = 6850, + /// /// local_socketed_active_skill_gem_quality_+ /// - LocalSocketedActiveSkillGemQuality = 6847, - + LocalSocketedActiveSkillGemQuality = 6851, + /// /// aegis_unique_shield_max_value /// - AegisUniqueShieldMaxValue = 6848, - + AegisUniqueShieldMaxValue = 6852, + /// /// move_daemon_rotation_per_repeat /// - MoveDaemonRotationPerRepeat = 6849, - + MoveDaemonRotationPerRepeat = 6853, + /// /// move_daemon_end_rotation_per_repeat /// - MoveDaemonEndRotationPerRepeat = 6850, - + MoveDaemonEndRotationPerRepeat = 6854, + /// /// move_daemon_x_offset_per_repeat /// - MoveDaemonXOffsetPerRepeat = 6851, - + MoveDaemonXOffsetPerRepeat = 6855, + /// /// move_daemon_y_offset_per_repeat /// - MoveDaemonYOffsetPerRepeat = 6852, - + MoveDaemonYOffsetPerRepeat = 6856, + /// /// map_tier_+5 /// - MapTier5 = 6853, - + MapTier5 = 6857, + /// /// map_tier_16 /// - MapTier16 = 6854, - + MapTier16 = 6858, + /// /// raised_spectre_level /// - RaisedSpectreLevel = 6855, - + RaisedSpectreLevel = 6859, + /// /// summon_specific_monsters_in_front_angle_offset /// - SummonSpecificMonstersInFrontAngleOffset = 6856, - + SummonSpecificMonstersInFrontAngleOffset = 6860, + /// /// move_daemon_random_xy_offset /// - MoveDaemonRandomXyOffset = 6857, - + MoveDaemonRandomXyOffset = 6861, + /// /// move_daemon_random_x_offset /// - MoveDaemonRandomXOffset = 6858, - + MoveDaemonRandomXOffset = 6862, + /// /// move_daemon_random_y_offset /// - MoveDaemonRandomYOffset = 6859, - + MoveDaemonRandomYOffset = 6863, + /// /// endurance_charge_slam_damage_+%_final_with_endurance_charge /// - EnduranceChargeSlamDamagePctFinalWithEnduranceCharge = 6860, - + EnduranceChargeSlamDamagePctFinalWithEnduranceCharge = 6864, + /// /// generic_skill_trigger_skills_with_id /// - GenericSkillTriggerSkillsWithId = 6861, - + GenericSkillTriggerSkillsWithId = 6865, + /// /// generic_skill_trigger_id /// - GenericSkillTriggerId = 6862, - + GenericSkillTriggerId = 6866, + /// /// generic_skill_trigger_% /// - GenericSkillTriggerPct = 6863, - + GenericSkillTriggerPct = 6867, + /// /// projectile_swap_from_to_locations /// - ProjectileSwapFromToLocations = 6864, - + ProjectileSwapFromToLocations = 6868, + /// /// projectile_angle_variance /// - ProjectileAngleVariance = 6865, - + ProjectileAngleVariance = 6869, + /// /// maligaro_combo_attack_third_hit_damage_+%_final /// - MaligaroComboAttackThirdHitDamagePctFinal = 6866, - + MaligaroComboAttackThirdHitDamagePctFinal = 6870, + /// /// minions_cannot_be_damaged /// - MinionsCannotBeDamaged = 6867, - + MinionsCannotBeDamaged = 6871, + /// /// minions_deal_no_damage /// - MinionsDealNoDamage = 6868, - + MinionsDealNoDamage = 6872, + /// /// curse_on_hit_level_assassins_mark /// - CurseOnHitLevelAssassinsMark = 6869, - + CurseOnHitLevelAssassinsMark = 6873, + /// /// projectile_distance_override /// - ProjectileDistanceOverride = 6870, - + ProjectileDistanceOverride = 6874, + /// /// mortar_projectile_distance_override /// - MortarProjectileDistanceOverride = 6871, - + MortarProjectileDistanceOverride = 6875, + /// /// triggered_skill_use_animation_event /// - TriggeredSkillUseAnimationEvent = 6872, - + TriggeredSkillUseAnimationEvent = 6876, + /// /// map_atlas_influence_type /// - MapAtlasInfluenceType = 6873, - + MapAtlasInfluenceType = 6877, + /// /// combo_attack_first_hit_damage_+%_final /// - ComboAttackFirstHitDamagePctFinal = 6874, - + ComboAttackFirstHitDamagePctFinal = 6878, + /// /// support_storm_barrier_physical_damage_taken_when_hit_+%_final /// - SupportStormBarrierPhysicalDamageTakenWhenHitPctFinal = 6875, - + SupportStormBarrierPhysicalDamageTakenWhenHitPctFinal = 6879, + /// /// support_storm_barrier_lightning_damage_taken_when_hit_+%_final /// - SupportStormBarrierLightningDamageTakenWhenHitPctFinal = 6876, - + SupportStormBarrierLightningDamageTakenWhenHitPctFinal = 6880, + /// /// support_storm_barrier_gain_power_charge_when_hit_% /// - SupportStormBarrierGainPowerChargeWhenHitPct = 6877, - + SupportStormBarrierGainPowerChargeWhenHitPct = 6881, + /// /// gain_power_charge_when_hit_% /// - GainPowerChargeWhenHitPct = 6878, - + GainPowerChargeWhenHitPct = 6882, + /// /// local_display_socketed_gems_supported_by_level_x_storm_barrier /// - LocalDisplaySocketedGemsSupportedByLevelXStormBarrier = 6879, - + LocalDisplaySocketedGemsSupportedByLevelXStormBarrier = 6883, + /// /// gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana /// - GainCriticalStrikeChancePctFor2SecondsWhenYouSpend800Mana = 6880, - + GainCriticalStrikeChancePctFor2SecondsWhenYouSpend800Mana = 6884, + /// /// virtual_maximum_life_leech_rate_permyriad_per_minute /// - VirtualMaximumLifeLeechRatePermyriadPerMinute = 6881, - + VirtualMaximumLifeLeechRatePermyriadPerMinute = 6885, + /// /// keystone_vaal_pact /// - KeystoneVaalPact = 6882, - + KeystoneVaalPact = 6886, + /// /// life_leech_speed_is_doubled /// - LifeLeechSpeedIsDoubled = 6883, - + LifeLeechSpeedIsDoubled = 6887, + /// /// maximum_life_leech_rate_%_per_minute_is_doubled /// - MaximumLifeLeechRatePctPerMinuteIsDoubled = 6884, - + MaximumLifeLeechRatePctPerMinuteIsDoubled = 6888, + /// /// spectres_have_base_duration_ms /// - SpectresHaveBaseDurationMs = 6885, - + SpectresHaveBaseDurationMs = 6889, + /// /// spectres_critical_strike_chance_+% /// - SpectresCriticalStrikeChancePct = 6886, - + SpectresCriticalStrikeChancePct = 6890, + /// /// gain_her_embrace_for_x_ms_on_enemy_ignited /// - GainHerEmbraceForXMsOnEnemyIgnited = 6887, - + GainHerEmbraceForXMsOnEnemyIgnited = 6891, + /// /// has_her_embrace /// - HasHerEmbrace = 6888, - + HasHerEmbrace = 6892, + /// /// %_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace /// - PctMaximumEsAndLifeTakenAsFireDamagePerMinutePerLevelWhileInHerEmbrace = 6889, - + PctMaximumEsAndLifeTakenAsFireDamagePerMinutePerLevelWhileInHerEmbrace = 6893, + /// /// projectile_uses_contact_direction /// - ProjectileUsesContactDirection = 6890, - + ProjectileUsesContactDirection = 6894, + /// /// spell_base_fire_damage_%_maximum_life /// - SpellBaseFireDamagePctMaximumLife = 6891, - + SpellBaseFireDamagePctMaximumLife = 6895, + /// /// additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad /// - AdditionalCriticalStrikeChancePer10ShieldMaximumEnergyShieldPermyriad = 6892, - + AdditionalCriticalStrikeChancePer10ShieldMaximumEnergyShieldPermyriad = 6896, + /// /// bone_lance_skill_behaviour_variation /// - BoneLanceSkillBehaviourVariation = 6893, - + BoneLanceSkillBehaviourVariation = 6897, + /// /// gain_armour_equal_to_mana_reserved /// - GainArmourEqualToManaReserved = 6894, - + GainArmourEqualToManaReserved = 6898, + /// /// gain_vaal_pact_if_you_have_crit_recently /// - GainVaalPactIfYouHaveCritRecently = 6895, - + GainVaalPactIfYouHaveCritRecently = 6899, + /// /// virtual_keystone_vaal_pact /// - VirtualKeystoneVaalPact = 6896, - + VirtualKeystoneVaalPact = 6900, + /// /// support_parallel_projectile_number_of_points_per_side /// - SupportParallelProjectileNumberOfPointsPerSide = 6897, - + SupportParallelProjectileNumberOfPointsPerSide = 6901, + /// /// support_spell_cascade_number_of_cascades_per_side /// - SupportSpellCascadeNumberOfCascadesPerSide = 6898, - + SupportSpellCascadeNumberOfCascadesPerSide = 6902, + /// /// support_spell_cascade_area_of_effect_+%_per_cascade /// - SupportSpellCascadeAreaOfEffectPctPerCascade = 6899, - + SupportSpellCascadeAreaOfEffectPctPerCascade = 6903, + /// /// support_spell_cascade_area_of_effect_+%_final /// - SupportSpellCascadeAreaOfEffectPctFinal = 6900, - + SupportSpellCascadeAreaOfEffectPctFinal = 6904, + /// /// local_display_socketed_gems_supported_by_level_x_parallel_projectiles /// - LocalDisplaySocketedGemsSupportedByLevelXParallelProjectiles = 6901, - + LocalDisplaySocketedGemsSupportedByLevelXParallelProjectiles = 6905, + /// /// local_display_socketed_gems_supported_by_level_x_spell_cascade /// - LocalDisplaySocketedGemsSupportedByLevelXSpellCascade = 6902, - + LocalDisplaySocketedGemsSupportedByLevelXSpellCascade = 6906, + /// /// map_display_area_contains_unbridged_gaps_to_cross /// - MapDisplayAreaContainsUnbridgedGapsToCross = 6903, - + MapDisplayAreaContainsUnbridgedGapsToCross = 6907, + /// /// map_players_movement_skills_cooldown_speed_+% /// - MapPlayersMovementSkillsCooldownSpeedPct = 6904, - + MapPlayersMovementSkillsCooldownSpeedPct = 6908, + /// /// movement_skills_cooldown_speed_+% /// - MovementSkillsCooldownSpeedPct = 6905, - + MovementSkillsCooldownSpeedPct = 6909, + /// /// map_packs_are_kitava /// - MapPacksAreKitava = 6906, - + MapPacksAreKitava = 6910, + /// /// map_packs_have_anomalies /// - MapPacksHaveAnomalies = 6907, - + MapPacksHaveAnomalies = 6911, + /// /// map_shaper_influence_spawn_shaper_clone /// - MapShaperInfluenceSpawnShaperClone = 6908, - + MapShaperInfluenceSpawnShaperClone = 6912, + /// /// map_shaper_influence_additional_packs_of_space_monsters /// - MapShaperInfluenceAdditionalPacksOfSpaceMonsters = 6909, - + MapShaperInfluenceAdditionalPacksOfSpaceMonsters = 6913, + /// /// map_shaper_influence_spawn_boss_pack /// - MapShaperInfluenceSpawnBossPack = 6910, - + MapShaperInfluenceSpawnBossPack = 6914, + /// /// map_shaper_influence_spawn_maelstrom_cell /// - MapShaperInfluenceSpawnMaelstromCell = 6911, - + MapShaperInfluenceSpawnMaelstromCell = 6915, + /// /// grasping_vines_movement_speed_+%_final /// - GraspingVinesMovementSpeedPctFinal = 6912, - + GraspingVinesMovementSpeedPctFinal = 6916, + /// /// support_parallel_projectiles_damage_+%_final /// - SupportParallelProjectilesDamagePctFinal = 6913, - + SupportParallelProjectilesDamagePctFinal = 6917, + /// /// is_trigger_daemon_when_hit_triggered_skill /// - IsTriggerDaemonWhenHitTriggeredSkill = 6914, - + IsTriggerDaemonWhenHitTriggeredSkill = 6918, + /// /// trigger_daemon_when_hit_triggered_skill_chance_% /// - TriggerDaemonWhenHitTriggeredSkillChancePct = 6915, - + TriggerDaemonWhenHitTriggeredSkillChancePct = 6919, + /// /// cannot_be_ignited_with_strength_higher_than_dex /// - CannotBeIgnitedWithStrengthHigherThanDex = 6916, - + CannotBeIgnitedWithStrengthHigherThanDex = 6920, + /// /// cannot_be_frozen_with_dex_higher_than_int /// - CannotBeFrozenWithDexHigherThanInt = 6917, - + CannotBeFrozenWithDexHigherThanInt = 6921, + /// /// cannot_be_shocked_with_int_higher_than_strength /// - CannotBeShockedWithIntHigherThanStrength = 6918, - + CannotBeShockedWithIntHigherThanStrength = 6922, + /// /// damage_+%_per_5_of_your_lowest_attribute /// - DamagePctPer5OfYourLowestAttribute = 6919, - + DamagePctPer5OfYourLowestAttribute = 6923, + /// /// cannot_be_ignited /// - CannotBeIgnited = 6920, - + CannotBeIgnited = 6924, + /// /// attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity /// - AttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6921, - + AttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6925, + /// /// attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity /// - AttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6922, - + AttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6926, + /// /// main_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity /// - MainHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6923, - + MainHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6927, + /// /// main_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity /// - MainHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6924, - + MainHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6928, + /// /// off_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity /// - OffHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6925, - + OffHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6929, + /// /// off_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity /// - OffHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6926, - + OffHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6930, + /// /// local_chaos_damage_taken_per_minute_during_flask_effect /// - LocalChaosDamageTakenPerMinuteDuringFlaskEffect = 6927, - + LocalChaosDamageTakenPerMinuteDuringFlaskEffect = 6931, + /// /// melee_attack_number_of_spirit_strikes /// - MeleeAttackNumberOfSpiritStrikes = 6928, - + MeleeAttackNumberOfSpiritStrikes = 6932, + /// /// cannot_taunt_enemies /// - CannotTauntEnemies = 6929, - + CannotTauntEnemies = 6933, + /// /// minions_cannot_taunt_enemies /// - MinionsCannotTauntEnemies = 6930, - + MinionsCannotTauntEnemies = 6934, + /// /// base_number_of_support_ghosts_allowed /// - BaseNumberOfSupportGhostsAllowed = 6931, - + BaseNumberOfSupportGhostsAllowed = 6935, + /// /// chance_to_summon_support_ghost_on_killing_blow_% /// - ChanceToSummonSupportGhostOnKillingBlowPct = 6932, - + ChanceToSummonSupportGhostOnKillingBlowPct = 6936, + /// /// support_ghost_base_duration /// - SupportGhostBaseDuration = 6933, - + SupportGhostBaseDuration = 6937, + /// /// support_ghost_duration /// - SupportGhostDuration = 6934, - + SupportGhostDuration = 6938, + /// /// skill_can_own_support_ghosts /// - SkillCanOwnSupportGhosts = 6935, - + SkillCanOwnSupportGhosts = 6939, + /// /// local_display_socketed_gems_supported_by_level_x_spirit_strike /// - LocalDisplaySocketedGemsSupportedByLevelXSpiritStrike = 6936, - + LocalDisplaySocketedGemsSupportedByLevelXSpiritStrike = 6940, + /// /// local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill /// - LocalDisplaySocketedGemsSupportedByLevelXSummonGhostOnKill = 6937, - + LocalDisplaySocketedGemsSupportedByLevelXSummonGhostOnKill = 6941, + /// /// support_spirit_strike_damage_+%_final /// - SupportSpiritStrikeDamagePctFinal = 6938, - + SupportSpiritStrikeDamagePctFinal = 6942, + /// /// local_display_socketed_attacks_additional_critical_strike_chance /// - LocalDisplaySocketedAttacksAdditionalCriticalStrikeChance = 6939, - + LocalDisplaySocketedAttacksAdditionalCriticalStrikeChance = 6943, + /// /// local_display_socketed_attacks_critical_strike_multiplier_+ /// - LocalDisplaySocketedAttacksCriticalStrikeMultiplier = 6940, - + LocalDisplaySocketedAttacksCriticalStrikeMultiplier = 6944, + /// /// local_display_socketed_spells_additional_critical_strike_chance /// - LocalDisplaySocketedSpellsAdditionalCriticalStrikeChance = 6941, - + LocalDisplaySocketedSpellsAdditionalCriticalStrikeChance = 6945, + /// /// local_display_socketed_spells_critical_strike_multiplier_+ /// - LocalDisplaySocketedSpellsCriticalStrikeMultiplier = 6942, - + LocalDisplaySocketedSpellsCriticalStrikeMultiplier = 6946, + /// /// keystone_shared_suffering /// - KeystoneSharedSuffering = 6943, - + KeystoneSharedSuffering = 6947, + /// /// all_damage_can_cause_elemental_ailments_you_are_suffering_from /// - AllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6944, - + AllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6948, + /// /// base_all_damage_can_cause_elemental_ailments_you_are_suffering_from /// - BaseAllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6945, - + BaseAllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6949, + /// /// always_inflict_elemental_ailments_you_are_suffering_from /// - AlwaysInflictElementalAilmentsYouAreSufferingFrom = 6946, - + AlwaysInflictElementalAilmentsYouAreSufferingFrom = 6950, + /// /// base_always_inflict_elemental_ailments_you_are_suffering_from /// - BaseAlwaysInflictElementalAilmentsYouAreSufferingFrom = 6947, - + BaseAlwaysInflictElementalAilmentsYouAreSufferingFrom = 6951, + /// /// remove_elemental_ailments_from_you_when_you_inflict_them /// - RemoveElementalAilmentsFromYouWhenYouInflictThem = 6948, - + RemoveElementalAilmentsFromYouWhenYouInflictThem = 6952, + /// /// base_remove_elemental_ailments_from_you_when_you_inflict_them /// - BaseRemoveElementalAilmentsFromYouWhenYouInflictThem = 6949, - + BaseRemoveElementalAilmentsFromYouWhenYouInflictThem = 6953, + /// /// geometry_attack_shape /// - GeometryAttackShape = 6950, - + GeometryAttackShape = 6954, + /// /// geometry_attack_length /// - GeometryAttackLength = 6951, - + GeometryAttackLength = 6955, + /// /// geometry_attack_width /// - GeometryAttackWidth = 6952, - + GeometryAttackWidth = 6956, + /// /// geometry_attack_arc_angle /// - GeometryAttackArcAngle = 6953, - + GeometryAttackArcAngle = 6957, + /// /// map_packs_have_tentacle_fiends /// - MapPacksHaveTentacleFiends = 6954, - + MapPacksHaveTentacleFiends = 6958, + /// /// no_movement_speed /// - NoMovementSpeed = 6955, - + NoMovementSpeed = 6959, + /// /// unaffected_by_shock /// - UnaffectedByShock = 6956, - + UnaffectedByShock = 6960, + /// /// unaffected_by_shocked_ground /// - UnaffectedByShockedGround = 6957, - + UnaffectedByShockedGround = 6961, + /// /// unaffected_by_burning_ground /// - UnaffectedByBurningGround = 6958, - + UnaffectedByBurningGround = 6962, + /// /// unaffected_by_chilled_ground /// - UnaffectedByChilledGround = 6959, - + UnaffectedByChilledGround = 6963, + /// /// unaffected_by_desecrated_ground /// - UnaffectedByDesecratedGround = 6960, - + UnaffectedByDesecratedGround = 6964, + /// /// flammability_mana_reservation_+% /// - FlammabilityManaReservationPct = 6961, - + FlammabilityManaReservationPct = 6965, + /// /// frostbite_mana_reservation_+% /// - FrostbiteManaReservationPct = 6962, - + FrostbiteManaReservationPct = 6966, + /// /// conductivity_mana_reservation_+% /// - ConductivityManaReservationPct = 6963, - + ConductivityManaReservationPct = 6967, + /// /// vulnerability_mana_reservation_+% /// - VulnerabilityManaReservationPct = 6964, - + VulnerabilityManaReservationPct = 6968, + /// /// chaos_weakness_mana_reservation_+% /// - ChaosWeaknessManaReservationPct = 6965, - + ChaosWeaknessManaReservationPct = 6969, + /// /// local_display_grants_skill_decoy_totem_level /// - LocalDisplayGrantsSkillDecoyTotemLevel = 6966, - + LocalDisplayGrantsSkillDecoyTotemLevel = 6970, + /// /// local_display_grants_skill_enduring_cry_level /// - LocalDisplayGrantsSkillEnduringCryLevel = 6967, - + LocalDisplayGrantsSkillEnduringCryLevel = 6971, + /// /// local_display_grants_skill_rallying_cry_level /// - LocalDisplayGrantsSkillRallyingCryLevel = 6968, - + LocalDisplayGrantsSkillRallyingCryLevel = 6972, + /// /// local_display_grants_skill_abyssal_cry_level /// - LocalDisplayGrantsSkillAbyssalCryLevel = 6969, - + LocalDisplayGrantsSkillAbyssalCryLevel = 6973, + /// /// local_display_grants_skill_herald_of_ash_level /// - LocalDisplayGrantsSkillHeraldOfAshLevel = 6970, - + LocalDisplayGrantsSkillHeraldOfAshLevel = 6974, + /// /// local_display_grants_skill_herald_of_ice_level /// - LocalDisplayGrantsSkillHeraldOfIceLevel = 6971, - + LocalDisplayGrantsSkillHeraldOfIceLevel = 6975, + /// /// local_display_grants_skill_herald_of_thunder_level /// - LocalDisplayGrantsSkillHeraldOfThunderLevel = 6972, - + LocalDisplayGrantsSkillHeraldOfThunderLevel = 6976, + /// /// curse_on_hit_level_poachers_mark /// - CurseOnHitLevelPoachersMark = 6973, - + CurseOnHitLevelPoachersMark = 6977, + /// /// curse_on_hit_level_warlords_mark /// - CurseOnHitLevelWarlordsMark = 6974, - + CurseOnHitLevelWarlordsMark = 6978, + /// /// elemental_damage_can_shock /// - ElementalDamageCanShock = 6975, - + ElementalDamageCanShock = 6979, + /// /// ailment_types_apply_damage_taken_+% /// - AilmentTypesApplyDamageTakenPct = 6976, - + AilmentTypesApplyDamageTakenPct = 6980, + /// /// evasion_rating_+%_while_leeching /// - EvasionRatingPctWhileLeeching = 6977, - + EvasionRatingPctWhileLeeching = 6981, + /// /// blind_enemies_when_hit_%_chance /// - BlindEnemiesWhenHitPctChance = 6978, - + BlindEnemiesWhenHitPctChance = 6982, + /// /// evasion_rating_+%_if_you_have_hit_an_enemy_recently /// - EvasionRatingPctIfYouHaveHitAnEnemyRecently = 6979, - + EvasionRatingPctIfYouHaveHitAnEnemyRecently = 6983, + /// /// gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance /// - Gain1RareMonsterModOnKillFor10SecondsPctChance = 6980, - + Gain1RareMonsterModOnKillFor10SecondsPctChance = 6984, + /// /// enemy_evasion_+%_if_you_have_hit_them_recently /// - EnemyEvasionPctIfYouHaveHitThemRecently = 6981, - + EnemyEvasionPctIfYouHaveHitThemRecently = 6985, + /// /// critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently /// - CriticalStrikeMultiplierIfHaveNotDealtCriticalStrikeRecently = 6982, - + CriticalStrikeMultiplierIfHaveNotDealtCriticalStrikeRecently = 6986, + /// /// number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more /// - NumberOfAdditionalArrowsWhileMainHandAccuracyIs3000OrMore = 6983, - + NumberOfAdditionalArrowsWhileMainHandAccuracyIs3000OrMore = 6987, + /// /// accuracy_rating_is_doubled /// - AccuracyRatingIsDoubled = 6984, - + AccuracyRatingIsDoubled = 6988, + /// /// melee_physical_damage_+%_per_10_strength_while_fortified /// - MeleePhysicalDamagePctPer10StrengthWhileFortified = 6985, - + MeleePhysicalDamagePctPer10StrengthWhileFortified = 6989, + /// /// chance_to_dodge_attacks_%_while_off_hand_is_empty /// - ChanceToDodgeAttacksPctWhileOffHandIsEmpty = 6986, - + ChanceToDodgeAttacksPctWhileOffHandIsEmpty = 6990, + /// /// cold_damage_+%_while_off_hand_is_empty /// - ColdDamagePctWhileOffHandIsEmpty = 6987, - + ColdDamagePctWhileOffHandIsEmpty = 6991, + /// /// iron_reflexes_rotation_active /// - IronReflexesRotationActive = 6988, - + IronReflexesRotationActive = 6992, + /// /// unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes /// - UniqueBowArborixCloseRangeBowDamagePctFinalWhileHaveIronReflexes = 6989, - + UniqueBowArborixCloseRangeBowDamagePctFinalWhileHaveIronReflexes = 6993, + /// /// unique_bow_arborix_close_range_bow_damage_+%_final /// - UniqueBowArborixCloseRangeBowDamagePctFinal = 6990, - + UniqueBowArborixCloseRangeBowDamagePctFinal = 6994, + /// /// virtual_player_far_shot /// - VirtualPlayerFarShot = 6991, - + VirtualPlayerFarShot = 6995, + /// /// gain_player_far_shot_while_do_not_have_iron_reflexes /// - GainPlayerFarShotWhileDoNotHaveIronReflexes = 6992, - + GainPlayerFarShotWhileDoNotHaveIronReflexes = 6996, + /// /// attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes /// - AttackCastAndMovementSpeedPctWhileDoNotHaveIronReflexes = 6993, - + AttackCastAndMovementSpeedPctWhileDoNotHaveIronReflexes = 6997, + /// /// local_display_trigger_death_walk_on_equip_level /// - LocalDisplayTriggerDeathWalkOnEquipLevel = 6994, - + LocalDisplayTriggerDeathWalkOnEquipLevel = 6998, + /// /// number_of_melee_abyss_jewels /// - NumberOfMeleeAbyssJewels = 6995, - + NumberOfMeleeAbyssJewels = 6999, + /// /// number_of_ranged_abyss_jewels /// - NumberOfRangedAbyssJewels = 6996, - + NumberOfRangedAbyssJewels = 7000, + /// /// number_of_caster_abyss_jewels /// - NumberOfCasterAbyssJewels = 6997, - + NumberOfCasterAbyssJewels = 7001, + /// /// number_of_minion_abyss_jewels /// - NumberOfMinionAbyssJewels = 6998, - + NumberOfMinionAbyssJewels = 7002, + /// /// number_of_abyss_jewels /// - NumberOfAbyssJewels = 6999, - + NumberOfAbyssJewels = 7003, + /// /// number_of_abyss_jewel_types /// - NumberOfAbyssJewelTypes = 7000, - + NumberOfAbyssJewelTypes = 7004, + /// /// damage_+%_per_abyss_jewel_type /// - DamagePctPerAbyssJewelType = 7001, - + DamagePctPerAbyssJewelType = 7005, + /// /// support_spell_cascade_damage_+%_final /// - SupportSpellCascadeDamagePctFinal = 7002, - + SupportSpellCascadeDamagePctFinal = 7006, + /// /// virtual_physical_damage_can_chill /// - VirtualPhysicalDamageCanChill = 7003, - + VirtualPhysicalDamageCanChill = 7007, + /// /// virtual_fire_damage_can_chill /// - VirtualFireDamageCanChill = 7004, - + VirtualFireDamageCanChill = 7008, + /// /// virtual_cold_damage_cannot_chill /// - VirtualColdDamageCannotChill = 7005, - + VirtualColdDamageCannotChill = 7009, + /// /// virtual_lightning_damage_can_chill /// - VirtualLightningDamageCanChill = 7006, - + VirtualLightningDamageCanChill = 7010, + /// /// virtual_chaos_damage_can_chill /// - VirtualChaosDamageCanChill = 7007, - + VirtualChaosDamageCanChill = 7011, + /// /// fire_damage_can_chill /// - FireDamageCanChill = 7008, - + FireDamageCanChill = 7012, + /// /// lightning_damage_can_chill /// - LightningDamageCanChill = 7009, - + LightningDamageCanChill = 7013, + /// /// virtual_physical_damage_can_freeze /// - VirtualPhysicalDamageCanFreeze = 7010, - + VirtualPhysicalDamageCanFreeze = 7014, + /// /// virtual_fire_damage_can_freeze /// - VirtualFireDamageCanFreeze = 7011, - + VirtualFireDamageCanFreeze = 7015, + /// /// virtual_cold_damage_cannot_freeze /// - VirtualColdDamageCannotFreeze = 7012, - + VirtualColdDamageCannotFreeze = 7016, + /// /// virtual_lightning_damage_can_freeze /// - VirtualLightningDamageCanFreeze = 7013, - + VirtualLightningDamageCanFreeze = 7017, + /// /// virtual_chaos_damage_can_freeze /// - VirtualChaosDamageCanFreeze = 7014, - + VirtualChaosDamageCanFreeze = 7018, + /// /// physical_damage_can_freeze /// - PhysicalDamageCanFreeze = 7015, - + PhysicalDamageCanFreeze = 7019, + /// /// fire_damage_can_freeze /// - FireDamageCanFreeze = 7016, - + FireDamageCanFreeze = 7020, + /// /// chaos_damage_can_freeze /// - ChaosDamageCanFreeze = 7017, - + ChaosDamageCanFreeze = 7021, + /// /// all_damage_can_freeze /// - AllDamageCanFreeze = 7018, - + AllDamageCanFreeze = 7022, + /// /// virtual_physical_damage_can_shock /// - VirtualPhysicalDamageCanShock = 7019, - + VirtualPhysicalDamageCanShock = 7023, + /// /// virtual_fire_damage_can_shock /// - VirtualFireDamageCanShock = 7020, - + VirtualFireDamageCanShock = 7024, + /// /// virtual_cold_damage_can_shock /// - VirtualColdDamageCanShock = 7021, - + VirtualColdDamageCanShock = 7025, + /// /// virtual_lightning_damage_cannot_shock /// - VirtualLightningDamageCannotShock = 7022, - + VirtualLightningDamageCannotShock = 7026, + /// /// virtual_chaos_damage_can_shock /// - VirtualChaosDamageCanShock = 7023, - + VirtualChaosDamageCanShock = 7027, + /// /// cold_damage_can_shock /// - ColdDamageCanShock = 7024, - + ColdDamageCanShock = 7028, + /// /// chaos_damage_cannot_poison /// - ChaosDamageCannotPoison = 7025, - + ChaosDamageCannotPoison = 7029, + /// /// physical_damage_cannot_poison /// - PhysicalDamageCannotPoison = 7026, - + PhysicalDamageCannotPoison = 7030, + /// /// area_of_effect_+%_with_500_or_more_strength /// - AreaOfEffectPctWith500OrMoreStrength = 7027, - + AreaOfEffectPctWith500OrMoreStrength = 7031, + /// /// area_of_effect_+%_if_have_stunned_an_enemy_recently /// - AreaOfEffectPctIfHaveStunnedAnEnemyRecently = 7028, - + AreaOfEffectPctIfHaveStunnedAnEnemyRecently = 7032, + /// /// track_have_stunned_an_enemy_recently /// - TrackHaveStunnedAnEnemyRecently = 7029, - + TrackHaveStunnedAnEnemyRecently = 7033, + /// /// have_stunned_an_enemy_recently /// - HaveStunnedAnEnemyRecently = 7030, - + HaveStunnedAnEnemyRecently = 7034, + /// /// chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy /// - ChanceToGainEnduranceChargeOnHitPctVsBleedingEnemy = 7031, - + ChanceToGainEnduranceChargeOnHitPctVsBleedingEnemy = 7035, + /// /// local_display_socketed_movement_skills_have_no_mana_cost /// - LocalDisplaySocketedMovementSkillsHaveNoManaCost = 7032, - + LocalDisplaySocketedMovementSkillsHaveNoManaCost = 7036, + /// /// local_hits_with_this_weapon_always_hit_if_have_blocked_recently /// - LocalHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7033, - + LocalHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7037, + /// /// main_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently /// - MainHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7034, - + MainHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7038, + /// /// off_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently /// - OffHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7035, - + OffHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7039, + /// /// additional_block_%_per_endurance_charge /// - AdditionalBlockPctPerEnduranceCharge = 7036, - + AdditionalBlockPctPerEnduranceCharge = 7040, + /// /// attack_speed_+%_if_have_blocked_recently /// - AttackSpeedPctIfHaveBlockedRecently = 7037, - + AttackSpeedPctIfHaveBlockedRecently = 7041, + /// /// local_display_trigger_level_x_smoke_cloud_on_trap_triggered /// - LocalDisplayTriggerLevelXSmokeCloudOnTrapTriggered = 7038, - + LocalDisplayTriggerLevelXSmokeCloudOnTrapTriggered = 7042, + /// /// area_of_effect_+%_while_fortified /// - AreaOfEffectPctWhileFortified = 7039, - + AreaOfEffectPctWhileFortified = 7043, + /// /// melee_weapon_range_+_if_you_have_killed_recently /// - MeleeWeaponRangeIfYouHaveKilledRecently = 7040, - + MeleeWeaponRangeIfYouHaveKilledRecently = 7044, + /// /// melee_weapon_range_+_while_fortified /// - MeleeWeaponRangeWhileFortified = 7041, - + MeleeWeaponRangeWhileFortified = 7045, + /// /// stun_duration_+%_per_15_strength /// - StunDurationPctPer15Strength = 7042, - + StunDurationPctPer15Strength = 7046, + /// /// stun_threshold_reduction_+%_with_500_or_more_strength /// - StunThresholdReductionPctWith500OrMoreStrength = 7043, - + StunThresholdReductionPctWith500OrMoreStrength = 7047, + /// /// area_of_effect_+%_per_endurance_charge /// - AreaOfEffectPctPerEnduranceCharge = 7044, - + AreaOfEffectPctPerEnduranceCharge = 7048, + /// /// area_damage_+%_per_12_strength /// - AreaDamagePctPer12Strength = 7045, - + AreaDamagePctPer12Strength = 7049, + /// /// damage_+%_vs_taunted_enemies /// - DamagePctVsTauntedEnemies = 7046, - + DamagePctVsTauntedEnemies = 7050, + /// /// chance_to_gain_endurance_charge_when_you_taunt_enemy_% /// - ChanceToGainEnduranceChargeWhenYouTauntEnemyPct = 7047, - + ChanceToGainEnduranceChargeWhenYouTauntEnemyPct = 7051, + /// /// attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies /// - AttacksChanceToBleedOnHitPctVsTauntedEnemies = 7048, - + AttacksChanceToBleedOnHitPctVsTauntedEnemies = 7052, + /// /// bleed_damage_+%_per_endurance_charge /// - BleedDamagePctPerEnduranceCharge = 7049, - + BleedDamagePctPerEnduranceCharge = 7053, + /// /// melee_movement_skill_chance_to_fortify_on_hit_% /// - MeleeMovementSkillChanceToFortifyOnHitPct = 7050, - + MeleeMovementSkillChanceToFortifyOnHitPct = 7054, + /// /// melee_weapon_range_+_while_at_maximum_frenzy_charges /// - MeleeWeaponRangeWhileAtMaximumFrenzyCharges = 7051, - + MeleeWeaponRangeWhileAtMaximumFrenzyCharges = 7055, + /// /// poison_damage_+%_vs_bleeding_enemies /// - PoisonDamagePctVsBleedingEnemies = 7052, - + PoisonDamagePctVsBleedingEnemies = 7056, + /// /// additional_physical_damage_reduction_%_while_moving /// - AdditionalPhysicalDamageReductionPctWhileMoving = 7053, - + AdditionalPhysicalDamageReductionPctWhileMoving = 7057, + /// /// elemental_damage_taken_+%_while_stationary /// - ElementalDamageTakenPctWhileStationary = 7054, - + ElementalDamageTakenPctWhileStationary = 7058, + /// /// map_monsters_avoid_ailments_% /// - MapMonstersAvoidAilmentsPct = 7055, - + MapMonstersAvoidAilmentsPct = 7059, + /// /// number_of_endurance_charges_to_gain_every_4_seconds_while_stationary /// - NumberOfEnduranceChargesToGainEvery4SecondsWhileStationary = 7056, - + NumberOfEnduranceChargesToGainEvery4SecondsWhileStationary = 7060, + /// /// maximum_life_+%_per_abyssal_jewel_affecting_you /// - MaximumLifePctPerAbyssalJewelAffectingYou = 7057, - + MaximumLifePctPerAbyssalJewelAffectingYou = 7061, + /// /// maximum_mana_+%_per_abyssal_jewel_affecting_you /// - MaximumManaPctPerAbyssalJewelAffectingYou = 7058, - + MaximumManaPctPerAbyssalJewelAffectingYou = 7062, + /// /// cast_speed_+%_during_flask_effect /// - CastSpeedPctDuringFlaskEffect = 7059, - + CastSpeedPctDuringFlaskEffect = 7063, + /// /// melee_damage_+%_during_flask_effect /// - MeleeDamagePctDuringFlaskEffect = 7060, - + MeleeDamagePctDuringFlaskEffect = 7064, + /// /// projectile_attack_damage_+%_during_flask_effect /// - ProjectileAttackDamagePctDuringFlaskEffect = 7061, - + ProjectileAttackDamagePctDuringFlaskEffect = 7065, + /// /// spell_damage_+%_during_flask_effect /// - SpellDamagePctDuringFlaskEffect = 7062, - + SpellDamagePctDuringFlaskEffect = 7066, + /// /// local_crits_have_culling_strike /// - LocalCritsHaveCullingStrike = 7063, - + LocalCritsHaveCullingStrike = 7067, + /// /// main_hand_local_crits_have_culling_strike /// - MainHandLocalCritsHaveCullingStrike = 7064, - + MainHandLocalCritsHaveCullingStrike = 7068, + /// /// off_hand_local_crits_have_culling_strike /// - OffHandLocalCritsHaveCullingStrike = 7065, - + OffHandLocalCritsHaveCullingStrike = 7069, + /// /// global_minimum_added_fire_damage_vs_ignited_enemies /// - GlobalMinimumAddedFireDamageVsIgnitedEnemies = 7066, - + GlobalMinimumAddedFireDamageVsIgnitedEnemies = 7070, + /// /// global_maximum_added_fire_damage_vs_ignited_enemies /// - GlobalMaximumAddedFireDamageVsIgnitedEnemies = 7067, - + GlobalMaximumAddedFireDamageVsIgnitedEnemies = 7071, + /// /// global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies /// - GlobalMinimumAddedColdDamageVsChilledOrFrozenEnemies = 7068, - + GlobalMinimumAddedColdDamageVsChilledOrFrozenEnemies = 7072, + /// /// global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies /// - GlobalMaximumAddedColdDamageVsChilledOrFrozenEnemies = 7069, - + GlobalMaximumAddedColdDamageVsChilledOrFrozenEnemies = 7073, + /// /// global_minimum_added_lightning_damage_vs_shocked_enemies /// - GlobalMinimumAddedLightningDamageVsShockedEnemies = 7070, - + GlobalMinimumAddedLightningDamageVsShockedEnemies = 7074, + /// /// global_maximum_added_lightning_damage_vs_shocked_enemies /// - GlobalMaximumAddedLightningDamageVsShockedEnemies = 7071, - + GlobalMaximumAddedLightningDamageVsShockedEnemies = 7075, + /// /// chill_attackers_for_4_seconds_on_block_%_chance /// - ChillAttackersFor4SecondsOnBlockPctChance = 7072, - + ChillAttackersFor4SecondsOnBlockPctChance = 7076, + /// /// shock_attackers_for_4_seconds_on_block_%_chance /// - ShockAttackersFor4SecondsOnBlockPctChance = 7073, - + ShockAttackersFor4SecondsOnBlockPctChance = 7077, + /// /// damage_+%_per_1%_block_chance /// - DamagePctPer1PctBlockChance = 7074, - + DamagePctPer1PctBlockChance = 7078, + /// /// dodge_attacks_chance_%_if_you_have_blocked_recently /// - DodgeAttacksChancePctIfYouHaveBlockedRecently = 7075, - + DodgeAttacksChancePctIfYouHaveBlockedRecently = 7079, + /// /// damage_+%_per_15_strength /// - DamagePctPer15Strength = 7076, - + DamagePctPer15Strength = 7080, + /// /// damage_+%_per_15_dex /// - DamagePctPer15Dex = 7077, - + DamagePctPer15Dex = 7081, + /// /// damage_+%_per_15_int /// - DamagePctPer15Int = 7078, - + DamagePctPer15Int = 7082, + /// /// additional_block_%_with_5_or_more_nearby_enemies /// - AdditionalBlockPctWith5OrMoreNearbyEnemies = 7079, - + AdditionalBlockPctWith5OrMoreNearbyEnemies = 7083, + /// /// gain_random_charge_on_block /// - GainRandomChargeOnBlock = 7080, - + GainRandomChargeOnBlock = 7084, + /// /// chance_to_evade_attacks_% /// - ChanceToEvadeAttacksPct = 7081, - + ChanceToEvadeAttacksPct = 7085, + /// /// mana_gained_on_spell_hit /// - ManaGainedOnSpellHit = 7082, - + ManaGainedOnSpellHit = 7086, + /// /// remove_ignite_and_burning_on_flask_use /// - RemoveIgniteAndBurningOnFlaskUse = 7083, - + RemoveIgniteAndBurningOnFlaskUse = 7087, + /// /// remove_chill_and_freeze_on_flask_use /// - RemoveChillAndFreezeOnFlaskUse = 7084, - + RemoveChillAndFreezeOnFlaskUse = 7088, + /// /// remove_shock_on_flask_use /// - RemoveShockOnFlaskUse = 7085, - + RemoveShockOnFlaskUse = 7089, + /// /// number_of_equipped_elder_items /// - NumberOfEquippedElderItems = 7086, - + NumberOfEquippedElderItems = 7090, + /// /// maximum_life_per_equipped_elder_item /// - MaximumLifePerEquippedElderItem = 7087, - + MaximumLifePerEquippedElderItem = 7091, + /// /// non_damaging_ailment_effect_+%_per_equipped_elder_item /// - NonDamagingAilmentEffectPctPerEquippedElderItem = 7088, - + NonDamagingAilmentEffectPctPerEquippedElderItem = 7092, + /// /// ailment_damage_+%_per_equipped_elder_item /// - AilmentDamagePctPerEquippedElderItem = 7089, - + AilmentDamagePctPerEquippedElderItem = 7093, + /// /// remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder /// - RemoveRandomAilmentOnFlaskUseIfAllEquippedItemsAreElder = 7090, - + RemoveRandomAilmentOnFlaskUseIfAllEquippedItemsAreElder = 7094, + /// /// virtual_freeze_effect_+% /// - VirtualFreezeEffectPct = 7091, - + VirtualFreezeEffectPct = 7095, + /// /// virtual_ignite_effect_+% /// - VirtualIgniteEffectPct = 7092, - + VirtualIgniteEffectPct = 7096, + /// /// virtual_poison_effect_+% /// - VirtualPoisonEffectPct = 7093, - + VirtualPoisonEffectPct = 7097, + /// /// virtual_bleed_effect_+% /// - VirtualBleedEffectPct = 7094, - + VirtualBleedEffectPct = 7098, + /// /// virtual_minion_elemental_resistance_% /// - VirtualMinionElementalResistancePct = 7095, - + VirtualMinionElementalResistancePct = 7099, + /// /// minion_elemental_resistance_30% /// - MinionElementalResistance30Pct = 7096, - + MinionElementalResistance30Pct = 7100, + /// /// strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead /// - StrengthDamageBonusGrantsMeleePhysicalDamage3PctPer10StrengthInstead = 7097, - + StrengthDamageBonusGrantsMeleePhysicalDamage3PctPer10StrengthInstead = 7101, + /// /// fortify_duration_+%_per_10_strength /// - FortifyDurationPctPer10Strength = 7098, - + FortifyDurationPctPer10Strength = 7102, + /// /// attack_additional_critical_strike_chance_permyriad /// - AttackAdditionalCriticalStrikeChancePermyriad = 7099, - + AttackAdditionalCriticalStrikeChancePermyriad = 7103, + /// /// spell_additional_critical_strike_chance_permyriad /// - SpellAdditionalCriticalStrikeChancePermyriad = 7100, - + SpellAdditionalCriticalStrikeChancePermyriad = 7104, + /// /// virtual_fortify_duration_+% /// - VirtualFortifyDurationPct = 7101, - + VirtualFortifyDurationPct = 7105, + /// /// virtual_fortify_effect_on_self_+% /// - VirtualFortifyEffectOnSelfPct = 7102, - + VirtualFortifyEffectOnSelfPct = 7106, + /// /// fortify_effect_on_self_+%_while_stationary /// - FortifyEffectOnSelfPctWhileStationary = 7103, - + FortifyEffectOnSelfPctWhileStationary = 7107, + /// /// remove_bleeding_on_warcry /// - RemoveBleedingOnWarcry = 7104, - + RemoveBleedingOnWarcry = 7108, + /// /// chance_to_gain_endurance_charge_when_you_stun_enemy_% /// - ChanceToGainEnduranceChargeWhenYouStunEnemyPct = 7105, - + ChanceToGainEnduranceChargeWhenYouStunEnemyPct = 7109, + /// /// critical_strike_multiplier_+_if_you_have_blocked_recently /// - CriticalStrikeMultiplierIfYouHaveBlockedRecently = 7106, - + CriticalStrikeMultiplierIfYouHaveBlockedRecently = 7110, + /// /// bleeding_damage_+%_vs_poisoned_enemies /// - BleedingDamagePctVsPoisonedEnemies = 7107, - + BleedingDamagePctVsPoisonedEnemies = 7111, + /// /// area_of_effect_+%_if_you_have_blocked_recently /// - AreaOfEffectPctIfYouHaveBlockedRecently = 7108, - + AreaOfEffectPctIfYouHaveBlockedRecently = 7112, + /// /// elemental_damage_+%_per_power_charge /// - ElementalDamagePctPerPowerCharge = 7109, - + ElementalDamagePctPerPowerCharge = 7113, + /// /// elemental_damage_+%_per_12_int /// - ElementalDamagePctPer12Int = 7110, - + ElementalDamagePctPer12Int = 7114, + /// /// elemental_damage_+%_per_12_strength /// - ElementalDamagePctPer12Strength = 7111, - + ElementalDamagePctPer12Strength = 7115, + /// /// elemental_damage_taken_+%_per_endurance_charge /// - ElementalDamageTakenPctPerEnduranceCharge = 7112, - + ElementalDamageTakenPctPerEnduranceCharge = 7116, + /// /// additional_block_%_if_you_have_crit_recently /// - AdditionalBlockPctIfYouHaveCritRecently = 7113, - + AdditionalBlockPctIfYouHaveCritRecently = 7117, + /// /// area_of_effect_+%_per_50_strength /// - AreaOfEffectPctPer50Strength = 7114, - + AreaOfEffectPctPer50Strength = 7118, + /// /// local_life_gain_per_target_vs_blinded_enemies /// - LocalLifeGainPerTargetVsBlindedEnemies = 7115, - + LocalLifeGainPerTargetVsBlindedEnemies = 7119, + /// /// main_hand_local_life_gain_per_target_vs_blinded_enemies /// - MainHandLocalLifeGainPerTargetVsBlindedEnemies = 7116, - + MainHandLocalLifeGainPerTargetVsBlindedEnemies = 7120, + /// /// off_hand_local_life_gain_per_target_vs_blinded_enemies /// - OffHandLocalLifeGainPerTargetVsBlindedEnemies = 7117, - + OffHandLocalLifeGainPerTargetVsBlindedEnemies = 7121, + /// /// local_culling_strike_if_crit_recently /// - LocalCullingStrikeIfCritRecently = 7118, - + LocalCullingStrikeIfCritRecently = 7122, + /// /// main_hand_culling_strike_if_crit_recently /// - MainHandCullingStrikeIfCritRecently = 7119, - + MainHandCullingStrikeIfCritRecently = 7123, + /// /// off_hand_culling_strike_if_crit_recently /// - OffHandCullingStrikeIfCritRecently = 7120, - + OffHandCullingStrikeIfCritRecently = 7124, + /// /// support_mirage_archer_base_duration /// - SupportMirageArcherBaseDuration = 7121, - + SupportMirageArcherBaseDuration = 7125, + /// /// support_mirage_archer_duration /// - SupportMirageArcherDuration = 7122, - + SupportMirageArcherDuration = 7126, + /// /// summon_mirage_archer_on_hit /// - SummonMirageArcherOnHit = 7123, - + SummonMirageArcherOnHit = 7127, + /// /// skill_can_own_mirage_archers /// - SkillCanOwnMirageArchers = 7124, - + SkillCanOwnMirageArchers = 7128, + /// /// number_of_mirage_archers_allowed /// - NumberOfMirageArchersAllowed = 7125, - + NumberOfMirageArchersAllowed = 7129, + /// /// support_mirage_archer_damage_+%_final /// - SupportMirageArcherDamagePctFinal = 7126, - + SupportMirageArcherDamagePctFinal = 7130, + /// /// use_scaled_contact_offset /// - UseScaledContactOffset = 7127, - + UseScaledContactOffset = 7131, + /// /// local_culling_strike_vs_bleeding_enemies /// - LocalCullingStrikeVsBleedingEnemies = 7128, - + LocalCullingStrikeVsBleedingEnemies = 7132, + /// /// main_hand_culling_strike_vs_bleeding_enemies /// - MainHandCullingStrikeVsBleedingEnemies = 7129, - + MainHandCullingStrikeVsBleedingEnemies = 7133, + /// /// off_hand_culling_strike_vs_bleeding_enemies /// - OffHandCullingStrikeVsBleedingEnemies = 7130, - + OffHandCullingStrikeVsBleedingEnemies = 7134, + /// /// local_display_grants_level_x_blood_offering_skill /// - LocalDisplayGrantsLevelXBloodOfferingSkill = 7131, - + LocalDisplayGrantsLevelXBloodOfferingSkill = 7135, + /// /// active_skill_projectile_speed_+%_variation_final /// - ActiveSkillProjectileSpeedPctVariationFinal = 7132, - + ActiveSkillProjectileSpeedPctVariationFinal = 7136, + /// /// local_socketed_abyss_jewel_effect_+% /// - LocalSocketedAbyssJewelEffectPct = 7133, - + LocalSocketedAbyssJewelEffectPct = 7137, + /// /// non_piercing_projectiles_critical_strike_chance_+% /// - NonPiercingProjectilesCriticalStrikeChancePct = 7134, - + NonPiercingProjectilesCriticalStrikeChancePct = 7138, + /// /// local_evasion_rating_and_energy_shield /// - LocalEvasionRatingAndEnergyShield = 7135, - + LocalEvasionRatingAndEnergyShield = 7139, + /// /// number_of_additional_projectiles_if_you_have_been_hit_recently /// - NumberOfAdditionalProjectilesIfYouHaveBeenHitRecently = 7136, - + NumberOfAdditionalProjectilesIfYouHaveBeenHitRecently = 7140, + /// /// gain_iron_reflexes_while_stationary /// - GainIronReflexesWhileStationary = 7137, - + GainIronReflexesWhileStationary = 7141, + /// /// armour_+%_while_stationary /// - ArmourPctWhileStationary = 7138, - + ArmourPctWhileStationary = 7142, + /// /// number_of_additional_projectiles_if_you_have_used_movement_skill_recently /// - NumberOfAdditionalProjectilesIfYouHaveUsedMovementSkillRecently = 7139, - + NumberOfAdditionalProjectilesIfYouHaveUsedMovementSkillRecently = 7143, + /// /// virtual_keystone_iron_reflexes /// - VirtualKeystoneIronReflexes = 7140, - + VirtualKeystoneIronReflexes = 7144, + /// /// attacks_intimidate_on_hit_% /// - AttacksIntimidateOnHitPct = 7141, - + AttacksIntimidateOnHitPct = 7145, + /// /// local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed /// - LocalAttacksIntimidateOnHitFor4SecondsWithMeleeAbyssJewelSocketed = 7142, - + LocalAttacksIntimidateOnHitFor4SecondsWithMeleeAbyssJewelSocketed = 7146, + /// /// local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed /// - LocalAttacksMaimOnHitFor4SecondsWithRangedAbyssJewelSocketed = 7143, - + LocalAttacksMaimOnHitFor4SecondsWithRangedAbyssJewelSocketed = 7147, + /// /// elemental_overload_rotation_active /// - ElementalOverloadRotationActive = 7144, - + ElementalOverloadRotationActive = 7148, + /// /// gain_resolute_technique_while_do_not_have_elemental_overload /// - GainResoluteTechniqueWhileDoNotHaveElementalOverload = 7145, - + GainResoluteTechniqueWhileDoNotHaveElementalOverload = 7149, + /// /// virtual_keystone_resolute_technique /// - VirtualKeystoneResoluteTechnique = 7146, - + VirtualKeystoneResoluteTechnique = 7150, + /// /// local_minimum_added_physical_damage_vs_ignited_enemies /// - LocalMinimumAddedPhysicalDamageVsIgnitedEnemies = 7147, - + LocalMinimumAddedPhysicalDamageVsIgnitedEnemies = 7151, + /// /// local_maximum_added_physical_damage_vs_ignited_enemies /// - LocalMaximumAddedPhysicalDamageVsIgnitedEnemies = 7148, - + LocalMaximumAddedPhysicalDamageVsIgnitedEnemies = 7152, + /// /// local_minimum_added_fire_damage_vs_bleeding_enemies /// - LocalMinimumAddedFireDamageVsBleedingEnemies = 7149, - + LocalMinimumAddedFireDamageVsBleedingEnemies = 7153, + /// /// local_maximum_added_fire_damage_vs_bleeding_enemies /// - LocalMaximumAddedFireDamageVsBleedingEnemies = 7150, - + LocalMaximumAddedFireDamageVsBleedingEnemies = 7154, + /// /// main_hand_minimum_added_physical_damage_vs_ignited_enemies /// - MainHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7151, - + MainHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7155, + /// /// main_hand_maximum_added_physical_damage_vs_ignited_enemies /// - MainHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7152, - + MainHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7156, + /// /// main_hand_minimum_added_fire_damage_vs_bleeding_enemies /// - MainHandMinimumAddedFireDamageVsBleedingEnemies = 7153, - + MainHandMinimumAddedFireDamageVsBleedingEnemies = 7157, + /// /// main_hand_maximum_added_fire_damage_vs_bleeding_enemies /// - MainHandMaximumAddedFireDamageVsBleedingEnemies = 7154, - + MainHandMaximumAddedFireDamageVsBleedingEnemies = 7158, + /// /// off_hand_minimum_added_physical_damage_vs_ignited_enemies /// - OffHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7155, - + OffHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7159, + /// /// off_hand_maximum_added_physical_damage_vs_ignited_enemies /// - OffHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7156, - + OffHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7160, + /// /// off_hand_minimum_added_fire_damage_vs_bleeding_enemies /// - OffHandMinimumAddedFireDamageVsBleedingEnemies = 7157, - + OffHandMinimumAddedFireDamageVsBleedingEnemies = 7161, + /// /// off_hand_maximum_added_fire_damage_vs_bleeding_enemies /// - OffHandMaximumAddedFireDamageVsBleedingEnemies = 7158, - + OffHandMaximumAddedFireDamageVsBleedingEnemies = 7162, + /// /// local_chance_bleed_on_hit_%_vs_ignited_enemies /// - LocalChanceBleedOnHitPctVsIgnitedEnemies = 7159, - + LocalChanceBleedOnHitPctVsIgnitedEnemies = 7163, + /// /// main_hand_chance_bleed_on_hit_%_vs_ignited_enemies /// - MainHandChanceBleedOnHitPctVsIgnitedEnemies = 7160, - + MainHandChanceBleedOnHitPctVsIgnitedEnemies = 7164, + /// /// off_hand_chance_bleed_on_hit_%_vs_ignited_enemies /// - OffHandChanceBleedOnHitPctVsIgnitedEnemies = 7161, - + OffHandChanceBleedOnHitPctVsIgnitedEnemies = 7165, + /// /// avatar_of_fire_rotation_active /// - AvatarOfFireRotationActive = 7162, - + AvatarOfFireRotationActive = 7166, + /// /// critical_strike_chance_+%_while_you_have_avatar_of_fire /// - CriticalStrikeChancePctWhileYouHaveAvatarOfFire = 7163, - + CriticalStrikeChancePctWhileYouHaveAvatarOfFire = 7167, + /// /// physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire /// - PhysicalDamagePctToConvertToFireWhileYouHaveAvatarOfFire = 7164, - + PhysicalDamagePctToConvertToFireWhileYouHaveAvatarOfFire = 7168, + /// /// armour_while_you_do_not_have_avatar_of_fire /// - ArmourWhileYouDoNotHaveAvatarOfFire = 7165, - + ArmourWhileYouDoNotHaveAvatarOfFire = 7169, + /// /// non_chaos_damage_to_add_as_chaos_damage_% /// - NonChaosDamageToAddAsChaosDamagePct = 7166, - + NonChaosDamageToAddAsChaosDamagePct = 7170, + /// /// projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain /// - ProjectileNonChaosDamageToAddAsChaosDamagePctPerChain = 7167, - + ProjectileNonChaosDamageToAddAsChaosDamagePctPerChain = 7171, + /// /// attack_speed_+%_if_enemy_killed_recently /// - AttackSpeedPctIfEnemyKilledRecently = 7168, - + AttackSpeedPctIfEnemyKilledRecently = 7172, + /// /// critical_strike_chance_+%_if_enemy_killed_recently /// - CriticalStrikeChancePctIfEnemyKilledRecently = 7169, - + CriticalStrikeChancePctIfEnemyKilledRecently = 7173, + /// /// projectile_damage_+%_per_pierced_enemy /// - ProjectileDamagePctPerPiercedEnemy = 7170, - + ProjectileDamagePctPerPiercedEnemy = 7174, + /// /// recover_energy_shield_%_on_kill /// - RecoverEnergyShieldPctOnKill = 7171, - + RecoverEnergyShieldPctOnKill = 7175, + /// /// map_monsters_add_power_charge_on_hit_% /// - MapMonstersAddPowerChargeOnHitPct = 7172, - + MapMonstersAddPowerChargeOnHitPct = 7176, + /// /// map_monsters_add_frenzy_charge_on_hit_% /// - MapMonstersAddFrenzyChargeOnHitPct = 7173, - + MapMonstersAddFrenzyChargeOnHitPct = 7177, + /// /// map_monsters_add_endurance_charge_on_hit_% /// - MapMonstersAddEnduranceChargeOnHitPct = 7174, - + MapMonstersAddEnduranceChargeOnHitPct = 7178, + /// /// local_life_gain_per_target_while_leeching /// - LocalLifeGainPerTargetWhileLeeching = 7175, - + LocalLifeGainPerTargetWhileLeeching = 7179, + /// /// main_hand_life_gain_per_target_while_leeching /// - MainHandLifeGainPerTargetWhileLeeching = 7176, - + MainHandLifeGainPerTargetWhileLeeching = 7180, + /// /// off_hand_life_gain_per_target_while_leeching /// - OffHandLifeGainPerTargetWhileLeeching = 7177, - + OffHandLifeGainPerTargetWhileLeeching = 7181, + /// /// local_display_socketed_gems_supported_by_level_x_mirage_archer /// - LocalDisplaySocketedGemsSupportedByLevelXMirageArcher = 7178, - + LocalDisplaySocketedGemsSupportedByLevelXMirageArcher = 7182, + /// /// spectre_duration /// - SpectreDuration = 7179, - + SpectreDuration = 7183, + /// /// arrows_that_pierce_also_return /// - ArrowsThatPierceAlsoReturn = 7180, - + ArrowsThatPierceAlsoReturn = 7184, + /// /// predict_totem_maximum_life /// - PredictTotemMaximumLife = 7181, - + PredictTotemMaximumLife = 7185, + /// /// unique_monster_dropped_item_rarity_+% /// - UniqueMonsterDroppedItemRarityPct = 7182, - + UniqueMonsterDroppedItemRarityPct = 7186, + /// /// cannot_block_spells /// - CannotBlockSpells = 7183, - + CannotBlockSpells = 7187, + /// /// gain_endurance_charge_%_chance_when_you_lose_fortify /// - GainEnduranceChargePctChanceWhenYouLoseFortify = 7184, - + GainEnduranceChargePctChanceWhenYouLoseFortify = 7188, + /// /// affected_by_determination /// - AffectedByDetermination = 7185, - + AffectedByDetermination = 7189, + /// /// affected_by_grace /// - AffectedByGrace = 7186, - + AffectedByGrace = 7190, + /// /// affected_by_discipline /// - AffectedByDiscipline = 7187, - + AffectedByDiscipline = 7191, + /// /// affected_by_wrath /// - AffectedByWrath = 7188, - + AffectedByWrath = 7192, + /// /// affected_by_anger /// - AffectedByAnger = 7189, - + AffectedByAnger = 7193, + /// /// affected_by_hatred /// - AffectedByHatred = 7190, - + AffectedByHatred = 7194, + /// /// affected_by_vitality /// - AffectedByVitality = 7191, - + AffectedByVitality = 7195, + /// /// affected_by_clarity /// - AffectedByClarity = 7192, - + AffectedByClarity = 7196, + /// /// affected_by_haste /// - AffectedByHaste = 7193, - + AffectedByHaste = 7197, + /// /// affected_by_purity_of_fire /// - AffectedByPurityOfFire = 7194, - + AffectedByPurityOfFire = 7198, + /// /// affected_by_purity_of_ice /// - AffectedByPurityOfIce = 7195, - + AffectedByPurityOfIce = 7199, + /// /// affected_by_purity_of_lightning /// - AffectedByPurityOfLightning = 7196, - + AffectedByPurityOfLightning = 7200, + /// /// affected_by_purity_of_elements /// - AffectedByPurityOfElements = 7197, - + AffectedByPurityOfElements = 7201, + /// /// additional_physical_damage_reduction_%_while_affected_by_determination /// - AdditionalPhysicalDamageReductionPctWhileAffectedByDetermination = 7198, - + AdditionalPhysicalDamageReductionPctWhileAffectedByDetermination = 7202, + /// /// block_%_while_affected_by_determination /// - BlockPctWhileAffectedByDetermination = 7199, - + BlockPctWhileAffectedByDetermination = 7203, + /// /// extra_damage_taken_from_crit_+%_while_affected_by_determination /// - ExtraDamageTakenFromCritPctWhileAffectedByDetermination = 7200, - + ExtraDamageTakenFromCritPctWhileAffectedByDetermination = 7204, + /// /// chance_to_evade_attacks_%_while_affected_by_grace /// - ChanceToEvadeAttacksPctWhileAffectedByGrace = 7201, - + ChanceToEvadeAttacksPctWhileAffectedByGrace = 7205, + /// /// chance_to_dodge_attacks_%_while_affected_by_grace /// - ChanceToDodgeAttacksPctWhileAffectedByGrace = 7202, - + ChanceToDodgeAttacksPctWhileAffectedByGrace = 7206, + /// /// movement_speed_+%_while_affected_by_grace /// - MovementSpeedPctWhileAffectedByGrace = 7203, - + MovementSpeedPctWhileAffectedByGrace = 7207, + /// /// unaffected_by_vulnerability_while_affected_by_determination /// - UnaffectedByVulnerabilityWhileAffectedByDetermination = 7204, - + UnaffectedByVulnerabilityWhileAffectedByDetermination = 7208, + /// /// unaffected_by_enfeeble_while_affected_by_grace /// - UnaffectedByEnfeebleWhileAffectedByGrace = 7205, - + UnaffectedByEnfeebleWhileAffectedByGrace = 7209, + /// /// unaffected_by_temporal_chains_while_affected_by_haste /// - UnaffectedByTemporalChainsWhileAffectedByHaste = 7206, - + UnaffectedByTemporalChainsWhileAffectedByHaste = 7210, + /// /// unaffected_by_burning_ground_while_affected_by_purity_of_fire /// - UnaffectedByBurningGroundWhileAffectedByPurityOfFire = 7207, - + UnaffectedByBurningGroundWhileAffectedByPurityOfFire = 7211, + /// /// unaffected_by_flammability_while_affected_by_purity_of_fire /// - UnaffectedByFlammabilityWhileAffectedByPurityOfFire = 7208, - + UnaffectedByFlammabilityWhileAffectedByPurityOfFire = 7212, + /// /// unaffected_by_chilled_ground_while_affected_by_purity_of_ice /// - UnaffectedByChilledGroundWhileAffectedByPurityOfIce = 7209, - + UnaffectedByChilledGroundWhileAffectedByPurityOfIce = 7213, + /// /// unaffected_by_frostbite_while_affected_by_purity_of_ice /// - UnaffectedByFrostbiteWhileAffectedByPurityOfIce = 7210, - + UnaffectedByFrostbiteWhileAffectedByPurityOfIce = 7214, + /// /// unaffected_by_shocked_ground_while_affected_by_purity_of_lightning /// - UnaffectedByShockedGroundWhileAffectedByPurityOfLightning = 7211, - + UnaffectedByShockedGroundWhileAffectedByPurityOfLightning = 7215, + /// /// unaffected_by_conductivity_while_affected_by_purity_of_lightning /// - UnaffectedByConductivityWhileAffectedByPurityOfLightning = 7212, - + UnaffectedByConductivityWhileAffectedByPurityOfLightning = 7216, + /// /// unaffected_by_elemental_weakness_while_affected_by_purity_of_elements /// - UnaffectedByElementalWeaknessWhileAffectedByPurityOfElements = 7213, - + UnaffectedByElementalWeaknessWhileAffectedByPurityOfElements = 7217, + /// /// reduce_enemy_cold_resistance_%_while_affected_by_hatred /// - ReduceEnemyColdResistancePctWhileAffectedByHatred = 7214, - + ReduceEnemyColdResistancePctWhileAffectedByHatred = 7218, + /// /// reduce_enemy_fire_resistance_%_while_affected_by_anger /// - ReduceEnemyFireResistancePctWhileAffectedByAnger = 7215, - + ReduceEnemyFireResistancePctWhileAffectedByAnger = 7219, + /// /// reduce_enemy_lightning_resistance_%_while_affected_by_wrath /// - ReduceEnemyLightningResistancePctWhileAffectedByWrath = 7216, - + ReduceEnemyLightningResistancePctWhileAffectedByWrath = 7220, + /// /// energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline /// - EnergyShieldRegenerationRatePerMinutePctWhileAffectedByDiscipline = 7217, - + EnergyShieldRegenerationRatePerMinutePctWhileAffectedByDiscipline = 7221, + /// /// chance_to_block_spells_%_while_affected_by_discipline /// - ChanceToBlockSpellsPctWhileAffectedByDiscipline = 7218, - + ChanceToBlockSpellsPctWhileAffectedByDiscipline = 7222, + /// /// energy_shield_delay_-%_while_affected_by_discipline /// - EnergyShieldDelayPctWhileAffectedByDiscipline = 7219, - + EnergyShieldDelayPctWhileAffectedByDiscipline = 7223, + /// /// energy_shield_gain_per_target_hit_while_affected_by_discipline /// - EnergyShieldGainPerTargetHitWhileAffectedByDiscipline = 7220, - + EnergyShieldGainPerTargetHitWhileAffectedByDiscipline = 7224, + /// /// mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath /// - ManaLeechFromLightningDamagePermyriadWhileAffectedByWrath = 7221, - + ManaLeechFromLightningDamagePermyriadWhileAffectedByWrath = 7225, + /// /// physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath /// - PhysicalDamagePctToAddAsLightningDamageWhileAffectedByWrath = 7222, - + PhysicalDamagePctToAddAsLightningDamageWhileAffectedByWrath = 7226, + /// /// base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath /// - BasePhysicalDamagePctToConvertToLightningWhileAffectedByWrath = 7223, - + BasePhysicalDamagePctToConvertToLightningWhileAffectedByWrath = 7227, + /// /// virtual_non_skill_physical_damage_%_to_convert_to_fire /// - VirtualNonSkillPhysicalDamagePctToConvertToFire = 7224, - + VirtualNonSkillPhysicalDamagePctToConvertToFire = 7228, + /// /// virtual_non_skill_physical_damage_%_to_convert_to_cold /// - VirtualNonSkillPhysicalDamagePctToConvertToCold = 7225, - + VirtualNonSkillPhysicalDamagePctToConvertToCold = 7229, + /// /// virtual_non_skill_physical_damage_%_to_convert_to_lightning /// - VirtualNonSkillPhysicalDamagePctToConvertToLightning = 7226, - + VirtualNonSkillPhysicalDamagePctToConvertToLightning = 7230, + /// /// virtual_non_skill_physical_damage_%_to_convert_to_chaos /// - VirtualNonSkillPhysicalDamagePctToConvertToChaos = 7227, - + VirtualNonSkillPhysicalDamagePctToConvertToChaos = 7231, + /// /// virtual_non_skill_lightning_damage_%_to_convert_to_fire /// - VirtualNonSkillLightningDamagePctToConvertToFire = 7228, - + VirtualNonSkillLightningDamagePctToConvertToFire = 7232, + /// /// virtual_non_skill_lightning_damage_%_to_convert_to_cold /// - VirtualNonSkillLightningDamagePctToConvertToCold = 7229, - + VirtualNonSkillLightningDamagePctToConvertToCold = 7233, + /// /// virtual_non_skill_lightning_damage_%_to_convert_to_chaos /// - VirtualNonSkillLightningDamagePctToConvertToChaos = 7230, - + VirtualNonSkillLightningDamagePctToConvertToChaos = 7234, + /// /// virtual_non_skill_cold_damage_%_to_convert_to_fire /// - VirtualNonSkillColdDamagePctToConvertToFire = 7231, - + VirtualNonSkillColdDamagePctToConvertToFire = 7235, + /// /// virtual_non_skill_cold_damage_%_to_convert_to_chaos /// - VirtualNonSkillColdDamagePctToConvertToChaos = 7232, - + VirtualNonSkillColdDamagePctToConvertToChaos = 7236, + /// /// virtual_non_skill_fire_damage_%_to_convert_to_chaos /// - VirtualNonSkillFireDamagePctToConvertToChaos = 7233, - + VirtualNonSkillFireDamagePctToConvertToChaos = 7237, + /// /// base_physical_damage_%_to_convert_to_fire_while_affected_by_anger /// - BasePhysicalDamagePctToConvertToFireWhileAffectedByAnger = 7234, - + BasePhysicalDamagePctToConvertToFireWhileAffectedByAnger = 7238, + /// /// physical_damage_%_to_add_as_fire_damage_while_affected_by_anger /// - PhysicalDamagePctToAddAsFireDamageWhileAffectedByAnger = 7235, - + PhysicalDamagePctToAddAsFireDamageWhileAffectedByAnger = 7239, + /// /// life_leech_from_fire_damage_permyriad_while_affected_by_anger /// - LifeLeechFromFireDamagePermyriadWhileAffectedByAnger = 7236, - + LifeLeechFromFireDamagePermyriadWhileAffectedByAnger = 7240, + /// /// minimum_added_cold_damage_while_affected_by_hatred /// - MinimumAddedColdDamageWhileAffectedByHatred = 7237, - + MinimumAddedColdDamageWhileAffectedByHatred = 7241, + /// /// maximum_added_cold_damage_while_affected_by_hatred /// - MaximumAddedColdDamageWhileAffectedByHatred = 7238, - + MaximumAddedColdDamageWhileAffectedByHatred = 7242, + /// /// base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred /// - BasePhysicalDamagePctToConvertToColdWhileAffectedByHatred = 7239, - + BasePhysicalDamagePctToConvertToColdWhileAffectedByHatred = 7243, + /// /// additional_critical_strike_chance_permyriad_while_affected_by_hatred /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByHatred = 7240, - + AdditionalCriticalStrikeChancePermyriadWhileAffectedByHatred = 7244, + /// /// life_leech_from_any_damage_permyriad_while_affected_by_vitality /// - LifeLeechFromAnyDamagePermyriadWhileAffectedByVitality = 7241, - + LifeLeechFromAnyDamagePermyriadWhileAffectedByVitality = 7245, + /// /// life_regeneration_per_minute_while_affected_by_vitality /// - LifeRegenerationPerMinuteWhileAffectedByVitality = 7242, - + LifeRegenerationPerMinuteWhileAffectedByVitality = 7246, + /// /// life_recovery_rate_+%_while_affected_by_vitality /// - LifeRecoveryRatePctWhileAffectedByVitality = 7243, - + LifeRecoveryRatePctWhileAffectedByVitality = 7247, + /// /// life_gain_per_target_hit_while_affected_by_vitality /// - LifeGainPerTargetHitWhileAffectedByVitality = 7244, - + LifeGainPerTargetHitWhileAffectedByVitality = 7248, + /// /// virtual_skill_mana_cost_+ /// - VirtualSkillManaCost = 7245, - + VirtualSkillManaCost = 7249, + /// /// skill_mana_cost_+_while_affected_by_clarity /// - SkillManaCostWhileAffectedByClarity = 7246, - + SkillManaCostWhileAffectedByClarity = 7250, + /// /// damage_removed_from_mana_before_life_%_while_affected_by_clarity /// - DamageRemovedFromManaBeforeLifePctWhileAffectedByClarity = 7247, - + DamageRemovedFromManaBeforeLifePctWhileAffectedByClarity = 7251, + /// /// recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity /// - Recover10PctManaOnSkillUsePctChanceWhileAffectedByClarity = 7248, - + Recover10PctManaOnSkillUsePctChanceWhileAffectedByClarity = 7252, + /// /// maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity /// - MaximumManaPctToAddToEnergyShieldWhileAffectedByClarity = 7249, - + MaximumManaPctToAddToEnergyShieldWhileAffectedByClarity = 7253, + /// /// chance_to_dodge_spells_%_while_affected_by_haste /// - ChanceToDodgeSpellsPctWhileAffectedByHaste = 7250, - + ChanceToDodgeSpellsPctWhileAffectedByHaste = 7254, + /// /// gain_onslaught_on_kill_ms_while_affected_by_haste /// - GainOnslaughtOnKillMsWhileAffectedByHaste = 7251, - + GainOnslaughtOnKillMsWhileAffectedByHaste = 7255, + /// /// gain_phasing_while_affected_by_haste /// - GainPhasingWhileAffectedByHaste = 7252, - + GainPhasingWhileAffectedByHaste = 7256, + /// /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire /// - PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfFire = 7253, - + PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfFire = 7257, + /// /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice /// - PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfIce = 7254, - + PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfIce = 7258, + /// /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning /// - PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfLightning = 7255, - + PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfLightning = 7259, + /// /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements /// - PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfElements = 7256, - + PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfElements = 7260, + /// /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements /// - PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfElements = 7257, - + PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfElements = 7261, + /// /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements /// - PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfElements = 7258, - + PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfElements = 7262, + /// /// immune_to_ignite_while_affected_by_purity_of_fire /// - ImmuneToIgniteWhileAffectedByPurityOfFire = 7259, - + ImmuneToIgniteWhileAffectedByPurityOfFire = 7263, + /// /// immune_to_freeze_while_affected_by_purity_of_ice /// - ImmuneToFreezeWhileAffectedByPurityOfIce = 7260, - + ImmuneToFreezeWhileAffectedByPurityOfIce = 7264, + /// /// immune_to_shock_while_affected_by_purity_of_lightning /// - ImmuneToShockWhileAffectedByPurityOfLightning = 7261, - + ImmuneToShockWhileAffectedByPurityOfLightning = 7265, + /// /// virtual_physical_damage_taken_%_as_fire /// - VirtualPhysicalDamageTakenPctAsFire = 7262, - + VirtualPhysicalDamageTakenPctAsFire = 7266, + /// /// virtual_physical_damage_taken_%_as_cold /// - VirtualPhysicalDamageTakenPctAsCold = 7263, - + VirtualPhysicalDamageTakenPctAsCold = 7267, + /// /// virtual_physical_damage_taken_%_as_lightning /// - VirtualPhysicalDamageTakenPctAsLightning = 7264, - + VirtualPhysicalDamageTakenPctAsLightning = 7268, + /// /// disable_rarity_epk /// - DisableRarityEpk = 7265, - + DisableRarityEpk = 7269, + /// /// cannot_spawn_support_ghosts /// - CannotSpawnSupportGhosts = 7266, - + CannotSpawnSupportGhosts = 7270, + /// /// chance_to_gain_frenzy_charge_on_block_% /// - ChanceToGainFrenzyChargeOnBlockPct = 7267, - + ChanceToGainFrenzyChargeOnBlockPct = 7271, + /// /// spell_damage_+%_per_10_strength /// - SpellDamagePctPer10Strength = 7268, - + SpellDamagePctPer10Strength = 7272, + /// /// spell_damage_+%_per_16_dex /// - SpellDamagePctPer16Dex = 7269, - + SpellDamagePctPer16Dex = 7273, + /// /// spell_damage_+%_per_16_strength /// - SpellDamagePctPer16Strength = 7270, - + SpellDamagePctPer16Strength = 7274, + /// /// spell_damage_+%_per_16_int /// - SpellDamagePctPer16Int = 7271, - + SpellDamagePctPer16Int = 7275, + /// /// deal_no_non_elemental_damage /// - DealNoNonElementalDamage = 7272, - + DealNoNonElementalDamage = 7276, + /// /// cast_speed_+%_if_enemy_killed_recently /// - CastSpeedPctIfEnemyKilledRecently = 7273, - + CastSpeedPctIfEnemyKilledRecently = 7277, + /// /// trigger_on_skill_use_%_if_you_have_a_spirit_charge /// - TriggerOnSkillUsePctIfYouHaveASpiritCharge = 7274, - + TriggerOnSkillUsePctIfYouHaveASpiritCharge = 7278, + /// /// map_force_private_seed_debug /// - MapForcePrivateSeedDebug = 7275, - + MapForcePrivateSeedDebug = 7279, + /// /// active_skill_display_aegis_variation /// - ActiveSkillDisplayAegisVariation = 7276, - + ActiveSkillDisplayAegisVariation = 7280, + /// /// volatile_dead_number_of_corpses_to_consume /// - VolatileDeadNumberOfCorpsesToConsume = 7277, - + VolatileDeadNumberOfCorpsesToConsume = 7281, + /// /// unearth_additional_corpse_level /// - UnearthAdditionalCorpseLevel = 7278, - + UnearthAdditionalCorpseLevel = 7282, + /// /// unearth_corpse_level /// - UnearthCorpseLevel = 7279, - + UnearthCorpseLevel = 7283, + /// /// corpse_erruption_maximum_number_of_geyers /// - CorpseErruptionMaximumNumberOfGeyers = 7280, - + CorpseErruptionMaximumNumberOfGeyers = 7284, + /// /// base_number_of_effigies_allowed /// - BaseNumberOfEffigiesAllowed = 7281, - + BaseNumberOfEffigiesAllowed = 7285, + /// /// visual_attached_elder_tentacles /// - VisualAttachedElderTentacles = 7282, - + VisualAttachedElderTentacles = 7286, + /// /// map_elder_influence_additional_packs_of_elder_monsters /// - MapElderInfluenceAdditionalPacksOfElderMonsters = 7283, - + MapElderInfluenceAdditionalPacksOfElderMonsters = 7287, + /// /// bone_lance_damage_+% /// - BoneLanceDamagePct = 7284, - + BoneLanceDamagePct = 7288, + /// /// corpse_eruption_damage_+% /// - CorpseEruptionDamagePct = 7285, - + CorpseEruptionDamagePct = 7289, + /// /// volatile_dead_damage_+% /// - VolatileDeadDamagePct = 7286, - + VolatileDeadDamagePct = 7290, + /// /// corpse_warp_damage_+% /// - CorpseWarpDamagePct = 7287, - + CorpseWarpDamagePct = 7291, + /// /// bone_lance_cast_speed_+% /// - BoneLanceCastSpeedPct = 7288, - + BoneLanceCastSpeedPct = 7292, + /// /// corpse_eruption_cast_speed_+% /// - CorpseEruptionCastSpeedPct = 7289, - + CorpseEruptionCastSpeedPct = 7293, + /// /// volatile_dead_cast_speed_+% /// - VolatileDeadCastSpeedPct = 7290, - + VolatileDeadCastSpeedPct = 7294, + /// /// corpse_warp_cast_speed_+% /// - CorpseWarpCastSpeedPct = 7291, - + CorpseWarpCastSpeedPct = 7295, + /// /// display_attack_block_chance /// - DisplayAttackBlockChance = 7292, - + DisplayAttackBlockChance = 7296, + /// /// display_spell_block_chance /// - DisplaySpellBlockChance = 7293, - + DisplaySpellBlockChance = 7297, + /// /// minimum_added_chaos_damage_taken /// - MinimumAddedChaosDamageTaken = 7294, - + MinimumAddedChaosDamageTaken = 7298, + /// /// maximum_added_chaos_damage_taken /// - MaximumAddedChaosDamageTaken = 7295, - + MaximumAddedChaosDamageTaken = 7299, + /// /// chance_to_be_maimed_when_hit_% /// - ChanceToBeMaimedWhenHitPct = 7296, - + ChanceToBeMaimedWhenHitPct = 7300, + /// /// energy_shield_gained_on_spell_hit /// - EnergyShieldGainedOnSpellHit = 7297, - + EnergyShieldGainedOnSpellHit = 7301, + /// /// monster_spirit_charges_are_infinite /// - MonsterSpiritChargesAreInfinite = 7298, - + MonsterSpiritChargesAreInfinite = 7302, + /// /// gain_spirit_charge_on_kill_%_chance /// - GainSpiritChargeOnKillPctChance = 7299, - + GainSpiritChargeOnKillPctChance = 7303, + /// /// gain_%_life_when_spirit_charge_expires_or_consumed /// - GainPctLifeWhenSpiritChargeExpiresOrConsumed = 7300, - + GainPctLifeWhenSpiritChargeExpiresOrConsumed = 7304, + /// /// local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge /// - LocalDisplayTriggerLevelXSpiritBurstOnSkillUseIfHaveSpiritCharge = 7301, - + LocalDisplayTriggerLevelXSpiritBurstOnSkillUseIfHaveSpiritCharge = 7305, + /// /// maximum_spirit_charges_per_abyss_jewel_equipped /// - MaximumSpiritChargesPerAbyssJewelEquipped = 7302, - + MaximumSpiritChargesPerAbyssJewelEquipped = 7306, + /// /// local_display_socketed_gems_supported_by_level_x_elemental_penetration /// - LocalDisplaySocketedGemsSupportedByLevelXElementalPenetration = 7303, - + LocalDisplaySocketedGemsSupportedByLevelXElementalPenetration = 7307, + /// /// skill_used_by_mirage_archer /// - SkillUsedByMirageArcher = 7304, - + SkillUsedByMirageArcher = 7308, + /// /// support_mirage_archer_attack_speed_+%_final /// - SupportMirageArcherAttackSpeedPctFinal = 7305, - + SupportMirageArcherAttackSpeedPctFinal = 7309, + /// /// virtual_maximum_spirit_charges /// - VirtualMaximumSpiritCharges = 7306, - + VirtualMaximumSpiritCharges = 7310, + /// /// gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy /// - GainDebilitatingPresenceMsOnKillVsRareOrUniqueEnemy = 7307, - + GainDebilitatingPresenceMsOnKillVsRareOrUniqueEnemy = 7311, + /// /// cast_speed_+%_from_grasping_tentacles /// - CastSpeedPctFromGraspingTentacles = 7308, - + CastSpeedPctFromGraspingTentacles = 7312, + /// /// charge_elder_art_variation /// - ChargeElderArtVariation = 7309, - + ChargeElderArtVariation = 7313, + /// /// virtual_projectile_additional_height_offset /// - VirtualProjectileAdditionalHeightOffset = 7310, - + VirtualProjectileAdditionalHeightOffset = 7314, + /// /// local_display_trigger_level_20_shade_form_on_skill_use_% /// - LocalDisplayTriggerLevel20ShadeFormOnSkillUsePct = 7311, - + LocalDisplayTriggerLevel20ShadeFormOnSkillUsePct = 7315, + /// /// mirage_archer_projectile_additional_height_offset /// - MirageArcherProjectileAdditionalHeightOffset = 7312, - + MirageArcherProjectileAdditionalHeightOffset = 7316, + /// /// minimum_added_physical_damage_per_endurance_charge /// - MinimumAddedPhysicalDamagePerEnduranceCharge = 7313, - + MinimumAddedPhysicalDamagePerEnduranceCharge = 7317, + /// /// maximum_added_physical_damage_per_endurance_charge /// - MaximumAddedPhysicalDamagePerEnduranceCharge = 7314, - + MaximumAddedPhysicalDamagePerEnduranceCharge = 7318, + /// /// chaos_damage_resistance_%_per_endurance_charge /// - ChaosDamageResistancePctPerEnduranceCharge = 7315, - + ChaosDamageResistancePctPerEnduranceCharge = 7319, + /// /// elemental_damage_taken_from_hits_+%_per_endurance_charge /// - ElementalDamageTakenFromHitsPctPerEnduranceCharge = 7316, - + ElementalDamageTakenFromHitsPctPerEnduranceCharge = 7320, + /// /// physical_damage_reduction_rating_per_endurance_charge /// - PhysicalDamageReductionRatingPerEnduranceCharge = 7317, - + PhysicalDamageReductionRatingPerEnduranceCharge = 7321, + /// /// fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently /// - FireDamageTakenPerMinutePerEnduranceChargeIfYouHaveBeenHitRecently = 7318, - + FireDamageTakenPerMinutePerEnduranceChargeIfYouHaveBeenHitRecently = 7322, + /// /// minimum_added_lightning_damage_to_spells_per_power_charge /// - MinimumAddedLightningDamageToSpellsPerPowerCharge = 7319, - + MinimumAddedLightningDamageToSpellsPerPowerCharge = 7323, + /// /// maximum_added_lightning_damage_to_spells_per_power_charge /// - MaximumAddedLightningDamageToSpellsPerPowerCharge = 7320, - + MaximumAddedLightningDamageToSpellsPerPowerCharge = 7324, + /// /// additional_spell_block_%_per_power_charge /// - AdditionalSpellBlockPctPerPowerCharge = 7321, - + AdditionalSpellBlockPctPerPowerCharge = 7325, + /// /// lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently /// - LightningDamageTakenPerMinutePerPowerChargeIfHaveCritRecently = 7322, - + LightningDamageTakenPerMinutePerPowerChargeIfHaveCritRecently = 7326, + /// /// avoid_elemental_damage_%_per_frenzy_charge /// - AvoidElementalDamagePctPerFrenzyCharge = 7323, - + AvoidElementalDamagePctPerFrenzyCharge = 7327, + /// /// life_leech_from_attack_damage_permyriad_per_frenzy_charge /// - LifeLeechFromAttackDamagePermyriadPerFrenzyCharge = 7324, - + LifeLeechFromAttackDamagePermyriadPerFrenzyCharge = 7328, + /// /// cold_damage_taken_per_minute_per_frenzy_charge_while_moving /// - ColdDamageTakenPerMinutePerFrenzyChargeWhileMoving = 7325, - + ColdDamageTakenPerMinutePerFrenzyChargeWhileMoving = 7329, + /// /// raise_spectre_mana_cost_+% /// - RaiseSpectreManaCostPct = 7326, - + RaiseSpectreManaCostPct = 7330, + /// /// map_packs_have_tentacle_minions /// - MapPacksHaveTentacleMinions = 7327, - + MapPacksHaveTentacleMinions = 7331, + /// /// map_elder_influence_spawn_daemon /// - MapElderInfluenceSpawnDaemon = 7328, - + MapElderInfluenceSpawnDaemon = 7332, + /// /// monster_has_oni_goroshi /// - MonsterHasOniGoroshi = 7329, - + MonsterHasOniGoroshi = 7333, + /// /// skill_user_maximum_life /// - SkillUserMaximumLife = 7330, - + SkillUserMaximumLife = 7334, + /// /// local_display_grant_level_x_petrification_statue /// - LocalDisplayGrantLevelXPetrificationStatue = 7331, - + LocalDisplayGrantLevelXPetrificationStatue = 7335, + /// /// chest_display_guarded_by_dario /// - ChestDisplayGuardedByDario = 7332, - + ChestDisplayGuardedByDario = 7336, + /// /// base_physical_damage_over_time_taken_+% /// - BasePhysicalDamageOverTimeTakenPct = 7333, - + BasePhysicalDamageOverTimeTakenPct = 7337, + /// /// ground_spores_art_variation /// - GroundSporesArtVariation = 7334, - + GroundSporesArtVariation = 7338, + /// /// move_daemon_use_random_direction /// - MoveDaemonUseRandomDirection = 7335, - + MoveDaemonUseRandomDirection = 7339, + /// /// disable_skill_if_weapon_not_bow /// - DisableSkillIfWeaponNotBow = 7336, - + DisableSkillIfWeaponNotBow = 7340, + /// /// trigger_on_skill_use_from_chest_% /// - TriggerOnSkillUseFromChestPct = 7337, - + TriggerOnSkillUseFromChestPct = 7341, + /// /// thrown_weapon_on_return_trigger_skills_with_id /// - ThrownWeaponOnReturnTriggerSkillsWithId = 7338, - + ThrownWeaponOnReturnTriggerSkillsWithId = 7342, + /// /// thrown_weapon_on_return_trigger_id /// - ThrownWeaponOnReturnTriggerId = 7339, - + ThrownWeaponOnReturnTriggerId = 7343, + /// /// thrown_weapon_on_return_trigger_% /// - ThrownWeaponOnReturnTriggerPct = 7340, - + ThrownWeaponOnReturnTriggerPct = 7344, + /// /// skill_cannot_be_interrupted /// - SkillCannotBeInterrupted = 7341, - + SkillCannotBeInterrupted = 7345, + /// /// skill_cannot_be_stunned /// - SkillCannotBeStunned = 7342, - + SkillCannotBeStunned = 7346, + /// /// skill_cannot_be_knocked_back /// - SkillCannotBeKnockedBack = 7343, - + SkillCannotBeKnockedBack = 7347, + /// /// immobilised_by_elder_% /// - ImmobilisedByElderPct = 7344, - + ImmobilisedByElderPct = 7348, + /// /// recover_%_maximum_life_on_mana_flask_use /// - RecoverPctMaximumLifeOnManaFlaskUse = 7345, - + RecoverPctMaximumLifeOnManaFlaskUse = 7349, + /// /// non_instant_mana_recovery_from_flasks_also_recovers_life /// - NonInstantManaRecoveryFromFlasksAlsoRecoversLife = 7346, - + NonInstantManaRecoveryFromFlasksAlsoRecoversLife = 7350, + /// /// spell_damage_+%_per_200_mana_spent_recently /// - SpellDamagePctPer200ManaSpentRecently = 7347, - + SpellDamagePctPer200ManaSpentRecently = 7351, + /// /// mana_cost_+%_per_200_mana_spent_recently /// - ManaCostPctPer200ManaSpentRecently = 7348, - + ManaCostPctPer200ManaSpentRecently = 7352, + /// /// virtual_track_mana_spent_recently /// - VirtualTrackManaSpentRecently = 7349, - + VirtualTrackManaSpentRecently = 7353, + /// /// total_mana_spent_recently /// - TotalManaSpentRecently = 7350, - + TotalManaSpentRecently = 7354, + /// /// left_ring_is_shaper_item /// - LeftRingIsShaperItem = 7351, - + LeftRingIsShaperItem = 7355, + /// /// left_ring_is_elder_item /// - LeftRingIsElderItem = 7352, - + LeftRingIsElderItem = 7356, + /// /// right_ring_is_shaper_item /// - RightRingIsShaperItem = 7353, - + RightRingIsShaperItem = 7357, + /// /// right_ring_is_elder_item /// - RightRingIsElderItem = 7354, - + RightRingIsElderItem = 7358, + /// /// cannot_be_stunned_by_attacks_if_other_ring_is_elder_item /// - CannotBeStunnedByAttacksIfOtherRingIsElderItem = 7355, - + CannotBeStunnedByAttacksIfOtherRingIsElderItem = 7359, + /// /// cannot_be_stunned_by_attacks_if_left_ring_is_elder_item /// - CannotBeStunnedByAttacksIfLeftRingIsElderItem = 7356, - + CannotBeStunnedByAttacksIfLeftRingIsElderItem = 7360, + /// /// cannot_be_stunned_by_attacks_if_right_ring_is_elder_item /// - CannotBeStunnedByAttacksIfRightRingIsElderItem = 7357, - + CannotBeStunnedByAttacksIfRightRingIsElderItem = 7361, + /// /// attack_damage_+%_if_other_ring_is_shaper_item /// - AttackDamagePctIfOtherRingIsShaperItem = 7358, - + AttackDamagePctIfOtherRingIsShaperItem = 7362, + /// /// attack_damage_+%_if_left_ring_is_shaper_item /// - AttackDamagePctIfLeftRingIsShaperItem = 7359, - + AttackDamagePctIfLeftRingIsShaperItem = 7363, + /// /// attack_damage_+%_if_right_ring_is_shaper_item /// - AttackDamagePctIfRightRingIsShaperItem = 7360, - + AttackDamagePctIfRightRingIsShaperItem = 7364, + /// /// spell_damage_+%_if_other_ring_is_elder_item /// - SpellDamagePctIfOtherRingIsElderItem = 7361, - + SpellDamagePctIfOtherRingIsElderItem = 7365, + /// /// spell_damage_+%_if_left_ring_is_elder_item /// - SpellDamagePctIfLeftRingIsElderItem = 7362, - + SpellDamagePctIfLeftRingIsElderItem = 7366, + /// /// spell_damage_+%_if_right_ring_is_elder_item /// - SpellDamagePctIfRightRingIsElderItem = 7363, - + SpellDamagePctIfRightRingIsElderItem = 7367, + /// /// cannot_be_stunned_by_spells_if_other_ring_is_shaper_item /// - CannotBeStunnedBySpellsIfOtherRingIsShaperItem = 7364, - + CannotBeStunnedBySpellsIfOtherRingIsShaperItem = 7368, + /// /// cannot_be_stunned_by_spells_if_left_ring_is_shaper_item /// - CannotBeStunnedBySpellsIfLeftRingIsShaperItem = 7365, - + CannotBeStunnedBySpellsIfLeftRingIsShaperItem = 7369, + /// /// cannot_be_stunned_by_spells_if_right_ring_is_shaper_item /// - CannotBeStunnedBySpellsIfRightRingIsShaperItem = 7366, - + CannotBeStunnedBySpellsIfRightRingIsShaperItem = 7370, + /// /// current_siphoning_charges /// - CurrentSiphoningCharges = 7367, - + CurrentSiphoningCharges = 7371, + /// /// virtual_maximum_siphoning_charges /// - VirtualMaximumSiphoningCharges = 7368, - + VirtualMaximumSiphoningCharges = 7372, + /// /// gain_siphoning_charge_on_skill_use_%_chance /// - GainSiphoningChargeOnSkillUsePctChance = 7369, - + GainSiphoningChargeOnSkillUsePctChance = 7373, + /// /// maximum_siphoning_charges_per_elder_or_shaper_item_equipped /// - MaximumSiphoningChargesPerElderOrShaperItemEquipped = 7370, - + MaximumSiphoningChargesPerElderOrShaperItemEquipped = 7374, + /// /// attack_and_spell_minimum_added_physical_damage_per_siphoning_charge /// - AttackAndSpellMinimumAddedPhysicalDamagePerSiphoningCharge = 7371, - + AttackAndSpellMinimumAddedPhysicalDamagePerSiphoningCharge = 7375, + /// /// attack_and_spell_maximum_added_physical_damage_per_siphoning_charge /// - AttackAndSpellMaximumAddedPhysicalDamagePerSiphoningCharge = 7372, - + AttackAndSpellMaximumAddedPhysicalDamagePerSiphoningCharge = 7376, + /// /// life_leech_from_any_damage_permyriad_per_siphoning_charge /// - LifeLeechFromAnyDamagePermyriadPerSiphoningCharge = 7373, - + LifeLeechFromAnyDamagePermyriadPerSiphoningCharge = 7377, + /// /// non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge /// - NonChaosDamagePctToAddAsChaosDamagePerSiphoningCharge = 7374, - + NonChaosDamagePctToAddAsChaosDamagePerSiphoningCharge = 7378, + /// /// additional_physical_damage_reduction_against_hits_%_per_siphoning_charge /// - AdditionalPhysicalDamageReductionAgainstHitsPctPerSiphoningCharge = 7375, - + AdditionalPhysicalDamageReductionAgainstHitsPctPerSiphoningCharge = 7379, + /// /// additional_physical_damage_reduction_%_against_hits /// - AdditionalPhysicalDamageReductionPctAgainstHits = 7376, - + AdditionalPhysicalDamageReductionPctAgainstHits = 7380, + /// /// armour_differs_against_hits /// - ArmourDiffersAgainstHits = 7377, - + ArmourDiffersAgainstHits = 7381, + /// /// display_estimated_physical_damage_reduction_against_hits_% /// - DisplayEstimatedPhysicalDamageReductionAgainstHitsPct = 7378, - + DisplayEstimatedPhysicalDamageReductionAgainstHitsPct = 7382, + /// /// physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently /// - PhysicalDamageTakenPerMinutePerSiphoningChargeIfHaveUsedASkillRecently = 7379, - + PhysicalDamageTakenPerMinutePerSiphoningChargeIfHaveUsedASkillRecently = 7383, + /// /// track_have_used_a_skill_recently /// - TrackHaveUsedASkillRecently = 7380, - + TrackHaveUsedASkillRecently = 7384, + /// /// have_used_a_skill_recently /// - HaveUsedASkillRecently = 7381, - + HaveUsedASkillRecently = 7385, + /// /// number_of_equipped_shaper_items /// - NumberOfEquippedShaperItems = 7382, - + NumberOfEquippedShaperItems = 7386, + /// /// virtual_physical_damage_taken_per_minute_per_siphoning_charge /// - VirtualPhysicalDamageTakenPerMinutePerSiphoningCharge = 7383, - + VirtualPhysicalDamageTakenPerMinutePerSiphoningCharge = 7387, + /// /// map_force_terrain_feature /// - MapForceTerrainFeature = 7384, - + MapForceTerrainFeature = 7388, + /// /// local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow /// - LocalDisplayTriggerLevelXVoidShotOnArrowFireWhileYouHaveVoidArrow = 7385, - + LocalDisplayTriggerLevelXVoidShotOnArrowFireWhileYouHaveVoidArrow = 7389, + /// /// trigger_on_skill_use_%_if_you_have_a_void_arrow /// - TriggerOnSkillUsePctIfYouHaveAVoidArrow = 7386, - + TriggerOnSkillUsePctIfYouHaveAVoidArrow = 7390, + /// /// current_void_arrows /// - CurrentVoidArrows = 7387, - + CurrentVoidArrows = 7391, + /// /// maximum_void_arrows /// - MaximumVoidArrows = 7388, - + MaximumVoidArrows = 7392, + /// /// local_display_grant_void_arrow_every_x_ms /// - LocalDisplayGrantVoidArrowEveryXMs = 7389, - + LocalDisplayGrantVoidArrowEveryXMs = 7393, + /// /// local_display_trigger_tentacle_smash_on_kill_%_chance /// - LocalDisplayTriggerTentacleSmashOnKillPctChance = 7390, - + LocalDisplayTriggerTentacleSmashOnKillPctChance = 7394, + /// /// local_display_trigger_temporal_anomaly_when_hit_%_chance /// - LocalDisplayTriggerTemporalAnomalyWhenHitPctChance = 7391, - + LocalDisplayTriggerTemporalAnomalyWhenHitPctChance = 7395, + /// /// local_display_trigger_void_sphere_on_kill_%_chance /// - LocalDisplayTriggerVoidSphereOnKillPctChance = 7392, - + LocalDisplayTriggerVoidSphereOnKillPctChance = 7396, + /// /// despair_duration_+% /// - DespairDurationPct = 7393, - + DespairDurationPct = 7397, + /// /// despair_curse_effect_+% /// - DespairCurseEffectPct = 7394, - + DespairCurseEffectPct = 7398, + /// /// inca_rock_spawn_chance_% /// - IncaRockSpawnChancePct = 7395, - + IncaRockSpawnChancePct = 7399, + /// /// inca_rock_spawn_limit /// - IncaRockSpawnLimit = 7396, - + IncaRockSpawnLimit = 7400, + /// /// volatile_dead_consume_additional_corpse /// - VolatileDeadConsumeAdditionalCorpse = 7397, - + VolatileDeadConsumeAdditionalCorpse = 7401, + /// /// virtual_chance_to_evade_attacks_% /// - VirtualChanceToEvadeAttacksPct = 7398, - + VirtualChanceToEvadeAttacksPct = 7402, + /// /// projectile_skill_dot_ground_caustic_area_damage_per_minute /// - ProjectileSkillDotGroundCausticAreaDamagePerMinute = 7399, - + ProjectileSkillDotGroundCausticAreaDamagePerMinute = 7403, + /// /// cannot_be_stunned_by_spells /// - CannotBeStunnedBySpells = 7400, - + CannotBeStunnedBySpells = 7404, + /// /// cannot_be_stunned_by_attacks /// - CannotBeStunnedByAttacks = 7401, - + CannotBeStunnedByAttacks = 7405, + /// /// reflected_physical_damage_taken_+%_while_affected_by_determination /// - ReflectedPhysicalDamageTakenPctWhileAffectedByDetermination = 7402, - + ReflectedPhysicalDamageTakenPctWhileAffectedByDetermination = 7406, + /// /// virtual_physical_reflect_damage_taken_+% /// - VirtualPhysicalReflectDamageTakenPct = 7403, - + VirtualPhysicalReflectDamageTakenPct = 7407, + /// /// armour_+_while_affected_by_determination /// - ArmourWhileAffectedByDetermination = 7404, - + ArmourWhileAffectedByDetermination = 7408, + /// /// virtual_blind_enemies_when_hit_%_chance /// - VirtualBlindEnemiesWhenHitPctChance = 7405, - + VirtualBlindEnemiesWhenHitPctChance = 7409, + /// /// blind_enemies_when_hit_while_affected_by_grace_%_chance /// - BlindEnemiesWhenHitWhileAffectedByGracePctChance = 7406, - + BlindEnemiesWhenHitWhileAffectedByGracePctChance = 7410, + /// /// energy_shield_recovery_rate_while_affected_by_discipline_+% /// - EnergyShieldRecoveryRateWhileAffectedByDisciplinePct = 7407, - + EnergyShieldRecoveryRateWhileAffectedByDisciplinePct = 7411, + /// /// fire_damage_+%_while_affected_by_anger /// - FireDamagePctWhileAffectedByAnger = 7408, - + FireDamagePctWhileAffectedByAnger = 7412, + /// /// critical_strike_multiplier_+_while_affected_by_anger /// - CriticalStrikeMultiplierWhileAffectedByAnger = 7409, - + CriticalStrikeMultiplierWhileAffectedByAnger = 7413, + /// /// lightning_damage_+%_while_affected_by_wrath /// - LightningDamagePctWhileAffectedByWrath = 7410, - + LightningDamagePctWhileAffectedByWrath = 7414, + /// /// critical_strike_chance_+%_while_affected_by_wrath /// - CriticalStrikeChancePctWhileAffectedByWrath = 7411, - + CriticalStrikeChancePctWhileAffectedByWrath = 7415, + /// /// cold_damage_+%_while_affected_by_hatred /// - ColdDamagePctWhileAffectedByHatred = 7412, - + ColdDamagePctWhileAffectedByHatred = 7416, + /// /// flask_life_recovery_+%_while_affected_by_vitality /// - FlaskLifeRecoveryPctWhileAffectedByVitality = 7413, - + FlaskLifeRecoveryPctWhileAffectedByVitality = 7417, + /// /// mana_recovery_rate_+%_while_affected_by_clarity /// - ManaRecoveryRatePctWhileAffectedByClarity = 7414, - + ManaRecoveryRatePctWhileAffectedByClarity = 7418, + /// /// virtual_damage_taken_goes_to_mana_over_4_seconds_% /// - VirtualDamageTakenGoesToManaOver4SecondsPct = 7415, - + VirtualDamageTakenGoesToManaOver4SecondsPct = 7419, + /// /// damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity /// - DamageTakenGoesToManaOver4SecondsPctWhileAffectedByClarity = 7416, - + DamageTakenGoesToManaOver4SecondsPctWhileAffectedByClarity = 7420, + /// /// virtual_debuff_time_passed_+% /// - VirtualDebuffTimePassedPct = 7417, - + VirtualDebuffTimePassedPct = 7421, + /// /// debuff_time_passed_-%_while_affected_by_haste /// - DebuffTimePassedPctWhileAffectedByHaste = 7418, - + DebuffTimePassedPctWhileAffectedByHaste = 7422, + /// /// movement_skills_cooldown_speed_+%_while_affected_by_haste /// - MovementSkillsCooldownSpeedPctWhileAffectedByHaste = 7419, - + MovementSkillsCooldownSpeedPctWhileAffectedByHaste = 7423, + /// - /// fire_reflect_damage_taken_+% + /// virtual_fire_reflect_damage_taken_+% /// - FireReflectDamageTakenPct = 7420, - + VirtualFireReflectDamageTakenPct = 7424, + /// - /// lightning_reflect_damage_taken_+% + /// virtual_lightning_reflect_damage_taken_+% /// - LightningReflectDamageTakenPct = 7421, - + VirtualLightningReflectDamageTakenPct = 7425, + /// - /// cold_reflect_damage_taken_+% + /// virtual_cold_reflect_damage_taken_+% /// - ColdReflectDamageTakenPct = 7422, - + VirtualColdReflectDamageTakenPct = 7426, + /// /// fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire /// - FireReflectDamageTakenPctWhileAffectedByPurityOfFire = 7423, - + FireReflectDamageTakenPctWhileAffectedByPurityOfFire = 7427, + /// /// lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning /// - LightningReflectDamageTakenPctWhileAffectedByPurityOfLightning = 7424, - + LightningReflectDamageTakenPctWhileAffectedByPurityOfLightning = 7428, + /// /// cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice /// - ColdReflectDamageTakenPctWhileAffectedByPurityOfIce = 7425, - + ColdReflectDamageTakenPctWhileAffectedByPurityOfIce = 7429, + /// /// elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements /// - ElementalReflectDamageTakenPctWhileAffectedByPurityOfElements = 7426, - + ElementalReflectDamageTakenPctWhileAffectedByPurityOfElements = 7430, + /// /// chaos_damage_resistance_%_while_affected_by_purity_of_elements /// - ChaosDamageResistancePctWhileAffectedByPurityOfElements = 7427, - + ChaosDamageResistancePctWhileAffectedByPurityOfElements = 7431, + /// /// intimidating_cry_attack_speed_+%_per_100_enemies /// - IntimidatingCryAttackSpeedPctPer100Enemies = 7428, - + IntimidatingCryAttackSpeedPctPer100Enemies = 7432, + /// /// local_display_grants_skill_intimidating_cry_level /// - LocalDisplayGrantsSkillIntimidatingCryLevel = 7429, - + LocalDisplayGrantsSkillIntimidatingCryLevel = 7433, + /// /// map_spawn_bestiary_encounters /// - MapSpawnBestiaryEncounters = 7430, - + MapSpawnBestiaryEncounters = 7434, + /// /// map_force_bestiary_encounter /// - MapForceBestiaryEncounter = 7431, - + MapForceBestiaryEncounter = 7435, + /// /// local_display_grants_skill_cat_aspect_level /// - LocalDisplayGrantsSkillCatAspectLevel = 7432, - + LocalDisplayGrantsSkillCatAspectLevel = 7436, + /// /// local_display_grants_skill_bird_aspect_level /// - LocalDisplayGrantsSkillBirdAspectLevel = 7433, - + LocalDisplayGrantsSkillBirdAspectLevel = 7437, + /// /// avoid_damage_% /// - AvoidDamagePct = 7434, - + AvoidDamagePct = 7438, + /// /// minion_chance_to_deal_double_damage_% /// - MinionChanceToDealDoubleDamagePct = 7435, - + MinionChanceToDealDoubleDamagePct = 7439, + /// /// local_display_grants_skill_spider_aspect_level /// - LocalDisplayGrantsSkillSpiderAspectLevel = 7436, - + LocalDisplayGrantsSkillSpiderAspectLevel = 7440, + /// /// damage_+%_per_10_dex /// - DamagePctPer10Dex = 7437, - + DamagePctPer10Dex = 7441, + /// /// life_regeneration_per_minute_while_ignited /// - LifeRegenerationPerMinuteWhileIgnited = 7438, - + LifeRegenerationPerMinuteWhileIgnited = 7442, + /// /// chance_to_deal_double_damage_%_per_500_strength /// - ChanceToDealDoubleDamagePctPer500Strength = 7439, - + ChanceToDealDoubleDamagePctPer500Strength = 7443, + /// /// virtual_chance_to_deal_double_damage_% /// - VirtualChanceToDealDoubleDamagePct = 7440, - + VirtualChanceToDealDoubleDamagePct = 7444, + /// /// track_have_killed_cursed_enemy_recently /// - TrackHaveKilledCursedEnemyRecently = 7441, - + TrackHaveKilledCursedEnemyRecently = 7445, + /// /// have_killed_cursed_enemy_recently /// - HaveKilledCursedEnemyRecently = 7442, - + HaveKilledCursedEnemyRecently = 7446, + /// /// elemental_damage_+%_if_cursed_enemy_killed_recently /// - ElementalDamagePctIfCursedEnemyKilledRecently = 7443, - + ElementalDamagePctIfCursedEnemyKilledRecently = 7447, + /// /// local_display_grants_skill_crab_aspect_level /// - LocalDisplayGrantsSkillCrabAspectLevel = 7444, - + LocalDisplayGrantsSkillCrabAspectLevel = 7448, + /// /// current_crab_aspect_stacks /// - CurrentCrabAspectStacks = 7445, - + CurrentCrabAspectStacks = 7449, + /// /// max_crab_aspect_stacks /// - MaxCrabAspectStacks = 7446, - + MaxCrabAspectStacks = 7450, + /// /// physical_damage_reduction_%_per_crab_aspect_stack /// - PhysicalDamageReductionPctPerCrabAspectStack = 7447, - + PhysicalDamageReductionPctPerCrabAspectStack = 7451, + /// /// raging_spirits_refresh_duration_when_they_kill_ignited_enemy /// - RagingSpiritsRefreshDurationWhenTheyKillIgnitedEnemy = 7448, - + RagingSpiritsRefreshDurationWhenTheyKillIgnitedEnemy = 7452, + /// /// add_frenzy_charge_every_50_rampage_stacks /// - AddFrenzyChargeEvery50RampageStacks = 7449, - + AddFrenzyChargeEvery50RampageStacks = 7453, + /// /// area_of_effect_+%_per_25_rampage_stacks /// - AreaOfEffectPctPer25RampageStacks = 7450, - + AreaOfEffectPctPer25RampageStacks = 7454, + /// /// traps_do_not_explode_on_timeout /// - TrapsDoNotExplodeOnTimeout = 7451, - + TrapsDoNotExplodeOnTimeout = 7455, + /// /// cannot_be_ignited_while_flame_golem_summoned /// - CannotBeIgnitedWhileFlameGolemSummoned = 7452, - + CannotBeIgnitedWhileFlameGolemSummoned = 7456, + /// /// cannot_be_shocked_while_lightning_golem_summoned /// - CannotBeShockedWhileLightningGolemSummoned = 7453, - + CannotBeShockedWhileLightningGolemSummoned = 7457, + /// /// cannot_be_chilled_or_frozen_while_ice_golem_summoned /// - CannotBeChilledOrFrozenWhileIceGolemSummoned = 7454, - + CannotBeChilledOrFrozenWhileIceGolemSummoned = 7458, + /// /// cannot_be_chilled /// - CannotBeChilled = 7455, - + CannotBeChilled = 7459, + /// /// attach_vines_to_defender_on_hit_%_chance /// - AttachVinesToDefenderOnHitPctChance = 7456, - + AttachVinesToDefenderOnHitPctChance = 7460, + /// /// unaffected_by_curses /// - UnaffectedByCurses = 7457, - + UnaffectedByCurses = 7461, + /// /// chill_minimum_slow_% /// - ChillMinimumSlowPct = 7458, - + ChillMinimumSlowPct = 7462, + /// /// shock_minimum_damage_taken_increase_% /// - ShockMinimumDamageTakenIncreasePct = 7459, - + ShockMinimumDamageTakenIncreasePct = 7463, + /// /// has_avians_flight /// - HasAviansFlight = 7460, - + HasAviansFlight = 7464, + /// /// has_avians_might /// - HasAviansMight = 7461, - + HasAviansMight = 7465, + /// /// life_regeneration_per_minute_while_you_have_avians_flight /// - LifeRegenerationPerMinuteWhileYouHaveAviansFlight = 7462, - + LifeRegenerationPerMinuteWhileYouHaveAviansFlight = 7466, + /// /// mana_regeneration_rate_per_minute_while_you_have_avians_flight /// - ManaRegenerationRatePerMinuteWhileYouHaveAviansFlight = 7463, - + ManaRegenerationRatePerMinuteWhileYouHaveAviansFlight = 7467, + /// /// avians_flight_duration_ms_+ /// - AviansFlightDurationMs = 7464, - + AviansFlightDurationMs = 7468, + /// /// avians_might_duration_ms_+ /// - AviansMightDurationMs = 7465, - + AviansMightDurationMs = 7469, + /// /// minimum_added_cold_damage_while_you_have_avians_might /// - MinimumAddedColdDamageWhileYouHaveAviansMight = 7466, - + MinimumAddedColdDamageWhileYouHaveAviansMight = 7470, + /// /// maximum_added_cold_damage_while_you_have_avians_might /// - MaximumAddedColdDamageWhileYouHaveAviansMight = 7467, - + MaximumAddedColdDamageWhileYouHaveAviansMight = 7471, + /// /// minimum_added_lightning_damage_while_you_have_avians_might /// - MinimumAddedLightningDamageWhileYouHaveAviansMight = 7468, - + MinimumAddedLightningDamageWhileYouHaveAviansMight = 7472, + /// /// maximum_added_lightning_damage_while_you_have_avians_might /// - MaximumAddedLightningDamageWhileYouHaveAviansMight = 7469, - + MaximumAddedLightningDamageWhileYouHaveAviansMight = 7473, + /// /// aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies /// - AspectOfTheAvianGrantsAviansMightAndAviansFlightToNearbyAllies = 7470, - + AspectOfTheAvianGrantsAviansMightAndAviansFlightToNearbyAllies = 7474, + /// /// aspect_of_the_avian_buff_effect_+% /// - AspectOfTheAvianBuffEffectPct = 7471, - + AspectOfTheAvianBuffEffectPct = 7475, + /// /// retaliation_godmode_ghost_duration_ms /// - RetaliationGodmodeGhostDurationMs = 7472, - + RetaliationGodmodeGhostDurationMs = 7476, + /// /// has_cats_stealth /// - HasCatsStealth = 7473, - + HasCatsStealth = 7477, + /// /// local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_% /// - LocalDisplayTriggerLevel20TornadoWhenYouGainAviansFlightOrAviansMightPct = 7474, - + LocalDisplayTriggerLevel20TornadoWhenYouGainAviansFlightOrAviansMightPct = 7478, + /// /// cast_on_gain_avians_flight_or_avians_might_% /// - CastOnGainAviansFlightOrAviansMightPct = 7475, - + CastOnGainAviansFlightOrAviansMightPct = 7479, + /// /// gain_phasing_while_you_have_cats_stealth /// - GainPhasingWhileYouHaveCatsStealth = 7476, - + GainPhasingWhileYouHaveCatsStealth = 7480, + /// /// cats_stealth_duration_ms_+ /// - CatsStealthDurationMs = 7477, - + CatsStealthDurationMs = 7481, + /// /// cat_aspect_reserves_no_mana /// - CatAspectReservesNoMana = 7478, - + CatAspectReservesNoMana = 7482, + /// /// gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth /// - GainMaximumFrenzyAndPowerChargesWhenYouGainCatsStealth = 7479, - + GainMaximumFrenzyAndPowerChargesWhenYouGainCatsStealth = 7483, + /// /// override_off_hand_base_critical_strike_chance_to_5% /// - OverrideOffHandBaseCriticalStrikeChanceTo5Pct = 7480, - + OverrideOffHandBaseCriticalStrikeChanceTo5Pct = 7484, + /// /// cannot_be_stunned_if_you_have_10_or_more_crab_charges /// - CannotBeStunnedIfYouHave10OrMoreCrabCharges = 7481, - + CannotBeStunnedIfYouHave10OrMoreCrabCharges = 7485, + /// /// number_of_crab_charges_lost_recently /// - NumberOfCrabChargesLostRecently = 7482, - + NumberOfCrabChargesLostRecently = 7486, + /// /// cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently /// - CannotLoseCrabChargesIfYouHaveLostCrabChargesRecently = 7483, - + CannotLoseCrabChargesIfYouHaveLostCrabChargesRecently = 7487, + /// /// do_not_lose_crab_charges_when_hit /// - DoNotLoseCrabChargesWhenHit = 7484, - + DoNotLoseCrabChargesWhenHit = 7488, + /// /// damage_+%_per_crab_charge /// - DamagePctPerCrabCharge = 7485, - + DamagePctPerCrabCharge = 7489, + /// /// chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_% /// - ChanceToGainMaxCrabStacksWhenYouWouldGainACrabStackPct = 7486, - + ChanceToGainMaxCrabStacksWhenYouWouldGainACrabStackPct = 7490, + /// /// additional_block_%_while_you_have_at_least_5_crab_charges /// - AdditionalBlockPctWhileYouHaveAtLeast5CrabCharges = 7487, - + AdditionalBlockPctWhileYouHaveAtLeast5CrabCharges = 7491, + /// /// additional_block_%_while_you_have_at_least_10_crab_charges /// - AdditionalBlockPctWhileYouHaveAtLeast10CrabCharges = 7488, - + AdditionalBlockPctWhileYouHaveAtLeast10CrabCharges = 7492, + /// /// number_of_crab_charges_lost_when_hit /// - NumberOfCrabChargesLostWhenHit = 7489, - + NumberOfCrabChargesLostWhenHit = 7493, + /// /// life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently /// - LifeAndManaLeechFromAttackDamagePermyriadIfKilledRecently = 7490, - + LifeAndManaLeechFromAttackDamagePermyriadIfKilledRecently = 7494, + /// /// monster_mortar_number_of_forks /// - MonsterMortarNumberOfForks = 7491, - + MonsterMortarNumberOfForks = 7495, + /// /// local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth /// - LocalDisplayTriggerLevelXIntimidatingCryWhenYouLoseCatsStealth = 7492, - + LocalDisplayTriggerLevelXIntimidatingCryWhenYouLoseCatsStealth = 7496, + /// /// cast_on_lose_cats_stealth /// - CastOnLoseCatsStealth = 7493, - + CastOnLoseCatsStealth = 7497, + /// /// movement_speed_+%_while_you_have_cats_stealth /// - MovementSpeedPctWhileYouHaveCatsStealth = 7494, - + MovementSpeedPctWhileYouHaveCatsStealth = 7498, + /// /// minimum_added_fire_damage_to_attacks_per_10_strength /// - MinimumAddedFireDamageToAttacksPer10Strength = 7495, - + MinimumAddedFireDamageToAttacksPer10Strength = 7499, + /// /// maximum_added_fire_damage_to_attacks_per_10_strength /// - MaximumAddedFireDamageToAttacksPer10Strength = 7496, - + MaximumAddedFireDamageToAttacksPer10Strength = 7500, + /// /// minimum_added_cold_damage_to_attacks_per_10_dexterity /// - MinimumAddedColdDamageToAttacksPer10Dexterity = 7497, - + MinimumAddedColdDamageToAttacksPer10Dexterity = 7501, + /// /// maximum_added_cold_damage_to_attacks_per_10_dexterity /// - MaximumAddedColdDamageToAttacksPer10Dexterity = 7498, - + MaximumAddedColdDamageToAttacksPer10Dexterity = 7502, + /// /// minimum_added_lightning_damage_to_attacks_per_10_intelligence /// - MinimumAddedLightningDamageToAttacksPer10Intelligence = 7499, - + MinimumAddedLightningDamageToAttacksPer10Intelligence = 7503, + /// /// maximum_added_lightning_damage_to_attacks_per_10_intelligence /// - MaximumAddedLightningDamageToAttacksPer10Intelligence = 7500, - + MaximumAddedLightningDamageToAttacksPer10Intelligence = 7504, + /// /// gain_rage_on_kill /// - GainRageOnKill = 7501, - + GainRageOnKill = 7505, + /// /// maximum_rage /// - MaximumRage = 7502, - + MaximumRage = 7506, + /// /// current_rage /// - CurrentRage = 7503, - + CurrentRage = 7507, + /// /// attack_damage_+%_from_rage /// - AttackDamagePctFromRage = 7504, - + AttackDamagePctFromRage = 7508, + /// /// attack_speed_+%_from_rage /// - AttackSpeedPctFromRage = 7505, - + AttackSpeedPctFromRage = 7509, + /// /// movement_speed_+%_from_rage /// - MovementSpeedPctFromRage = 7506, - + MovementSpeedPctFromRage = 7510, + /// /// life_loss_%_per_minute_from_rage /// - LifeLossPctPerMinuteFromRage = 7507, - + LifeLossPctPerMinuteFromRage = 7511, + /// /// gain_rage_when_you_use_a_warcry /// - GainRageWhenYouUseAWarcry = 7508, - + GainRageWhenYouUseAWarcry = 7512, + /// /// rage_effects_doubled /// - RageEffectsDoubled = 7509, - + RageEffectsDoubled = 7513, + /// /// virtual_life_degeneration_per_minute /// - VirtualLifeDegenerationPerMinute = 7510, - + VirtualLifeDegenerationPerMinute = 7514, + /// /// gain_rage_on_hitting_rare_unique_enemy_% /// - GainRageOnHittingRareUniqueEnemyPct = 7511, - + GainRageOnHittingRareUniqueEnemyPct = 7515, + /// /// spectral_shield_throw_secondary_projectiles_pierce /// - SpectralShieldThrowSecondaryProjectilesPierce = 7512, - + SpectralShieldThrowSecondaryProjectilesPierce = 7516, + /// /// herald_skills_mana_reservation_+% /// - HeraldSkillsManaReservationPct = 7513, - + HeraldSkillsManaReservationPct = 7517, + /// /// herald_effect_on_self_+% /// - HeraldEffectOnSelfPct = 7514, - + HeraldEffectOnSelfPct = 7518, + /// /// affected_by_herald_of_ash /// - AffectedByHeraldOfAsh = 7515, - + AffectedByHeraldOfAsh = 7519, + /// /// affected_by_herald_of_ice /// - AffectedByHeraldOfIce = 7516, - + AffectedByHeraldOfIce = 7520, + /// /// affected_by_herald_of_thunder /// - AffectedByHeraldOfThunder = 7517, - + AffectedByHeraldOfThunder = 7521, + /// /// damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash /// - DamagePenetratesPctFireResistanceWhileAffectedByHeraldOfAsh = 7518, - + DamagePenetratesPctFireResistanceWhileAffectedByHeraldOfAsh = 7522, + /// /// damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice /// - DamagePenetratesPctColdResistanceWhileAffectedByHeraldOfIce = 7519, - + DamagePenetratesPctColdResistanceWhileAffectedByHeraldOfIce = 7523, + /// /// damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder /// - DamagePenetratesPctLightningResistanceWhileAffectedByHeraldOfThunder = 7520, - + DamagePenetratesPctLightningResistanceWhileAffectedByHeraldOfThunder = 7524, + /// /// cannot_be_stunned_with_25_rage /// - CannotBeStunnedWith25Rage = 7521, - + CannotBeStunnedWith25Rage = 7525, + /// /// monster_rarity_damage_+%_final /// - MonsterRarityDamagePctFinal = 7522, - + MonsterRarityDamagePctFinal = 7526, + /// /// counterattacks_deal_double_damage /// - CounterattacksDealDoubleDamage = 7523, - + CounterattacksDealDoubleDamage = 7527, + /// /// owner_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds /// - OwnerStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 7524, - + OwnerStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 7528, + /// /// chance_to_gain_random_standard_charge_on_hit_% /// - ChanceToGainRandomStandardChargeOnHitPct = 7525, - + ChanceToGainRandomStandardChargeOnHitPct = 7529, + /// /// blink_and_mirror_arrow_cooldown_speed_+% /// - BlinkAndMirrorArrowCooldownSpeedPct = 7526, - + BlinkAndMirrorArrowCooldownSpeedPct = 7530, + /// /// elementalist_elemental_damage_+%_for_5_seconds /// - ElementalistElementalDamagePctFor5Seconds = 7527, - + ElementalistElementalDamagePctFor5Seconds = 7531, + /// /// elementalist_area_of_effect_+%_for_5_seconds /// - ElementalistAreaOfEffectPctFor5Seconds = 7528, - + ElementalistAreaOfEffectPctFor5Seconds = 7532, + /// /// immune_to_elemental_ailments_while_on_consecrated_ground /// - ImmuneToElementalAilmentsWhileOnConsecratedGround = 7529, - + ImmuneToElementalAilmentsWhileOnConsecratedGround = 7533, + /// /// create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy /// - CreateConsecratedGroundOnHitPctVsRareOrUniqueEnemy = 7530, - + CreateConsecratedGroundOnHitPctVsRareOrUniqueEnemy = 7534, + /// /// cannot_be_stunned_while_fortified /// - CannotBeStunnedWhileFortified = 7531, - + CannotBeStunnedWhileFortified = 7535, + /// /// armour_and_evasion_rating_+_while_fortified /// - ArmourAndEvasionRatingWhileFortified = 7532, - + ArmourAndEvasionRatingWhileFortified = 7536, + /// /// global_chance_to_blind_on_hit_%_vs_bleeding_enemies /// - GlobalChanceToBlindOnHitPctVsBleedingEnemies = 7533, - + GlobalChanceToBlindOnHitPctVsBleedingEnemies = 7537, + /// /// cannot_be_stunned_by_blocked_hits /// - CannotBeStunnedByBlockedHits = 7534, - + CannotBeStunnedByBlockedHits = 7538, + /// /// gratuitous_violence_bleeding_damage_+%_final /// - GratuitousViolenceBleedingDamagePctFinal = 7535, - + GratuitousViolenceBleedingDamagePctFinal = 7539, + /// /// chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy /// - ChanceToGainOnslaughtOnHitPctVsRareOrUniqueEnemy = 7536, - + ChanceToGainOnslaughtOnHitPctVsRareOrUniqueEnemy = 7540, + /// /// unaffected_by_temporal_chains /// - UnaffectedByTemporalChains = 7537, - + UnaffectedByTemporalChains = 7541, + /// /// apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy /// - ApplyCoveredInAshToAttackerOnHitPctVsRareOrUniqueEnemy = 7538, - + ApplyCoveredInAshToAttackerOnHitPctVsRareOrUniqueEnemy = 7542, + /// /// gain_endurance_charge_per_second_if_have_been_hit_recently /// - GainEnduranceChargePerSecondIfHaveBeenHitRecently = 7539, - + GainEnduranceChargePerSecondIfHaveBeenHitRecently = 7543, + /// /// stun_duration_+%_per_endurance_charge /// - StunDurationPctPerEnduranceCharge = 7540, - + StunDurationPctPerEnduranceCharge = 7544, + /// /// chance_to_gain_endurance_charge_on_stun_% /// - ChanceToGainEnduranceChargeOnStunPct = 7541, - + ChanceToGainEnduranceChargeOnStunPct = 7545, + /// /// totem_maximum_energy_shield /// - TotemMaximumEnergyShield = 7542, - + TotemMaximumEnergyShield = 7546, + /// /// you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem /// - YouAndTotemLifeRegenerationRatePerMinutePctPerActiveTotem = 7543, - + YouAndTotemLifeRegenerationRatePerMinutePctPerActiveTotem = 7547, + /// /// mana_regeneration_rate_per_minute_%_per_active_totem /// - ManaRegenerationRatePerMinutePctPerActiveTotem = 7544, - + ManaRegenerationRatePerMinutePctPerActiveTotem = 7548, + /// /// fire_damage_+%_per_endurance_charge /// - FireDamagePctPerEnduranceCharge = 7545, - + FireDamagePctPerEnduranceCharge = 7549, + /// /// track_have_taken_fire_damage_from_an_enemy_hit_recently /// - TrackHaveTakenFireDamageFromAnEnemyHitRecently = 7546, - + TrackHaveTakenFireDamageFromAnEnemyHitRecently = 7550, + /// /// have_taken_fire_damage_from_an_enemy_hit_recently /// - HaveTakenFireDamageFromAnEnemyHitRecently = 7547, - + HaveTakenFireDamageFromAnEnemyHitRecently = 7551, + /// /// life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently /// - LifeRegenerationRatePerMinutePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 7548, - + LifeRegenerationRatePerMinutePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 7552, + /// /// local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds /// - LocalDisplayEvery10SecondsPhysicalDamagePctToAddAsFireFor3Seconds = 7549, - + LocalDisplayEvery10SecondsPhysicalDamagePctToAddAsFireFor3Seconds = 7553, + /// /// critical_strike_damage_cannot_be_reflected /// - CriticalStrikeDamageCannotBeReflected = 7550, - + CriticalStrikeDamageCannotBeReflected = 7554, + /// /// damage_+%_if_only_one_enemy_nearby /// - DamagePctIfOnlyOneEnemyNearby = 7551, - + DamagePctIfOnlyOneEnemyNearby = 7555, + /// /// self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy /// - SelfTakeNoExtraDamageFromCriticalStrikesIfOnlyOneNearbyEnemy = 7552, - + SelfTakeNoExtraDamageFromCriticalStrikesIfOnlyOneNearbyEnemy = 7556, + /// /// poison_duration_+%_per_poison_applied_recently /// - PoisonDurationPctPerPoisonAppliedRecently = 7553, - + PoisonDurationPctPerPoisonAppliedRecently = 7557, + /// /// additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2% /// - AdditionalCriticalStrikeChancePermyriadPerPoisonOnEnemyUpTo2Pct = 7554, - + AdditionalCriticalStrikeChancePermyriadPerPoisonOnEnemyUpTo2Pct = 7558, + /// /// physical_damage_%_to_add_as_chaos_vs_poisoned_enemies /// - PhysicalDamagePctToAddAsChaosVsPoisonedEnemies = 7555, - + PhysicalDamagePctToAddAsChaosVsPoisonedEnemies = 7559, + /// /// recover_permyriad_maximum_life_per_poison_on_enemy_on_kill /// - RecoverPermyriadMaximumLifePerPoisonOnEnemyOnKill = 7556, - + RecoverPermyriadMaximumLifePerPoisonOnEnemyOnKill = 7560, + /// /// zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% /// - ZombieCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 7557, - + ZombieCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 7561, + /// /// self_offering_effect_+% /// - SelfOfferingEffectPct = 7558, - + SelfOfferingEffectPct = 7562, + /// /// %_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage /// - PctChanceToGain25PctNonChaosDamageToAddAsChaosDamage = 7559, - + PctChanceToGain25PctNonChaosDamageToAddAsChaosDamage = 7563, + /// /// %_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage /// - PctChanceToGain50PctNonChaosDamageToAddAsChaosDamage = 7560, - + PctChanceToGain50PctNonChaosDamageToAddAsChaosDamage = 7564, + /// /// %_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage /// - PctChanceToGain100PctNonChaosDamageToAddAsChaosDamage = 7561, - + PctChanceToGain100PctNonChaosDamageToAddAsChaosDamage = 7565, + /// /// damage_+%_per_active_golem /// - DamagePctPerActiveGolem = 7562, - + DamagePctPerActiveGolem = 7566, + /// /// virtual_total_number_of_active_golems /// - VirtualTotalNumberOfActiveGolems = 7563, - + VirtualTotalNumberOfActiveGolems = 7567, + /// /// unaffected_by_ignite /// - UnaffectedByIgnite = 7564, - + UnaffectedByIgnite = 7568, + /// /// gain_accuracy_rating_equal_to_strength /// - GainAccuracyRatingEqualToStrength = 7565, - + GainAccuracyRatingEqualToStrength = 7569, + /// /// accuracy_rating_+%_if_have_crit_in_past_8_seconds /// - AccuracyRatingPctIfHaveCritInPast8Seconds = 7566, - + AccuracyRatingPctIfHaveCritInPast8Seconds = 7570, + /// /// damage_+%_if_have_crit_in_past_8_seconds /// - DamagePctIfHaveCritInPast8Seconds = 7567, - + DamagePctIfHaveCritInPast8Seconds = 7571, + /// /// track_have_crit_in_past_8_seconds /// - TrackHaveCritInPast8Seconds = 7568, - + TrackHaveCritInPast8Seconds = 7572, + /// /// have_crit_in_past_8_seconds /// - HaveCritInPast8Seconds = 7569, - + HaveCritInPast8Seconds = 7573, + /// /// virtual_accuracy_rating_+% /// - VirtualAccuracyRatingPct = 7570, - + VirtualAccuracyRatingPct = 7574, + /// /// hierophant_mana_reservation_+%_final /// - HierophantManaReservationPctFinal = 7571, - + HierophantManaReservationPctFinal = 7575, + /// /// elemental_penetration_%_if_you_have_a_power_charge /// - ElementalPenetrationPctIfYouHaveAPowerCharge = 7572, - + ElementalPenetrationPctIfYouHaveAPowerCharge = 7576, + /// /// elemental_damage_taken_+%_if_you_have_an_endurance_charge /// - ElementalDamageTakenPctIfYouHaveAnEnduranceCharge = 7573, - + ElementalDamageTakenPctIfYouHaveAnEnduranceCharge = 7577, + /// /// track_number_of_traps_triggered_recently /// - TrackNumberOfTrapsTriggeredRecently = 7574, - + TrackNumberOfTrapsTriggeredRecently = 7578, + /// /// number_of_traps_triggered_recently /// - NumberOfTrapsTriggeredRecently = 7575, - + NumberOfTrapsTriggeredRecently = 7579, + /// /// track_number_of_mines_detonated_recently /// - TrackNumberOfMinesDetonatedRecently = 7576, - + TrackNumberOfMinesDetonatedRecently = 7580, + /// /// number_of_mines_detonated_recently /// - NumberOfMinesDetonatedRecently = 7577, - + NumberOfMinesDetonatedRecently = 7581, + /// /// life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20% /// - LifeRegenerationRatePerMinutePctPerTrapTriggeredRecentlyUpTo20Pct = 7578, - + LifeRegenerationRatePerMinutePctPerTrapTriggeredRecentlyUpTo20Pct = 7582, + /// /// life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20% /// - LifeRegenerationRatePerMinutePctPerMineDetonatedRecentlyUpTo20Pct = 7579, - + LifeRegenerationRatePerMinutePctPerMineDetonatedRecentlyUpTo20Pct = 7583, + /// /// you_and_allies_additional_block_%_if_have_attacked_recently /// - YouAndAlliesAdditionalBlockPctIfHaveAttackedRecently = 7580, - + YouAndAlliesAdditionalBlockPctIfHaveAttackedRecently = 7584, + /// /// you_and_allies_additional_spell_block_%_if_cast_spell_recently /// - YouAndAlliesAdditionalSpellBlockPctIfCastSpellRecently = 7581, - + YouAndAlliesAdditionalSpellBlockPctIfCastSpellRecently = 7585, + /// /// movement_speed_+%_while_you_have_energy_shield /// - MovementSpeedPctWhileYouHaveEnergyShield = 7582, - + MovementSpeedPctWhileYouHaveEnergyShield = 7586, + /// /// chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield /// - ChanceToDodgeAttacksAndSpellsPctWhileYouHaveEnergyShield = 7583, - + ChanceToDodgeAttacksAndSpellsPctWhileYouHaveEnergyShield = 7587, + /// /// trickster_damage_over_time_+%_final /// - TricksterDamageOverTimePctFinal = 7584, - + TricksterDamageOverTimePctFinal = 7588, + /// /// object_cannot_taunt_enemies /// - ObjectCannotTauntEnemies = 7585, - + ObjectCannotTauntEnemies = 7589, + /// /// cold_beam_retaliation_chilled_ground_in_beam_duration_ms /// - ColdBeamRetaliationChilledGroundInBeamDurationMs = 7586, - + ColdBeamRetaliationChilledGroundInBeamDurationMs = 7590, + /// /// cold_beam_retaliation_chilled_ground_in_area_duration_ms /// - ColdBeamRetaliationChilledGroundInAreaDurationMs = 7587, - + ColdBeamRetaliationChilledGroundInAreaDurationMs = 7591, + /// /// enemy_extra_damage_rolls_when_on_full_life /// - EnemyExtraDamageRollsWhenOnFullLife = 7588, - + EnemyExtraDamageRollsWhenOnFullLife = 7592, + /// /// burning_damage_+%_per_non_shocked_enemy_shocked_recently /// - BurningDamagePctPerNonShockedEnemyShockedRecently = 7589, - + BurningDamagePctPerNonShockedEnemyShockedRecently = 7593, + /// /// global_minimum_added_lightning_damage_vs_ignited_enemies /// - GlobalMinimumAddedLightningDamageVsIgnitedEnemies = 7590, - + GlobalMinimumAddedLightningDamageVsIgnitedEnemies = 7594, + /// /// global_maximum_added_lightning_damage_vs_ignited_enemies /// - GlobalMaximumAddedLightningDamageVsIgnitedEnemies = 7591, - + GlobalMaximumAddedLightningDamageVsIgnitedEnemies = 7595, + /// /// lightning_damage_can_ignite /// - LightningDamageCanIgnite = 7592, - + LightningDamageCanIgnite = 7596, + /// /// minimum_added_spell_fire_damage_while_no_life_is_reserved /// - MinimumAddedSpellFireDamageWhileNoLifeIsReserved = 7593, - + MinimumAddedSpellFireDamageWhileNoLifeIsReserved = 7597, + /// /// maximum_added_spell_fire_damage_while_no_life_is_reserved /// - MaximumAddedSpellFireDamageWhileNoLifeIsReserved = 7594, - + MaximumAddedSpellFireDamageWhileNoLifeIsReserved = 7598, + /// /// minimum_added_spell_cold_damage_while_no_life_is_reserved /// - MinimumAddedSpellColdDamageWhileNoLifeIsReserved = 7595, - + MinimumAddedSpellColdDamageWhileNoLifeIsReserved = 7599, + /// /// maximum_added_spell_cold_damage_while_no_life_is_reserved /// - MaximumAddedSpellColdDamageWhileNoLifeIsReserved = 7596, - + MaximumAddedSpellColdDamageWhileNoLifeIsReserved = 7600, + /// /// minimum_added_spell_lightning_damage_while_no_life_is_reserved /// - MinimumAddedSpellLightningDamageWhileNoLifeIsReserved = 7597, - + MinimumAddedSpellLightningDamageWhileNoLifeIsReserved = 7601, + /// /// maximum_added_spell_lightning_damage_while_no_life_is_reserved /// - MaximumAddedSpellLightningDamageWhileNoLifeIsReserved = 7598, - + MaximumAddedSpellLightningDamageWhileNoLifeIsReserved = 7602, + /// /// projectile_attack_damage_+%_with_at_least_200_dex /// - ProjectileAttackDamagePctWithAtLeast200Dex = 7599, - + ProjectileAttackDamagePctWithAtLeast200Dex = 7603, + /// /// critical_strike_chance_+%_with_at_least_200_int /// - CriticalStrikeChancePctWithAtLeast200Int = 7600, - + CriticalStrikeChancePctWithAtLeast200Int = 7604, + /// /// virtual_keystone_crimson_dance /// - VirtualKeystoneCrimsonDance = 7601, - + VirtualKeystoneCrimsonDance = 7605, + /// /// keystone_crimson_dance /// - KeystoneCrimsonDance = 7602, - + KeystoneCrimsonDance = 7606, + /// /// gain_crimson_dance_if_have_dealt_critical_strike_recently /// - GainCrimsonDanceIfHaveDealtCriticalStrikeRecently = 7603, - + GainCrimsonDanceIfHaveDealtCriticalStrikeRecently = 7607, + /// /// gain_crimson_dance_while_you_have_cat_stealth /// - GainCrimsonDanceWhileYouHaveCatStealth = 7604, - + GainCrimsonDanceWhileYouHaveCatStealth = 7608, + /// /// virtual_bleeding_stacks_up_to_x_times /// - VirtualBleedingStacksUpToXTimes = 7605, - + VirtualBleedingStacksUpToXTimes = 7609, + /// /// gain_onslaught_while_on_low_life /// - GainOnslaughtWhileOnLowLife = 7606, - + GainOnslaughtWhileOnLowLife = 7610, + /// /// hits_ignore_enemy_fire_resistance_while_you_are_ignited /// - HitsIgnoreEnemyFireResistanceWhileYouAreIgnited = 7607, - + HitsIgnoreEnemyFireResistanceWhileYouAreIgnited = 7611, + /// /// virtual_hits_ignore_enemy_fire_resistance /// - VirtualHitsIgnoreEnemyFireResistance = 7608, - + VirtualHitsIgnoreEnemyFireResistance = 7612, + /// /// override_maximum_damage_resistance_% /// - OverrideMaximumDamageResistancePct = 7609, - + OverrideMaximumDamageResistancePct = 7613, + /// /// local_display_trigger_commandment_of_inferno_on_crit_% /// - LocalDisplayTriggerCommandmentOfInfernoOnCritPct = 7610, - + LocalDisplayTriggerCommandmentOfInfernoOnCritPct = 7614, + /// /// local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy /// - LocalDisplayTriggerLevelXIcicleNovaOnKillVsFrozenEnemy = 7611, - + LocalDisplayTriggerLevelXIcicleNovaOnKillVsFrozenEnemy = 7615, + /// /// trigger_on_kill_vs_frozen_enemy_% /// - TriggerOnKillVsFrozenEnemyPct = 7612, - + TriggerOnKillVsFrozenEnemyPct = 7616, + /// /// attacks_bleed_on_hit_while_you_have_cat_stealth /// - AttacksBleedOnHitWhileYouHaveCatStealth = 7613, - + AttacksBleedOnHitWhileYouHaveCatStealth = 7617, + /// /// hit_and_ailment_damage_+%_vs_bleeding_enemies /// - HitAndAilmentDamagePctVsBleedingEnemies = 7614, - + HitAndAilmentDamagePctVsBleedingEnemies = 7618, + /// /// base_ailment_damage_+% /// - BaseAilmentDamagePct = 7615, - + BaseAilmentDamagePct = 7619, + /// /// accuracy_rating_vs_bleeding_enemies /// - AccuracyRatingVsBleedingEnemies = 7616, - + AccuracyRatingVsBleedingEnemies = 7620, + /// /// gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec /// - GainPctTotalPhysDamagePreventedInThePast10SecAsLifeRegenPerSec = 7617, - + GainPctTotalPhysDamagePreventedInThePast10SecAsLifeRegenPerSec = 7621, + /// /// total_armour_of_animated_guardians_items /// - TotalArmourOfAnimatedGuardiansItems = 7618, - + TotalArmourOfAnimatedGuardiansItems = 7622, + /// /// total_evasion_rating_of_animated_guardians_items /// - TotalEvasionRatingOfAnimatedGuardiansItems = 7619, - + TotalEvasionRatingOfAnimatedGuardiansItems = 7623, + /// /// total_maximum_energy_shield_of_animated_guardians_items /// - TotalMaximumEnergyShieldOfAnimatedGuardiansItems = 7620, - + TotalMaximumEnergyShieldOfAnimatedGuardiansItems = 7624, + /// /// animated_weapon_armour /// - AnimatedWeaponArmour = 7621, - + AnimatedWeaponArmour = 7625, + /// /// animated_weapon_evasion_rating /// - AnimatedWeaponEvasionRating = 7622, - + AnimatedWeaponEvasionRating = 7626, + /// /// aniamted_weapon_maximum_energy_shield /// - AniamtedWeaponMaximumEnergyShield = 7623, - + AniamtedWeaponMaximumEnergyShield = 7627, + /// /// defences_from_animated_guardians_items_apply_to_animated_weapon /// - DefencesFromAnimatedGuardiansItemsApplyToAnimatedWeapon = 7624, - + DefencesFromAnimatedGuardiansItemsApplyToAnimatedWeapon = 7628, + /// /// fire_projectile_retaliation_skill_visual_scale_+%_when_hit_while_charging /// - FireProjectileRetaliationSkillVisualScalePctWhenHitWhileCharging = 7625, - + FireProjectileRetaliationSkillVisualScalePctWhenHitWhileCharging = 7629, + /// /// fire_projectile_retaliation_area_of_effect_+%_when_hit_while_charging /// - FireProjectileRetaliationAreaOfEffectPctWhenHitWhileCharging = 7626, - + FireProjectileRetaliationAreaOfEffectPctWhenHitWhileCharging = 7630, + /// /// fire_projectile_retaliation_projectile_speed_and_damage_+%_when_hit_while_charging /// - FireProjectileRetaliationProjectileSpeedAndDamagePctWhenHitWhileCharging = 7627, - + FireProjectileRetaliationProjectileSpeedAndDamagePctWhenHitWhileCharging = 7631, + /// /// gained_rage_recently /// - GainedRageRecently = 7628, - + GainedRageRecently = 7632, + /// /// local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance /// - LocalDisplayTriggerLevel20AnimateGuardianWeaponOnGuardianKillPctChance = 7629, - + LocalDisplayTriggerLevel20AnimateGuardianWeaponOnGuardianKillPctChance = 7633, + /// /// chance_to_trigger_on_animate_guardian_kill_% /// - ChanceToTriggerOnAnimateGuardianKillPct = 7630, - + ChanceToTriggerOnAnimateGuardianKillPct = 7634, + /// /// animate_guardian_and_weapon_track_on_kill /// - AnimateGuardianAndWeaponTrackOnKill = 7631, - + AnimateGuardianAndWeaponTrackOnKill = 7635, + /// /// local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance /// - LocalDisplayTriggerLevel20AnimateGuardianWeaponOnWeaponKillPctChance = 7632, - + LocalDisplayTriggerLevel20AnimateGuardianWeaponOnWeaponKillPctChance = 7636, + /// /// chance_to_trigger_on_animate_weapon_kill_% /// - ChanceToTriggerOnAnimateWeaponKillPct = 7633, - + ChanceToTriggerOnAnimateWeaponKillPct = 7637, + /// /// you_cannot_have_non_animated_minions /// - YouCannotHaveNonAnimatedMinions = 7634, - + YouCannotHaveNonAnimatedMinions = 7638, + /// /// animate_guardian_damage_+%_per_animated_weapon /// - AnimateGuardianDamagePctPerAnimatedWeapon = 7635, - + AnimateGuardianDamagePctPerAnimatedWeapon = 7639, + /// /// animated_minions_melee_splash /// - AnimatedMinionsMeleeSplash = 7636, - + AnimatedMinionsMeleeSplash = 7640, + /// /// grant_animated_minion_melee_splash_damage_+%_final_for_splash /// - GrantAnimatedMinionMeleeSplashDamagePctFinalForSplash = 7637, - + GrantAnimatedMinionMeleeSplashDamagePctFinalForSplash = 7641, + /// /// animated_minion_melee_splash_damage_+%_final_for_splash /// - AnimatedMinionMeleeSplashDamagePctFinalForSplash = 7638, - + AnimatedMinionMeleeSplashDamagePctFinalForSplash = 7642, + /// /// animated_minion_melee_splash_damage_+%_final /// - AnimatedMinionMeleeSplashDamagePctFinal = 7639, - + AnimatedMinionMeleeSplashDamagePctFinal = 7643, + /// /// number_of_active_animated_armour /// - NumberOfActiveAnimatedArmour = 7640, - + NumberOfActiveAnimatedArmour = 7644, + /// /// geometry_attack_use_orientation_direction /// - GeometryAttackUseOrientationDirection = 7641, - + GeometryAttackUseOrientationDirection = 7645, + /// /// virtual_elemental_reflect_damage_taken_+% /// - VirtualElementalReflectDamageTakenPct = 7642, - + VirtualElementalReflectDamageTakenPct = 7646, + /// /// additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByCatAspect = 7643, - + AdditionalCriticalStrikeChancePermyriadWhileAffectedByCatAspect = 7647, + /// /// virtual_%_chance_to_blind_on_critical_strike /// - VirtualPctChanceToBlindOnCriticalStrike = 7644, - + VirtualPctChanceToBlindOnCriticalStrike = 7648, + /// /// %_chance_to_blind_on_critical_strike_while_you_have_cats_stealth /// - PctChanceToBlindOnCriticalStrikeWhileYouHaveCatsStealth = 7645, - + PctChanceToBlindOnCriticalStrikeWhileYouHaveCatsStealth = 7649, + /// /// has_cat_aspect /// - HasCatAspect = 7646, - + HasCatAspect = 7650, + /// /// hit_and_ailment_damage_+%_vs_blinded_enemies /// - HitAndAilmentDamagePctVsBlindedEnemies = 7647, - + HitAndAilmentDamagePctVsBlindedEnemies = 7651, + /// /// has_adrenaline /// - HasAdrenaline = 7648, - + HasAdrenaline = 7652, + /// /// gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline /// - GainAdrenalineForXSecondsOnLowLifeUnlessYouHaveAdrenaline = 7649, - + GainAdrenalineForXSecondsOnLowLifeUnlessYouHaveAdrenaline = 7653, + /// /// remove_ailments_and_burning_on_gaining_adrenaline /// - RemoveAilmentsAndBurningOnGainingAdrenaline = 7650, - + RemoveAilmentsAndBurningOnGainingAdrenaline = 7654, + /// /// attack_ailment_damage_+%_while_wielding_staff /// - AttackAilmentDamagePctWhileWieldingStaff = 7651, - + AttackAilmentDamagePctWhileWieldingStaff = 7655, + /// /// attack_ailment_damage_+%_while_wielding_wand /// - AttackAilmentDamagePctWhileWieldingWand = 7652, - + AttackAilmentDamagePctWhileWieldingWand = 7656, + /// /// enemies_taunted_by_you_cannot_evade_attacks /// - EnemiesTauntedByYouCannotEvadeAttacks = 7653, - + EnemiesTauntedByYouCannotEvadeAttacks = 7657, + /// /// spider_aspect_web_interval_ms /// - SpiderAspectWebIntervalMs = 7654, - + SpiderAspectWebIntervalMs = 7658, + /// /// spider_aspect_max_web_count /// - SpiderAspectMaxWebCount = 7655, - + SpiderAspectMaxWebCount = 7659, + /// /// spider_aspect_debuff_duration_+% /// - SpiderAspectDebuffDurationPct = 7656, - + SpiderAspectDebuffDurationPct = 7660, + /// /// energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web /// - EnergyShieldGainWhenYouHitEnemyAffectedBySpidersWeb = 7657, - + EnergyShieldGainWhenYouHitEnemyAffectedBySpidersWeb = 7661, + /// /// chill_effect_is_reversed /// - ChillEffectIsReversed = 7658, - + ChillEffectIsReversed = 7662, + /// /// virtual_on_low_life /// - VirtualOnLowLife = 7659, - + VirtualOnLowLife = 7663, + /// /// you_count_as_low_life_while_not_on_full_life /// - YouCountAsLowLifeWhileNotOnFullLife = 7660, - + YouCountAsLowLifeWhileNotOnFullLife = 7664, + /// /// mana_cost_+%_for_trap_and_mine_skills /// - ManaCostPctForTrapAndMineSkills = 7661, - + ManaCostPctForTrapAndMineSkills = 7665, + /// /// gain_arcane_surge_on_spell_hit_by_you_or_your_totems /// - GainArcaneSurgeOnSpellHitByYouOrYourTotems = 7662, - + GainArcaneSurgeOnSpellHitByYouOrYourTotems = 7666, + /// /// spell_damage_+%_while_you_have_arcane_surge /// - SpellDamagePctWhileYouHaveArcaneSurge = 7663, - + SpellDamagePctWhileYouHaveArcaneSurge = 7667, + /// /// area_of_effect_+%_while_you_have_arcane_surge /// - AreaOfEffectPctWhileYouHaveArcaneSurge = 7664, - + AreaOfEffectPctWhileYouHaveArcaneSurge = 7668, + /// /// immune_to_elemental_ailments_while_you_have_arcane_surge /// - ImmuneToElementalAilmentsWhileYouHaveArcaneSurge = 7665, - + ImmuneToElementalAilmentsWhileYouHaveArcaneSurge = 7669, + /// /// chance_to_gain_onslaught_on_kill_for_10_seconds_% /// - ChanceToGainOnslaughtOnKillFor10SecondsPct = 7666, - + ChanceToGainOnslaughtOnKillFor10SecondsPct = 7670, + /// /// curse_on_hit_level_poachers_mark_bypass_hexproof /// - CurseOnHitLevelPoachersMarkBypassHexproof = 7667, - + CurseOnHitLevelPoachersMarkBypassHexproof = 7671, + /// /// you_have_no_armour_or_energy_shield /// - YouHaveNoArmourOrEnergyShield = 7668, - + YouHaveNoArmourOrEnergyShield = 7672, + /// /// chance_to_trigger_socketed_spell_on_bow_attack_% /// - ChanceToTriggerSocketedSpellOnBowAttackPct = 7669, - + ChanceToTriggerSocketedSpellOnBowAttackPct = 7673, + /// /// culling_strike_on_enemies_affected_by_poachers_mark /// - CullingStrikeOnEnemiesAffectedByPoachersMark = 7670, - + CullingStrikeOnEnemiesAffectedByPoachersMark = 7674, + /// /// self_physical_damage_on_movement_skill_use /// - SelfPhysicalDamageOnMovementSkillUse = 7671, - + SelfPhysicalDamageOnMovementSkillUse = 7675, + /// /// grant_tailwind_to_nearby_allies_if_used_skill_recently /// - GrantTailwindToNearbyAlliesIfUsedSkillRecently = 7672, - + GrantTailwindToNearbyAlliesIfUsedSkillRecently = 7676, + /// /// evasion_rating_+_while_you_have_tailwind /// - EvasionRatingWhileYouHaveTailwind = 7673, - + EvasionRatingWhileYouHaveTailwind = 7677, + /// /// tailwind_effect_on_self_+% /// - TailwindEffectOnSelfPct = 7674, - + TailwindEffectOnSelfPct = 7678, + /// /// enemies_you_curse_have_malediction /// - EnemiesYouCurseHaveMalediction = 7675, - + EnemiesYouCurseHaveMalediction = 7679, + /// /// has_arcane_surge /// - HasArcaneSurge = 7676, - + HasArcaneSurge = 7680, + /// /// virtual_light_radius_+% /// - VirtualLightRadiusPct = 7677, - + VirtualLightRadiusPct = 7681, + /// /// light_radius_increases_apply_to_area_of_effect /// - LightRadiusIncreasesApplyToAreaOfEffect = 7678, - + LightRadiusIncreasesApplyToAreaOfEffect = 7682, + /// /// local_display_trigger_level_X_blinding_aura_skill_on_equip /// - LocalDisplayTriggerLevelXBlindingAuraSkillOnEquip = 7679, - + LocalDisplayTriggerLevelXBlindingAuraSkillOnEquip = 7683, + /// /// minimum_added_chaos_damage_per_spiders_web_on_enemy /// - MinimumAddedChaosDamagePerSpidersWebOnEnemy = 7680, - + MinimumAddedChaosDamagePerSpidersWebOnEnemy = 7684, + /// /// maximum_added_chaos_damage_per_spiders_web_on_enemy /// - MaximumAddedChaosDamagePerSpidersWebOnEnemy = 7681, - + MaximumAddedChaosDamagePerSpidersWebOnEnemy = 7685, + /// /// hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs /// - HitAndAilmentDamagePctVsEnemiesAffectedByAtLeast3SpidersWebs = 7682, - + HitAndAilmentDamagePctVsEnemiesAffectedByAtLeast3SpidersWebs = 7686, + /// /// damage_+%_for_enemies_you_inflict_spiders_web_upon /// - DamagePctForEnemiesYouInflictSpidersWebUpon = 7683, - + DamagePctForEnemiesYouInflictSpidersWebUpon = 7687, + /// /// spider_aspect_skill_area_of_effect_+% /// - SpiderAspectSkillAreaOfEffectPct = 7684, - + SpiderAspectSkillAreaOfEffectPct = 7688, + /// /// resist_all_%_for_enemies_you_inflict_spiders_web_upon /// - ResistAllPctForEnemiesYouInflictSpidersWebUpon = 7685, - + ResistAllPctForEnemiesYouInflictSpidersWebUpon = 7689, + /// /// resist_all_% /// - ResistAllPct = 7686, - + ResistAllPct = 7690, + /// /// chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_% /// - ChanceToGainPowerChargeOnHittingEnemyAffectedBySpidersWebPct = 7687, - + ChanceToGainPowerChargeOnHittingEnemyAffectedBySpidersWebPct = 7691, + /// /// chance_to_poison_on_hit_%_per_power_charge /// - ChanceToPoisonOnHitPctPerPowerCharge = 7688, - + ChanceToPoisonOnHitPctPerPowerCharge = 7692, + /// /// poison_damage_+%_per_power_charge /// - PoisonDamagePctPerPowerCharge = 7689, - + PoisonDamagePctPerPowerCharge = 7693, + /// /// spider_aspect_web_interval_ms_override /// - SpiderAspectWebIntervalMsOverride = 7690, - + SpiderAspectWebIntervalMsOverride = 7694, + /// /// bestiary_net_variation /// - BestiaryNetVariation = 7691, - + BestiaryNetVariation = 7695, + /// /// virtual_golem_buff_effect_+% /// - VirtualGolemBuffEffectPct = 7692, - + VirtualGolemBuffEffectPct = 7696, + /// /// golem_buff_effect_+%_per_summoned_golem /// - GolemBuffEffectPctPerSummonedGolem = 7693, - + GolemBuffEffectPctPerSummonedGolem = 7697, + /// /// has_tailwind /// - HasTailwind = 7694, - + HasTailwind = 7698, + /// /// summoned_skeletons_hits_cant_be_evaded /// - SummonedSkeletonsHitsCantBeEvaded = 7695, - + SummonedSkeletonsHitsCantBeEvaded = 7699, + /// /// zombie_slam_area_of_effect_+% /// - ZombieSlamAreaOfEffectPct = 7696, - + ZombieSlamAreaOfEffectPct = 7700, + /// /// monster_slam_area_of_effect_+% /// - MonsterSlamAreaOfEffectPct = 7697, - + MonsterSlamAreaOfEffectPct = 7701, + /// /// additional_block_%_per_hit_you_have_blocked_in_past_10_seconds /// - AdditionalBlockPctPerHitYouHaveBlockedInPast10Seconds = 7698, - + AdditionalBlockPctPerHitYouHaveBlockedInPast10Seconds = 7702, + /// /// herald_of_ash_spell_fire_damage_+%_final /// - HeraldOfAshSpellFireDamagePctFinal = 7699, - + HeraldOfAshSpellFireDamagePctFinal = 7703, + /// /// skill_uses_main_hand /// - SkillUsesMainHand = 7700, - + SkillUsesMainHand = 7704, + /// /// skill_uses_off_hand /// - SkillUsesOffHand = 7701, - + SkillUsesOffHand = 7705, + /// /// hundred_times_average_damage_per_spell_hit /// - HundredTimesAverageDamagePerSpellHit = 7702, - + HundredTimesAverageDamagePerSpellHit = 7706, + /// /// hundred_times_average_damage_per_secondary_hit /// - HundredTimesAverageDamagePerSecondaryHit = 7703, - + HundredTimesAverageDamagePerSecondaryHit = 7707, + /// /// hundred_times_average_damage_per_main_hand_hit /// - HundredTimesAverageDamagePerMainHandHit = 7704, - + HundredTimesAverageDamagePerMainHandHit = 7708, + /// /// hundred_times_average_damage_per_off_hand_hit /// - HundredTimesAverageDamagePerOffHandHit = 7705, - + HundredTimesAverageDamagePerOffHandHit = 7709, + /// /// life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge /// - LifeLeechFromSpellDamagePermyriadWhileYouHaveArcaneSurge = 7706, - + LifeLeechFromSpellDamagePermyriadWhileYouHaveArcaneSurge = 7710, + /// /// additional_spell_block_% /// - AdditionalSpellBlockPct = 7707, - + AdditionalSpellBlockPct = 7711, + /// /// cannot_pierce /// - CannotPierce = 7708, - + CannotPierce = 7712, + /// - /// projectile_damage_%_for_each_remaining_chain + /// deadeye_projectile_damage_+%_final_for_each_remaining_chain /// - ProjectileDamagePctForEachRemainingChain = 7709, - + DeadeyeProjectileDamagePctFinalForEachRemainingChain = 7713, + /// /// raging_spirits_always_ignite /// - RagingSpiritsAlwaysIgnite = 7710, - + RagingSpiritsAlwaysIgnite = 7714, + /// /// reduce_enemy_fire_resistance_%_vs_blinded_enemies /// - ReduceEnemyFireResistancePctVsBlindedEnemies = 7711, - + ReduceEnemyFireResistancePctVsBlindedEnemies = 7715, + /// /// hits_cannot_be_evaded_vs_blinded_enemies /// - HitsCannotBeEvadedVsBlindedEnemies = 7712, - + HitsCannotBeEvadedVsBlindedEnemies = 7716, + /// /// base_body_armour_evasion_rating /// - BaseBodyArmourEvasionRating = 7713, - + BaseBodyArmourEvasionRating = 7717, + /// /// base_helmet_maximum_energy_shield /// - BaseHelmetMaximumEnergyShield = 7714, - + BaseHelmetMaximumEnergyShield = 7718, + /// /// evasion_rating_+_per_1_helmet_energy_shield /// - EvasionRatingPer1HelmetEnergyShield = 7715, - + EvasionRatingPer1HelmetEnergyShield = 7719, + /// /// maximum_energy_shield_+_per_6_body_armour_evasion_rating /// - MaximumEnergyShieldPer6BodyArmourEvasionRating = 7716, - + MaximumEnergyShieldPer6BodyArmourEvasionRating = 7720, + /// /// damage_taken_+%_if_have_not_been_hit_recently /// - DamageTakenPctIfHaveNotBeenHitRecently = 7717, - + DamageTakenPctIfHaveNotBeenHitRecently = 7721, + /// /// cannot_be_stunned_if_have_not_been_hit_recently /// - CannotBeStunnedIfHaveNotBeenHitRecently = 7718, - + CannotBeStunnedIfHaveNotBeenHitRecently = 7722, + /// /// map_num_grandmasters /// - MapNumGrandmasters = 7719, - + MapNumGrandmasters = 7723, + /// /// map_grandmaster_seed /// - MapGrandmasterSeed = 7720, - + MapGrandmasterSeed = 7724, + /// /// minimum_added_fire_damage_to_hits_vs_blinded_enemies /// - MinimumAddedFireDamageToHitsVsBlindedEnemies = 7721, - + MinimumAddedFireDamageToHitsVsBlindedEnemies = 7725, + /// /// maximum_added_fire_damage_to_hits_vs_blinded_enemies /// - MaximumAddedFireDamageToHitsVsBlindedEnemies = 7722, - + MaximumAddedFireDamageToHitsVsBlindedEnemies = 7726, + /// /// main_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies /// - MainHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7723, - + MainHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7727, + /// /// main_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies /// - MainHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7724, - + MainHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7728, + /// /// off_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies /// - OffHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7725, - + OffHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7729, + /// /// off_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies /// - OffHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7726, - + OffHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7730, + /// /// light_radius_increases_apply_to_accuracy /// - LightRadiusIncreasesApplyToAccuracy = 7727, - + LightRadiusIncreasesApplyToAccuracy = 7731, + /// /// endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge /// - EnduranceChargeOnMeleeStunDamagePctFinalPerEnduranceCharge = 7728, - + EnduranceChargeOnMeleeStunDamagePctFinalPerEnduranceCharge = 7732, + /// /// tectonic_slam_chance_to_use_endurance_charge_% /// - TectonicSlamChanceToUseEnduranceChargePct = 7729, - + TectonicSlamChanceToUseEnduranceChargePct = 7733, + /// /// tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value /// - TectonicSlam1PctChanceToDoChargedSlamPer2StatValue = 7730, - + TectonicSlam1PctChanceToDoChargedSlamPer2StatValue = 7734, + /// /// tectonic_slam_%_chance_to_do_charged_slam /// - TectonicSlamPctChanceToDoChargedSlam = 7731, - + TectonicSlamPctChanceToDoChargedSlam = 7735, + /// /// virtual_tectonic_slam_%_chance_to_do_charged_slam /// - VirtualTectonicSlamPctChanceToDoChargedSlam = 7732, - + VirtualTectonicSlamPctChanceToDoChargedSlam = 7736, + /// /// %_number_of_raging_spirits_allowed /// - PctNumberOfRagingSpiritsAllowed = 7733, - + PctNumberOfRagingSpiritsAllowed = 7737, + /// /// manifest_dancing_dervish_number_of_additional_copies /// - ManifestDancingDervishNumberOfAdditionalCopies = 7734, - + ManifestDancingDervishNumberOfAdditionalCopies = 7738, + /// /// map_is_zana_map /// - MapIsZanaMap = 7735, - + MapIsZanaMap = 7739, + /// /// map_num_zana_mods /// - MapNumZanaMods = 7736, - + MapNumZanaMods = 7740, + /// /// local_display_trigger_level_x_curse_nova_on_hit_while_cursed /// - LocalDisplayTriggerLevelXCurseNovaOnHitWhileCursed = 7737, - + LocalDisplayTriggerLevelXCurseNovaOnHitWhileCursed = 7741, + /// /// cast_on_hit_if_cursed_% /// - CastOnHitIfCursedPct = 7738, - + CastOnHitIfCursedPct = 7742, + /// /// base_life_recovery_per_minute_from_flask /// - BaseLifeRecoveryPerMinuteFromFlask = 7739, - + BaseLifeRecoveryPerMinuteFromFlask = 7743, + /// /// base_mana_recovery_per_minute_from_flask /// - BaseManaRecoveryPerMinuteFromFlask = 7740, - + BaseManaRecoveryPerMinuteFromFlask = 7744, + /// /// tectonic_slam_damage_+% /// - TectonicSlamDamagePct = 7741, - + TectonicSlamDamagePct = 7745, + /// /// tectonic_slam_area_of_effect_+% /// - TectonicSlamAreaOfEffectPct = 7742, - + TectonicSlamAreaOfEffectPct = 7746, + /// /// spectral_shield_throw_damage_+% /// - SpectralShieldThrowDamagePct = 7743, - + SpectralShieldThrowDamagePct = 7747, + /// /// spectral_shield_throw_projectile_speed_+% /// - SpectralShieldThrowProjectileSpeedPct = 7744, - + SpectralShieldThrowProjectileSpeedPct = 7748, + /// /// spectral_shield_throw_num_of_additional_projectiles /// - SpectralShieldThrowNumOfAdditionalProjectiles = 7745, - + SpectralShieldThrowNumOfAdditionalProjectiles = 7749, + /// /// cannot_take_reflected_elemental_damage /// - CannotTakeReflectedElementalDamage = 7746, - + CannotTakeReflectedElementalDamage = 7750, + /// /// cannot_take_reflected_physical_damage /// - CannotTakeReflectedPhysicalDamage = 7747, - + CannotTakeReflectedPhysicalDamage = 7751, + /// /// golem_damage_+%_per_active_golem /// - GolemDamagePctPerActiveGolem = 7748, - + GolemDamagePctPerActiveGolem = 7752, + /// /// tailwind_effect_on_self_+%_for_each_skill_used_recently /// - TailwindEffectOnSelfPctForEachSkillUsedRecently = 7749, - + TailwindEffectOnSelfPctForEachSkillUsedRecently = 7753, + /// /// virtual_spider_aspect_web_interval_ms /// - VirtualSpiderAspectWebIntervalMs = 7750, - + VirtualSpiderAspectWebIntervalMs = 7754, + /// /// aspect_of_the_spider_web_count_+ /// - AspectOfTheSpiderWebCount = 7751, - + AspectOfTheSpiderWebCount = 7755, + /// /// crab_aspect_crab_barrier_max_+ /// - CrabAspectCrabBarrierMax = 7752, - + CrabAspectCrabBarrierMax = 7756, + /// /// combined_skill_dot_fire_damage_over_time_+%_final /// - CombinedSkillDotFireDamageOverTimePctFinal = 7753, - + CombinedSkillDotFireDamageOverTimePctFinal = 7757, + /// /// shrapnel_trap_number_of_secondary_explosions /// - ShrapnelTrapNumberOfSecondaryExplosions = 7754, - + ShrapnelTrapNumberOfSecondaryExplosions = 7758, + /// /// shrapnel_trap_number_of_additional_secondary_explosions /// - ShrapnelTrapNumberOfAdditionalSecondaryExplosions = 7755, - + ShrapnelTrapNumberOfAdditionalSecondaryExplosions = 7759, + /// /// virtual_no_mana_cost /// - VirtualNoManaCost = 7756, - + VirtualNoManaCost = 7760, + /// /// life_loss_%_per_minute /// - LifeLossPctPerMinute = 7757, - + LifeLossPctPerMinute = 7761, + /// /// map_spawn_incursion_encounters /// - MapSpawnIncursionEncounters = 7758, - + MapSpawnIncursionEncounters = 7762, + /// /// prevent_vaal_souls_on_hit /// - PreventVaalSoulsOnHit = 7759, - + PreventVaalSoulsOnHit = 7763, + /// /// ignores_enemy_fire_resistance /// - IgnoresEnemyFireResistance = 7760, - + IgnoresEnemyFireResistance = 7764, + /// /// ignores_enemy_cold_resistance /// - IgnoresEnemyColdResistance = 7761, - + IgnoresEnemyColdResistance = 7765, + /// /// ignores_enemy_lightning_resistance /// - IgnoresEnemyLightningResistance = 7762, - + IgnoresEnemyLightningResistance = 7766, + /// /// groundslam_damage_to_close_targets_+%_final /// - GroundslamDamageToCloseTargetsPctFinal = 7763, - + GroundslamDamageToCloseTargetsPctFinal = 7767, + /// /// keystone_vaal_attacks /// - KeystoneVaalAttacks = 7764, - + KeystoneVaalAttacks = 7768, + /// /// grant_vaal_attack_soul_on_hitting_rare_or_unique_with_non_vaal_skill_every_x_ms /// - GrantVaalAttackSoulOnHittingRareOrUniqueWithNonVaalSkillEveryXMs = 7765, - + GrantVaalAttackSoulOnHittingRareOrUniqueWithNonVaalSkillEveryXMs = 7769, + /// /// grant_vaal_skill_use_on_kill_%_with_non_vaal_skill /// - GrantVaalSkillUseOnKillPctWithNonVaalSkill = 7766, - + GrantVaalSkillUseOnKillPctWithNonVaalSkill = 7770, + /// /// keystone_vaal_spells /// - KeystoneVaalSpells = 7767, - + KeystoneVaalSpells = 7771, + /// /// non_vaal_skills_damage_+%_final /// - NonVaalSkillsDamagePctFinal = 7768, - + NonVaalSkillsDamagePctFinal = 7772, + /// /// gain_soul_regeneration_for_x_seconds_on_hit_every_500_ms /// - GainSoulRegenerationForXSecondsOnHitEvery500Ms = 7769, - + GainSoulRegenerationForXSecondsOnHitEvery500Ms = 7773, + /// /// shrapnel_trap_damage_+% /// - ShrapnelTrapDamagePct = 7770, - + ShrapnelTrapDamagePct = 7774, + /// /// shrapnel_trap_area_of_effect_+% /// - ShrapnelTrapAreaOfEffectPct = 7771, - + ShrapnelTrapAreaOfEffectPct = 7775, + /// /// lightning_tower_trap_damage_+% /// - LightningTowerTrapDamagePct = 7772, - + LightningTowerTrapDamagePct = 7776, + /// /// lightning_tower_trap_duration_+% /// - LightningTowerTrapDurationPct = 7773, - + LightningTowerTrapDurationPct = 7777, + /// /// lightning_tower_trap_cooldown_speed_+% /// - LightningTowerTrapCooldownSpeedPct = 7774, - + LightningTowerTrapCooldownSpeedPct = 7778, + /// /// lightning_tower_trap_base_interval_duration_ms /// - LightningTowerTrapBaseIntervalDurationMs = 7775, - + LightningTowerTrapBaseIntervalDurationMs = 7779, + /// /// lightning_tower_trap_interval_duration_ms /// - LightningTowerTrapIntervalDurationMs = 7776, - + LightningTowerTrapIntervalDurationMs = 7780, + /// /// lightning_tower_trap_number_of_beams /// - LightningTowerTrapNumberOfBeams = 7777, - + LightningTowerTrapNumberOfBeams = 7781, + /// /// lightning_tower_trap_additional_number_of_beams /// - LightningTowerTrapAdditionalNumberOfBeams = 7778, - + LightningTowerTrapAdditionalNumberOfBeams = 7782, + /// /// flamethrower_tower_trap_damage_+% /// - FlamethrowerTowerTrapDamagePct = 7779, - + FlamethrowerTowerTrapDamagePct = 7783, + /// /// flamethrower_tower_trap_cooldown_speed_+% /// - FlamethrowerTowerTrapCooldownSpeedPct = 7780, - + FlamethrowerTowerTrapCooldownSpeedPct = 7784, + /// /// flamethrower_tower_trap_duration_+% /// - FlamethrowerTowerTrapDurationPct = 7781, - + FlamethrowerTowerTrapDurationPct = 7785, + /// /// flamethrower_tower_trap_number_of_flamethrowers /// - FlamethrowerTowerTrapNumberOfFlamethrowers = 7782, - + FlamethrowerTowerTrapNumberOfFlamethrowers = 7786, + /// /// flamethrower_tower_trap_number_of_additional_flamethrowers /// - FlamethrowerTowerTrapNumberOfAdditionalFlamethrowers = 7783, - + FlamethrowerTowerTrapNumberOfAdditionalFlamethrowers = 7787, + /// /// flamethrower_tower_trap_display_cast_speed_affects_rotation /// - FlamethrowerTowerTrapDisplayCastSpeedAffectsRotation = 7784, - + FlamethrowerTowerTrapDisplayCastSpeedAffectsRotation = 7788, + /// /// phys_cascade_trap_damage_+% /// - PhysCascadeTrapDamagePct = 7785, - + PhysCascadeTrapDamagePct = 7789, + /// /// phys_cascade_trap_cooldown_speed_+% /// - PhysCascadeTrapCooldownSpeedPct = 7786, - + PhysCascadeTrapCooldownSpeedPct = 7790, + /// /// phys_cascade_trap_duration_+% /// - PhysCascadeTrapDurationPct = 7787, - + PhysCascadeTrapDurationPct = 7791, + /// /// phys_cascade_trap_number_of_cascades /// - PhysCascadeTrapNumberOfCascades = 7788, - + PhysCascadeTrapNumberOfCascades = 7792, + /// /// phys_cascade_trap_number_of_additional_cascades /// - PhysCascadeTrapNumberOfAdditionalCascades = 7789, - + PhysCascadeTrapNumberOfAdditionalCascades = 7793, + /// /// phys_cascade_trap_base_interval_duration_ms /// - PhysCascadeTrapBaseIntervalDurationMs = 7790, - + PhysCascadeTrapBaseIntervalDurationMs = 7794, + /// /// phys_cascade_trap_interval_duration_ms /// - PhysCascadeTrapIntervalDurationMs = 7791, - + PhysCascadeTrapIntervalDurationMs = 7795, + /// /// ice_siphon_trap_damage_+% /// - IceSiphonTrapDamagePct = 7792, - + IceSiphonTrapDamagePct = 7796, + /// /// ice_siphon_trap_duration_+% /// - IceSiphonTrapDurationPct = 7793, - + IceSiphonTrapDurationPct = 7797, + /// /// ice_siphon_trap_damage_taken_+%_per_beam /// - IceSiphonTrapDamageTakenPctPerBeam = 7794, - + IceSiphonTrapDamageTakenPctPerBeam = 7798, + /// /// ice_siphon_trap_chill_effect_+% /// - IceSiphonTrapChillEffectPct = 7795, - + IceSiphonTrapChillEffectPct = 7799, + /// /// ice_siphon_trap_max_beam_targets /// - IceSiphonTrapMaxBeamTargets = 7796, - + IceSiphonTrapMaxBeamTargets = 7800, + /// /// bear_trap_damage_taken_+%_from_traps_and_mines /// - BearTrapDamageTakenPctFromTrapsAndMines = 7797, - + BearTrapDamageTakenPctFromTrapsAndMines = 7801, + /// /// bear_trap_additional_damage_taken_+%_from_traps_and_mines /// - BearTrapAdditionalDamageTakenPctFromTrapsAndMines = 7798, - + BearTrapAdditionalDamageTakenPctFromTrapsAndMines = 7802, + /// /// lightning_trap_lightning_resistance_penetration_% /// - LightningTrapLightningResistancePenetrationPct = 7799, - + LightningTrapLightningResistancePenetrationPct = 7803, + /// /// lightning_trap_shock_effect_+% /// - LightningTrapShockEffectPct = 7800, - + LightningTrapShockEffectPct = 7804, + /// /// fire_trap_burning_ground_duration_+% /// - FireTrapBurningGroundDurationPct = 7801, - + FireTrapBurningGroundDurationPct = 7805, + /// /// charged_dash_damage_+%_final /// - ChargedDashDamagePctFinal = 7802, - + ChargedDashDamagePctFinal = 7806, + /// /// charged_dash_damage_+%_final_per_stack /// - ChargedDashDamagePctFinalPerStack = 7803, - + ChargedDashDamagePctFinalPerStack = 7807, + /// /// vaal_earthquake_number_of_aftershocks /// - VaalEarthquakeNumberOfAftershocks = 7804, - + VaalEarthquakeNumberOfAftershocks = 7808, + /// /// vaal_earthquake_aftershock_delay_ms /// - VaalEarthquakeAftershockDelayMs = 7805, - + VaalEarthquakeAftershockDelayMs = 7809, + /// /// maim_effect_+% /// - MaimEffectPct = 7806, - + MaimEffectPct = 7810, + /// /// hits_ignore_my_fire_resistance /// - HitsIgnoreMyFireResistance = 7807, - + HitsIgnoreMyFireResistance = 7811, + /// /// hits_ignore_my_cold_resistance /// - HitsIgnoreMyColdResistance = 7808, - + HitsIgnoreMyColdResistance = 7812, + /// /// hits_ignore_my_lightning_resistance /// - HitsIgnoreMyLightningResistance = 7809, - + HitsIgnoreMyLightningResistance = 7813, + /// /// spectating /// - Spectating = 7810, - + Spectating = 7814, + /// /// bear_trap_movement_speed_+%_final /// - BearTrapMovementSpeedPctFinal = 7811, - + BearTrapMovementSpeedPctFinal = 7815, + /// /// map_incursion_temple_room_state /// - MapIncursionTempleRoomState = 7812, - + MapIncursionTempleRoomState = 7816, + /// /// map_incursion_temple_room_state2 /// - MapIncursionTempleRoomState2 = 7813, - + MapIncursionTempleRoomState2 = 7817, + /// /// map_incursion_temple_room_state3 /// - MapIncursionTempleRoomState3 = 7814, - + MapIncursionTempleRoomState3 = 7818, + /// /// skill_hide_user_buff_effects /// - SkillHideUserBuffEffects = 7815, - + SkillHideUserBuffEffects = 7819, + /// /// critical_strike_chance_+%_vs_shocked_enemies /// - CriticalStrikeChancePctVsShockedEnemies = 7816, - + CriticalStrikeChancePctVsShockedEnemies = 7820, + /// /// flamethrower_trap_damage_+%_final_vs_burning_enemies /// - FlamethrowerTrapDamagePctFinalVsBurningEnemies = 7817, - + FlamethrowerTrapDamagePctFinalVsBurningEnemies = 7821, + /// /// flamethrower_trap_damage_+%_final /// - FlamethrowerTrapDamagePctFinal = 7818, - + FlamethrowerTrapDamagePctFinal = 7822, + /// /// local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger /// - LocalDisplaySocketedGemsSupportedByLevelXFrenzyPowerOnTrapTrigger = 7819, - + LocalDisplaySocketedGemsSupportedByLevelXFrenzyPowerOnTrapTrigger = 7823, + /// /// trap_throwing_speed_+%_per_frenzy_charge /// - TrapThrowingSpeedPctPerFrenzyCharge = 7820, - + TrapThrowingSpeedPctPerFrenzyCharge = 7824, + /// /// virtual_trap_throwing_speed_+% /// - VirtualTrapThrowingSpeedPct = 7821, - + VirtualTrapThrowingSpeedPct = 7825, + /// /// ancestral_call_art_variation /// - AncestralCallArtVariation = 7822, - + AncestralCallArtVariation = 7826, + /// /// expanding_fire_cone_maximum_number_of_stages /// - ExpandingFireConeMaximumNumberOfStages = 7823, - + ExpandingFireConeMaximumNumberOfStages = 7827, + /// /// grant_expanding_fire_cone_release_ignite_damage_+%_final /// - GrantExpandingFireConeReleaseIgniteDamagePctFinal = 7824, - + GrantExpandingFireConeReleaseIgniteDamagePctFinal = 7828, + /// /// expanding_fire_cone_release_ignite_damage_+%_final /// - ExpandingFireConeReleaseIgniteDamagePctFinal = 7825, - + ExpandingFireConeReleaseIgniteDamagePctFinal = 7829, + /// /// expanding_fire_cone_release_hit_damage_+%_final /// - ExpandingFireConeReleaseHitDamagePctFinal = 7826, - + ExpandingFireConeReleaseHitDamagePctFinal = 7830, + /// /// trigger_on_corpse_consume_%_chance /// - TriggerOnCorpseConsumePctChance = 7827, - + TriggerOnCorpseConsumePctChance = 7831, + /// /// local_display_trigger_level_x_summon_phantasm_on_corpse_consume /// - LocalDisplayTriggerLevelXSummonPhantasmOnCorpseConsume = 7828, - + LocalDisplayTriggerLevelXSummonPhantasmOnCorpseConsume = 7832, + /// /// cast_speed_+%_per_corpse_consumed_recently /// - CastSpeedPctPerCorpseConsumedRecently = 7829, - + CastSpeedPctPerCorpseConsumedRecently = 7833, + /// /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfCorpseConsumedRecently = 7830, - + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfCorpseConsumedRecently = 7834, + /// /// infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack /// - InfernalBlowInfernalBlowExplosionDamagePctOfTotalPerStack = 7831, - + InfernalBlowInfernalBlowExplosionDamagePctOfTotalPerStack = 7835, + /// /// infernal_blow_explosion_damage_%_of_total_per_stack /// - InfernalBlowExplosionDamagePctOfTotalPerStack = 7832, - + InfernalBlowExplosionDamagePctOfTotalPerStack = 7836, + /// /// doubles_have_movement_speed_+% /// - DoublesHaveMovementSpeedPct = 7833, - + DoublesHaveMovementSpeedPct = 7837, + /// /// lightning_tower_trap_cast_speed_+% /// - LightningTowerTrapCastSpeedPct = 7834, - + LightningTowerTrapCastSpeedPct = 7838, + /// /// flamethrower_tower_trap_cast_speed_+% /// - FlamethrowerTowerTrapCastSpeedPct = 7835, - + FlamethrowerTowerTrapCastSpeedPct = 7839, + /// /// vaal_righteous_fire_life_and_es_%_to_lose_on_use /// - VaalRighteousFireLifeAndEsPctToLoseOnUse = 7836, - + VaalRighteousFireLifeAndEsPctToLoseOnUse = 7840, + /// /// rain_of_arrows_additional_sequences /// - RainOfArrowsAdditionalSequences = 7837, - + RainOfArrowsAdditionalSequences = 7841, + /// /// cannot_gain_souls /// - CannotGainSouls = 7838, - + CannotGainSouls = 7842, + /// /// local_flask_gain_x_vaal_souls_on_use /// - LocalFlaskGainXVaalSoulsOnUse = 7839, - + LocalFlaskGainXVaalSoulsOnUse = 7843, + /// /// local_flask_no_mana_recovery_during_effect /// - LocalFlaskNoManaRecoveryDuringEffect = 7840, - + LocalFlaskNoManaRecoveryDuringEffect = 7844, + /// /// local_flask_vaal_souls_gained_per_minute_during_effect /// - LocalFlaskVaalSoulsGainedPerMinuteDuringEffect = 7841, - + LocalFlaskVaalSoulsGainedPerMinuteDuringEffect = 7845, + /// /// ignites_apply_fire_resistance_+ /// - IgnitesApplyFireResistance = 7842, - + IgnitesApplyFireResistance = 7846, + /// /// ignite_damage_+%_vs_chilled_enemies /// - IgniteDamagePctVsChilledEnemies = 7843, - + IgniteDamagePctVsChilledEnemies = 7847, + /// /// flameblast_ignite_chance_+%_per_stage /// - FlameblastIgniteChancePctPerStage = 7844, - + FlameblastIgniteChancePctPerStage = 7848, + /// /// gain_x_vaal_souls_at_2%_life_thresholds /// - GainXVaalSoulsAt2PctLifeThresholds = 7845, - + GainXVaalSoulsAt2PctLifeThresholds = 7849, + /// /// disable_vaal_soul_gain_at_2%_life_thresholds /// - DisableVaalSoulGainAt2PctLifeThresholds = 7846, - + DisableVaalSoulGainAt2PctLifeThresholds = 7850, + /// /// local_physical_damage_%_to_convert_to_a_random_element /// - LocalPhysicalDamagePctToConvertToARandomElement = 7847, - + LocalPhysicalDamagePctToConvertToARandomElement = 7851, + /// /// main_hand_physical_damage_%_to_convert_to_a_random_element /// - MainHandPhysicalDamagePctToConvertToARandomElement = 7848, - + MainHandPhysicalDamagePctToConvertToARandomElement = 7852, + /// /// off_hand_physical_damage_%_to_convert_to_a_random_element /// - OffHandPhysicalDamagePctToConvertToARandomElement = 7849, - + OffHandPhysicalDamagePctToConvertToARandomElement = 7853, + /// /// local_hits_always_inflict_elemental_ailments /// - LocalHitsAlwaysInflictElementalAilments = 7850, - + LocalHitsAlwaysInflictElementalAilments = 7854, + /// /// main_hand_hits_always_inflict_elemental_ailments /// - MainHandHitsAlwaysInflictElementalAilments = 7851, - + MainHandHitsAlwaysInflictElementalAilments = 7855, + /// /// off_hand_hits_always_inflict_elemental_ailments /// - OffHandHitsAlwaysInflictElementalAilments = 7852, - + OffHandHitsAlwaysInflictElementalAilments = 7856, + /// /// no_mana_recovery /// - NoManaRecovery = 7853, - + NoManaRecovery = 7857, + /// /// active_skill_ignite_damage_+%_final /// - ActiveSkillIgniteDamagePctFinal = 7854, - + ActiveSkillIgniteDamagePctFinal = 7858, + /// /// chance_to_be_poisoned_% /// - ChanceToBePoisonedPct = 7855, - + ChanceToBePoisonedPct = 7859, + /// /// poison_time_passed_+% /// - PoisonTimePassedPct = 7856, - + PoisonTimePassedPct = 7860, + /// /// additional_maximum_all_resistances_%_while_poisoned /// - AdditionalMaximumAllResistancesPctWhilePoisoned = 7857, - + AdditionalMaximumAllResistancesPctWhilePoisoned = 7861, + /// /// energy_shield_regeneration_rate_per_minute_per_poison_stack /// - EnergyShieldRegenerationRatePerMinutePerPoisonStack = 7858, - + EnergyShieldRegenerationRatePerMinutePerPoisonStack = 7862, + /// /// bleeding_damage_on_self_converted_to_chaos /// - BleedingDamageOnSelfConvertedToChaos = 7859, - + BleedingDamageOnSelfConvertedToChaos = 7863, + /// /// maximum_life_+%_per_equipped_corrupted_item /// - MaximumLifePctPerEquippedCorruptedItem = 7860, - + MaximumLifePctPerEquippedCorruptedItem = 7864, + /// /// maximum_es_+%_per_equipped_corrupted_item /// - MaximumEsPctPerEquippedCorruptedItem = 7861, - + MaximumEsPctPerEquippedCorruptedItem = 7865, + /// /// all_resistances_%_per_equipped_corrupted_item /// - AllResistancesPctPerEquippedCorruptedItem = 7862, - + AllResistancesPctPerEquippedCorruptedItem = 7866, + /// /// bleeding_damage_taken_per_minute /// - BleedingDamageTakenPerMinute = 7863, - + BleedingDamageTakenPerMinute = 7867, + /// /// area_of_effect_+%_per_enemy_killed_recently /// - AreaOfEffectPctPerEnemyKilledRecently = 7864, - + AreaOfEffectPctPerEnemyKilledRecently = 7868, + /// /// you_have_zealots_oath_if_you_havent_been_hit_recently /// - YouHaveZealotsOathIfYouHaventBeenHitRecently = 7865, - + YouHaveZealotsOathIfYouHaventBeenHitRecently = 7869, + /// /// no_energy_shield_recovery /// - NoEnergyShieldRecovery = 7866, - + NoEnergyShieldRecovery = 7870, + /// /// life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield /// - LifeRegenerationPerMinuteIfYouHaveAtLeast500MaximumEnergyShield = 7867, - + LifeRegenerationPerMinuteIfYouHaveAtLeast500MaximumEnergyShield = 7871, + /// /// life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield /// - LifeRegenerationPerMinuteIfYouHaveAtLeast1000MaximumEnergyShield = 7868, - + LifeRegenerationPerMinuteIfYouHaveAtLeast1000MaximumEnergyShield = 7872, + /// /// life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield /// - LifeRegenerationPerMinuteIfYouHaveAtLeast1500MaximumEnergyShield = 7869, - + LifeRegenerationPerMinuteIfYouHaveAtLeast1500MaximumEnergyShield = 7873, + /// /// x_to_maximum_life_per_2_intelligence /// - XToMaximumLifePer2Intelligence = 7870, - + XToMaximumLifePer2Intelligence = 7874, + /// /// gain_no_maximum_life_from_strength /// - GainNoMaximumLifeFromStrength = 7871, - + GainNoMaximumLifeFromStrength = 7875, + /// /// gain_no_maximum_mana_from_intelligence /// - GainNoMaximumManaFromIntelligence = 7872, - + GainNoMaximumManaFromIntelligence = 7876, + /// /// life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield /// - LifeRegenerationRatePerMinutePctPer500MaximumEnergyShield = 7873, - + LifeRegenerationRatePerMinutePctPer500MaximumEnergyShield = 7877, + /// /// keystone_zealots_oath /// - KeystoneZealotsOath = 7874, - + KeystoneZealotsOath = 7878, + /// /// number_of_enemies_killed_recently /// - NumberOfEnemiesKilledRecently = 7875, - + NumberOfEnemiesKilledRecently = 7879, + /// /// combined_cast_speed_+% /// - CombinedCastSpeedPct = 7876, - + CombinedCastSpeedPct = 7880, + /// /// combined_cast_speed_+%_final /// - CombinedCastSpeedPctFinal = 7877, - + CombinedCastSpeedPctFinal = 7881, + /// /// additive_cast_speed_modifiers_apply_to_trap_throwing_speed /// - AdditiveCastSpeedModifiersApplyToTrapThrowingSpeed = 7878, - + AdditiveCastSpeedModifiersApplyToTrapThrowingSpeed = 7882, + /// /// %_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy /// - PctChanceToGainRandomChargeOnTrapTriggeredByAnEnemy = 7879, - + PctChanceToGainRandomChargeOnTrapTriggeredByAnEnemy = 7883, + /// /// trap_throw_skills_have_blood_magic /// - TrapThrowSkillsHaveBloodMagic = 7880, - + TrapThrowSkillsHaveBloodMagic = 7884, + /// /// affected_by_vulnerability /// - AffectedByVulnerability = 7881, - + AffectedByVulnerability = 7885, + /// /// enemy_extra_damage_rolls_while_affected_by_vulnerability /// - EnemyExtraDamageRollsWhileAffectedByVulnerability = 7882, - + EnemyExtraDamageRollsWhileAffectedByVulnerability = 7886, + /// /// you_count_as_low_life_while_affected_by_vulnerability /// - YouCountAsLowLifeWhileAffectedByVulnerability = 7883, - + YouCountAsLowLifeWhileAffectedByVulnerability = 7887, + /// /// self_cursed_with_level_x_vulnerability /// - SelfCursedWithLevelXVulnerability = 7884, - + SelfCursedWithLevelXVulnerability = 7888, + /// /// ice_trap_cold_resistance_penetration_% /// - IceTrapColdResistancePenetrationPct = 7885, - + IceTrapColdResistancePenetrationPct = 7889, + /// /// life_gain_per_target_if_have_used_a_vaal_skill_recently /// - LifeGainPerTargetIfHaveUsedAVaalSkillRecently = 7886, - + LifeGainPerTargetIfHaveUsedAVaalSkillRecently = 7890, + /// /// movement_speed_+%_if_have_used_a_vaal_skill_recently /// - MovementSpeedPctIfHaveUsedAVaalSkillRecently = 7887, - + MovementSpeedPctIfHaveUsedAVaalSkillRecently = 7891, + /// /// have_used_a_vaal_skill_recently /// - HaveUsedAVaalSkillRecently = 7888, - + HaveUsedAVaalSkillRecently = 7892, + /// /// track_have_used_a_vaal_skill_recently /// - TrackHaveUsedAVaalSkillRecently = 7889, - + TrackHaveUsedAVaalSkillRecently = 7893, + /// /// gain_power_charge_on_vaal_skill_use_% /// - GainPowerChargeOnVaalSkillUsePct = 7890, - + GainPowerChargeOnVaalSkillUsePct = 7894, + /// /// chaos_damage_can_ignite_chill_and_shock /// - ChaosDamageCanIgniteChillAndShock = 7891, - + ChaosDamageCanIgniteChillAndShock = 7895, + /// /// gain_soul_eater_for_x_ms_on_vaal_skill_use /// - GainSoulEaterForXMsOnVaalSkillUse = 7892, - + GainSoulEaterForXMsOnVaalSkillUse = 7896, + /// /// local_hit_damage_+%_vs_ignited_enemies /// - LocalHitDamagePctVsIgnitedEnemies = 7893, - + LocalHitDamagePctVsIgnitedEnemies = 7897, + /// /// main_hand_hit_damage_+%_vs_ignited_enemies /// - MainHandHitDamagePctVsIgnitedEnemies = 7894, - + MainHandHitDamagePctVsIgnitedEnemies = 7898, + /// /// off_hand_hit_damage_+%_vs_ignited_enemies /// - OffHandHitDamagePctVsIgnitedEnemies = 7895, - + OffHandHitDamagePctVsIgnitedEnemies = 7899, + /// /// local_hit_damage_+%_vs_frozen_enemies /// - LocalHitDamagePctVsFrozenEnemies = 7896, - + LocalHitDamagePctVsFrozenEnemies = 7900, + /// /// main_hand_hit_damage_+%_vs_frozen_enemies /// - MainHandHitDamagePctVsFrozenEnemies = 7897, - + MainHandHitDamagePctVsFrozenEnemies = 7901, + /// /// off_hand_hit_damage_+%_vs_frozen_enemies /// - OffHandHitDamagePctVsFrozenEnemies = 7898, - + OffHandHitDamagePctVsFrozenEnemies = 7902, + /// /// local_hit_damage_+%_vs_shocked_enemies /// - LocalHitDamagePctVsShockedEnemies = 7899, - + LocalHitDamagePctVsShockedEnemies = 7903, + /// /// main_hand_hit_damage_+%_vs_shocked_enemies /// - MainHandHitDamagePctVsShockedEnemies = 7900, - + MainHandHitDamagePctVsShockedEnemies = 7904, + /// /// off_hand_hit_damage_+%_vs_shocked_enemies /// - OffHandHitDamagePctVsShockedEnemies = 7901, - + OffHandHitDamagePctVsShockedEnemies = 7905, + /// /// summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute /// - SummonedSkeletonsFireDamagePctOfMaximumLifeTakenPerMinute = 7902, - + SummonedSkeletonsFireDamagePctOfMaximumLifeTakenPerMinute = 7906, + /// /// summoned_skeletons_cover_in_ash_on_hit_% /// - SummonedSkeletonsCoverInAshOnHitPct = 7903, - + SummonedSkeletonsCoverInAshOnHitPct = 7907, + /// /// summoned_skeletons_have_avatar_of_fire /// - SummonedSkeletonsHaveAvatarOfFire = 7904, - + SummonedSkeletonsHaveAvatarOfFire = 7908, + /// /// cover_in_ash_on_hit_% /// - CoverInAshOnHitPct = 7905, - + CoverInAshOnHitPct = 7909, + /// /// Local Socketed Trap or Mine Gem Level + /// - LocalSocketedTrapAndMineGemLevel = 7906, - + LocalSocketedTrapAndMineGemLevel = 7910, + /// /// wrath_aura_effect_+% /// - WrathAuraEffectPct = 7907, - + WrathAuraEffectPct = 7911, + /// /// hatred_aura_effect_+% /// - HatredAuraEffectPct = 7908, - + HatredAuraEffectPct = 7912, + /// /// determination_aura_effect_+% /// - DeterminationAuraEffectPct = 7909, - + DeterminationAuraEffectPct = 7913, + /// /// discipline_aura_effect_+% /// - DisciplineAuraEffectPct = 7910, - + DisciplineAuraEffectPct = 7914, + /// /// grace_aura_effect_+% /// - GraceAuraEffectPct = 7911, - + GraceAuraEffectPct = 7915, + /// /// local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius /// - LocalUniqueJewelCriticalStrikeMultiplierPer10StrUnallocatedInRadius = 7912, - + LocalUniqueJewelCriticalStrikeMultiplierPer10StrUnallocatedInRadius = 7916, + /// /// local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius /// - LocalUniqueJewelAdditionalPhysicalDamageReductionPctPer10StrAllocatedInRadius = 7913, - + LocalUniqueJewelAdditionalPhysicalDamageReductionPctPer10StrAllocatedInRadius = 7917, + /// /// local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius /// - LocalUniqueJewelMaximumManaPer10DexUnallocatedInRadius = 7914, - + LocalUniqueJewelMaximumManaPer10DexUnallocatedInRadius = 7918, + /// /// local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius /// - LocalUniqueJewelMovementSpeedPctPer10DexAllocatedInRadius = 7915, - + LocalUniqueJewelMovementSpeedPctPer10DexAllocatedInRadius = 7919, + /// /// local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius /// - LocalUniqueJewelAccuracyRatingPer10IntUnallocatedInRadius = 7916, - + LocalUniqueJewelAccuracyRatingPer10IntUnallocatedInRadius = 7920, + /// /// local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius /// - LocalUniqueJewelEnergyShieldRegenerationRatePerMinutePctPer10IntAllocatedInRadius = 7917, - + LocalUniqueJewelEnergyShieldRegenerationRatePerMinutePctPer10IntAllocatedInRadius = 7921, + /// /// local_unique_jewel_X_strength_per_1_strength_allocated_in_radius /// - LocalUniqueJewelXStrengthPer1StrengthAllocatedInRadius = 7918, - + LocalUniqueJewelXStrengthPer1StrengthAllocatedInRadius = 7922, + /// /// local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius /// - LocalUniqueJewelXDexterityPer1DexterityAllocatedInRadius = 7919, - + LocalUniqueJewelXDexterityPer1DexterityAllocatedInRadius = 7923, + /// /// local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius /// - LocalUniqueJewelXIntelligencePer1IntelligenceAllocatedInRadius = 7920, - + LocalUniqueJewelXIntelligencePer1IntelligenceAllocatedInRadius = 7924, + /// /// ground_vaal_cold_snap_art_variation /// - GroundVaalColdSnapArtVariation = 7921, - + GroundVaalColdSnapArtVariation = 7925, + /// /// elementalist_ignite_damage_+%_final /// - ElementalistIgniteDamagePctFinal = 7922, - + ElementalistIgniteDamagePctFinal = 7926, + /// /// ancestor_totem_ignores_stances /// - AncestorTotemIgnoresStances = 7923, - + AncestorTotemIgnoresStances = 7927, + /// /// skill_life_regeneration_per_minute_per_affected_enemy /// - SkillLifeRegenerationPerMinutePerAffectedEnemy = 7924, - + SkillLifeRegenerationPerMinutePerAffectedEnemy = 7928, + /// /// skill_mana_regeneration_per_minute_per_affected_enemy /// - SkillManaRegenerationPerMinutePerAffectedEnemy = 7925, - + SkillManaRegenerationPerMinutePerAffectedEnemy = 7929, + /// /// skill_life_regeneration_per_minute_with_at_least_1_affected_enemy /// - SkillLifeRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7926, - + SkillLifeRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7930, + /// /// skill_mana_regeneration_per_minute_with_at_least_1_affected_enemy /// - SkillManaRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7927, - + SkillManaRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7931, + /// /// skill_damage_taken_+%_per_affected_enemy /// - SkillDamageTakenPctPerAffectedEnemy = 7928, - + SkillDamageTakenPctPerAffectedEnemy = 7932, + /// /// blade_vortex_critical_strike_chance_+%_per_blade /// - BladeVortexCriticalStrikeChancePctPerBlade = 7929, - + BladeVortexCriticalStrikeChancePctPerBlade = 7933, + /// /// bladefall_critical_strike_chance_+%_per_stage /// - BladefallCriticalStrikeChancePctPerStage = 7930, - + BladefallCriticalStrikeChancePctPerStage = 7934, + /// /// global_minimum_added_physical_damage_vs_bleeding_enemies /// - GlobalMinimumAddedPhysicalDamageVsBleedingEnemies = 7931, - + GlobalMinimumAddedPhysicalDamageVsBleedingEnemies = 7935, + /// /// global_maximum_added_physical_damage_vs_bleeding_enemies /// - GlobalMaximumAddedPhysicalDamageVsBleedingEnemies = 7932, - + GlobalMaximumAddedPhysicalDamageVsBleedingEnemies = 7936, + /// /// lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies /// - LacerateHitAndAilmentDamagePctFinalVsBleedingEnemies = 7933, - + LacerateHitAndAilmentDamagePctFinalVsBleedingEnemies = 7937, + /// /// cast_speed_+%_final_per_frostbolt_destroyed_recently /// - CastSpeedPctFinalPerFrostboltDestroyedRecently = 7934, - + CastSpeedPctFinalPerFrostboltDestroyedRecently = 7938, + /// /// mana_cost_+%_final_per_frostbolt_destroyed_recently /// - ManaCostPctFinalPerFrostboltDestroyedRecently = 7935, - + ManaCostPctFinalPerFrostboltDestroyedRecently = 7939, + /// /// number_of_frostbolts_destroyed_recently /// - NumberOfFrostboltsDestroyedRecently = 7936, - + NumberOfFrostboltsDestroyedRecently = 7940, + /// /// lacerate_hit_and_ailment_damage_+%_final /// - LacerateHitAndAilmentDamagePctFinal = 7937, - + LacerateHitAndAilmentDamagePctFinal = 7941, + /// /// dodge_attacks_chance_%_while_moving /// - DodgeAttacksChancePctWhileMoving = 7938, - + DodgeAttacksChancePctWhileMoving = 7942, + /// /// dodge_spells_chance_%_while_moving /// - DodgeSpellsChancePctWhileMoving = 7939, - + DodgeSpellsChancePctWhileMoving = 7943, + /// /// global_evasion_rating_+_while_moving /// - GlobalEvasionRatingWhileMoving = 7940, - + GlobalEvasionRatingWhileMoving = 7944, + /// /// global_physical_damage_reduction_rating_while_moving /// - GlobalPhysicalDamageReductionRatingWhileMoving = 7941, - + GlobalPhysicalDamageReductionRatingWhileMoving = 7945, + /// /// curse_on_hit_level_despair /// - CurseOnHitLevelDespair = 7942, - + CurseOnHitLevelDespair = 7946, + /// /// curse_on_hit_level_enfeeble /// - CurseOnHitLevelEnfeeble = 7943, - + CurseOnHitLevelEnfeeble = 7947, + /// /// area_damage_taken_from_hits_+% /// - AreaDamageTakenFromHitsPct = 7944, - + AreaDamageTakenFromHitsPct = 7948, + /// /// projectile_damage_+%_per_chain /// - ProjectileDamagePctPerChain = 7945, - + ProjectileDamagePctPerChain = 7949, + /// /// local_display_grants_level_x_despair /// - LocalDisplayGrantsLevelXDespair = 7946, - + LocalDisplayGrantsLevelXDespair = 7950, + /// /// critical_strike_chance_+%_during_any_flask_effect /// - CriticalStrikeChancePctDuringAnyFlaskEffect = 7947, - + CriticalStrikeChancePctDuringAnyFlaskEffect = 7951, + /// /// critical_strike_multiplier_+_during_any_flask_effect /// - CriticalStrikeMultiplierDuringAnyFlaskEffect = 7948, - + CriticalStrikeMultiplierDuringAnyFlaskEffect = 7952, + /// /// cannot_be_inflicted_by_corrupted_blood /// - CannotBeInflictedByCorruptedBlood = 7949, - + CannotBeInflictedByCorruptedBlood = 7953, + /// /// gain_X_frenzy_charges_after_spending_200_mana /// - GainXFrenzyChargesAfterSpending200Mana = 7950, - + GainXFrenzyChargesAfterSpending200Mana = 7954, + /// /// Local Socketed Duration Gem Level + /// - LocalSocketedDurationGemLevel = 7951, - + LocalSocketedDurationGemLevel = 7955, + /// /// Local Socketed AoE Gem Level + /// - LocalSocketedAreaOfEffectGemLevel = 7952, - + LocalSocketedAreaOfEffectGemLevel = 7956, + /// /// map_incursion_monster_data /// - MapIncursionMonsterData = 7953, - + MapIncursionMonsterData = 7957, + /// /// local_display_has_additional_implicit_mod /// - LocalDisplayHasAdditionalImplicitMod = 7954, - + LocalDisplayHasAdditionalImplicitMod = 7958, + /// /// spark_chance_to_force_alternate_angle_side_% /// - SparkChanceToForceAlternateAngleSidePct = 7955, - + SparkChanceToForceAlternateAngleSidePct = 7959, + /// /// gain_onslaught_while_not_on_low_mana /// - GainOnslaughtWhileNotOnLowMana = 7956, - + GainOnslaughtWhileNotOnLowMana = 7960, + /// /// dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20 /// - DodgeAttacksAndSpellChancePctPer500MaximumManaUpTo20 = 7957, - + DodgeAttacksAndSpellChancePctPer500MaximumManaUpTo20 = 7961, + /// /// ball_lightning_projectile_speed_and_hit_frequency_+%_final /// - BallLightningProjectileSpeedAndHitFrequencyPctFinal = 7958, - + BallLightningProjectileSpeedAndHitFrequencyPctFinal = 7962, + /// /// arc_damage_+%_final_per_chain /// - ArcDamagePctFinalPerChain = 7959, - + ArcDamagePctFinalPerChain = 7963, + /// /// arc_damage_+%_final_for_each_remaining_chain /// - ArcDamagePctFinalForEachRemainingChain = 7960, - + ArcDamagePctFinalForEachRemainingChain = 7964, + /// /// chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_% /// - ChanceToGainPowerChargeOnRareOrUniqueEnemyHitPct = 7961, - + ChanceToGainPowerChargeOnRareOrUniqueEnemyHitPct = 7965, + /// /// expanding_fire_cone_additional_maximum_number_of_stages /// - ExpandingFireConeAdditionalMaximumNumberOfStages = 7962, - + ExpandingFireConeAdditionalMaximumNumberOfStages = 7966, + /// /// expanding_fire_cone_area_of_effect_+% /// - ExpandingFireConeAreaOfEffectPct = 7963, - + ExpandingFireConeAreaOfEffectPct = 7967, + /// /// elemental_hit_cannot_roll_fire_damage /// - ElementalHitCannotRollFireDamage = 7964, - + ElementalHitCannotRollFireDamage = 7968, + /// /// elemental_hit_cannot_roll_cold_damage /// - ElementalHitCannotRollColdDamage = 7965, - + ElementalHitCannotRollColdDamage = 7969, + /// /// elemental_hit_cannot_roll_lightning_damage /// - ElementalHitCannotRollLightningDamage = 7966, - + ElementalHitCannotRollLightningDamage = 7970, + /// /// expanding_fire_cone_radius_+_per_stage /// - ExpandingFireConeRadiusPerStage = 7967, - + ExpandingFireConeRadiusPerStage = 7971, + /// /// expanding_fire_cone_angle_+%_per_stage /// - ExpandingFireConeAnglePctPerStage = 7968, - + ExpandingFireConeAnglePctPerStage = 7972, + /// /// expanding_fire_cone_final_wave_always_ignite /// - ExpandingFireConeFinalWaveAlwaysIgnite = 7969, - + ExpandingFireConeFinalWaveAlwaysIgnite = 7973, + /// /// kill_and_delete_on_hit /// - KillAndDeleteOnHit = 7970, - + KillAndDeleteOnHit = 7974, + /// /// elemental_hit_damage_+10%_final_per_enemy_elemental_ailment /// - ElementalHitDamage10PctFinalPerEnemyElementalAilment = 7971, - + ElementalHitDamage10PctFinalPerEnemyElementalAilment = 7975, + /// /// elemental_hit_damage_+%_final /// - ElementalHitDamagePctFinal = 7972, - + ElementalHitDamagePctFinal = 7976, + /// /// elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment /// - ElementalHitAreaOfEffect100PctFinalVsEnemyWithAssociatedAilment = 7973, - + ElementalHitAreaOfEffect100PctFinalVsEnemyWithAssociatedAilment = 7977, + /// /// support_power_charge_on_crit_damage_+%_final_per_power_charge /// - SupportPowerChargeOnCritDamagePctFinalPerPowerCharge = 7974, - + SupportPowerChargeOnCritDamagePctFinalPerPowerCharge = 7978, + /// /// hinder_enemy_chaos_damage_taken_+% /// - HinderEnemyChaosDamageTakenPct = 7975, - + HinderEnemyChaosDamageTakenPct = 7979, + /// /// local_display_grants_skill_vaal_impurity_of_fire_level /// - LocalDisplayGrantsSkillVaalImpurityOfFireLevel = 7976, - + LocalDisplayGrantsSkillVaalImpurityOfFireLevel = 7980, + /// /// local_display_grants_skill_vaal_impurity_of_ice_level /// - LocalDisplayGrantsSkillVaalImpurityOfIceLevel = 7977, - + LocalDisplayGrantsSkillVaalImpurityOfIceLevel = 7981, + /// /// local_display_grants_skill_vaal_impurity_of_lightning_level /// - LocalDisplayGrantsSkillVaalImpurityOfLightningLevel = 7978, - + LocalDisplayGrantsSkillVaalImpurityOfLightningLevel = 7982, + /// /// support_hypothermia_cold_damage_over_time_+%_final /// - SupportHypothermiaColdDamageOverTimePctFinal = 7979, - + SupportHypothermiaColdDamageOverTimePctFinal = 7983, + /// /// ground_quicksand_art_variation /// - GroundQuicksandArtVariation = 7980, - + GroundQuicksandArtVariation = 7984, + /// /// map_area_contains_x_additional_clusters_of_explosive_eggs /// - MapAreaContainsXAdditionalClustersOfExplosiveEggs = 7981, - + MapAreaContainsXAdditionalClustersOfExplosiveEggs = 7985, + /// /// trap_critical_strike_multiplier_+_per_power_charge /// - TrapCriticalStrikeMultiplierPerPowerCharge = 7982, - + TrapCriticalStrikeMultiplierPerPowerCharge = 7986, + /// /// ignores_trap_and_mine_cooldown_limit /// - IgnoresTrapAndMineCooldownLimit = 7983, - + IgnoresTrapAndMineCooldownLimit = 7987, + /// /// vaal_righteous_fire_life_and_es_%_as_damage_per_second /// - VaalRighteousFireLifeAndEsPctAsDamagePerSecond = 7984, - + VaalRighteousFireLifeAndEsPctAsDamagePerSecond = 7988, + /// /// molten_strike_projectile_animation_speed_+% /// - MoltenStrikeProjectileAnimationSpeedPct = 7985, - + MoltenStrikeProjectileAnimationSpeedPct = 7989, + /// /// orb_of_storms_base_bolt_frequency_ms /// - OrbOfStormsBaseBoltFrequencyMs = 7986, - + OrbOfStormsBaseBoltFrequencyMs = 7990, + /// /// orb_of_storms_bolt_frequency_ms /// - OrbOfStormsBoltFrequencyMs = 7987, - + OrbOfStormsBoltFrequencyMs = 7991, + /// /// orb_of_storms_cast_speed_+% /// - OrbOfStormsCastSpeedPct = 7988, - + OrbOfStormsCastSpeedPct = 7992, + /// /// area_of_effect_+%_when_cast_on_frostbolt /// - AreaOfEffectPctWhenCastOnFrostbolt = 7989, - + AreaOfEffectPctWhenCastOnFrostbolt = 7993, + /// /// vortex_area_of_effect_+%_when_cast_on_frostbolt /// - VortexAreaOfEffectPctWhenCastOnFrostbolt = 7990, - + VortexAreaOfEffectPctWhenCastOnFrostbolt = 7994, + /// /// skill_code_movement_speed_+%_final /// - SkillCodeMovementSpeedPctFinal = 7991, - + SkillCodeMovementSpeedPctFinal = 7995, + /// /// charged_dash_movement_speed_+%_final /// - ChargedDashMovementSpeedPctFinal = 7992, - + ChargedDashMovementSpeedPctFinal = 7996, + /// /// virtual_bladefall_number_of_volleys /// - VirtualBladefallNumberOfVolleys = 7993, - + VirtualBladefallNumberOfVolleys = 7997, + /// /// bladefall_number_of_volleys /// - BladefallNumberOfVolleys = 7994, - + BladefallNumberOfVolleys = 7998, + /// /// blade_vortex_critical_strike_multiplier_+_per_blade /// - BladeVortexCriticalStrikeMultiplierPerBlade = 7995, - + BladeVortexCriticalStrikeMultiplierPerBlade = 7999, + /// /// critical_strike_multiplier_+_per_blade /// - CriticalStrikeMultiplierPerBlade = 7996, - + CriticalStrikeMultiplierPerBlade = 8000, + /// /// double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies /// - DoubleStrikeChanceToDealDoubleDamagePctVsBleedingEnemies = 7997, - + DoubleStrikeChanceToDealDoubleDamagePctVsBleedingEnemies = 8001, + /// /// chance_to_deal_double_damage_%_vs_bleeding_enemies /// - ChanceToDealDoubleDamagePctVsBleedingEnemies = 7998, - + ChanceToDealDoubleDamagePctVsBleedingEnemies = 8002, + /// /// arc_damage_+%_per_chain /// - ArcDamagePctPerChain = 7999, - + ArcDamagePctPerChain = 8003, + /// /// damage_+%_per_chain /// - DamagePctPerChain = 8000, - + DamagePctPerChain = 8004, + /// /// petrification_statue_target_action_speed_-% /// - PetrificationStatueTargetActionSpeedPct = 8001, - + PetrificationStatueTargetActionSpeedPct = 8005, + /// /// petrification_statue_pertrify_duration_ms /// - PetrificationStatuePertrifyDurationMs = 8002, - + PetrificationStatuePertrifyDurationMs = 8006, + /// /// arc_enhanced_behaviour /// - ArcEnhancedBehaviour = 8003, - + ArcEnhancedBehaviour = 8007, + /// /// storm_burst_number_of_additional_projectiles /// - StormBurstNumberOfAdditionalProjectiles = 8004, - + StormBurstNumberOfAdditionalProjectiles = 8008, + /// /// ball_lightning_number_of_additional_projectiles /// - BallLightningNumberOfAdditionalProjectiles = 8005, - + BallLightningNumberOfAdditionalProjectiles = 8009, + /// /// power_siphon_number_of_additional_projectiles /// - PowerSiphonNumberOfAdditionalProjectiles = 8006, - + PowerSiphonNumberOfAdditionalProjectiles = 8010, + /// /// ethereal_knives_projectile_base_number_of_targets_to_pierce /// - EtherealKnivesProjectileBaseNumberOfTargetsToPierce = 8007, - + EtherealKnivesProjectileBaseNumberOfTargetsToPierce = 8011, + /// /// frost_bomb_buff_duration_+% /// - FrostBombBuffDurationPct = 8008, - + FrostBombBuffDurationPct = 8012, + /// /// chest_drop_additional_weapon_item_divination_cards /// - ChestDropAdditionalWeaponItemDivinationCards = 8009, - + ChestDropAdditionalWeaponItemDivinationCards = 8013, + /// /// chest_drop_additional_armour_item_divination_cards /// - ChestDropAdditionalArmourItemDivinationCards = 8010, - + ChestDropAdditionalArmourItemDivinationCards = 8014, + /// /// map_non_unique_monster_life_regeneration_rate_per_minute_% /// - MapNonUniqueMonsterLifeRegenerationRatePerMinutePct = 8011, - + MapNonUniqueMonsterLifeRegenerationRatePerMinutePct = 8015, + /// /// map_packs_are_vaal /// - MapPacksAreVaal = 8012, - + MapPacksAreVaal = 8016, + /// /// translate_rotate_translate_speed_+% /// - TranslateRotateTranslateSpeedPct = 8013, - + TranslateRotateTranslateSpeedPct = 8017, + /// /// translate_rotate_rotation_angle_rate /// - TranslateRotateRotationAngleRate = 8014, - + TranslateRotateRotationAngleRate = 8018, + /// /// chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_% /// - ChanceToGainFrenzyChargeOnKillingEnemyAffectedByColdSnapGroundPct = 8015, - + ChanceToGainFrenzyChargeOnKillingEnemyAffectedByColdSnapGroundPct = 8019, + /// /// is_on_ground_cold_snap /// - IsOnGroundColdSnap = 8016, - + IsOnGroundColdSnap = 8020, + /// /// translate_rotate_curvature_scale /// - TranslateRotateCurvatureScale = 8017, - + TranslateRotateCurvatureScale = 8021, + /// /// translate_rotate_curvature_path_distance /// - TranslateRotateCurvaturePathDistance = 8018, - + TranslateRotateCurvaturePathDistance = 8022, + /// /// monster_uses_map_boss_difficulty_scaling /// - MonsterUsesMapBossDifficultyScaling = 8019, - + MonsterUsesMapBossDifficultyScaling = 8023, + /// /// double_slash_minimum_added_physical_damage_vs_bleeding_enemies /// - DoubleSlashMinimumAddedPhysicalDamageVsBleedingEnemies = 8020, - + DoubleSlashMinimumAddedPhysicalDamageVsBleedingEnemies = 8024, + /// /// double_slash_maximum_added_physical_damage_vs_bleeding_enemies /// - DoubleSlashMaximumAddedPhysicalDamageVsBleedingEnemies = 8021, - + DoubleSlashMaximumAddedPhysicalDamageVsBleedingEnemies = 8025, + /// /// arc_extra_damage_rolls /// - ArcExtraDamageRolls = 8022, - + ArcExtraDamageRolls = 8026, + /// /// base_enemy_extra_damage_rolls /// - BaseEnemyExtraDamageRolls = 8023, - + BaseEnemyExtraDamageRolls = 8027, + /// /// charged_dash_channelling_damage_at_full_stacks_+%_final /// - ChargedDashChannellingDamageAtFullStacksPctFinal = 8024, - + ChargedDashChannellingDamageAtFullStacksPctFinal = 8028, + /// /// map_tempest_massive_storm_weight /// - MapTempestMassiveStormWeight = 8025, - + MapTempestMassiveStormWeight = 8029, + /// /// map_tempest_tiny_storm_weight /// - MapTempestTinyStormWeight = 8026, - + MapTempestTinyStormWeight = 8030, + /// /// map_tempest_crit_storm_weight /// - MapTempestCritStormWeight = 8027, - + MapTempestCritStormWeight = 8031, + /// /// map_tempest_replenishing_storm_weight /// - MapTempestReplenishingStormWeight = 8028, - + MapTempestReplenishingStormWeight = 8032, + /// /// map_tempest_status_immunity_storm_weight /// - MapTempestStatusImmunityStormWeight = 8029, - + MapTempestStatusImmunityStormWeight = 8033, + /// /// map_tempest_corrupted_drops_weight /// - MapTempestCorruptedDropsWeight = 8030, - + MapTempestCorruptedDropsWeight = 8034, + /// /// map_tempest_uber_rarity_storm_weight /// - MapTempestUberRarityStormWeight = 8031, - + MapTempestUberRarityStormWeight = 8035, + /// /// local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius /// - LocalUniqueJewelElementalHitCannotRollColdDamageWith40IntStrInRadius = 8032, - + LocalUniqueJewelElementalHitCannotRollColdDamageWith40IntStrInRadius = 8036, + /// /// local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius /// - LocalUniqueJewelElementalHitCannotRollFireDamageWith40IntDexInRadius = 8033, - + LocalUniqueJewelElementalHitCannotRollFireDamageWith40IntDexInRadius = 8037, + /// /// local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius /// - LocalUniqueJewelElementalHitCannotRollLightningDamageWith40DexStrInRadius = 8034, - + LocalUniqueJewelElementalHitCannotRollLightningDamageWith40DexStrInRadius = 8038, + /// /// minion_do_not_remove_skill_specific_stats /// - MinionDoNotRemoveSkillSpecificStats = 8035, - + MinionDoNotRemoveSkillSpecificStats = 8039, + /// /// map_packs_are_mechanical_totems /// - MapPacksAreMechanicalTotems = 8036, - + MapPacksAreMechanicalTotems = 8040, + /// /// vaal_earthquake_maximum_aftershocks /// - VaalEarthquakeMaximumAftershocks = 8037, - + VaalEarthquakeMaximumAftershocks = 8041, + /// /// rain_of_arrows_rain_of_arrows_additional_sequence_chance_% /// - RainOfArrowsRainOfArrowsAdditionalSequenceChancePct = 8038, - + RainOfArrowsRainOfArrowsAdditionalSequenceChancePct = 8042, + /// /// rain_of_arrows_additional_sequence_chance_% /// - RainOfArrowsAdditionalSequenceChancePct = 8039, - + RainOfArrowsAdditionalSequenceChancePct = 8043, + /// /// rain_of_arrows_sequences_to_fire /// - RainOfArrowsSequencesToFire = 8040, - + RainOfArrowsSequencesToFire = 8044, + /// /// local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius /// - LocalUniqueJewelColdSnapUsesGainsPowerChargesInsteadOfFrenzyWith40IntInRadius = 8041, - + LocalUniqueJewelColdSnapUsesGainsPowerChargesInsteadOfFrenzyWith40IntInRadius = 8045, + /// /// cold_snap_uses_and_gains_power_charges_instead_of_frenzy /// - ColdSnapUsesAndGainsPowerChargesInsteadOfFrenzy = 8042, - + ColdSnapUsesAndGainsPowerChargesInsteadOfFrenzy = 8046, + /// /// active_skill_cooldown_bypass_type_override_to_power_charge /// - ActiveSkillCooldownBypassTypeOverrideToPowerCharge = 8043, - + ActiveSkillCooldownBypassTypeOverrideToPowerCharge = 8047, + /// /// Local Socketed Trap Gem Level + /// - LocalSocketedTrapGemLevel = 8044, - + LocalSocketedTrapGemLevel = 8048, + /// /// elemental_hit_no_physical_chaos_damage /// - ElementalHitNoPhysicalChaosDamage = 8045, - + ElementalHitNoPhysicalChaosDamage = 8049, + /// /// elemental_hit_number_of_options /// - ElementalHitNumberOfOptions = 8046, - + ElementalHitNumberOfOptions = 8050, + /// /// local_unique_flask_vaal_skill_damage_+%_during_flask_effect /// - LocalUniqueFlaskVaalSkillDamagePctDuringFlaskEffect = 8047, - + LocalUniqueFlaskVaalSkillDamagePctDuringFlaskEffect = 8051, + /// /// local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect /// - LocalUniqueFlaskVaalSkillSoulCostPctDuringFlaskEffect = 8048, - + LocalUniqueFlaskVaalSkillSoulCostPctDuringFlaskEffect = 8052, + /// /// local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect /// - LocalUniqueFlaskVaalSkillSoulGainPreventationDurationPctDuringFlaskEffect = 8049, - + LocalUniqueFlaskVaalSkillSoulGainPreventationDurationPctDuringFlaskEffect = 8053, + /// /// vaal_skill_soul_gain_preventation_duration_+% /// - VaalSkillSoulGainPreventationDurationPct = 8050, - + VaalSkillSoulGainPreventationDurationPct = 8054, + /// /// vaal_skill_does_not_apply_soul_gain_prevention /// - VaalSkillDoesNotApplySoulGainPrevention = 8051, - + VaalSkillDoesNotApplySoulGainPrevention = 8055, + /// /// local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect /// - LocalUniqueFlaskVaalSkillDoesNotApplySoulGainPreventionDuringFlaskEffect = 8052, - + LocalUniqueFlaskVaalSkillDoesNotApplySoulGainPreventionDuringFlaskEffect = 8056, + /// /// local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect /// - LocalUniqueSoulRipperFlaskCannotGainFlaskChargesDuringFlaskEffect = 8053, - + LocalUniqueSoulRipperFlaskCannotGainFlaskChargesDuringFlaskEffect = 8057, + /// /// using_flask_soul_ripper /// - UsingFlaskSoulRipper = 8054, - + UsingFlaskSoulRipper = 8058, + /// /// additional_life_scaling_index /// - AdditionalLifeScalingIndex = 8055, - + AdditionalLifeScalingIndex = 8059, + /// /// summon_specific_monsters_cannot_fail /// - SummonSpecificMonstersCannotFail = 8056, - + SummonSpecificMonstersCannotFail = 8060, + /// /// vaal_flameblast_radius_+_per_stage /// - VaalFlameblastRadiusPerStage = 8057, - + VaalFlameblastRadiusPerStage = 8061, + /// /// vaal_righteous_fire_spell_damage_+%_final /// - VaalRighteousFireSpellDamagePctFinal = 8058, - + VaalRighteousFireSpellDamagePctFinal = 8062, + /// /// vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura /// - VaalColdSnapGainFrenzyChargeEverySecondIfEnemyInAura = 8059, - + VaalColdSnapGainFrenzyChargeEverySecondIfEnemyInAura = 8063, + /// /// trigger_cascade_arm_angle_offset /// - TriggerCascadeArmAngleOffset = 8060, - + TriggerCascadeArmAngleOffset = 8064, + /// /// geometry_attack_%_target_life_to_deal_as_additional_damage /// - GeometryAttackPctTargetLifeToDealAsAdditionalDamage = 8061, - + GeometryAttackPctTargetLifeToDealAsAdditionalDamage = 8065, + /// /// firestorm_target_radius_affected_only_by_self /// - FirestormTargetRadiusAffectedOnlyBySelf = 8062, - + FirestormTargetRadiusAffectedOnlyBySelf = 8066, + /// /// firestorm_explosion_radius_affected_only_by_self /// - FirestormExplosionRadiusAffectedOnlyBySelf = 8063, - + FirestormExplosionRadiusAffectedOnlyBySelf = 8067, + /// /// omnitect_thruster_damage_+%_final /// - OmnitectThrusterDamagePctFinal = 8064, - + OmnitectThrusterDamagePctFinal = 8068, + /// /// skill_granted_omnitect_thruster_damage_+%_final /// - SkillGrantedOmnitectThrusterDamagePctFinal = 8065, - + SkillGrantedOmnitectThrusterDamagePctFinal = 8069, + /// /// charged_dash_skill_inherent_movement_speed_+%_final /// - ChargedDashSkillInherentMovementSpeedPctFinal = 8066, - + ChargedDashSkillInherentMovementSpeedPctFinal = 8070, + /// /// local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect /// - LocalUniqueFlaskVaalSkillDamagePctFinalDuringFlaskEffect = 8067, - + LocalUniqueFlaskVaalSkillDamagePctFinalDuringFlaskEffect = 8071, + /// /// soul_ripper_vaal_skill_damage_+%_final /// - SoulRipperVaalSkillDamagePctFinal = 8068, - + SoulRipperVaalSkillDamagePctFinal = 8072, + /// /// vaal_storm_call_base_delay_ms /// - VaalStormCallBaseDelayMs = 8069, - + VaalStormCallBaseDelayMs = 8073, + /// /// vaal_storm_call_delay_ms /// - VaalStormCallDelayMs = 8070, - + VaalStormCallDelayMs = 8074, + /// /// modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration /// - ModifiersToSkillEffectDurationAlsoAffectSoulPreventionDuration = 8071, - + ModifiersToSkillEffectDurationAlsoAffectSoulPreventionDuration = 8075, + /// /// modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration /// - ModifiersToBuffEffectDurationAlsoAffectSoulPreventionDuration = 8072, - + ModifiersToBuffEffectDurationAlsoAffectSoulPreventionDuration = 8076, + /// /// base_soul_prevention_time_ms /// - BaseSoulPreventionTimeMs = 8073, - + BaseSoulPreventionTimeMs = 8077, + /// /// virtual_soul_prevention_time_ms /// - VirtualSoulPreventionTimeMs = 8074, - + VirtualSoulPreventionTimeMs = 8078, + /// /// map_atlas_influence_hash /// - MapAtlasInfluenceHash = 8075, - + MapAtlasInfluenceHash = 8079, + /// /// effective_level /// - EffectiveLevel = 8076, - + EffectiveLevel = 8080, + /// /// effective_level_override /// - EffectiveLevelOverride = 8077, - + EffectiveLevelOverride = 8081, + /// /// virtual_damage_+%_final_from_effective_level_permyriad /// - VirtualDamagePctFinalFromEffectiveLevelPermyriad = 8078, - + VirtualDamagePctFinalFromEffectiveLevelPermyriad = 8082, + /// /// virtual_damage_taken_+%_final_from_effective_level /// - VirtualDamageTakenPctFinalFromEffectiveLevel = 8079, - + VirtualDamageTakenPctFinalFromEffectiveLevel = 8083, + /// /// virtual_accuracy_rating_+%_final_from_effective_level /// - VirtualAccuracyRatingPctFinalFromEffectiveLevel = 8080, - + VirtualAccuracyRatingPctFinalFromEffectiveLevel = 8084, + /// /// virtual_evasion_rating_+%_final_from_effective_level /// - VirtualEvasionRatingPctFinalFromEffectiveLevel = 8081, - + VirtualEvasionRatingPctFinalFromEffectiveLevel = 8085, + /// /// virtual_curse_effect_+%_final_from_effective_level /// - VirtualCurseEffectPctFinalFromEffectiveLevel = 8082, - + VirtualCurseEffectPctFinalFromEffectiveLevel = 8086, + /// /// ignore_attacker_effective_level_modifiers /// - IgnoreAttackerEffectiveLevelModifiers = 8083, - + IgnoreAttackerEffectiveLevelModifiers = 8087, + /// /// ignore_defender_effective_level_modifiers /// - IgnoreDefenderEffectiveLevelModifiers = 8084, - + IgnoreDefenderEffectiveLevelModifiers = 8088, + /// /// Taking DoT based on a % of max life should not be scaled by this stat. /// - PhysicalDamageTakenPerMinuteUnaffectedByLevelScaling = 8085, - + PhysicalDamageTakenPerMinuteUnaffectedByLevelScaling = 8089, + /// /// Taking DoT based on a % of max life should not be scaled by this stat. /// - FireDamageTakenPerMinuteUnaffectedByLevelScaling = 8086, - + FireDamageTakenPerMinuteUnaffectedByLevelScaling = 8090, + /// /// Taking DoT based on a % of max life should not be scaled by this stat. /// - ColdDamageTakenPerMinuteUnaffectedByLevelScaling = 8087, - + ColdDamageTakenPerMinuteUnaffectedByLevelScaling = 8091, + /// /// Taking DoT based on a % of max life should not be scaled by this stat. /// - LightningDamageTakenPerMinuteUnaffectedByLevelScaling = 8088, - + LightningDamageTakenPerMinuteUnaffectedByLevelScaling = 8092, + /// /// Taking DoT based on a % of max life should not be scaled by this stat. /// - ChaosDamageTakenPerMinuteUnaffectedByLevelScaling = 8089, - + ChaosDamageTakenPerMinuteUnaffectedByLevelScaling = 8093, + /// /// minion_owner_actual_level /// - MinionOwnerActualLevel = 8090, - + MinionOwnerActualLevel = 8094, + /// /// minion_owner_effective_level_override /// - MinionOwnerEffectiveLevelOverride = 8091, - + MinionOwnerEffectiveLevelOverride = 8095, + /// /// minion_owner_effective_level /// - MinionOwnerEffectiveLevel = 8092, - + MinionOwnerEffectiveLevel = 8096, + /// /// map_delve_%_degeneration_per_minute /// - MapDelvePctDegenerationPerMinute = 8093, - + MapDelvePctDegenerationPerMinute = 8097, + /// /// base_unaffected_by_delve_degeneration /// - BaseUnaffectedByDelveDegeneration = 8094, - + BaseUnaffectedByDelveDegeneration = 8098, + /// /// map_delve_rules /// - MapDelveRules = 8095, - + MapDelveRules = 8099, + /// /// gain_endurance_charge_on_melee_stun_% /// - GainEnduranceChargeOnMeleeStunPct = 8096, - + GainEnduranceChargeOnMeleeStunPct = 8100, + /// /// intermediary_physical_damage_to_deal_per_minute /// - IntermediaryPhysicalDamageToDealPerMinute = 8097, - + IntermediaryPhysicalDamageToDealPerMinute = 8101, + /// /// intermediary_physical_skill_dot_damage_to_deal_per_minute /// - IntermediaryPhysicalSkillDotDamageToDealPerMinute = 8098, - + IntermediaryPhysicalSkillDotDamageToDealPerMinute = 8102, + /// /// intermediary_physical_area_damage_to_deal_per_minute /// - IntermediaryPhysicalAreaDamageToDealPerMinute = 8099, - + IntermediaryPhysicalAreaDamageToDealPerMinute = 8103, + /// /// intermediary_physical_skill_dot_area_damage_to_deal_per_minute /// - IntermediaryPhysicalSkillDotAreaDamageToDealPerMinute = 8100, - + IntermediaryPhysicalSkillDotAreaDamageToDealPerMinute = 8104, + /// /// intermediary_fire_damage_to_deal_per_minute /// - IntermediaryFireDamageToDealPerMinute = 8101, - + IntermediaryFireDamageToDealPerMinute = 8105, + /// /// intermediary_fire_skill_dot_damage_to_deal_per_minute /// - IntermediaryFireSkillDotDamageToDealPerMinute = 8102, - + IntermediaryFireSkillDotDamageToDealPerMinute = 8106, + /// /// intermediary_fire_area_damage_to_deal_per_minute /// - IntermediaryFireAreaDamageToDealPerMinute = 8103, - + IntermediaryFireAreaDamageToDealPerMinute = 8107, + /// /// intermediary_fire_skill_dot_area_damage_to_deal_per_minute /// - IntermediaryFireSkillDotAreaDamageToDealPerMinute = 8104, - + IntermediaryFireSkillDotAreaDamageToDealPerMinute = 8108, + /// /// intermediary_projectile_skill_dot_ground_fire_area_damage_per_minute /// - IntermediaryProjectileSkillDotGroundFireAreaDamagePerMinute = 8105, - + IntermediaryProjectileSkillDotGroundFireAreaDamagePerMinute = 8109, + /// /// intermediary_cold_damage_to_deal_per_minute /// - IntermediaryColdDamageToDealPerMinute = 8106, - + IntermediaryColdDamageToDealPerMinute = 8110, + /// /// intermediary_cold_skill_dot_damage_to_deal_per_minute /// - IntermediaryColdSkillDotDamageToDealPerMinute = 8107, - + IntermediaryColdSkillDotDamageToDealPerMinute = 8111, + /// /// intermediary_cold_area_damage_to_deal_per_minute /// - IntermediaryColdAreaDamageToDealPerMinute = 8108, - + IntermediaryColdAreaDamageToDealPerMinute = 8112, + /// /// intermediary_cold_skill_dot_area_damage_to_deal_per_minute /// - IntermediaryColdSkillDotAreaDamageToDealPerMinute = 8109, - + IntermediaryColdSkillDotAreaDamageToDealPerMinute = 8113, + /// /// intermediary_lightning_damage_to_deal_per_minute /// - IntermediaryLightningDamageToDealPerMinute = 8110, - + IntermediaryLightningDamageToDealPerMinute = 8114, + /// /// intermediary_lightning_skill_dot_damage_to_deal_per_minute /// - IntermediaryLightningSkillDotDamageToDealPerMinute = 8111, - + IntermediaryLightningSkillDotDamageToDealPerMinute = 8115, + /// /// intermediary_lightning_area_damage_to_deal_per_minute /// - IntermediaryLightningAreaDamageToDealPerMinute = 8112, - + IntermediaryLightningAreaDamageToDealPerMinute = 8116, + /// /// intermediary_lightning_skill_dot_area_damage_to_deal_per_minute /// - IntermediaryLightningSkillDotAreaDamageToDealPerMinute = 8113, - + IntermediaryLightningSkillDotAreaDamageToDealPerMinute = 8117, + /// /// intermediary_chaos_damage_to_deal_per_minute /// - IntermediaryChaosDamageToDealPerMinute = 8114, - + IntermediaryChaosDamageToDealPerMinute = 8118, + /// /// intermediary_chaos_skill_dot_damage_to_deal_per_minute /// - IntermediaryChaosSkillDotDamageToDealPerMinute = 8115, - + IntermediaryChaosSkillDotDamageToDealPerMinute = 8119, + /// /// intermediary_chaos_area_damage_to_deal_per_minute /// - IntermediaryChaosAreaDamageToDealPerMinute = 8116, - + IntermediaryChaosAreaDamageToDealPerMinute = 8120, + /// /// intermediary_chaos_skill_dot_area_damage_to_deal_per_minute /// - IntermediaryChaosSkillDotAreaDamageToDealPerMinute = 8117, - + IntermediaryChaosSkillDotAreaDamageToDealPerMinute = 8121, + /// /// intermediary_projectile_skill_dot_ground_caustic_area_damage_per_minute /// - IntermediaryProjectileSkillDotGroundCausticAreaDamagePerMinute = 8118, - + IntermediaryProjectileSkillDotGroundCausticAreaDamagePerMinute = 8122, + /// /// map_area_underlevelled /// - MapAreaUnderlevelled = 8119, - + MapAreaUnderlevelled = 8123, + /// /// delve_monster_damage_taken_+%_final /// - DelveMonsterDamageTakenPctFinal = 8120, - + DelveMonsterDamageTakenPctFinal = 8124, + /// /// base_ignite_damage_taken_per_minute /// - BaseIgniteDamageTakenPerMinute = 8121, - + BaseIgniteDamageTakenPerMinute = 8125, + /// /// base_poison_damage_taken_per_minute /// - BasePoisonDamageTakenPerMinute = 8122, - + BasePoisonDamageTakenPerMinute = 8126, + /// /// base_self_chaos_damage_taken_per_minute /// - BaseSelfChaosDamageTakenPerMinute = 8123, - + BaseSelfChaosDamageTakenPerMinute = 8127, + /// /// base_number_of_clones_allowed /// - BaseNumberOfClonesAllowed = 8124, - + BaseNumberOfClonesAllowed = 8128, + /// /// max_number_of_dominated_normal_monsters /// - MaxNumberOfDominatedNormalMonsters = 8125, - + MaxNumberOfDominatedNormalMonsters = 8129, + /// /// max_number_of_dominated_magic_monsters /// - MaxNumberOfDominatedMagicMonsters = 8126, - + MaxNumberOfDominatedMagicMonsters = 8130, + /// /// max_number_of_dominated_rare_monsters /// - MaxNumberOfDominatedRareMonsters = 8127, - + MaxNumberOfDominatedRareMonsters = 8131, + /// /// additional_max_number_of_dominated_magic_monsters /// - AdditionalMaxNumberOfDominatedMagicMonsters = 8128, - + AdditionalMaxNumberOfDominatedMagicMonsters = 8132, + /// /// additional_max_number_of_dominated_rare_monsters /// - AdditionalMaxNumberOfDominatedRareMonsters = 8129, - + AdditionalMaxNumberOfDominatedRareMonsters = 8133, + /// /// number_of_dominated_monsters /// - NumberOfDominatedMonsters = 8130, - + NumberOfDominatedMonsters = 8134, + /// /// number_of_dominated_normal_monsters /// - NumberOfDominatedNormalMonsters = 8131, - + NumberOfDominatedNormalMonsters = 8135, + /// /// number_of_dominated_magic_monsters /// - NumberOfDominatedMagicMonsters = 8132, - + NumberOfDominatedMagicMonsters = 8136, + /// /// number_of_dominated_rare_monsters /// - NumberOfDominatedRareMonsters = 8133, - + NumberOfDominatedRareMonsters = 8137, + /// /// geometry_attack_%_target_es_to_deal_as_additional_damage /// - GeometryAttackPctTargetEsToDealAsAdditionalDamage = 8134, - + GeometryAttackPctTargetEsToDealAsAdditionalDamage = 8138, + /// /// minimum_added_lightning_damage_from_skill /// - MinimumAddedLightningDamageFromSkill = 8135, - + MinimumAddedLightningDamageFromSkill = 8139, + /// /// maximum_added_lightning_damage_from_skill /// - MaximumAddedLightningDamageFromSkill = 8136, - + MaximumAddedLightningDamageFromSkill = 8140, + /// /// base_chance_to_shock_%_from_skill /// - BaseChanceToShockPctFromSkill = 8137, - + BaseChanceToShockPctFromSkill = 8141, + /// /// static_strike_number_of_beam_targets /// - StaticStrikeNumberOfBeamTargets = 8138, - + StaticStrikeNumberOfBeamTargets = 8142, + /// /// static_strike_additional_number_of_beam_targets /// - StaticStrikeAdditionalNumberOfBeamTargets = 8139, - + StaticStrikeAdditionalNumberOfBeamTargets = 8143, + /// /// static_strike_base_zap_frequency_ms /// - StaticStrikeBaseZapFrequencyMs = 8140, - + StaticStrikeBaseZapFrequencyMs = 8144, + /// /// static_strike_zap_speed_+%_per_stack /// - StaticStrikeZapSpeedPctPerStack = 8141, - + StaticStrikeZapSpeedPctPerStack = 8145, + /// /// local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius /// - LocalJewelCopyStatsFromUnallocatedNonNotablePassivesInRadius = 8142, - + LocalJewelCopyStatsFromUnallocatedNonNotablePassivesInRadius = 8146, + /// /// local_jewel_allocated_non_notable_passives_in_radius_grant_nothing /// - LocalJewelAllocatedNonNotablePassivesInRadiusGrantNothing = 8143, - + LocalJewelAllocatedNonNotablePassivesInRadiusGrantNothing = 8147, + /// /// caustic_arrow_explode_on_hit_base_area_of_effect_radius /// - CausticArrowExplodeOnHitBaseAreaOfEffectRadius = 8144, - + CausticArrowExplodeOnHitBaseAreaOfEffectRadius = 8148, + /// /// damage_over_time_+%_with_bow_skills /// - DamageOverTimePctWithBowSkills = 8145, - + DamageOverTimePctWithBowSkills = 8149, + /// /// damage_over_time_+%_with_attack_skills /// - DamageOverTimePctWithAttackSkills = 8146, - + DamageOverTimePctWithAttackSkills = 8150, + /// /// skill_is_bow_skill /// - SkillIsBowSkill = 8147, - + SkillIsBowSkill = 8151, + /// /// map_players_cannot_gain_flask_charges /// - MapPlayersCannotGainFlaskCharges = 8148, - + MapPlayersCannotGainFlaskCharges = 8152, + /// /// cannot_gain_flask_charges /// - CannotGainFlaskCharges = 8149, - + CannotGainFlaskCharges = 8153, + /// /// trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance /// - TriggerSocketedWarcryWhenEnduranceChargeExpiresOrConsumedPctChance = 8150, - + TriggerSocketedWarcryWhenEnduranceChargeExpiresOrConsumedPctChance = 8154, + /// /// unique_socketed_warcry_triggered /// - UniqueSocketedWarcryTriggered = 8151, - + UniqueSocketedWarcryTriggered = 8155, + /// /// sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast /// - SacrificePctMaximumLifeToGainAsEsOnSpellCast = 8152, - + SacrificePctMaximumLifeToGainAsEsOnSpellCast = 8156, + /// /// unique_primordial_tether_golem_life_+%_final /// - UniquePrimordialTetherGolemLifePctFinal = 8153, - + UniquePrimordialTetherGolemLifePctFinal = 8157, + /// /// unique_primordial_tether_golem_damage_+%_final /// - UniquePrimordialTetherGolemDamagePctFinal = 8154, - + UniquePrimordialTetherGolemDamagePctFinal = 8158, + /// /// golem_life_+%_final_from_unique_primordial_tether /// - GolemLifePctFinalFromUniquePrimordialTether = 8155, - + GolemLifePctFinalFromUniquePrimordialTether = 8159, + /// /// golem_damage_+%_final_from_unique_primordial_tether /// - GolemDamagePctFinalFromUniquePrimordialTether = 8156, - + GolemDamagePctFinalFromUniquePrimordialTether = 8160, + /// /// golem_scale_+% /// - GolemScalePct = 8157, - + GolemScalePct = 8161, + /// /// virtual_current_number_of_keystones /// - VirtualCurrentNumberOfKeystones = 8158, - + VirtualCurrentNumberOfKeystones = 8162, + /// /// additional_physical_damage_reduction_%_per_keystone /// - AdditionalPhysicalDamageReductionPctPerKeystone = 8159, - + AdditionalPhysicalDamageReductionPctPerKeystone = 8163, + /// /// local_display_curse_enemies_with_socketed_curse_on_hit_%_chance /// - LocalDisplayCurseEnemiesWithSocketedCurseOnHitPctChance = 8160, - + LocalDisplayCurseEnemiesWithSocketedCurseOnHitPctChance = 8164, + /// /// unique_curse_enemies_with_socketed_curse_on_hit_%_chance /// - UniqueCurseEnemiesWithSocketedCurseOnHitPctChance = 8161, - + UniqueCurseEnemiesWithSocketedCurseOnHitPctChance = 8165, + /// /// local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed /// - LocalSpellsGainArcaneSurgeOnHitWithCasterAbyssJewelSocketed = 8162, - + LocalSpellsGainArcaneSurgeOnHitWithCasterAbyssJewelSocketed = 8166, + /// /// gain_arcane_surge_on_hit_%_chance /// - GainArcaneSurgeOnHitPctChance = 8163, - + GainArcaneSurgeOnHitPctChance = 8167, + /// /// local_minion_accuracy_rating_with_minion_abyss_jewel_socketed /// - LocalMinionAccuracyRatingWithMinionAbyssJewelSocketed = 8164, - + LocalMinionAccuracyRatingWithMinionAbyssJewelSocketed = 8168, + /// /// minion_accuracy_rating /// - MinionAccuracyRating = 8165, - + MinionAccuracyRating = 8169, + /// /// cannot_gain_bleeding /// - CannotGainBleeding = 8166, - + CannotGainBleeding = 8170, + /// /// local_display_nearby_allies_extra_damage_rolls /// - LocalDisplayNearbyAlliesExtraDamageRolls = 8167, - + LocalDisplayNearbyAlliesExtraDamageRolls = 8171, + /// /// enemies_extra_damage_rolls_with_lightning_damage /// - EnemiesExtraDamageRollsWithLightningDamage = 8168, - + EnemiesExtraDamageRollsWithLightningDamage = 8172, + /// /// number_of_additional_mines_to_place_with_at_least_500_int /// - NumberOfAdditionalMinesToPlaceWithAtLeast500Int = 8169, - + NumberOfAdditionalMinesToPlaceWithAtLeast500Int = 8173, + /// /// number_of_additional_mines_to_place_with_at_least_500_dex /// - NumberOfAdditionalMinesToPlaceWithAtLeast500Dex = 8170, - + NumberOfAdditionalMinesToPlaceWithAtLeast500Dex = 8174, + /// /// delve_in_antilight /// - DelveInAntilight = 8171, - + DelveInAntilight = 8175, + /// /// virtual_unaffected_by_delve_degeneration /// - VirtualUnaffectedByDelveDegeneration = 8172, - + VirtualUnaffectedByDelveDegeneration = 8176, + /// /// base_extra_damage_rolls /// - BaseExtraDamageRolls = 8173, - + BaseExtraDamageRolls = 8177, + /// /// delve_depth /// - DelveDepth = 8174, - + DelveDepth = 8178, + /// /// static_strike_beam_damage_+%_final /// - StaticStrikeBeamDamagePctFinal = 8175, - + StaticStrikeBeamDamagePctFinal = 8179, + /// /// static_strike_beam_damage_+%_final_while_moving /// - StaticStrikeBeamDamagePctFinalWhileMoving = 8176, - + StaticStrikeBeamDamagePctFinalWhileMoving = 8180, + /// /// herald_of_agony_poison_damage_+%_final /// - HeraldOfAgonyPoisonDamagePctFinal = 8177, - + HeraldOfAgonyPoisonDamagePctFinal = 8181, + /// /// herald_of_agony_add_stack_on_poison /// - HeraldOfAgonyAddStackOnPoison = 8178, - + HeraldOfAgonyAddStackOnPoison = 8182, + /// /// scorpion_minion_physical_damage_+% /// - ScorpionMinionPhysicalDamagePct = 8179, - + ScorpionMinionPhysicalDamagePct = 8183, + /// /// scorpion_minion_attack_speed_+% /// - ScorpionMinionAttackSpeedPct = 8180, - + ScorpionMinionAttackSpeedPct = 8184, + /// /// scorpion_minion_minimum_added_physical_damage /// - ScorpionMinionMinimumAddedPhysicalDamage = 8181, - + ScorpionMinionMinimumAddedPhysicalDamage = 8185, + /// /// scorpion_minion_maximum_added_physical_damage /// - ScorpionMinionMaximumAddedPhysicalDamage = 8182, - + ScorpionMinionMaximumAddedPhysicalDamage = 8186, + /// /// base_number_of_herald_scorpions_allowed /// - BaseNumberOfHeraldScorpionsAllowed = 8183, - + BaseNumberOfHeraldScorpionsAllowed = 8187, + /// /// number_of_herald_scorpions_allowed /// - NumberOfHeraldScorpionsAllowed = 8184, - + NumberOfHeraldScorpionsAllowed = 8188, + /// /// immune_to_cheats /// - ImmuneToCheats = 8185, - + ImmuneToCheats = 8189, + /// /// virulent_arrow_maximum_number_of_stacks /// - VirulentArrowMaximumNumberOfStacks = 8186, - + VirulentArrowMaximumNumberOfStacks = 8190, + /// /// energy_shield_regeneration_rate_+% /// - EnergyShieldRegenerationRatePct = 8187, - + EnergyShieldRegenerationRatePct = 8191, + /// /// is_dynamite_wall /// - IsDynamiteWall = 8188, - + IsDynamiteWall = 8192, + /// /// dynamite_damage_+% /// - DynamiteDamagePct = 8189, - + DynamiteDamagePct = 8193, + /// /// base_dynamite_damage_resistance_% /// - BaseDynamiteDamageResistancePct = 8190, - + BaseDynamiteDamageResistancePct = 8194, + /// /// virtual_dynamite_damage_resistance_% /// - VirtualDynamiteDamageResistancePct = 8191, - + VirtualDynamiteDamageResistancePct = 8195, + /// /// base_skill_is_instant /// - BaseSkillIsInstant = 8192, - + BaseSkillIsInstant = 8196, + /// /// skill_is_instant /// - SkillIsInstant = 8193, - + SkillIsInstant = 8197, + /// /// golem_movement_speed_+% /// - GolemMovementSpeedPct = 8194, - + GolemMovementSpeedPct = 8198, + /// /// base_number_of_champions_of_light_allowed /// - BaseNumberOfChampionsOfLightAllowed = 8195, - + BaseNumberOfChampionsOfLightAllowed = 8199, + /// /// number_of_champions_of_light_allowed /// - NumberOfChampionsOfLightAllowed = 8196, - + NumberOfChampionsOfLightAllowed = 8200, + /// /// herald_of_light_spell_minimum_added_physical_damage /// - HeraldOfLightSpellMinimumAddedPhysicalDamage = 8197, - + HeraldOfLightSpellMinimumAddedPhysicalDamage = 8201, + /// /// herald_of_light_spell_maximum_added_physical_damage /// - HeraldOfLightSpellMaximumAddedPhysicalDamage = 8198, - + HeraldOfLightSpellMaximumAddedPhysicalDamage = 8202, + /// /// herald_of_light_attack_minimum_added_physical_damage /// - HeraldOfLightAttackMinimumAddedPhysicalDamage = 8199, - + HeraldOfLightAttackMinimumAddedPhysicalDamage = 8203, + /// /// herald_of_light_attack_maximum_added_physical_damage /// - HeraldOfLightAttackMaximumAddedPhysicalDamage = 8200, - + HeraldOfLightAttackMaximumAddedPhysicalDamage = 8204, + /// /// herald_of_light_summon_champion_on_kill /// - HeraldOfLightSummonChampionOnKill = 8201, - + HeraldOfLightSummonChampionOnKill = 8205, + /// /// herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_% /// - HeraldOfLightSummonChampionOnUniqueOrRareEnemyHitPct = 8202, - + HeraldOfLightSummonChampionOnUniqueOrRareEnemyHitPct = 8206, + /// /// rain_of_spores_vines_movement_speed_+%_final /// - RainOfSporesVinesMovementSpeedPctFinal = 8203, - + RainOfSporesVinesMovementSpeedPctFinal = 8207, + /// /// dominating_blow_chance_to_summon_on_hitting_unqiue_% /// - DominatingBlowChanceToSummonOnHittingUnqiuePct = 8204, - + DominatingBlowChanceToSummonOnHittingUnqiuePct = 8208, + /// /// virulent_arrow_pod_projectile_damage_+%_final /// - VirulentArrowPodProjectileDamagePctFinal = 8205, - + VirulentArrowPodProjectileDamagePctFinal = 8209, + /// /// virulent_arrow_damage_+%_final_per_stage /// - VirulentArrowDamagePctFinalPerStage = 8206, - + VirulentArrowDamagePctFinalPerStage = 8210, + /// /// virulent_arrow_number_of_pod_projectiles /// - VirulentArrowNumberOfPodProjectiles = 8207, - + VirulentArrowNumberOfPodProjectiles = 8211, + /// /// delve_flare_id /// - DelveFlareId = 8208, - + DelveFlareId = 8212, + /// /// delve_dynamite_id /// - DelveDynamiteId = 8209, - + DelveDynamiteId = 8213, + /// /// maximum_spell_block_% /// - MaximumSpellBlockPct = 8210, - + MaximumSpellBlockPct = 8214, + /// /// minion_accuracy_rating_+% /// - MinionAccuracyRatingPct = 8211, - + MinionAccuracyRatingPct = 8215, + /// /// modifiers_to_totem_duration_also_affect_soul_prevention_duration /// - ModifiersToTotemDurationAlsoAffectSoulPreventionDuration = 8212, - + ModifiersToTotemDurationAlsoAffectSoulPreventionDuration = 8216, + /// /// in_grace_period /// - InGracePeriod = 8213, - + InGracePeriod = 8217, + /// /// combined_base_spell_block_% /// - CombinedBaseSpellBlockPct = 8214, - + CombinedBaseSpellBlockPct = 8218, + /// /// spell_block_equals_attack_block /// - SpellBlockEqualsAttackBlock = 8215, - + SpellBlockEqualsAttackBlock = 8219, + /// /// local_item_sell_price_doubled /// - LocalItemSellPriceDoubled = 8216, - + LocalItemSellPriceDoubled = 8220, + /// /// base_number_of_relics_allowed /// - BaseNumberOfRelicsAllowed = 8217, - + BaseNumberOfRelicsAllowed = 8221, + /// /// number_of_relics_allowed /// - NumberOfRelicsAllowed = 8218, - + NumberOfRelicsAllowed = 8222, + /// /// number_of_active_relics /// - NumberOfActiveRelics = 8219, - + NumberOfActiveRelics = 8223, + /// /// holy_relic_trigger_on_parent_attack_% /// - HolyRelicTriggerOnParentAttackPct = 8220, - + HolyRelicTriggerOnParentAttackPct = 8224, + /// /// local_display_nearby_enemy_fire_damage_resistance_% /// - LocalDisplayNearbyEnemyFireDamageResistancePct = 8221, - + LocalDisplayNearbyEnemyFireDamageResistancePct = 8225, + /// /// local_display_nearby_enemy_cold_damage_resistance_% /// - LocalDisplayNearbyEnemyColdDamageResistancePct = 8222, - + LocalDisplayNearbyEnemyColdDamageResistancePct = 8226, + /// /// local_display_nearby_enemy_lightning_damage_resistance_% /// - LocalDisplayNearbyEnemyLightningDamageResistancePct = 8223, - + LocalDisplayNearbyEnemyLightningDamageResistancePct = 8227, + /// /// local_display_nearby_enemy_chaos_damage_resistance_% /// - LocalDisplayNearbyEnemyChaosDamageResistancePct = 8224, - + LocalDisplayNearbyEnemyChaosDamageResistancePct = 8228, + /// /// local_display_nearby_enemy_physical_damage_taken_+% /// - LocalDisplayNearbyEnemyPhysicalDamageTakenPct = 8225, - + LocalDisplayNearbyEnemyPhysicalDamageTakenPct = 8229, + /// /// chance_to_intimidate_on_hit_% /// - ChanceToIntimidateOnHitPct = 8226, - + ChanceToIntimidateOnHitPct = 8230, + /// /// physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently /// - PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently = 8227, - + PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently = 8231, + /// /// evasion_rating_+_if_you_have_hit_an_enemy_recently /// - EvasionRatingIfYouHaveHitAnEnemyRecently = 8228, - + EvasionRatingIfYouHaveHitAnEnemyRecently = 8232, + /// /// energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently /// - EnergyShieldRegenerationRatePerMinutePctIfYouHaveHitAnEnemyRecently = 8229, - + EnergyShieldRegenerationRatePerMinutePctIfYouHaveHitAnEnemyRecently = 8233, + /// /// maximum_energy_shield_from_body_armour_+% /// - MaximumEnergyShieldFromBodyArmourPct = 8230, - + MaximumEnergyShieldFromBodyArmourPct = 8234, + /// /// base_body_armour_maximum_energy_shield /// - BaseBodyArmourMaximumEnergyShield = 8231, - + BaseBodyArmourMaximumEnergyShield = 8235, + /// /// local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon /// - LocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 8232, - + LocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 8236, + /// /// local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon /// - LocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 8233, - + LocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 8237, + /// /// local_display_socketed_spell_damage_+%_final /// - LocalDisplaySocketedSpellDamagePctFinal = 8234, - + LocalDisplaySocketedSpellDamagePctFinal = 8238, + /// /// local_display_socketed_attack_damage_+%_final /// - LocalDisplaySocketedAttackDamagePctFinal = 8235, - + LocalDisplaySocketedAttackDamagePctFinal = 8239, + /// /// minimum_added_physical_damage_vs_poisoned_enemies /// - MinimumAddedPhysicalDamageVsPoisonedEnemies = 8236, - + MinimumAddedPhysicalDamageVsPoisonedEnemies = 8240, + /// /// maximum_added_physical_damage_vs_poisoned_enemies /// - MaximumAddedPhysicalDamageVsPoisonedEnemies = 8237, - + MaximumAddedPhysicalDamageVsPoisonedEnemies = 8241, + /// /// minimum_added_physical_damage_vs_bleeding_enemies /// - MinimumAddedPhysicalDamageVsBleedingEnemies = 8238, - + MinimumAddedPhysicalDamageVsBleedingEnemies = 8242, + /// /// maximum_added_physical_damage_vs_bleeding_enemies /// - MaximumAddedPhysicalDamageVsBleedingEnemies = 8239, - + MaximumAddedPhysicalDamageVsBleedingEnemies = 8243, + /// /// local_display_socketed_skills_cast_speed_+% /// - LocalDisplaySocketedSkillsCastSpeedPct = 8240, - + LocalDisplaySocketedSkillsCastSpeedPct = 8244, + /// /// local_display_socketed_spells_mana_cost_+% /// - LocalDisplaySocketedSpellsManaCostPct = 8241, - + LocalDisplaySocketedSpellsManaCostPct = 8245, + /// /// local_display_socketed_skills_attack_speed_+% /// - LocalDisplaySocketedSkillsAttackSpeedPct = 8242, - + LocalDisplaySocketedSkillsAttackSpeedPct = 8246, + /// /// local_display_socketed_attacks_mana_cost_+ /// - LocalDisplaySocketedAttacksManaCost = 8243, - + LocalDisplaySocketedAttacksManaCost = 8247, + /// /// maximum_spell_block_chance_per_50_strength /// - MaximumSpellBlockChancePer50Strength = 8244, - + MaximumSpellBlockChancePer50Strength = 8248, + /// /// block_chance_%_per_50_strength /// - BlockChancePctPer50Strength = 8245, - + BlockChancePctPer50Strength = 8249, + /// /// base_maximum_spell_block_% /// - BaseMaximumSpellBlockPct = 8246, - + BaseMaximumSpellBlockPct = 8250, + /// /// local_display_nearby_enemies_stun_and_block_recovery_+% /// - LocalDisplayNearbyEnemiesStunAndBlockRecoveryPct = 8247, - + LocalDisplayNearbyEnemiesStunAndBlockRecoveryPct = 8251, + /// /// local_display_nearby_enemies_flask_charges_granted_+% /// - LocalDisplayNearbyEnemiesFlaskChargesGrantedPct = 8248, - + LocalDisplayNearbyEnemiesFlaskChargesGrantedPct = 8252, + /// /// local_display_hits_against_nearby_enemies_critical_strike_chance_+50% /// - LocalDisplayHitsAgainstNearbyEnemiesCriticalStrikeChance50Pct = 8249, - + LocalDisplayHitsAgainstNearbyEnemiesCriticalStrikeChance50Pct = 8253, + /// /// virtual_gain_flask_charge_on_crit_chance_% /// - VirtualGainFlaskChargeOnCritChancePct = 8250, - + VirtualGainFlaskChargeOnCritChancePct = 8254, + /// /// gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges /// - GainFlaskChargeOnCritChancePctWhileAtMaximumFrenzyCharges = 8251, - + GainFlaskChargeOnCritChancePctWhileAtMaximumFrenzyCharges = 8255, + /// /// movement_speed_+%_per_endurance_charge /// - MovementSpeedPctPerEnduranceCharge = 8252, - + MovementSpeedPctPerEnduranceCharge = 8256, + /// /// movement_speed_+%_per_power_charge /// - MovementSpeedPctPerPowerCharge = 8253, - + MovementSpeedPctPerPowerCharge = 8257, + /// /// life_regeneration_rate_per_minute_%_per_power_charge /// - LifeRegenerationRatePerMinutePctPerPowerCharge = 8254, - + LifeRegenerationRatePerMinutePctPerPowerCharge = 8258, + /// /// minimum_added_fire_damage_per_endurance_charge /// - MinimumAddedFireDamagePerEnduranceCharge = 8255, - + MinimumAddedFireDamagePerEnduranceCharge = 8259, + /// /// maximum_added_fire_damage_per_endurance_charge /// - MaximumAddedFireDamagePerEnduranceCharge = 8256, - + MaximumAddedFireDamagePerEnduranceCharge = 8260, + /// /// minimum_added_lightning_damage_per_power_charge /// - MinimumAddedLightningDamagePerPowerCharge = 8257, - + MinimumAddedLightningDamagePerPowerCharge = 8261, + /// /// maximum_added_lightning_damage_per_power_charge /// - MaximumAddedLightningDamagePerPowerCharge = 8258, - + MaximumAddedLightningDamagePerPowerCharge = 8262, + /// /// additional_attack_block_%_per_endurance_charge /// - AdditionalAttackBlockPctPerEnduranceCharge = 8259, - + AdditionalAttackBlockPctPerEnduranceCharge = 8263, + /// /// additional_attack_block_%_per_frenzy_charge /// - AdditionalAttackBlockPctPerFrenzyCharge = 8260, - + AdditionalAttackBlockPctPerFrenzyCharge = 8264, + /// /// additional_attack_block_%_per_power_charge /// - AdditionalAttackBlockPctPerPowerCharge = 8261, - + AdditionalAttackBlockPctPerPowerCharge = 8265, + /// /// chance_to_dodge_attacks_%_per_endurance_charge /// - ChanceToDodgeAttacksPctPerEnduranceCharge = 8262, - + ChanceToDodgeAttacksPctPerEnduranceCharge = 8266, + /// /// chance_to_dodge_attacks_%_per_power_charge /// - ChanceToDodgeAttacksPctPerPowerCharge = 8263, - + ChanceToDodgeAttacksPctPerPowerCharge = 8267, + /// /// fire_damage_%_to_add_as_chaos_per_endurance_charge /// - FireDamagePctToAddAsChaosPerEnduranceCharge = 8264, - + FireDamagePctToAddAsChaosPerEnduranceCharge = 8268, + /// /// cold_damage_%_to_add_as_chaos_per_frenzy_charge /// - ColdDamagePctToAddAsChaosPerFrenzyCharge = 8265, - + ColdDamagePctToAddAsChaosPerFrenzyCharge = 8269, + /// /// lightning_damage_%_to_add_as_chaos_per_power_charge /// - LightningDamagePctToAddAsChaosPerPowerCharge = 8266, - + LightningDamagePctToAddAsChaosPerPowerCharge = 8270, + /// /// physical_damage_reduction_rating_+%_per_endurance_charge /// - PhysicalDamageReductionRatingPctPerEnduranceCharge = 8267, - + PhysicalDamageReductionRatingPctPerEnduranceCharge = 8271, + /// /// energy_shield_+%_per_power_charge /// - EnergyShieldPctPerPowerCharge = 8268, - + EnergyShieldPctPerPowerCharge = 8272, + /// /// gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance /// - GainMaximumFrenzyChargesOnFrenzyChargeGainedPctChance = 8269, - + GainMaximumFrenzyChargesOnFrenzyChargeGainedPctChance = 8273, + /// /// attack_and_cast_speed_+%_per_endurance_charge /// - AttackAndCastSpeedPctPerEnduranceCharge = 8270, - + AttackAndCastSpeedPctPerEnduranceCharge = 8274, + /// /// attack_and_cast_speed_+%_per_power_charge /// - AttackAndCastSpeedPctPerPowerCharge = 8271, - + AttackAndCastSpeedPctPerPowerCharge = 8275, + /// /// critical_strike_chance_+%_per_endurance_charge /// - CriticalStrikeChancePctPerEnduranceCharge = 8272, - + CriticalStrikeChancePctPerEnduranceCharge = 8276, + /// /// critical_strike_chance_+%_per_frenzy_charge /// - CriticalStrikeChancePctPerFrenzyCharge = 8273, - + CriticalStrikeChancePctPerFrenzyCharge = 8277, + /// /// physical_damage_reduction_percent_per_frenzy_charge /// - PhysicalDamageReductionPercentPerFrenzyCharge = 8274, - + PhysicalDamageReductionPercentPerFrenzyCharge = 8278, + /// /// physical_damage_reduction_percent_per_power_charge /// - PhysicalDamageReductionPercentPerPowerCharge = 8275, - + PhysicalDamageReductionPercentPerPowerCharge = 8279, + /// /// gain_vaal_pact_while_at_maximum_endurance_charges /// - GainVaalPactWhileAtMaximumEnduranceCharges = 8276, - + GainVaalPactWhileAtMaximumEnduranceCharges = 8280, + /// /// gain_iron_reflexes_while_at_maximum_frenzy_charges /// - GainIronReflexesWhileAtMaximumFrenzyCharges = 8277, - + GainIronReflexesWhileAtMaximumFrenzyCharges = 8281, + /// /// gain_mind_over_matter_while_at_maximum_power_charges /// - GainMindOverMatterWhileAtMaximumPowerCharges = 8278, - + GainMindOverMatterWhileAtMaximumPowerCharges = 8282, + /// /// local_grants_aura_minimum_added_fire_damage_per_red_socket /// - LocalGrantsAuraMinimumAddedFireDamagePerRedSocket = 8279, - + LocalGrantsAuraMinimumAddedFireDamagePerRedSocket = 8283, + /// /// local_grants_aura_maximum_added_fire_damage_per_red_socket /// - LocalGrantsAuraMaximumAddedFireDamagePerRedSocket = 8280, - + LocalGrantsAuraMaximumAddedFireDamagePerRedSocket = 8284, + /// /// local_grants_aura_minimum_added_cold_damage_per_green_socket /// - LocalGrantsAuraMinimumAddedColdDamagePerGreenSocket = 8281, - + LocalGrantsAuraMinimumAddedColdDamagePerGreenSocket = 8285, + /// /// local_grants_aura_maximum_added_cold_damage_per_green_socket /// - LocalGrantsAuraMaximumAddedColdDamagePerGreenSocket = 8282, - + LocalGrantsAuraMaximumAddedColdDamagePerGreenSocket = 8286, + /// /// local_grants_aura_minimum_added_lightning_damage_per_blue_socket /// - LocalGrantsAuraMinimumAddedLightningDamagePerBlueSocket = 8283, - + LocalGrantsAuraMinimumAddedLightningDamagePerBlueSocket = 8287, + /// /// local_grants_aura_maximum_added_lightning_damage_per_blue_socket /// - LocalGrantsAuraMaximumAddedLightningDamagePerBlueSocket = 8284, - + LocalGrantsAuraMaximumAddedLightningDamagePerBlueSocket = 8288, + /// /// local_grants_aura_minimum_added_chaos_damage_per_white_socket /// - LocalGrantsAuraMinimumAddedChaosDamagePerWhiteSocket = 8285, - + LocalGrantsAuraMinimumAddedChaosDamagePerWhiteSocket = 8289, + /// /// local_grants_aura_maximum_added_chaos_damage_per_white_socket /// - LocalGrantsAuraMaximumAddedChaosDamagePerWhiteSocket = 8286, - + LocalGrantsAuraMaximumAddedChaosDamagePerWhiteSocket = 8290, + /// /// virtual_keystone_mind_over_matter /// - VirtualKeystoneMindOverMatter = 8287, - + VirtualKeystoneMindOverMatter = 8291, + /// /// delve_mod_spell_damage_+%_final /// - DelveModSpellDamagePctFinal = 8288, - + DelveModSpellDamagePctFinal = 8292, + /// /// delve_mod_attack_damage_+%_final /// - DelveModAttackDamagePctFinal = 8289, - + DelveModAttackDamagePctFinal = 8293, + /// /// delve_sulphite_capacity /// - DelveSulphiteCapacity = 8290, - + DelveSulphiteCapacity = 8294, + /// /// delve_flare_capacity /// - DelveFlareCapacity = 8291, - + DelveFlareCapacity = 8295, + /// /// delve_dynamite_capacity /// - DelveDynamiteCapacity = 8292, - + DelveDynamiteCapacity = 8296, + /// /// delve_light_radius_+% /// - DelveLightRadiusPct = 8293, - + DelveLightRadiusPct = 8297, + /// /// delve_flare_radius_+% /// - DelveFlareRadiusPct = 8294, - + DelveFlareRadiusPct = 8298, + /// /// delve_dynamite_radius_+% /// - DelveDynamiteRadiusPct = 8295, - + DelveDynamiteRadiusPct = 8299, + /// /// delve_dynamite_damage_+% /// - DelveDynamiteDamagePct = 8296, - + DelveDynamiteDamagePct = 8300, + /// /// delve_darkness_resistance_% /// - DelveDarknessResistancePct = 8297, - + DelveDarknessResistancePct = 8301, + /// /// delve_flare_duration_+% /// - DelveFlareDurationPct = 8298, - + DelveFlareDurationPct = 8302, + /// /// physical_damage_reduction_rating_per_5_evasion_on_shield /// - PhysicalDamageReductionRatingPer5EvasionOnShield = 8299, - + PhysicalDamageReductionRatingPer5EvasionOnShield = 8303, + /// /// evasion_rating_+_per_5_maximum_energy_shield_on_shield /// - EvasionRatingPer5MaximumEnergyShieldOnShield = 8300, - + EvasionRatingPer5MaximumEnergyShieldOnShield = 8304, + /// /// maximum_energy_shield_+_per_5_armour_on_shield /// - MaximumEnergyShieldPer5ArmourOnShield = 8301, - + MaximumEnergyShieldPer5ArmourOnShield = 8305, + /// /// life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance /// - LifeLeechFromSpellDamagePermyriadIfShieldHas30PctBlockChance = 8302, - + LifeLeechFromSpellDamagePermyriadIfShieldHas30PctBlockChance = 8306, + /// /// local_display_nearby_enemies_all_resistances_% /// - LocalDisplayNearbyEnemiesAllResistancesPct = 8303, - + LocalDisplayNearbyEnemiesAllResistancesPct = 8307, + /// /// support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final /// - SupportPhysChaosProjectileSpellPhysicalProjectileDamagePctFinal = 8304, - + SupportPhysChaosProjectileSpellPhysicalProjectileDamagePctFinal = 8308, + /// /// support_phys_chaos_projectile_physical_damage_over_time_+%_final /// - SupportPhysChaosProjectilePhysicalDamageOverTimePctFinal = 8305, - + SupportPhysChaosProjectilePhysicalDamageOverTimePctFinal = 8309, + /// /// support_phys_chaos_projectile_chaos_damage_over_time_+%_final /// - SupportPhysChaosProjectileChaosDamageOverTimePctFinal = 8306, - + SupportPhysChaosProjectileChaosDamageOverTimePctFinal = 8310, + /// /// combined_spell_physical_damage_pluspercent_final /// - CombinedSpellPhysicalDamagePluspercentFinal = 8307, - + CombinedSpellPhysicalDamagePluspercentFinal = 8311, + /// /// chance_to_double_armour_effect_on_hit_% /// - ChanceToDoubleArmourEffectOnHitPct = 8308, - + ChanceToDoubleArmourEffectOnHitPct = 8312, + /// /// minion_targeting_use_parent_location /// - MinionTargetingUseParentLocation = 8309, - + MinionTargetingUseParentLocation = 8313, + /// /// minion_aggro_range_scaled_by_distance_to_parent_target /// - MinionAggroRangeScaledByDistanceToParentTarget = 8310, - + MinionAggroRangeScaledByDistanceToParentTarget = 8314, + /// /// support_chaos_attacks_damage_+%_final /// - SupportChaosAttacksDamagePctFinal = 8311, - + SupportChaosAttacksDamagePctFinal = 8315, + /// /// intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_% /// - IntimidateOnHitChanceWithAttacksWhileAtMaximumEnduranceChargesPct = 8312, - + IntimidateOnHitChanceWithAttacksWhileAtMaximumEnduranceChargesPct = 8316, + /// /// gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_% /// - GainOnslaughtOnHitChanceWhileAtMaximumFrenzyChargesPct = 8313, - + GainOnslaughtOnHitChanceWhileAtMaximumFrenzyChargesPct = 8317, + /// /// gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_% /// - GainArcaneSurgeOnHitChanceWithSpellsWhileAtMaximumPowerChargesPct = 8314, - + GainArcaneSurgeOnHitChanceWithSpellsWhileAtMaximumPowerChargesPct = 8318, + /// /// number_of_additional_curses_allowed_while_at_maximum_power_charges /// - NumberOfAdditionalCursesAllowedWhileAtMaximumPowerCharges = 8315, - + NumberOfAdditionalCursesAllowedWhileAtMaximumPowerCharges = 8319, + /// /// virtual_number_of_additional_curses_allowed /// - VirtualNumberOfAdditionalCursesAllowed = 8316, - + VirtualNumberOfAdditionalCursesAllowed = 8320, + /// /// on_weapon_global_damage_+% /// - OnWeaponGlobalDamagePct = 8317, - + OnWeaponGlobalDamagePct = 8321, + /// /// anger_reserves_no_mana /// - AngerReservesNoMana = 8318, - + AngerReservesNoMana = 8322, + /// /// clarity_reserves_no_mana /// - ClarityReservesNoMana = 8319, - + ClarityReservesNoMana = 8323, + /// /// determination_reserves_no_mana /// - DeterminationReservesNoMana = 8320, - + DeterminationReservesNoMana = 8324, + /// /// discipline_reserves_no_mana /// - DisciplineReservesNoMana = 8321, - + DisciplineReservesNoMana = 8325, + /// /// grace_reserves_no_mana /// - GraceReservesNoMana = 8322, - + GraceReservesNoMana = 8326, + /// /// haste_reserves_no_mana /// - HasteReservesNoMana = 8323, - + HasteReservesNoMana = 8327, + /// /// hatred_reserves_no_mana /// - HatredReservesNoMana = 8324, - + HatredReservesNoMana = 8328, + /// /// purity_of_elements_reserves_no_mana /// - PurityOfElementsReservesNoMana = 8325, - + PurityOfElementsReservesNoMana = 8329, + /// /// purity_of_fire_reserves_no_mana /// - PurityOfFireReservesNoMana = 8326, - + PurityOfFireReservesNoMana = 8330, + /// /// purity_of_ice_reserves_no_mana /// - PurityOfIceReservesNoMana = 8327, - + PurityOfIceReservesNoMana = 8331, + /// /// purity_of_lightning_reserves_no_mana /// - PurityOfLightningReservesNoMana = 8328, - + PurityOfLightningReservesNoMana = 8332, + /// /// vitality_reserves_no_mana /// - VitalityReservesNoMana = 8329, - + VitalityReservesNoMana = 8333, + /// /// wrath_reserves_no_mana /// - WrathReservesNoMana = 8330, - + WrathReservesNoMana = 8334, + /// /// envy_reserves_no_mana /// - EnvyReservesNoMana = 8331, - + EnvyReservesNoMana = 8335, + /// /// local_display_socketed_gems_supported_by_level_x_chaos_attacks /// - LocalDisplaySocketedGemsSupportedByLevelXChaosAttacks = 8332, - + LocalDisplaySocketedGemsSupportedByLevelXChaosAttacks = 8336, + /// /// have_your_skills_crit_recently /// - HaveYourSkillsCritRecently = 8333, - + HaveYourSkillsCritRecently = 8337, + /// /// track_have_your_skills_crit_recently /// - TrackHaveYourSkillsCritRecently = 8334, - + TrackHaveYourSkillsCritRecently = 8338, + /// /// delve_flare_duration_ms_+ /// - DelveFlareDurationMs = 8335, - + DelveFlareDurationMs = 8339, + /// /// display_map_augmentable_boss /// - DisplayMapAugmentableBoss = 8336, - + DisplayMapAugmentableBoss = 8340, + /// /// virtual_poison_damage_+100%_final_chance /// - VirtualPoisonDamage100PctFinalChance = 8337, - + VirtualPoisonDamage100PctFinalChance = 8341, + /// /// pathfinder_poison_damage_+100%_final_chance_during_flask_effect /// - PathfinderPoisonDamage100PctFinalChanceDuringFlaskEffect = 8338, - + PathfinderPoisonDamage100PctFinalChanceDuringFlaskEffect = 8342, + /// /// chaos_skills_area_of_effect_+% /// - ChaosSkillsAreaOfEffectPct = 8339, - + ChaosSkillsAreaOfEffectPct = 8343, + /// /// minions_chance_to_intimidate_on_hit_% /// - MinionsChanceToIntimidateOnHitPct = 8340, - + MinionsChanceToIntimidateOnHitPct = 8344, + /// /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfYouHitAnEnemyRecently = 8341, - + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfYouHitAnEnemyRecently = 8345, + /// /// herald_of_light_buff_effect_+% /// - HeraldOfLightBuffEffectPct = 8342, - + HeraldOfLightBuffEffectPct = 8346, + /// /// herald_of_light_minion_area_of_effect_+% /// - HeraldOfLightMinionAreaOfEffectPct = 8343, - + HeraldOfLightMinionAreaOfEffectPct = 8347, + /// /// area_of_effect_+%_per_active_herald_of_light_minion /// - AreaOfEffectPctPerActiveHeraldOfLightMinion = 8344, - + AreaOfEffectPctPerActiveHeraldOfLightMinion = 8348, + /// /// herald_of_light_and_dominating_blow_minions_use_holy_slam /// - HeraldOfLightAndDominatingBlowMinionsUseHolySlam = 8345, - + HeraldOfLightAndDominatingBlowMinionsUseHolySlam = 8349, + /// /// herald_of_agony_buff_drop_off_speed_+% /// - HeraldOfAgonyBuffDropOffSpeedPct = 8346, - + HeraldOfAgonyBuffDropOffSpeedPct = 8350, + /// /// damage_+%_final_with_at_least_1_nearby_ally /// - DamagePctFinalWithAtLeast1NearbyAlly = 8347, - + DamagePctFinalWithAtLeast1NearbyAlly = 8351, + /// /// number_of_nearby_allies /// - NumberOfNearbyAllies = 8348, - + NumberOfNearbyAllies = 8352, + /// /// track_number_of_nearby_allies /// - TrackNumberOfNearbyAllies = 8349, - + TrackNumberOfNearbyAllies = 8353, + /// /// override_turn_duration_ms /// - OverrideTurnDurationMs = 8350, - + OverrideTurnDurationMs = 8354, + /// /// minimum_rain_of_spores_movement_speed_+%_final_cap /// - MinimumRainOfSporesMovementSpeedPctFinalCap = 8351, - + MinimumRainOfSporesMovementSpeedPctFinalCap = 8355, + /// /// number_of_active_herald_of_light_minions /// - NumberOfActiveHeraldOfLightMinions = 8352, - + NumberOfActiveHeraldOfLightMinions = 8356, + /// /// uses_holy_slam_skill /// - UsesHolySlamSkill = 8353, - + UsesHolySlamSkill = 8357, + /// /// secondary_minion_duration /// - SecondaryMinionDuration = 8354, - + SecondaryMinionDuration = 8358, + /// /// apply_azurite_debuff_on_hit_ms /// - ApplyAzuriteDebuffOnHitMs = 8355, - + ApplyAzuriteDebuffOnHitMs = 8359, + /// /// delve_monster_life_+%_final /// - DelveMonsterLifePctFinal = 8356, - + DelveMonsterLifePctFinal = 8360, + /// /// delve_monster_damage_+%_final /// - DelveMonsterDamagePctFinal = 8357, - + DelveMonsterDamagePctFinal = 8361, + /// /// additive_modifiers_to_bow_damage_also_apply_to_minions /// - AdditiveModifiersToBowDamageAlsoApplyToMinions = 8358, - + AdditiveModifiersToBowDamageAlsoApplyToMinions = 8362, + /// /// minion_bow_damage_+% /// - MinionBowDamagePct = 8359, - + MinionBowDamagePct = 8363, + /// /// minion_physical_bow_damage_+% /// - MinionPhysicalBowDamagePct = 8360, - + MinionPhysicalBowDamagePct = 8364, + /// /// minion_fire_bow_damage_+% /// - MinionFireBowDamagePct = 8361, - + MinionFireBowDamagePct = 8365, + /// /// minion_cold_bow_damage_+% /// - MinionColdBowDamagePct = 8362, - + MinionColdBowDamagePct = 8366, + /// /// minion_lightning_bow_damage_+% /// - MinionLightningBowDamagePct = 8363, - + MinionLightningBowDamagePct = 8367, + /// /// minion_chaos_bow_damage_+% /// - MinionChaosBowDamagePct = 8364, - + MinionChaosBowDamagePct = 8368, + /// /// minion_elemental_bow_damage_+% /// - MinionElementalBowDamagePct = 8365, - + MinionElementalBowDamagePct = 8369, + /// /// lightning_bow_damage_+% /// - LightningBowDamagePct = 8366, - + LightningBowDamagePct = 8370, + /// /// chaos_bow_damage_+% /// - ChaosBowDamagePct = 8367, - + ChaosBowDamagePct = 8371, + /// /// current_delve_degen_stacks /// - CurrentDelveDegenStacks = 8368, - + CurrentDelveDegenStacks = 8372, + /// /// max_delve_degen_stacks /// - MaxDelveDegenStacks = 8369, - + MaxDelveDegenStacks = 8373, + /// /// spell_block_luck /// - SpellBlockLuck = 8370, - + SpellBlockLuck = 8374, + /// /// base_spell_block_luck /// - BaseSpellBlockLuck = 8371, - + BaseSpellBlockLuck = 8375, + /// /// current_azurite_debuff_stacks /// - CurrentAzuriteDebuffStacks = 8372, - + CurrentAzuriteDebuffStacks = 8376, + /// /// max_azurite_debuff_stacks /// - MaxAzuriteDebuffStacks = 8373, - + MaxAzuriteDebuffStacks = 8377, + /// /// ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final /// - AscendancyPathfinderChaosDamageWithAttackSkillsPctFinal = 8374, - + AscendancyPathfinderChaosDamageWithAttackSkillsPctFinal = 8378, + /// /// monster_ignores_delve_darkness_mechanic /// - MonsterIgnoresDelveDarknessMechanic = 8375, - + MonsterIgnoresDelveDarknessMechanic = 8379, + /// /// skill_withered_duration_ms /// - SkillWitheredDurationMs = 8376, - + SkillWitheredDurationMs = 8380, + /// /// support_withered_base_duration_ms /// - SupportWitheredBaseDurationMs = 8377, - + SupportWitheredBaseDurationMs = 8381, + /// /// withered_on_hit_chance_% /// - WitheredOnHitChancePct = 8378, - + WitheredOnHitChancePct = 8382, + /// /// combined_attack_speed_+% /// - CombinedAttackSpeedPct = 8379, - + CombinedAttackSpeedPct = 8383, + /// /// combined_main_hand_attack_speed_+% /// - CombinedMainHandAttackSpeedPct = 8380, - + CombinedMainHandAttackSpeedPct = 8384, + /// /// combined_off_hand_attack_speed_+% /// - CombinedOffHandAttackSpeedPct = 8381, - + CombinedOffHandAttackSpeedPct = 8385, + /// /// combined_attack_speed_+%_final /// - CombinedAttackSpeedPctFinal = 8382, - + CombinedAttackSpeedPctFinal = 8386, + /// /// distribute_additional_projectiles_over_contact_points /// - DistributeAdditionalProjectilesOverContactPoints = 8383, - + DistributeAdditionalProjectilesOverContactPoints = 8387, + /// /// number_of_blood_meteors_to_create /// - NumberOfBloodMeteorsToCreate = 8384, - + NumberOfBloodMeteorsToCreate = 8388, + /// /// number_of_blood_meteors_to_fire /// - NumberOfBloodMeteorsToFire = 8385, - + NumberOfBloodMeteorsToFire = 8389, + /// /// no_experience_gain /// - NoExperienceGain = 8386, - + NoExperienceGain = 8390, + /// /// delve_darkness_damage_taken_per_minute /// - DelveDarknessDamageTakenPerMinute = 8387, - + DelveDarknessDamageTakenPerMinute = 8391, + /// /// delve_base_darkness_damage_percent_of_maximum_life_taken_per_minute /// - DelveBaseDarknessDamagePercentOfMaximumLifeTakenPerMinute = 8388, - + DelveBaseDarknessDamagePercentOfMaximumLifeTakenPerMinute = 8392, + /// /// delve_base_darkness_damage_percent_of_maximum_energy_shield_taken_per_minute /// - DelveBaseDarknessDamagePercentOfMaximumEnergyShieldTakenPerMinute = 8389, - + DelveBaseDarknessDamagePercentOfMaximumEnergyShieldTakenPerMinute = 8393, + /// /// delve_total_darkness_damage_taken_per_minute /// - DelveTotalDarknessDamageTakenPerMinute = 8390, - + DelveTotalDarknessDamageTakenPerMinute = 8394, + /// /// holy_relic_cooldown_recovery_+% /// - HolyRelicCooldownRecoveryPct = 8391, - + HolyRelicCooldownRecoveryPct = 8395, + /// /// smite_chance_for_lighting_to_strike_extra_target_% /// - SmiteChanceForLightingToStrikeExtraTargetPct = 8392, - + SmiteChanceForLightingToStrikeExtraTargetPct = 8396, + /// /// smite_aura_effect_+% /// - SmiteAuraEffectPct = 8393, - + SmiteAuraEffectPct = 8397, + /// /// holy_path_teleport_range_+% /// - HolyPathTeleportRangePct = 8394, - + HolyPathTeleportRangePct = 8398, + /// /// holy_relic_area_of_effect_+% /// - HolyRelicAreaOfEffectPct = 8395, - + HolyRelicAreaOfEffectPct = 8399, + /// /// holy_relic_damage_+% /// - HolyRelicDamagePct = 8396, - + HolyRelicDamagePct = 8400, + /// /// holy_relic_buff_effect_+% /// - HolyRelicBuffEffectPct = 8397, - + HolyRelicBuffEffectPct = 8401, + /// /// mana_regeneration_rate_per_minute_%_if_enemy_hit_recently /// - ManaRegenerationRatePerMinutePctIfEnemyHitRecently = 8398, - + ManaRegenerationRatePerMinutePctIfEnemyHitRecently = 8402, + /// /// movement_speed_+%_if_enemy_hit_recently /// - MovementSpeedPctIfEnemyHitRecently = 8399, - + MovementSpeedPctIfEnemyHitRecently = 8403, + /// /// attack_and_cast_speed_+%_if_enemy_hit_recently /// - AttackAndCastSpeedPctIfEnemyHitRecently = 8400, - + AttackAndCastSpeedPctIfEnemyHitRecently = 8404, + /// /// cannot_be_shocked_or_ignited_while_moving /// - CannotBeShockedOrIgnitedWhileMoving = 8401, - + CannotBeShockedOrIgnitedWhileMoving = 8405, + /// /// cannot_be_chilled_or_frozen_while_moving /// - CannotBeChilledOrFrozenWhileMoving = 8402, - + CannotBeChilledOrFrozenWhileMoving = 8406, + /// /// chance_to_gain_onslaught_on_flask_use_% /// - ChanceToGainOnslaughtOnFlaskUsePct = 8403, - + ChanceToGainOnslaughtOnFlaskUsePct = 8407, + /// /// add_frenzy_charge_when_hit_% /// - AddFrenzyChargeWhenHitPct = 8404, - + AddFrenzyChargeWhenHitPct = 8408, + /// /// mana_regeneration_rate_per_minute_if_enemy_hit_recently /// - ManaRegenerationRatePerMinuteIfEnemyHitRecently = 8405, - + ManaRegenerationRatePerMinuteIfEnemyHitRecently = 8409, + /// /// curse_on_hit_level_frostbite /// - CurseOnHitLevelFrostbite = 8406, - + CurseOnHitLevelFrostbite = 8410, + /// /// curse_on_hit_level_conductivity /// - CurseOnHitLevelConductivity = 8407, - + CurseOnHitLevelConductivity = 8411, + /// /// gain_spirit_charge_every_x_ms /// - GainSpiritChargeEveryXMs = 8408, - + GainSpiritChargeEveryXMs = 8412, + /// /// lose_spirit_charges_on_savage_hit_taken /// - LoseSpiritChargesOnSavageHitTaken = 8409, - + LoseSpiritChargesOnSavageHitTaken = 8413, + /// /// gain_%_es_when_spirit_charge_expires_or_consumed /// - GainPctEsWhenSpiritChargeExpiresOrConsumed = 8410, - + GainPctEsWhenSpiritChargeExpiresOrConsumed = 8414, + /// /// skill_buff_grants_chance_to_poison_% /// - SkillBuffGrantsChanceToPoisonPct = 8411, - + SkillBuffGrantsChanceToPoisonPct = 8415, + /// /// active_skill_withered_base_duration_ms /// - ActiveSkillWitheredBaseDurationMs = 8412, - + ActiveSkillWitheredBaseDurationMs = 8416, + /// /// caustic_arrow_withered_base_duration_ms /// - CausticArrowWitheredBaseDurationMs = 8413, - + CausticArrowWitheredBaseDurationMs = 8417, + /// /// caustic_arrow_withered_on_hit_% /// - CausticArrowWitheredOnHitPct = 8414, - + CausticArrowWitheredOnHitPct = 8418, + /// /// herald_scorpion_number_of_additional_projectiles /// - HeraldScorpionNumberOfAdditionalProjectiles = 8415, - + HeraldScorpionNumberOfAdditionalProjectiles = 8419, + /// /// virulent_arrow_chance_to_poison_%_per_stage /// - VirulentArrowChanceToPoisonPctPerStage = 8416, - + VirulentArrowChanceToPoisonPctPerStage = 8420, + /// /// virulent_arrow_additional_spores_at_max_stages /// - VirulentArrowAdditionalSporesAtMaxStages = 8417, - + VirulentArrowAdditionalSporesAtMaxStages = 8421, + /// /// smite_damage_+% /// - SmiteDamagePct = 8418, - + SmiteDamagePct = 8422, + /// /// consecrated_path_damage_+% /// - ConsecratedPathDamagePct = 8419, - + ConsecratedPathDamagePct = 8423, + /// /// consecrated_path_area_of_effect_+% /// - ConsecratedPathAreaOfEffectPct = 8420, - + ConsecratedPathAreaOfEffectPct = 8424, + /// /// herald_of_purity_mana_reservation_+% /// - HeraldOfPurityManaReservationPct = 8421, - + HeraldOfPurityManaReservationPct = 8425, + /// /// herald_of_agony_mana_reservation_+% /// - HeraldOfAgonyManaReservationPct = 8422, - + HeraldOfAgonyManaReservationPct = 8426, + /// /// scourge_arrow_damage_+% /// - ScourgeArrowDamagePct = 8423, - + ScourgeArrowDamagePct = 8427, + /// /// toxic_rain_damage_+% /// - ToxicRainDamagePct = 8424, - + ToxicRainDamagePct = 8428, + /// /// toxic_rain_num_of_additional_projectiles /// - ToxicRainNumOfAdditionalProjectiles = 8425, - + ToxicRainNumOfAdditionalProjectiles = 8429, + /// /// toxic_rain_physical_damage_%_to_add_as_chaos /// - ToxicRainPhysicalDamagePctToAddAsChaos = 8426, - + ToxicRainPhysicalDamagePctToAddAsChaos = 8430, + /// /// number_of_support_ghosts_allowed /// - NumberOfSupportGhostsAllowed = 8427, - + NumberOfSupportGhostsAllowed = 8431, + /// /// player_in_breach /// - PlayerInBreach = 8428, - + PlayerInBreach = 8432, + /// /// virtual_spread_poison_to_nearby_enemies_on_kill /// - VirtualSpreadPoisonToNearbyEnemiesOnKill = 8429, - + VirtualSpreadPoisonToNearbyEnemiesOnKill = 8433, + /// /// unique_spread_poison_to_nearby_enemies_during_flask_effect /// - UniqueSpreadPoisonToNearbyEnemiesDuringFlaskEffect = 8430, - + UniqueSpreadPoisonToNearbyEnemiesDuringFlaskEffect = 8434, + /// /// elemental_hit_deals_50%_less_fire_damage /// - ElementalHitDeals50PctLessFireDamage = 8431, - + ElementalHitDeals50PctLessFireDamage = 8435, + /// /// elemental_hit_deals_50%_less_cold_damage /// - ElementalHitDeals50PctLessColdDamage = 8432, - + ElementalHitDeals50PctLessColdDamage = 8436, + /// /// elemental_hit_deals_50%_less_lightning_damage /// - ElementalHitDeals50PctLessLightningDamage = 8433, - + ElementalHitDeals50PctLessLightningDamage = 8437, + /// /// local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex /// - LocalUniqueJewelElementalHit50PctLessFireDamagePer40IntAndDex = 8434, - + LocalUniqueJewelElementalHit50PctLessFireDamagePer40IntAndDex = 8438, + /// /// local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int /// - LocalUniqueJewelElementalHit50PctLessColdDamagePer40StrAndInt = 8435, - + LocalUniqueJewelElementalHit50PctLessColdDamagePer40StrAndInt = 8439, + /// /// local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex /// - LocalUniqueJewelElementalHit50PctLessLightningDamagePer40StrAndDex = 8436, - + LocalUniqueJewelElementalHit50PctLessLightningDamagePer40StrAndDex = 8440, + /// /// active_skill_fire_damage_+%_final_from_skill_specific_stat /// - ActiveSkillFireDamagePctFinalFromSkillSpecificStat = 8437, - + ActiveSkillFireDamagePctFinalFromSkillSpecificStat = 8441, + /// /// active_skill_cold_damage_+%_final_from_skill_specific_stat /// - ActiveSkillColdDamagePctFinalFromSkillSpecificStat = 8438, - + ActiveSkillColdDamagePctFinalFromSkillSpecificStat = 8442, + /// /// active_skill_lightning_damage_+%_final_from_skill_specific_stat /// - ActiveSkillLightningDamagePctFinalFromSkillSpecificStat = 8439, - + ActiveSkillLightningDamagePctFinalFromSkillSpecificStat = 8443, + /// /// spell_block_%_while_on_low_life /// - SpellBlockPctWhileOnLowLife = 8440, - + SpellBlockPctWhileOnLowLife = 8444, + /// /// base_block_chance_%_from_shield /// - BaseBlockChancePctFromShield = 8441, - + BaseBlockChancePctFromShield = 8445, + /// /// skill_deals_50%_less_fire_damage /// - SkillDeals50PctLessFireDamage = 8442, - + SkillDeals50PctLessFireDamage = 8446, + /// /// skill_deals_50%_less_cold_damage /// - SkillDeals50PctLessColdDamage = 8443, - + SkillDeals50PctLessColdDamage = 8447, + /// /// skill_deals_50%_less_lightning_damage /// - SkillDeals50PctLessLightningDamage = 8444, - + SkillDeals50PctLessLightningDamage = 8448, + /// /// melee_variation /// - MeleeVariation = 8445, - + MeleeVariation = 8449, + /// /// map_monsters_penetrate_elemental_resistances_% /// - MapMonstersPenetrateElementalResistancesPct = 8446, - + MapMonstersPenetrateElementalResistancesPct = 8450, + /// /// map_monsters_remove_charges_on_hit_% /// - MapMonstersRemoveChargesOnHitPct = 8447, - + MapMonstersRemoveChargesOnHitPct = 8451, + /// /// boss_maximum_life_+%_final /// - BossMaximumLifePctFinal = 8448, - + BossMaximumLifePctFinal = 8452, + /// /// spell_block_with_bow_% /// - SpellBlockWithBowPct = 8449, - + SpellBlockWithBowPct = 8453, + /// /// gain_1_random_rare_monster_mod_on_kill_ms /// - Gain1RandomRareMonsterModOnKillMs = 8450, - + Gain1RandomRareMonsterModOnKillMs = 8454, + /// /// map_players_gain_1_random_rare_monster_mod_on_kill_ms /// - MapPlayersGain1RandomRareMonsterModOnKillMs = 8451, - + MapPlayersGain1RandomRareMonsterModOnKillMs = 8455, + /// /// map_non_unique_items_drop_normal /// - MapNonUniqueItemsDropNormal = 8452, - + MapNonUniqueItemsDropNormal = 8456, + /// /// skill_socketed_item_inventory_id /// - SkillSocketedItemInventoryId = 8453, - + SkillSocketedItemInventoryId = 8457, + /// /// socketed_triggered_skills_use_weapon_attack_time_for_pvp_scaling /// - SocketedTriggeredSkillsUseWeaponAttackTimeForPvpScaling = 8454, - + SocketedTriggeredSkillsUseWeaponAttackTimeForPvpScaling = 8458, + /// /// from_self_minimum_added_chaos_damage_taken /// - FromSelfMinimumAddedChaosDamageTaken = 8455, - + FromSelfMinimumAddedChaosDamageTaken = 8459, + /// /// from_self_maximum_added_chaos_damage_taken /// - FromSelfMaximumAddedChaosDamageTaken = 8456, - + FromSelfMaximumAddedChaosDamageTaken = 8460, + /// /// frost_bolt_nova_number_of_frost_bolts_to_detonate /// - FrostBoltNovaNumberOfFrostBoltsToDetonate = 8457, - + FrostBoltNovaNumberOfFrostBoltsToDetonate = 8461, + /// /// ice_nova_number_of_frost_bolts_to_cast_on /// - IceNovaNumberOfFrostBoltsToCastOn = 8458, - + IceNovaNumberOfFrostBoltsToCastOn = 8462, + /// /// affected_by_herald_of_agony /// - AffectedByHeraldOfAgony = 8459, - + AffectedByHeraldOfAgony = 8463, + /// /// affected_by_herald_of_purity /// - AffectedByHeraldOfPurity = 8460, - + AffectedByHeraldOfPurity = 8464, + /// /// support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount /// - SupportChillsAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8461, - + SupportChillsAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8465, + /// /// support_chills_also_grant_cold_damage_taken_per_minute_+% /// - SupportChillsAlsoGrantColdDamageTakenPerMinutePct = 8462, - + SupportChillsAlsoGrantColdDamageTakenPerMinutePct = 8466, + /// /// cold_damage_taken_per_minute_+% /// - ColdDamageTakenPerMinutePct = 8463, - + ColdDamageTakenPerMinutePct = 8467, + /// /// map_uses_beast_catcher_rules /// - MapUsesBeastCatcherRules = 8464, - + MapUsesBeastCatcherRules = 8468, + /// /// action_speed_-%_from_chill /// - ActionSpeedPctFromChill = 8465, - + ActionSpeedPctFromChill = 8469, + /// /// map_spawn_betrayals /// - MapSpawnBetrayals = 8466, - + MapSpawnBetrayals = 8470, + /// /// frost_fury_base_fire_interval_ms /// - FrostFuryBaseFireIntervalMs = 8467, - + FrostFuryBaseFireIntervalMs = 8471, + /// /// frost_fury_fire_speed_+%_per_stage /// - FrostFuryFireSpeedPctPerStage = 8468, - + FrostFuryFireSpeedPctPerStage = 8472, + /// /// frost_fury_current_number_of_stages /// - FrostFuryCurrentNumberOfStages = 8469, - + FrostFuryCurrentNumberOfStages = 8473, + /// /// frost_fury_max_number_of_stages /// - FrostFuryMaxNumberOfStages = 8470, - + FrostFuryMaxNumberOfStages = 8474, + /// /// frost_fury_added_duration_per_stage_ms /// - FrostFuryAddedDurationPerStageMs = 8471, - + FrostFuryAddedDurationPerStageMs = 8475, + /// /// impaled_debuff_unmodified_phys_damage_to_deal /// - ImpaledDebuffUnmodifiedPhysDamageToDeal = 8472, - + ImpaledDebuffUnmodifiedPhysDamageToDeal = 8476, + /// /// impaled_debuff_base_duration_ms /// - ImpaledDebuffBaseDurationMs = 8473, - + ImpaledDebuffBaseDurationMs = 8477, + /// /// attacks_impale_on_hit_%_chance /// - AttacksImpaleOnHitPctChance = 8474, - + AttacksImpaleOnHitPctChance = 8478, + /// /// impaled_debuff_number_of_reflected_hits /// - ImpaledDebuffNumberOfReflectedHits = 8475, - + ImpaledDebuffNumberOfReflectedHits = 8479, + /// /// delve_monster_curse_effect_+%_final /// - DelveMonsterCurseEffectPctFinal = 8476, - + DelveMonsterCurseEffectPctFinal = 8480, + /// /// intermediary_maximum_life_for_ailments /// - IntermediaryMaximumLifeForAilments = 8477, - + IntermediaryMaximumLifeForAilments = 8481, + /// /// flicker_thrust_number_of_teleports /// - FlickerThrustNumberOfTeleports = 8478, - + FlickerThrustNumberOfTeleports = 8482, + /// /// local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius /// - LocalUniqueJewelCausticArrowHitDamagePctWith40DexInRadius = 8479, - + LocalUniqueJewelCausticArrowHitDamagePctWith40DexInRadius = 8483, + /// /// caustic_arrow_hit_damage_+% /// - CausticArrowHitDamagePct = 8480, - + CausticArrowHitDamagePct = 8484, + /// /// local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius /// - LocalUniqueJewelCausticArrowDamageOverTimePctWith40DexInRadius = 8481, - + LocalUniqueJewelCausticArrowDamageOverTimePctWith40DexInRadius = 8485, + /// /// caustic_arrow_damage_over_time_+% /// - CausticArrowDamageOverTimePct = 8482, - + CausticArrowDamageOverTimePct = 8486, + /// /// local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius /// - LocalUniqueJewelCausticArrowChanceToPoisonPctVsEnemiesOnCausticGroundWith40DexInRadius = 8483, - + LocalUniqueJewelCausticArrowChanceToPoisonPctVsEnemiesOnCausticGroundWith40DexInRadius = 8487, + /// /// caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground /// - CausticArrowChanceToPoisonPctVsEnemiesOnCausticGround = 8484, - + CausticArrowChanceToPoisonPctVsEnemiesOnCausticGround = 8488, + /// /// chance_to_poison_%_vs_enemies_on_caustic_ground /// - ChanceToPoisonPctVsEnemiesOnCausticGround = 8485, - + ChanceToPoisonPctVsEnemiesOnCausticGround = 8489, + /// /// additional_projectiles_fired_with_distance_offset /// - AdditionalProjectilesFiredWithDistanceOffset = 8486, - + AdditionalProjectilesFiredWithDistanceOffset = 8490, + /// /// projectile_remove_default_spread /// - ProjectileRemoveDefaultSpread = 8487, - + ProjectileRemoveDefaultSpread = 8491, + /// /// base_sigil_repeat_frequency_ms /// - BaseSigilRepeatFrequencyMs = 8488, - + BaseSigilRepeatFrequencyMs = 8492, + /// /// sigil_repeat_frequency_ms /// - SigilRepeatFrequencyMs = 8489, - + SigilRepeatFrequencyMs = 8493, + /// /// additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency /// - AdditiveCastSpeedModifiersApplyToSigilRepeatFrequency = 8490, - + AdditiveCastSpeedModifiersApplyToSigilRepeatFrequency = 8494, + /// /// sigil_repeat_frequency_+% /// - SigilRepeatFrequencyPct = 8491, - + SigilRepeatFrequencyPct = 8495, + /// /// base_total_number_of_sigils_allowed /// - BaseTotalNumberOfSigilsAllowed = 8492, - + BaseTotalNumberOfSigilsAllowed = 8496, + /// /// base_number_of_sigils_allowed_per_target /// - BaseNumberOfSigilsAllowedPerTarget = 8493, - + BaseNumberOfSigilsAllowedPerTarget = 8497, + /// /// conduit_sigil_number_of_beam_targets /// - ConduitSigilNumberOfBeamTargets = 8494, - + ConduitSigilNumberOfBeamTargets = 8498, + /// /// unaffected_by_life_modifiers /// - UnaffectedByLifeModifiers = 8495, - + UnaffectedByLifeModifiers = 8499, + /// /// impale_debuff_effect_+% /// - ImpaleDebuffEffectPct = 8496, - + ImpaleDebuffEffectPct = 8500, + /// /// attack_speed_+%_granted_from_skill /// - AttackSpeedPctGrantedFromSkill = 8497, - + AttackSpeedPctGrantedFromSkill = 8501, + /// /// physical_damage_from_hits_%_taken_as_random_element /// - PhysicalDamageFromHitsPctTakenAsRandomElement = 8498, - + PhysicalDamageFromHitsPctTakenAsRandomElement = 8502, + /// /// local_display_socketed_gems_supported_by_level_x_greater_volley /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterVolley = 8499, - + LocalDisplaySocketedGemsSupportedByLevelXGreaterVolley = 8503, + /// /// support_greater_volley_projectile_damage_+%_final /// - SupportGreaterVolleyProjectileDamagePctFinal = 8500, - + SupportGreaterVolleyProjectileDamagePctFinal = 8504, + /// /// arrows_always_pierce_after_forking /// - ArrowsAlwaysPierceAfterForking = 8501, - + ArrowsAlwaysPierceAfterForking = 8505, + /// /// critical_strike_multiplier_for_arrows_that_pierce_+ /// - CriticalStrikeMultiplierForArrowsThatPierce = 8502, - + CriticalStrikeMultiplierForArrowsThatPierce = 8506, + /// /// physical_damage_+%_while_you_have_resolute_technique /// - PhysicalDamagePctWhileYouHaveResoluteTechnique = 8503, - + PhysicalDamagePctWhileYouHaveResoluteTechnique = 8507, + /// /// chance_to_gain_unholy_might_on_kill_for_10_seconds_% /// - ChanceToGainUnholyMightOnKillFor10SecondsPct = 8504, - + ChanceToGainUnholyMightOnKillFor10SecondsPct = 8508, + /// /// Elemental Damage With Attack Skills +% /// - ElementalDamageWithAttackSkillsPctPerPowerCharge = 8505, - + ElementalDamageWithAttackSkillsPctPerPowerCharge = 8509, + /// /// local_display_nearby_allies_critical_strike_multiplier_+ /// - LocalDisplayNearbyAlliesCriticalStrikeMultiplier = 8506, - + LocalDisplayNearbyAlliesCriticalStrikeMultiplier = 8510, + /// /// local_display_nearby_allies_have_fortify /// - LocalDisplayNearbyAlliesHaveFortify = 8507, - + LocalDisplayNearbyAlliesHaveFortify = 8511, + /// /// base_minimum_endurance_charges /// - BaseMinimumEnduranceCharges = 8508, - + BaseMinimumEnduranceCharges = 8512, + /// /// minimum_endurance_charges /// - MinimumEnduranceCharges = 8509, - + MinimumEnduranceCharges = 8513, + /// /// base_minimum_frenzy_charges /// - BaseMinimumFrenzyCharges = 8510, - + BaseMinimumFrenzyCharges = 8514, + /// /// minimum_frenzy_charges /// - MinimumFrenzyCharges = 8511, - + MinimumFrenzyCharges = 8515, + /// /// base_minimum_power_charges /// - BaseMinimumPowerCharges = 8512, - + BaseMinimumPowerCharges = 8516, + /// /// minimum_power_charges /// - MinimumPowerCharges = 8513, - + MinimumPowerCharges = 8517, + /// /// betrayal_job_index /// - BetrayalJobIndex = 8514, - + BetrayalJobIndex = 8518, + /// /// veiled_mod_type /// - VeiledModType = 8515, - + VeiledModType = 8519, + /// /// has_focus /// - HasFocus = 8516, - + HasFocus = 8520, + /// /// extra_critical_rolls_during_focus /// - ExtraCriticalRollsDuringFocus = 8517, - + ExtraCriticalRollsDuringFocus = 8521, + /// /// virtual_extra_critical_rolls /// - VirtualExtraCriticalRolls = 8518, - + VirtualExtraCriticalRolls = 8522, + /// /// dodge_attacks_chance_%_during_focus /// - DodgeAttacksChancePctDuringFocus = 8519, - + DodgeAttacksChancePctDuringFocus = 8523, + /// /// additional_physical_damage_reduction_%_during_focus /// - AdditionalPhysicalDamageReductionPctDuringFocus = 8520, - + AdditionalPhysicalDamageReductionPctDuringFocus = 8524, + /// /// shock_nearby_enemies_for_x_ms_when_you_focus /// - ShockNearbyEnemiesForXMsWhenYouFocus = 8521, - + ShockNearbyEnemiesForXMsWhenYouFocus = 8525, + /// /// evasion_rating_%_as_life_regeneration_per_minute_during_focus /// - EvasionRatingPctAsLifeRegenerationPerMinuteDuringFocus = 8522, - + EvasionRatingPctAsLifeRegenerationPerMinuteDuringFocus = 8526, + /// /// restore_energy_shield_and_mana_when_you_focus_% /// - RestoreEnergyShieldAndManaWhenYouFocusPct = 8523, - + RestoreEnergyShieldAndManaWhenYouFocusPct = 8527, + /// /// banner_add_stage_on_kill /// - BannerAddStageOnKill = 8524, - + BannerAddStageOnKill = 8528, + /// /// banner_add_stage_on_impale /// - BannerAddStageOnImpale = 8525, - + BannerAddStageOnImpale = 8529, + /// /// banner_area_of_effect_+%_per_stage /// - BannerAreaOfEffectPctPerStage = 8526, - + BannerAreaOfEffectPctPerStage = 8530, + /// /// banner_buff_effect_+%_per_stage /// - BannerBuffEffectPctPerStage = 8527, - + BannerBuffEffectPctPerStage = 8531, + /// /// banner_additional_base_duration_per_stage_ms /// - BannerAdditionalBaseDurationPerStageMs = 8528, - + BannerAdditionalBaseDurationPerStageMs = 8532, + /// /// bloodstained_banner_adrenaline_duration_per_stage_ms /// - BloodstainedBannerAdrenalineDurationPerStageMs = 8529, - + BloodstainedBannerAdrenalineDurationPerStageMs = 8533, + /// /// projectile_random_angle_based_on_distance_to_target_location_% /// - ProjectileRandomAngleBasedOnDistanceToTargetLocationPct = 8530, - + ProjectileRandomAngleBasedOnDistanceToTargetLocationPct = 8534, + /// /// local_attacks_impale_on_hit_%_chance /// - LocalAttacksImpaleOnHitPctChance = 8531, - + LocalAttacksImpaleOnHitPctChance = 8535, + /// /// main_hand_attacks_impale_on_hit_%_chance /// - MainHandAttacksImpaleOnHitPctChance = 8532, - + MainHandAttacksImpaleOnHitPctChance = 8536, + /// /// off_hand_attacks_impale_on_hit_%_chance /// - OffHandAttacksImpaleOnHitPctChance = 8533, - + OffHandAttacksImpaleOnHitPctChance = 8537, + /// /// active_skill_area_of_effect_+%_final_when_cast_on_frostbolt /// - ActiveSkillAreaOfEffectPctFinalWhenCastOnFrostbolt = 8534, - + ActiveSkillAreaOfEffectPctFinalWhenCastOnFrostbolt = 8538, + /// /// ignore_skill_weapon_restrictions /// - IgnoreSkillWeaponRestrictions = 8535, - + IgnoreSkillWeaponRestrictions = 8539, + /// /// puresteel_banner_accuracy_rating_+%_final /// - PuresteelBannerAccuracyRatingPctFinal = 8536, - + PuresteelBannerAccuracyRatingPctFinal = 8540, + /// /// puresteel_banner_fortify_duration_per_stage_ms /// - PuresteelBannerFortifyDurationPerStageMs = 8537, - + PuresteelBannerFortifyDurationPerStageMs = 8541, + /// /// puresteel_banner_fortify_effect_+%_per_stage /// - PuresteelBannerFortifyEffectPctPerStage = 8538, - + PuresteelBannerFortifyEffectPctPerStage = 8542, + /// /// virtual_accuracy_rating_+%_final /// - VirtualAccuracyRatingPctFinal = 8539, - + VirtualAccuracyRatingPctFinal = 8543, + /// /// arctic_breath_maximum_number_of_skulls_allowed /// - ArcticBreathMaximumNumberOfSkullsAllowed = 8540, - + ArcticBreathMaximumNumberOfSkullsAllowed = 8544, + /// /// damage_+%_final_vs_unique_monsters /// - DamagePctFinalVsUniqueMonsters = 8541, - + DamagePctFinalVsUniqueMonsters = 8545, + /// /// skill_is_shield_skill /// - SkillIsShieldSkill = 8542, - + SkillIsShieldSkill = 8546, + /// /// damage_+%_with_shield_skills /// - DamagePctWithShieldSkills = 8543, - + DamagePctWithShieldSkills = 8547, + /// /// attack_and_cast_speed_+%_with_shield_skills /// - AttackAndCastSpeedPctWithShieldSkills = 8544, - + AttackAndCastSpeedPctWithShieldSkills = 8548, + /// /// additional_attack_block_%_if_used_shield_skill_recently /// - AdditionalAttackBlockPctIfUsedShieldSkillRecently = 8545, - + AdditionalAttackBlockPctIfUsedShieldSkillRecently = 8549, + /// /// track_have_used_a_shield_skill_recently /// - TrackHaveUsedAShieldSkillRecently = 8546, - + TrackHaveUsedAShieldSkillRecently = 8550, + /// /// have_used_a_shield_skill_recently /// - HaveUsedAShieldSkillRecently = 8547, - + HaveUsedAShieldSkillRecently = 8551, + /// /// damage_+%_with_shield_skills_per_2%_attack_block /// - DamagePctWithShieldSkillsPer2PctAttackBlock = 8548, - + DamagePctWithShieldSkillsPer2PctAttackBlock = 8552, + /// /// spell_critical_strike_chance_+%_per_raised_spectre /// - SpellCriticalStrikeChancePctPerRaisedSpectre = 8549, - + SpellCriticalStrikeChancePctPerRaisedSpectre = 8553, + /// /// gain_arcane_surge_on_crit_%_chance /// - GainArcaneSurgeOnCritPctChance = 8550, - + GainArcaneSurgeOnCritPctChance = 8554, + /// /// spectres_gain_arcane_surge_when_you_do /// - SpectresGainArcaneSurgeWhenYouDo = 8551, - + SpectresGainArcaneSurgeWhenYouDo = 8555, + /// /// local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect /// - LocalFlaskLifeLeechOnDamageTakenPctPermyriadDuringFlaskEffect = 8552, - + LocalFlaskLifeLeechOnDamageTakenPctPermyriadDuringFlaskEffect = 8556, + /// /// life_leech_on_damage_taken_%_permyriad /// - LifeLeechOnDamageTakenPctPermyriad = 8553, - + LifeLeechOnDamageTakenPctPermyriad = 8557, + /// /// gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster /// - GainShapersPresenceFor10SecondsOnKillingRareOrUniqueMonster = 8554, - + GainShapersPresenceFor10SecondsOnKillingRareOrUniqueMonster = 8558, + /// /// local_flask_life_regeneration_per_minute_%_during_flask_effect /// - LocalFlaskLifeRegenerationPerMinutePctDuringFlaskEffect = 8555, - + LocalFlaskLifeRegenerationPerMinutePctDuringFlaskEffect = 8559, + /// /// local_flask_avoid_stun_chance_%_during_flask_effect /// - LocalFlaskAvoidStunChancePctDuringFlaskEffect = 8556, - + LocalFlaskAvoidStunChancePctDuringFlaskEffect = 8560, + /// /// local_flask_skill_mana_cost_+%_during_flask_effect /// - LocalFlaskSkillManaCostPctDuringFlaskEffect = 8557, - + LocalFlaskSkillManaCostPctDuringFlaskEffect = 8561, + /// /// local_flask_item_found_rarity_+%_during_flask_effect /// - LocalFlaskItemFoundRarityPctDuringFlaskEffect = 8558, - + LocalFlaskItemFoundRarityPctDuringFlaskEffect = 8562, + /// /// local_flask_critical_strike_chance_+%_during_flask_effect /// - LocalFlaskCriticalStrikeChancePctDuringFlaskEffect = 8559, - + LocalFlaskCriticalStrikeChancePctDuringFlaskEffect = 8563, + /// /// energy_shield_recharges_on_skill_use_chance_% /// - EnergyShieldRechargesOnSkillUseChancePct = 8560, - + EnergyShieldRechargesOnSkillUseChancePct = 8564, + /// /// avoid_elemental_damage_chance_%_during_soul_gain_prevention /// - AvoidElementalDamageChancePctDuringSoulGainPrevention = 8561, - + AvoidElementalDamageChancePctDuringSoulGainPrevention = 8565, + /// /// physical_damage_reduction_rating_during_soul_gain_prevention /// - PhysicalDamageReductionRatingDuringSoulGainPrevention = 8562, - + PhysicalDamageReductionRatingDuringSoulGainPrevention = 8566, + /// /// gain_onslaught_during_soul_gain_prevention /// - GainOnslaughtDuringSoulGainPrevention = 8563, - + GainOnslaughtDuringSoulGainPrevention = 8567, + /// /// damage_+%_with_non_vaal_skills_during_soul_gain_prevention /// - DamagePctWithNonVaalSkillsDuringSoulGainPrevention = 8564, - + DamagePctWithNonVaalSkillsDuringSoulGainPrevention = 8568, + /// /// chance_to_deal_double_damage_%_while_focused /// - ChanceToDealDoubleDamagePctWhileFocused = 8565, - + ChanceToDealDoubleDamagePctWhileFocused = 8569, + /// /// attack_and_cast_speed_+%_while_focused /// - AttackAndCastSpeedPctWhileFocused = 8566, - + AttackAndCastSpeedPctWhileFocused = 8570, + /// /// status_ailments_you_inflict_duration_+%_while_focused /// - StatusAilmentsYouInflictDurationPctWhileFocused = 8567, - + StatusAilmentsYouInflictDurationPctWhileFocused = 8571, + /// /// immune_to_status_ailments_while_focused /// - ImmuneToStatusAilmentsWhileFocused = 8568, - + ImmuneToStatusAilmentsWhileFocused = 8572, + /// /// life_leech_from_any_damage_permyriad_while_focused /// - LifeLeechFromAnyDamagePermyriadWhileFocused = 8569, - + LifeLeechFromAnyDamagePermyriadWhileFocused = 8573, + /// /// fortify_effect_+%_while_focused /// - FortifyEffectPctWhileFocused = 8570, - + FortifyEffectPctWhileFocused = 8574, + /// /// trigger_socketed_spells_when_you_focus_% /// - TriggerSocketedSpellsWhenYouFocusPct = 8571, - + TriggerSocketedSpellsWhenYouFocusPct = 8575, + /// /// damage_removed_from_mana_before_life_%_while_focused /// - DamageRemovedFromManaBeforeLifePctWhileFocused = 8572, - + DamageRemovedFromManaBeforeLifePctWhileFocused = 8576, + /// /// minions_recover_%_maximum_life_when_you_focus /// - MinionsRecoverPctMaximumLifeWhenYouFocus = 8573, - + MinionsRecoverPctMaximumLifeWhenYouFocus = 8577, + /// /// gain_vaal_pact_while_focused /// - GainVaalPactWhileFocused = 8574, - + GainVaalPactWhileFocused = 8578, + /// /// skills_cost_no_mana_while_focused /// - SkillsCostNoManaWhileFocused = 8575, - + SkillsCostNoManaWhileFocused = 8579, + /// /// virtual_spell_critical_strike_chance_+% /// - VirtualSpellCriticalStrikeChancePct = 8576, - + VirtualSpellCriticalStrikeChancePct = 8580, + /// /// master_damage_+%_final_vs_unique_monsters /// - MasterDamagePctFinalVsUniqueMonsters = 8577, - + MasterDamagePctFinalVsUniqueMonsters = 8581, + /// /// grant_focus_skill /// - GrantFocusSkill = 8578, - + GrantFocusSkill = 8582, + /// /// local_display_trigger_level_X_offering_every_5_seconds /// - LocalDisplayTriggerLevelXOfferingEvery5Seconds = 8579, - + LocalDisplayTriggerLevelXOfferingEvery5Seconds = 8583, + /// /// local_display_trigger_level_X_feast_of_flesh_every_5_seconds /// - LocalDisplayTriggerLevelXFeastOfFleshEvery5Seconds = 8580, - + LocalDisplayTriggerLevelXFeastOfFleshEvery5Seconds = 8584, + /// /// triggered_by_item_buff /// - TriggeredByItemBuff = 8581, - + TriggeredByItemBuff = 8585, + /// /// number_of_corpses_to_consume /// - NumberOfCorpsesToConsume = 8582, - + NumberOfCorpsesToConsume = 8586, + /// /// feast_of_flesh_gain_X_life_per_corpse_consumed /// - FeastOfFleshGainXLifePerCorpseConsumed = 8583, - + FeastOfFleshGainXLifePerCorpseConsumed = 8587, + /// /// feast_of_flesh_gain_X_mana_per_corpse_consumed /// - FeastOfFleshGainXManaPerCorpseConsumed = 8584, - + FeastOfFleshGainXManaPerCorpseConsumed = 8588, + /// /// feast_of_flesh_gain_X_energy_shield_per_corpse_consumed /// - FeastOfFleshGainXEnergyShieldPerCorpseConsumed = 8585, - + FeastOfFleshGainXEnergyShieldPerCorpseConsumed = 8589, + /// /// map_music_override /// - MapMusicOverride = 8586, - + MapMusicOverride = 8590, + /// /// summon_2_totems /// - Summon2Totems = 8587, - + Summon2Totems = 8591, + /// /// support_additional_totem_damage_+%_final /// - SupportAdditionalTotemDamagePctFinal = 8588, - + SupportAdditionalTotemDamagePctFinal = 8592, + /// /// ignores_totem_cooldown_limit /// - IgnoresTotemCooldownLimit = 8589, - + IgnoresTotemCooldownLimit = 8593, + /// /// number_of_additional_totems_to_summon /// - NumberOfAdditionalTotemsToSummon = 8590, - + NumberOfAdditionalTotemsToSummon = 8594, + /// /// local_socketed_gem_quality_+ /// - LocalSocketedGemQuality = 8591, - + LocalSocketedGemQuality = 8595, + /// /// gain_frenzy_charge_on_critical_strike_% /// - GainFrenzyChargeOnCriticalStrikePct = 8592, - + GainFrenzyChargeOnCriticalStrikePct = 8596, + /// /// elemental_damage_+%_if_have_crit_recently /// - ElementalDamagePctIfHaveCritRecently = 8593, - + ElementalDamagePctIfHaveCritRecently = 8597, + /// /// minimum_added_chaos_damage_if_have_crit_recently /// - MinimumAddedChaosDamageIfHaveCritRecently = 8594, - + MinimumAddedChaosDamageIfHaveCritRecently = 8598, + /// /// maximum_added_chaos_damage_if_have_crit_recently /// - MaximumAddedChaosDamageIfHaveCritRecently = 8595, - + MaximumAddedChaosDamageIfHaveCritRecently = 8599, + /// /// number_of_nearby_rare_monsters /// - NumberOfNearbyRareMonsters = 8596, - + NumberOfNearbyRareMonsters = 8600, + /// /// number_of_nearby_unique_monsters /// - NumberOfNearbyUniqueMonsters = 8597, - + NumberOfNearbyUniqueMonsters = 8601, + /// /// critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby /// - CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby = 8598, - + CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby = 8602, + /// /// attack_speed_+%_if_rare_or_unique_enemy_nearby /// - AttackSpeedPctIfRareOrUniqueEnemyNearby = 8599, - + AttackSpeedPctIfRareOrUniqueEnemyNearby = 8603, + /// /// energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby /// - EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby = 8600, - + EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby = 8604, + /// /// trigger_after_spending_200_mana_%_chance /// - TriggerAfterSpending200ManaPctChance = 8601, - + TriggerAfterSpending200ManaPctChance = 8605, + /// /// display_trigger_arcane_wake_after_spending_200_mana_%_chance /// - DisplayTriggerArcaneWakeAfterSpending200ManaPctChance = 8602, - + DisplayTriggerArcaneWakeAfterSpending200ManaPctChance = 8606, + /// /// apply_taser_debuff_action_speed_-%_on_hit /// - ApplyTaserDebuffActionSpeedPctOnHit = 8603, - + ApplyTaserDebuffActionSpeedPctOnHit = 8607, + /// /// sigil_attached_target_damage_+%_final /// - SigilAttachedTargetDamagePctFinal = 8604, - + SigilAttachedTargetDamagePctFinal = 8608, + /// /// sigil_attached_target_damage_+% /// - SigilAttachedTargetDamagePct = 8605, - + SigilAttachedTargetDamagePct = 8609, + /// /// map_no_magic_items_drop /// - MapNoMagicItemsDrop = 8606, - + MapNoMagicItemsDrop = 8610, + /// /// map_no_rare_items_drop /// - MapNoRareItemsDrop = 8607, - + MapNoRareItemsDrop = 8611, + /// /// map_players_resist_all_% /// - MapPlayersResistAllPct = 8608, - + MapPlayersResistAllPct = 8612, + /// /// map_no_stashes /// - MapNoStashes = 8609, - + MapNoStashes = 8613, + /// /// map_no_vendors /// - MapNoVendors = 8610, - + MapNoVendors = 8614, + /// /// current_removable_endurance_charges /// - CurrentRemovableEnduranceCharges = 8611, - + CurrentRemovableEnduranceCharges = 8615, + /// /// current_removable_frenzy_charges /// - CurrentRemovableFrenzyCharges = 8612, - + CurrentRemovableFrenzyCharges = 8616, + /// /// current_removable_power_charges /// - CurrentRemovablePowerCharges = 8613, - + CurrentRemovablePowerCharges = 8617, + /// /// map_spawn_hideout_subareas /// - MapSpawnHideoutSubareas = 8614, - + MapSpawnHideoutSubareas = 8618, + /// /// support_reduce_enemy_block_and_spell_block_% /// - SupportReduceEnemyBlockAndSpellBlockPct = 8615, - + SupportReduceEnemyBlockAndSpellBlockPct = 8619, + /// /// support_reduce_enemy_dodge_and_spell_dodge_% /// - SupportReduceEnemyDodgeAndSpellDodgePct = 8616, - + SupportReduceEnemyDodgeAndSpellDodgePct = 8620, + /// /// two_handed_reduce_enemy_block_and_spell_block_% /// - TwoHandedReduceEnemyBlockAndSpellBlockPct = 8617, - + TwoHandedReduceEnemyBlockAndSpellBlockPct = 8621, + /// /// support_overpowered_base_duration_ms /// - SupportOverpoweredBaseDurationMs = 8618, - + SupportOverpoweredBaseDurationMs = 8622, + /// /// support_overpowered_duration_ms /// - SupportOverpoweredDurationMs = 8619, - + SupportOverpoweredDurationMs = 8623, + /// /// apply_overpowered_on_enemy_block_reduced_block_and_spell_block_% /// - ApplyOverpoweredOnEnemyBlockReducedBlockAndSpellBlockPct = 8620, - + ApplyOverpoweredOnEnemyBlockReducedBlockAndSpellBlockPct = 8624, + /// /// additional_weapon_base_attack_time_ms /// - AdditionalWeaponBaseAttackTimeMs = 8621, - + AdditionalWeaponBaseAttackTimeMs = 8625, + /// /// local_double_damage_with_attacks /// - LocalDoubleDamageWithAttacks = 8622, - + LocalDoubleDamageWithAttacks = 8626, + /// /// local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire /// - LocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8623, - + LocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8627, + /// /// main_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire /// - MainHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8624, - + MainHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8628, + /// /// off_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire /// - OffHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8625, - + OffHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8629, + /// /// life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item /// - LifeRegenerationRatePerMinuteForEachEquippedUncorruptedItem = 8626, - + LifeRegenerationRatePerMinuteForEachEquippedUncorruptedItem = 8630, + /// /// skill_mana_cost_+_for_each_equipped_corrupted_item /// - SkillManaCostForEachEquippedCorruptedItem = 8627, - + SkillManaCostForEachEquippedCorruptedItem = 8631, + /// /// focus_cooldown_modifier_ms /// - FocusCooldownModifierMs = 8628, - + FocusCooldownModifierMs = 8632, + /// /// chill_nearby_enemies_when_you_focus /// - ChillNearbyEnemiesWhenYouFocus = 8629, - + ChillNearbyEnemiesWhenYouFocus = 8633, + /// /// hit_and_ailment_damage_+%_vs_chilled_enemies /// - HitAndAilmentDamagePctVsChilledEnemies = 8630, - + HitAndAilmentDamagePctVsChilledEnemies = 8634, + /// /// elemental_damage_+%_while_in_area_affected_by_sextant /// - ElementalDamagePctWhileInAreaAffectedBySextant = 8631, - + ElementalDamagePctWhileInAreaAffectedBySextant = 8635, + /// /// elemental_damage_+%_per_sextant_affecting_area /// - ElementalDamagePctPerSextantAffectingArea = 8632, - + ElementalDamagePctPerSextantAffectingArea = 8636, + /// /// local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing /// - LocalUniqueFlaskAdditionalMaximumAllElementalResistancesPctWhileHealing = 8633, - + LocalUniqueFlaskAdditionalMaximumAllElementalResistancesPctWhileHealing = 8637, + /// /// chaos_non_ailment_damage_over_time_multiplier_+ /// - ChaosNonAilmentDamageOverTimeMultiplier = 8634, - + ChaosNonAilmentDamageOverTimeMultiplier = 8638, + /// /// cold_dot_multiplier_+ /// - ColdDotMultiplier = 8635, - + ColdDotMultiplier = 8639, + /// /// shattering_steel_damage_+%_final_scaled_by_projectile_distance /// - ShatteringSteelDamagePctFinalScaledByProjectileDistance = 8636, - + ShatteringSteelDamagePctFinalScaledByProjectileDistance = 8640, + /// /// map_prophecy_plugin_hash /// - MapProphecyPluginHash = 8637, - + MapProphecyPluginHash = 8641, + /// /// map_enable_monster_logging /// - MapEnableMonsterLogging = 8638, - + MapEnableMonsterLogging = 8642, + /// /// display_attack_time_+% /// - DisplayAttackTimePct = 8639, - + DisplayAttackTimePct = 8643, + /// /// main_hand_total_base_weapon_attack_duration_ms /// - MainHandTotalBaseWeaponAttackDurationMs = 8640, - + MainHandTotalBaseWeaponAttackDurationMs = 8644, + /// /// off_hand_total_base_weapon_attack_duration_ms /// - OffHandTotalBaseWeaponAttackDurationMs = 8641, - + OffHandTotalBaseWeaponAttackDurationMs = 8645, + /// /// sigil_damage_+% /// - SigilDamagePct = 8642, - + SigilDamagePct = 8646, + /// /// sigil_critical_strike_chance_+% /// - SigilCriticalStrikeChancePct = 8643, - + SigilCriticalStrikeChancePct = 8647, + /// /// sigil_critical_strike_multiplier_+ /// - SigilCriticalStrikeMultiplier = 8644, - + SigilCriticalStrikeMultiplier = 8648, + /// /// sigil_duration_+% /// - SigilDurationPct = 8645, - + SigilDurationPct = 8649, + /// /// sigil_target_search_range_+% /// - SigilTargetSearchRangePct = 8646, - + SigilTargetSearchRangePct = 8650, + /// /// recall_sigil_target_search_range_+% /// - RecallSigilTargetSearchRangePct = 8647, - + RecallSigilTargetSearchRangePct = 8651, + /// /// attack_speed_+%_per_explicit_map_mod_affecting_area /// - AttackSpeedPctPerExplicitMapModAffectingArea = 8648, - + AttackSpeedPctPerExplicitMapModAffectingArea = 8652, + /// /// physical_damage_+%_per_explicit_map_mod_affecting_area /// - PhysicalDamagePctPerExplicitMapModAffectingArea = 8649, - + PhysicalDamagePctPerExplicitMapModAffectingArea = 8653, + /// /// player_number_of_explicit_map_mods_affecting_area /// - PlayerNumberOfExplicitMapModsAffectingArea = 8650, - + PlayerNumberOfExplicitMapModsAffectingArea = 8654, + /// /// skill_is_brand_skill /// - SkillIsBrandSkill = 8651, - + SkillIsBrandSkill = 8655, + /// /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfHaveBlockedRecently = 8652, - + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfHaveBlockedRecently = 8656, + /// /// track_have_rampaged_recently /// - TrackHaveRampagedRecently = 8653, - + TrackHaveRampagedRecently = 8657, + /// /// have_rampaged_recently /// - HaveRampagedRecently = 8654, - + HaveRampagedRecently = 8658, + /// /// virtual_number_of_vaal_souls_to_gain_on_kill /// - VirtualNumberOfVaalSoulsToGainOnKill = 8655, - + VirtualNumberOfVaalSoulsToGainOnKill = 8659, + /// /// number_of_vaal_souls_to_gain_on_kill /// - NumberOfVaalSoulsToGainOnKill = 8656, - + NumberOfVaalSoulsToGainOnKill = 8660, + /// /// gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently /// - GainAnAdditionalVaalSoulOnKillIfHaveRampagedRecently = 8657, - + GainAnAdditionalVaalSoulOnKillIfHaveRampagedRecently = 8661, + /// /// bleed_on_crit_%_with_attacks /// - BleedOnCritPctWithAttacks = 8658, - + BleedOnCritPctWithAttacks = 8662, + /// /// maim_on_crit_%_with_attacks /// - MaimOnCritPctWithAttacks = 8659, - + MaimOnCritPctWithAttacks = 8663, + /// /// enemies_you_bleed_grant_flask_charges_+% /// - EnemiesYouBleedGrantFlaskChargesPct = 8660, - + EnemiesYouBleedGrantFlaskChargesPct = 8664, + /// /// projectile_distance_variance /// - ProjectileDistanceVariance = 8661, - + ProjectileDistanceVariance = 8665, + /// /// current_number_of_active_conduit_sigils /// - CurrentNumberOfActiveConduitSigils = 8662, - + CurrentNumberOfActiveConduitSigils = 8666, + /// /// current_number_of_inactive_conduit_sigils /// - CurrentNumberOfInactiveConduitSigils = 8663, - + CurrentNumberOfInactiveConduitSigils = 8667, + /// /// current_number_of_active_cataclysm_sigils /// - CurrentNumberOfActiveCataclysmSigils = 8664, - + CurrentNumberOfActiveCataclysmSigils = 8668, + /// /// current_number_of_inactive_cataclysm_sigils /// - CurrentNumberOfInactiveCataclysmSigils = 8665, - + CurrentNumberOfInactiveCataclysmSigils = 8669, + /// /// ground_tar_on_block_base_area_of_effect_radius /// - GroundTarOnBlockBaseAreaOfEffectRadius = 8666, - + GroundTarOnBlockBaseAreaOfEffectRadius = 8670, + /// /// ground_tar_on_block_duration_ms /// - GroundTarOnBlockDurationMs = 8667, - + GroundTarOnBlockDurationMs = 8671, + /// /// sigil_recall_cooldown_speed_+% /// - SigilRecallCooldownSpeedPct = 8668, - + SigilRecallCooldownSpeedPct = 8672, + /// /// current_total_number_of_sigils /// - CurrentTotalNumberOfSigils = 8669, - + CurrentTotalNumberOfSigils = 8673, + /// /// number_of_totems_to_summon /// - NumberOfTotemsToSummon = 8670, - + NumberOfTotemsToSummon = 8674, + /// /// temporal_chains_mana_reservation_+% /// - TemporalChainsManaReservationPct = 8671, - + TemporalChainsManaReservationPct = 8675, + /// /// buff_time_passed_+% /// - BuffTimePassedPct = 8672, - + BuffTimePassedPct = 8676, + /// /// virtual_projectiles_fork /// - VirtualProjectilesFork = 8673, - + VirtualProjectilesFork = 8677, + /// /// projectiles_from_spells_fork /// - ProjectilesFromSpellsFork = 8674, - + ProjectilesFromSpellsFork = 8678, + /// /// virtual_projectiles_cannot_fork /// - VirtualProjectilesCannotFork = 8675, - + VirtualProjectilesCannotFork = 8679, + /// /// projectiles_from_spells_cannot_fork /// - ProjectilesFromSpellsCannotFork = 8676, - + ProjectilesFromSpellsCannotFork = 8680, + /// /// virtual_number_of_chains_for_projectiles /// - VirtualNumberOfChainsForProjectiles = 8677, - + VirtualNumberOfChainsForProjectiles = 8681, + /// /// number_of_additional_chains_for_spell_projectiles /// - NumberOfAdditionalChainsForSpellProjectiles = 8678, - + NumberOfAdditionalChainsForSpellProjectiles = 8682, + /// /// virtual_projectiles_cannot_chain /// - VirtualProjectilesCannotChain = 8679, - + VirtualProjectilesCannotChain = 8683, + /// /// projectiles_from_spells_cannot_chain /// - ProjectilesFromSpellsCannotChain = 8680, - + ProjectilesFromSpellsCannotChain = 8684, + /// /// local_left_ring_slot_projectiles_from_spells_cannot_chain /// - LocalLeftRingSlotProjectilesFromSpellsCannotChain = 8681, - + LocalLeftRingSlotProjectilesFromSpellsCannotChain = 8685, + /// /// local_right_ring_slot_projectiles_from_spells_cannot_fork /// - LocalRightRingSlotProjectilesFromSpellsCannotFork = 8682, - + LocalRightRingSlotProjectilesFromSpellsCannotFork = 8686, + /// /// local_left_ring_slot_projectiles_from_spells_fork /// - LocalLeftRingSlotProjectilesFromSpellsFork = 8683, - + LocalLeftRingSlotProjectilesFromSpellsFork = 8687, + /// /// local_right_ring_slot_number_of_additional_chains_for_spell_projectiles /// - LocalRightRingSlotNumberOfAdditionalChainsForSpellProjectiles = 8684, - + LocalRightRingSlotNumberOfAdditionalChainsForSpellProjectiles = 8688, + /// /// virtual_projectiles_cannot_pierce /// - VirtualProjectilesCannotPierce = 8685, - + VirtualProjectilesCannotPierce = 8689, + /// /// projectiles_from_spells_cannot_pierce /// - ProjectilesFromSpellsCannotPierce = 8686, - + ProjectilesFromSpellsCannotPierce = 8690, + /// /// summoned_spider_grants_attack_speed_+% /// - SummonedSpiderGrantsAttackSpeedPct = 8687, - + SummonedSpiderGrantsAttackSpeedPct = 8691, + /// /// summoned_spider_grants_poison_damage_+% /// - SummonedSpiderGrantsPoisonDamagePct = 8688, - + SummonedSpiderGrantsPoisonDamagePct = 8692, + /// /// skill_triggered_when_you_focus_chance_% /// - SkillTriggeredWhenYouFocusChancePct = 8689, - + SkillTriggeredWhenYouFocusChancePct = 8693, + /// /// volley_additional_projectiles_fire_parallel_x_dist /// - VolleyAdditionalProjectilesFireParallelXDist = 8690, - + VolleyAdditionalProjectilesFireParallelXDist = 8694, + /// /// greater_volley_additional_projectiles_fire_parallel_x_dist /// - GreaterVolleyAdditionalProjectilesFireParallelXDist = 8691, - + GreaterVolleyAdditionalProjectilesFireParallelXDist = 8695, + /// /// local_flask_enemies_ignited_during_flask_effect_damage_taken_+% /// - LocalFlaskEnemiesIgnitedDuringFlaskEffectDamageTakenPct = 8692, - + LocalFlaskEnemiesIgnitedDuringFlaskEffectDamageTakenPct = 8696, + /// /// local_flask_gain_X_charges_on_consuming_ignited_corpse /// - LocalFlaskGainXChargesOnConsumingIgnitedCorpse = 8693, - + LocalFlaskGainXChargesOnConsumingIgnitedCorpse = 8697, + /// /// local_flask_recover_%_maximum_life_on_kill_during_flask_effect /// - LocalFlaskRecoverPctMaximumLifeOnKillDuringFlaskEffect = 8694, - + LocalFlaskRecoverPctMaximumLifeOnKillDuringFlaskEffect = 8698, + /// /// local_flask_recover_%_maximum_mana_on_kill_during_flask_effect /// - LocalFlaskRecoverPctMaximumManaOnKillDuringFlaskEffect = 8695, - + LocalFlaskRecoverPctMaximumManaOnKillDuringFlaskEffect = 8699, + /// /// local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect /// - LocalFlaskRecoverPctMaximumEnergyShieldOnKillDuringFlaskEffect = 8696, - + LocalFlaskRecoverPctMaximumEnergyShieldOnKillDuringFlaskEffect = 8700, + /// /// ignited_enemies_damage_taken_+% /// - IgnitedEnemiesDamageTakenPct = 8697, - + IgnitedEnemiesDamageTakenPct = 8701, + /// /// betrayal_siege_cannon_beam_damage_+%_final /// - BetrayalSiegeCannonBeamDamagePctFinal = 8698, - + BetrayalSiegeCannonBeamDamagePctFinal = 8702, + /// /// trigger_socketed_spell_on_skill_use_% /// - TriggerSocketedSpellOnSkillUsePct = 8699, - + TriggerSocketedSpellOnSkillUsePct = 8703, + /// /// main_hand_trigger_socketed_spell_on_skill_use_% /// - MainHandTriggerSocketedSpellOnSkillUsePct = 8700, - + MainHandTriggerSocketedSpellOnSkillUsePct = 8704, + /// /// off_hand_trigger_socketed_spell_on_skill_use_% /// - OffHandTriggerSocketedSpellOnSkillUsePct = 8701, - + OffHandTriggerSocketedSpellOnSkillUsePct = 8705, + /// /// local_item_quality_+ /// - LocalItemQuality = 8702, - + LocalItemQuality = 8706, + /// /// local_display_trigger_level_1_blood_rage_on_kill_chance_% /// - LocalDisplayTriggerLevel1BloodRageOnKillChancePct = 8703, - + LocalDisplayTriggerLevel1BloodRageOnKillChancePct = 8707, + /// /// gain_arcane_surge_on_kill_chance_% /// - GainArcaneSurgeOnKillChancePct = 8704, - + GainArcaneSurgeOnKillChancePct = 8708, + /// /// fire_and_chaos_damage_resistance_% /// - FireAndChaosDamageResistancePct = 8705, - + FireAndChaosDamageResistancePct = 8709, + /// /// cold_and_chaos_damage_resistance_% /// - ColdAndChaosDamageResistancePct = 8706, - + ColdAndChaosDamageResistancePct = 8710, + /// /// lightning_and_chaos_damage_resistance_% /// - LightningAndChaosDamageResistancePct = 8707, - + LightningAndChaosDamageResistancePct = 8711, + /// /// utility_flask_fire_damage_taken_+%_final /// - UtilityFlaskFireDamageTakenPctFinal = 8708, - + UtilityFlaskFireDamageTakenPctFinal = 8712, + /// /// utility_flask_cold_damage_taken_+%_final /// - UtilityFlaskColdDamageTakenPctFinal = 8709, - + UtilityFlaskColdDamageTakenPctFinal = 8713, + /// /// utility_flask_lightning_damage_taken_+%_final /// - UtilityFlaskLightningDamageTakenPctFinal = 8710, - + UtilityFlaskLightningDamageTakenPctFinal = 8714, + /// /// local_life_leech_from_any_damage_permyriad /// - LocalLifeLeechFromAnyDamagePermyriad = 8711, - + LocalLifeLeechFromAnyDamagePermyriad = 8715, + /// /// main_hand_local_life_leech_from_any_damage_permyriad /// - MainHandLocalLifeLeechFromAnyDamagePermyriad = 8712, - + MainHandLocalLifeLeechFromAnyDamagePermyriad = 8716, + /// /// off_hand_local_life_leech_from_any_damage_permyriad /// - OffHandLocalLifeLeechFromAnyDamagePermyriad = 8713, - + OffHandLocalLifeLeechFromAnyDamagePermyriad = 8717, + /// /// local_mana_leech_from_any_damage_permyriad /// - LocalManaLeechFromAnyDamagePermyriad = 8714, - + LocalManaLeechFromAnyDamagePermyriad = 8718, + /// /// main_hand_local_mana_leech_from_any_damage_permyriad /// - MainHandLocalManaLeechFromAnyDamagePermyriad = 8715, - + MainHandLocalManaLeechFromAnyDamagePermyriad = 8719, + /// /// off_hand_local_mana_leech_from_any_damage_permyriad /// - OffHandLocalManaLeechFromAnyDamagePermyriad = 8716, - + OffHandLocalManaLeechFromAnyDamagePermyriad = 8720, + /// /// spell_damage_+%_if_have_crit_in_past_8_seconds /// - SpellDamagePctIfHaveCritInPast8Seconds = 8717, - + SpellDamagePctIfHaveCritInPast8Seconds = 8721, + /// /// life_regeneration_rate_per_minute_%_while_using_flask /// - LifeRegenerationRatePerMinutePctWhileUsingFlask = 8718, - + LifeRegenerationRatePerMinutePctWhileUsingFlask = 8722, + /// /// physical_damage_+%_vs_ignited_enemies /// - PhysicalDamagePctVsIgnitedEnemies = 8719, - + PhysicalDamagePctVsIgnitedEnemies = 8723, + /// /// fire_damage_+%_vs_bleeding_enemies /// - FireDamagePctVsBleedingEnemies = 8720, - + FireDamagePctVsBleedingEnemies = 8724, + /// /// shattering_steel_fortify_on_hit_close_range /// - ShatteringSteelFortifyOnHitCloseRange = 8721, - + ShatteringSteelFortifyOnHitCloseRange = 8725, + /// /// fortify_on_hit_close_range /// - FortifyOnHitCloseRange = 8722, - + FortifyOnHitCloseRange = 8726, + /// /// is_scorched /// - IsScorched = 8723, - + IsScorched = 8727, + /// /// is_frostburned /// - IsFrostburned = 8724, - + IsFrostburned = 8728, + /// /// is_sapped /// - IsSapped = 8725, - + IsSapped = 8729, + /// /// chance_to_scorch_% /// - ChanceToScorchPct = 8726, - + ChanceToScorchPct = 8730, + /// /// chance_to_inflict_frostburn_% /// - ChanceToInflictFrostburnPct = 8727, - + ChanceToInflictFrostburnPct = 8731, + /// /// chance_to_inflict_sapped_% /// - ChanceToInflictSappedPct = 8728, - + ChanceToInflictSappedPct = 8732, + /// /// never_freeze_or_chill /// - NeverFreezeOrChill = 8729, - + NeverFreezeOrChill = 8733, + /// /// virtual_never_freeze /// - VirtualNeverFreeze = 8730, - + VirtualNeverFreeze = 8734, + /// /// virtual_never_chill /// - VirtualNeverChill = 8731, - + VirtualNeverChill = 8735, + /// /// sapped_damage_+%_final /// - SappedDamagePctFinal = 8732, - + SappedDamagePctFinal = 8736, + /// /// ground_consecration_art_variation /// - GroundConsecrationArtVariation = 8733, - + GroundConsecrationArtVariation = 8737, + /// /// additional_chain_chance_% /// - AdditionalChainChancePct = 8734, - + AdditionalChainChancePct = 8738, + /// /// storm_brand_additional_chain_chance_% /// - StormBrandAdditionalChainChancePct = 8735, - + StormBrandAdditionalChainChancePct = 8739, + /// /// sigil_attached_target_fire_penetration_% /// - SigilAttachedTargetFirePenetrationPct = 8736, - + SigilAttachedTargetFirePenetrationPct = 8740, + /// /// sigil_attached_target_lightning_penetration_% /// - SigilAttachedTargetLightningPenetrationPct = 8737, - + SigilAttachedTargetLightningPenetrationPct = 8741, + /// /// armageddon_brand_attached_target_fire_penetration_% /// - ArmageddonBrandAttachedTargetFirePenetrationPct = 8738, - + ArmageddonBrandAttachedTargetFirePenetrationPct = 8742, + /// /// storm_brand_attached_target_lightning_penetration_% /// - StormBrandAttachedTargetLightningPenetrationPct = 8739, - + StormBrandAttachedTargetLightningPenetrationPct = 8743, + /// /// active_skill_minion_physical_damage_+%_final /// - ActiveSkillMinionPhysicalDamagePctFinal = 8740, - + ActiveSkillMinionPhysicalDamagePctFinal = 8744, + /// /// hit_damage_+%_while_chilled /// - HitDamagePctWhileChilled = 8741, - + HitDamagePctWhileChilled = 8745, + /// /// damage_over_time_+%_while_hindered /// - DamageOverTimePctWhileHindered = 8742, - + DamageOverTimePctWhileHindered = 8746, + /// /// minimum_added_physical_damage_per_impaled_on_enemy /// - MinimumAddedPhysicalDamagePerImpaledOnEnemy = 8743, - + MinimumAddedPhysicalDamagePerImpaledOnEnemy = 8747, + /// /// maximum_added_physical_damage_per_impaled_on_enemy /// - MaximumAddedPhysicalDamagePerImpaledOnEnemy = 8744, - + MaximumAddedPhysicalDamagePerImpaledOnEnemy = 8748, + /// /// sigil_attached_target_damage_taken_+% /// - SigilAttachedTargetDamageTakenPct = 8745, - + SigilAttachedTargetDamageTakenPct = 8749, + /// /// every_1_second_nearby_enemies_withered_for_X_ms /// - Every1SecondNearbyEnemiesWitheredForXMs = 8746, - + Every1SecondNearbyEnemiesWitheredForXMs = 8750, + /// /// current_impaled_stacks /// - CurrentImpaledStacks = 8747, - + CurrentImpaledStacks = 8751, + /// /// every_4_seconds_freeze_chilled_non_unique_enemies_for_X_ms /// - Every4SecondsFreezeChilledNonUniqueEnemiesForXMs = 8748, - + Every4SecondsFreezeChilledNonUniqueEnemiesForXMs = 8752, + /// /// every_4_seconds_33%_chance_freeze_chilled_unique_enemies_for_X_ms /// - Every4Seconds33PctChanceFreezeChilledUniqueEnemiesForXMs = 8749, - + Every4Seconds33PctChanceFreezeChilledUniqueEnemiesForXMs = 8753, + /// /// banner_skills_reserve_no_mana /// - BannerSkillsReserveNoMana = 8750, - + BannerSkillsReserveNoMana = 8754, + /// /// you_and_nearby_allies_armour_+_if_have_impaled_recently /// - YouAndNearbyAlliesArmourIfHaveImpaledRecently = 8751, - + YouAndNearbyAlliesArmourIfHaveImpaledRecently = 8755, + /// /// frost_fury_damage_+% /// - FrostFuryDamagePct = 8752, - + FrostFuryDamagePct = 8756, + /// /// storm_brand_damage_+% /// - StormBrandDamagePct = 8753, - + StormBrandDamagePct = 8757, + /// /// armageddon_brand_damage_+% /// - ArmageddonBrandDamagePct = 8754, - + ArmageddonBrandDamagePct = 8758, + /// /// armageddon_brand_repeat_frequency_+% /// - ArmageddonBrandRepeatFrequencyPct = 8755, - + ArmageddonBrandRepeatFrequencyPct = 8759, + /// /// shattering_steel_damage_+% /// - ShatteringSteelDamagePct = 8756, - + ShatteringSteelDamagePct = 8760, + /// /// shattering_steel_number_of_additional_projectiles /// - ShatteringSteelNumberOfAdditionalProjectiles = 8757, - + ShatteringSteelNumberOfAdditionalProjectiles = 8761, + /// /// lancing_steel_damage_+% /// - LancingSteelDamagePct = 8758, - + LancingSteelDamagePct = 8762, + /// /// frost_bolt_nova_cooldown_speed_+% /// - FrostBoltNovaCooldownSpeedPct = 8759, - + FrostBoltNovaCooldownSpeedPct = 8763, + /// /// ice_spear_number_of_additional_projectiles /// - IceSpearNumberOfAdditionalProjectiles = 8760, - + IceSpearNumberOfAdditionalProjectiles = 8764, + /// /// virtual_cannot_gain_souls /// - VirtualCannotGainSouls = 8761, - + VirtualCannotGainSouls = 8765, + /// /// has_soul_gain_prevention /// - HasSoulGainPrevention = 8762, - + HasSoulGainPrevention = 8766, + /// /// rare_or_unique_monster_dropped_item_rarity_+% /// - RareOrUniqueMonsterDroppedItemRarityPct = 8763, - + RareOrUniqueMonsterDroppedItemRarityPct = 8767, + /// /// critical_strike_multiplier_+_if_enemy_shattered_recently /// - CriticalStrikeMultiplierIfEnemyShatteredRecently = 8764, - + CriticalStrikeMultiplierIfEnemyShatteredRecently = 8768, + /// /// virtual_chill_minimum_slow_% /// - VirtualChillMinimumSlowPct = 8765, - + VirtualChillMinimumSlowPct = 8769, + /// /// chill_minimum_slow_%_from_skill /// - ChillMinimumSlowPctFromSkill = 8766, - + ChillMinimumSlowPctFromSkill = 8770, + /// /// ice_nova_chill_minimum_slow_% /// - IceNovaChillMinimumSlowPct = 8767, - + IceNovaChillMinimumSlowPct = 8771, + /// /// physical_damage_+%_final_for_herald_minion /// - PhysicalDamagePctFinalForHeraldMinion = 8768, - + PhysicalDamagePctFinalForHeraldMinion = 8772, + /// /// on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage /// - OnPlantingBannerYouAndNearbyAlliesRecoverPermyriadMaximumLifePerStage = 8769, - + OnPlantingBannerYouAndNearbyAlliesRecoverPermyriadMaximumLifePerStage = 8773, + /// /// on_casting_banner_recover_%_of_planted_banner_stages /// - OnCastingBannerRecoverPctOfPlantedBannerStages = 8770, - + OnCastingBannerRecoverPctOfPlantedBannerStages = 8774, + /// /// display_map_mission_id /// - DisplayMapMissionId = 8771, - + DisplayMapMissionId = 8775, + /// /// distance_before_form_change_+% /// - DistanceBeforeFormChangePct = 8772, - + DistanceBeforeFormChangePct = 8776, + /// /// ice_spear_distance_before_form_change_+% /// - IceSpearDistanceBeforeFormChangePct = 8773, - + IceSpearDistanceBeforeFormChangePct = 8777, + /// /// fixed_skill_effect_duration /// - FixedSkillEffectDuration = 8774, - + FixedSkillEffectDuration = 8778, + /// /// support_chilling_areas_also_grant_cold_damage_taken_per_minute_+% /// - SupportChillingAreasAlsoGrantColdDamageTakenPerMinutePct = 8775, - + SupportChillingAreasAlsoGrantColdDamageTakenPerMinutePct = 8779, + /// /// support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount /// - SupportChillingAreasAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8776, - + SupportChillingAreasAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8780, + /// /// cold_damage_taken_+%_equal_to_chill_slow_amount /// - ColdDamageTakenPctEqualToChillSlowAmount = 8777, - + ColdDamageTakenPctEqualToChillSlowAmount = 8781, + /// /// display_skill_fixed_duration_buff /// - DisplaySkillFixedDurationBuff = 8778, - + DisplaySkillFixedDurationBuff = 8782, + /// /// attack_damage_+%_per_explicit_map_mod_affecting_area /// - AttackDamagePctPerExplicitMapModAffectingArea = 8779, - + AttackDamagePctPerExplicitMapModAffectingArea = 8783, + /// /// virtual_immune_to_poison /// - VirtualImmuneToPoison = 8780, - + VirtualImmuneToPoison = 8784, + /// /// local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance /// - LocalDisplayTriggerLevel18SummonSpectralWolfOnKill10PctChance = 8781, - + LocalDisplayTriggerLevel18SummonSpectralWolfOnKill10PctChance = 8785, + /// /// dread_banner_aura_effect_+% /// - DreadBannerAuraEffectPct = 8782, - + DreadBannerAuraEffectPct = 8786, + /// /// war_banner_aura_effect_+% /// - WarBannerAuraEffectPct = 8783, - + WarBannerAuraEffectPct = 8787, + /// /// map_owner_sulphite_gained_+% /// - MapOwnerSulphiteGainedPct = 8784, - + MapOwnerSulphiteGainedPct = 8788, + /// /// map_shaper_rare_chance_+% /// - MapShaperRareChancePct = 8785, - + MapShaperRareChancePct = 8789, + /// /// map_elder_rare_chance_+% /// - MapElderRareChancePct = 8786, - + MapElderRareChancePct = 8790, + /// /// map_additional_red_beasts /// - MapAdditionalRedBeasts = 8787, - + MapAdditionalRedBeasts = 8791, + /// /// focus_cooldown_speed_+% /// - FocusCooldownSpeedPct = 8788, - + FocusCooldownSpeedPct = 8792, + /// /// map_betrayal_safehouse_data /// - MapBetrayalSafehouseData = 8789, - + MapBetrayalSafehouseData = 8793, + /// /// lancing_steel_primary_proj_pierce_num /// - LancingSteelPrimaryProjPierceNum = 8790, - + LancingSteelPrimaryProjPierceNum = 8794, + /// /// primary_projectile_display_targets_to_pierce /// - PrimaryProjectileDisplayTargetsToPierce = 8791, - + PrimaryProjectileDisplayTargetsToPierce = 8795, + /// /// primary_projectile_base_targets_to_pierce_+ /// - PrimaryProjectileBaseTargetsToPierce = 8792, - + PrimaryProjectileBaseTargetsToPierce = 8796, + /// /// lancing_steel_impale_chance_% /// - LancingSteelImpaleChancePct = 8793, - + LancingSteelImpaleChancePct = 8797, + /// /// primary_projectile_impale_chance_% /// - PrimaryProjectileImpaleChancePct = 8794, - + PrimaryProjectileImpaleChancePct = 8798, + /// /// decelerating_projectile_speed_variation_+% /// - DeceleratingProjectileSpeedVariationPct = 8795, - + DeceleratingProjectileSpeedVariationPct = 8799, + /// /// map_atlas_information /// - MapAtlasInformation = 8796, - + MapAtlasInformation = 8800, + /// /// is_capturable_monster /// - IsCapturableMonster = 8797, - + IsCapturableMonster = 8801, + /// /// npc_master_damage_+%_final_vs_capturable_monsters /// - NpcMasterDamagePctFinalVsCapturableMonsters = 8798, - + NpcMasterDamagePctFinalVsCapturableMonsters = 8802, + /// /// npc_master_damage_+%_final /// - NpcMasterDamagePctFinal = 8799, - + NpcMasterDamagePctFinal = 8803, + /// /// can_be_culled /// - CanBeCulled = 8800, - + CanBeCulled = 8804, + /// /// map_map_item_drop_chance_+% /// - MapMapItemDropChancePct = 8801, - + MapMapItemDropChancePct = 8805, + /// /// map_unique_item_drop_chance_+% /// - MapUniqueItemDropChancePct = 8802, - + MapUniqueItemDropChancePct = 8806, + /// /// map_divination_card_drop_chance_+% /// - MapDivinationCardDropChancePct = 8803, - + MapDivinationCardDropChancePct = 8807, + /// /// sigil_recall_extend_base_skill_effect_duration /// - SigilRecallExtendBaseSkillEffectDuration = 8804, - + SigilRecallExtendBaseSkillEffectDuration = 8808, + /// /// sigil_recall_extend_base_secondary_skill_effect_duration /// - SigilRecallExtendBaseSecondarySkillEffectDuration = 8805, - + SigilRecallExtendBaseSecondarySkillEffectDuration = 8809, + /// /// map_num_terrain_failures /// - MapNumTerrainFailures = 8806, - + MapNumTerrainFailures = 8810, + /// /// base_delve_darkness_damage_taken_per_minute /// - BaseDelveDarknessDamageTakenPerMinute = 8807, - + BaseDelveDarknessDamageTakenPerMinute = 8811, + /// /// map_delve_flat_degeneration_per_minute /// - MapDelveFlatDegenerationPerMinute = 8808, - + MapDelveFlatDegenerationPerMinute = 8812, + /// /// arctic_breath_chilling_area_movement_velocity_+% /// - ArcticBreathChillingAreaMovementVelocityPct = 8809, - + ArcticBreathChillingAreaMovementVelocityPct = 8813, + /// /// chilling_area_movement_velocity_+% /// - ChillingAreaMovementVelocityPct = 8810, - + ChillingAreaMovementVelocityPct = 8814, + /// /// created_slipstream_action_speed_+% /// - CreatedSlipstreamActionSpeedPct = 8811, - + CreatedSlipstreamActionSpeedPct = 8815, + /// /// frost_fury_additional_max_number_of_stages /// - FrostFuryAdditionalMaxNumberOfStages = 8812, - + FrostFuryAdditionalMaxNumberOfStages = 8816, + /// /// frost_fury_area_of_effect_+%_per_stage /// - FrostFuryAreaOfEffectPctPerStage = 8813, - + FrostFuryAreaOfEffectPctPerStage = 8817, + /// /// area_of_effect_+%_per_frost_fury_stage /// - AreaOfEffectPctPerFrostFuryStage = 8814, - + AreaOfEffectPctPerFrostFuryStage = 8818, + /// /// local_chaos_penetration_% /// - LocalChaosPenetrationPct = 8815, - + LocalChaosPenetrationPct = 8819, + /// /// main_hand_chaos_penetration_% /// - MainHandChaosPenetrationPct = 8816, - + MainHandChaosPenetrationPct = 8820, + /// /// off_hand_chaos_penetration_% /// - OffHandChaosPenetrationPct = 8817, - + OffHandChaosPenetrationPct = 8821, + /// /// monster_gets_item_stats /// - MonsterGetsItemStats = 8818, - + MonsterGetsItemStats = 8822, + /// /// map_einhar_intro_mission /// - MapEinharIntroMission = 8819, - + MapEinharIntroMission = 8823, + /// /// hierophant_passive_damage_+%_final_per_totem /// - HierophantPassiveDamagePctFinalPerTotem = 8820, - + HierophantPassiveDamagePctFinalPerTotem = 8824, + /// /// avoid_scorch_% /// - AvoidScorchPct = 8821, - + AvoidScorchPct = 8825, + /// /// base_avoid_scorch_% /// - BaseAvoidScorchPct = 8822, - + BaseAvoidScorchPct = 8826, + /// /// immune_to_scorch /// - ImmuneToScorch = 8823, - + ImmuneToScorch = 8827, + /// /// cannot_be_scorched /// - CannotBeScorched = 8824, - + CannotBeScorched = 8828, + /// /// avoid_frostburn_% /// - AvoidFrostburnPct = 8825, - + AvoidFrostburnPct = 8829, + /// /// base_avoid_frostburn_% /// - BaseAvoidFrostburnPct = 8826, - + BaseAvoidFrostburnPct = 8830, + /// /// immune_to_frostburn /// - ImmuneToFrostburn = 8827, - + ImmuneToFrostburn = 8831, + /// /// cannot_be_frostburned /// - CannotBeFrostburned = 8828, - + CannotBeFrostburned = 8832, + /// /// avoid_sap_% /// - AvoidSapPct = 8829, - + AvoidSapPct = 8833, + /// /// base_avoid_sap_% /// - BaseAvoidSapPct = 8830, - + BaseAvoidSapPct = 8834, + /// /// immune_to_sap /// - ImmuneToSap = 8831, - + ImmuneToSap = 8835, + /// /// cannot_be_sapped /// - CannotBeSapped = 8832, - + CannotBeSapped = 8836, + /// /// virtual_scorch_duration_+% /// - VirtualScorchDurationPct = 8833, - + VirtualScorchDurationPct = 8837, + /// /// virtual_scorch_effect_+% /// - VirtualScorchEffectPct = 8834, - + VirtualScorchEffectPct = 8838, + /// /// virtual_frostburn_duration_+% /// - VirtualFrostburnDurationPct = 8835, - + VirtualFrostburnDurationPct = 8839, + /// /// virtual_frostburn_effect_+% /// - VirtualFrostburnEffectPct = 8836, - + VirtualFrostburnEffectPct = 8840, + /// /// virtual_sap_duration_+% /// - VirtualSapDurationPct = 8837, - + VirtualSapDurationPct = 8841, + /// /// virtual_sap_effect_+% /// - VirtualSapEffectPct = 8838, - + VirtualSapEffectPct = 8842, + /// /// map_atlas_mission /// - MapAtlasMission = 8839, - + MapAtlasMission = 8843, + /// /// force_reflected_damage_flag /// - ForceReflectedDamageFlag = 8840, - + ForceReflectedDamageFlag = 8844, + /// /// virtual_damage_+%_vs_abyssal_monsters /// - VirtualDamagePctVsAbyssalMonsters = 8841, - + VirtualDamagePctVsAbyssalMonsters = 8845, + /// /// attack_physical_damage_%_to_add_as_cold /// - AttackPhysicalDamagePctToAddAsCold = 8842, - + AttackPhysicalDamagePctToAddAsCold = 8846, + /// /// virtual_physical_damage_can_scorch /// - VirtualPhysicalDamageCanScorch = 8843, - + VirtualPhysicalDamageCanScorch = 8847, + /// /// virtual_cold_damage_can_scorch /// - VirtualColdDamageCanScorch = 8844, - + VirtualColdDamageCanScorch = 8848, + /// /// virtual_lightning_damage_can_scorch /// - VirtualLightningDamageCanScorch = 8845, - + VirtualLightningDamageCanScorch = 8849, + /// /// virtual_chaos_damage_can_scorch /// - VirtualChaosDamageCanScorch = 8846, - + VirtualChaosDamageCanScorch = 8850, + /// /// virtual_physical_damage_can_inflict_brittle /// - VirtualPhysicalDamageCanInflictBrittle = 8847, - + VirtualPhysicalDamageCanInflictBrittle = 8851, + /// /// virtual_fire_damage_can_inflict_brittle /// - VirtualFireDamageCanInflictBrittle = 8848, - + VirtualFireDamageCanInflictBrittle = 8852, + /// /// virtual_lightning_damage_can_inflict_brittle /// - VirtualLightningDamageCanInflictBrittle = 8849, - + VirtualLightningDamageCanInflictBrittle = 8853, + /// /// virtual_chaos_damage_can_inflict_brittle /// - VirtualChaosDamageCanInflictBrittle = 8850, - + VirtualChaosDamageCanInflictBrittle = 8854, + /// /// virtual_physical_damage_can_sap /// - VirtualPhysicalDamageCanSap = 8851, - + VirtualPhysicalDamageCanSap = 8855, + /// /// virtual_fire_damage_can_sap /// - VirtualFireDamageCanSap = 8852, - + VirtualFireDamageCanSap = 8856, + /// /// virtual_cold_damage_can_sap /// - VirtualColdDamageCanSap = 8853, - + VirtualColdDamageCanSap = 8857, + /// /// virtual_chaos_damage_can_sap /// - VirtualChaosDamageCanSap = 8854, - + VirtualChaosDamageCanSap = 8858, + /// /// virtual_main_hand_accuracy_rating_+% /// - VirtualMainHandAccuracyRatingPct = 8855, - + VirtualMainHandAccuracyRatingPct = 8859, + /// /// virtual_off_hand_accuracy_rating_+% /// - VirtualOffHandAccuracyRatingPct = 8856, - + VirtualOffHandAccuracyRatingPct = 8860, + /// /// non_ghost_minion_duration_+% /// - NonGhostMinionDurationPct = 8857, - + NonGhostMinionDurationPct = 8861, + /// /// keystone_runebinder /// - KeystoneRunebinder = 8858, - + KeystoneRunebinder = 8862, + /// /// brands_per_target_limit /// - BrandsPerTargetLimit = 8859, - + BrandsPerTargetLimit = 8863, + /// /// play_debeons_dirge_sounds /// - PlayDebeonsDirgeSounds = 8860, - + PlayDebeonsDirgeSounds = 8864, + /// /// virtual_total_main_hand_impale_on_hit_%_chance /// - VirtualTotalMainHandImpaleOnHitPctChance = 8861, - + VirtualTotalMainHandImpaleOnHitPctChance = 8865, + /// /// virtual_total_off_hand_impale_on_hit_%_chance /// - VirtualTotalOffHandImpaleOnHitPctChance = 8862, - + VirtualTotalOffHandImpaleOnHitPctChance = 8866, + /// /// mirage_archer_art_variation /// - MirageArcherArtVariation = 8863, - + MirageArcherArtVariation = 8867, + /// /// spell_rapid_fire_count /// - SpellRapidFireCount = 8864, - + SpellRapidFireCount = 8868, + /// /// map_synthesis_league /// - MapSynthesisLeague = 8865, - + MapSynthesisLeague = 8869, + /// /// mana_regeneration_rate_per_minute_while_on_consecrated_ground /// - ManaRegenerationRatePerMinuteWhileOnConsecratedGround = 8866, - + ManaRegenerationRatePerMinuteWhileOnConsecratedGround = 8870, + /// /// energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground /// - EnergyShieldRegenerationRatePerMinuteWhileOnConsecratedGround = 8867, - + EnergyShieldRegenerationRatePerMinuteWhileOnConsecratedGround = 8871, + /// /// consecrated_ground_additional_physical_damage_reduction_% /// - ConsecratedGroundAdditionalPhysicalDamageReductionPct = 8868, - + ConsecratedGroundAdditionalPhysicalDamageReductionPct = 8872, + /// /// consecrated_ground_immune_to_status_ailments /// - ConsecratedGroundImmuneToStatusAilments = 8869, - + ConsecratedGroundImmuneToStatusAilments = 8873, + /// /// consecrated_ground_enemy_damage_taken_+% /// - ConsecratedGroundEnemyDamageTakenPct = 8870, - + ConsecratedGroundEnemyDamageTakenPct = 8874, + /// /// consecrated_ground_while_stationary_radius /// - ConsecratedGroundWhileStationaryRadius = 8871, - + ConsecratedGroundWhileStationaryRadius = 8875, + /// /// consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds /// - ConsecratedGroundRadiusOnHitEnemyMagicRareUniqueEvery3Seconds = 8872, - + ConsecratedGroundRadiusOnHitEnemyMagicRareUniqueEvery3Seconds = 8876, + /// /// consecrated_ground_on_hit_cooldown /// - ConsecratedGroundOnHitCooldown = 8873, - + ConsecratedGroundOnHitCooldown = 8877, + /// /// chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds /// - ChanceToDealDoubleDamageFor3SecondsOnSpellCastEvery9Seconds = 8874, - + ChanceToDealDoubleDamageFor3SecondsOnSpellCastEvery9Seconds = 8878, + /// /// always_deal_double_damage /// - AlwaysDealDoubleDamage = 8875, - + AlwaysDealDoubleDamage = 8879, + /// /// double_damage_on_spell_cast_cooldown /// - DoubleDamageOnSpellCastCooldown = 8876, - + DoubleDamageOnSpellCastCooldown = 8880, + /// /// attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds /// - AttackAndCastSpeedPctFor3SecondsOnAttackEvery9Seconds = 8877, - + AttackAndCastSpeedPctFor3SecondsOnAttackEvery9Seconds = 8881, + /// /// attack_and_cast_speed_on_attack_cooldown /// - AttackAndCastSpeedOnAttackCooldown = 8878, - + AttackAndCastSpeedOnAttackCooldown = 8882, + /// /// your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area /// - YourConsecratedGroundEffectLingersForMsAfterLeavingTheArea = 8879, - + YourConsecratedGroundEffectLingersForMsAfterLeavingTheArea = 8883, + /// /// spell_repeat_count_target_search_range /// - SpellRepeatCountTargetSearchRange = 8880, - + SpellRepeatCountTargetSearchRange = 8884, + /// /// arc_initial_distance /// - ArcInitialDistance = 8881, - + ArcInitialDistance = 8885, + /// /// arc_chain_distance /// - ArcChainDistance = 8882, - + ArcChainDistance = 8886, + /// /// virtual_maximum_energy_shield_leech_rate_permyriad_per_minute /// - VirtualMaximumEnergyShieldLeechRatePermyriadPerMinute = 8883, - + VirtualMaximumEnergyShieldLeechRatePermyriadPerMinute = 8887, + /// /// maximum_energy_shield_leech_rate_%_per_minute /// - MaximumEnergyShieldLeechRatePctPerMinute = 8884, - + MaximumEnergyShieldLeechRatePctPerMinute = 8888, + /// /// base_energy_shield_leech_from_elemental_damage_permyriad /// - BaseEnergyShieldLeechFromElementalDamagePermyriad = 8885, - + BaseEnergyShieldLeechFromElementalDamagePermyriad = 8889, + /// /// virtual_energy_shield_leech_from_cold_damage_permyriad /// - VirtualEnergyShieldLeechFromColdDamagePermyriad = 8886, - + VirtualEnergyShieldLeechFromColdDamagePermyriad = 8890, + /// /// base_energy_shield_leech_from_cold_damage_permyriad /// - BaseEnergyShieldLeechFromColdDamagePermyriad = 8887, - + BaseEnergyShieldLeechFromColdDamagePermyriad = 8891, + /// /// virtual_energy_shield_leech_from_lightning_damage_permyriad /// - VirtualEnergyShieldLeechFromLightningDamagePermyriad = 8888, - + VirtualEnergyShieldLeechFromLightningDamagePermyriad = 8892, + /// /// base_energy_shield_leech_from_lightning_damage_permyriad /// - BaseEnergyShieldLeechFromLightningDamagePermyriad = 8889, - + BaseEnergyShieldLeechFromLightningDamagePermyriad = 8893, + /// /// virtual_energy_shield_leech_from_fire_damage_permyriad /// - VirtualEnergyShieldLeechFromFireDamagePermyriad = 8890, - + VirtualEnergyShieldLeechFromFireDamagePermyriad = 8894, + /// /// base_energy_shield_leech_from_fire_damage_permyriad /// - BaseEnergyShieldLeechFromFireDamagePermyriad = 8891, - + BaseEnergyShieldLeechFromFireDamagePermyriad = 8895, + /// /// virtual_energy_shield_leech_from_spell_damage_permyriad /// - VirtualEnergyShieldLeechFromSpellDamagePermyriad = 8892, - + VirtualEnergyShieldLeechFromSpellDamagePermyriad = 8896, + /// /// base_energy_shield_leech_from_spell_damage_permyriad /// - BaseEnergyShieldLeechFromSpellDamagePermyriad = 8893, - + BaseEnergyShieldLeechFromSpellDamagePermyriad = 8897, + /// /// Cannot be Energy Shield-Leeched /// - CannotHaveEnergyShieldLeechedFrom = 8894, - + CannotHaveEnergyShieldLeechedFrom = 8898, + /// /// cannot_leech_energy_shield /// - CannotLeechEnergyShield = 8895, - + CannotLeechEnergyShield = 8899, + /// /// resist_energy_shield_leech_% /// - ResistEnergyShieldLeechPct = 8896, - + ResistEnergyShieldLeechPct = 8900, + /// /// base_energy_shield_leech_from_physical_damage_permyriad /// - BaseEnergyShieldLeechFromPhysicalDamagePermyriad = 8897, - + BaseEnergyShieldLeechFromPhysicalDamagePermyriad = 8901, + /// /// base_energy_shield_leech_from_chaos_damage_permyriad /// - BaseEnergyShieldLeechFromChaosDamagePermyriad = 8898, - + BaseEnergyShieldLeechFromChaosDamagePermyriad = 8902, + /// /// energy_shield_leech_on_any_damage_when_hit_permyriad /// - EnergyShieldLeechOnAnyDamageWhenHitPermyriad = 8899, - + EnergyShieldLeechOnAnyDamageWhenHitPermyriad = 8903, + /// /// virtual_energy_shield_leech_speed_+% /// - VirtualEnergyShieldLeechSpeedPct = 8900, - + VirtualEnergyShieldLeechSpeedPct = 8904, + /// /// Energy Shield Leech speed increase /// - EnergyShieldLeechSpeedPct = 8901, - + EnergyShieldLeechSpeedPct = 8905, + /// /// map_monsters_energy_shield_leech_resistance_% /// - MapMonstersEnergyShieldLeechResistancePct = 8902, - + MapMonstersEnergyShieldLeechResistancePct = 8906, + /// /// virtual_damage_+%_while_dead /// - VirtualDamagePctWhileDead = 8903, - + VirtualDamagePctWhileDead = 8907, + /// /// virtual_cast_on_death_damage_+%_final_while_dead /// - VirtualCastOnDeathDamagePctFinalWhileDead = 8904, - + VirtualCastOnDeathDamagePctFinalWhileDead = 8908, + /// /// virtual_area_of_effect_+%_while_dead /// - VirtualAreaOfEffectPctWhileDead = 8905, - + VirtualAreaOfEffectPctWhileDead = 8909, + /// /// dark_ritual_damage_+%_final_per_curse_applied /// - DarkRitualDamagePctFinalPerCurseApplied = 8906, - + DarkRitualDamagePctFinalPerCurseApplied = 8910, + /// /// apply_linked_curses_with_dark_ritual /// - ApplyLinkedCursesWithDarkRitual = 8907, - + ApplyLinkedCursesWithDarkRitual = 8911, + /// /// support_storm_barrier_damage_+%_final /// - SupportStormBarrierDamagePctFinal = 8908, - + SupportStormBarrierDamagePctFinal = 8912, + /// /// support_storm_barrier_fire_damage_taken_when_hit_+%_final /// - SupportStormBarrierFireDamageTakenWhenHitPctFinal = 8909, - + SupportStormBarrierFireDamageTakenWhenHitPctFinal = 8913, + /// /// support_storm_barrier_cold_damage_taken_when_hit_+%_final /// - SupportStormBarrierColdDamageTakenWhenHitPctFinal = 8910, - + SupportStormBarrierColdDamageTakenWhenHitPctFinal = 8914, + /// /// support_storm_barrier_chaos_damage_taken_when_hit_+%_final /// - SupportStormBarrierChaosDamageTakenWhenHitPctFinal = 8911, - + SupportStormBarrierChaosDamageTakenWhenHitPctFinal = 8915, + /// /// support_storm_barrier_skill_type_damage_taken_when_hit_+%_final /// - SupportStormBarrierSkillTypeDamageTakenWhenHitPctFinal = 8912, - + SupportStormBarrierSkillTypeDamageTakenWhenHitPctFinal = 8916, + /// /// support_storm_barrier_damage_buff_time_threshold_ms /// - SupportStormBarrierDamageBuffTimeThresholdMs = 8913, - + SupportStormBarrierDamageBuffTimeThresholdMs = 8917, + /// /// support_storm_barrier_damage_buff_base_duration_ms /// - SupportStormBarrierDamageBuffBaseDurationMs = 8914, - + SupportStormBarrierDamageBuffBaseDurationMs = 8918, + /// /// support_storm_barrier_damage_buff_duration_ms /// - SupportStormBarrierDamageBuffDurationMs = 8915, - + SupportStormBarrierDamageBuffDurationMs = 8919, + /// /// support_storm_barrier_skill_type_damage_+%_final /// - SupportStormBarrierSkillTypeDamagePctFinal = 8916, - + SupportStormBarrierSkillTypeDamagePctFinal = 8920, + /// /// support_storm_barrier_fire_damage_+%_final /// - SupportStormBarrierFireDamagePctFinal = 8917, - + SupportStormBarrierFireDamagePctFinal = 8921, + /// /// support_storm_barrier_cold_damage_+%_final /// - SupportStormBarrierColdDamagePctFinal = 8918, - + SupportStormBarrierColdDamagePctFinal = 8922, + /// /// support_storm_barrier_lightning_damage_+%_final /// - SupportStormBarrierLightningDamagePctFinal = 8919, - + SupportStormBarrierLightningDamagePctFinal = 8923, + /// /// support_storm_barrier_chaos_damage_+%_final /// - SupportStormBarrierChaosDamagePctFinal = 8920, - + SupportStormBarrierChaosDamagePctFinal = 8924, + /// /// sanctify_wave_damage_+%_final /// - SanctifyWaveDamagePctFinal = 8921, - + SanctifyWaveDamagePctFinal = 8925, + /// /// additional_physical_damage_reduction_%_while_channelling /// - AdditionalPhysicalDamageReductionPctWhileChannelling = 8922, - + AdditionalPhysicalDamageReductionPctWhileChannelling = 8926, + /// /// attack_and_cast_speed_+%_with_channelling_skills /// - AttackAndCastSpeedPctWithChannellingSkills = 8923, - + AttackAndCastSpeedPctWithChannellingSkills = 8927, + /// /// avoid_stun_%_while_channelling /// - AvoidStunPctWhileChannelling = 8924, - + AvoidStunPctWhileChannelling = 8928, + /// /// skill_mana_cost_+_with_channelling_skills /// - SkillManaCostWithChannellingSkills = 8925, - + SkillManaCostWithChannellingSkills = 8929, + /// /// local_display_trigger_socketed_curses_on_casting_curse_%_chance /// - LocalDisplayTriggerSocketedCursesOnCastingCursePctChance = 8926, - + LocalDisplayTriggerSocketedCursesOnCastingCursePctChance = 8930, + /// /// energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy /// - EnergyShieldLeechFromSpellDamagePermyriadPerCurseOnEnemy = 8927, - + EnergyShieldLeechFromSpellDamagePermyriadPerCurseOnEnemy = 8931, + /// /// damage_+%_on_full_energy_shield /// - DamagePctOnFullEnergyShield = 8928, - + DamagePctOnFullEnergyShield = 8932, + /// /// attack_and_cast_speed_+%_while_leeching_energy_shield /// - AttackAndCastSpeedPctWhileLeechingEnergyShield = 8929, - + AttackAndCastSpeedPctWhileLeechingEnergyShield = 8933, + /// /// support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final /// - SupportEnergyShieldLeechDamagePctWhileLeechingEnergyShieldFinal = 8930, - + SupportEnergyShieldLeechDamagePctWhileLeechingEnergyShieldFinal = 8934, + /// /// Energy Shield Leech from any Damage /// - EnergyShieldLeechFromAnyDamagePermyriad = 8931, - + EnergyShieldLeechFromAnyDamagePermyriad = 8935, + /// /// support_energy_shield_leech_damage_+%_on_full_energy_shield_final /// - SupportEnergyShieldLeechDamagePctOnFullEnergyShieldFinal = 8932, - + SupportEnergyShieldLeechDamagePctOnFullEnergyShieldFinal = 8936, + /// /// virtual_energy_shield_leech_from_physical_damage_permyriad /// - VirtualEnergyShieldLeechFromPhysicalDamagePermyriad = 8933, - + VirtualEnergyShieldLeechFromPhysicalDamagePermyriad = 8937, + /// /// virtual_energy_shield_leech_from_chaos_damage_permyriad /// - VirtualEnergyShieldLeechFromChaosDamagePermyriad = 8934, - + VirtualEnergyShieldLeechFromChaosDamagePermyriad = 8938, + /// /// mortar_projectile_scale_animation_speed_instead_of_projectile_speed /// - MortarProjectileScaleAnimationSpeedInsteadOfProjectileSpeed = 8935, - + MortarProjectileScaleAnimationSpeedInsteadOfProjectileSpeed = 8939, + /// /// create_consecrated_ground_on_kill_% /// - CreateConsecratedGroundOnKillPct = 8936, - + CreateConsecratedGroundOnKillPct = 8940, + /// /// affected_by_spell_damage_aura /// - AffectedBySpellDamageAura = 8937, - + AffectedBySpellDamageAura = 8941, + /// /// spell_damage_aura_spell_damage_+%_final /// - SpellDamageAuraSpellDamagePctFinal = 8938, - + SpellDamageAuraSpellDamagePctFinal = 8942, + /// /// hatred_aura_cold_damage_+%_final /// - HatredAuraColdDamagePctFinal = 8939, - + HatredAuraColdDamagePctFinal = 8943, + /// /// storm_burst_new_damage_+%_final_per_remaining_teleport_zap /// - StormBurstNewDamagePctFinalPerRemainingTeleportZap = 8940, - + StormBurstNewDamagePctFinalPerRemainingTeleportZap = 8944, + /// /// divine_tempest_base_number_of_nearby_enemies_to_zap /// - DivineTempestBaseNumberOfNearbyEnemiesToZap = 8941, - + DivineTempestBaseNumberOfNearbyEnemiesToZap = 8945, + /// /// divine_tempest_hit_damage_+%_final_per_stage /// - DivineTempestHitDamagePctFinalPerStage = 8942, - + DivineTempestHitDamagePctFinalPerStage = 8946, + /// /// divine_tempest_current_number_of_stages /// - DivineTempestCurrentNumberOfStages = 8943, - + DivineTempestCurrentNumberOfStages = 8947, + /// /// delirium_aura_damage_over_time_+%_final /// - DeliriumAuraDamageOverTimePctFinal = 8944, - + DeliriumAuraDamageOverTimePctFinal = 8948, + /// /// affected_by_delirium /// - AffectedByDelirium = 8945, - + AffectedByDelirium = 8949, + /// /// support_rapid_fire_repeat_count /// - SupportRapidFireRepeatCount = 8946, - + SupportRapidFireRepeatCount = 8950, + /// /// is_rogue_exile /// - IsRogueExile = 8947, - + IsRogueExile = 8951, + /// /// cast_speed_for_elemental_skills_+% /// - CastSpeedForElementalSkillsPct = 8948, - + CastSpeedForElementalSkillsPct = 8952, + /// /// fire_spell_physical_damage_%_to_convert_to_fire /// - FireSpellPhysicalDamagePctToConvertToFire = 8949, - + FireSpellPhysicalDamagePctToConvertToFire = 8953, + /// /// lightning_spell_physical_damage_%_to_convert_to_lightning /// - LightningSpellPhysicalDamagePctToConvertToLightning = 8950, - + LightningSpellPhysicalDamagePctToConvertToLightning = 8954, + /// /// cold_spell_physical_damage_%_to_convert_to_cold /// - ColdSpellPhysicalDamagePctToConvertToCold = 8951, - + ColdSpellPhysicalDamagePctToConvertToCold = 8955, + /// /// spell_physical_damage_%_to_convert_to_fire /// - SpellPhysicalDamagePctToConvertToFire = 8952, - + SpellPhysicalDamagePctToConvertToFire = 8956, + /// /// energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad /// - EnergyShieldLeechIfHitIsAtLeast25PctFireDamagePermyriad = 8953, - + EnergyShieldLeechIfHitIsAtLeast25PctFireDamagePermyriad = 8957, + /// /// divine_tempest_stage_on_hitting_normal_magic_%_chance /// - DivineTempestStageOnHittingNormalMagicPctChance = 8954, - + DivineTempestStageOnHittingNormalMagicPctChance = 8958, + /// /// divine_tempest_stage_on_hitting_rare_unique /// - DivineTempestStageOnHittingRareUnique = 8955, - + DivineTempestStageOnHittingRareUnique = 8959, + /// /// consecrated_ground_immune_to_curses /// - ConsecratedGroundImmuneToCurses = 8956, - + ConsecratedGroundImmuneToCurses = 8960, + /// /// map_monster_chance_to_drop_item_creation_template_index /// - MapMonsterChanceToDropItemCreationTemplateIndex = 8957, - + MapMonsterChanceToDropItemCreationTemplateIndex = 8961, + /// /// support_rapid_fire_damage_+%_final /// - SupportRapidFireDamagePctFinal = 8958, - + SupportRapidFireDamagePctFinal = 8962, + /// /// monster_chance_to_drop_item_creation_template_index /// - MonsterChanceToDropItemCreationTemplateIndex = 8959, - + MonsterChanceToDropItemCreationTemplateIndex = 8963, + /// /// map_synthesised_monster_chance_to_drop_item_creation_template_index /// - MapSynthesisedMonsterChanceToDropItemCreationTemplateIndex = 8960, - + MapSynthesisedMonsterChanceToDropItemCreationTemplateIndex = 8964, + /// /// map_synthesised_rare_monster_chance_to_drop_item_creation_template_index /// - MapSynthesisedRareMonsterChanceToDropItemCreationTemplateIndex = 8961, - + MapSynthesisedRareMonsterChanceToDropItemCreationTemplateIndex = 8965, + /// /// map_synthesised_magic_monster_chance_to_drop_item_creation_template_index /// - MapSynthesisedMagicMonsterChanceToDropItemCreationTemplateIndex = 8962, - + MapSynthesisedMagicMonsterChanceToDropItemCreationTemplateIndex = 8966, + /// /// curse_skill_effect_duration_+% /// - CurseSkillEffectDurationPct = 8963, - + CurseSkillEffectDurationPct = 8967, + /// /// dark_ritual_skill_effect_duration_+%_per_curse_applied /// - DarkRitualSkillEffectDurationPctPerCurseApplied = 8964, - + DarkRitualSkillEffectDurationPctPerCurseApplied = 8968, + /// /// map_spawn_additional_chests_or_clusters_index /// - MapSpawnAdditionalChestsOrClustersIndex = 8965, - + MapSpawnAdditionalChestsOrClustersIndex = 8969, + /// /// map_duplicate_x_rare_monsters /// - MapDuplicateXRareMonsters = 8966, - + MapDuplicateXRareMonsters = 8970, + /// /// map_additional_rare_in_rare_pack_%_chance /// - MapAdditionalRareInRarePackPctChance = 8967, - + MapAdditionalRareInRarePackPctChance = 8971, + /// /// map_upgrade_pack_to_magic_%_chance /// - MapUpgradePackToMagicPctChance = 8968, - + MapUpgradePackToMagicPctChance = 8972, + /// /// map_upgrade_pack_to_rare_%_chance /// - MapUpgradePackToRarePctChance = 8969, - + MapUpgradePackToRarePctChance = 8973, + /// /// elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped /// - ElementalDamagePctToAddAsChaosPerShaperItemEquipped = 8970, - + ElementalDamagePctToAddAsChaosPerShaperItemEquipped = 8974, + /// /// hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped /// - HitsIgnoreEnemyChaosResistanceIfAllShaperItemsEquipped = 8971, - + HitsIgnoreEnemyChaosResistanceIfAllShaperItemsEquipped = 8975, + /// /// virtual_hits_ignore_enemy_chaos_resistance /// - VirtualHitsIgnoreEnemyChaosResistance = 8972, - + VirtualHitsIgnoreEnemyChaosResistance = 8976, + /// /// delirium_aura_effect_+% /// - DeliriumAuraEffectPct = 8973, - + DeliriumAuraEffectPct = 8977, + /// /// delirium_mana_reservation_+% /// - DeliriumManaReservationPct = 8974, - + DeliriumManaReservationPct = 8978, + /// /// delirium_reserves_no_mana /// - DeliriumReservesNoMana = 8975, - + DeliriumReservesNoMana = 8979, + /// /// display_linked_curse_effect_+% /// - DisplayLinkedCurseEffectPct = 8976, - + DisplayLinkedCurseEffectPct = 8980, + /// /// local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius /// - LocalUniqueJewelBlightAppliesWitherForMsWith40IntInRadius = 8977, - + LocalUniqueJewelBlightAppliesWitherForMsWith40IntInRadius = 8981, + /// /// support_storm_barrier_fire_damage_+%_final_to_apply /// - SupportStormBarrierFireDamagePctFinalToApply = 8978, - + SupportStormBarrierFireDamagePctFinalToApply = 8982, + /// /// support_storm_barrier_cold_damage_+%_final_to_apply /// - SupportStormBarrierColdDamagePctFinalToApply = 8979, - + SupportStormBarrierColdDamagePctFinalToApply = 8983, + /// /// support_storm_barrier_lightning_damage_+%_final_to_apply /// - SupportStormBarrierLightningDamagePctFinalToApply = 8980, - + SupportStormBarrierLightningDamagePctFinalToApply = 8984, + /// /// support_storm_barrier_chaos_damage_+%_final_to_apply /// - SupportStormBarrierChaosDamagePctFinalToApply = 8981, - + SupportStormBarrierChaosDamagePctFinalToApply = 8985, + /// /// support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling /// - SupportStormBarrierFireDamageTakenPctFinalFromHitsWhileChannelling = 8982, - + SupportStormBarrierFireDamageTakenPctFinalFromHitsWhileChannelling = 8986, + /// /// support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling /// - SupportStormBarrierColdDamageTakenPctFinalFromHitsWhileChannelling = 8983, - + SupportStormBarrierColdDamageTakenPctFinalFromHitsWhileChannelling = 8987, + /// /// support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling /// - SupportStormBarrierLightningDamageTakenPctFinalFromHitsWhileChannelling = 8984, - + SupportStormBarrierLightningDamageTakenPctFinalFromHitsWhileChannelling = 8988, + /// /// support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling /// - SupportStormBarrierChaosDamageTakenPctFinalFromHitsWhileChannelling = 8985, - + SupportStormBarrierChaosDamageTakenPctFinalFromHitsWhileChannelling = 8989, + /// /// damage_taken_per_250_strength_+% /// - DamageTakenPer250StrengthPct = 8986, - + DamageTakenPer250StrengthPct = 8990, + /// /// damage_taken_per_250_dexterity_+% /// - DamageTakenPer250DexterityPct = 8987, - + DamageTakenPer250DexterityPct = 8991, + /// /// damage_taken_per_250_intelligence_+% /// - DamageTakenPer250IntelligencePct = 8988, - + DamageTakenPer250IntelligencePct = 8992, + /// /// enemies_explode_for_%_life_as_physical_damage /// - EnemiesExplodeForPctLifeAsPhysicalDamage = 8989, - + EnemiesExplodeForPctLifeAsPhysicalDamage = 8993, + /// /// cold_damage_taken_+ /// - ColdDamageTaken = 8990, - + ColdDamageTaken = 8994, + /// /// lightning_damage_taken_+ /// - LightningDamageTaken = 8991, - + LightningDamageTaken = 8995, + /// /// gain_power_or_frenzy_charge_for_each_second_channeling /// - GainPowerOrFrenzyChargeForEachSecondChanneling = 8992, - + GainPowerOrFrenzyChargeForEachSecondChanneling = 8996, + /// /// chance_to_evade_%_while_you_have_energy_shield /// - ChanceToEvadePctWhileYouHaveEnergyShield = 8993, - + ChanceToEvadePctWhileYouHaveEnergyShield = 8997, + /// /// spell_dodge_while_you_have_energy_shield_+% /// - SpellDodgeWhileYouHaveEnergyShieldPct = 8994, - + SpellDodgeWhileYouHaveEnergyShieldPct = 8998, + /// /// ghost_dance_current_stacks /// - GhostDanceCurrentStacks = 8995, - + GhostDanceCurrentStacks = 8999, + /// /// ghost_dance_max_stacks /// - GhostDanceMaxStacks = 8996, - + GhostDanceMaxStacks = 9000, + /// /// damage_taken_per_ghost_dance_stack_+% /// - DamageTakenPerGhostDanceStackPct = 8997, - + DamageTakenPerGhostDanceStackPct = 9001, + /// /// attack_and_cast_speed_per_ghost_dance_stack_+% /// - AttackAndCastSpeedPerGhostDanceStackPct = 8998, - + AttackAndCastSpeedPerGhostDanceStackPct = 9002, + /// /// cannot_be_stunned_if_you_have_ghost_dance /// - CannotBeStunnedIfYouHaveGhostDance = 8999, - + CannotBeStunnedIfYouHaveGhostDance = 9003, + /// /// ghost_dance_restore_%_evasion_as_energy_shield_when_hit /// - GhostDanceRestorePctEvasionAsEnergyShieldWhenHit = 9000, - + GhostDanceRestorePctEvasionAsEnergyShieldWhenHit = 9004, + /// /// cold_damage_+%_per_cold_resistance_above_75 /// - ColdDamagePctPerColdResistanceAbove75 = 9001, - + ColdDamagePctPerColdResistanceAbove75 = 9005, + /// /// lightning_damage_+%_per_lightning_resistance_above_75 /// - LightningDamagePctPerLightningResistanceAbove75 = 9002, - + LightningDamagePctPerLightningResistanceAbove75 = 9006, + /// /// tertiary_skill_effect_duration /// - TertiarySkillEffectDuration = 9003, - + TertiarySkillEffectDuration = 9007, + /// /// base_tertiary_skill_effect_duration /// - BaseTertiarySkillEffectDuration = 9004, - + BaseTertiarySkillEffectDuration = 9008, + /// /// tertiary_skill_effect_duration_pluspercent /// - TertiarySkillEffectDurationPluspercent = 9005, - + TertiarySkillEffectDurationPluspercent = 9009, + /// /// support_spell_boost_area_damage_+%_final_per_charge /// - SupportSpellBoostAreaDamagePctFinalPerCharge = 9006, - + SupportSpellBoostAreaDamagePctFinalPerCharge = 9010, + /// /// support_spell_boost_area_of_effect_+%_final_per_charge /// - SupportSpellBoostAreaOfEffectPctFinalPerCharge = 9007, - + SupportSpellBoostAreaOfEffectPctFinalPerCharge = 9011, + /// /// support_spell_boost_skill_visual_scale_+%_per_charge /// - SupportSpellBoostSkillVisualScalePctPerCharge = 9008, - + SupportSpellBoostSkillVisualScalePctPerCharge = 9012, + /// /// area_damage_+%_final_from_spell_boost_charges /// - AreaDamagePctFinalFromSpellBoostCharges = 9009, - + AreaDamagePctFinalFromSpellBoostCharges = 9013, + /// /// map_synthesised_rare_monster_additional_currency_item_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalCurrencyItemDropChancePct = 9010, - + MapSynthesisedRareMonsterAdditionalCurrencyItemDropChancePct = 9014, + /// /// map_synthesised_magic_monster_additional_currency_item_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalCurrencyItemDropChancePct = 9011, - + MapSynthesisedMagicMonsterAdditionalCurrencyItemDropChancePct = 9015, + /// /// map_synthesised_monster_additional_currency_item_drop_chance_% /// - MapSynthesisedMonsterAdditionalCurrencyItemDropChancePct = 9012, - + MapSynthesisedMonsterAdditionalCurrencyItemDropChancePct = 9016, + /// /// map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalQualityCurrencyItemDropChancePct = 9013, - + MapSynthesisedRareMonsterAdditionalQualityCurrencyItemDropChancePct = 9017, + /// /// map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalQualityCurrencyItemDropChancePct = 9014, - + MapSynthesisedMagicMonsterAdditionalQualityCurrencyItemDropChancePct = 9018, + /// /// map_synthesised_monster_additional_quality_currency_item_drop_chance_% /// - MapSynthesisedMonsterAdditionalQualityCurrencyItemDropChancePct = 9015, - + MapSynthesisedMonsterAdditionalQualityCurrencyItemDropChancePct = 9019, + /// /// map_synthesised_rare_monster_fractured_item_drop_chance_+% /// - MapSynthesisedRareMonsterFracturedItemDropChancePct = 9016, - + MapSynthesisedRareMonsterFracturedItemDropChancePct = 9020, + /// /// map_synthesised_magic_monster_fractured_item_drop_chance_+% /// - MapSynthesisedMagicMonsterFracturedItemDropChancePct = 9017, - + MapSynthesisedMagicMonsterFracturedItemDropChancePct = 9021, + /// /// map_synthesised_monster_fractured_item_drop_chance_+% /// - MapSynthesisedMonsterFracturedItemDropChancePct = 9018, - + MapSynthesisedMonsterFracturedItemDropChancePct = 9022, + /// /// map_synthesised_rare_monster_items_drop_corrupted_% /// - MapSynthesisedRareMonsterItemsDropCorruptedPct = 9019, - + MapSynthesisedRareMonsterItemsDropCorruptedPct = 9023, + /// /// map_synthesised_magic_monster_items_drop_corrupted_% /// - MapSynthesisedMagicMonsterItemsDropCorruptedPct = 9020, - + MapSynthesisedMagicMonsterItemsDropCorruptedPct = 9024, + /// /// map_synthesised_monster_items_drop_corrupted_% /// - MapSynthesisedMonsterItemsDropCorruptedPct = 9021, - + MapSynthesisedMonsterItemsDropCorruptedPct = 9025, + /// /// map_synthesised_rare_monster_map_drop_chance_+% /// - MapSynthesisedRareMonsterMapDropChancePct = 9022, - + MapSynthesisedRareMonsterMapDropChancePct = 9026, + /// /// map_synthesised_magic_monster_map_drop_chance_+% /// - MapSynthesisedMagicMonsterMapDropChancePct = 9023, - + MapSynthesisedMagicMonsterMapDropChancePct = 9027, + /// /// map_synthesised_monster_map_drop_chance_+% /// - MapSynthesisedMonsterMapDropChancePct = 9024, - + MapSynthesisedMonsterMapDropChancePct = 9028, + /// /// map_synthesised_rare_monster_additional_divination_card_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalDivinationCardDropChancePct = 9025, - + MapSynthesisedRareMonsterAdditionalDivinationCardDropChancePct = 9029, + /// /// map_synthesised_magic_monster_additional_divination_card_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalDivinationCardDropChancePct = 9026, - + MapSynthesisedMagicMonsterAdditionalDivinationCardDropChancePct = 9030, + /// /// map_synthesised_monster_additional_divination_card_drop_chance_% /// - MapSynthesisedMonsterAdditionalDivinationCardDropChancePct = 9027, - + MapSynthesisedMonsterAdditionalDivinationCardDropChancePct = 9031, + /// /// map_synthesised_rare_monster_unique_item_drop_chance_+% /// - MapSynthesisedRareMonsterUniqueItemDropChancePct = 9028, - + MapSynthesisedRareMonsterUniqueItemDropChancePct = 9032, + /// /// map_synthesised_magic_monster_unique_item_drop_chance_+% /// - MapSynthesisedMagicMonsterUniqueItemDropChancePct = 9029, - + MapSynthesisedMagicMonsterUniqueItemDropChancePct = 9033, + /// /// map_synthesised_monster_unique_item_drop_chance_+% /// - MapSynthesisedMonsterUniqueItemDropChancePct = 9030, - + MapSynthesisedMonsterUniqueItemDropChancePct = 9034, + /// /// map_synthesised_rare_monster_dropped_item_quantity_+% /// - MapSynthesisedRareMonsterDroppedItemQuantityPct = 9031, - + MapSynthesisedRareMonsterDroppedItemQuantityPct = 9035, + /// /// map_synthesised_magic_monster_dropped_item_quantity_+% /// - MapSynthesisedMagicMonsterDroppedItemQuantityPct = 9032, - + MapSynthesisedMagicMonsterDroppedItemQuantityPct = 9036, + /// /// map_synthesised_monster_dropped_item_quantity_+% /// - MapSynthesisedMonsterDroppedItemQuantityPct = 9033, - + MapSynthesisedMonsterDroppedItemQuantityPct = 9037, + /// /// map_synthesised_rare_monster_dropped_item_rarity_+% /// - MapSynthesisedRareMonsterDroppedItemRarityPct = 9034, - + MapSynthesisedRareMonsterDroppedItemRarityPct = 9038, + /// /// map_synthesised_magic_monster_dropped_item_rarity_+% /// - MapSynthesisedMagicMonsterDroppedItemRarityPct = 9035, - + MapSynthesisedMagicMonsterDroppedItemRarityPct = 9039, + /// /// map_synthesised_monster_dropped_item_rarity_+% /// - MapSynthesisedMonsterDroppedItemRarityPct = 9036, - + MapSynthesisedMonsterDroppedItemRarityPct = 9040, + /// /// map_synthesised_rare_monster_slain_experience_+% /// - MapSynthesisedRareMonsterSlainExperiencePct = 9037, - + MapSynthesisedRareMonsterSlainExperiencePct = 9041, + /// /// map_synthesised_magic_monster_slain_experience_+% /// - MapSynthesisedMagicMonsterSlainExperiencePct = 9038, - + MapSynthesisedMagicMonsterSlainExperiencePct = 9042, + /// /// map_synthesised_monster_slain_experience_+% /// - MapSynthesisedMonsterSlainExperiencePct = 9039, - + MapSynthesisedMonsterSlainExperiencePct = 9043, + /// /// map_synthesised_rare_monster_additional_currency_shard_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalCurrencyShardDropChancePct = 9040, - + MapSynthesisedRareMonsterAdditionalCurrencyShardDropChancePct = 9044, + /// /// map_synthesised_magic_monster_additional_currency_shard_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalCurrencyShardDropChancePct = 9041, - + MapSynthesisedMagicMonsterAdditionalCurrencyShardDropChancePct = 9045, + /// /// map_synthesised_monster_additional_currency_shard_drop_chance_% /// - MapSynthesisedMonsterAdditionalCurrencyShardDropChancePct = 9042, - + MapSynthesisedMonsterAdditionalCurrencyShardDropChancePct = 9046, + /// /// map_synthesised_rare_monster_additional_shaper_item_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalShaperItemDropChancePct = 9043, - + MapSynthesisedRareMonsterAdditionalShaperItemDropChancePct = 9047, + /// /// map_synthesised_magic_monster_additional_shaper_item_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalShaperItemDropChancePct = 9044, - + MapSynthesisedMagicMonsterAdditionalShaperItemDropChancePct = 9048, + /// /// map_synthesised_monster_additional_shaper_item_drop_chance_% /// - MapSynthesisedMonsterAdditionalShaperItemDropChancePct = 9045, - + MapSynthesisedMonsterAdditionalShaperItemDropChancePct = 9049, + /// /// map_synthesised_rare_monster_additional_elder_item_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalElderItemDropChancePct = 9046, - + MapSynthesisedRareMonsterAdditionalElderItemDropChancePct = 9050, + /// /// map_synthesised_magic_monster_additional_elder_item_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalElderItemDropChancePct = 9047, - + MapSynthesisedMagicMonsterAdditionalElderItemDropChancePct = 9051, + /// /// map_synthesised_monster_additional_elder_item_drop_chance_% /// - MapSynthesisedMonsterAdditionalElderItemDropChancePct = 9048, - + MapSynthesisedMonsterAdditionalElderItemDropChancePct = 9052, + /// /// map_synthesised_rare_monster_additional_breach_splinter_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalBreachSplinterDropChancePct = 9049, - + MapSynthesisedRareMonsterAdditionalBreachSplinterDropChancePct = 9053, + /// /// map_synthesised_magic_monster_additional_breach_splinter_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalBreachSplinterDropChancePct = 9050, - + MapSynthesisedMagicMonsterAdditionalBreachSplinterDropChancePct = 9054, + /// /// map_synthesised_monster_additional_breach_splinter_drop_chance_% /// - MapSynthesisedMonsterAdditionalBreachSplinterDropChancePct = 9051, - + MapSynthesisedMonsterAdditionalBreachSplinterDropChancePct = 9055, + /// /// map_synthesised_rare_monster_additional_fossil_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalFossilDropChancePct = 9052, - + MapSynthesisedRareMonsterAdditionalFossilDropChancePct = 9056, + /// /// map_synthesised_magic_monster_additional_fossil_drop_chance_% /// - MapSynthesisedMagicMonsterAdditionalFossilDropChancePct = 9053, - + MapSynthesisedMagicMonsterAdditionalFossilDropChancePct = 9057, + /// /// map_synthesised_monster_additional_fossil_drop_chance_% /// - MapSynthesisedMonsterAdditionalFossilDropChancePct = 9054, - + MapSynthesisedMonsterAdditionalFossilDropChancePct = 9058, + /// /// map_synthesised_rare_monster_additional_jewel_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalJewelDropChancePct = 9055, - + MapSynthesisedRareMonsterAdditionalJewelDropChancePct = 9059, + /// /// map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalAbyssJewelDropChancePct = 9056, - + MapSynthesisedRareMonsterAdditionalAbyssJewelDropChancePct = 9060, + /// /// map_synthesised_rare_monster_additional_map_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalMapDropChancePct = 9057, - + MapSynthesisedRareMonsterAdditionalMapDropChancePct = 9061, + /// /// map_synthesised_rare_monster_additional_talisman_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalTalismanDropChancePct = 9058, - + MapSynthesisedRareMonsterAdditionalTalismanDropChancePct = 9062, + /// /// map_synthesised_rare_monster_additional_essence_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalEssenceDropChancePct = 9059, - + MapSynthesisedRareMonsterAdditionalEssenceDropChancePct = 9063, + /// /// map_synthesised_rare_monster_resurrect_as_ally_chance_% /// - MapSynthesisedRareMonsterResurrectAsAllyChancePct = 9060, - + MapSynthesisedRareMonsterResurrectAsAllyChancePct = 9064, + /// /// map_synthesised_rare_monster_gives_mods_to_killer_chance_% /// - MapSynthesisedRareMonsterGivesModsToKillerChancePct = 9061, - + MapSynthesisedRareMonsterGivesModsToKillerChancePct = 9065, + /// /// map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalVaalFragmentDropChancePct = 9062, - + MapSynthesisedRareMonsterAdditionalVaalFragmentDropChancePct = 9066, + /// /// map_synthesised_rare_monster_additional_veiled_item_drop_chance_% /// - MapSynthesisedRareMonsterAdditionalVeiledItemDropChancePct = 9063, - + MapSynthesisedRareMonsterAdditionalVeiledItemDropChancePct = 9067, + /// /// visual_hit_effect_index_override /// - VisualHitEffectIndexOverride = 9064, - + VisualHitEffectIndexOverride = 9068, + /// /// support_anticipation_rapid_fire_count /// - SupportAnticipationRapidFireCount = 9065, - + SupportAnticipationRapidFireCount = 9069, + /// /// support_anticipation_charge_gain_interval_ms /// - SupportAnticipationChargeGainIntervalMs = 9066, - + SupportAnticipationChargeGainIntervalMs = 9070, + /// /// local_flask_area_of_consecrated_ground_+% /// - LocalFlaskAreaOfConsecratedGroundPct = 9067, - + LocalFlaskAreaOfConsecratedGroundPct = 9071, + /// /// local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground /// - LocalFlaskDuringEffectEnemyDamageTakenPctOnConsecratedGround = 9068, - + LocalFlaskDuringEffectEnemyDamageTakenPctOnConsecratedGround = 9072, + /// /// local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect /// - LocalFlaskCriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPctDuringEffect = 9069, - + LocalFlaskCriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPctDuringEffect = 9073, + /// /// map_duplicate_x_synthesised_rare_monsters /// - MapDuplicateXSynthesisedRareMonsters = 9070, - + MapDuplicateXSynthesisedRareMonsters = 9074, + /// /// map_additional_rare_in_synthesised_rare_pack_%_chance /// - MapAdditionalRareInSynthesisedRarePackPctChance = 9071, - + MapAdditionalRareInSynthesisedRarePackPctChance = 9075, + /// /// map_upgrade_synthesised_pack_to_magic_%_chance /// - MapUpgradeSynthesisedPackToMagicPctChance = 9072, - + MapUpgradeSynthesisedPackToMagicPctChance = 9076, + /// /// map_upgrade_synthesised_pack_to_rare_%_chance /// - MapUpgradeSynthesisedPackToRarePctChance = 9073, - + MapUpgradeSynthesisedPackToRarePctChance = 9077, + /// /// support_spell_boost_damage_+%_final_at_max_charges /// - SupportSpellBoostDamagePctFinalAtMaxCharges = 9074, - + SupportSpellBoostDamagePctFinalAtMaxCharges = 9078, + /// /// synthesis_map_global_mod_values_doubled_on_this_node /// - SynthesisMapGlobalModValuesDoubledOnThisNode = 9075, - + SynthesisMapGlobalModValuesDoubledOnThisNode = 9079, + /// /// synthesis_map_global_mod_values_tripled_on_this_node /// - SynthesisMapGlobalModValuesTripledOnThisNode = 9076, - + SynthesisMapGlobalModValuesTripledOnThisNode = 9080, + /// /// synthesis_map_monster_slain_experience_+%_on_this_node /// - SynthesisMapMonsterSlainExperiencePctOnThisNode = 9077, - + SynthesisMapMonsterSlainExperiencePctOnThisNode = 9081, + /// /// synthesis_map_memories_do_not_collapse_on_this_node /// - SynthesisMapMemoriesDoNotCollapseOnThisNode = 9078, - + SynthesisMapMemoriesDoNotCollapseOnThisNode = 9082, + /// /// synthesis_map_nearby_memories_have_bonus /// - SynthesisMapNearbyMemoriesHaveBonus = 9079, - + SynthesisMapNearbyMemoriesHaveBonus = 9083, + /// /// base_cannot_leech_energy_shield /// - BaseCannotLeechEnergyShield = 9080, - + BaseCannotLeechEnergyShield = 9084, + /// /// monster_resurrect_as_ally_chance_% /// - MonsterResurrectAsAllyChancePct = 9081, - + MonsterResurrectAsAllyChancePct = 9085, + /// /// map_synthesis_spawn_additional_fungal_chest_clusters /// - MapSynthesisSpawnAdditionalFungalChestClusters = 9082, - + MapSynthesisSpawnAdditionalFungalChestClusters = 9086, + /// /// map_synthesis_spawn_additional_abyss_bone_chest_clusters /// - MapSynthesisSpawnAdditionalAbyssBoneChestClusters = 9083, - + MapSynthesisSpawnAdditionalAbyssBoneChestClusters = 9087, + /// /// map_synthesis_spawn_additional_wealthy_barrel_clusters /// - MapSynthesisSpawnAdditionalWealthyBarrelClusters = 9084, - + MapSynthesisSpawnAdditionalWealthyBarrelClusters = 9088, + /// /// map_synthesis_spawn_additional_volatile_barrel_clusters /// - MapSynthesisSpawnAdditionalVolatileBarrelClusters = 9085, - + MapSynthesisSpawnAdditionalVolatileBarrelClusters = 9089, + /// /// map_synthesis_spawn_additional_bloodworm_barrel_clusters /// - MapSynthesisSpawnAdditionalBloodwormBarrelClusters = 9086, - + MapSynthesisSpawnAdditionalBloodwormBarrelClusters = 9090, + /// /// map_synthesis_spawn_additional_parasite_barrel_clusters /// - MapSynthesisSpawnAdditionalParasiteBarrelClusters = 9087, - + MapSynthesisSpawnAdditionalParasiteBarrelClusters = 9091, + /// /// divination_card_drop_chance_+% /// - DivinationCardDropChancePct = 9088, - + DivinationCardDropChancePct = 9092, + /// /// unique_item_drop_chance_+% /// - UniqueItemDropChancePct = 9089, - + UniqueItemDropChancePct = 9093, + /// /// map_item_drop_chance_+% /// - MapItemDropChancePct = 9090, - + MapItemDropChancePct = 9094, + /// /// monster_gives_mods_to_killer_chance_% /// - MonsterGivesModsToKillerChancePct = 9091, - + MonsterGivesModsToKillerChancePct = 9095, + /// /// monster_items_drop_corrupted_% /// - MonsterItemsDropCorruptedPct = 9092, - + MonsterItemsDropCorruptedPct = 9096, + /// /// support_spell_boost_area_of_effect_+%_final /// - SupportSpellBoostAreaOfEffectPctFinal = 9093, - + SupportSpellBoostAreaOfEffectPctFinal = 9097, + /// /// support_spell_boost_charge_loss_interval_ms_while_moving /// - SupportSpellBoostChargeLossIntervalMsWhileMoving = 9094, - + SupportSpellBoostChargeLossIntervalMsWhileMoving = 9098, + /// /// local_socketed_minion_gem_quality_+ /// - LocalSocketedMinionGemQuality = 9095, - + LocalSocketedMinionGemQuality = 9099, + /// /// local_socketed_fire_gem_quality_+ /// - LocalSocketedFireGemQuality = 9096, - + LocalSocketedFireGemQuality = 9100, + /// /// local_socketed_cold_gem_quality_+ /// - LocalSocketedColdGemQuality = 9097, - + LocalSocketedColdGemQuality = 9101, + /// /// local_socketed_lightning_gem_quality_+ /// - LocalSocketedLightningGemQuality = 9098, - + LocalSocketedLightningGemQuality = 9102, + /// /// local_socketed_chaos_gem_quality_+ /// - LocalSocketedChaosGemQuality = 9099, - + LocalSocketedChaosGemQuality = 9103, + /// /// local_socketed_melee_gem_quality_+ /// - LocalSocketedMeleeGemQuality = 9100, - + LocalSocketedMeleeGemQuality = 9104, + /// /// local_socketed_bow_gem_quality_+ /// - LocalSocketedBowGemQuality = 9101, - + LocalSocketedBowGemQuality = 9105, + /// /// local_socketed_aura_gem_quality_+ /// - LocalSocketedAuraGemQuality = 9102, - + LocalSocketedAuraGemQuality = 9106, + /// /// local_socketed_strength_gem_quality_+ /// - LocalSocketedStrengthGemQuality = 9103, - + LocalSocketedStrengthGemQuality = 9107, + /// /// local_socketed_dexterity_gem_quality_+ /// - LocalSocketedDexterityGemQuality = 9104, - + LocalSocketedDexterityGemQuality = 9108, + /// /// local_socketed_intelligence_gem_quality_+ /// - LocalSocketedIntelligenceGemQuality = 9105, - + LocalSocketedIntelligenceGemQuality = 9109, + /// /// local_socketed_area_of_effect_gem_quality_+ /// - LocalSocketedAreaOfEffectGemQuality = 9106, - + LocalSocketedAreaOfEffectGemQuality = 9110, + /// /// local_socketed_projectile_gem_quality_+ /// - LocalSocketedProjectileGemQuality = 9107, - + LocalSocketedProjectileGemQuality = 9111, + /// /// divine_tempest_beam_width_+ /// - DivineTempestBeamWidth = 9108, - + DivineTempestBeamWidth = 9112, + /// /// local_display_grants_skill_malevolence_level /// - LocalDisplayGrantsSkillMalevolenceLevel = 9109, - + LocalDisplayGrantsSkillMalevolenceLevel = 9113, + /// /// local_display_grants_skill_zealotry_level /// - LocalDisplayGrantsSkillZealotryLevel = 9110, - + LocalDisplayGrantsSkillZealotryLevel = 9114, + /// /// zealotry_aura_effect_+% /// - ZealotryAuraEffectPct = 9111, - + ZealotryAuraEffectPct = 9115, + /// /// zealotry_mana_reservation_+% /// - ZealotryManaReservationPct = 9112, - + ZealotryManaReservationPct = 9116, + /// /// zealotry_reserves_no_mana /// - ZealotryReservesNoMana = 9113, - + ZealotryReservesNoMana = 9117, + /// /// enemy_critical_strike_chance_+%_against_self /// - EnemyCriticalStrikeChancePctAgainstSelf = 9114, - + EnemyCriticalStrikeChancePctAgainstSelf = 9118, + /// /// base_enemy_critical_strike_chance_+%_against_self /// - BaseEnemyCriticalStrikeChancePctAgainstSelf = 9115, - + BaseEnemyCriticalStrikeChancePctAgainstSelf = 9119, + /// /// enemy_additional_critical_strike_chance_against_self /// - EnemyAdditionalCriticalStrikeChanceAgainstSelf = 9116, - + EnemyAdditionalCriticalStrikeChanceAgainstSelf = 9120, + /// /// attacker_has_defender_conditional_damage_stats /// - AttackerHasDefenderConditionalDamageStats = 9117, - + AttackerHasDefenderConditionalDamageStats = 9121, + /// /// defender_has_attacker_conditional_damage_stats /// - DefenderHasAttackerConditionalDamageStats = 9118, - + DefenderHasAttackerConditionalDamageStats = 9122, + /// /// enemy_+50%_critical_strike_chance_against_self /// - Enemy50PctCriticalStrikeChanceAgainstSelf = 9119, - + Enemy50PctCriticalStrikeChanceAgainstSelf = 9123, + /// /// monster_fractured_item_drop_chance_+% /// - MonsterFracturedItemDropChancePct = 9120, - + MonsterFracturedItemDropChancePct = 9124, + /// /// delirium_skill_effect_duration_+% /// - DeliriumSkillEffectDurationPct = 9121, - + DeliriumSkillEffectDurationPct = 9125, + /// /// damage_+%_while_life_leeching /// - DamagePctWhileLifeLeeching = 9122, - + DamagePctWhileLifeLeeching = 9126, + /// /// damage_+%_while_mana_leeching /// - DamagePctWhileManaLeeching = 9123, - + DamagePctWhileManaLeeching = 9127, + /// /// damage_+%_while_es_leeching /// - DamagePctWhileEsLeeching = 9124, - + DamagePctWhileEsLeeching = 9128, + /// /// local_display_nearby_enemies_cannot_crit /// - LocalDisplayNearbyEnemiesCannotCrit = 9125, - + LocalDisplayNearbyEnemiesCannotCrit = 9129, + /// /// local_display_nearby_allies_action_speed_cannot_be_reduced_below_base /// - LocalDisplayNearbyAlliesActionSpeedCannotBeReducedBelowBase = 9126, - + LocalDisplayNearbyAlliesActionSpeedCannotBeReducedBelowBase = 9130, + /// /// expanding_fire_cone_radius_limit /// - ExpandingFireConeRadiusLimit = 9127, - + ExpandingFireConeRadiusLimit = 9131, + /// /// enemy_critical_strike_chance_+%_against_self_20_times_value /// - EnemyCriticalStrikeChancePctAgainstSelf20TimesValue = 9128, - + EnemyCriticalStrikeChancePctAgainstSelf20TimesValue = 9132, + /// /// divine_tempest_ailment_damage_+%_final_per_stage /// - DivineTempestAilmentDamagePctFinalPerStage = 9129, - + DivineTempestAilmentDamagePctFinalPerStage = 9133, + /// /// local_display_nearby_enemies_critical_strike_chance_+%_against_self /// - LocalDisplayNearbyEnemiesCriticalStrikeChancePctAgainstSelf = 9130, - + LocalDisplayNearbyEnemiesCriticalStrikeChancePctAgainstSelf = 9134, + /// /// base_shock_proliferation_radius /// - BaseShockProliferationRadius = 9131, - + BaseShockProliferationRadius = 9135, + /// /// virtual_shock_proliferation_radius /// - VirtualShockProliferationRadius = 9132, - + VirtualShockProliferationRadius = 9136, + /// /// enemy_shock_on_kill /// - EnemyShockOnKill = 9133, - + EnemyShockOnKill = 9137, + /// /// support_spell_rapid_fire_repeat_use_damage_+%_final /// - SupportSpellRapidFireRepeatUseDamagePctFinal = 9134, - + SupportSpellRapidFireRepeatUseDamagePctFinal = 9138, + /// /// damage_+%_final_from_rapid_fire_support /// - DamagePctFinalFromRapidFireSupport = 9135, - + DamagePctFinalFromRapidFireSupport = 9139, + /// /// active_skill_base_area_length_+ /// - ActiveSkillBaseAreaLength = 9136, - + ActiveSkillBaseAreaLength = 9140, + /// /// consecrated_ground_effect_+% /// - ConsecratedGroundEffectPct = 9137, - + ConsecratedGroundEffectPct = 9141, + /// /// fire_damage_with_spell_skills_+% /// - FireDamageWithSpellSkillsPct = 9138, - + FireDamageWithSpellSkillsPct = 9142, + /// /// cold_damage_with_spell_skills_+% /// - ColdDamageWithSpellSkillsPct = 9139, - + ColdDamageWithSpellSkillsPct = 9143, + /// /// lightning_damage_with_spell_skills_+% /// - LightningDamageWithSpellSkillsPct = 9140, - + LightningDamageWithSpellSkillsPct = 9144, + /// /// chaos_damage_with_spell_skills_+% /// - ChaosDamageWithSpellSkillsPct = 9141, - + ChaosDamageWithSpellSkillsPct = 9145, + /// /// physical_damage_with_spell_skills_+% /// - PhysicalDamageWithSpellSkillsPct = 9142, - + PhysicalDamageWithSpellSkillsPct = 9146, + /// /// spell_critical_strike_multiplier_+_while_dual_wielding /// - SpellCriticalStrikeMultiplierWhileDualWielding = 9143, - + SpellCriticalStrikeMultiplierWhileDualWielding = 9147, + /// /// spell_critical_strike_multiplier_+_while_holding_shield /// - SpellCriticalStrikeMultiplierWhileHoldingShield = 9144, - + SpellCriticalStrikeMultiplierWhileHoldingShield = 9148, + /// /// spell_critical_strike_multiplier_+_while_wielding_staff /// - SpellCriticalStrikeMultiplierWhileWieldingStaff = 9145, - + SpellCriticalStrikeMultiplierWhileWieldingStaff = 9149, + /// /// spell_critical_strike_chance_+%_while_dual_wielding /// - SpellCriticalStrikeChancePctWhileDualWielding = 9146, - + SpellCriticalStrikeChancePctWhileDualWielding = 9150, + /// /// spell_critical_strike_chance_+%_while_holding_shield /// - SpellCriticalStrikeChancePctWhileHoldingShield = 9147, - + SpellCriticalStrikeChancePctWhileHoldingShield = 9151, + /// /// spell_critical_strike_chance_+%_while_wielding_staff /// - SpellCriticalStrikeChancePctWhileWieldingStaff = 9148, - + SpellCriticalStrikeChancePctWhileWieldingStaff = 9152, + /// /// mana_regeneration_rate_per_minute_while_dual_wielding /// - ManaRegenerationRatePerMinuteWhileDualWielding = 9149, - + ManaRegenerationRatePerMinuteWhileDualWielding = 9153, + /// /// mana_regeneration_rate_per_minute_while_holding_shield /// - ManaRegenerationRatePerMinuteWhileHoldingShield = 9150, - + ManaRegenerationRatePerMinuteWhileHoldingShield = 9154, + /// /// mana_regeneration_rate_per_minute_while_wielding_staff /// - ManaRegenerationRatePerMinuteWhileWieldingStaff = 9151, - + ManaRegenerationRatePerMinuteWhileWieldingStaff = 9155, + /// /// attack_damage_+%_per_500_maximum_mana /// - AttackDamagePctPer500MaximumMana = 9152, - + AttackDamagePctPer500MaximumMana = 9156, + /// /// spell_damage_+%_per_500_maximum_mana /// - SpellDamagePctPer500MaximumMana = 9153, - + SpellDamagePctPer500MaximumMana = 9157, + /// /// faster_poison_% /// - FasterPoisonPct = 9154, - + FasterPoisonPct = 9158, + /// /// faster_bleed_% /// - FasterBleedPct = 9155, - + FasterBleedPct = 9159, + /// /// visual_hit_effect_elemental_is_holy /// - VisualHitEffectElementalIsHoly = 9156, - + VisualHitEffectElementalIsHoly = 9160, + /// /// mana_reservation_+%_per_250_total_attributes /// - ManaReservationPctPer250TotalAttributes = 9157, - + ManaReservationPctPer250TotalAttributes = 9161, + /// /// dominance_defences_+%_on_nearby_allies_per_100_strength /// - DominanceDefencesPctOnNearbyAlliesPer100Strength = 9158, - + DominanceDefencesPctOnNearbyAlliesPer100Strength = 9162, + /// /// dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity /// - DominanceCriticalStrikeMultiplierOnNearbyAlliesPer100Dexterity = 9159, - + DominanceCriticalStrikeMultiplierOnNearbyAlliesPer100Dexterity = 9163, + /// /// dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence /// - DominanceCastSpeedPctOnNearbyAlliesPer100Intelligence = 9160, - + DominanceCastSpeedPctOnNearbyAlliesPer100Intelligence = 9164, + /// /// virtual_dominance_defences_+%_on_nearby_allies /// - VirtualDominanceDefencesPctOnNearbyAllies = 9161, - + VirtualDominanceDefencesPctOnNearbyAllies = 9165, + /// /// virtual_dominance_critical_strike_multiplier_+%_on_nearby_allies /// - VirtualDominanceCriticalStrikeMultiplierPctOnNearbyAllies = 9162, - + VirtualDominanceCriticalStrikeMultiplierPctOnNearbyAllies = 9166, + /// /// virtual_dominance_cast_speed_+%_on_nearby_allies /// - VirtualDominanceCastSpeedPctOnNearbyAllies = 9163, - + VirtualDominanceCastSpeedPctOnNearbyAllies = 9167, + /// /// critical_strike_chance_against_enemies_on_consecrated_ground_% /// - CriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPct = 9164, - + CriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPct = 9168, + /// /// map_synthesis_spawn_additional_cursed_pot_clusters /// - MapSynthesisSpawnAdditionalCursedPotClusters = 9165, - + MapSynthesisSpawnAdditionalCursedPotClusters = 9169, + /// /// map_synthesis_spawn_additional_zombie_sarcophagi_chest /// - MapSynthesisSpawnAdditionalZombieSarcophagiChest = 9166, - + MapSynthesisSpawnAdditionalZombieSarcophagiChest = 9170, + /// /// map_synthesis_spawn_additional_scroll_rack_chest /// - MapSynthesisSpawnAdditionalScrollRackChest = 9167, - + MapSynthesisSpawnAdditionalScrollRackChest = 9171, + /// /// soulrend_damage_+% /// - SoulrendDamagePct = 9168, - + SoulrendDamagePct = 9172, + /// /// soulrend_number_of_additional_projectiles /// - SoulrendNumberOfAdditionalProjectiles = 9169, - + SoulrendNumberOfAdditionalProjectiles = 9173, + /// /// soulrend_applies_hinder_movement_speed_+% /// - SoulrendAppliesHinderMovementSpeedPct = 9170, - + SoulrendAppliesHinderMovementSpeedPct = 9174, + /// /// dark_ritual_damage_+% /// - DarkRitualDamagePct = 9171, - + DarkRitualDamagePct = 9175, + /// /// dark_ritual_area_of_effect_+% /// - DarkRitualAreaOfEffectPct = 9172, - + DarkRitualAreaOfEffectPct = 9176, + /// /// dark_ritual_linked_curse_effect_+% /// - DarkRitualLinkedCurseEffectPct = 9173, - + DarkRitualLinkedCurseEffectPct = 9177, + /// /// sanctify_damage_+% /// - SanctifyDamagePct = 9174, - + SanctifyDamagePct = 9178, + /// /// sanctify_area_of_effect_+%_when_targeting_consecrated_ground /// - SanctifyAreaOfEffectPctWhenTargetingConsecratedGround = 9175, - + SanctifyAreaOfEffectPctWhenTargetingConsecratedGround = 9179, + /// /// storm_burst_additional_object_chance_% /// - StormBurstAdditionalObjectChancePct = 9176, - + StormBurstAdditionalObjectChancePct = 9180, + /// /// virtual_storm_burst_additional_object_chance_% /// - VirtualStormBurstAdditionalObjectChancePct = 9177, - + VirtualStormBurstAdditionalObjectChancePct = 9181, + /// /// divine_tempest_damage_+% /// - DivineTempestDamagePct = 9178, - + DivineTempestDamagePct = 9182, + /// /// divine_tempest_beam_width_+% /// - DivineTempestBeamWidthPct = 9179, - + DivineTempestBeamWidthPct = 9183, + /// /// purge_damage_+% /// - PurgeDamagePct = 9180, - + PurgeDamagePct = 9184, + /// /// purge_duration_+% /// - PurgeDurationPct = 9181, - + PurgeDurationPct = 9185, + /// /// purge_additional_enemy_resistance_% /// - PurgeAdditionalEnemyResistancePct = 9182, - + PurgeAdditionalEnemyResistancePct = 9186, + /// /// virtual_divine_tempest_number_of_nearby_enemies_to_zap /// - VirtualDivineTempestNumberOfNearbyEnemiesToZap = 9183, - + VirtualDivineTempestNumberOfNearbyEnemiesToZap = 9187, + /// /// divine_tempest_number_of_additional_nearby_enemies_to_zap /// - DivineTempestNumberOfAdditionalNearbyEnemiesToZap = 9184, - + DivineTempestNumberOfAdditionalNearbyEnemiesToZap = 9188, + /// /// local_display_socketed_gems_supported_by_level_x_energy_leech /// - LocalDisplaySocketedGemsSupportedByLevelXEnergyLeech = 9185, - + LocalDisplaySocketedGemsSupportedByLevelXEnergyLeech = 9189, + /// /// local_display_socketed_gems_supported_by_level_x_spell_focus /// - LocalDisplaySocketedGemsSupportedByLevelXSpellFocus = 9186, - + LocalDisplaySocketedGemsSupportedByLevelXSpellFocus = 9190, + /// /// local_display_socketed_gems_supported_by_level_x_unleash /// - LocalDisplaySocketedGemsSupportedByLevelXUnleash = 9187, - + LocalDisplaySocketedGemsSupportedByLevelXUnleash = 9191, + /// /// local_display_socketed_gems_supported_by_level_x_impale /// - LocalDisplaySocketedGemsSupportedByLevelXImpale = 9188, - + LocalDisplaySocketedGemsSupportedByLevelXImpale = 9192, + /// /// map_number_of_global_synthesis_mods /// - MapNumberOfGlobalSynthesisMods = 9189, - + MapNumberOfGlobalSynthesisMods = 9193, + /// /// sanctify_consecrated_ground_enemy_damage_taken_+% /// - SanctifyConsecratedGroundEnemyDamageTakenPct = 9190, - + SanctifyConsecratedGroundEnemyDamageTakenPct = 9194, + /// /// flame_totem_consecrated_ground_enemy_damage_taken_+% /// - FlameTotemConsecratedGroundEnemyDamageTakenPct = 9191, - + FlameTotemConsecratedGroundEnemyDamageTakenPct = 9195, + /// /// elemental_damage_+%_per_divine_charge /// - ElementalDamagePctPerDivineCharge = 9192, - + ElementalDamagePctPerDivineCharge = 9196, + /// /// divinity_elemental_damage_+%_final /// - DivinityElementalDamagePctFinal = 9193, - + DivinityElementalDamagePctFinal = 9197, + /// /// divinity_elemental_damage_taken_+%_final /// - DivinityElementalDamageTakenPctFinal = 9194, - + DivinityElementalDamageTakenPctFinal = 9198, + /// /// maximum_divine_charges /// - MaximumDivineCharges = 9195, - + MaximumDivineCharges = 9199, + /// /// current_divine_charges /// - CurrentDivineCharges = 9196, - + CurrentDivineCharges = 9200, + /// /// cannot_gain_divine_charges /// - CannotGainDivineCharges = 9197, - + CannotGainDivineCharges = 9201, + /// /// gain_divine_charge_on_hit_% /// - GainDivineChargeOnHitPct = 9198, - + GainDivineChargeOnHitPct = 9202, + /// /// gain_divinity_ms_when_reaching_maximum_divine_charges /// - GainDivinityMsWhenReachingMaximumDivineCharges = 9199, - + GainDivinityMsWhenReachingMaximumDivineCharges = 9203, + /// /// local_display_grants_skill_accuracy_crits_aura_level /// - LocalDisplayGrantsSkillAccuracyCritsAuraLevel = 9200, - + LocalDisplayGrantsSkillAccuracyCritsAuraLevel = 9204, + /// /// map_disallow_fractured_item_drops /// - MapDisallowFracturedItemDrops = 9201, - + MapDisallowFracturedItemDrops = 9205, + /// /// monster_rarity /// - MonsterRarity = 9202, - + MonsterRarity = 9206, + /// /// temporal_chains_action_speed_+%_vs_rare_or_unique_final /// - TemporalChainsActionSpeedPctVsRareOrUniqueFinal = 9203, - + TemporalChainsActionSpeedPctVsRareOrUniqueFinal = 9207, + /// /// enfeeble_damage_+%_vs_rare_or_unique_final /// - EnfeebleDamagePctVsRareOrUniqueFinal = 9204, - + EnfeebleDamagePctVsRareOrUniqueFinal = 9208, + /// /// attack_and_cast_speed_+%_during_onslaught /// - AttackAndCastSpeedPctDuringOnslaught = 9205, - + AttackAndCastSpeedPctDuringOnslaught = 9209, + /// /// physical_damage_+%_with_unholy_might /// - PhysicalDamagePctWithUnholyMight = 9206, - + PhysicalDamagePctWithUnholyMight = 9210, + /// /// support_aura_duration_base_buff_duration /// - SupportAuraDurationBaseBuffDuration = 9207, - + SupportAuraDurationBaseBuffDuration = 9211, + /// /// support_aura_duration_base_reserve_duration /// - SupportAuraDurationBaseReserveDuration = 9208, - + SupportAuraDurationBaseReserveDuration = 9212, + /// /// support_aura_duration_buff_duration /// - SupportAuraDurationBuffDuration = 9209, - + SupportAuraDurationBuffDuration = 9213, + /// /// support_aura_duration_reserve_duration /// - SupportAuraDurationReserveDuration = 9210, - + SupportAuraDurationReserveDuration = 9214, + /// /// local_display_socketed_gems_supported_by_level_x_aura_duration /// - LocalDisplaySocketedGemsSupportedByLevelXAuraDuration = 9211, - + LocalDisplaySocketedGemsSupportedByLevelXAuraDuration = 9215, + /// /// lightning_damage_+%_while_affected_by_herald_of_thunder /// - LightningDamagePctWhileAffectedByHeraldOfThunder = 9212, - + LightningDamagePctWhileAffectedByHeraldOfThunder = 9216, + /// /// fire_damage_+%_while_affected_by_herald_of_ash /// - FireDamagePctWhileAffectedByHeraldOfAsh = 9213, - + FireDamagePctWhileAffectedByHeraldOfAsh = 9217, + /// /// cold_damage_+%_while_affected_by_herald_of_ice /// - ColdDamagePctWhileAffectedByHeraldOfIce = 9214, - + ColdDamagePctWhileAffectedByHeraldOfIce = 9218, + /// /// physical_damage_+%_while_affected_by_herald_of_purity /// - PhysicalDamagePctWhileAffectedByHeraldOfPurity = 9215, - + PhysicalDamagePctWhileAffectedByHeraldOfPurity = 9219, + /// /// chaos_damage_+%_while_affected_by_herald_of_agony /// - ChaosDamagePctWhileAffectedByHeraldOfAgony = 9216, - + ChaosDamagePctWhileAffectedByHeraldOfAgony = 9220, + /// /// herald_of_ice_buff_effect_+% /// - HeraldOfIceBuffEffectPct = 9217, - + HeraldOfIceBuffEffectPct = 9221, + /// /// herald_of_ash_buff_effect_+% /// - HeraldOfAshBuffEffectPct = 9218, - + HeraldOfAshBuffEffectPct = 9222, + /// /// herald_of_agony_buff_effect_+% /// - HeraldOfAgonyBuffEffectPct = 9219, - + HeraldOfAgonyBuffEffectPct = 9223, + /// /// maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder /// - MaximumLightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9220, - + MaximumLightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9224, + /// /// lightning_damage_resistance_%_while_affected_by_herald_of_thunder /// - LightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9221, - + LightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9225, + /// /// maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash /// - MaximumFireDamageResistancePctWhileAffectedByHeraldOfAsh = 9222, - + MaximumFireDamageResistancePctWhileAffectedByHeraldOfAsh = 9226, + /// /// fire_damage_resistance_%_while_affected_by_herald_of_ash /// - FireDamageResistancePctWhileAffectedByHeraldOfAsh = 9223, - + FireDamageResistancePctWhileAffectedByHeraldOfAsh = 9227, + /// /// maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice /// - MaximumColdDamageResistancePctWhileAffectedByHeraldOfIce = 9224, - + MaximumColdDamageResistancePctWhileAffectedByHeraldOfIce = 9228, + /// /// cold_damage_resistance_%_while_affected_by_herald_of_ice /// - ColdDamageResistancePctWhileAffectedByHeraldOfIce = 9225, - + ColdDamageResistancePctWhileAffectedByHeraldOfIce = 9229, + /// /// physical_damage_reduction_%_while_affected_by_herald_of_purity /// - PhysicalDamageReductionPctWhileAffectedByHeraldOfPurity = 9226, - + PhysicalDamageReductionPctWhileAffectedByHeraldOfPurity = 9230, + /// /// chaos_damage_resistance_%_while_affected_by_herald_of_agony /// - ChaosDamageResistancePctWhileAffectedByHeraldOfAgony = 9227, - + ChaosDamageResistancePctWhileAffectedByHeraldOfAgony = 9231, + /// /// sentinel_of_purity_damage_+% /// - SentinelOfPurityDamagePct = 9228, - + SentinelOfPurityDamagePct = 9232, + /// /// agony_crawler_damage_+% /// - AgonyCrawlerDamagePct = 9229, - + AgonyCrawlerDamagePct = 9233, + /// /// chance_to_trigger_socketed_bow_skill_on_bow_attack_% /// - ChanceToTriggerSocketedBowSkillOnBowAttackPct = 9230, - + ChanceToTriggerSocketedBowSkillOnBowAttackPct = 9234, + /// /// local_apply_extra_herald_mod_when_synthesised /// - LocalApplyExtraHeraldModWhenSynthesised = 9231, - + LocalApplyExtraHeraldModWhenSynthesised = 9235, + /// /// local_display_cast_lightning_aegis_on_gain_skill /// - LocalDisplayCastLightningAegisOnGainSkill = 9232, - + LocalDisplayCastLightningAegisOnGainSkill = 9236, + /// /// skill_effect_duration_+%_while_affected_by_malevolence /// - SkillEffectDurationPctWhileAffectedByMalevolence = 9233, - + SkillEffectDurationPctWhileAffectedByMalevolence = 9237, + /// /// chaos_damage_over_time_multiplier_+_while_affected_by_malevolence /// - ChaosDamageOverTimeMultiplierWhileAffectedByMalevolence = 9234, - + ChaosDamageOverTimeMultiplierWhileAffectedByMalevolence = 9238, + /// /// cold_damage_over_time_multiplier_+_while_affected_by_malevolence /// - ColdDamageOverTimeMultiplierWhileAffectedByMalevolence = 9235, - + ColdDamageOverTimeMultiplierWhileAffectedByMalevolence = 9239, + /// /// life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence /// - LifeAndEnergyShieldRecoveryRatePctWhileAffectedByMalevolence = 9236, - + LifeAndEnergyShieldRecoveryRatePctWhileAffectedByMalevolence = 9240, + /// /// unaffected_by_poison_while_affected_by_malevolence /// - UnaffectedByPoisonWhileAffectedByMalevolence = 9237, - + UnaffectedByPoisonWhileAffectedByMalevolence = 9241, + /// /// unaffected_by_bleeding_while_affected_by_malevolence /// - UnaffectedByBleedingWhileAffectedByMalevolence = 9238, - + UnaffectedByBleedingWhileAffectedByMalevolence = 9242, + /// /// your_ailments_deal_damage_faster_%_while_affected_by_malevolence /// - YourAilmentsDealDamageFasterPctWhileAffectedByMalevolence = 9239, - + YourAilmentsDealDamageFasterPctWhileAffectedByMalevolence = 9243, + /// /// critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry /// - CriticalStrikesPenetratesPctElementalResistancesWhileAffectedByZealotry = 9240, - + CriticalStrikesPenetratesPctElementalResistancesWhileAffectedByZealotry = 9244, + /// /// cast_speed_+%_while_affected_by_zealotry /// - CastSpeedPctWhileAffectedByZealotry = 9241, - + CastSpeedPctWhileAffectedByZealotry = 9245, + /// /// consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry /// - ConsecratedGroundEffectLingersForMsAfterLeavingTheAreaWhileAffectedByZealotry = 9242, - + ConsecratedGroundEffectLingersForMsAfterLeavingTheAreaWhileAffectedByZealotry = 9246, + /// /// consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry /// - ConsecratedGroundEnemyDamageTakenPctWhileAffectedByZealotry = 9243, - + ConsecratedGroundEnemyDamageTakenPctWhileAffectedByZealotry = 9247, + /// /// gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry /// - GainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGroundWhileAffectedByZealotry = 9244, - + GainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGroundWhileAffectedByZealotry = 9248, + /// /// maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry /// - MaximumEnergyShieldLeechRatePctWhileAffectedByZealotry = 9245, - + MaximumEnergyShieldLeechRatePctWhileAffectedByZealotry = 9249, + /// /// critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry /// - CriticalStrikeChancePctAgainstEnemiesOnConsecratedGroundWhileAffectedByZealotry = 9246, - + CriticalStrikeChancePctAgainstEnemiesOnConsecratedGroundWhileAffectedByZealotry = 9250, + /// /// virtual_elemental_penetration_%_on_crit /// - VirtualElementalPenetrationPctOnCrit = 9247, - + VirtualElementalPenetrationPctOnCrit = 9251, + /// /// virtual_faster_poison_% /// - VirtualFasterPoisonPct = 9248, - + VirtualFasterPoisonPct = 9252, + /// /// virtual_faster_bleed_% /// - VirtualFasterBleedPct = 9249, - + VirtualFasterBleedPct = 9253, + /// /// base_unaffected_by_bleeding /// - BaseUnaffectedByBleeding = 9250, - + BaseUnaffectedByBleeding = 9254, + /// /// virtual_unaffected_by_bleeding /// - VirtualUnaffectedByBleeding = 9251, - + VirtualUnaffectedByBleeding = 9255, + /// /// base_unaffected_by_poison /// - BaseUnaffectedByPoison = 9252, - + BaseUnaffectedByPoison = 9256, + /// /// virtual_unaffected_by_poison /// - VirtualUnaffectedByPoison = 9253, - + VirtualUnaffectedByPoison = 9257, + /// /// virtual_consecrated_ground_effect_lingers_after_leaving_the_area_for_ms /// - VirtualConsecratedGroundEffectLingersAfterLeavingTheAreaForMs = 9254, - + VirtualConsecratedGroundEffectLingersAfterLeavingTheAreaForMs = 9258, + /// /// virtual_consecrated_ground_enemy_damage_taken_+% /// - VirtualConsecratedGroundEnemyDamageTakenPct = 9255, - + VirtualConsecratedGroundEnemyDamageTakenPct = 9259, + /// /// virtual_gain_arcane_surge_for_4_seconds_when_creating_consecrated_ground /// - VirtualGainArcaneSurgeFor4SecondsWhenCreatingConsecratedGround = 9256, - + VirtualGainArcaneSurgeFor4SecondsWhenCreatingConsecratedGround = 9260, + /// /// virtual_critical_strike_chance_+%_while_on_consecrated_ground /// - VirtualCriticalStrikeChancePctWhileOnConsecratedGround = 9257, - + VirtualCriticalStrikeChancePctWhileOnConsecratedGround = 9261, + /// /// virtual_bleed_duration_+%_final /// - VirtualBleedDurationPctFinal = 9258, - + VirtualBleedDurationPctFinal = 9262, + /// /// gain_onslaught_on_hit_duration_ms /// - GainOnslaughtOnHitDurationMs = 9259, - + GainOnslaughtOnHitDurationMs = 9263, + /// /// physical_damage_%_taken_from_mana_before_life /// - PhysicalDamagePctTakenFromManaBeforeLife = 9260, - + PhysicalDamagePctTakenFromManaBeforeLife = 9264, + /// /// local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius /// - LocalUniqueJewelBlightAppliesWitherForTwoSecondsWith40IntInRadius = 9261, - + LocalUniqueJewelBlightAppliesWitherForTwoSecondsWith40IntInRadius = 9265, + /// /// skill_surge_type_override /// - SkillSurgeTypeOverride = 9262, - + SkillSurgeTypeOverride = 9266, + /// /// spell_chance_to_deal_double_damage_% /// - SpellChanceToDealDoubleDamagePct = 9263, - + SpellChanceToDealDoubleDamagePct = 9267, + /// /// impurity_fire_damage_taken_+%_final /// - ImpurityFireDamageTakenPctFinal = 9264, - + ImpurityFireDamageTakenPctFinal = 9268, + /// /// impurity_lightning_damage_taken_+%_final /// - ImpurityLightningDamageTakenPctFinal = 9265, - + ImpurityLightningDamageTakenPctFinal = 9269, + /// /// impurity_cold_damage_taken_+%_final /// - ImpurityColdDamageTakenPctFinal = 9266, - + ImpurityColdDamageTakenPctFinal = 9270, + /// /// maximum_life_leech_amount_per_leech /// - MaximumLifeLeechAmountPerLeech = 9267, - + MaximumLifeLeechAmountPerLeech = 9271, + /// /// maximum_mana_leech_amount_per_leech /// - MaximumManaLeechAmountPerLeech = 9268, - + MaximumManaLeechAmountPerLeech = 9272, + /// /// maximum_energy_shield_leech_amount_per_leech /// - MaximumEnergyShieldLeechAmountPerLeech = 9269, - + MaximumEnergyShieldLeechAmountPerLeech = 9273, + /// /// maximum_total_recovery_per_minute_from_life_leech /// - MaximumTotalRecoveryPerMinuteFromLifeLeech = 9270, - + MaximumTotalRecoveryPerMinuteFromLifeLeech = 9274, + /// /// maximum_total_recovery_per_minute_from_mana_leech /// - MaximumTotalRecoveryPerMinuteFromManaLeech = 9271, - + MaximumTotalRecoveryPerMinuteFromManaLeech = 9275, + /// /// maximum_total_recovery_per_minute_from_energy_shield_leech /// - MaximumTotalRecoveryPerMinuteFromEnergyShieldLeech = 9272, - + MaximumTotalRecoveryPerMinuteFromEnergyShieldLeech = 9276, + /// /// life_leech_rate_per_minute /// - LifeLeechRatePerMinute = 9273, - + LifeLeechRatePerMinute = 9277, + /// /// mana_leech_rate_per_minute /// - ManaLeechRatePerMinute = 9274, - + ManaLeechRatePerMinute = 9278, + /// /// energy_shield_leech_rate_per_minute /// - EnergyShieldLeechRatePerMinute = 9275, - + EnergyShieldLeechRatePerMinute = 9279, + /// /// total_recovery_per_minute_from_life_leech /// - TotalRecoveryPerMinuteFromLifeLeech = 9276, - + TotalRecoveryPerMinuteFromLifeLeech = 9280, + /// /// total_recovery_per_minute_from_mana_leech /// - TotalRecoveryPerMinuteFromManaLeech = 9277, - + TotalRecoveryPerMinuteFromManaLeech = 9281, + /// /// total_recovery_per_minute_from_energy_shield_leech /// - TotalRecoveryPerMinuteFromEnergyShieldLeech = 9278, - + TotalRecoveryPerMinuteFromEnergyShieldLeech = 9282, + /// /// virtual_life_leech_does_not_stop_at_full_life /// - VirtualLifeLeechDoesNotStopAtFullLife = 9279, - + VirtualLifeLeechDoesNotStopAtFullLife = 9283, + /// /// life_leech_applies_recovery_to_energy_shield /// - LifeLeechAppliesRecoveryToEnergyShield = 9280, - + LifeLeechAppliesRecoveryToEnergyShield = 9284, + /// /// base_life_leech_applies_recovery_to_energy_shield /// - BaseLifeLeechAppliesRecoveryToEnergyShield = 9281, - + BaseLifeLeechAppliesRecoveryToEnergyShield = 9285, + /// /// triggered_skill_uses_main_hand_or_averaged_attack_time_for_pvp_scaling /// - TriggeredSkillUsesMainHandOrAveragedAttackTimeForPvpScaling = 9282, - + TriggeredSkillUsesMainHandOrAveragedAttackTimeForPvpScaling = 9286, + /// /// active_skill_ground_consecration_radius_+ /// - ActiveSkillGroundConsecrationRadius = 9283, - + ActiveSkillGroundConsecrationRadius = 9287, + /// /// support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance /// - SupportScionOnslaughtFor3SecondsOnHittingUniqueEnemyPctChance = 9284, - + SupportScionOnslaughtFor3SecondsOnHittingUniqueEnemyPctChance = 9288, + /// /// support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge /// - SupportArcaneSurgeSpellDamagePctFinalWhileYouHaveArcaneSurge = 9285, - + SupportArcaneSurgeSpellDamagePctFinalWhileYouHaveArcaneSurge = 9289, + /// /// spell_area_of_effect_+% /// - SpellAreaOfEffectPct = 9286, - + SpellAreaOfEffectPct = 9290, + /// /// power_charge_on_spell_block_%_chance /// - PowerChargeOnSpellBlockPctChance = 9287, - + PowerChargeOnSpellBlockPctChance = 9291, + /// /// area_of_effect_+%_while_wielding_staff /// - AreaOfEffectPctWhileWieldingStaff = 9288, - + AreaOfEffectPctWhileWieldingStaff = 9292, + /// /// spell_damage_+%_if_you_have_blocked_recently /// - SpellDamagePctIfYouHaveBlockedRecently = 9289, - + SpellDamagePctIfYouHaveBlockedRecently = 9293, + /// /// avoid_stun_%_while_holding_shield /// - AvoidStunPctWhileHoldingShield = 9290, - + AvoidStunPctWhileHoldingShield = 9294, + /// /// avoid_ailments_%_while_holding_shield /// - AvoidAilmentsPctWhileHoldingShield = 9291, - + AvoidAilmentsPctWhileHoldingShield = 9295, + /// /// maximum_life_leech_amount_per_leech_%_max_life /// - MaximumLifeLeechAmountPerLeechPctMaxLife = 9292, - + MaximumLifeLeechAmountPerLeechPctMaxLife = 9296, + /// /// maximum_mana_leech_amount_per_leech_%_max_mana /// - MaximumManaLeechAmountPerLeechPctMaxMana = 9293, - + MaximumManaLeechAmountPerLeechPctMaxMana = 9297, + /// /// maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield /// - MaximumEnergyShieldLeechAmountPerLeechPctMaxEnergyShield = 9294, - + MaximumEnergyShieldLeechAmountPerLeechPctMaxEnergyShield = 9298, + /// /// divine_tempest_damage_+%_final_while_channelling /// - DivineTempestDamagePctFinalWhileChannelling = 9295, - + DivineTempestDamagePctFinalWhileChannelling = 9299, + /// /// local_movement_speed_+%_if_item_corrupted /// - LocalMovementSpeedPctIfItemCorrupted = 9296, - + LocalMovementSpeedPctIfItemCorrupted = 9300, + /// /// local_attack_and_cast_speed_+%_if_item_corrupted /// - LocalAttackAndCastSpeedPctIfItemCorrupted = 9297, - + LocalAttackAndCastSpeedPctIfItemCorrupted = 9301, + /// /// local_resist_all_elements_%_if_item_corrupted /// - LocalResistAllElementsPctIfItemCorrupted = 9298, - + LocalResistAllElementsPctIfItemCorrupted = 9302, + /// /// local_damage_taken_+%_if_item_corrupted /// - LocalDamageTakenPctIfItemCorrupted = 9299, - + LocalDamageTakenPctIfItemCorrupted = 9303, + /// /// local_maximum_life_+%_if_item_corrupted /// - LocalMaximumLifePctIfItemCorrupted = 9300, - + LocalMaximumLifePctIfItemCorrupted = 9304, + /// /// local_maximum_energy_shield_+%_if_item_corrupted /// - LocalMaximumEnergyShieldPctIfItemCorrupted = 9301, - + LocalMaximumEnergyShieldPctIfItemCorrupted = 9305, + /// /// local_damage_+%_if_item_corrupted /// - LocalDamagePctIfItemCorrupted = 9302, - + LocalDamagePctIfItemCorrupted = 9306, + /// /// local_critical_strike_chance_+%_if_item_corrupted /// - LocalCriticalStrikeChancePctIfItemCorrupted = 9303, - + LocalCriticalStrikeChancePctIfItemCorrupted = 9307, + /// /// local_immune_to_curses_if_item_corrupted /// - LocalImmuneToCursesIfItemCorrupted = 9304, - + LocalImmuneToCursesIfItemCorrupted = 9308, + /// /// local_attack_damage_+%_if_item_corrupted /// - LocalAttackDamagePctIfItemCorrupted = 9305, - + LocalAttackDamagePctIfItemCorrupted = 9309, + /// /// local_spell_damage_+%_if_item_corrupted /// - LocalSpellDamagePctIfItemCorrupted = 9306, - + LocalSpellDamagePctIfItemCorrupted = 9310, + /// /// local_chance_to_intimidate_on_hit_% /// - LocalChanceToIntimidateOnHitPct = 9307, - + LocalChanceToIntimidateOnHitPct = 9311, + /// /// main_hand_chance_to_intimidate_on_hit_% /// - MainHandChanceToIntimidateOnHitPct = 9308, - + MainHandChanceToIntimidateOnHitPct = 9312, + /// /// off_hand_chance_to_intimidate_on_hit_% /// - OffHandChanceToIntimidateOnHitPct = 9309, - + OffHandChanceToIntimidateOnHitPct = 9313, + /// /// synthesis_map_node_grants_no_global_mod /// - SynthesisMapNodeGrantsNoGlobalMod = 9310, - + SynthesisMapNodeGrantsNoGlobalMod = 9314, + /// /// synthesis_map_adjacent_nodes_global_mod_values_doubled /// - SynthesisMapAdjacentNodesGlobalModValuesDoubled = 9311, - + SynthesisMapAdjacentNodesGlobalModValuesDoubled = 9315, + /// /// synthesis_map_node_additional_uses_+ /// - SynthesisMapNodeAdditionalUses = 9312, - + SynthesisMapNodeAdditionalUses = 9316, + /// /// synthesis_map_node_level_+ /// - SynthesisMapNodeLevel = 9313, - + SynthesisMapNodeLevel = 9317, + /// /// synthesis_map_node_monsters_drop_no_items /// - SynthesisMapNodeMonstersDropNoItems = 9314, - + SynthesisMapNodeMonstersDropNoItems = 9318, + /// /// synthesis_map_node_item_quantity_increases_doubled /// - SynthesisMapNodeItemQuantityIncreasesDoubled = 9315, - + SynthesisMapNodeItemQuantityIncreasesDoubled = 9319, + /// /// synthesis_map_node_item_rarity_increases_doubled /// - SynthesisMapNodeItemRarityIncreasesDoubled = 9316, - + SynthesisMapNodeItemRarityIncreasesDoubled = 9320, + /// /// synthesis_map_node_pack_size_increases_doubled /// - SynthesisMapNodePackSizeIncreasesDoubled = 9317, - + SynthesisMapNodePackSizeIncreasesDoubled = 9321, + /// /// synthesis_map_node_grants_additional_global_mod /// - SynthesisMapNodeGrantsAdditionalGlobalMod = 9318, - + SynthesisMapNodeGrantsAdditionalGlobalMod = 9322, + /// /// synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters /// - SynthesisMapNodeGuestMonstersReplacedBySynthesisedMonsters = 9319, - + SynthesisMapNodeGuestMonstersReplacedBySynthesisedMonsters = 9323, + /// /// synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories /// - SynthesisMapNodeGlobalModValuesTripledIfAdjacentSquaresHaveMemories = 9320, - + SynthesisMapNodeGlobalModValuesTripledIfAdjacentSquaresHaveMemories = 9324, + /// /// chance_to_summon_support_ghost_on_hitting_rare_or_unique_% /// - ChanceToSummonSupportGhostOnHittingRareOrUniquePct = 9321, - + ChanceToSummonSupportGhostOnHittingRareOrUniquePct = 9325, + /// /// display_dark_ritual_curse_max_skill_level_requirement /// - DisplayDarkRitualCurseMaxSkillLevelRequirement = 9322, - + DisplayDarkRitualCurseMaxSkillLevelRequirement = 9326, + /// /// map_synthesis_spawn_additional_normal_ambush_chest /// - MapSynthesisSpawnAdditionalNormalAmbushChest = 9323, - + MapSynthesisSpawnAdditionalNormalAmbushChest = 9327, + /// /// map_synthesis_spawn_additional_magic_ambush_chest /// - MapSynthesisSpawnAdditionalMagicAmbushChest = 9324, - + MapSynthesisSpawnAdditionalMagicAmbushChest = 9328, + /// /// map_synthesis_spawn_additional_rare_ambush_chest /// - MapSynthesisSpawnAdditionalRareAmbushChest = 9325, - + MapSynthesisSpawnAdditionalRareAmbushChest = 9329, + /// /// purge_expose_resist_%_matching_highest_element_damage /// - PurgeExposeResistPctMatchingHighestElementDamage = 9326, - + PurgeExposeResistPctMatchingHighestElementDamage = 9330, + /// /// spell_bow_damage_+% /// - SpellBowDamagePct = 9327, - + SpellBowDamagePct = 9331, + /// /// chance_to_gain_frenzy_charge_on_block_attack_% /// - ChanceToGainFrenzyChargeOnBlockAttackPct = 9328, - + ChanceToGainFrenzyChargeOnBlockAttackPct = 9332, + /// /// map_synthesised_monster_pack_size_+% /// - MapSynthesisedMonsterPackSizePct = 9329, - + MapSynthesisedMonsterPackSizePct = 9333, + /// /// virtual_base_spell_cast_time_ms /// - VirtualBaseSpellCastTimeMs = 9330, - + VirtualBaseSpellCastTimeMs = 9334, + /// /// base_spell_cast_time_ms_override /// - BaseSpellCastTimeMsOverride = 9331, - + BaseSpellCastTimeMsOverride = 9335, + /// /// local_strength_and_intelligence_requirement_+ /// - LocalStrengthAndIntelligenceRequirement = 9332, - + LocalStrengthAndIntelligenceRequirement = 9336, + /// /// storm_burst_15_%_chance_to_create_additional_orb /// - StormBurst15PctChanceToCreateAdditionalOrb = 9333, - + StormBurst15PctChanceToCreateAdditionalOrb = 9337, + /// /// map_monster_tre_+% /// - MapMonsterTrePct = 9334, - + MapMonsterTrePct = 9338, + /// /// additive_vaal_skill_damage_modifiers_apply_to_all_skills /// - AdditiveVaalSkillDamageModifiersApplyToAllSkills = 9335, - + AdditiveVaalSkillDamageModifiersApplyToAllSkills = 9339, + /// /// blight_tertiary_skill_effect_duration /// - BlightTertiarySkillEffectDuration = 9336, - + BlightTertiarySkillEffectDuration = 9340, + /// /// virtual_maximum_mana_leech_rate_permyriad_per_minute /// - VirtualMaximumManaLeechRatePermyriadPerMinute = 9337, - + VirtualMaximumManaLeechRatePermyriadPerMinute = 9341, + /// /// maximum_life_leech_rate_+% /// - MaximumLifeLeechRatePct = 9338, - + MaximumLifeLeechRatePct = 9342, + /// /// maximum_mana_leech_rate_+% /// - MaximumManaLeechRatePct = 9339, - + MaximumManaLeechRatePct = 9343, + /// /// maximum_energy_shield_leech_rate_+% /// - MaximumEnergyShieldLeechRatePct = 9340, - + MaximumEnergyShieldLeechRatePct = 9344, + /// /// virtual_maximum_life_leech_amount_per_leech_permyriad_max_life /// - VirtualMaximumLifeLeechAmountPerLeechPermyriadMaxLife = 9341, - + VirtualMaximumLifeLeechAmountPerLeechPermyriadMaxLife = 9345, + /// /// virtual_maximum_mana_leech_amount_per_leech_permyriad_max_mana /// - VirtualMaximumManaLeechAmountPerLeechPermyriadMaxMana = 9342, - + VirtualMaximumManaLeechAmountPerLeechPermyriadMaxMana = 9346, + /// /// virtual_maximum_energy_shield_leech_amount_per_leech_permyriad_max_energy_shield /// - VirtualMaximumEnergyShieldLeechAmountPerLeechPermyriadMaxEnergyShield = 9343, - + VirtualMaximumEnergyShieldLeechAmountPerLeechPermyriadMaxEnergyShield = 9347, + /// /// maximum_life_leech_amount_per_leech_+% /// - MaximumLifeLeechAmountPerLeechPct = 9344, - + MaximumLifeLeechAmountPerLeechPct = 9348, + /// /// maximum_mana_leech_amount_per_leech_+% /// - MaximumManaLeechAmountPerLeechPct = 9345, - + MaximumManaLeechAmountPerLeechPct = 9349, + /// /// maximum_energy_shield_leech_amount_per_leech_+% /// - MaximumEnergyShieldLeechAmountPerLeechPct = 9346, - + MaximumEnergyShieldLeechAmountPerLeechPct = 9350, + /// /// display_totems_no_infusion /// - DisplayTotemsNoInfusion = 9347, - + DisplayTotemsNoInfusion = 9351, + /// /// storm_burst_orb_count /// - StormBurstOrbCount = 9348, - + StormBurstOrbCount = 9352, + /// /// virtual_support_storm_barrier_damage_buff_time_threshold_ms /// - VirtualSupportStormBarrierDamageBuffTimeThresholdMs = 9349, - + VirtualSupportStormBarrierDamageBuffTimeThresholdMs = 9353, + /// /// console_monster_slain_experience_pluspercent_final /// - ConsoleMonsterSlainExperiencePluspercentFinal = 9350, - + ConsoleMonsterSlainExperiencePluspercentFinal = 9354, + /// /// immune_to_synthesis_decay /// - ImmuneToSynthesisDecay = 9351, - + ImmuneToSynthesisDecay = 9355, + /// /// from_table_monster_slain_experience_+%_final /// - FromTableMonsterSlainExperiencePctFinal = 9352, - + FromTableMonsterSlainExperiencePctFinal = 9356, + /// /// maximum_life_leech_rate_+1%_per_12_stat_value /// - MaximumLifeLeechRate1PctPer12StatValue = 9353, - + MaximumLifeLeechRate1PctPer12StatValue = 9357, + /// /// map_disable_breach_abyss /// - MapDisableBreachAbyss = 9354, - + MapDisableBreachAbyss = 9358, + /// /// intermediary_combined_action_speed_+% /// - IntermediaryCombinedActionSpeedPct = 9355, - + IntermediaryCombinedActionSpeedPct = 9359, + /// /// skill_is_triggerable /// - SkillIsTriggerable = 9356, - + SkillIsTriggerable = 9360, + /// /// map_legion_league /// - MapLegionLeague = 9357, - + MapLegionLeague = 9361, + /// /// local_weapon_no_physical_damage /// - LocalWeaponNoPhysicalDamage = 9358, - + LocalWeaponNoPhysicalDamage = 9362, + /// /// main_hand_local_no_physical_damage /// - MainHandLocalNoPhysicalDamage = 9359, - + MainHandLocalNoPhysicalDamage = 9363, + /// /// off_hand_local_no_physical_damage /// - OffHandLocalNoPhysicalDamage = 9360, - + OffHandLocalNoPhysicalDamage = 9364, + /// /// maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry /// - MaximumEsLeechRate1PctPer6StatValueWhileAffectedByZealotry = 9361, - + MaximumEsLeechRate1PctPer6StatValueWhileAffectedByZealotry = 9365, + /// /// attack_mini_knockback_chance_% /// - AttackMiniKnockbackChancePct = 9362, - + AttackMiniKnockbackChancePct = 9366, + /// /// attack_mini_knockback_on_stun_chance_% /// - AttackMiniKnockbackOnStunChancePct = 9363, - + AttackMiniKnockbackOnStunChancePct = 9367, + /// /// instant_movement_skill_delayed /// - InstantMovementSkillDelayed = 9364, - + InstantMovementSkillDelayed = 9368, + /// /// display_storm_burst_jump_time_ms /// - DisplayStormBurstJumpTimeMs = 9365, - + DisplayStormBurstJumpTimeMs = 9369, + /// /// effect_level_requirement_from_gem /// - EffectLevelRequirementFromGem = 9366, - + EffectLevelRequirementFromGem = 9370, + /// /// virtual_critical_strike_multiplier_+ /// - VirtualCriticalStrikeMultiplier = 9367, - + VirtualCriticalStrikeMultiplier = 9371, + /// /// virtual_attack_critical_strike_multiplier_+ /// - VirtualAttackCriticalStrikeMultiplier = 9368, - + VirtualAttackCriticalStrikeMultiplier = 9372, + /// /// cyclone_current_number_of_stages /// - CycloneCurrentNumberOfStages = 9369, - + CycloneCurrentNumberOfStages = 9373, + /// /// cyclone_melee_weapon_range_+_per_stage /// - CycloneMeleeWeaponRangePerStage = 9370, - + CycloneMeleeWeaponRangePerStage = 9374, + /// /// cyclone_stage_decay_time_ms /// - CycloneStageDecayTimeMs = 9371, - + CycloneStageDecayTimeMs = 9375, + /// /// skill_is_physical_skill /// - SkillIsPhysicalSkill = 9372, - + SkillIsPhysicalSkill = 9376, + /// /// map_synthesised_rare_monster_drop_additional_currency /// - MapSynthesisedRareMonsterDropAdditionalCurrency = 9373, - + MapSynthesisedRareMonsterDropAdditionalCurrency = 9377, + /// /// map_synthesised_magic_monster_drop_additional_currency /// - MapSynthesisedMagicMonsterDropAdditionalCurrency = 9374, - + MapSynthesisedMagicMonsterDropAdditionalCurrency = 9378, + /// /// map_synthesised_rare_monster_drop_additional_quality_currency /// - MapSynthesisedRareMonsterDropAdditionalQualityCurrency = 9375, - + MapSynthesisedRareMonsterDropAdditionalQualityCurrency = 9379, + /// /// map_synthesised_magic_monster_drop_additional_quality_currency /// - MapSynthesisedMagicMonsterDropAdditionalQualityCurrency = 9376, - + MapSynthesisedMagicMonsterDropAdditionalQualityCurrency = 9380, + /// /// map_synthesised_rare_monster_drop_additional_currency_shard /// - MapSynthesisedRareMonsterDropAdditionalCurrencyShard = 9377, - + MapSynthesisedRareMonsterDropAdditionalCurrencyShard = 9381, + /// /// map_synthesised_magic_monster_drop_additional_currency_shard /// - MapSynthesisedMagicMonsterDropAdditionalCurrencyShard = 9378, - + MapSynthesisedMagicMonsterDropAdditionalCurrencyShard = 9382, + /// /// map_synthesised_rare_monster_drop_additional_breach_splinter /// - MapSynthesisedRareMonsterDropAdditionalBreachSplinter = 9379, - + MapSynthesisedRareMonsterDropAdditionalBreachSplinter = 9383, + /// /// support_storm_barrier_physical_damage_+%_final_to_apply /// - SupportStormBarrierPhysicalDamagePctFinalToApply = 9380, - + SupportStormBarrierPhysicalDamagePctFinalToApply = 9384, + /// /// virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling /// - VirtualSupportStormBarrierPhysicalDamageTakenPctFinalFromHitsWhileChannelling = 9381, - + VirtualSupportStormBarrierPhysicalDamageTakenPctFinalFromHitsWhileChannelling = 9385, + /// /// attack_critical_strike_chance_+% /// - AttackCriticalStrikeChancePct = 9382, - + AttackCriticalStrikeChancePct = 9386, + /// /// cast_spell_on_linked_attack_crit /// - CastSpellOnLinkedAttackCrit = 9383, - + CastSpellOnLinkedAttackCrit = 9387, + /// /// cast_spell_on_linked_melee_kill /// - CastSpellOnLinkedMeleeKill = 9384, - + CastSpellOnLinkedMeleeKill = 9388, + /// /// cast_spell_while_linked_skill_channelling /// - CastSpellWhileLinkedSkillChannelling = 9385, - + CastSpellWhileLinkedSkillChannelling = 9389, + /// /// triggered_skill_damage_+% /// - TriggeredSkillDamagePct = 9386, - + TriggeredSkillDamagePct = 9390, + /// /// bladestorm_attack_speed_+%_final_while_in_bloodstorm /// - BladestormAttackSpeedPctFinalWhileInBloodstorm = 9387, - + BladestormAttackSpeedPctFinalWhileInBloodstorm = 9391, + /// /// bladestorm_area_of_effect_+%_final_while_in_sandstorm /// - BladestormAreaOfEffectPctFinalWhileInSandstorm = 9388, - + BladestormAreaOfEffectPctFinalWhileInSandstorm = 9392, + /// /// bladestorm_storm_damage_+%_final /// - BladestormStormDamagePctFinal = 9389, - + BladestormStormDamagePctFinal = 9393, + /// /// affected_by_bloodstorm /// - AffectedByBloodstorm = 9390, - + AffectedByBloodstorm = 9394, + /// /// affected_by_sandstorm /// - AffectedBySandstorm = 9391, - + AffectedBySandstorm = 9395, + /// /// bladestorm_maximum_number_of_storms_allowed /// - BladestormMaximumNumberOfStormsAllowed = 9392, - + BladestormMaximumNumberOfStormsAllowed = 9396, + /// /// in_blood_stance /// - InBloodStance = 9393, - + InBloodStance = 9397, + /// /// in_sand_stance /// - InSandStance = 9394, - + InSandStance = 9398, + /// /// chance_to_bleed_on_hit_%_chance_in_blood_stance /// - ChanceToBleedOnHitPctChanceInBloodStance = 9395, - + ChanceToBleedOnHitPctChanceInBloodStance = 9399, + /// /// disable_visual_hit_effect /// - DisableVisualHitEffect = 9396, - + DisableVisualHitEffect = 9400, + /// /// enable_test_hit_epks /// - EnableTestHitEpks = 9397, - + EnableTestHitEpks = 9401, + /// /// disable_test_hit_animation_slow_down /// - DisableTestHitAnimationSlowDown = 9398, - + DisableTestHitAnimationSlowDown = 9402, + /// /// berserk_minimum_rage /// - BerserkMinimumRage = 9399, - + BerserkMinimumRage = 9403, + /// /// affected_by_berserk /// - AffectedByBerserk = 9400, - + AffectedByBerserk = 9404, + /// /// berserk_movement_speed_+%_final /// - BerserkMovementSpeedPctFinal = 9401, - + BerserkMovementSpeedPctFinal = 9405, + /// /// frozen_in_time_damage_taken_+%_final /// - FrozenInTimeDamageTakenPctFinal = 9402, - + FrozenInTimeDamageTakenPctFinal = 9406, + /// /// frozen_in_time /// - FrozenInTime = 9403, - + FrozenInTime = 9407, + /// /// frozen_in_time_action_speed_-% /// - FrozenInTimeActionSpeedPct = 9404, - + FrozenInTimeActionSpeedPct = 9408, + /// /// berserk_attack_damage_+%_final /// - BerserkAttackDamagePctFinal = 9405, - + BerserkAttackDamagePctFinal = 9409, + /// /// berserk_attack_speed_+%_final /// - BerserkAttackSpeedPctFinal = 9406, - + BerserkAttackSpeedPctFinal = 9410, + /// /// bladestorm_movement_speed_+%_while_in_sandstorm /// - BladestormMovementSpeedPctWhileInSandstorm = 9407, - + BladestormMovementSpeedPctWhileInSandstorm = 9411, + /// /// frost_fury_duration_+%_per_stage /// - FrostFuryDurationPctPerStage = 9408, - + FrostFuryDurationPctPerStage = 9412, + /// /// supported_attack_skill_granted_to_replicate_clones /// - SupportedAttackSkillGrantedToReplicateClones = 9409, - + SupportedAttackSkillGrantedToReplicateClones = 9413, + /// /// blitz_small_rage_explosion_damage_+% /// - BlitzSmallRageExplosionDamagePct = 9410, - + BlitzSmallRageExplosionDamagePct = 9414, + /// /// blitz_big_rage_explosion_damage_+% /// - BlitzBigRageExplosionDamagePct = 9411, - + BlitzBigRageExplosionDamagePct = 9415, + /// /// legion_monster_damage_taken_+%_final /// - LegionMonsterDamageTakenPctFinal = 9412, - + LegionMonsterDamageTakenPctFinal = 9416, + /// /// map_possessed_monsters_drop_rusted_scarab_chance_% /// - MapPossessedMonstersDropRustedScarabChancePct = 9413, - + MapPossessedMonstersDropRustedScarabChancePct = 9417, + /// /// map_possessed_monsters_drop_polished_scarab_chance_% /// - MapPossessedMonstersDropPolishedScarabChancePct = 9414, - + MapPossessedMonstersDropPolishedScarabChancePct = 9418, + /// /// map_possessed_monsters_drop_gilded_scarab_chance_% /// - MapPossessedMonstersDropGildedScarabChancePct = 9415, - + MapPossessedMonstersDropGildedScarabChancePct = 9419, + /// /// map_possessed_monsters_drop_unique_chance_% /// - MapPossessedMonstersDropUniqueChancePct = 9416, - + MapPossessedMonstersDropUniqueChancePct = 9420, + /// /// map_possessed_monsters_drop_map_chance_% /// - MapPossessedMonstersDropMapChancePct = 9417, - + MapPossessedMonstersDropMapChancePct = 9421, + /// /// support_slashing_damage_+%_final_from_distance /// - SupportSlashingDamagePctFinalFromDistance = 9418, - + SupportSlashingDamagePctFinalFromDistance = 9422, + /// /// support_slashing_travel_skill_attack_and_cast_speed_+%_final /// - SupportSlashingTravelSkillAttackAndCastSpeedPctFinal = 9419, - + SupportSlashingTravelSkillAttackAndCastSpeedPctFinal = 9423, + /// /// support_blunt_chance_to_trigger_shockwave_on_hit_% /// - SupportBluntChanceToTriggerShockwaveOnHitPct = 9420, - + SupportBluntChanceToTriggerShockwaveOnHitPct = 9424, + /// /// map_boss_drops_additional_currency_shards /// - MapBossDropsAdditionalCurrencyShards = 9421, - + MapBossDropsAdditionalCurrencyShards = 9425, + /// /// map_harbingers_drops_additional_currency_shards /// - MapHarbingersDropsAdditionalCurrencyShards = 9422, - + MapHarbingersDropsAdditionalCurrencyShards = 9426, + /// /// is_harbinger /// - IsHarbinger = 9423, - + IsHarbinger = 9427, + /// /// blood_spears_base_number_of_spears /// - BloodSpearsBaseNumberOfSpears = 9424, - + BloodSpearsBaseNumberOfSpears = 9428, + /// /// chain_strike_cone_radius_+_per_x_rage /// - ChainStrikeConeRadiusPerXRage = 9425, - + ChainStrikeConeRadiusPerXRage = 9429, + /// /// map_boss_accompanied_by_harbinger /// - MapBossAccompaniedByHarbinger = 9426, - + MapBossAccompaniedByHarbinger = 9430, + /// /// quick_guard_damage_absorbed_% /// - QuickGuardDamageAbsorbedPct = 9427, - + QuickGuardDamageAbsorbedPct = 9431, + /// /// quick_guard_damage_absorb_limit /// - QuickGuardDamageAbsorbLimit = 9428, - + QuickGuardDamageAbsorbLimit = 9432, + /// /// monster_drop_item_template_for_veiled_item /// - MonsterDropItemTemplateForVeiledItem = 9429, - + MonsterDropItemTemplateForVeiledItem = 9433, + /// /// monster_drop_item_template_for_double_veiled_item /// - MonsterDropItemTemplateForDoubleVeiledItem = 9430, - + MonsterDropItemTemplateForDoubleVeiledItem = 9434, + /// /// monster_drop_item_template_for_any_unique_item /// - MonsterDropItemTemplateForAnyUniqueItem = 9431, - + MonsterDropItemTemplateForAnyUniqueItem = 9435, + /// /// monster_drop_item_template_for_shaped_map /// - MonsterDropItemTemplateForShapedMap = 9432, - + MonsterDropItemTemplateForShapedMap = 9436, + /// /// monster_drop_item_template_for_elder_map /// - MonsterDropItemTemplateForElderMap = 9433, - + MonsterDropItemTemplateForElderMap = 9437, + /// /// map_legion_league_extra_spawns /// - MapLegionLeagueExtraSpawns = 9434, - + MapLegionLeagueExtraSpawns = 9438, + /// /// blood_spears_damage_+%_final_in_blood_stance /// - BloodSpearsDamagePctFinalInBloodStance = 9435, - + BloodSpearsDamagePctFinalInBloodStance = 9439, + /// /// gain_rage_on_hit /// - GainRageOnHit = 9436, - + GainRageOnHit = 9440, + /// /// map_beyond_portal_spawn_additional_demon_%_chance /// - MapBeyondPortalSpawnAdditionalDemonPctChance = 9437, - + MapBeyondPortalSpawnAdditionalDemonPctChance = 9441, + /// /// possessed_monster_drop_item_template_for_rusted_scarab /// - PossessedMonsterDropItemTemplateForRustedScarab = 9438, - + PossessedMonsterDropItemTemplateForRustedScarab = 9442, + /// /// possessed_monster_drop_item_template_for_polished_scarab /// - PossessedMonsterDropItemTemplateForPolishedScarab = 9439, - + PossessedMonsterDropItemTemplateForPolishedScarab = 9443, + /// /// possessed_monster_drop_item_template_for_gilded_scarab /// - PossessedMonsterDropItemTemplateForGildedScarab = 9440, - + PossessedMonsterDropItemTemplateForGildedScarab = 9444, + /// /// possessed_monster_drop_item_template_for_unique_item /// - PossessedMonsterDropItemTemplateForUniqueItem = 9441, - + PossessedMonsterDropItemTemplateForUniqueItem = 9445, + /// /// possessed_monster_drop_item_template_for_map /// - PossessedMonsterDropItemTemplateForMap = 9442, - + PossessedMonsterDropItemTemplateForMap = 9446, + /// /// monster_drop_item_template_for_league_unique /// - MonsterDropItemTemplateForLeagueUnique = 9443, - + MonsterDropItemTemplateForLeagueUnique = 9447, + /// /// display_strongbox_drops_additional_shaper_or_elder_cards /// - DisplayStrongboxDropsAdditionalShaperOrElderCards = 9444, - + DisplayStrongboxDropsAdditionalShaperOrElderCards = 9448, + /// /// map_contains_additional_packs_of_vaal_monsters /// - MapContainsAdditionalPacksOfVaalMonsters = 9445, - + MapContainsAdditionalPacksOfVaalMonsters = 9449, + /// /// map_vaal_monster_items_drop_corrupted_% /// - MapVaalMonsterItemsDropCorruptedPct = 9446, - + MapVaalMonsterItemsDropCorruptedPct = 9450, + /// /// map_contains_vaal_strongbox_for_sacrifice_fragment /// - MapContainsVaalStrongboxForSacrificeFragment = 9447, - + MapContainsVaalStrongboxForSacrificeFragment = 9451, + /// /// map_contains_vaal_strongbox_for_mortal_fragment /// - MapContainsVaalStrongboxForMortalFragment = 9448, - + MapContainsVaalStrongboxForMortalFragment = 9452, + /// /// melee_damage_+%_final_from_distance /// - MeleeDamagePctFinalFromDistance = 9449, - + MeleeDamagePctFinalFromDistance = 9453, + /// /// ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy /// - IceDashCooldownRecoveryPerNearbyNormalOrMagicEnemy = 9450, - + IceDashCooldownRecoveryPerNearbyNormalOrMagicEnemy = 9454, + /// /// ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy /// - IceDashCooldownRecoveryPerNearbyRareOrUniqueEnemy = 9451, - + IceDashCooldownRecoveryPerNearbyRareOrUniqueEnemy = 9455, + /// /// mortal_call_elemental_damage_taken_+%_final /// - MortalCallElementalDamageTakenPctFinal = 9452, - + MortalCallElementalDamageTakenPctFinal = 9456, + /// /// mortal_call_physical_damage_taken_+%_final /// - MortalCallPhysicalDamageTakenPctFinal = 9453, - + MortalCallPhysicalDamageTakenPctFinal = 9457, + /// /// mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad /// - MortalCallPhysicalDamageTakenPerEnduranceChargeConsumedFinalPermyriad = 9454, - + MortalCallPhysicalDamageTakenPerEnduranceChargeConsumedFinalPermyriad = 9458, + /// /// mortal_call_cooldown_does_not_tick /// - MortalCallCooldownDoesNotTick = 9455, - + MortalCallCooldownDoesNotTick = 9459, + /// /// skill_cooldown_does_not_tick /// - SkillCooldownDoesNotTick = 9456, - + SkillCooldownDoesNotTick = 9460, + /// /// main_hand_chance_to_hit_evasive_monsters_% /// - MainHandChanceToHitEvasiveMonstersPct = 9457, - + MainHandChanceToHitEvasiveMonstersPct = 9461, + /// /// off_hand_chance_to_hit_evasive_monsters_% /// - OffHandChanceToHitEvasiveMonstersPct = 9458, - + OffHandChanceToHitEvasiveMonstersPct = 9462, + /// /// is_usable_as_corpse_when_alive /// - IsUsableAsCorpseWhenAlive = 9459, - + IsUsableAsCorpseWhenAlive = 9463, + /// /// raised_zombies_are_usable_as_corpses_when_alive /// - RaisedZombiesAreUsableAsCorpsesWhenAlive = 9460, - + RaisedZombiesAreUsableAsCorpsesWhenAlive = 9464, + /// /// blood_sand_stance_melee_skills_area_damage_+%_final /// - BloodSandStanceMeleeSkillsAreaDamagePctFinal = 9461, - + BloodSandStanceMeleeSkillsAreaDamagePctFinal = 9465, + /// /// blood_sand_stance_melee_skills_area_of_effect_+%_final /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinal = 9462, - + BloodSandStanceMeleeSkillsAreaOfEffectPctFinal = 9466, + /// /// blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance /// - BloodSandStanceMeleeSkillsAreaDamagePctFinalInBloodStance = 9463, - + BloodSandStanceMeleeSkillsAreaDamagePctFinalInBloodStance = 9467, + /// /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInBloodStance = 9464, - + BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInBloodStance = 9468, + /// /// blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance /// - BloodSandStanceMeleeSkillsAreaDamagePctFinalInSandStance = 9465, - + BloodSandStanceMeleeSkillsAreaDamagePctFinalInSandStance = 9469, + /// /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInSandStance = 9466, - + BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInSandStance = 9470, + /// /// keystone_quiet_might /// - KeystoneQuietMight = 9467, - + KeystoneQuietMight = 9471, + /// /// quiet_might_keystone_spell_damage_+%_final_per_power_charge /// - QuietMightKeystoneSpellDamagePctFinalPerPowerCharge = 9468, - + QuietMightKeystoneSpellDamagePctFinalPerPowerCharge = 9472, + /// /// map_cowards_trial_extra_rhoas /// - MapCowardsTrialExtraRhoas = 9469, - + MapCowardsTrialExtraRhoas = 9473, + /// /// gain_frenzy_power_or_endurance_charge_against_self_%_chance /// - GainFrenzyPowerOrEnduranceChargeAgainstSelfPctChance = 9470, - + GainFrenzyPowerOrEnduranceChargeAgainstSelfPctChance = 9474, + /// /// keystone_magnetic_charge /// - KeystoneMagneticCharge = 9471, - + KeystoneMagneticCharge = 9475, + /// /// share_charges_with_magnetic_charge_owner /// - ShareChargesWithMagneticChargeOwner = 9472, - + ShareChargesWithMagneticChargeOwner = 9476, + /// /// map_contains_additional_tormented_graverobbers /// - MapContainsAdditionalTormentedGraverobbers = 9473, - + MapContainsAdditionalTormentedGraverobbers = 9477, + /// /// map_contains_additional_tormented_betrayers /// - MapContainsAdditionalTormentedBetrayers = 9474, - + MapContainsAdditionalTormentedBetrayers = 9478, + /// /// map_contains_additional_tormented_heretics /// - MapContainsAdditionalTormentedHeretics = 9475, - + MapContainsAdditionalTormentedHeretics = 9479, + /// /// life_recharge_rate_per_minute /// - LifeRechargeRatePerMinute = 9476, - + LifeRechargeRatePerMinute = 9480, + /// /// keystone_eternal_youth /// - KeystoneEternalYouth = 9477, - + KeystoneEternalYouth = 9481, + /// /// keystone_pressure_points /// - KeystonePressurePoints = 9478, - + KeystonePressurePoints = 9482, + /// /// virtual_always_crit /// - VirtualAlwaysCrit = 9479, - + VirtualAlwaysCrit = 9483, + /// /// virtual_no_critical_strike_multiplier /// - VirtualNoCriticalStrikeMultiplier = 9480, - + VirtualNoCriticalStrikeMultiplier = 9484, + /// /// maximum_mana_%_to_convert_to_armour_at_doubled_value /// - MaximumManaPctToConvertToArmourAtDoubledValue = 9481, - + MaximumManaPctToConvertToArmourAtDoubledValue = 9485, + /// /// keystone_mental_conditioning /// - KeystoneMentalConditioning = 9482, - + KeystoneMentalConditioning = 9486, + /// /// tormented_betrayer_spawn_monster_on_death_variation /// - TormentedBetrayerSpawnMonsterOnDeathVariation = 9483, - + TormentedBetrayerSpawnMonsterOnDeathVariation = 9487, + /// /// map_sacrifice_fragment_count /// - MapSacrificeFragmentCount = 9484, - + MapSacrificeFragmentCount = 9488, + /// /// map_mortal_fragment_count /// - MapMortalFragmentCount = 9485, - + MapMortalFragmentCount = 9489, + /// /// map_vaal_sacrifice_strongbox_chance_per_fragment_% /// - MapVaalSacrificeStrongboxChancePerFragmentPct = 9486, - + MapVaalSacrificeStrongboxChancePerFragmentPct = 9490, + /// /// map_vaal_mortal_strongbox_chance_per_fragment_% /// - MapVaalMortalStrongboxChancePerFragmentPct = 9487, - + MapVaalMortalStrongboxChancePerFragmentPct = 9491, + /// /// chest_display_guarded_by_hooded_architect /// - ChestDisplayGuardedByHoodedArchitect = 9488, - + ChestDisplayGuardedByHoodedArchitect = 9492, + /// /// map_cowards_trial_extra_oriath_citizens /// - MapCowardsTrialExtraOriathCitizens = 9489, - + MapCowardsTrialExtraOriathCitizens = 9493, + /// /// keystone_sharp_and_brittle /// - KeystoneSharpAndBrittle = 9490, - + KeystoneSharpAndBrittle = 9494, + /// /// virtual_extra_crit_damage_rolls /// - VirtualExtraCritDamageRolls = 9491, - + VirtualExtraCritDamageRolls = 9495, + /// /// virtual_enemy_extra_crit_damage_rolls /// - VirtualEnemyExtraCritDamageRolls = 9492, - + VirtualEnemyExtraCritDamageRolls = 9496, + /// /// virtual_disable_helmet_slot /// - VirtualDisableHelmetSlot = 9493, - + VirtualDisableHelmetSlot = 9497, + /// /// enable_movement_skill_animation_skipping /// - EnableMovementSkillAnimationSkipping = 9494, - + EnableMovementSkillAnimationSkipping = 9498, + /// /// map_player_disable_soul_gain_prevention /// - MapPlayerDisableSoulGainPrevention = 9495, - + MapPlayerDisableSoulGainPrevention = 9499, + /// /// frost_fury_fire_speed_+%_final_while_channelling /// - FrostFuryFireSpeedPctFinalWhileChannelling = 9496, - + FrostFuryFireSpeedPctFinalWhileChannelling = 9500, + /// /// total_base_damage_per_minute_taken_as_physical /// - TotalBaseDamagePerMinuteTakenAsPhysical = 9497, - + TotalBaseDamagePerMinuteTakenAsPhysical = 9501, + /// /// total_base_damage_per_minute_taken_as_fire /// - TotalBaseDamagePerMinuteTakenAsFire = 9498, - + TotalBaseDamagePerMinuteTakenAsFire = 9502, + /// /// total_base_damage_per_minute_taken_as_cold /// - TotalBaseDamagePerMinuteTakenAsCold = 9499, - + TotalBaseDamagePerMinuteTakenAsCold = 9503, + /// /// total_base_damage_per_minute_taken_as_lightning /// - TotalBaseDamagePerMinuteTakenAsLightning = 9500, - + TotalBaseDamagePerMinuteTakenAsLightning = 9504, + /// /// total_base_damage_per_minute_taken_as_chaos /// - TotalBaseDamagePerMinuteTakenAsChaos = 9501, - + TotalBaseDamagePerMinuteTakenAsChaos = 9505, + /// /// total_base_damage_per_minute_taken_as_physical_unaffected_by_level_scaling /// - TotalBaseDamagePerMinuteTakenAsPhysicalUnaffectedByLevelScaling = 9502, - + TotalBaseDamagePerMinuteTakenAsPhysicalUnaffectedByLevelScaling = 9506, + /// /// total_base_damage_per_minute_taken_as_fire_unaffected_by_level_scaling /// - TotalBaseDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9503, - + TotalBaseDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9507, + /// /// total_base_nonlethal_damage_per_minute_taken_as_fire_unaffected_by_level_scaling /// - TotalBaseNonlethalDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9504, - + TotalBaseNonlethalDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9508, + /// /// total_base_damage_per_minute_taken_as_cold_unaffected_by_level_scaling /// - TotalBaseDamagePerMinuteTakenAsColdUnaffectedByLevelScaling = 9505, - + TotalBaseDamagePerMinuteTakenAsColdUnaffectedByLevelScaling = 9509, + /// /// total_base_damage_per_minute_taken_as_lightning_unaffected_by_level_scaling /// - TotalBaseDamagePerMinuteTakenAsLightningUnaffectedByLevelScaling = 9506, - + TotalBaseDamagePerMinuteTakenAsLightningUnaffectedByLevelScaling = 9510, + /// /// total_base_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling /// - TotalBaseDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9507, - + TotalBaseDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9511, + /// /// total_base_nonlethal_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling /// - TotalBaseNonlethalDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9508, - + TotalBaseNonlethalDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9512, + /// /// fire_damage_over_time_%_taken_as_chaos /// - FireDamageOverTimePctTakenAsChaos = 9509, - + FireDamageOverTimePctTakenAsChaos = 9513, + /// /// cold_damage_over_time_%_taken_as_chaos /// - ColdDamageOverTimePctTakenAsChaos = 9510, - + ColdDamageOverTimePctTakenAsChaos = 9514, + /// /// lightning_damage_over_time_%_taken_as_chaos /// - LightningDamageOverTimePctTakenAsChaos = 9511, - + LightningDamageOverTimePctTakenAsChaos = 9515, + /// /// cold_damage_over_time_%_taken_as_fire /// - ColdDamageOverTimePctTakenAsFire = 9512, - + ColdDamageOverTimePctTakenAsFire = 9516, + /// /// lightning_damage_over_time_%_taken_as_fire /// - LightningDamageOverTimePctTakenAsFire = 9513, - + LightningDamageOverTimePctTakenAsFire = 9517, + /// /// physical_damage_over_time_%_taken_as_other_types /// - PhysicalDamageOverTimePctTakenAsOtherTypes = 9514, - + PhysicalDamageOverTimePctTakenAsOtherTypes = 9518, + /// /// fire_damage_over_time_%_taken_as_other_types /// - FireDamageOverTimePctTakenAsOtherTypes = 9515, - + FireDamageOverTimePctTakenAsOtherTypes = 9519, + /// /// cold_damage_over_time_%_taken_as_other_types /// - ColdDamageOverTimePctTakenAsOtherTypes = 9516, - + ColdDamageOverTimePctTakenAsOtherTypes = 9520, + /// /// lightning_damage_over_time_%_taken_as_other_types /// - LightningDamageOverTimePctTakenAsOtherTypes = 9517, - + LightningDamageOverTimePctTakenAsOtherTypes = 9521, + /// /// chaos_damage_over_time_%_taken_as_other_types /// - ChaosDamageOverTimePctTakenAsOtherTypes = 9518, - + ChaosDamageOverTimePctTakenAsOtherTypes = 9522, + /// /// keystone_corrupted_defences /// - KeystoneCorruptedDefences = 9519, - + KeystoneCorruptedDefences = 9523, + /// /// keystone_miracle_of_thaumaturgy /// - KeystoneMiracleOfThaumaturgy = 9520, - + KeystoneMiracleOfThaumaturgy = 9524, + /// /// keystone_divine_flesh /// - KeystoneDivineFlesh = 9521, - + KeystoneDivineFlesh = 9525, + /// /// keystone_tempered_by_war /// - KeystoneTemperedByWar = 9522, - + KeystoneTemperedByWar = 9526, + /// /// physical_damage_over_time_%_taken_as_chaos /// - PhysicalDamageOverTimePctTakenAsChaos = 9523, - + PhysicalDamageOverTimePctTakenAsChaos = 9527, + /// /// chaos_damage_over_time_%_taken_as_physical /// - ChaosDamageOverTimePctTakenAsPhysical = 9524, - + ChaosDamageOverTimePctTakenAsPhysical = 9528, + /// /// base_physical_damage_over_time_%_taken_as_chaos /// - BasePhysicalDamageOverTimePctTakenAsChaos = 9525, - + BasePhysicalDamageOverTimePctTakenAsChaos = 9529, + /// /// base_chaos_damage_over_time_%_taken_as_physical /// - BaseChaosDamageOverTimePctTakenAsPhysical = 9526, - + BaseChaosDamageOverTimePctTakenAsPhysical = 9530, + /// /// total_nonlethal_chaos_damage_taken_per_minute /// - TotalNonlethalChaosDamageTakenPerMinute = 9527, - + TotalNonlethalChaosDamageTakenPerMinute = 9531, + /// /// total_damage_taken_per_minute_towards_life_damaging_es /// - TotalDamageTakenPerMinuteTowardsLifeDamagingEs = 9528, - + TotalDamageTakenPerMinuteTowardsLifeDamagingEs = 9532, + /// /// total_damage_taken_per_minute_towards_life_bypassing_es /// - TotalDamageTakenPerMinuteTowardsLifeBypassingEs = 9529, - + TotalDamageTakenPerMinuteTowardsLifeBypassingEs = 9533, + /// /// total_damage_taken_per_minute_towards_mana_damaging_es /// - TotalDamageTakenPerMinuteTowardsManaDamagingEs = 9530, - + TotalDamageTakenPerMinuteTowardsManaDamagingEs = 9534, + /// /// total_damage_taken_per_minute_towards_mana_bypassing_es /// - TotalDamageTakenPerMinuteTowardsManaBypassingEs = 9531, - + TotalDamageTakenPerMinuteTowardsManaBypassingEs = 9535, + /// /// total_nonlethal_damage_taken_per_minute_towards_life_damaging_es /// - TotalNonlethalDamageTakenPerMinuteTowardsLifeDamagingEs = 9532, - + TotalNonlethalDamageTakenPerMinuteTowardsLifeDamagingEs = 9536, + /// /// total_nonlethal_damage_taken_per_minute_towards_life_bypassing_es /// - TotalNonlethalDamageTakenPerMinuteTowardsLifeBypassingEs = 9533, - + TotalNonlethalDamageTakenPerMinuteTowardsLifeBypassingEs = 9537, + /// /// total_nonlethal_damage_taken_per_minute_towards_mana_damaging_es /// - TotalNonlethalDamageTakenPerMinuteTowardsManaDamagingEs = 9534, - + TotalNonlethalDamageTakenPerMinuteTowardsManaDamagingEs = 9538, + /// /// total_nonlethal_damage_taken_per_minute_towards_mana_bypassing_es /// - TotalNonlethalDamageTakenPerMinuteTowardsManaBypassingEs = 9535, - + TotalNonlethalDamageTakenPerMinuteTowardsManaBypassingEs = 9539, + /// /// total_nonlethal_damage_taken_per_minute_to_mana /// - TotalNonlethalDamageTakenPerMinuteToMana = 9536, - + TotalNonlethalDamageTakenPerMinuteToMana = 9540, + /// /// physical_damage_taken_per_minute_bypassing_es /// - PhysicalDamageTakenPerMinuteBypassingEs = 9537, - + PhysicalDamageTakenPerMinuteBypassingEs = 9541, + /// /// physical_damage_taken_per_minute_damaging_es /// - PhysicalDamageTakenPerMinuteDamagingEs = 9538, - + PhysicalDamageTakenPerMinuteDamagingEs = 9542, + /// /// physical_damage_taken_per_minute_towards_life_bypassing_es /// - PhysicalDamageTakenPerMinuteTowardsLifeBypassingEs = 9539, - + PhysicalDamageTakenPerMinuteTowardsLifeBypassingEs = 9543, + /// /// physical_damage_taken_per_minute_towards_life_damaging_es /// - PhysicalDamageTakenPerMinuteTowardsLifeDamagingEs = 9540, - + PhysicalDamageTakenPerMinuteTowardsLifeDamagingEs = 9544, + /// /// physical_damage_taken_per_minute_towards_mana_bypassing_es /// - PhysicalDamageTakenPerMinuteTowardsManaBypassingEs = 9541, - + PhysicalDamageTakenPerMinuteTowardsManaBypassingEs = 9545, + /// /// physical_damage_taken_per_minute_towards_mana_damaging_es /// - PhysicalDamageTakenPerMinuteTowardsManaDamagingEs = 9542, - + PhysicalDamageTakenPerMinuteTowardsManaDamagingEs = 9546, + /// /// fire_damage_bypass_energy_shield_% /// - FireDamageBypassEnergyShieldPct = 9543, - + FireDamageBypassEnergyShieldPct = 9547, + /// /// fire_damage_taken_per_minute_bypassing_es /// - FireDamageTakenPerMinuteBypassingEs = 9544, - + FireDamageTakenPerMinuteBypassingEs = 9548, + /// /// fire_damage_taken_per_minute_damaging_es /// - FireDamageTakenPerMinuteDamagingEs = 9545, - + FireDamageTakenPerMinuteDamagingEs = 9549, + /// /// fire_damage_taken_per_minute_towards_life_bypassing_es /// - FireDamageTakenPerMinuteTowardsLifeBypassingEs = 9546, - + FireDamageTakenPerMinuteTowardsLifeBypassingEs = 9550, + /// /// fire_damage_taken_per_minute_towards_life_damaging_es /// - FireDamageTakenPerMinuteTowardsLifeDamagingEs = 9547, - + FireDamageTakenPerMinuteTowardsLifeDamagingEs = 9551, + /// /// fire_damage_taken_per_minute_towards_mana_bypassing_es /// - FireDamageTakenPerMinuteTowardsManaBypassingEs = 9548, - + FireDamageTakenPerMinuteTowardsManaBypassingEs = 9552, + /// /// fire_damage_taken_per_minute_towards_mana_damaging_es /// - FireDamageTakenPerMinuteTowardsManaDamagingEs = 9549, - + FireDamageTakenPerMinuteTowardsManaDamagingEs = 9553, + /// /// nonlethal_fire_damage_taken_per_minute_bypassing_es /// - NonlethalFireDamageTakenPerMinuteBypassingEs = 9550, - + NonlethalFireDamageTakenPerMinuteBypassingEs = 9554, + /// /// nonlethal_fire_damage_taken_per_minute_damaging_es /// - NonlethalFireDamageTakenPerMinuteDamagingEs = 9551, - + NonlethalFireDamageTakenPerMinuteDamagingEs = 9555, + /// /// nonlethal_fire_damage_taken_per_minute_towards_life_bypassing_es /// - NonlethalFireDamageTakenPerMinuteTowardsLifeBypassingEs = 9552, - + NonlethalFireDamageTakenPerMinuteTowardsLifeBypassingEs = 9556, + /// /// nonlethal_fire_damage_taken_per_minute_towards_life_damaging_es /// - NonlethalFireDamageTakenPerMinuteTowardsLifeDamagingEs = 9553, - + NonlethalFireDamageTakenPerMinuteTowardsLifeDamagingEs = 9557, + /// /// nonlethal_fire_damage_taken_per_minute_towards_mana_bypassing_es /// - NonlethalFireDamageTakenPerMinuteTowardsManaBypassingEs = 9554, - + NonlethalFireDamageTakenPerMinuteTowardsManaBypassingEs = 9558, + /// /// nonlethal_fire_damage_taken_per_minute_towards_mana_damaging_es /// - NonlethalFireDamageTakenPerMinuteTowardsManaDamagingEs = 9555, - + NonlethalFireDamageTakenPerMinuteTowardsManaDamagingEs = 9559, + /// /// cold_damage_bypass_energy_shield_% /// - ColdDamageBypassEnergyShieldPct = 9556, - + ColdDamageBypassEnergyShieldPct = 9560, + /// /// cold_damage_taken_per_minute_bypassing_es /// - ColdDamageTakenPerMinuteBypassingEs = 9557, - + ColdDamageTakenPerMinuteBypassingEs = 9561, + /// /// cold_damage_taken_per_minute_damaging_es /// - ColdDamageTakenPerMinuteDamagingEs = 9558, - + ColdDamageTakenPerMinuteDamagingEs = 9562, + /// /// cold_damage_taken_per_minute_towards_life_bypassing_es /// - ColdDamageTakenPerMinuteTowardsLifeBypassingEs = 9559, - + ColdDamageTakenPerMinuteTowardsLifeBypassingEs = 9563, + /// /// cold_damage_taken_per_minute_towards_life_damaging_es /// - ColdDamageTakenPerMinuteTowardsLifeDamagingEs = 9560, - + ColdDamageTakenPerMinuteTowardsLifeDamagingEs = 9564, + /// /// cold_damage_taken_per_minute_towards_mana_bypassing_es /// - ColdDamageTakenPerMinuteTowardsManaBypassingEs = 9561, - + ColdDamageTakenPerMinuteTowardsManaBypassingEs = 9565, + /// /// cold_damage_taken_per_minute_towards_mana_damaging_es /// - ColdDamageTakenPerMinuteTowardsManaDamagingEs = 9562, - + ColdDamageTakenPerMinuteTowardsManaDamagingEs = 9566, + /// /// lightning_damage_bypass_energy_shield_% /// - LightningDamageBypassEnergyShieldPct = 9563, - + LightningDamageBypassEnergyShieldPct = 9567, + /// /// lightning_damage_taken_per_minute_bypassing_es /// - LightningDamageTakenPerMinuteBypassingEs = 9564, - + LightningDamageTakenPerMinuteBypassingEs = 9568, + /// /// lightning_damage_taken_per_minute_damaging_es /// - LightningDamageTakenPerMinuteDamagingEs = 9565, - + LightningDamageTakenPerMinuteDamagingEs = 9569, + /// /// lightning_damage_taken_per_minute_towards_life_bypassing_es /// - LightningDamageTakenPerMinuteTowardsLifeBypassingEs = 9566, - + LightningDamageTakenPerMinuteTowardsLifeBypassingEs = 9570, + /// /// lightning_damage_taken_per_minute_towards_life_damaging_es /// - LightningDamageTakenPerMinuteTowardsLifeDamagingEs = 9567, - + LightningDamageTakenPerMinuteTowardsLifeDamagingEs = 9571, + /// /// lightning_damage_taken_per_minute_towards_mana_bypassing_es /// - LightningDamageTakenPerMinuteTowardsManaBypassingEs = 9568, - + LightningDamageTakenPerMinuteTowardsManaBypassingEs = 9572, + /// /// lightning_damage_taken_per_minute_towards_mana_damaging_es /// - LightningDamageTakenPerMinuteTowardsManaDamagingEs = 9569, - + LightningDamageTakenPerMinuteTowardsManaDamagingEs = 9573, + /// /// chaos_damage_taken_per_minute_bypassing_es /// - ChaosDamageTakenPerMinuteBypassingEs = 9570, - + ChaosDamageTakenPerMinuteBypassingEs = 9574, + /// /// chaos_damage_taken_per_minute_damaging_es /// - ChaosDamageTakenPerMinuteDamagingEs = 9571, - + ChaosDamageTakenPerMinuteDamagingEs = 9575, + /// /// chaos_damage_taken_per_minute_towards_life_bypassing_es /// - ChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9572, - + ChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9576, + /// /// chaos_damage_taken_per_minute_towards_life_damaging_es /// - ChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9573, - + ChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9577, + /// /// chaos_damage_taken_per_minute_towards_mana_bypassing_es /// - ChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9574, - + ChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9578, + /// /// chaos_damage_taken_per_minute_towards_mana_damaging_es /// - ChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9575, - + ChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9579, + /// /// nonlethal_chaos_damage_taken_per_minute_bypassing_es /// - NonlethalChaosDamageTakenPerMinuteBypassingEs = 9576, - + NonlethalChaosDamageTakenPerMinuteBypassingEs = 9580, + /// /// nonlethal_chaos_damage_taken_per_minute_damaging_es /// - NonlethalChaosDamageTakenPerMinuteDamagingEs = 9577, - + NonlethalChaosDamageTakenPerMinuteDamagingEs = 9581, + /// /// nonlethal_chaos_damage_taken_per_minute_towards_life_bypassing_es /// - NonlethalChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9578, - + NonlethalChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9582, + /// /// nonlethal_chaos_damage_taken_per_minute_towards_life_damaging_es /// - NonlethalChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9579, - + NonlethalChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9583, + /// /// nonlethal_chaos_damage_taken_per_minute_towards_mana_bypassing_es /// - NonlethalChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9580, - + NonlethalChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9584, + /// /// nonlethal_chaos_damage_taken_per_minute_towards_mana_damaging_es /// - NonlethalChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9581, - + NonlethalChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9585, + /// /// physical_damage_removed_from_mana_before_life_% /// - PhysicalDamageRemovedFromManaBeforeLifePct = 9582, - + PhysicalDamageRemovedFromManaBeforeLifePct = 9586, + /// /// fire_damage_removed_from_mana_before_life_% /// - FireDamageRemovedFromManaBeforeLifePct = 9583, - + FireDamageRemovedFromManaBeforeLifePct = 9587, + /// /// cold_damage_removed_from_mana_before_life_% /// - ColdDamageRemovedFromManaBeforeLifePct = 9584, - + ColdDamageRemovedFromManaBeforeLifePct = 9588, + /// /// lightning_damage_removed_from_mana_before_life_% /// - LightningDamageRemovedFromManaBeforeLifePct = 9585, - + LightningDamageRemovedFromManaBeforeLifePct = 9589, + /// /// chaos_damage_removed_from_mana_before_life_% /// - ChaosDamageRemovedFromManaBeforeLifePct = 9586, - + ChaosDamageRemovedFromManaBeforeLifePct = 9590, + /// /// virtual_lightning_hit_damage_taken_percent_as_fire /// - VirtualLightningHitDamageTakenPercentAsFire = 9587, - + VirtualLightningHitDamageTakenPercentAsFire = 9591, + /// /// virtual_cold_hit_damage_taken_percent_as_fire /// - VirtualColdHitDamageTakenPercentAsFire = 9588, - + VirtualColdHitDamageTakenPercentAsFire = 9592, + /// /// virtual_maximum_life_%_to_add_as_maximum_energy_shield /// - VirtualMaximumLifePctToAddAsMaximumEnergyShield = 9589, - + VirtualMaximumLifePctToAddAsMaximumEnergyShield = 9593, + /// /// tempered_by_war_keystone_cold_and_lightning_resistance_+%_final /// - TemperedByWarKeystoneColdAndLightningResistancePctFinal = 9590, - + TemperedByWarKeystoneColdAndLightningResistancePctFinal = 9594, + /// /// base_number_of_replicate_minions_allowed /// - BaseNumberOfReplicateMinionsAllowed = 9591, - + BaseNumberOfReplicateMinionsAllowed = 9595, + /// /// number_of_active_replicate_minions /// - NumberOfActiveReplicateMinions = 9592, - + NumberOfActiveReplicateMinions = 9596, + /// /// map_legion_fragment_faction_karui /// - MapLegionFragmentFactionKarui = 9593, - + MapLegionFragmentFactionKarui = 9597, + /// /// map_legion_fragment_faction_maraketh /// - MapLegionFragmentFactionMaraketh = 9594, - + MapLegionFragmentFactionMaraketh = 9598, + /// /// map_legion_fragment_faction_eternal /// - MapLegionFragmentFactionEternal = 9595, - + MapLegionFragmentFactionEternal = 9599, + /// /// map_legion_fragment_faction_templar /// - MapLegionFragmentFactionTemplar = 9596, - + MapLegionFragmentFactionTemplar = 9600, + /// /// map_legion_fragment_faction_vaal /// - MapLegionFragmentFactionVaal = 9597, - + MapLegionFragmentFactionVaal = 9601, + /// /// molten_shell_damage_absorbed_% /// - MoltenShellDamageAbsorbedPct = 9598, - + MoltenShellDamageAbsorbedPct = 9602, + /// /// molten_shell_damage_absorb_limit_%_of_armour /// - MoltenShellDamageAbsorbLimitPctOfArmour = 9599, - + MoltenShellDamageAbsorbLimitPctOfArmour = 9603, + /// /// molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire /// - MoltenShellPctOfAbsorbedDamageDealtAsReflectedFire = 9600, - + MoltenShellPctOfAbsorbedDamageDealtAsReflectedFire = 9604, + /// /// molten_shell_cooldown_does_not_tick /// - MoltenShellCooldownDoesNotTick = 9601, - + MoltenShellCooldownDoesNotTick = 9605, + /// /// affected_by_sand_armour_debuff /// - AffectedBySandArmourDebuff = 9602, - + AffectedBySandArmourDebuff = 9606, + /// /// attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour /// - AttackDamageTakenPctFinalFromEnemiesUnaffectedBySandArmour = 9603, - + AttackDamageTakenPctFinalFromEnemiesUnaffectedBySandArmour = 9607, + /// /// legion_endless_strife_revive_on_death_ms /// - LegionEndlessStrifeReviveOnDeathMs = 9604, - + LegionEndlessStrifeReviveOnDeathMs = 9608, + /// /// cannot_cancel_skill_before_contact_point /// - CannotCancelSkillBeforeContactPoint = 9605, - + CannotCancelSkillBeforeContactPoint = 9609, + /// /// quick_guard_cooldown_does_not_tick /// - QuickGuardCooldownDoesNotTick = 9606, - + QuickGuardCooldownDoesNotTick = 9610, + /// /// damage_taken_goes_to_life_over_4_seconds_% /// - DamageTakenGoesToLifeOver4SecondsPct = 9607, - + DamageTakenGoesToLifeOver4SecondsPct = 9611, + /// /// additional_physical_damage_reduction_%_while_bleeding /// - AdditionalPhysicalDamageReductionPctWhileBleeding = 9608, - + AdditionalPhysicalDamageReductionPctWhileBleeding = 9612, + /// /// blind_art_variation /// - BlindArtVariation = 9609, - + BlindArtVariation = 9613, + /// /// corrupted_defences_keystone_non_chaos_damage_bypass_energy_shield_% /// - CorruptedDefencesKeystoneNonChaosDamageBypassEnergyShieldPct = 9610, - + CorruptedDefencesKeystoneNonChaosDamageBypassEnergyShieldPct = 9614, + /// /// map_player_chance_to_gain_vaal_soul_on_kill_% /// - MapPlayerChanceToGainVaalSoulOnKillPct = 9611, - + MapPlayerChanceToGainVaalSoulOnKillPct = 9615, + /// /// map_cowards_trial_extra_ghosts /// - MapCowardsTrialExtraGhosts = 9612, - + MapCowardsTrialExtraGhosts = 9616, + /// /// map_cowards_trial_extra_phantasms /// - MapCowardsTrialExtraPhantasms = 9613, - + MapCowardsTrialExtraPhantasms = 9617, + /// /// map_cowards_trial_extra_zombies /// - MapCowardsTrialExtraZombies = 9614, - + MapCowardsTrialExtraZombies = 9618, + /// /// map_cowards_trial_extra_raging_spirits /// - MapCowardsTrialExtraRagingSpirits = 9615, - + MapCowardsTrialExtraRagingSpirits = 9619, + /// /// minimum_endurance_charges_while_on_low_life_+ /// - MinimumEnduranceChargesWhileOnLowLife = 9616, - + MinimumEnduranceChargesWhileOnLowLife = 9620, + /// /// minimum_power_charges_while_on_low_life_+ /// - MinimumPowerChargesWhileOnLowLife = 9617, - + MinimumPowerChargesWhileOnLowLife = 9621, + /// /// precision_mana_reservation_+% /// - PrecisionManaReservationPct = 9618, - + PrecisionManaReservationPct = 9622, + /// /// precision_reserves_no_mana /// - PrecisionReservesNoMana = 9619, - + PrecisionReservesNoMana = 9623, + /// /// critical_strike_chance_+%_for_spells_if_you_have_killed_recently /// - CriticalStrikeChancePctForSpellsIfYouHaveKilledRecently = 9620, - + CriticalStrikeChancePctForSpellsIfYouHaveKilledRecently = 9624, + /// /// critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently /// - CriticalStrikeMultiplierForSpellsIfYouHaventKilledRecently = 9621, - + CriticalStrikeMultiplierForSpellsIfYouHaventKilledRecently = 9625, + /// /// impale_support_physical_damage_+%_final /// - ImpaleSupportPhysicalDamagePctFinal = 9622, - + ImpaleSupportPhysicalDamagePctFinal = 9626, + /// /// damage_+%_per_frenzy_power_or_endurance_charge /// - DamagePctPerFrenzyPowerOrEnduranceCharge = 9623, - + DamagePctPerFrenzyPowerOrEnduranceCharge = 9627, + /// /// pressure_points_keystone_cooldown_speed_+%_final /// - PressurePointsKeystoneCooldownSpeedPctFinal = 9624, - + PressurePointsKeystoneCooldownSpeedPctFinal = 9628, + /// /// override_off_hand_base_critical_strike_chance /// - OverrideOffHandBaseCriticalStrikeChance = 9625, - + OverrideOffHandBaseCriticalStrikeChance = 9629, + /// /// virtual_block_%_damage_taken /// - VirtualBlockPctDamageTaken = 9626, - + VirtualBlockPctDamageTaken = 9630, + /// /// base_block_%_damage_taken /// - BaseBlockPctDamageTaken = 9627, - + BaseBlockPctDamageTaken = 9631, + /// /// support_greater_spell_echo_spell_damage_+%_final_per_repeat /// - SupportGreaterSpellEchoSpellDamagePctFinalPerRepeat = 9628, - + SupportGreaterSpellEchoSpellDamagePctFinalPerRepeat = 9632, + /// /// support_greater_spell_echo_area_of_effect_+%_per_repeat /// - SupportGreaterSpellEchoAreaOfEffectPctPerRepeat = 9629, - + SupportGreaterSpellEchoAreaOfEffectPctPerRepeat = 9633, + /// /// spell_damage_+%_final_from_greater_spell_echo /// - SpellDamagePctFinalFromGreaterSpellEcho = 9630, - + SpellDamagePctFinalFromGreaterSpellEcho = 9634, + /// /// local_display_socketed_gems_supported_by_level_x_greater_spell_echo /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterSpellEcho = 9631, - + LocalDisplaySocketedGemsSupportedByLevelXGreaterSpellEcho = 9635, + /// /// spell_damage_+%_per_100_max_life /// - SpellDamagePctPer100MaxLife = 9632, - + SpellDamagePctPer100MaxLife = 9636, + /// /// spell_critical_strike_chance_+%_per_100_max_life /// - SpellCriticalStrikeChancePctPer100MaxLife = 9633, - + SpellCriticalStrikeChancePctPer100MaxLife = 9637, + /// /// sacrifice_%_life_on_spell_skill /// - SacrificePctLifeOnSpellSkill = 9634, - + SacrificePctLifeOnSpellSkill = 9638, + /// /// dexterity_+%_if_strength_higher_than_intelligence /// - DexterityPctIfStrengthHigherThanIntelligence = 9635, - + DexterityPctIfStrengthHigherThanIntelligence = 9639, + /// /// critical_strike_multiplier_+_if_dexterity_higher_than_intelligence /// - CriticalStrikeMultiplierIfDexterityHigherThanIntelligence = 9636, - + CriticalStrikeMultiplierIfDexterityHigherThanIntelligence = 9640, + /// /// elemental_damage_+%_per_10_dexterity /// - ElementalDamagePctPer10Dexterity = 9637, - + ElementalDamagePctPer10Dexterity = 9641, + /// /// map_cowards_trial_extra_skeleton_cannons /// - MapCowardsTrialExtraSkeletonCannons = 9638, - + MapCowardsTrialExtraSkeletonCannons = 9642, + /// /// minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage /// - MinionRagingSpiritPctOfMaximumLifeTakenPerMinuteAsChaosDamage = 9639, - + MinionRagingSpiritPctOfMaximumLifeTakenPerMinuteAsChaosDamage = 9643, + /// /// unique_lose_a_power_charge_when_hit /// - UniqueLoseAPowerChargeWhenHit = 9640, - + UniqueLoseAPowerChargeWhenHit = 9644, + /// /// display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed /// - DisplayFrostFuryAdditiveCastSpeedModifiersApplyToFireSpeed = 9641, - + DisplayFrostFuryAdditiveCastSpeedModifiersApplyToFireSpeed = 9645, + /// /// physical_damage_aura_nearby_enemies_physical_damage_taken_+% /// - PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPct = 9642, - + PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPct = 9646, + /// /// physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max /// - PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPctMax = 9643, - + PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPctMax = 9647, + /// /// berserk_cooldown_does_not_tick /// - BerserkCooldownDoesNotTick = 9644, - + BerserkCooldownDoesNotTick = 9648, + /// /// keystone_glancing_blows /// - KeystoneGlancingBlows = 9645, - + KeystoneGlancingBlows = 9649, + /// /// block_chance_+%_final /// - BlockChancePctFinal = 9646, - + BlockChancePctFinal = 9650, + /// /// spell_block_chance_+%_final /// - SpellBlockChancePctFinal = 9647, - + SpellBlockChancePctFinal = 9651, + /// /// support_slashing_buff_duration_ms /// - SupportSlashingBuffDurationMs = 9648, - + SupportSlashingBuffDurationMs = 9652, + /// /// support_slashing_buff_base_duration_ms /// - SupportSlashingBuffBaseDurationMs = 9649, - + SupportSlashingBuffBaseDurationMs = 9653, + /// /// supported_by_slashing /// - SupportedBySlashing = 9650, - + SupportedBySlashing = 9654, + /// /// minion_raging_spirit_maximum_life_+% /// - MinionRagingSpiritMaximumLifePct = 9651, - + MinionRagingSpiritMaximumLifePct = 9655, + /// /// draining_lasso_action_speed_+%_final /// - DrainingLassoActionSpeedPctFinal = 9652, - + DrainingLassoActionSpeedPctFinal = 9656, + /// /// affected_by_flask_drain /// - AffectedByFlaskDrain = 9653, - + AffectedByFlaskDrain = 9657, + /// /// keystone_emperors_heart /// - KeystoneEmperorsHeart = 9654, - + KeystoneEmperorsHeart = 9658, + /// /// life_recovery_from_flasks_also_recovers_energy_shield /// - LifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9655, - + LifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9659, + /// /// number_of_attached_retract_arrows /// - NumberOfAttachedRetractArrows = 9656, - + NumberOfAttachedRetractArrows = 9660, + /// /// apply_attached_retract_arrow_on_hit /// - ApplyAttachedRetractArrowOnHit = 9657, - + ApplyAttachedRetractArrowOnHit = 9661, + /// /// map_is_legion_endgame_map /// - MapIsLegionEndgameMap = 9658, - + MapIsLegionEndgameMap = 9662, + /// /// display_cowards_trial_waves_of_monsters /// - DisplayCowardsTrialWavesOfMonsters = 9659, - + DisplayCowardsTrialWavesOfMonsters = 9663, + /// /// display_cowards_trial_waves_of_undead_monsters /// - DisplayCowardsTrialWavesOfUndeadMonsters = 9660, - + DisplayCowardsTrialWavesOfUndeadMonsters = 9664, + /// /// raise_zombie_does_not_use_corpses /// - RaiseZombieDoesNotUseCorpses = 9661, - + RaiseZombieDoesNotUseCorpses = 9665, + /// /// axe_damage_+% /// - AxeDamagePct = 9662, - + AxeDamagePct = 9666, + /// /// staff_damage_+% /// - StaffDamagePct = 9663, - + StaffDamagePct = 9667, + /// /// claw_damage_+% /// - ClawDamagePct = 9664, - + ClawDamagePct = 9668, + /// /// dagger_damage_+% /// - DaggerDamagePct = 9665, - + DaggerDamagePct = 9669, + /// /// mace_damage_+% /// - MaceDamagePct = 9666, - + MaceDamagePct = 9670, + /// /// sword_damage_+% /// - SwordDamagePct = 9667, - + SwordDamagePct = 9671, + /// /// damage_while_dual_wielding_+% /// - DamageWhileDualWieldingPct = 9668, - + DamageWhileDualWieldingPct = 9672, + /// /// attack_damage_+%_while_holding_a_shield /// - AttackDamagePctWhileHoldingAShield = 9669, - + AttackDamagePctWhileHoldingAShield = 9673, + /// /// affected_by_precision /// - AffectedByPrecision = 9670, - + AffectedByPrecision = 9674, + /// /// critical_strike_multiplier_+_while_affected_by_precision /// - CriticalStrikeMultiplierWhileAffectedByPrecision = 9671, - + CriticalStrikeMultiplierWhileAffectedByPrecision = 9675, + /// /// attack_damage_+%_while_affected_by_precision /// - AttackDamagePctWhileAffectedByPrecision = 9672, - + AttackDamagePctWhileAffectedByPrecision = 9676, + /// /// recharge_flasks_on_crit_while_affected_by_precision /// - RechargeFlasksOnCritWhileAffectedByPrecision = 9673, - + RechargeFlasksOnCritWhileAffectedByPrecision = 9677, + /// /// attack_speed_+%_while_affected_by_precision /// - AttackSpeedPctWhileAffectedByPrecision = 9674, - + AttackSpeedPctWhileAffectedByPrecision = 9678, + /// /// cannot_be_blinded_while_affected_by_precision /// - CannotBeBlindedWhileAffectedByPrecision = 9675, - + CannotBeBlindedWhileAffectedByPrecision = 9679, + /// /// virtual_cannot_be_blinded /// - VirtualCannotBeBlinded = 9676, - + VirtualCannotBeBlinded = 9680, + /// /// virtual_recharge_flasks_on_crit /// - VirtualRechargeFlasksOnCrit = 9677, - + VirtualRechargeFlasksOnCrit = 9681, + /// /// maximum_life_per_10_intelligence /// - MaximumLifePer10Intelligence = 9678, - + MaximumLifePer10Intelligence = 9682, + /// /// drop_additional_adjacent_maps /// - DropAdditionalAdjacentMaps = 9679, - + DropAdditionalAdjacentMaps = 9683, + /// /// local_unique_jewel_alternate_tree_version /// - LocalUniqueJewelAlternateTreeVersion = 9680, - + LocalUniqueJewelAlternateTreeVersion = 9684, + /// /// local_unique_jewel_alternate_tree_seed /// - LocalUniqueJewelAlternateTreeSeed = 9681, - + LocalUniqueJewelAlternateTreeSeed = 9685, + /// /// local_unique_jewel_alternate_tree_keystone /// - LocalUniqueJewelAlternateTreeKeystone = 9682, - + LocalUniqueJewelAlternateTreeKeystone = 9686, + /// /// keystone_blind_monk /// - KeystoneBlindMonk = 9683, - + KeystoneBlindMonk = 9687, + /// /// should_be_blind_from_keystone /// - ShouldBeBlindFromKeystone = 9684, - + ShouldBeBlindFromKeystone = 9688, + /// /// keystone_blind_monk_melee_critical_strike_chance_+%_final /// - KeystoneBlindMonkMeleeCriticalStrikeChancePctFinal = 9685, - + KeystoneBlindMonkMeleeCriticalStrikeChancePctFinal = 9689, + /// /// console_skill_dont_chase /// - ConsoleSkillDontChase = 9686, - + ConsoleSkillDontChase = 9690, + /// /// local_display_you_get_elemental_ailments_instead_of_allies /// - LocalDisplayYouGetElementalAilmentsInsteadOfAllies = 9687, - + LocalDisplayYouGetElementalAilmentsInsteadOfAllies = 9691, + /// /// redirect_elemental_ailments_to_aura_owner /// - RedirectElementalAilmentsToAuraOwner = 9688, - + RedirectElementalAilmentsToAuraOwner = 9692, + /// /// local_display_grants_skill_smite_level /// - LocalDisplayGrantsSkillSmiteLevel = 9689, - + LocalDisplayGrantsSkillSmiteLevel = 9693, + /// /// base_devotion /// - BaseDevotion = 9690, - + BaseDevotion = 9694, + /// /// light_radius_additive_modifiers_apply_to_damage /// - LightRadiusAdditiveModifiersApplyToDamage = 9691, - + LightRadiusAdditiveModifiersApplyToDamage = 9695, + /// /// light_radius_additive_modifiers_apply_to_area_%_value /// - LightRadiusAdditiveModifiersApplyToAreaPctValue = 9692, - - /// - /// map_zana_setup - /// - MapZanaSetup = 9693, - + LightRadiusAdditiveModifiersApplyToAreaPctValue = 9696, + /// /// slice_and_dice_damage_+%_final_per_5_rage_on_final_strike /// - SliceAndDiceDamagePctFinalPer5RageOnFinalStrike = 9694, - + SliceAndDiceDamagePctFinalPer5RageOnFinalStrike = 9697, + /// /// slice_and_dice_melee_range_+_per_5_rage_on_final_strike /// - SliceAndDiceMeleeRangePer5RageOnFinalStrike = 9695, - + SliceAndDiceMeleeRangePer5RageOnFinalStrike = 9698, + /// /// slice_and_dice_attack_speed_+%_final_on_final_strike /// - SliceAndDiceAttackSpeedPctFinalOnFinalStrike = 9696, - + SliceAndDiceAttackSpeedPctFinalOnFinalStrike = 9699, + /// /// slice_and_dice_minimum_added_physical_damage_on_final_strike /// - SliceAndDiceMinimumAddedPhysicalDamageOnFinalStrike = 9697, - + SliceAndDiceMinimumAddedPhysicalDamageOnFinalStrike = 9700, + /// /// slice_and_dice_maximum_added_physical_damage_on_final_strike /// - SliceAndDiceMaximumAddedPhysicalDamageOnFinalStrike = 9698, - + SliceAndDiceMaximumAddedPhysicalDamageOnFinalStrike = 9701, + /// /// keystone_wind_dancer /// - KeystoneWindDancer = 9699, - + KeystoneWindDancer = 9702, + /// /// keystone_wind_dancer_damage_taken_+%_final_if_have_not_been_hit_recently /// - KeystoneWindDancerDamageTakenPctFinalIfHaveNotBeenHitRecently = 9700, - + KeystoneWindDancerDamageTakenPctFinalIfHaveNotBeenHitRecently = 9703, + /// /// keystone_wind_dancer_evasion_rating_+%_final_if_have_not_been_hit_recently /// - KeystoneWindDancerEvasionRatingPctFinalIfHaveNotBeenHitRecently = 9701, - + KeystoneWindDancerEvasionRatingPctFinalIfHaveNotBeenHitRecently = 9704, + /// /// keystone_wind_dancer_evasion_rating_+%_final_if_have_been_hit_recently /// - KeystoneWindDancerEvasionRatingPctFinalIfHaveBeenHitRecently = 9702, - + KeystoneWindDancerEvasionRatingPctFinalIfHaveBeenHitRecently = 9705, + /// /// map_legion_endless_mode_+_s /// - MapLegionEndlessModeS = 9703, - + MapLegionEndlessModeS = 9706, + /// /// map_legion_endless_pack_size_+% /// - MapLegionEndlessPackSizePct = 9704, - + MapLegionEndlessPackSizePct = 9707, + /// /// map_legion_endless_monolith_pulse_time_ms /// - MapLegionEndlessMonolithPulseTimeMs = 9705, - + MapLegionEndlessMonolithPulseTimeMs = 9708, + /// /// local_flask_life_recovery_from_flasks_also_recovers_energy_shield /// - LocalFlaskLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9706, - + LocalFlaskLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9709, + /// /// precision_mana_reservation_-50%_final /// - PrecisionManaReservation50PctFinal = 9707, - + PrecisionManaReservation50PctFinal = 9710, + /// /// multistrike_damage_+%_final_on_first_repeat /// - MultistrikeDamagePctFinalOnFirstRepeat = 9708, - + MultistrikeDamagePctFinalOnFirstRepeat = 9711, + /// /// multistrike_damage_+%_final_on_second_repeat /// - MultistrikeDamagePctFinalOnSecondRepeat = 9709, - + MultistrikeDamagePctFinalOnSecondRepeat = 9712, + /// /// damage_+%_final_from_multistrike_repeat /// - DamagePctFinalFromMultistrikeRepeat = 9710, - + DamagePctFinalFromMultistrikeRepeat = 9713, + /// /// virtual_life_recovery_from_flasks_also_recovers_energy_shield /// - VirtualLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9711, - + VirtualLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9714, + /// /// keystone_emperors_heart_flask_life_to_recover_pluspercent_final /// - KeystoneEmperorsHeartFlaskLifeToRecoverPluspercentFinal = 9712, - + KeystoneEmperorsHeartFlaskLifeToRecoverPluspercentFinal = 9715, + /// /// gain_unholy_might_for_4_seconds_on_crit /// - GainUnholyMightFor4SecondsOnCrit = 9713, - + GainUnholyMightFor4SecondsOnCrit = 9716, + /// /// keystone_wicked_ward /// - KeystoneWickedWard = 9714, - + KeystoneWickedWard = 9717, + /// /// wicked_ward_keystone_energy_shield_regeneration_rate_+%_final /// - WickedWardKeystoneEnergyShieldRegenerationRatePctFinal = 9715, - + WickedWardKeystoneEnergyShieldRegenerationRatePctFinal = 9718, + /// /// wicked_ward_keystone_maximum_energy_shield_leech_rate_+%_final /// - WickedWardKeystoneMaximumEnergyShieldLeechRatePctFinal = 9716, - + WickedWardKeystoneMaximumEnergyShieldLeechRatePctFinal = 9719, + /// /// trigger_on_bow_attack_% /// - TriggerOnBowAttackPct = 9717, - + TriggerOnBowAttackPct = 9720, + /// /// local_display_trigger_level_x_rain_of_arrows_on_bow_attack /// - LocalDisplayTriggerLevelXRainOfArrowsOnBowAttack = 9718, - + LocalDisplayTriggerLevelXRainOfArrowsOnBowAttack = 9721, + /// /// curses_you_inflict_remain_after_death /// - CursesYouInflictRemainAfterDeath = 9719, - + CursesYouInflictRemainAfterDeath = 9722, + /// /// enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage /// - EnemiesNearCursedCorpsesAreBlindedAndExplodeOnDeathForPctLifeAsPhysicalDamage = 9720, - + EnemiesNearCursedCorpsesAreBlindedAndExplodeOnDeathForPctLifeAsPhysicalDamage = 9723, + /// /// explode_on_death_for_%_life_as_physical_damage /// - ExplodeOnDeathForPctLifeAsPhysicalDamage = 9721, - + ExplodeOnDeathForPctLifeAsPhysicalDamage = 9724, + /// /// support_pulverise_melee_area_damage_+%_final /// - SupportPulveriseMeleeAreaDamagePctFinal = 9722, - + SupportPulveriseMeleeAreaDamagePctFinal = 9725, + /// /// support_pulverise_area_of_effect_+%_final /// - SupportPulveriseAreaOfEffectPctFinal = 9723, - + SupportPulveriseAreaOfEffectPctFinal = 9726, + /// /// support_pulverise_attack_speed_+%_final /// - SupportPulveriseAttackSpeedPctFinal = 9724, - + SupportPulveriseAttackSpeedPctFinal = 9727, + /// /// local_unique_jewel_alternate_tree_internal_revision /// - LocalUniqueJewelAlternateTreeInternalRevision = 9725, - + LocalUniqueJewelAlternateTreeInternalRevision = 9728, + /// /// chest_display_guarded_by_hooded_architect_mortal /// - ChestDisplayGuardedByHoodedArchitectMortal = 9726, - + ChestDisplayGuardedByHoodedArchitectMortal = 9729, + /// /// skill_cooldown_is_2_seconds /// - SkillCooldownIs2Seconds = 9727, - + SkillCooldownIs2Seconds = 9730, + /// /// warcry_skills_cooldown_is_2_seconds /// - WarcrySkillsCooldownIs2Seconds = 9728, - + WarcrySkillsCooldownIs2Seconds = 9731, + /// /// object_inherent_melee_hit_stun_duration_+%_final /// - ObjectInherentMeleeHitStunDurationPctFinal = 9729, - + ObjectInherentMeleeHitStunDurationPctFinal = 9732, + /// /// melee_hit_damage_stun_multiplier_+% /// - MeleeHitDamageStunMultiplierPct = 9730, - + MeleeHitDamageStunMultiplierPct = 9733, + /// /// non_physical_hit_damage_stun_multiplier_+% /// - NonPhysicalHitDamageStunMultiplierPct = 9731, - + NonPhysicalHitDamageStunMultiplierPct = 9734, + /// /// attack_damage_+%_while_you_have_fortify /// - AttackDamagePctWhileYouHaveFortify = 9732, - + AttackDamagePctWhileYouHaveFortify = 9735, + /// /// recover_%_life_when_gaining_adrenaline /// - RecoverPctLifeWhenGainingAdrenaline = 9733, - + RecoverPctLifeWhenGainingAdrenaline = 9736, + /// /// you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage /// - YouAndAlliesAffectedByYourPlacedBannersRegeneratePctLifePerMinutePerStage = 9734, - + YouAndAlliesAffectedByYourPlacedBannersRegeneratePctLifePerMinutePerStage = 9737, + /// /// less_damage_%_taken_from_non_player_sources /// - LessDamagePctTakenFromNonPlayerSources = 9735, - + LessDamagePctTakenFromNonPlayerSources = 9738, + /// /// less_damage_%_dealt_to_non_players /// - LessDamagePctDealtToNonPlayers = 9736, - + LessDamagePctDealtToNonPlayers = 9739, + /// /// use_melee_pattern_range /// - UseMeleePatternRange = 9737, - + UseMeleePatternRange = 9740, + /// /// scale_melee_range_to_actor_scale /// - ScaleMeleeRangeToActorScale = 9738, - + ScaleMeleeRangeToActorScale = 9741, + /// /// chieftain_burning_damage_+%_final /// - ChieftainBurningDamagePctFinal = 9739, - + ChieftainBurningDamagePctFinal = 9742, + /// /// ancestor_totem_parent_activation_range_+% /// - AncestorTotemParentActivationRangePct = 9740, - + AncestorTotemParentActivationRangePct = 9743, + /// /// virtual_ancestor_totem_parent_activation_range /// - VirtualAncestorTotemParentActivationRange = 9741, - + VirtualAncestorTotemParentActivationRange = 9744, + /// /// ancestor_totem_buff_effect_+% /// - AncestorTotemBuffEffectPct = 9742, - + AncestorTotemBuffEffectPct = 9745, + /// /// area_of_effect_+%_while_totem_active /// - AreaOfEffectPctWhileTotemActive = 9743, - + AreaOfEffectPctWhileTotemActive = 9746, + /// /// gain_endurance_charge_%_chance_on_using_fire_skill /// - GainEnduranceChargePctChanceOnUsingFireSkill = 9744, - + GainEnduranceChargePctChanceOnUsingFireSkill = 9747, + /// /// damage_+%_final_per_endurance_charge_lost_recently_up_to_15% /// - DamagePctFinalPerEnduranceChargeLostRecentlyUpTo15Pct = 9745, - + DamagePctFinalPerEnduranceChargeLostRecentlyUpTo15Pct = 9748, + /// /// number_of_endurance_charges_lost_recently /// - NumberOfEnduranceChargesLostRecently = 9746, - + NumberOfEnduranceChargesLostRecently = 9749, + /// /// life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently /// - LifeRecoveryRatePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 9747, - + LifeRecoveryRatePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 9750, + /// /// virtual_main_hand_total_attack_distance_+ /// - VirtualMainHandTotalAttackDistance = 9748, - + VirtualMainHandTotalAttackDistance = 9751, + /// /// virtual_off_hand_total_attack_distance_+ /// - VirtualOffHandTotalAttackDistance = 9749, - + VirtualOffHandTotalAttackDistance = 9752, + /// /// berserker_gain_rage_on_attack_hit_cooldown_ms /// - BerserkerGainRageOnAttackHitCooldownMs = 9750, - + BerserkerGainRageOnAttackHitCooldownMs = 9753, + /// /// chance_to_deal_double_damage_%_per_4_rage /// - ChanceToDealDoubleDamagePctPer4Rage = 9751, - + ChanceToDealDoubleDamagePctPer4Rage = 9754, + /// /// life_loss_%_per_minute_per_rage_while_not_losing_rage /// - LifeLossPctPerMinutePerRageWhileNotLosingRage = 9752, - + LifeLossPctPerMinutePerRageWhileNotLosingRage = 9755, + /// /// berserker_warcry_grant_damage_+%_to_you_and_nearby_allies /// - BerserkerWarcryGrantDamagePctToYouAndNearbyAllies = 9753, - + BerserkerWarcryGrantDamagePctToYouAndNearbyAllies = 9756, + /// /// berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies /// - BerserkerWarcryGrantAttackSpeedPctToYouAndNearbyAllies = 9754, - + BerserkerWarcryGrantAttackSpeedPctToYouAndNearbyAllies = 9757, + /// /// maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently /// - MaximumLifeLeechRatePctIfHaveTakenASavageHitRecently = 9755, - + MaximumLifeLeechRatePctIfHaveTakenASavageHitRecently = 9758, + /// /// attack_speed_+%_if_have_been_hit_recently /// - AttackSpeedPctIfHaveBeenHitRecently = 9756, - + AttackSpeedPctIfHaveBeenHitRecently = 9759, + /// /// attack_minimum_added_physical_damage_if_have_crit_recently /// - AttackMinimumAddedPhysicalDamageIfHaveCritRecently = 9757, - + AttackMinimumAddedPhysicalDamageIfHaveCritRecently = 9760, + /// /// attack_maximum_added_physical_damage_if_have_crit_recently /// - AttackMaximumAddedPhysicalDamageIfHaveCritRecently = 9758, - + AttackMaximumAddedPhysicalDamageIfHaveCritRecently = 9761, + /// /// gain_blitz_charge_%_chance_on_crit /// - GainBlitzChargePctChanceOnCrit = 9759, - + GainBlitzChargePctChanceOnCrit = 9762, + /// /// attack_speed_+%_final_per_blitz_charge /// - AttackSpeedPctFinalPerBlitzCharge = 9760, - + AttackSpeedPctFinalPerBlitzCharge = 9763, + /// /// critical_strike_chance_+%_per_blitz_charge /// - CriticalStrikeChancePctPerBlitzCharge = 9761, - + CriticalStrikeChancePctPerBlitzCharge = 9764, + /// /// maximum_blitz_charges /// - MaximumBlitzCharges = 9762, - + MaximumBlitzCharges = 9765, + /// /// current_blitz_charges /// - CurrentBlitzCharges = 9763, - + CurrentBlitzCharges = 9766, + /// /// virtual_should_not_lose_rage /// - VirtualShouldNotLoseRage = 9764, - + VirtualShouldNotLoseRage = 9767, + /// /// virtual_not_losing_rage /// - VirtualNotLosingRage = 9765, - + VirtualNotLosingRage = 9768, + /// /// keystone_strength_of_blood /// - KeystoneStrengthOfBlood = 9766, - + KeystoneStrengthOfBlood = 9769, + /// /// double_slash_bleeding_damage_+%_final_in_blood_stance /// - DoubleSlashBleedingDamagePctFinalInBloodStance = 9767, - + DoubleSlashBleedingDamagePctFinalInBloodStance = 9770, + /// /// totem_damage_+%_per_10_devotion /// - TotemDamagePctPer10Devotion = 9768, - + TotemDamagePctPer10Devotion = 9771, + /// /// sigil_damage_+%_per_10_devotion /// - SigilDamagePctPer10Devotion = 9769, - + SigilDamagePctPer10Devotion = 9772, + /// /// channelled_skill_damage_+%_per_10_devotion /// - ChannelledSkillDamagePctPer10Devotion = 9770, - + ChannelledSkillDamagePctPer10Devotion = 9773, + /// /// area_damage_+%_per_10_devotion /// - AreaDamagePctPer10Devotion = 9771, - + AreaDamagePctPer10Devotion = 9774, + /// /// elemental_damage_+%_per_10_devotion /// - ElementalDamagePctPer10Devotion = 9772, - + ElementalDamagePctPer10Devotion = 9775, + /// /// elemental_resistance_%_per_10_devotion /// - ElementalResistancePctPer10Devotion = 9773, - + ElementalResistancePctPer10Devotion = 9776, + /// /// non_damaging_ailment_effect_+%_per_10_devotion /// - NonDamagingAilmentEffectPctPer10Devotion = 9774, - + NonDamagingAilmentEffectPctPer10Devotion = 9777, + /// /// self_elemental_status_duration_-%_per_10_devotion /// - SelfElementalStatusDurationPctPer10Devotion = 9775, - + SelfElementalStatusDurationPctPer10Devotion = 9778, + /// /// self_curse_duration_+%_per_10_devotion /// - SelfCurseDurationPctPer10Devotion = 9776, - + SelfCurseDurationPctPer10Devotion = 9779, + /// /// minion_attack_and_cast_speed_+%_per_10_devotion /// - MinionAttackAndCastSpeedPctPer10Devotion = 9777, - + MinionAttackAndCastSpeedPctPer10Devotion = 9780, + /// /// minion_accuracy_rating_per_10_devotion /// - MinionAccuracyRatingPer10Devotion = 9778, - + MinionAccuracyRatingPer10Devotion = 9781, + /// /// mana_regeneration_rate_per_minute_per_10_devotion /// - ManaRegenerationRatePerMinutePer10Devotion = 9779, - + ManaRegenerationRatePerMinutePer10Devotion = 9782, + /// /// mana_cost_+%_per_10_devotion /// - ManaCostPctPer10Devotion = 9780, - + ManaCostPctPer10Devotion = 9783, + /// /// non_curse_aura_effect_+%_per_10_devotion /// - NonCurseAuraEffectPctPer10Devotion = 9781, - + NonCurseAuraEffectPctPer10Devotion = 9784, + /// /// shield_defences_+%_per_10_devotion /// - ShieldDefencesPctPer10Devotion = 9782, - + ShieldDefencesPctPer10Devotion = 9785, + /// /// physical_damage_%_to_convert_to_fire_at_devotion_threshold /// - PhysicalDamagePctToConvertToFireAtDevotionThreshold = 9783, - + PhysicalDamagePctToConvertToFireAtDevotionThreshold = 9786, + /// /// physical_damage_%_to_convert_to_cold_at_devotion_threshold /// - PhysicalDamagePctToConvertToColdAtDevotionThreshold = 9784, - + PhysicalDamagePctToConvertToColdAtDevotionThreshold = 9787, + /// /// physical_damage_%_to_convert_to_lightning_at_devotion_threshold /// - PhysicalDamagePctToConvertToLightningAtDevotionThreshold = 9785, - + PhysicalDamagePctToConvertToLightningAtDevotionThreshold = 9788, + /// /// mana_%_to_add_as_energy_shield_at_devotion_threshold /// - ManaPctToAddAsEnergyShieldAtDevotionThreshold = 9786, - + ManaPctToAddAsEnergyShieldAtDevotionThreshold = 9789, + /// /// gain_arcane_surge_on_hit_at_devotion_threshold /// - GainArcaneSurgeOnHitAtDevotionThreshold = 9787, - + GainArcaneSurgeOnHitAtDevotionThreshold = 9790, + /// /// minimum_endurance_charges_at_devotion_threshold /// - MinimumEnduranceChargesAtDevotionThreshold = 9788, - + MinimumEnduranceChargesAtDevotionThreshold = 9791, + /// /// minimum_power_charges_at_devotion_threshold /// - MinimumPowerChargesAtDevotionThreshold = 9789, - + MinimumPowerChargesAtDevotionThreshold = 9792, + /// /// minimum_frenzy_charges_at_devotion_threshold /// - MinimumFrenzyChargesAtDevotionThreshold = 9790, - + MinimumFrenzyChargesAtDevotionThreshold = 9793, + /// /// immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold /// - ImmuneToElementalAilmentsWhileOnConsecratedGroundAtDevotionThreshold = 9791, - + ImmuneToElementalAilmentsWhileOnConsecratedGroundAtDevotionThreshold = 9794, + /// /// physical_damage_reduction_%_at_devotion_threshold /// - PhysicalDamageReductionPctAtDevotionThreshold = 9792, - + PhysicalDamageReductionPctAtDevotionThreshold = 9795, + /// /// additional_maximum_all_resistances_%_at_devotion_threshold /// - AdditionalMaximumAllResistancesPctAtDevotionThreshold = 9793, - + AdditionalMaximumAllResistancesPctAtDevotionThreshold = 9796, + /// /// inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold /// - InflictFireExposureOnHitPctChanceAtDevotionThreshold = 9794, - + InflictFireExposureOnHitPctChanceAtDevotionThreshold = 9797, + /// /// inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold /// - InflictColdExposureOnHitPctChanceAtDevotionThreshold = 9795, - + InflictColdExposureOnHitPctChanceAtDevotionThreshold = 9798, + /// /// inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold /// - InflictLightningExposureOnHitPctChanceAtDevotionThreshold = 9796, - + InflictLightningExposureOnHitPctChanceAtDevotionThreshold = 9799, + /// /// combined_shield_defences_+% /// - CombinedShieldDefencesPct = 9797, - + CombinedShieldDefencesPct = 9800, + /// /// virtual_totem_damage_+% /// - VirtualTotemDamagePct = 9798, - + VirtualTotemDamagePct = 9801, + /// /// virtual_sigil_damage_+% /// - VirtualSigilDamagePct = 9799, - + VirtualSigilDamagePct = 9802, + /// /// virtual_channelled_skill_damage_+% /// - VirtualChannelledSkillDamagePct = 9800, - + VirtualChannelledSkillDamagePct = 9803, + /// /// virtual_additional_maximum_all_resistances_% /// - VirtualAdditionalMaximumAllResistancesPct = 9801, - + VirtualAdditionalMaximumAllResistancesPct = 9804, + /// /// virtual_non_damaging_ailment_effect_+% /// - VirtualNonDamagingAilmentEffectPct = 9802, - + VirtualNonDamagingAilmentEffectPct = 9805, + /// /// virtual_self_elemental_status_duration_-% /// - VirtualSelfElementalStatusDurationPct = 9803, - + VirtualSelfElementalStatusDurationPct = 9806, + /// /// virtual_self_curse_duration_+% /// - VirtualSelfCurseDurationPct = 9804, - + VirtualSelfCurseDurationPct = 9807, + /// /// virtual_minion_accuracy_rating /// - VirtualMinionAccuracyRating = 9805, - + VirtualMinionAccuracyRating = 9808, + /// /// virtual_gain_arcane_surge_on_hit_%_chance /// - VirtualGainArcaneSurgeOnHitPctChance = 9806, - + VirtualGainArcaneSurgeOnHitPctChance = 9809, + /// /// virtual_inflict_fire_exposure_on_hit_%_chance /// - VirtualInflictFireExposureOnHitPctChance = 9807, - + VirtualInflictFireExposureOnHitPctChance = 9810, + /// /// virtual_inflict_cold_exposure_on_hit_%_chance /// - VirtualInflictColdExposureOnHitPctChance = 9808, - + VirtualInflictColdExposureOnHitPctChance = 9811, + /// /// virtual_inflict_lightning_exposure_on_hit_%_chance /// - VirtualInflictLightningExposureOnHitPctChance = 9809, - + VirtualInflictLightningExposureOnHitPctChance = 9812, + /// /// monster_life_+%_final_from_rarity_table /// - MonsterLifePctFinalFromRarityTable = 9810, - + MonsterLifePctFinalFromRarityTable = 9813, + /// /// keystone_mortal_conviction /// - KeystoneMortalConviction = 9811, - + KeystoneMortalConviction = 9814, + /// /// keystone_supreme_ego /// - KeystoneSupremeEgo = 9812, - + KeystoneSupremeEgo = 9815, + /// /// virtual_no_mana_reserved /// - VirtualNoManaReserved = 9813, - + VirtualNoManaReserved = 9816, + /// /// life_leech_on_any_damage_when_hit_by_attack_permyriad /// - LifeLeechOnAnyDamageWhenHitByAttackPermyriad = 9814, - + LifeLeechOnAnyDamageWhenHitByAttackPermyriad = 9817, + /// /// mana_leech_on_any_damage_when_hit_by_attack_permyriad /// - ManaLeechOnAnyDamageWhenHitByAttackPermyriad = 9815, - + ManaLeechOnAnyDamageWhenHitByAttackPermyriad = 9818, + /// /// legion_reward_type_index /// - LegionRewardTypeIndex = 9816, - + LegionRewardTypeIndex = 9819, + /// /// slayer_damage_+%_final_against_unique_enemies /// - SlayerDamagePctFinalAgainstUniqueEnemies = 9817, - + SlayerDamagePctFinalAgainstUniqueEnemies = 9820, + /// /// damage_+%_final_from_slayer /// - DamagePctFinalFromSlayer = 9818, - + DamagePctFinalFromSlayer = 9821, + /// /// gain_movement_speed_+%_for_20_seconds_on_kill /// - GainMovementSpeedPctFor20SecondsOnKill = 9819, - + GainMovementSpeedPctFor20SecondsOnKill = 9822, + /// /// gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy /// - GainAttackSpeedPctFor20SecondsOnKillingRareOrUniqueEnemy = 9820, - + GainAttackSpeedPctFor20SecondsOnKillingRareOrUniqueEnemy = 9823, + /// /// damage_taken_+%_while_leeching /// - DamageTakenPctWhileLeeching = 9821, - + DamageTakenPctWhileLeeching = 9824, + /// /// attack_damage_+%_while_leeching /// - AttackDamagePctWhileLeeching = 9822, - + AttackDamagePctWhileLeeching = 9825, + /// /// slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50% /// - SlayerAreaOfEffectPctPerEnemyKilledRecentlyUpTo50Pct = 9823, - + SlayerAreaOfEffectPctPerEnemyKilledRecentlyUpTo50Pct = 9826, + /// /// area_skill_accuracy_rating_+% /// - AreaSkillAccuracyRatingPct = 9824, - + AreaSkillAccuracyRatingPct = 9827, + /// /// maximum_endurance_charges_is_equal_to_maximum_frenzy_charges /// - MaximumEnduranceChargesIsEqualToMaximumFrenzyCharges = 9825, - + MaximumEnduranceChargesIsEqualToMaximumFrenzyCharges = 9828, + /// /// override_weapon_base_critical_strike_chance /// - OverrideWeaponBaseCriticalStrikeChance = 9826, - + OverrideWeaponBaseCriticalStrikeChance = 9829, + /// /// slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100 /// - SlayerCriticalStrikeMultiplierPerNearbyEnemyUpTo100 = 9827, - + SlayerCriticalStrikeMultiplierPerNearbyEnemyUpTo100 = 9830, + /// /// track_number_of_enemies_killed_recently /// - TrackNumberOfEnemiesKilledRecently = 9828, - + TrackNumberOfEnemiesKilledRecently = 9831, + /// /// skill_is_area_skill /// - SkillIsAreaSkill = 9829, - + SkillIsAreaSkill = 9832, + /// /// evasion_rating_+%_when_on_full_life /// - EvasionRatingPctWhenOnFullLife = 9830, - + EvasionRatingPctWhenOnFullLife = 9833, + /// /// flicker_strike_buff_movement_speed_+% /// - FlickerStrikeBuffMovementSpeedPct = 9831, - + FlickerStrikeBuffMovementSpeedPct = 9834, + /// /// flicker_strike_buff_duration_ms /// - FlickerStrikeBuffDurationMs = 9832, - + FlickerStrikeBuffDurationMs = 9835, + /// /// pride_physical_damage_taken_+%_final /// - PridePhysicalDamageTakenPctFinal = 9833, - + PridePhysicalDamageTakenPctFinal = 9836, + /// /// kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms /// - KaomsPrimacyGainRageOnAttackCritCooldownMs = 9834, - + KaomsPrimacyGainRageOnAttackCritCooldownMs = 9837, + /// /// physical_damage_%_to_add_as_fire_per_rage /// - PhysicalDamagePctToAddAsFirePerRage = 9835, - + PhysicalDamagePctToAddAsFirePerRage = 9838, + /// /// deal_double_damage_to_enemies_on_full_life /// - DealDoubleDamageToEnemiesOnFullLife = 9836, - + DealDoubleDamageToEnemiesOnFullLife = 9839, + /// /// skill_is_guard_skill /// - SkillIsGuardSkill = 9837, - + SkillIsGuardSkill = 9840, + /// /// skill_is_travel_skill /// - SkillIsTravelSkill = 9838, - + SkillIsTravelSkill = 9841, + /// /// critical_strike_multiplier_is_300 /// - CriticalStrikeMultiplierIs300 = 9839, - + CriticalStrikeMultiplierIs300 = 9842, + /// /// spell_cast_time_cannot_be_modified /// - SpellCastTimeCannotBeModified = 9840, - + SpellCastTimeCannotBeModified = 9843, + /// /// dual_strike_critical_strike_chance_+%_final /// - DualStrikeCriticalStrikeChancePctFinal = 9841, - + DualStrikeCriticalStrikeChancePctFinal = 9844, + /// /// dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life /// - DualStrikeCriticalStrikeChancePctFinalAgainstEnemiesOnFullLife = 9842, - + DualStrikeCriticalStrikeChancePctFinalAgainstEnemiesOnFullLife = 9845, + /// /// dual_strike_damage_+%_final /// - DualStrikeDamagePctFinal = 9843, - + DualStrikeDamagePctFinal = 9846, + /// /// dual_strike_damage_+%_final_against_enemies_on_full_life /// - DualStrikeDamagePctFinalAgainstEnemiesOnFullLife = 9844, - + DualStrikeDamagePctFinalAgainstEnemiesOnFullLife = 9847, + /// /// puncture_bleeding_damage_+%_final /// - PunctureBleedingDamagePctFinal = 9845, - + PunctureBleedingDamagePctFinal = 9848, + /// /// withered_on_hit_for_2_seconds_%_chance /// - WitheredOnHitFor2SecondsPctChance = 9846, - + WitheredOnHitFor2SecondsPctChance = 9849, + /// /// melee_defer_damage_prediction /// - MeleeDeferDamagePrediction = 9847, - + MeleeDeferDamagePrediction = 9850, + /// /// frenzy_skill_attack_damage_+%_final_per_frenzy_charge /// - FrenzySkillAttackDamagePctFinalPerFrenzyCharge = 9848, - + FrenzySkillAttackDamagePctFinalPerFrenzyCharge = 9851, + /// /// frenzy_skill_attack_speed_+%_final_per_frenzy_charge /// - FrenzySkillAttackSpeedPctFinalPerFrenzyCharge = 9849, - + FrenzySkillAttackSpeedPctFinalPerFrenzyCharge = 9852, + /// /// prevent_incubator_completion /// - PreventIncubatorCompletion = 9850, - + PreventIncubatorCompletion = 9853, + /// /// local_chance_for_poison_damage_+300%_final_inflicted_with_weapon /// - LocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9851, - + LocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9854, + /// /// support_rage_gain_rage_on_melee_hit_cooldown_ms /// - SupportRageGainRageOnMeleeHitCooldownMs = 9852, - + SupportRageGainRageOnMeleeHitCooldownMs = 9855, + /// /// cannot_gain_rage_from_rage_support /// - CannotGainRageFromRageSupport = 9853, - + CannotGainRageFromRageSupport = 9856, + /// /// cannot_gain_rage_from_berserker /// - CannotGainRageFromBerserker = 9854, - + CannotGainRageFromBerserker = 9857, + /// /// cannot_gain_rage_from_kaoms_primacy /// - CannotGainRageFromKaomsPrimacy = 9855, - + CannotGainRageFromKaomsPrimacy = 9858, + /// /// attack_minimum_added_physical_damage_with_at_least_10_rage /// - AttackMinimumAddedPhysicalDamageWithAtLeast10Rage = 9856, - + AttackMinimumAddedPhysicalDamageWithAtLeast10Rage = 9859, + /// /// attack_maximum_added_physical_damage_with_at_least_10_rage /// - AttackMaximumAddedPhysicalDamageWithAtLeast10Rage = 9857, - + AttackMaximumAddedPhysicalDamageWithAtLeast10Rage = 9860, + /// /// attack_minimum_added_physical_damage_per_10_rage /// - AttackMinimumAddedPhysicalDamagePer10Rage = 9858, - + AttackMinimumAddedPhysicalDamagePer10Rage = 9861, + /// /// attack_maximum_added_physical_damage_per_10_rage /// - AttackMaximumAddedPhysicalDamagePer10Rage = 9859, - + AttackMaximumAddedPhysicalDamagePer10Rage = 9862, + /// /// local_display_socketed_gems_supported_by_level_x_pulverise /// - LocalDisplaySocketedGemsSupportedByLevelXPulverise = 9860, - + LocalDisplaySocketedGemsSupportedByLevelXPulverise = 9863, + /// /// local_display_socketed_gems_supported_by_level_x_rage /// - LocalDisplaySocketedGemsSupportedByLevelXRage = 9861, - + LocalDisplaySocketedGemsSupportedByLevelXRage = 9864, + /// /// force_old_melee_behaviour /// - ForceOldMeleeBehaviour = 9862, - + ForceOldMeleeBehaviour = 9865, + /// /// maximum_challenger_charges /// - MaximumChallengerCharges = 9863, - + MaximumChallengerCharges = 9866, + /// /// current_challenger_charges /// - CurrentChallengerCharges = 9864, - + CurrentChallengerCharges = 9867, + /// /// gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance /// - GainChallengerChargePctChanceOnHittingRareOrUniqueEnemyInBloodStance = 9865, - + GainChallengerChargePctChanceOnHittingRareOrUniqueEnemyInBloodStance = 9868, + /// /// gain_challenger_charge_%_chance_on_kill_in_sand_stance /// - GainChallengerChargePctChanceOnKillInSandStance = 9866, - + GainChallengerChargePctChanceOnKillInSandStance = 9869, + /// /// attack_and_movement_speed_+%_final_per_challenger_charge /// - AttackAndMovementSpeedPctFinalPerChallengerCharge = 9867, - + AttackAndMovementSpeedPctFinalPerChallengerCharge = 9870, + /// /// local_display_grants_skill_pride_level /// - LocalDisplayGrantsSkillPrideLevel = 9868, - + LocalDisplayGrantsSkillPrideLevel = 9871, + /// /// pride_mana_reservation_+% /// - PrideManaReservationPct = 9869, - + PrideManaReservationPct = 9872, + /// /// pride_aura_effect_+% /// - PrideAuraEffectPct = 9870, - + PrideAuraEffectPct = 9873, + /// /// pride_reserves_no_mana /// - PrideReservesNoMana = 9871, - + PrideReservesNoMana = 9874, + /// /// pride_chance_to_deal_double_damage_% /// - PrideChanceToDealDoubleDamagePct = 9872, - + PrideChanceToDealDoubleDamagePct = 9875, + /// /// pride_intimidate_enemy_for_4_seconds_on_hit /// - PrideIntimidateEnemyFor4SecondsOnHit = 9873, - + PrideIntimidateEnemyFor4SecondsOnHit = 9876, + /// /// pride_physical_damage_+% /// - PridePhysicalDamagePct = 9874, - + PridePhysicalDamagePct = 9877, + /// /// pride_chance_to_impale_with_attacks_% /// - PrideChanceToImpaleWithAttacksPct = 9875, - + PrideChanceToImpaleWithAttacksPct = 9878, + /// /// virtual_impaled_debuff_number_of_reflected_hits /// - VirtualImpaledDebuffNumberOfReflectedHits = 9876, - + VirtualImpaledDebuffNumberOfReflectedHits = 9879, + /// /// pride_your_impaled_debuff_lasts_+_additional_hits /// - PrideYourImpaledDebuffLastsAdditionalHits = 9877, - + PrideYourImpaledDebuffLastsAdditionalHits = 9880, + /// /// using_pride /// - UsingPride = 9878, - + UsingPride = 9881, + /// /// main_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon /// - MainHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9879, - + MainHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9882, + /// /// main_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon /// - MainHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9880, - + MainHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9883, + /// /// main_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon /// - MainHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9881, - + MainHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9884, + /// /// off_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon /// - OffHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9882, - + OffHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9885, + /// /// off_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon /// - OffHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9883, - + OffHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9886, + /// /// off_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon /// - OffHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9884, - + OffHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9887, + /// /// cyclone_max_number_of_stages /// - CycloneMaxNumberOfStages = 9885, - + CycloneMaxNumberOfStages = 9888, + /// /// display_modifiers_to_melee_attack_range_apply_to_skill_radius /// - DisplayModifiersToMeleeAttackRangeApplyToSkillRadius = 9886, - + DisplayModifiersToMeleeAttackRangeApplyToSkillRadius = 9889, + /// /// support_fortify_ailment_damage_+%_final_from_melee_hits /// - SupportFortifyAilmentDamagePctFinalFromMeleeHits = 9887, - + SupportFortifyAilmentDamagePctFinalFromMeleeHits = 9890, + /// /// support_fortify_melee_damage_+%_final /// - SupportFortifyMeleeDamagePctFinal = 9888, - + SupportFortifyMeleeDamagePctFinal = 9891, + /// /// monster_aggro_radius_+%_against_non_player_team /// - MonsterAggroRadiusPctAgainstNonPlayerTeam = 9889, - + MonsterAggroRadiusPctAgainstNonPlayerTeam = 9892, + /// /// map_essence_monolith_contains_additional_essence_of_corruption /// - MapEssenceMonolithContainsAdditionalEssenceOfCorruption = 9890, - + MapEssenceMonolithContainsAdditionalEssenceOfCorruption = 9893, + /// /// slayer_damage_+%_final_from_distance /// - SlayerDamagePctFinalFromDistance = 9891, - + SlayerDamagePctFinalFromDistance = 9894, + /// /// glacial_hammer_third_hit_freeze_as_though_dealt_damage_+% /// - GlacialHammerThirdHitFreezeAsThoughDealtDamagePct = 9892, - + GlacialHammerThirdHitFreezeAsThoughDealtDamagePct = 9895, + /// /// staff_elemental_damage_+% /// - StaffElementalDamagePct = 9893, - + StaffElementalDamagePct = 9896, + /// /// map_essence_monolith_contains_essence_of_corruption_% /// - MapEssenceMonolithContainsEssenceOfCorruptionPct = 9894, - + MapEssenceMonolithContainsEssenceOfCorruptionPct = 9897, + /// /// supported_skill_can_only_use_axe_and_sword /// - SupportedSkillCanOnlyUseAxeAndSword = 9895, - + SupportedSkillCanOnlyUseAxeAndSword = 9898, + /// /// supported_skill_can_only_use_mace_and_staff /// - SupportedSkillCanOnlyUseMaceAndStaff = 9896, - + SupportedSkillCanOnlyUseMaceAndStaff = 9899, + /// /// ratio_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad /// - RatioDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9897, - + RatioDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9900, + /// /// ratio_nonlethal_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad /// - RatioNonlethalDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9898, - + RatioNonlethalDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9901, + /// /// virtual_mana_degeneration_per_minute /// - VirtualManaDegenerationPerMinute = 9899, - + VirtualManaDegenerationPerMinute = 9902, + /// /// local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius /// - LocalUniqueJewelSpectralShieldThrowAdditionalChainsWithTotal40StrDexInRadius = 9900, - + LocalUniqueJewelSpectralShieldThrowAdditionalChainsWithTotal40StrDexInRadius = 9903, + /// /// local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius /// - LocalUniqueJewelSpectralShieldThrowFireShardsOnChainWithTotal40StrDexInRadius = 9901, - + LocalUniqueJewelSpectralShieldThrowFireShardsOnChainWithTotal40StrDexInRadius = 9904, + /// /// local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius /// - LocalUniqueJewelSpectralShieldThrowLessShardProjectilesWithTotal40StrDexInRadius = 9902, - + LocalUniqueJewelSpectralShieldThrowLessShardProjectilesWithTotal40StrDexInRadius = 9905, + /// /// spectral_shield_throw_additional_chains /// - SpectralShieldThrowAdditionalChains = 9903, - + SpectralShieldThrowAdditionalChains = 9906, + /// /// repeat_target_selection_distance_from_initial_target_bias /// - RepeatTargetSelectionDistanceFromInitialTargetBias = 9904, - + RepeatTargetSelectionDistanceFromInitialTargetBias = 9907, + /// /// spectral_shield_throw_fire_shards_on_chain /// - SpectralShieldThrowFireShardsOnChain = 9905, - + SpectralShieldThrowFireShardsOnChain = 9908, + /// /// spectral_shield_throw_shard_projectiles_+%_final /// - SpectralShieldThrowShardProjectilesPctFinal = 9906, - + SpectralShieldThrowShardProjectilesPctFinal = 9909, + /// /// number_of_projectiles_+%_final_from_skill /// - NumberOfProjectilesPctFinalFromSkill = 9907, - + NumberOfProjectilesPctFinalFromSkill = 9910, + /// /// earthquake_aftershock_minimum_added_physical_damage /// - EarthquakeAftershockMinimumAddedPhysicalDamage = 9908, - + EarthquakeAftershockMinimumAddedPhysicalDamage = 9911, + /// /// earthquake_aftershock_maximum_added_physical_damage /// - EarthquakeAftershockMaximumAddedPhysicalDamage = 9909, - + EarthquakeAftershockMaximumAddedPhysicalDamage = 9912, + /// /// attack_speed_+%_with_channelling_skills /// - AttackSpeedPctWithChannellingSkills = 9910, - + AttackSpeedPctWithChannellingSkills = 9913, + /// /// attack_dodge_%_while_channelling /// - AttackDodgePctWhileChannelling = 9911, - + AttackDodgePctWhileChannelling = 9914, + /// /// attack_damage_+%_while_channelling /// - AttackDamagePctWhileChannelling = 9912, - + AttackDamagePctWhileChannelling = 9915, + /// /// gain_endurance_charge_%_when_hit_while_channelling /// - GainEnduranceChargePctWhenHitWhileChannelling = 9913, - + GainEnduranceChargePctWhenHitWhileChannelling = 9916, + /// /// gain_frenzy_charge_%_when_hit_while_channelling /// - GainFrenzyChargePctWhenHitWhileChannelling = 9914, - + GainFrenzyChargePctWhenHitWhileChannelling = 9917, + /// /// armour_+_while_affected_by_guard_skill /// - ArmourWhileAffectedByGuardSkill = 9915, - + ArmourWhileAffectedByGuardSkill = 9918, + /// /// additional_physical_damage_reduction_%_while_affected_by_guard_skill /// - AdditionalPhysicalDamageReductionPctWhileAffectedByGuardSkill = 9916, - + AdditionalPhysicalDamageReductionPctWhileAffectedByGuardSkill = 9919, + /// /// life_regeneration_per_minute_%_while_affected_by_guard_skill /// - LifeRegenerationPerMinutePctWhileAffectedByGuardSkill = 9917, - + LifeRegenerationPerMinutePctWhileAffectedByGuardSkill = 9920, + /// /// guard_skill_cooldown_recovery_+% /// - GuardSkillCooldownRecoveryPct = 9918, - + GuardSkillCooldownRecoveryPct = 9921, + /// /// melee_range_+_with_staff /// - MeleeRangeWithStaff = 9919, - + MeleeRangeWithStaff = 9922, + /// /// melee_range_+_with_axe /// - MeleeRangeWithAxe = 9920, - + MeleeRangeWithAxe = 9923, + /// /// melee_range_+_with_sword /// - MeleeRangeWithSword = 9921, - + MeleeRangeWithSword = 9924, + /// /// melee_range_+_with_mace /// - MeleeRangeWithMace = 9922, - + MeleeRangeWithMace = 9925, + /// /// melee_range_+_with_dagger /// - MeleeRangeWithDagger = 9923, - + MeleeRangeWithDagger = 9926, + /// /// melee_range_+_with_claw /// - MeleeRangeWithClaw = 9924, - + MeleeRangeWithClaw = 9927, + /// /// melee_range_+_with_one_handed /// - MeleeRangeWithOneHanded = 9925, - + MeleeRangeWithOneHanded = 9928, + /// /// melee_range_+_with_two_handed /// - MeleeRangeWithTwoHanded = 9926, - + MeleeRangeWithTwoHanded = 9929, + /// /// melee_range_+_while_dual_wielding /// - MeleeRangeWhileDualWielding = 9927, - + MeleeRangeWhileDualWielding = 9930, + /// /// melee_range_+_while_wielding_shield /// - MeleeRangeWhileWieldingShield = 9928, - + MeleeRangeWhileWieldingShield = 9931, + /// /// affected_by_guard_skill /// - AffectedByGuardSkill = 9929, - + AffectedByGuardSkill = 9932, + /// /// attack_damage_+%_with_channelling_skills /// - AttackDamagePctWithChannellingSkills = 9930, - + AttackDamagePctWithChannellingSkills = 9933, + /// /// owning_player_maximum_life /// - OwningPlayerMaximumLife = 9931, - + OwningPlayerMaximumLife = 9934, + /// /// display_this_skill_cooldown_does_not_recover_during_buff /// - DisplayThisSkillCooldownDoesNotRecoverDuringBuff = 9932, - + DisplayThisSkillCooldownDoesNotRecoverDuringBuff = 9935, + /// /// local_display_socketed_gems_supported_by_level_x_close_combat /// - LocalDisplaySocketedGemsSupportedByLevelXCloseCombat = 9933, - + LocalDisplaySocketedGemsSupportedByLevelXCloseCombat = 9936, + /// /// local_display_socketed_gems_supported_by_level_x_shockwave /// - LocalDisplaySocketedGemsSupportedByLevelXShockwave = 9934, - + LocalDisplaySocketedGemsSupportedByLevelXShockwave = 9937, + /// /// berserk_base_rage_loss_per_second /// - BerserkBaseRageLossPerSecond = 9935, - + BerserkBaseRageLossPerSecond = 9938, + /// /// berserk_rage_loss_+%_per_second /// - BerserkRageLossPctPerSecond = 9936, - + BerserkRageLossPctPerSecond = 9939, + /// /// berserk_base_damage_taken_+%_final /// - BerserkBaseDamageTakenPctFinal = 9937, - + BerserkBaseDamageTakenPctFinal = 9940, + /// /// map_num_extra_resonating_shrines /// - MapNumExtraResonatingShrines = 9938, - + MapNumExtraResonatingShrines = 9941, + /// /// map_num_extra_gloom_shrines /// - MapNumExtraGloomShrines = 9939, - + MapNumExtraGloomShrines = 9942, + /// /// skill_angle_+%_in_sand_stance /// - SkillAnglePctInSandStance = 9940, - + SkillAnglePctInSandStance = 9943, + /// /// support_storm_barrier_physical_damage_+%_final /// - SupportStormBarrierPhysicalDamagePctFinal = 9941, - + SupportStormBarrierPhysicalDamagePctFinal = 9944, + /// /// map_fragment_level_+ /// - MapFragmentLevel = 9942, - + MapFragmentLevel = 9945, + /// /// support_slashing_buff_attack_cast_speed_+%_final_to_grant /// - SupportSlashingBuffAttackCastSpeedPctFinalToGrant = 9943, - + SupportSlashingBuffAttackCastSpeedPctFinalToGrant = 9946, + /// /// immortal_call_buff_effect_duration_+%_per_removable_endurance_charge /// - ImmortalCallBuffEffectDurationPctPerRemovableEnduranceCharge = 9944, - + ImmortalCallBuffEffectDurationPctPerRemovableEnduranceCharge = 9947, + /// /// monster_hide_minimap_icon /// - MonsterHideMinimapIcon = 9945, - + MonsterHideMinimapIcon = 9948, + /// /// chain_strike_gain_x_rage_if_attack_hits /// - ChainStrikeGainXRageIfAttackHits = 9946, - + ChainStrikeGainXRageIfAttackHits = 9949, + /// /// leap_slam_always_knockback_within_range /// - LeapSlamAlwaysKnockbackWithinRange = 9947, - + LeapSlamAlwaysKnockbackWithinRange = 9950, + /// /// display_vaal_molten_shell_alternate_description /// - DisplayVaalMoltenShellAlternateDescription = 9948, - + DisplayVaalMoltenShellAlternateDescription = 9951, + /// /// life_recovery_per_minute_from_miracle_of_thaumaturgy_keystone /// - LifeRecoveryPerMinuteFromMiracleOfThaumaturgyKeystone = 9949, - + LifeRecoveryPerMinuteFromMiracleOfThaumaturgyKeystone = 9952, + /// /// mana_loss_per_minute_from_miracle_of_thaumaturgy_keystone /// - ManaLossPerMinuteFromMiracleOfThaumaturgyKeystone = 9950, - + ManaLossPerMinuteFromMiracleOfThaumaturgyKeystone = 9953, + /// /// total_loss_life_per_minute /// - TotalLossLifePerMinute = 9951, - + TotalLossLifePerMinute = 9954, + /// /// no_current_mana /// - NoCurrentMana = 9952, - + NoCurrentMana = 9955, + /// /// molten_shell_max_damage_absorbed /// - MoltenShellMaxDamageAbsorbed = 9953, - + MoltenShellMaxDamageAbsorbed = 9956, + /// /// molten_shell_duration_+% /// - MoltenShellDurationPct = 9954, - + MoltenShellDurationPct = 9957, + /// /// shield_charge_attack_time_+30%_if_no_charge /// - ShieldChargeAttackTime30PctIfNoCharge = 9955, - + ShieldChargeAttackTime30PctIfNoCharge = 9958, + /// /// area_of_effect_+%_while_wielding_bow /// - AreaOfEffectPctWhileWieldingBow = 9956, - + AreaOfEffectPctWhileWieldingBow = 9959, + /// /// cast_speed_+%_while_holding_bow /// - CastSpeedPctWhileHoldingBow = 9957, - + CastSpeedPctWhileHoldingBow = 9960, + /// /// chance_to_poison_on_critical_strike_with_bow_% /// - ChanceToPoisonOnCriticalStrikeWithBowPct = 9958, - + ChanceToPoisonOnCriticalStrikeWithBowPct = 9961, + /// /// darkness_damage_taken_per_minute_towards_life_damaging_es /// - DarknessDamageTakenPerMinuteTowardsLifeDamagingEs = 9959, - + DarknessDamageTakenPerMinuteTowardsLifeDamagingEs = 9962, + /// /// darkness_damage_taken_per_minute_towards_mana_damaging_es /// - DarknessDamageTakenPerMinuteTowardsManaDamagingEs = 9960, - + DarknessDamageTakenPerMinuteTowardsManaDamagingEs = 9963, + /// /// triggered_by_shockwave_support /// - TriggeredByShockwaveSupport = 9961, - + TriggeredByShockwaveSupport = 9964, + /// /// force_lite_skill_effects /// - ForceLiteSkillEffects = 9962, - + ForceLiteSkillEffects = 9965, + /// /// map_blight_league /// - MapBlightLeague = 9963, - + MapBlightLeague = 9966, + /// /// attack_is_melee_override /// - AttackIsMeleeOverride = 9964, - + AttackIsMeleeOverride = 9967, + /// /// quick_guard_additional_physical_damage_reduction_% /// - QuickGuardAdditionalPhysicalDamageReductionPct = 9965, - + QuickGuardAdditionalPhysicalDamageReductionPct = 9968, + /// /// quick_dodge_travel_distance_+% /// - QuickDodgeTravelDistancePct = 9966, - + QuickDodgeTravelDistancePct = 9969, + /// /// bladestorm_sandstorm_movement_speed_+% /// - BladestormSandstormMovementSpeedPct = 9967, - + BladestormSandstormMovementSpeedPct = 9970, + /// /// bladestorm_damage_+% /// - BladestormDamagePct = 9968, - + BladestormDamagePct = 9971, + /// /// blood_sand_stance_buff_effect_+% /// - BloodSandStanceBuffEffectPct = 9969, - + BloodSandStanceBuffEffectPct = 9972, + /// /// blood_spears_area_of_effect_+% /// - BloodSpearsAreaOfEffectPct = 9970, - + BloodSpearsAreaOfEffectPct = 9973, + /// /// blood_spears_damage_+% /// - BloodSpearsDamagePct = 9971, - + BloodSpearsDamagePct = 9974, + /// /// ice_dash_cooldown_speed_+% /// - IceDashCooldownSpeedPct = 9972, - + IceDashCooldownSpeedPct = 9975, + /// /// ice_dash_travel_distance_+% /// - IceDashTravelDistancePct = 9973, - + IceDashTravelDistancePct = 9976, + /// /// blood_sand_armour_mana_reservation_+% /// - BloodSandArmourManaReservationPct = 9974, - + BloodSandArmourManaReservationPct = 9977, + /// /// chain_strike_gain_rage_on_hit_%_chance /// - ChainStrikeGainRageOnHitPctChance = 9975, - + ChainStrikeGainRageOnHitPctChance = 9978, + /// /// chain_strike_cone_radius_+_per_12_rage /// - ChainStrikeConeRadiusPer12Rage = 9976, - + ChainStrikeConeRadiusPer12Rage = 9979, + /// /// chain_strike_damage_+% /// - ChainStrikeDamagePct = 9977, - + ChainStrikeDamagePct = 9980, + /// /// energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath /// - EnergyShieldLeechFromLightningDamagePermyriadWhileAffectedByWrath = 9978, - + EnergyShieldLeechFromLightningDamagePermyriadWhileAffectedByWrath = 9981, + /// /// base_added_cooldown_count /// - BaseAddedCooldownCount = 9979, - + BaseAddedCooldownCount = 9982, + /// /// quick_dodge_added_cooldown_count /// - QuickDodgeAddedCooldownCount = 9980, - + QuickDodgeAddedCooldownCount = 9983, + /// /// corpse_can_explode_on_death /// - CorpseCanExplodeOnDeath = 9981, - + CorpseCanExplodeOnDeath = 9984, + /// /// berserk_buff_effect_+% /// - BerserkBuffEffectPct = 9982, - + BerserkBuffEffectPct = 9985, + /// /// secondary_imp_variation /// - SecondaryImpVariation = 9983, - + SecondaryImpVariation = 9986, + /// /// go_away_other_leagues /// - GoAwayOtherLeagues = 9984, - + GoAwayOtherLeagues = 9987, + /// /// berserk_rage_loss_+% /// - BerserkRageLossPct = 9985, - + BerserkRageLossPct = 9988, + /// /// virtual_berserk_hundred_times_rage_loss_per_second /// - VirtualBerserkHundredTimesRageLossPerSecond = 9986, - + VirtualBerserkHundredTimesRageLossPerSecond = 9989, + /// /// virtual_steelskin_damage_%_taken_to_buff /// - VirtualSteelskinDamagePctTakenToBuff = 9987, - + VirtualSteelskinDamagePctTakenToBuff = 9990, + /// /// virtual_steelskin_damage_limit /// - VirtualSteelskinDamageLimit = 9988, - + VirtualSteelskinDamageLimit = 9991, + /// /// steelskin_damage_limit_+% /// - SteelskinDamageLimitPct = 9989, - + SteelskinDamageLimitPct = 9992, + /// /// map_normal_monster_life_regeneration_rate_per_minute_% /// - MapNormalMonsterLifeRegenerationRatePerMinutePct = 9990, - + MapNormalMonsterLifeRegenerationRatePerMinutePct = 9993, + /// /// map_magic_monster_life_regeneration_rate_per_minute_% /// - MapMagicMonsterLifeRegenerationRatePerMinutePct = 9991, - + MapMagicMonsterLifeRegenerationRatePerMinutePct = 9994, + /// /// map_rare_monster_life_regeneration_rate_per_minute_% /// - MapRareMonsterLifeRegenerationRatePerMinutePct = 9992, - + MapRareMonsterLifeRegenerationRatePerMinutePct = 9995, + /// /// virtual_mine_throwing_speed_+% /// - VirtualMineThrowingSpeedPct = 9993, - + VirtualMineThrowingSpeedPct = 9996, + /// /// support_minefield_mine_throwing_speed_+%_final /// - SupportMinefieldMineThrowingSpeedPctFinal = 9994, - + SupportMinefieldMineThrowingSpeedPctFinal = 9997, + /// /// bone_golem_grants_minion_minimum_added_physical_damage /// - BoneGolemGrantsMinionMinimumAddedPhysicalDamage = 9995, - + BoneGolemGrantsMinionMinimumAddedPhysicalDamage = 9998, + /// /// bone_golem_grants_minion_maximum_added_physical_damage /// - BoneGolemGrantsMinionMaximumAddedPhysicalDamage = 9996, - + BoneGolemGrantsMinionMaximumAddedPhysicalDamage = 9999, + /// /// bone_golem_damage_+%_final_per_non_golem_minion_nearby /// - BoneGolemDamagePctFinalPerNonGolemMinionNearby = 9997, - + BoneGolemDamagePctFinalPerNonGolemMinionNearby = 10000, + /// /// bone_golem_damage_per_non_golem_minion_nearby_maximum_% /// - BoneGolemDamagePerNonGolemMinionNearbyMaximumPct = 9998, - + BoneGolemDamagePerNonGolemMinionNearbyMaximumPct = 10001, + /// /// bone_golem_attack_speed_+%_final_after_third_combo_index /// - BoneGolemAttackSpeedPctFinalAfterThirdComboIndex = 9999, - + BoneGolemAttackSpeedPctFinalAfterThirdComboIndex = 10002, + /// /// bone_golem_damage_+%_final_after_third_combo_index /// - BoneGolemDamagePctFinalAfterThirdComboIndex = 10000, - + BoneGolemDamagePctFinalAfterThirdComboIndex = 10003, + /// /// enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently /// - EnchantmentBootsManaRegenerationRatePctIfCastSpellRecently = 10001, - + EnchantmentBootsManaRegenerationRatePctIfCastSpellRecently = 10004, + /// - /// bone_golem_damage_+%_final + /// damage_+%_final_per_non_golem_minion_nearby /// - BoneGolemDamagePctFinal = 10002, - + DamagePctFinalPerNonGolemMinionNearby = 10005, + /// /// number_of_nearby_non_golem_minions /// - NumberOfNearbyNonGolemMinions = 10003, - + NumberOfNearbyNonGolemMinions = 10006, + /// /// energy_shield_leech_permyriad_vs_frozen_enemies /// - EnergyShieldLeechPermyriadVsFrozenEnemies = 10004, - + EnergyShieldLeechPermyriadVsFrozenEnemies = 10007, + /// /// attack_skill_mana_leech_from_any_damage_permyriad /// - AttackSkillManaLeechFromAnyDamagePermyriad = 10005, - + AttackSkillManaLeechFromAnyDamagePermyriad = 10008, + /// /// slither_wither_every_ms /// - SlitherWitherEveryMs = 10006, - + SlitherWitherEveryMs = 10009, + /// /// avoid_all_elemental_ailment_%_per_summoned_golem /// - AvoidAllElementalAilmentPctPerSummonedGolem = 10007, - + AvoidAllElementalAilmentPctPerSummonedGolem = 10010, + /// /// virtual_avoid_all_elemental_ailment_% /// - VirtualAvoidAllElementalAilmentPct = 10008, - + VirtualAvoidAllElementalAilmentPct = 10011, + /// /// map_monstrous_treasure_no_monsters /// - MapMonstrousTreasureNoMonsters = 10009, - + MapMonstrousTreasureNoMonsters = 10012, + /// /// guardian_with_nearby_ally_damage_+%_final_for_you_and_allies /// - GuardianWithNearbyAllyDamagePctFinalForYouAndAllies = 10010, - + GuardianWithNearbyAllyDamagePctFinalForYouAndAllies = 10013, + /// /// damage_+%_final_from_guardian_aura /// - DamagePctFinalFromGuardianAura = 10011, - + DamagePctFinalFromGuardianAura = 10014, + /// /// guardian_with_5_nearby_allies_you_and_allies_have_onslaught /// - GuardianWith5NearbyAlliesYouAndAlliesHaveOnslaught = 10012, - + GuardianWith5NearbyAlliesYouAndAlliesHaveOnslaught = 10015, + /// /// virtual_attack_cast_movement_speed_+% /// - VirtualAttackCastMovementSpeedPct = 10013, - + VirtualAttackCastMovementSpeedPct = 10016, + /// /// attack_cast_movement_speed_+% /// - AttackCastMovementSpeedPct = 10014, - + AttackCastMovementSpeedPct = 10017, + /// /// poison_on_critical_strike /// - PoisonOnCriticalStrike = 10015, - + PoisonOnCriticalStrike = 10018, + /// /// number_of_nearby_corpses /// - NumberOfNearbyCorpses = 10016, - + NumberOfNearbyCorpses = 10019, + /// /// track_number_of_nearby_corpses /// - TrackNumberOfNearbyCorpses = 10017, - + TrackNumberOfNearbyCorpses = 10020, + /// /// necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse /// - NecromancerDamagePctForNearbyEnemiesWithNearbyCorpse = 10018, - + NecromancerDamagePctForNearbyEnemiesWithNearbyCorpse = 10021, + /// /// necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse /// - NecromancerDamagePctFinalForYouAndAlliesWithNearbyCorpse = 10019, - + NecromancerDamagePctFinalForYouAndAlliesWithNearbyCorpse = 10022, + /// /// damage_+%_final_from_necromancer_aura /// - DamagePctFinalFromNecromancerAura = 10020, - + DamagePctFinalFromNecromancerAura = 10023, + /// /// minion_area_of_effect_+% /// - MinionAreaOfEffectPct = 10021, - + MinionAreaOfEffectPct = 10024, + /// /// area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently /// - AreaOfEffectPctForYouAndMinionsIfConsumedCorpseRecently = 10022, - + AreaOfEffectPctForYouAndMinionsIfConsumedCorpseRecently = 10025, + /// /// necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse /// - NecromancerManaRegenerationRatePerMinuteForYouAndAlliesPerNearbyCorpse = 10023, - + NecromancerManaRegenerationRatePerMinuteForYouAndAlliesPerNearbyCorpse = 10026, + /// /// necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse /// - NecromancerEnergyShieldRegenerationRatePerMinutePctForYouAndAlliesPerNearbyCorpse = 10024, - + NecromancerEnergyShieldRegenerationRatePerMinutePctForYouAndAlliesPerNearbyCorpse = 10027, + /// /// regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse /// - RegeneratePctMaximumManaOver2SecondsOnConsumingCorpse = 10025, - + RegeneratePctMaximumManaOver2SecondsOnConsumingCorpse = 10028, + /// /// regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse /// - RegeneratePctMaximumEnergyShieldOver2SecondsOnConsumingCorpse = 10026, - + RegeneratePctMaximumEnergyShieldOver2SecondsOnConsumingCorpse = 10029, + /// /// maximum_life_+%_for_corpses_you_create /// - MaximumLifePctForCorpsesYouCreate = 10027, - + MaximumLifePctForCorpsesYouCreate = 10030, + /// /// enemies_near_corpses_created_recently_are_shocked_and_chilled /// - EnemiesNearCorpsesCreatedRecentlyAreShockedAndChilled = 10028, - + EnemiesNearCorpsesCreatedRecentlyAreShockedAndChilled = 10031, + /// /// cannot_be_splashed_from /// - CannotBeSplashedFrom = 10029, - + CannotBeSplashedFrom = 10032, + /// /// display_item_generation_can_roll_minion_affixes /// - DisplayItemGenerationCanRollMinionAffixes = 10030, - + DisplayItemGenerationCanRollMinionAffixes = 10033, + /// /// corrosive_shroud_gains_%_of_damage_from_inflicted_poisons /// - CorrosiveShroudGainsPctOfDamageFromInflictedPoisons = 10031, - + CorrosiveShroudGainsPctOfDamageFromInflictedPoisons = 10034, + /// /// corrosive_shroud_maximum_stored_poison_damage /// - CorrosiveShroudMaximumStoredPoisonDamage = 10032, - + CorrosiveShroudMaximumStoredPoisonDamage = 10035, + /// /// corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second /// - CorrosiveShroudPctOfStoredPoisonDamageToDealPerSecond = 10033, - + CorrosiveShroudPctOfStoredPoisonDamageToDealPerSecond = 10036, + /// /// movement_velocity_+%_while_at_maximum_power_charges /// - MovementVelocityPctWhileAtMaximumPowerCharges = 10034, - + MovementVelocityPctWhileAtMaximumPowerCharges = 10037, + /// /// damage_vs_enemies_on_low_life_+%_final /// - DamageVsEnemiesOnLowLifePctFinal = 10035, - + DamageVsEnemiesOnLowLifePctFinal = 10038, + /// /// damage_+%_final_from_enemies_on_low_life /// - DamagePctFinalFromEnemiesOnLowLife = 10036, - + DamagePctFinalFromEnemiesOnLowLife = 10039, + /// /// self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby /// - SelfTakeNoExtraDamageFromCriticalStrikesIfThereIsAtMost1RareOrUniqueEnemyNearby = 10037, - + SelfTakeNoExtraDamageFromCriticalStrikesIfThereIsAtMost1RareOrUniqueEnemyNearby = 10040, + /// /// damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby /// - DamagePctFinalIfThereIsAtMost1RareOrUniqueEnemyNearby = 10038, - + DamagePctFinalIfThereIsAtMost1RareOrUniqueEnemyNearby = 10041, + /// /// damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby /// - DamageTakenPctIfThereAreAtLeast2RareOrUniqueEnemiesNearby = 10039, - + DamageTakenPctIfThereAreAtLeast2RareOrUniqueEnemiesNearby = 10042, + /// /// support_remote_mine_damage_+%_final_per_mine_detonation_cascade /// - SupportRemoteMineDamagePctFinalPerMineDetonationCascade = 10040, - + SupportRemoteMineDamagePctFinalPerMineDetonationCascade = 10043, + /// /// damage_+%_final_from_mine_detonation_cascade /// - DamagePctFinalFromMineDetonationCascade = 10041, - + DamagePctFinalFromMineDetonationCascade = 10044, + /// /// bone_armour_cooldown_does_not_tick /// - BoneArmourCooldownDoesNotTick = 10042, - + BoneArmourCooldownDoesNotTick = 10045, + /// /// minion_larger_aggro_radius /// - MinionLargerAggroRadius = 10043, - + MinionLargerAggroRadius = 10046, + /// /// grant_puppet_master_buff_to_parent_on_hit_% /// - GrantPuppetMasterBuffToParentOnHitPct = 10044, - + GrantPuppetMasterBuffToParentOnHitPct = 10047, + /// /// minion_grant_puppet_master_buff_to_parent_on_hit_% /// - MinionGrantPuppetMasterBuffToParentOnHitPct = 10045, - + MinionGrantPuppetMasterBuffToParentOnHitPct = 10048, + /// /// support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master /// - SupportMinionOffensiveStanceMinionDamagePctFinalWhileYouHavePuppetMaster = 10046, - + SupportMinionOffensiveStanceMinionDamagePctFinalWhileYouHavePuppetMaster = 10049, + /// /// has_puppet_master /// - HasPuppetMaster = 10047, - + HasPuppetMaster = 10050, + /// /// puppet_master_minion_damage_+%_final /// - PuppetMasterMinionDamagePctFinal = 10048, - + PuppetMasterMinionDamagePctFinal = 10051, + /// /// virtual_minion_damage_+%_final /// - VirtualMinionDamagePctFinal = 10049, - + VirtualMinionDamagePctFinal = 10052, + /// /// puppet_master_duration_ms /// - PuppetMasterDurationMs = 10050, - + PuppetMasterDurationMs = 10053, + /// /// puppet_master_base_duration_ms /// - PuppetMasterBaseDurationMs = 10051, - + PuppetMasterBaseDurationMs = 10054, + /// /// have_impaled_recently /// - HaveImpaledRecently = 10052, - + HaveImpaledRecently = 10055, + /// /// track_have_impaled_recently /// - TrackHaveImpaledRecently = 10053, - + TrackHaveImpaledRecently = 10056, + /// /// minion_chance_to_gain_onslaught_on_kill_for_4_seconds_% /// - MinionChanceToGainOnslaughtOnKillFor4SecondsPct = 10054, - + MinionChanceToGainOnslaughtOnKillFor4SecondsPct = 10057, + /// /// minion_no_extra_bleed_damage_while_moving /// - MinionNoExtraBleedDamageWhileMoving = 10055, - + MinionNoExtraBleedDamageWhileMoving = 10058, + /// /// minion_maximum_life_%_to_add_as_maximum_energy_shield /// - MinionMaximumLifePctToAddAsMaximumEnergyShield = 10056, - + MinionMaximumLifePctToAddAsMaximumEnergyShield = 10059, + /// /// minion_additional_spell_block_% /// - MinionAdditionalSpellBlockPct = 10057, - + MinionAdditionalSpellBlockPct = 10060, + /// /// virtual_minion_area_of_effect_+% /// - VirtualMinionAreaOfEffectPct = 10058, - + VirtualMinionAreaOfEffectPct = 10061, + /// /// minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently /// - MinionAreaOfEffectPctIfYouHaveCastAMinionSkillRecently = 10059, - + MinionAreaOfEffectPctIfYouHaveCastAMinionSkillRecently = 10062, + /// /// chance_to_gain_unholy_might_on_kill_for_4_seconds_% /// - ChanceToGainUnholyMightOnKillFor4SecondsPct = 10060, - + ChanceToGainUnholyMightOnKillFor4SecondsPct = 10063, + /// /// minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_% /// - MinionChanceToGainUnholyMightOnKillFor4SecondsPct = 10061, - + MinionChanceToGainUnholyMightOnKillFor4SecondsPct = 10064, + /// /// damage_+%_while_you_have_a_summoned_golem /// - DamagePctWhileYouHaveASummonedGolem = 10062, - + DamagePctWhileYouHaveASummonedGolem = 10065, + /// /// fire_hit_damage_taken_%_as_physical /// - FireHitDamageTakenPctAsPhysical = 10063, - + FireHitDamageTakenPctAsPhysical = 10066, + /// /// base_fire_hit_damage_taken_%_as_physical_value_negated /// - BaseFireHitDamageTakenPctAsPhysicalValueNegated = 10064, - + BaseFireHitDamageTakenPctAsPhysicalValueNegated = 10067, + /// /// base_fire_hit_damage_taken_%_as_physical /// - BaseFireHitDamageTakenPctAsPhysical = 10065, - + BaseFireHitDamageTakenPctAsPhysical = 10068, + /// /// serpent_strike_maximum_snakes /// - SerpentStrikeMaximumSnakes = 10066, - + SerpentStrikeMaximumSnakes = 10069, + /// /// affected_by_elusive /// - AffectedByElusive = 10067, - + AffectedByElusive = 10070, + /// /// slither_wither_radius /// - SlitherWitherRadius = 10068, - - /// - /// instant_skill_is_added_to_held_skills_list - /// - InstantSkillIsAddedToHeldSkillsList = 10069, - + SlitherWitherRadius = 10071, + /// /// arcane_surge_effect_+% /// - ArcaneSurgeEffectPct = 10070, - + ArcaneSurgeEffectPct = 10072, + /// /// arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50% /// - ArcaneSurgeEffectPctPer200ManaSpentRecentlyUpTo50Pct = 10071, - + ArcaneSurgeEffectPctPer200ManaSpentRecentlyUpTo50Pct = 10073, + /// /// mana_gained_on_spell_hit_vs_cursed_enemies /// - ManaGainedOnSpellHitVsCursedEnemies = 10072, - + ManaGainedOnSpellHitVsCursedEnemies = 10074, + /// /// recover_%_maximum_mana_on_killing_cursed_enemy /// - RecoverPctMaximumManaOnKillingCursedEnemy = 10073, - + RecoverPctMaximumManaOnKillingCursedEnemy = 10075, + /// /// remove_random_elemental_ailment_on_mana_flask_use /// - RemoveRandomElementalAilmentOnManaFlaskUse = 10074, - + RemoveRandomElementalAilmentOnManaFlaskUse = 10076, + /// /// remove_curse_on_mana_flask_use /// - RemoveCurseOnManaFlaskUse = 10075, - + RemoveCurseOnManaFlaskUse = 10077, + /// /// spell_damage_+%_per_100_maximum_mana_up_to_60% /// - SpellDamagePctPer100MaximumManaUpTo60Pct = 10076, - + SpellDamagePctPer100MaximumManaUpTo60Pct = 10078, + /// /// mana_regeneration_rate_+%_per_1%_spell_block_chance /// - ManaRegenerationRatePctPer1PctSpellBlockChance = 10077, - + ManaRegenerationRatePctPer1PctSpellBlockChance = 10079, + /// /// flask_mana_charges_used_+% /// - FlaskManaChargesUsedPct = 10078, - + FlaskManaChargesUsedPct = 10080, + /// /// mana_flasks_gain_X_charges_every_3_seconds /// - ManaFlasksGainXChargesEvery3Seconds = 10079, - + ManaFlasksGainXChargesEvery3Seconds = 10081, + /// /// mana_recovery_rate_+%_while_affected_by_a_mana_flask /// - ManaRecoveryRatePctWhileAffectedByAManaFlask = 10080, - + ManaRecoveryRatePctWhileAffectedByAManaFlask = 10082, + /// /// attack_and_cast_speed_+%_while_affected_by_a_mana_flask /// - AttackAndCastSpeedPctWhileAffectedByAManaFlask = 10081, - + AttackAndCastSpeedPctWhileAffectedByAManaFlask = 10083, + /// /// using_mana_flask /// - UsingManaFlask = 10082, - + UsingManaFlask = 10084, + /// /// virtual_arcane_surge_effect_+% /// - VirtualArcaneSurgeEffectPct = 10083, - + VirtualArcaneSurgeEffectPct = 10085, + /// /// skill_mana_cost_+_with_non_channelling_skills /// - SkillManaCostWithNonChannellingSkills = 10084, - + SkillManaCostWithNonChannellingSkills = 10086, + /// /// skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity /// - SkillManaCostWithNonChannellingSkillsWhileAffectedByClarity = 10085, - + SkillManaCostWithNonChannellingSkillsWhileAffectedByClarity = 10087, + /// /// mana_reservation_+%_with_skills_that_throw_mines /// - ManaReservationPctWithSkillsThatThrowMines = 10086, - + ManaReservationPctWithSkillsThatThrowMines = 10088, + /// /// immune_to_ignite_and_shock /// - ImmuneToIgniteAndShock = 10087, - + ImmuneToIgniteAndShock = 10089, + /// /// mana_cost_+%_for_trap_skills /// - ManaCostPctForTrapSkills = 10088, - + ManaCostPctForTrapSkills = 10090, + /// /// minion_focussed_fire_target_id /// - MinionFocussedFireTargetId = 10089, - + MinionFocussedFireTargetId = 10091, + /// /// support_minion_focus_fire_damage_+%_final_vs_focussed_target /// - SupportMinionFocusFireDamagePctFinalVsFocussedTarget = 10090, - + SupportMinionFocusFireDamagePctFinalVsFocussedTarget = 10092, + /// /// support_minion_use_focussed_target /// - SupportMinionUseFocussedTarget = 10091, - + SupportMinionUseFocussedTarget = 10093, + /// /// damage_+%_final_from_support_minion_focus_fire /// - DamagePctFinalFromSupportMinionFocusFire = 10092, - + DamagePctFinalFromSupportMinionFocusFire = 10094, + /// /// additional_critical_strike_chance_permyriad_while_affected_by_elusive /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByElusive = 10093, - + AdditionalCriticalStrikeChancePermyriadWhileAffectedByElusive = 10095, + /// /// critical_strike_multiplier_+_while_affected_by_elusive /// - CriticalStrikeMultiplierWhileAffectedByElusive = 10094, - + CriticalStrikeMultiplierWhileAffectedByElusive = 10096, + /// /// gain_elusive_on_crit_%_chance /// - GainElusiveOnCritPctChance = 10095, - + GainElusiveOnCritPctChance = 10097, + /// /// supported_skill_can_only_use_dagger_and_claw /// - SupportedSkillCanOnlyUseDaggerAndClaw = 10096, - + SupportedSkillCanOnlyUseDaggerAndClaw = 10098, + /// /// bleed_damage_+%_vs_player_minions_final /// - BleedDamagePctVsPlayerMinionsFinal = 10097, - + BleedDamagePctVsPlayerMinionsFinal = 10099, + /// /// disable_mine_detonation_cascade /// - DisableMineDetonationCascade = 10098, - + DisableMineDetonationCascade = 10100, + /// /// map_tier /// - MapTier = 10099, - + MapTier = 10101, + /// /// minions_are_defensive /// - MinionsAreDefensive = 10100, - + MinionsAreDefensive = 10102, + /// /// support_minion_defensive_stance_minion_damage_taken_+%_final /// - SupportMinionDefensiveStanceMinionDamageTakenPctFinal = 10101, - + SupportMinionDefensiveStanceMinionDamageTakenPctFinal = 10103, + /// /// damage_taken_+%_final_from_support_minion_defensive_stance /// - DamageTakenPctFinalFromSupportMinionDefensiveStance = 10102, - + DamageTakenPctFinalFromSupportMinionDefensiveStance = 10104, + /// /// minion_chance_to_taunt_on_hit_% /// - MinionChanceToTauntOnHitPct = 10103, - + MinionChanceToTauntOnHitPct = 10105, + /// /// support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you /// - SupportMinionDefensiveStanceMinionDamagePctFinalAgainstEnemiesNearYou = 10104, - + SupportMinionDefensiveStanceMinionDamagePctFinalAgainstEnemiesNearYou = 10106, + /// /// support_minion_defensive_stance_damage_+%_final_against_enemies_near_parent /// - SupportMinionDefensiveStanceDamagePctFinalAgainstEnemiesNearParent = 10105, - + SupportMinionDefensiveStanceDamagePctFinalAgainstEnemiesNearParent = 10107, + /// /// damage_+%_final_from_support_minion_defensive_stance /// - DamagePctFinalFromSupportMinionDefensiveStance = 10106, - + DamagePctFinalFromSupportMinionDefensiveStance = 10108, + /// /// base_mine_detonation_time_ms /// - BaseMineDetonationTimeMs = 10107, - + BaseMineDetonationTimeMs = 10109, + /// /// virtual_mine_detonation_time_ms /// - VirtualMineDetonationTimeMs = 10108, - + VirtualMineDetonationTimeMs = 10110, + /// /// mine_detonation_speed_+% /// - MineDetonationSpeedPct = 10109, - + MineDetonationSpeedPct = 10111, + /// /// non_chilled_enemies_you_bleed_are_chilled /// - NonChilledEnemiesYouBleedAreChilled = 10110, - + NonChilledEnemiesYouBleedAreChilled = 10112, + /// /// non_chilled_enemies_you_poison_are_chilled /// - NonChilledEnemiesYouPoisonAreChilled = 10111, - + NonChilledEnemiesYouPoisonAreChilled = 10113, + /// /// chilled_while_bleeding /// - ChilledWhileBleeding = 10112, - + ChilledWhileBleeding = 10114, + /// /// chilled_while_poisoned /// - ChilledWhilePoisoned = 10113, - + ChilledWhilePoisoned = 10115, + /// /// shatter_on_kill_vs_bleeding_enemies /// - ShatterOnKillVsBleedingEnemies = 10114, - + ShatterOnKillVsBleedingEnemies = 10116, + /// /// shatter_on_kill_vs_poisoned_enemies /// - ShatterOnKillVsPoisonedEnemies = 10115, - + ShatterOnKillVsPoisonedEnemies = 10117, + /// /// serpent_strike_viper_damage_+%_final /// - SerpentStrikeViperDamagePctFinal = 10116, - + SerpentStrikeViperDamagePctFinal = 10118, + /// /// damage_+%_per_raised_zombie /// - DamagePctPerRaisedZombie = 10117, - + DamagePctPerRaisedZombie = 10119, + /// /// elemental_damage_taken_+%_final_per_raised_zombie /// - ElementalDamageTakenPctFinalPerRaisedZombie = 10118, - + ElementalDamageTakenPctFinalPerRaisedZombie = 10120, + /// /// minion_chance_to_freeze_shock_ignite_% /// - MinionChanceToFreezeShockIgnitePct = 10119, - + MinionChanceToFreezeShockIgnitePct = 10121, + /// /// minion_base_physical_damage_%_to_convert_to_fire /// - MinionBasePhysicalDamagePctToConvertToFire = 10120, - + MinionBasePhysicalDamagePctToConvertToFire = 10122, + /// /// minion_base_physical_damage_%_to_convert_to_cold /// - MinionBasePhysicalDamagePctToConvertToCold = 10121, - + MinionBasePhysicalDamagePctToConvertToCold = 10123, + /// /// minion_base_physical_damage_%_to_convert_to_lightning /// - MinionBasePhysicalDamagePctToConvertToLightning = 10122, - + MinionBasePhysicalDamagePctToConvertToLightning = 10124, + /// /// minion_base_physical_damage_%_to_convert_to_chaos /// - MinionBasePhysicalDamagePctToConvertToChaos = 10123, - + MinionBasePhysicalDamagePctToConvertToChaos = 10125, + /// /// minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item /// - MinionBasePhysicalDamagePctToConvertToFirePerRedSocketOnItem = 10124, - + MinionBasePhysicalDamagePctToConvertToFirePerRedSocketOnItem = 10126, + /// /// minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item /// - MinionBasePhysicalDamagePctToConvertToColdPerGreenSocketOnItem = 10125, - + MinionBasePhysicalDamagePctToConvertToColdPerGreenSocketOnItem = 10127, + /// /// minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item /// - MinionBasePhysicalDamagePctToConvertToLightningPerBlueSocketOnItem = 10126, - + MinionBasePhysicalDamagePctToConvertToLightningPerBlueSocketOnItem = 10128, + /// /// minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item /// - MinionBasePhysicalDamagePctToConvertToChaosPerWhiteSocketOnItem = 10127, - + MinionBasePhysicalDamagePctToConvertToChaosPerWhiteSocketOnItem = 10129, + /// /// display_hide_projectile_chain_num /// - DisplayHideProjectileChainNum = 10128, - + DisplayHideProjectileChainNum = 10130, + /// /// mine_detonates_instantly /// - MineDetonatesInstantly = 10129, - + MineDetonatesInstantly = 10131, + /// /// mine_area_of_effect_+% /// - MineAreaOfEffectPct = 10130, - + MineAreaOfEffectPct = 10132, + /// /// mine_area_of_effect_+%_if_detonated_mine_recently /// - MineAreaOfEffectPctIfDetonatedMineRecently = 10131, - + MineAreaOfEffectPctIfDetonatedMineRecently = 10133, + /// /// mine_area_damage_+%_if_detonated_mine_recently /// - MineAreaDamagePctIfDetonatedMineRecently = 10132, - + MineAreaDamagePctIfDetonatedMineRecently = 10134, + /// /// sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10% /// - SabotuerMinesApplyDamageTakenPctToNearbyEnemiesUpTo10Pct = 10133, - + SabotuerMinesApplyDamageTakenPctToNearbyEnemiesUpTo10Pct = 10135, + /// /// sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10% /// - SabotuerMinesApplyDamagePctToNearbyEnemiesUpTo10Pct = 10134, - + SabotuerMinesApplyDamagePctToNearbyEnemiesUpTo10Pct = 10136, + /// /// critical_strike_chance_+%_per_mine_detonated_recently_up_to_100% /// - CriticalStrikeChancePctPerMineDetonatedRecentlyUpTo100Pct = 10135, - + CriticalStrikeChancePctPerMineDetonatedRecentlyUpTo100Pct = 10137, + /// /// critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40 /// - CriticalStrikeMultiplierPerMineDetonatedRecentlyUpTo40 = 10136, - + CriticalStrikeMultiplierPerMineDetonatedRecentlyUpTo40 = 10138, + /// /// local_display_grants_skill_bone_armour /// - LocalDisplayGrantsSkillBoneArmour = 10137, - + LocalDisplayGrantsSkillBoneArmour = 10139, + /// /// current_righteous_charges /// - CurrentRighteousCharges = 10138, - + CurrentRighteousCharges = 10140, + /// /// gain_righteous_charge_on_mana_spent_% /// - GainRighteousChargeOnManaSpentPct = 10139, - + GainRighteousChargeOnManaSpentPct = 10141, + /// /// lose_all_righteous_charges_on_mana_use_threshold /// - LoseAllRighteousChargesOnManaUseThreshold = 10140, - + LoseAllRighteousChargesOnManaUseThreshold = 10142, + /// /// elemental_damage_+%_final_per_righteous_charge /// - ElementalDamagePctFinalPerRighteousCharge = 10141, - + ElementalDamagePctFinalPerRighteousCharge = 10143, + /// /// critical_strike_chance_+%_per_righteous_charge /// - CriticalStrikeChancePctPerRighteousCharge = 10142, - + CriticalStrikeChancePctPerRighteousCharge = 10144, + /// /// maximum_righteous_charges /// - MaximumRighteousCharges = 10143, - + MaximumRighteousCharges = 10145, + /// /// map_num_extra_blights_ /// - MapNumExtraBlights = 10144, - + MapNumExtraBlights = 10146, + /// /// map_nuke_everything /// - MapNukeEverything = 10145, - + MapNukeEverything = 10147, + /// /// lightning_explosion_mine_aura_damage_taken_+% /// - LightningExplosionMineAuraDamageTakenPct = 10146, - + LightningExplosionMineAuraDamageTakenPct = 10148, + /// /// mine_detonation_cascade_index /// - MineDetonationCascadeIndex = 10147, - + MineDetonationCascadeIndex = 10149, + /// /// corrosive_shroud_poison_damage_+%_final_while_accumulating_poison /// - CorrosiveShroudPoisonDamagePctFinalWhileAccumulatingPoison = 10148, - + CorrosiveShroudPoisonDamagePctFinalWhileAccumulatingPoison = 10150, + /// /// lose_a_frenzy_charge_on_travel_skill_use_%_chance /// - LoseAFrenzyChargeOnTravelSkillUsePctChance = 10149, - + LoseAFrenzyChargeOnTravelSkillUsePctChance = 10151, + /// /// lose_a_power_charge_when_you_gain_elusive_%_chance /// - LoseAPowerChargeWhenYouGainElusivePctChance = 10150, - + LoseAPowerChargeWhenYouGainElusivePctChance = 10152, + /// /// elusive_effect_on_self_+%_per_power_charge /// - ElusiveEffectOnSelfPctPerPowerCharge = 10151, - + ElusiveEffectOnSelfPctPerPowerCharge = 10153, + /// /// travel_skills_cooldown_speed_+%_per_frenzy_charge /// - TravelSkillsCooldownSpeedPctPerFrenzyCharge = 10152, - + TravelSkillsCooldownSpeedPctPerFrenzyCharge = 10154, + /// /// maximum_frenzy_charges_is_equal_to_maximum_power_charges /// - MaximumFrenzyChargesIsEqualToMaximumPowerCharges = 10153, - + MaximumFrenzyChargesIsEqualToMaximumPowerCharges = 10155, + /// /// virtual_elusive_effect_+% /// - VirtualElusiveEffectPct = 10154, - + VirtualElusiveEffectPct = 10156, + /// /// ground_temporal_anomaly_art_variation /// - GroundTemporalAnomalyArtVariation = 10155, - + GroundTemporalAnomalyArtVariation = 10157, + /// /// blight_tower_damage_+%_final_vs_fire_monster /// - BlightTowerDamagePctFinalVsFireMonster = 10156, - + BlightTowerDamagePctFinalVsFireMonster = 10158, + /// /// blight_tower_damage_+%_final_vs_cold_monster /// - BlightTowerDamagePctFinalVsColdMonster = 10157, - + BlightTowerDamagePctFinalVsColdMonster = 10159, + /// /// blight_tower_damage_+%_final_vs_lightning_monster /// - BlightTowerDamagePctFinalVsLightningMonster = 10158, - + BlightTowerDamagePctFinalVsLightningMonster = 10160, + /// /// blight_tower_damage_+%_final_vs_physical_monster /// - BlightTowerDamagePctFinalVsPhysicalMonster = 10159, - + BlightTowerDamagePctFinalVsPhysicalMonster = 10161, + /// /// blight_tower_damage_+%_final_vs_chaos_monster /// - BlightTowerDamagePctFinalVsChaosMonster = 10160, - + BlightTowerDamagePctFinalVsChaosMonster = 10162, + /// /// blight_tower_damage_+%_final_vs_flying_monster /// - BlightTowerDamagePctFinalVsFlyingMonster = 10161, - + BlightTowerDamagePctFinalVsFlyingMonster = 10163, + /// /// damage_+%_final_against_blight_monster_type /// - DamagePctFinalAgainstBlightMonsterType = 10162, - + DamagePctFinalAgainstBlightMonsterType = 10164, + /// /// is_blight_fire_monster /// - IsBlightFireMonster = 10163, - + IsBlightFireMonster = 10165, + /// /// is_blight_cold_monster /// - IsBlightColdMonster = 10164, - + IsBlightColdMonster = 10166, + /// /// is_blight_lightning_monster /// - IsBlightLightningMonster = 10165, - + IsBlightLightningMonster = 10167, + /// /// is_blight_physical_monster /// - IsBlightPhysicalMonster = 10166, - + IsBlightPhysicalMonster = 10168, + /// /// is_blight_chaos_monster /// - IsBlightChaosMonster = 10167, - + IsBlightChaosMonster = 10169, + /// /// is_blight_flying_monster /// - IsBlightFlyingMonster = 10168, - + IsBlightFlyingMonster = 10170, + /// /// unaffected_by_weakening_tower /// - UnaffectedByWeakeningTower = 10169, - + UnaffectedByWeakeningTower = 10171, + /// /// mine_skill_targets_detonation_cascade_origin /// - MineSkillTargetsDetonationCascadeOrigin = 10170, - + MineSkillTargetsDetonationCascadeOrigin = 10172, + /// /// local_flask_gain_X_charges_when_hit /// - LocalFlaskGainXChargesWhenHit = 10171, - + LocalFlaskGainXChargesWhenHit = 10173, + /// /// local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect /// - LocalFlaskManaRecoveryOccursInstantlyAtEndOfFlaskEffect = 10172, - + LocalFlaskManaRecoveryOccursInstantlyAtEndOfFlaskEffect = 10174, + /// /// local_flask_life_leech_from_attack_damage_permyriad_while_healing /// - LocalFlaskLifeLeechFromAttackDamagePermyriadWhileHealing = 10173, - + LocalFlaskLifeLeechFromAttackDamagePermyriadWhileHealing = 10175, + /// /// local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing /// - LocalFlaskEnergyShieldLeechFromSpellDamagePermyriadWhileHealing = 10174, - + FlaskBuffSpellEnergyShiheldLeechWhileHealing = 10176, + /// /// local_flask_attack_speed_+%_while_healing /// - LocalFlaskAttackSpeedPctWhileHealing = 10175, - + LocalFlaskAttackSpeedPctWhileHealing = 10177, + /// /// local_flask_cast_speed_+%_while_healing /// - LocalFlaskCastSpeedPctWhileHealing = 10176, - + LocalFlaskCastSpeedPctWhileHealing = 10178, + /// /// local_flask_chance_to_freeze_shock_ignite_%_while_healing /// - LocalFlaskChanceToFreezeShockIgnitePctWhileHealing = 10177, - + LocalFlaskChanceToFreezeShockIgnitePctWhileHealing = 10179, + /// /// local_flask_effect_not_removed_at_full_mana /// - LocalFlaskEffectNotRemovedAtFullMana = 10178, - + LocalFlaskEffectNotRemovedAtFullMana = 10180, + /// /// recover_mana_when_buff_reaches_duration /// - RecoverManaWhenBuffReachesDuration = 10179, - + RecoverManaWhenBuffReachesDuration = 10181, + /// /// skitterbots_trap_mine_damage_+%_final /// - SkitterbotsTrapMineDamagePctFinal = 10180, - + SkitterbotsTrapMineDamagePctFinal = 10182, + /// /// blight_aura_stat_1 /// - BlightAuraStat1 = 10181, - + BlightAuraStat1 = 10183, + /// /// blight_aura_stat_2 /// - BlightAuraStat2 = 10182, - + BlightAuraStat2 = 10184, + /// /// blight_aura_stat_3 /// - BlightAuraStat3 = 10183, - + BlightAuraStat3 = 10185, + /// /// blight_aura_stat_4 /// - BlightAuraStat4 = 10184, - + BlightAuraStat4 = 10186, + /// /// blight_aura_stat_5 /// - BlightAuraStat5 = 10185, - + BlightAuraStat5 = 10187, + /// /// inspiration_charge_duration_+% /// - InspirationChargeDurationPct = 10186, - + InspirationChargeDurationPct = 10188, + /// /// minimum_added_fire_damage_taken /// - MinimumAddedFireDamageTaken = 10187, - + MinimumAddedFireDamageTaken = 10189, + /// /// maximum_added_fire_damage_taken /// - MaximumAddedFireDamageTaken = 10188, - + MaximumAddedFireDamageTaken = 10190, + /// /// petrification_hits_to_break /// - PetrificationHitsToBreak = 10189, - + PetrificationHitsToBreak = 10191, + /// /// virtual_base_mine_detonation_time_ms /// - VirtualBaseMineDetonationTimeMs = 10190, - + VirtualBaseMineDetonationTimeMs = 10192, + /// /// virtual_base_mine_duration /// - VirtualBaseMineDuration = 10191, - + VirtualBaseMineDuration = 10193, + /// /// virtual_mine_override_pvp_scaling_time_ms /// - VirtualMineOverridePvpScalingTimeMs = 10192, - + VirtualMineOverridePvpScalingTimeMs = 10194, + /// /// support_remote_mine_2_base_mine_detonation_time_ms /// - SupportRemoteMine2BaseMineDetonationTimeMs = 10193, - + SupportRemoteMine2BaseMineDetonationTimeMs = 10195, + /// /// support_remote_mine_2_base_mine_duration /// - SupportRemoteMine2BaseMineDuration = 10194, - + SupportRemoteMine2BaseMineDuration = 10196, + /// /// support_remote_mine_2_mine_override_pvp_scaling_time_ms /// - SupportRemoteMine2MineOverridePvpScalingTimeMs = 10195, - + SupportRemoteMine2MineOverridePvpScalingTimeMs = 10197, + /// /// virtual_enemy_chance_to_deal_double_damage_%_against_self /// - VirtualEnemyChanceToDealDoubleDamagePctAgainstSelf = 10196, - + VirtualEnemyChanceToDealDoubleDamagePctAgainstSelf = 10198, + /// /// support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines /// - SupportRemoteMine2ChanceToDealDoubleDamagePctAgainstEnemiesNearMines = 10197, - + SupportRemoteMine2ChanceToDealDoubleDamagePctAgainstEnemiesNearMines = 10199, + /// /// map_blight_tower_cost_+% /// - MapBlightTowerCostPct = 10198, - + MapBlightTowerCostPct = 10200, + /// /// minions_inflict_exposure_on_hit_%_chance /// - MinionsInflictExposureOnHitPctChance = 10199, - + MinionsInflictExposureOnHitPctChance = 10201, + /// /// inflict_exposure_on_hit_%_chance /// - InflictExposureOnHitPctChance = 10200, - + InflictExposureOnHitPctChance = 10202, + /// /// support_minion_instability_base_fire_area_damage_per_minute /// - SupportMinionInstabilityBaseFireAreaDamagePerMinute = 10201, - + SupportMinionInstabilityBaseFireAreaDamagePerMinute = 10203, + /// /// support_minion_instability_intermediary_fire_area_damage_per_minute /// - SupportMinionInstabilityIntermediaryFireAreaDamagePerMinute = 10202, - + SupportMinionInstabilityIntermediaryFireAreaDamagePerMinute = 10204, + /// /// support_minion_instability_minion_base_fire_area_damage_per_minute /// - SupportMinionInstabilityMinionBaseFireAreaDamagePerMinute = 10203, - + SupportMinionInstabilityMinionBaseFireAreaDamagePerMinute = 10205, + /// /// infernal_legion_minions_have_burning_effect_radius_+ /// - InfernalLegionMinionsHaveBurningEffectRadius = 10204, - + InfernalLegionMinionsHaveBurningEffectRadius = 10206, + /// /// infernal_legion_burning_effect_radius_+ /// - InfernalLegionBurningEffectRadius = 10205, - + InfernalLegionBurningEffectRadius = 10207, + /// /// virtual_infernal_legion_burning_effect_radius /// - VirtualInfernalLegionBurningEffectRadius = 10206, - + VirtualInfernalLegionBurningEffectRadius = 10208, + /// /// base_fire_damage_%_of_maximum_life_taken_per_minute /// - BaseFireDamagePctOfMaximumLifeTakenPerMinute = 10207, - + BaseFireDamagePctOfMaximumLifeTakenPerMinute = 10209, + /// /// minion_fire_damage_%_of_maximum_life_taken_per_minute /// - MinionFireDamagePctOfMaximumLifeTakenPerMinute = 10208, - + MinionFireDamagePctOfMaximumLifeTakenPerMinute = 10210, + /// /// mine_aura_effect_+% /// - MineAuraEffectPct = 10209, - + MineAuraEffectPct = 10211, + /// /// lose_power_charge_each_second_if_not_detonated_mines_recently /// - LosePowerChargeEachSecondIfNotDetonatedMinesRecently = 10210, - + LosePowerChargeEachSecondIfNotDetonatedMinesRecently = 10212, + /// /// mine_damage_leeched_as_life_to_you_permyriad /// - MineDamageLeechedAsLifeToYouPermyriad = 10211, - + MineDamageLeechedAsLifeToYouPermyriad = 10213, + /// /// life_and_energy_shield_recovery_rate_+% /// - LifeAndEnergyShieldRecoveryRatePct = 10212, - + LifeAndEnergyShieldRecoveryRatePct = 10214, + /// /// life_and_energy_shield_recovery_rate_+%_per_power_charge /// - LifeAndEnergyShieldRecoveryRatePctPerPowerCharge = 10213, - + LifeAndEnergyShieldRecoveryRatePctPerPowerCharge = 10215, + /// /// virtual_life_and_energy_shield_recovery_rate_+% /// - VirtualLifeAndEnergyShieldRecoveryRatePct = 10214, - + VirtualLifeAndEnergyShieldRecoveryRatePct = 10216, + /// /// slither_wither_stacks /// - SlitherWitherStacks = 10215, - + SlitherWitherStacks = 10217, + /// /// elusive_effect_+% /// - ElusiveEffectPct = 10216, - + ElusiveEffectPct = 10218, + /// /// gain_elusive_on_kill_chance_% /// - GainElusiveOnKillChancePct = 10217, - + GainElusiveOnKillChancePct = 10219, + /// /// damage_taken_+%_while_affected_by_elusive /// - DamageTakenPctWhileAffectedByElusive = 10218, - + DamageTakenPctWhileAffectedByElusive = 10220, + /// /// attack_and_cast_speed_+%_while_affected_by_elusive /// - AttackAndCastSpeedPctWhileAffectedByElusive = 10219, - + AttackAndCastSpeedPctWhileAffectedByElusive = 10221, + /// /// self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive /// - SelfTakeNoExtraDamageFromCriticalStrikesWhileAffectedByElusive = 10220, - + SelfTakeNoExtraDamageFromCriticalStrikesWhileAffectedByElusive = 10222, + /// /// local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage /// - LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMinimumAddedPhysicalDamage = 10221, - + LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMinimumAddedPhysicalDamage = 10223, + /// /// local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage /// - LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMaximumAddedPhysicalDamage = 10222, - + LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMaximumAddedPhysicalDamage = 10224, + /// /// local_display_socketed_gems_supported_by_level_x_remote_mine_2 /// - LocalDisplaySocketedGemsSupportedByLevelXRemoteMine2 = 10223, - + LocalDisplaySocketedGemsSupportedByLevelXRemoteMine2 = 10225, + /// /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+% /// - LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionDamageTakenPct = 10224, - + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionDamageTakenPct = 10226, + /// /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+% /// - LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionMovementSpeedPct = 10225, - + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionMovementSpeedPct = 10227, + /// /// minion_chance_to_dodge_spells_% /// - MinionChanceToDodgeSpellsPct = 10226, - + MinionChanceToDodgeSpellsPct = 10228, + /// /// minion_damage_taken_+% /// - MinionDamageTakenPct = 10227, - + MinionDamageTakenPct = 10229, + /// /// movement_speed_is_%_of_base /// - MovementSpeedIsPctOfBase = 10228, - + MovementSpeedIsPctOfBase = 10230, + /// /// travel_skill_cooldown_speed_+% /// - TravelSkillCooldownSpeedPct = 10229, - + TravelSkillCooldownSpeedPct = 10231, + /// /// hierophant_mana_cost_+%_final /// - HierophantManaCostPctFinal = 10230, - + HierophantManaCostPctFinal = 10232, + /// /// hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100% /// - HierophantAreaOfEffectPctPer50UnreservedManaUpTo100Pct = 10231, - + HierophantAreaOfEffectPctPer50UnreservedManaUpTo100Pct = 10233, + /// /// cyclone_area_of_effect_+%_per_additional_melee_range /// - CycloneAreaOfEffectPctPerAdditionalMeleeRange = 10232, - + CycloneAreaOfEffectPctPerAdditionalMeleeRange = 10234, + /// /// cyclone_gain_stage_every_x_ms_while_channelling /// - CycloneGainStageEveryXMsWhileChannelling = 10233, - + CycloneGainStageEveryXMsWhileChannelling = 10235, + /// /// combined_dot_multiplier_+ /// - CombinedDotMultiplier = 10234, - + CombinedDotMultiplier = 10236, + /// /// combined_physical_dot_multiplier_+ /// - CombinedPhysicalDotMultiplier = 10235, - + CombinedPhysicalDotMultiplier = 10237, + /// /// total_non_ailment_physical_dot_multiplier_+ /// - TotalNonAilmentPhysicalDotMultiplier = 10236, - + TotalNonAilmentPhysicalDotMultiplier = 10238, + /// /// combined_fire_dot_multiplier_+ /// - CombinedFireDotMultiplier = 10237, - + CombinedFireDotMultiplier = 10239, + /// /// total_non_ailment_fire_dot_multiplier_+ /// - TotalNonAilmentFireDotMultiplier = 10238, - + TotalNonAilmentFireDotMultiplier = 10240, + /// /// combined_cold_dot_multiplier_+ /// - CombinedColdDotMultiplier = 10239, - + CombinedColdDotMultiplier = 10241, + /// /// total_non_ailment_cold_dot_multiplier_+ /// - TotalNonAilmentColdDotMultiplier = 10240, - + TotalNonAilmentColdDotMultiplier = 10242, + /// /// combined_lightning_dot_multiplier_+ /// - CombinedLightningDotMultiplier = 10241, - + CombinedLightningDotMultiplier = 10243, + /// /// total_non_ailment_lightning_dot_multiplier_+ /// - TotalNonAilmentLightningDotMultiplier = 10242, - + TotalNonAilmentLightningDotMultiplier = 10244, + /// /// combined_chaos_dot_multiplier_+ /// - CombinedChaosDotMultiplier = 10243, - + CombinedChaosDotMultiplier = 10245, + /// /// total_non_ailment_chaos_dot_multiplier_+ /// - TotalNonAilmentChaosDotMultiplier = 10244, - + TotalNonAilmentChaosDotMultiplier = 10246, + /// /// total_main_hand_bleeding_critical_ailment_dot_multiplier_+ /// - TotalMainHandBleedingCriticalAilmentDotMultiplier = 10245, - + TotalMainHandBleedingCriticalAilmentDotMultiplier = 10247, + /// /// total_off_hand_bleeding_critical_ailment_dot_multiplier_+ /// - TotalOffHandBleedingCriticalAilmentDotMultiplier = 10246, - + TotalOffHandBleedingCriticalAilmentDotMultiplier = 10248, + /// /// total_spell_bleeding_critical_ailment_dot_multiplier_+ /// - TotalSpellBleedingCriticalAilmentDotMultiplier = 10247, - + TotalSpellBleedingCriticalAilmentDotMultiplier = 10249, + /// /// total_secondary_bleeding_critical_ailment_dot_multiplier_+ /// - TotalSecondaryBleedingCriticalAilmentDotMultiplier = 10248, - + TotalSecondaryBleedingCriticalAilmentDotMultiplier = 10250, + /// /// total_main_hand_ignite_critical_ailment_dot_multiplier_+ /// - TotalMainHandIgniteCriticalAilmentDotMultiplier = 10249, - + TotalMainHandIgniteCriticalAilmentDotMultiplier = 10251, + /// /// total_off_hand_ignite_critical_ailment_dot_multiplier_+ /// - TotalOffHandIgniteCriticalAilmentDotMultiplier = 10250, - + TotalOffHandIgniteCriticalAilmentDotMultiplier = 10252, + /// /// total_spell_ignite_critical_ailment_dot_multiplier_+ /// - TotalSpellIgniteCriticalAilmentDotMultiplier = 10251, - + TotalSpellIgniteCriticalAilmentDotMultiplier = 10253, + /// /// total_secondary_ignite_critical_ailment_dot_multiplier_+ /// - TotalSecondaryIgniteCriticalAilmentDotMultiplier = 10252, - + TotalSecondaryIgniteCriticalAilmentDotMultiplier = 10254, + /// /// total_main_hand_poison_critical_ailment_dot_multiplier_+ /// - TotalMainHandPoisonCriticalAilmentDotMultiplier = 10253, - + TotalMainHandPoisonCriticalAilmentDotMultiplier = 10255, + /// /// total_off_hand_poison_critical_ailment_dot_multiplier_+ /// - TotalOffHandPoisonCriticalAilmentDotMultiplier = 10254, - + TotalOffHandPoisonCriticalAilmentDotMultiplier = 10256, + /// /// total_spell_poison_critical_ailment_dot_multiplier_+ /// - TotalSpellPoisonCriticalAilmentDotMultiplier = 10255, - + TotalSpellPoisonCriticalAilmentDotMultiplier = 10257, + /// /// total_secondary_poison_critical_ailment_dot_multiplier_+ /// - TotalSecondaryPoisonCriticalAilmentDotMultiplier = 10256, - + TotalSecondaryPoisonCriticalAilmentDotMultiplier = 10258, + /// /// total_main_hand_bleeding_non_critical_ailment_dot_multiplier_+ /// - TotalMainHandBleedingNonCriticalAilmentDotMultiplier = 10257, - + TotalMainHandBleedingNonCriticalAilmentDotMultiplier = 10259, + /// /// total_off_hand_bleeding_non_critical_ailment_dot_multiplier_+ /// - TotalOffHandBleedingNonCriticalAilmentDotMultiplier = 10258, - + TotalOffHandBleedingNonCriticalAilmentDotMultiplier = 10260, + /// /// total_spell_bleeding_non_critical_ailment_dot_multiplier_+ /// - TotalSpellBleedingNonCriticalAilmentDotMultiplier = 10259, - + TotalSpellBleedingNonCriticalAilmentDotMultiplier = 10261, + /// /// total_secondary_bleeding_non_critical_ailment_dot_multiplier_+ /// - TotalSecondaryBleedingNonCriticalAilmentDotMultiplier = 10260, - + TotalSecondaryBleedingNonCriticalAilmentDotMultiplier = 10262, + /// /// total_main_hand_ignite_non_critical_ailment_dot_multiplier_+ /// - TotalMainHandIgniteNonCriticalAilmentDotMultiplier = 10261, - + TotalMainHandIgniteNonCriticalAilmentDotMultiplier = 10263, + /// /// total_off_hand_ignite_non_critical_ailment_dot_multiplier_+ /// - TotalOffHandIgniteNonCriticalAilmentDotMultiplier = 10262, - + TotalOffHandIgniteNonCriticalAilmentDotMultiplier = 10264, + /// /// total_spell_ignite_non_critical_ailment_dot_multiplier_+ /// - TotalSpellIgniteNonCriticalAilmentDotMultiplier = 10263, - + TotalSpellIgniteNonCriticalAilmentDotMultiplier = 10265, + /// /// total_secondary_ignite_non_critical_ailment_dot_multiplier_+ /// - TotalSecondaryIgniteNonCriticalAilmentDotMultiplier = 10264, - + TotalSecondaryIgniteNonCriticalAilmentDotMultiplier = 10266, + /// /// total_main_hand_poison_non_critical_ailment_dot_multiplier_+ /// - TotalMainHandPoisonNonCriticalAilmentDotMultiplier = 10265, - + TotalMainHandPoisonNonCriticalAilmentDotMultiplier = 10267, + /// /// total_off_hand_poison_non_critical_ailment_dot_multiplier_+ /// - TotalOffHandPoisonNonCriticalAilmentDotMultiplier = 10266, - + TotalOffHandPoisonNonCriticalAilmentDotMultiplier = 10268, + /// /// total_spell_poison_non_critical_ailment_dot_multiplier_+ /// - TotalSpellPoisonNonCriticalAilmentDotMultiplier = 10267, - + TotalSpellPoisonNonCriticalAilmentDotMultiplier = 10269, + /// /// total_secondary_poison_non_critical_ailment_dot_multiplier_+ /// - TotalSecondaryPoisonNonCriticalAilmentDotMultiplier = 10268, - + TotalSecondaryPoisonNonCriticalAilmentDotMultiplier = 10270, + /// /// dot_multiplier_+ /// - DotMultiplier = 10269, - + DotMultiplier = 10271, + /// /// physical_dot_multiplier_+ /// - PhysicalDotMultiplier = 10270, - + PhysicalDotMultiplier = 10272, + /// /// fire_dot_multiplier_+ /// - FireDotMultiplier = 10271, - + FireDotMultiplier = 10273, + /// /// lightning_dot_multiplier_+ /// - LightningDotMultiplier = 10272, - + LightningDotMultiplier = 10274, + /// /// chaos_dot_multiplier_+ /// - ChaosDotMultiplier = 10273, - + ChaosDotMultiplier = 10275, + /// /// critical_ailment_dot_multiplier_value_override_% /// - CriticalAilmentDotMultiplierValueOverridePct = 10274, - + CriticalAilmentDotMultiplierValueOverridePct = 10276, + /// /// perfect_agony_crit_multi_modifiers_apply_to_dot_multi_at_%_value /// - PerfectAgonyCritMultiModifiersApplyToDotMultiAtPctValue = 10275, - + PerfectAgonyCritMultiModifiersApplyToDotMultiAtPctValue = 10277, + /// /// combined_main_hand_critical_ailment_dot_multiplier_+ /// - CombinedMainHandCriticalAilmentDotMultiplier = 10276, - + CombinedMainHandCriticalAilmentDotMultiplier = 10278, + /// /// combined_off_hand_critical_ailment_dot_multiplier_+ /// - CombinedOffHandCriticalAilmentDotMultiplier = 10277, - + CombinedOffHandCriticalAilmentDotMultiplier = 10279, + /// /// combined_spell_critical_ailment_dot_multiplier_+ /// - CombinedSpellCriticalAilmentDotMultiplier = 10278, - + CombinedSpellCriticalAilmentDotMultiplier = 10280, + /// /// combined_secondary_critical_ailment_dot_multiplier_+ /// - CombinedSecondaryCriticalAilmentDotMultiplier = 10279, - + CombinedSecondaryCriticalAilmentDotMultiplier = 10281, + /// /// combined_ailment_dot_multiplier_+ /// - CombinedAilmentDotMultiplier = 10280, - + CombinedAilmentDotMultiplier = 10282, + /// /// combined_all_dot_multipliers_for_bleeding_+ /// - CombinedAllDotMultipliersForBleeding = 10281, - + CombinedAllDotMultipliersForBleeding = 10283, + /// /// combined_all_dot_multipliers_for_ignite_+ /// - CombinedAllDotMultipliersForIgnite = 10282, - + CombinedAllDotMultipliersForIgnite = 10284, + /// /// combined_all_dot_multipliers_for_poison_+ /// - CombinedAllDotMultipliersForPoison = 10283, - + CombinedAllDotMultipliersForPoison = 10285, + /// /// bleeding_dot_multiplier_+ /// - BleedingDotMultiplier = 10284, - + BleedingDotMultiplier = 10286, + /// /// ignite_dot_multiplier_+ /// - IgniteDotMultiplier = 10285, - + IgniteDotMultiplier = 10287, + /// /// poison_dot_multiplier_+ /// - PoisonDotMultiplier = 10286, - + PoisonDotMultiplier = 10288, + /// /// minimum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MinimumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10287, - + MinimumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10289, + /// /// maximum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MaximumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10288, - + MaximumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10290, + /// /// minimum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MinimumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10289, - + MinimumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10291, + /// /// maximum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MaximumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10290, - + MaximumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10292, + /// /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MinimumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10291, - + MinimumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10293, + /// /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage /// - MaximumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10292, - + MaximumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10294, + /// /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MinimumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10293, - + MinimumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10295, + /// /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage /// - MaximumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10294, - + MaximumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10296, + /// /// minimum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MinimumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10295, - + MinimumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10297, + /// /// maximum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MaximumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10296, - + MaximumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10298, + /// /// minimum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MinimumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10297, - + MinimumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10299, + /// /// maximum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MaximumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10298, - + MaximumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10300, + /// /// minimum_ignite_damage_to_deal_per_minute_from_critical_spell_damage /// - MinimumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10299, - + MinimumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10301, + /// /// maximum_ignite_damage_to_deal_per_minute_from_critical_spell_damage /// - MaximumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10300, - + MaximumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10302, + /// /// minimum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage /// - MinimumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10301, - + MinimumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10303, + /// /// maximum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage /// - MaximumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10302, - + MaximumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10304, + /// /// minimum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MinimumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10303, - + MinimumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10305, + /// /// maximum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage /// - MaximumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10304, - + MaximumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10306, + /// /// minimum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MinimumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10305, - + MinimumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10307, + /// /// maximum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage /// - MaximumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10306, - + MaximumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10308, + /// /// minimum_poison_damage_to_deal_per_minute_from_critical_spell_damage /// - MinimumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10307, - + MinimumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10309, + /// /// maximum_poison_damage_to_deal_per_minute_from_critical_spell_damage /// - MaximumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10308, - + MaximumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10310, + /// /// minimum_poison_damage_to_deal_per_minute_from_critical_secondary_damage /// - MinimumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10309, - + MinimumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10311, + /// /// maximum_poison_damage_to_deal_per_minute_from_critical_secondary_damage /// - MaximumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10310, - + MaximumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10312, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10311, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10313, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10312, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10314, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10313, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10315, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10314, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10316, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10315, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10317, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10316, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10318, + /// /// minimum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10317, - + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10319, + /// /// maximum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10318, - + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10320, + /// /// ailment_multipliers_never_critical /// - AilmentMultipliersNeverCritical = 10319, - + AilmentMultipliersNeverCritical = 10321, + /// /// ailment_dot_multiplier_+ /// - AilmentDotMultiplier = 10320, - + AilmentDotMultiplier = 10322, + /// /// additional_physical_damage_reduction_%_per_minion_up_to_10% /// - AdditionalPhysicalDamageReductionPctPerMinionUpTo10Pct = 10321, - + AdditionalPhysicalDamageReductionPctPerMinionUpTo10Pct = 10323, + /// /// elemental_resistance_%_per_minion_up_to_30% /// - ElementalResistancePctPerMinionUpTo30Pct = 10322, - + ElementalResistancePctPerMinionUpTo30Pct = 10324, + /// /// life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30% /// - LifeAndEnergyShieldRecoveryRatePctPerMinionUpTo30Pct = 10323, - + LifeAndEnergyShieldRecoveryRatePctPerMinionUpTo30Pct = 10325, + /// /// necromancer_defensive_notable_minion_maximum_life_+%_final /// - NecromancerDefensiveNotableMinionMaximumLifePctFinal = 10324, - + NecromancerDefensiveNotableMinionMaximumLifePctFinal = 10326, + /// /// max_life_+%_final_for_minion_from_necromancer_defensive_notable /// - MaxLifePctFinalForMinionFromNecromancerDefensiveNotable = 10325, - + MaxLifePctFinalForMinionFromNecromancerDefensiveNotable = 10327, + /// /// golem_immunity_to_elemental_damage /// - GolemImmunityToElementalDamage = 10326, - + GolemImmunityToElementalDamage = 10328, + /// /// curse_effect_+%_if_200_mana_spent_recently /// - CurseEffectPctIf200ManaSpentRecently = 10327, - + CurseEffectPctIf200ManaSpentRecently = 10329, + /// /// immune_to_auras_from_other_teams /// - ImmuneToAurasFromOtherTeams = 10328, - + ImmuneToAurasFromOtherTeams = 10330, + /// /// spell_skill_gem_level_+ /// - SpellSkillGemLevel = 10329, - + SpellSkillGemLevel = 10331, + /// /// fire_spell_skill_gem_level_+ /// - FireSpellSkillGemLevel = 10330, - + FireSpellSkillGemLevel = 10332, + /// /// cold_spell_skill_gem_level_+ /// - ColdSpellSkillGemLevel = 10331, - + ColdSpellSkillGemLevel = 10333, + /// /// lightning_spell_skill_gem_level_+ /// - LightningSpellSkillGemLevel = 10332, - + LightningSpellSkillGemLevel = 10334, + /// /// chaos_spell_skill_gem_level_+ /// - ChaosSpellSkillGemLevel = 10333, - + ChaosSpellSkillGemLevel = 10335, + /// /// physical_spell_skill_gem_level_+ /// - PhysicalSpellSkillGemLevel = 10334, - + PhysicalSpellSkillGemLevel = 10336, + /// /// minion_skill_gem_level_+ /// - MinionSkillGemLevel = 10335, - + MinionSkillGemLevel = 10337, + /// /// raise_spectre_gem_level_+ /// - RaiseSpectreGemLevel = 10336, - + RaiseSpectreGemLevel = 10338, + /// /// raise_zombie_gem_level_+ /// - RaiseZombieGemLevel = 10337, - + RaiseZombieGemLevel = 10339, + /// /// summon_skeleton_gem_level_+ /// - SummonSkeletonGemLevel = 10338, - + SummonSkeletonGemLevel = 10340, + /// /// minion_maximum_all_elemental_resistances_% /// - MinionMaximumAllElementalResistancesPct = 10339, - + MinionMaximumAllElementalResistancesPct = 10341, + /// /// damage_penetrates_%_elemental_resistance_vs_chilled_enemies /// - DamagePenetratesPctElementalResistanceVsChilledEnemies = 10340, - + DamagePenetratesPctElementalResistanceVsChilledEnemies = 10342, + /// /// critical_strike_multiplier_+_vs_burning_enemies /// - CriticalStrikeMultiplierVsBurningEnemies = 10341, - + CriticalStrikeMultiplierVsBurningEnemies = 10343, + /// /// additional_main_hand_hits_per_combo_average /// - AdditionalMainHandHitsPerComboAverage = 10342, - + AdditionalMainHandHitsPerComboAverage = 10344, + /// /// lightning_explosion_mine_damage_+% /// - LightningExplosionMineDamagePct = 10343, - + LightningExplosionMineDamagePct = 10345, + /// /// cold_projectile_mine_damage_+% /// - ColdProjectileMineDamagePct = 10344, - + ColdProjectileMineDamagePct = 10346, + /// /// mortar_barrage_mine_damage_+% /// - MortarBarrageMineDamagePct = 10345, - + MortarBarrageMineDamagePct = 10347, + /// /// lightning_explosion_mine_throwing_speed_+% /// - LightningExplosionMineThrowingSpeedPct = 10346, - + LightningExplosionMineThrowingSpeedPct = 10348, + /// /// cold_projectile_mine_throwing_speed_+% /// - ColdProjectileMineThrowingSpeedPct = 10347, - + ColdProjectileMineThrowingSpeedPct = 10349, + /// /// mortar_barrage_mine_throwing_speed_+% /// - MortarBarrageMineThrowingSpeedPct = 10348, - + MortarBarrageMineThrowingSpeedPct = 10350, + /// /// lightning_explosion_mine_aura_effect_+% /// - LightningExplosionMineAuraEffectPct = 10349, - + LightningExplosionMineAuraEffectPct = 10351, + /// /// cold_projectile_mine_critical_multiplier_+ /// - ColdProjectileMineCriticalMultiplier = 10350, - + ColdProjectileMineCriticalMultiplier = 10352, + /// /// mortar_barrage_mine_num_projectiles /// - MortarBarrageMineNumProjectiles = 10351, - + MortarBarrageMineNumProjectiles = 10353, + /// /// map_spread_doodads_index /// - MapSpreadDoodadsIndex = 10352, - + MapSpreadDoodadsIndex = 10354, + /// /// damage_removed_from_spectres_before_life_or_es_% /// - DamageRemovedFromSpectresBeforeLifeOrEsPct = 10353, - + DamageRemovedFromSpectresBeforeLifeOrEsPct = 10355, + /// /// mamba_strike_deal_%_of_all_poison_total_damage_per_minute /// - MambaStrikeDealPctOfAllPoisonTotalDamagePerMinute = 10354, - + MambaStrikeDealPctOfAllPoisonTotalDamagePerMinute = 10356, + /// /// desecrate_duration_+% /// - DesecrateDurationPct = 10355, - + DesecrateDurationPct = 10357, + /// /// petrification_max_targets /// - PetrificationMaxTargets = 10356, - + PetrificationMaxTargets = 10358, + /// /// support_remote_mine_2_damage_+%_final /// - SupportRemoteMine2DamagePctFinal = 10357, - + SupportRemoteMine2DamagePctFinal = 10359, + /// /// local_display_socketed_gems_supported_by_level_x_feeding_frenzy /// - LocalDisplaySocketedGemsSupportedByLevelXFeedingFrenzy = 10358, - + LocalDisplaySocketedGemsSupportedByLevelXFeedingFrenzy = 10360, + /// /// non_unique_flask_effect_+% /// - NonUniqueFlaskEffectPct = 10359, - + NonUniqueFlaskEffectPct = 10361, + /// /// ground_lightning_art_variation /// - GroundLightningArtVariation = 10360, - + GroundLightningArtVariation = 10362, + /// /// immune_to_petrification /// - ImmuneToPetrification = 10361, - + ImmuneToPetrification = 10363, + /// /// trap_and_mine_throwing_speed_+% /// - TrapAndMineThrowingSpeedPct = 10362, - + TrapAndMineThrowingSpeedPct = 10364, + /// /// local_display_socketed_gems_supported_by_level_x_meat_shield /// - LocalDisplaySocketedGemsSupportedByLevelXMeatShield = 10363, - + LocalDisplaySocketedGemsSupportedByLevelXMeatShield = 10365, + /// /// local_display_socketed_gems_supported_by_level_x_deathmark /// - LocalDisplaySocketedGemsSupportedByLevelXDeathmark = 10364, - + LocalDisplaySocketedGemsSupportedByLevelXDeathmark = 10366, + /// /// local_display_socketed_gems_supported_by_level_x_nightblade /// - LocalDisplaySocketedGemsSupportedByLevelXNightblade = 10365, - + LocalDisplaySocketedGemsSupportedByLevelXNightblade = 10367, + /// /// coiling_assault_attack_speed_+%_final_on_final_strike /// - CoilingAssaultAttackSpeedPctFinalOnFinalStrike = 10366, - + CoilingAssaultAttackSpeedPctFinalOnFinalStrike = 10368, + /// /// coiling_assault_damage_+%_final_on_final_strike /// - CoilingAssaultDamagePctFinalOnFinalStrike = 10367, - + CoilingAssaultDamagePctFinalOnFinalStrike = 10369, + /// /// life_regeneration_rate_per_minute_%_per_raised_zombie /// - LifeRegenerationRatePerMinutePctPerRaisedZombie = 10368, - + LifeRegenerationRatePerMinutePctPerRaisedZombie = 10370, + /// /// mana_regeneration_rate_+%_per_raised_spectre /// - ManaRegenerationRatePctPerRaisedSpectre = 10369, - + ManaRegenerationRatePctPerRaisedSpectre = 10371, + /// /// additional_attack_block_%_per_summoned_skeleton /// - AdditionalAttackBlockPctPerSummonedSkeleton = 10370, - + AdditionalAttackBlockPctPerSummonedSkeleton = 10372, + /// /// attack_and_cast_speed_+%_per_summoned_raging_spirit /// - AttackAndCastSpeedPctPerSummonedRagingSpirit = 10371, - + AttackAndCastSpeedPctPerSummonedRagingSpirit = 10373, + /// /// minion_elemental_damage_%_to_add_as_chaos /// - MinionElementalDamagePctToAddAsChaos = 10372, - + MinionElementalDamagePctToAddAsChaos = 10374, + /// /// bone_armour_damage_absorbed_% /// - BoneArmourDamageAbsorbedPct = 10373, - + BoneArmourDamageAbsorbedPct = 10375, + /// /// mod_granted_passive_hash /// - ModGrantedPassiveHash = 10374, - + ModGrantedPassiveHash = 10376, + /// /// killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked /// - KilledMonsterDroppedItemRarityPctWhenFrozenOrShocked = 10375, - + KilledMonsterDroppedItemRarityPctWhenFrozenOrShocked = 10377, + /// /// item_found_rarity_+%_per_white_socket_on_item /// - ItemFoundRarityPctPerWhiteSocketOnItem = 10376, - + ItemFoundRarityPctPerWhiteSocketOnItem = 10378, + /// /// holy_relic_nova_life_regeneration_rate_per_minute /// - HolyRelicNovaLifeRegenerationRatePerMinute = 10377, - + HolyRelicNovaLifeRegenerationRatePerMinute = 10379, + /// /// holy_relic_nova_minion_life_regeneration_rate_per_second /// - HolyRelicNovaMinionLifeRegenerationRatePerSecond = 10378, - + HolyRelicNovaMinionLifeRegenerationRatePerSecond = 10380, + /// /// create_blighted_spore_on_killing_rare_enemy /// - CreateBlightedSporeOnKillingRareEnemy = 10379, - + CreateBlightedSporeOnKillingRareEnemy = 10381, + /// /// critical_bleeding_dot_multiplier_+ /// - CriticalBleedingDotMultiplier = 10380, - + CriticalBleedingDotMultiplier = 10382, + /// /// critical_ignite_dot_multiplier_+ /// - CriticalIgniteDotMultiplier = 10381, - + CriticalIgniteDotMultiplier = 10383, + /// /// critical_poison_dot_multiplier_+ /// - CriticalPoisonDotMultiplier = 10382, - + CriticalPoisonDotMultiplier = 10384, + /// /// map_legion_league_force_general /// - MapLegionLeagueForceGeneral = 10383, - + MapLegionLeagueForceGeneral = 10385, + /// /// map_legion_league_force_war_chest /// - MapLegionLeagueForceWarChest = 10384, - + MapLegionLeagueForceWarChest = 10386, + /// /// corpse_warp_area_of_effect_+%_final_when_consuming_corpse /// - CorpseWarpAreaOfEffectPctFinalWhenConsumingCorpse = 10385, - + CorpseWarpAreaOfEffectPctFinalWhenConsumingCorpse = 10387, + /// /// current_number_of_snapping_adder_projectiles /// - CurrentNumberOfSnappingAdderProjectiles = 10386, - + CurrentNumberOfSnappingAdderProjectiles = 10388, + /// /// maximum_number_of_snapping_adder_projectiles /// - MaximumNumberOfSnappingAdderProjectiles = 10387, - + MaximumNumberOfSnappingAdderProjectiles = 10389, + /// /// mortar_barrage_mine_minimum_added_fire_damage_taken /// - MortarBarrageMineMinimumAddedFireDamageTaken = 10388, - + MortarBarrageMineMinimumAddedFireDamageTaken = 10390, + /// /// mortar_barrage_mine_maximum_added_fire_damage_taken /// - MortarBarrageMineMaximumAddedFireDamageTaken = 10389, - + MortarBarrageMineMaximumAddedFireDamageTaken = 10391, + /// /// mortar_barrage_mine_minimum_added_fire_damage_taken_limit /// - MortarBarrageMineMinimumAddedFireDamageTakenLimit = 10390, - + MortarBarrageMineMinimumAddedFireDamageTakenLimit = 10392, + /// /// mortar_barrage_mine_maximum_added_fire_damage_taken_limit /// - MortarBarrageMineMaximumAddedFireDamageTakenLimit = 10391, - + MortarBarrageMineMaximumAddedFireDamageTakenLimit = 10393, + /// /// cold_projectile_mine_enemy_critical_strike_chance_+%_against_self /// - ColdProjectileMineEnemyCriticalStrikeChancePctAgainstSelf = 10392, - + ColdProjectileMineEnemyCriticalStrikeChancePctAgainstSelf = 10394, + /// /// cold_projectile_mine_throwing_speed_negated_+% /// - ColdProjectileMineThrowingSpeedNegatedPct = 10393, - + ColdProjectileMineThrowingSpeedNegatedPct = 10395, + /// /// mine_throwing_speed_negated_+% /// - MineThrowingSpeedNegatedPct = 10394, - + MineThrowingSpeedNegatedPct = 10396, + /// /// blight_tower_skill_area_of_effect_radius_+%_final /// - BlightTowerSkillAreaOfEffectRadiusPctFinal = 10395, - + BlightTowerSkillAreaOfEffectRadiusPctFinal = 10397, + /// /// mines_hinder_nearby_enemies_for_x_ms_on_arming /// - MinesHinderNearbyEnemiesForXMsOnArming = 10396, - + MinesHinderNearbyEnemiesForXMsOnArming = 10398, + /// /// is_unnerved /// - IsUnnerved = 10397, - + IsUnnerved = 10399, + /// /// chance_to_unnerve_on_hit_% /// - ChanceToUnnerveOnHitPct = 10398, - + ChanceToUnnerveOnHitPct = 10400, + /// /// fire_damage_resistance_is_% /// - FireDamageResistanceIsPct = 10399, - + FireDamageResistanceIsPct = 10401, + /// /// cold_damage_resistance_is_% /// - ColdDamageResistanceIsPct = 10400, - + ColdDamageResistanceIsPct = 10402, + /// /// lightning_damage_resistance_is_% /// - LightningDamageResistanceIsPct = 10401, - + LightningDamageResistanceIsPct = 10403, + /// /// fire_damage_resistance_+% /// - FireDamageResistancePct2 = 10402, - + FireDamageResistancePct2 = 10404, + /// /// cold_damage_resistance_+% /// - ColdDamageResistancePct2 = 10403, - + ColdDamageResistancePct2 = 10405, + /// /// lightning_damage_resistance_+% /// - LightningDamageResistancePct2 = 10404, - + LightningDamageResistancePct2 = 10406, + /// /// local_display_socketed_gems_supported_by_level_x_infernal_legion /// - LocalDisplaySocketedGemsSupportedByLevelXInfernalLegion = 10405, - + LocalDisplaySocketedGemsSupportedByLevelXInfernalLegion = 10407, + /// /// mine_throwing_speed_halved_+% /// - MineThrowingSpeedHalvedPct = 10406, - + MineThrowingSpeedHalvedPct = 10408, + /// /// mortar_barrage_mine_throwing_speed_halved_+% /// - MortarBarrageMineThrowingSpeedHalvedPct = 10407, - + MortarBarrageMineThrowingSpeedHalvedPct = 10409, + /// /// viper_strike_dual_wield_damage_+%_final /// - ViperStrikeDualWieldDamagePctFinal = 10408, - + ViperStrikeDualWieldDamagePctFinal = 10410, + /// /// viper_strike_dual_wield_attack_speed_+%_final /// - ViperStrikeDualWieldAttackSpeedPctFinal = 10409, - + ViperStrikeDualWieldAttackSpeedPctFinal = 10411, + /// /// is_on_fungal_ground /// - IsOnFungalGround = 10410, - + IsOnFungalGround = 10412, + /// /// fungal_ground_while_stationary_radius /// - FungalGroundWhileStationaryRadius = 10411, - + FungalGroundWhileStationaryRadius = 10413, + /// /// local_display_trigger_level_x_create_fungal_ground_on_kill /// - LocalDisplayTriggerLevelXCreateFungalGroundOnKill = 10412, - + LocalDisplayTriggerLevelXCreateFungalGroundOnKill = 10414, + /// /// enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance /// - EnemiesKilledOnFungalGroundExplodeFor5PctChaosDamagePctChance = 10413, - + EnemiesKilledOnFungalGroundExplodeFor5PctChaosDamagePctChance = 10415, + /// /// virtual_cannot_cast_spells /// - VirtualCannotCastSpells = 10414, - + VirtualCannotCastSpells = 10416, + /// /// virtual_cannot_use_warcries /// - VirtualCannotUseWarcries = 10415, - + VirtualCannotUseWarcries = 10417, + /// /// silence_cannot_use_spells_or_warcries /// - SilenceCannotUseSpellsOrWarcries = 10416, - + SilenceCannotUseSpellsOrWarcries = 10418, + /// /// attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem /// - AttackSkillsPctPhysicalAsExtraFireDamagePerSocketedRedGem = 10417, - + AttackSkillsPctPhysicalAsExtraFireDamagePerSocketedRedGem = 10419, + /// /// local_gain_vaal_pact_if_all_socketed_gems_red /// - LocalGainVaalPactIfAllSocketedGemsRed = 10418, - + LocalGainVaalPactIfAllSocketedGemsRed = 10420, + /// /// additive_mine_duration_modifiers_apply_to_buff_effect_duration /// - AdditiveMineDurationModifiersApplyToBuffEffectDuration = 10419, - + AdditiveMineDurationModifiersApplyToBuffEffectDuration = 10421, + /// /// minion_fire_damage_taken_+% /// - MinionFireDamageTakenPct = 10420, - + MinionFireDamageTakenPct = 10422, + /// /// returning_projectiles_always_pierce /// - ReturningProjectilesAlwaysPierce = 10421, - + ReturningProjectilesAlwaysPierce = 10423, + /// /// additive_life_modifiers_apply_to_attack_damage_at_30%_value /// - AdditiveLifeModifiersApplyToAttackDamageAt30PctValue = 10422, - + AdditiveLifeModifiersApplyToAttackDamageAt30PctValue = 10424, + /// /// additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value /// - AdditiveEnergyShieldModifiersApplyToSpellDamageAt30PctValue = 10423, - + AdditiveEnergyShieldModifiersApplyToSpellDamageAt30PctValue = 10425, + /// /// additive_mana_modifiers_apply_to_damage_at_30%_value /// - AdditiveManaModifiersApplyToDamageAt30PctValue = 10424, - + AdditiveManaModifiersApplyToDamageAt30PctValue = 10426, + /// /// blight_tower_chilling_cost_+% /// - BlightTowerChillingCostPct = 10425, - + BlightTowerChillingCostPct = 10427, + /// /// blight_tower_arc_damage_+% /// - BlightTowerArcDamagePct = 10426, - + BlightTowerArcDamagePct = 10428, + /// /// blight_tower_fireball_additional_projectile /// - BlightTowerFireballAdditionalProjectile = 10427, - + BlightTowerFireballAdditionalProjectile = 10429, + /// /// elusive_critical_strike_multiplier_+_to_skills_supported_by_nightblade /// - ElusiveCriticalStrikeMultiplierToSkillsSupportedByNightblade = 10428, - + ElusiveCriticalStrikeMultiplierToSkillsSupportedByNightblade = 10430, + /// /// nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills /// - NightbladeElusiveGrantsCriticalStrikeMultiplierToSupportedSkills = 10429, - + NightbladeElusiveGrantsCriticalStrikeMultiplierToSupportedSkills = 10431, + /// /// support_additional_trap_mine_%_chance_for_1_additional_trap_mine /// - SupportAdditionalTrapMinePctChanceFor1AdditionalTrapMine = 10430, - + SupportAdditionalTrapMinePctChanceFor1AdditionalTrapMine = 10432, + /// /// support_additional_trap_mine_%_chance_for_2_additional_trap_mine /// - SupportAdditionalTrapMinePctChanceFor2AdditionalTrapMine = 10431, - + SupportAdditionalTrapMinePctChanceFor2AdditionalTrapMine = 10433, + /// /// support_additional_trap_mine_%_chance_for_3_additional_trap_mine /// - SupportAdditionalTrapMinePctChanceFor3AdditionalTrapMine = 10432, - + SupportAdditionalTrapMinePctChanceFor3AdditionalTrapMine = 10434, + /// /// ailment_dot_multiplier_+_per_equipped_elder_item /// - AilmentDotMultiplierPerEquippedElderItem = 10433, - + AilmentDotMultiplierPerEquippedElderItem = 10435, + /// /// dot_multiplier_+_while_affected_by_malevolence /// - DotMultiplierWhileAffectedByMalevolence = 10434, - + DotMultiplierWhileAffectedByMalevolence = 10436, + /// /// is_blight_monster /// - IsBlightMonster = 10435, - + IsBlightMonster = 10437, + /// /// is_blighted_map /// - IsBlightedMap = 10436, - + IsBlightedMap = 10438, + /// /// damage_+%_final_from_fungal_ground /// - DamagePctFinalFromFungalGround = 10437, - + DamagePctFinalFromFungalGround = 10439, + /// /// ice_dash_duration_+% /// - IceDashDurationPct = 10438, - + IceDashDurationPct = 10440, + /// /// skill_max_unleash_seals /// - SkillMaxUnleashSeals = 10439, - + SkillMaxUnleashSeals = 10441, + /// /// local_display_socketed_gems_supported_by_level_x_swift_assembly /// - LocalDisplaySocketedGemsSupportedByLevelXSwiftAssembly = 10440, - + LocalDisplaySocketedGemsSupportedByLevelXSwiftAssembly = 10442, + /// /// blighted_map_chest_reward_lucky_count /// - BlightedMapChestRewardLuckyCount = 10441, - + BlightedMapChestRewardLuckyCount = 10443, + /// /// blighted_map_tower_damage_+%_final /// - BlightedMapTowerDamagePctFinal = 10442, - + BlightedMapTowerDamagePctFinal = 10444, + /// /// virtual_physical_damage_taken_+ /// - VirtualPhysicalDamageTaken = 10443, - + VirtualPhysicalDamageTaken = 10445, + /// /// physical_damage_taken_+_per_level /// - PhysicalDamageTakenPerLevel = 10444, - + PhysicalDamageTakenPerLevel = 10446, + /// /// deathmark_minion_damage_+%_final /// - DeathmarkMinionDamagePctFinal = 10445, - + DeathmarkMinionDamagePctFinal = 10447, + /// /// local_display_grants_skill_frostblink_level /// - LocalDisplayGrantsSkillFrostblinkLevel = 10446, - + LocalDisplayGrantsSkillFrostblinkLevel = 10448, + /// /// non_golem_minion_global_minimum_added_physical_damage /// - NonGolemMinionGlobalMinimumAddedPhysicalDamage = 10447, - + NonGolemMinionGlobalMinimumAddedPhysicalDamage = 10449, + /// /// non_golem_minion_global_maximum_added_physical_damage /// - NonGolemMinionGlobalMaximumAddedPhysicalDamage = 10448, - + NonGolemMinionGlobalMaximumAddedPhysicalDamage = 10450, + /// /// fortify_during_life_flask_effect /// - FortifyDuringLifeFlaskEffect = 10449, - + FortifyDuringLifeFlaskEffect = 10451, + /// /// %_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy /// - PctChanceToGainFrenzyChargeOnMineDetonatedTargetingAnEnemy = 10450, - + PctChanceToGainFrenzyChargeOnMineDetonatedTargetingAnEnemy = 10452, + /// /// mine_throwing_speed_+%_per_frenzy_charge /// - MineThrowingSpeedPctPerFrenzyCharge = 10451, - + MineThrowingSpeedPctPerFrenzyCharge = 10453, + /// /// mine_critical_strike_chance_+%_per_power_charge /// - MineCriticalStrikeChancePctPerPowerCharge = 10452, - + MineCriticalStrikeChancePctPerPowerCharge = 10454, + /// /// damage_+%_from_saboteur_mine_aura_up_to_-10% /// - DamagePctFromSaboteurMineAuraUpTo10Pct = 10453, - + DamagePctFromSaboteurMineAuraUpTo10Pct = 10455, + /// /// damage_taken_+%_from_sabotuer_mine_aura_up_to_10% /// - DamageTakenPctFromSabotuerMineAuraUpTo10Pct = 10454, - + DamageTakenPctFromSabotuerMineAuraUpTo10Pct = 10456, + /// /// current_number_of_carrion_golems /// - CurrentNumberOfCarrionGolems = 10455, - + CurrentNumberOfCarrionGolems = 10457, + /// /// local_display_socketed_gems_supported_by_level_x_charged_mines /// - LocalDisplaySocketedGemsSupportedByLevelXChargedMines = 10456, - + LocalDisplaySocketedGemsSupportedByLevelXChargedMines = 10458, + /// /// mine_art_variation /// - MineArtVariation = 10457, - + MineArtVariation = 10459, + /// /// slither_cooldown_does_not_tick /// - SlitherCooldownDoesNotTick = 10458, - + SlitherCooldownDoesNotTick = 10460, + /// /// virtual_mine_art_variation /// - VirtualMineArtVariation = 10459, - + VirtualMineArtVariation = 10461, + /// /// corrupted_emperor_mine_art_variation /// - CorruptedEmperorMineArtVariation = 10460, - + CorruptedEmperorMineArtVariation = 10462, + /// /// tencent_chiyou_set_bonus /// - TencentChiyouSetBonus = 10461, - + TencentChiyouSetBonus = 10463, + /// /// cobra_lash_damage_+% /// - CobraLashDamagePct = 10462, - + CobraLashDamagePct = 10464, + /// /// cobra_lash_projectile_speed_+% /// - CobraLashProjectileSpeedPct = 10463, - + CobraLashProjectileSpeedPct = 10465, + /// /// cobra_lash_number_of_additional_chains /// - CobraLashNumberOfAdditionalChains = 10464, - + CobraLashNumberOfAdditionalChains = 10466, + /// /// slither_elusive_effect_+% /// - SlitherElusiveEffectPct = 10465, - + SlitherElusiveEffectPct = 10467, + /// /// snapping_adder_damage_+% /// - SnappingAdderDamagePct = 10466, - + SnappingAdderDamagePct = 10468, + /// /// snapping_adder_withered_on_hit_for_2_seconds_%_chance /// - SnappingAdderWitheredOnHitFor2SecondsPctChance = 10467, - + SnappingAdderWitheredOnHitFor2SecondsPctChance = 10469, + /// /// snapping_adder_%_chance_to_retain_projectile_on_release /// - SnappingAdderPctChanceToRetainProjectileOnRelease = 10468, - + SnappingAdderPctChanceToRetainProjectileOnRelease = 10470, + /// /// corrosive_shroud_poison_dot_multiplier_+_while_aura_active /// - CorrosiveShroudPoisonDotMultiplierWhileAuraActive = 10469, - + CorrosiveShroudPoisonDotMultiplierWhileAuraActive = 10471, + /// /// mamba_strike_damage_+% /// - MambaStrikeDamagePct = 10470, - + MambaStrikeDamagePct = 10472, + /// /// mamba_strike_duration_+% /// - MambaStrikeDurationPct = 10471, - + MambaStrikeDurationPct = 10473, + /// /// mamba_strike_area_of_effect_+% /// - MambaStrikeAreaOfEffectPct = 10472, - + MambaStrikeAreaOfEffectPct = 10474, + /// /// bone_golem_damage_+% /// - BoneGolemDamagePct = 10473, - + BoneGolemDamagePct = 10475, + /// /// base_bone_golem_granted_buff_effect_+% /// - BaseBoneGolemGrantedBuffEffectPct = 10474, - + BaseBoneGolemGrantedBuffEffectPct = 10476, + /// /// bone_golem_elemental_resistances_% /// - BoneGolemElementalResistancesPct = 10475, - + BoneGolemElementalResistancesPct = 10477, + /// /// summon_skitterbots_area_of_effect_+% /// - SummonSkitterbotsAreaOfEffectPct = 10476, - + SummonSkitterbotsAreaOfEffectPct = 10478, + /// /// summon_skitterbots_mana_reservation_+% /// - SummonSkitterbotsManaReservationPct = 10477, - + SummonSkitterbotsManaReservationPct = 10479, + /// /// local_item_can_have_x_additional_enchantments /// - LocalItemCanHaveXAdditionalEnchantments = 10478, - + LocalItemCanHaveXAdditionalEnchantments = 10480, + /// /// is_buffed_by_buff_tower /// - IsBuffedByBuffTower = 10479, - + IsBuffedByBuffTower = 10481, + /// /// elusive_effect_on_self_+% /// - ElusiveEffectOnSelfPct = 10480, - + ElusiveEffectOnSelfPct = 10482, + /// /// virtual_unaffected_by_temporal_chains /// - VirtualUnaffectedByTemporalChains = 10481, - + VirtualUnaffectedByTemporalChains = 10483, + /// /// virtual_unaffected_by_chilled_ground /// - VirtualUnaffectedByChilledGround = 10482, - + VirtualUnaffectedByChilledGround = 10484, + /// /// virtual_unaffected_by_vulnerability /// - VirtualUnaffectedByVulnerability = 10483, - + VirtualUnaffectedByVulnerability = 10485, + /// /// virtual_unaffected_by_enfeeble /// - VirtualUnaffectedByEnfeeble = 10484, - + VirtualUnaffectedByEnfeeble = 10486, + /// /// virtual_unaffected_by_flammability /// - VirtualUnaffectedByFlammability = 10485, - + VirtualUnaffectedByFlammability = 10487, + /// /// virtual_unaffected_by_frostbite /// - VirtualUnaffectedByFrostbite = 10486, - + VirtualUnaffectedByFrostbite = 10488, + /// /// virtual_unaffected_by_conductivity /// - VirtualUnaffectedByConductivity = 10487, - + VirtualUnaffectedByConductivity = 10489, + /// /// virtual_unaffected_by_elemental_weakness /// - VirtualUnaffectedByElementalWeakness = 10488, - + VirtualUnaffectedByElementalWeakness = 10490, + /// /// virtual_unaffected_by_burning_ground /// - VirtualUnaffectedByBurningGround = 10489, - + VirtualUnaffectedByBurningGround = 10491, + /// /// virtual_unaffected_by_shocked_ground /// - VirtualUnaffectedByShockedGround = 10490, - + VirtualUnaffectedByShockedGround = 10492, + /// /// eligible_to_grant_kill_bonuses /// - EligibleToGrantKillBonuses = 10491, - + EligibleToGrantKillBonuses = 10493, + /// /// immune_to_auras_from_non_blight_towers /// - ImmuneToAurasFromNonBlightTowers = 10492, - + ImmuneToAurasFromNonBlightTowers = 10494, + /// /// map_blight_chest_%_chance_for_additional_drop /// - MapBlightChestPctChanceForAdditionalDrop = 10493, - + MapBlightChestPctChanceForAdditionalDrop = 10495, + /// - /// chest_%_chance_for_additional_drop + /// chest_%_chance_for_additional_template_drop /// - ChestPctChanceForAdditionalDrop = 10494, - + ChestPctChanceForAdditionalTemplateDrop = 10496, + /// /// active_skill_poison_duration_+%_final /// - ActiveSkillPoisonDurationPctFinal = 10495, - + ActiveSkillPoisonDurationPctFinal = 10497, + /// /// nearby_enemies_all_exposure_%_while_phasing /// - NearbyEnemiesAllExposurePctWhilePhasing = 10496, - + NearbyEnemiesAllExposurePctWhilePhasing = 10498, + /// /// raider_nearby_enemies_accuracy_rating_+%_final_while_phasing /// - RaiderNearbyEnemiesAccuracyRatingPctFinalWhilePhasing = 10497, - + RaiderNearbyEnemiesAccuracyRatingPctFinalWhilePhasing = 10499, + /// /// raider_phasing_aura_accuracy_rating_+%_final /// - RaiderPhasingAuraAccuracyRatingPctFinal = 10498, - + RaiderPhasingAuraAccuracyRatingPctFinal = 10500, + /// /// snapping_adder_maximum_projectiles_released /// - SnappingAdderMaximumProjectilesReleased = 10499, - + SnappingAdderMaximumProjectilesReleased = 10501, + /// /// virtual_cyclone_skill_area_of_effect_+%_from_melee_range /// - VirtualCycloneSkillAreaOfEffectPctFromMeleeRange = 10500, - + VirtualCycloneSkillAreaOfEffectPctFromMeleeRange = 10502, + /// /// track_have_hit_cursed_enemy_recently /// - TrackHaveHitCursedEnemyRecently = 10501, - + TrackHaveHitCursedEnemyRecently = 10503, + /// /// have_hit_cursed_enemy_recently /// - HaveHitCursedEnemyRecently = 10502, - + HaveHitCursedEnemyRecently = 10504, + /// /// mana_regeneration_rate_+%_if_hit_cursed_enemy_recently /// - ManaRegenerationRatePctIfHitCursedEnemyRecently = 10503, - + ManaRegenerationRatePctIfHitCursedEnemyRecently = 10505, + /// /// disable_attack_repeats /// - DisableAttackRepeats = 10504, - + DisableAttackRepeats = 10506, + /// /// snapping_adder_released_projectile_damage_+%_final /// - SnappingAdderReleasedProjectileDamagePctFinal = 10505, - + SnappingAdderReleasedProjectileDamagePctFinal = 10507, + /// /// blight_tower_range_+% /// - BlightTowerRangePct = 10506, - + BlightTowerRangePct = 10508, + /// /// blight_shocking_tower_range_+% /// - BlightShockingTowerRangePct = 10507, - + BlightShockingTowerRangePct = 10509, + /// /// blight_shocking_tower_damage_+% /// - BlightShockingTowerDamagePct = 10508, - + BlightShockingTowerDamagePct = 10510, + /// /// mod_granted_passive_hash_2 /// - ModGrantedPassiveHash2 = 10509, - + ModGrantedPassiveHash2 = 10511, + /// /// tencent_chiyou_set_movement_speed_+% /// - TencentChiyouSetMovementSpeedPct = 10510, - + TencentChiyouSetMovementSpeedPct = 10512, + /// /// is_in_town /// - IsInTown = 10511, - + IsInTown = 10513, + /// /// track_have_used_a_warcry_in_past_8_seconds /// - TrackHaveUsedAWarcryInPast8Seconds = 10512, - + TrackHaveUsedAWarcryInPast8Seconds = 10514, + /// /// have_used_a_warcry_in_past_8_seconds /// - HaveUsedAWarcryInPast8Seconds = 10513, - + HaveUsedAWarcryInPast8Seconds = 10515, + /// /// chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds /// - ChanceToDealDoubleDamagePctIfUsedAWarcryInPast8Seconds = 10514, - + ChanceToDealDoubleDamagePctIfUsedAWarcryInPast8Seconds = 10516, + /// /// active_skill_returning_projectile_damage_+%_final /// - ActiveSkillReturningProjectileDamagePctFinal = 10515, - + ActiveSkillReturningProjectileDamagePctFinal = 10517, + /// /// blight_chilling_tower_damage_+% /// - BlightChillingTowerDamagePct = 10516, - + BlightChillingTowerDamagePct = 10518, + /// /// blight_chilling_tower_range_+% /// - BlightChillingTowerRangePct = 10517, - + BlightChillingTowerRangePct = 10519, + /// /// blight_chilling_tower_chill_effect_+% /// - BlightChillingTowerChillEffectPct = 10518, - + BlightChillingTowerChillEffectPct = 10520, + /// /// blight_chilling_tower_duration_+% /// - BlightChillingTowerDurationPct = 10519, - + BlightChillingTowerDurationPct = 10521, + /// /// blight_chilling_tower_freeze_for_ms /// - BlightChillingTowerFreezeForMs = 10520, - + BlightChillingTowerFreezeForMs = 10522, + /// /// blight_freezebolt_tower_damage_+% /// - BlightFreezeboltTowerDamagePct = 10521, - + BlightFreezeboltTowerDamagePct = 10523, + /// /// blight_freezebolt_tower_range_+% /// - BlightFreezeboltTowerRangePct = 10522, - + BlightFreezeboltTowerRangePct = 10524, + /// /// blight_freezebolt_tower_full_damage_cold_enemies /// - BlightFreezeboltTowerFullDamageColdEnemies = 10523, - + BlightFreezeboltTowerFullDamageColdEnemies = 10525, + /// /// blight_freezebolt_tower_projectiles_+ /// - BlightFreezeboltTowerProjectiles = 10524, - + BlightFreezeboltTowerProjectiles = 10526, + /// /// blight_glacialcage_tower_duration_+% /// - BlightGlacialcageTowerDurationPct = 10525, - + BlightGlacialcageTowerDurationPct = 10527, + /// /// blight_glacialcage_tower_range_+% /// - BlightGlacialcageTowerRangePct = 10526, - + BlightGlacialcageTowerRangePct = 10528, + /// /// blight_glacialcage_tower_enemy_damage_taken_+% /// - BlightGlacialcageTowerEnemyDamageTakenPct = 10527, - + BlightGlacialcageTowerEnemyDamageTakenPct = 10529, + /// /// blight_glacialcage_tower_cooldown_recovery_+% /// - BlightGlacialcageTowerCooldownRecoveryPct = 10528, - + BlightGlacialcageTowerCooldownRecoveryPct = 10530, + /// /// blight_shocknova_tower_full_damage_lightning_enemies /// - BlightShocknovaTowerFullDamageLightningEnemies = 10529, - + BlightShocknovaTowerFullDamageLightningEnemies = 10531, + /// /// blight_shocknova_tower_shock_effect_+% /// - BlightShocknovaTowerShockEffectPct = 10530, - + BlightShocknovaTowerShockEffectPct = 10532, + /// /// blight_shocknova_tower_shock_repeats_with_area_effect_+% /// - BlightShocknovaTowerShockRepeatsWithAreaEffectPct = 10531, - + BlightShocknovaTowerShockRepeatsWithAreaEffectPct = 10533, + /// /// blight_shocknova_tower_shock_additional_repeats /// - BlightShocknovaTowerShockAdditionalRepeats = 10532, - + BlightShocknovaTowerShockAdditionalRepeats = 10534, + /// /// blight_lightningstorm_tower_damage_+% /// - BlightLightningstormTowerDamagePct = 10533, - + BlightLightningstormTowerDamagePct = 10535, + /// /// blight_lightningstorm_tower_range_+% /// - BlightLightningstormTowerRangePct = 10534, - + BlightLightningstormTowerRangePct = 10536, + /// /// blight_lightningstorm_tower_delay_+% /// - BlightLightningstormTowerDelayPct = 10535, - + BlightLightningstormTowerDelayPct = 10537, + /// /// blight_lightningstorm_tower_area_of_effect_+% /// - BlightLightningstormTowerAreaOfEffectPct = 10536, - + BlightLightningstormTowerAreaOfEffectPct = 10538, + /// /// blight_arc_tower_damage_+% /// - BlightArcTowerDamagePct = 10537, - + BlightArcTowerDamagePct = 10539, + /// /// blight_arc_tower_range_+% /// - BlightArcTowerRangePct = 10538, - + BlightArcTowerRangePct = 10540, + /// /// blight_arc_tower_additional_repeats /// - BlightArcTowerAdditionalRepeats = 10539, - + BlightArcTowerAdditionalRepeats = 10541, + /// /// blight_arc_tower_additional_chains /// - BlightArcTowerAdditionalChains = 10540, - + BlightArcTowerAdditionalChains = 10542, + /// /// blight_empowering_tower_buff_effect_+% /// - BlightEmpoweringTowerBuffEffectPct = 10541, - + BlightEmpoweringTowerBuffEffectPct = 10543, + /// /// blight_empowering_tower_range_+% /// - BlightEmpoweringTowerRangePct = 10542, - + BlightEmpoweringTowerRangePct = 10544, + /// /// blight_empowering_tower_grant_cast_speed_+% /// - BlightEmpoweringTowerGrantCastSpeedPct = 10543, - + BlightEmpoweringTowerGrantCastSpeedPct = 10545, + /// /// blight_empowering_tower_grant_damage_+% /// - BlightEmpoweringTowerGrantDamagePct = 10544, - + BlightEmpoweringTowerGrantDamagePct = 10546, + /// /// blight_empowering_tower_grant_%_chance_to_deal_double_damage /// - BlightEmpoweringTowerGrantPctChanceToDealDoubleDamage = 10545, - + BlightEmpoweringTowerGrantPctChanceToDealDoubleDamage = 10547, + /// /// blight_imbuing_tower_buff_effect_+% /// - BlightImbuingTowerBuffEffectPct = 10546, - + BlightImbuingTowerBuffEffectPct = 10548, + /// /// blight_imbuing_tower_range_+% /// - BlightImbuingTowerRangePct = 10547, - + BlightImbuingTowerRangePct = 10549, + /// /// blight_imbuing_tower_grant_critical_strike_+% /// - BlightImbuingTowerGrantCriticalStrikePct = 10548, - + BlightImbuingTowerGrantCriticalStrikePct = 10550, + /// /// blight_imbuing_tower_grant_damage_+% /// - BlightImbuingTowerGrantDamagePct = 10549, - + BlightImbuingTowerGrantDamagePct = 10551, + /// /// blight_smothering_tower_buff_effect_+% /// - BlightSmotheringTowerBuffEffectPct = 10550, - + BlightSmotheringTowerBuffEffectPct = 10552, + /// /// blight_smothering_tower_range_+% /// - BlightSmotheringTowerRangePct = 10551, - + BlightSmotheringTowerRangePct = 10553, + /// /// blight_smothering_tower_grant_damage_+% /// - BlightSmotheringTowerGrantDamagePct = 10552, - + BlightSmotheringTowerGrantDamagePct = 10554, + /// /// blight_smothering_tower_grant_movement_speed_+% /// - BlightSmotheringTowerGrantMovementSpeedPct = 10553, - + BlightSmotheringTowerGrantMovementSpeedPct = 10555, + /// /// blight_seismic_tower_damage_+% /// - BlightSeismicTowerDamagePct = 10554, - + BlightSeismicTowerDamagePct = 10556, + /// /// blight_seismic_tower_range_+% /// - BlightSeismicTowerRangePct = 10555, - + BlightSeismicTowerRangePct = 10557, + /// /// blight_seismic_tower_stun_duration_+% /// - BlightSeismicTowerStunDurationPct = 10556, - + BlightSeismicTowerStunDurationPct = 10558, + /// /// blight_seismic_tower_additional_cascades_+ /// - BlightSeismicTowerAdditionalCascades = 10557, - + BlightSeismicTowerAdditionalCascades = 10559, + /// /// blight_seismic_tower_cascade_range_+% /// - BlightSeismicTowerCascadeRangePct = 10558, - + BlightSeismicTowerCascadeRangePct = 10560, + /// /// blight_temporal_tower_buff_effect_+% /// - BlightTemporalTowerBuffEffectPct = 10559, - + BlightTemporalTowerBuffEffectPct = 10561, + /// /// blight_temporal_tower_range_+% /// - BlightTemporalTowerRangePct = 10560, - + BlightTemporalTowerRangePct = 10562, + /// /// blight_temporal_tower_tick_speed_+% /// - BlightTemporalTowerTickSpeedPct = 10561, - + BlightTemporalTowerTickSpeedPct = 10563, + /// /// blight_temporal_tower_grant_you_action_speed_-% /// - BlightTemporalTowerGrantYouActionSpeedPct = 10562, - + BlightTemporalTowerGrantYouActionSpeedPct = 10564, + /// /// blight_stonegaze_tower_duration_+% /// - BlightStonegazeTowerDurationPct = 10563, - + BlightStonegazeTowerDurationPct = 10565, + /// /// blight_stonegaze_tower_range_+% /// - BlightStonegazeTowerRangePct = 10564, - + BlightStonegazeTowerRangePct = 10566, + /// /// blight_stonegaze_tower_cooldown_recovery_+% /// - BlightStonegazeTowerCooldownRecoveryPct = 10565, - + BlightStonegazeTowerCooldownRecoveryPct = 10567, + /// /// blight_stonegaze_tower_petrify_tick_speed_+% /// - BlightStonegazeTowerPetrifyTickSpeedPct = 10566, - + BlightStonegazeTowerPetrifyTickSpeedPct = 10568, + /// /// blight_summoning_tower_minion_damage_+% /// - BlightSummoningTowerMinionDamagePct = 10567, - + BlightSummoningTowerMinionDamagePct = 10569, + /// /// blight_summoning_tower_range_+% /// - BlightSummoningTowerRangePct = 10568, - + BlightSummoningTowerRangePct = 10570, + /// /// blight_summoning_tower_minion_movement_speed_+% /// - BlightSummoningTowerMinionMovementSpeedPct = 10569, - + BlightSummoningTowerMinionMovementSpeedPct = 10571, + /// /// blight_summoning_tower_minion_life_+% /// - BlightSummoningTowerMinionLifePct = 10570, - + BlightSummoningTowerMinionLifePct = 10572, + /// /// blight_summoning_tower_minions_summoned_+ /// - BlightSummoningTowerMinionsSummoned = 10571, - + BlightSummoningTowerMinionsSummoned = 10573, + /// /// blight_scout_tower_minion_damage_+% /// - BlightScoutTowerMinionDamagePct = 10572, - + BlightScoutTowerMinionDamagePct = 10574, + /// /// blight_scout_tower_range_+% /// - BlightScoutTowerRangePct = 10573, - + BlightScoutTowerRangePct = 10575, + /// /// blight_scout_tower_minion_movement_speed_+% /// - BlightScoutTowerMinionMovementSpeedPct = 10574, - + BlightScoutTowerMinionMovementSpeedPct = 10576, + /// /// blight_scout_tower_minion_life_+% /// - BlightScoutTowerMinionLifePct = 10575, - + BlightScoutTowerMinionLifePct = 10577, + /// /// blight_sentinel_tower_minion_damage_+% /// - BlightSentinelTowerMinionDamagePct = 10576, - + BlightSentinelTowerMinionDamagePct = 10578, + /// /// blight_sentinel_tower_range_+% /// - BlightSentinelTowerRangePct = 10577, - + BlightSentinelTowerRangePct = 10579, + /// /// blight_sentinel_tower_minion_movement_speed_+% /// - BlightSentinelTowerMinionMovementSpeedPct = 10578, - + BlightSentinelTowerMinionMovementSpeedPct = 10580, + /// /// blight_sentinel_tower_minion_life_+% /// - BlightSentinelTowerMinionLifePct = 10579, - + BlightSentinelTowerMinionLifePct = 10581, + /// /// blight_fireball_tower_damage_+% /// - BlightFireballTowerDamagePct = 10580, - + BlightFireballTowerDamagePct = 10582, + /// /// blight_fireball_tower_range_+% /// - BlightFireballTowerRangePct = 10581, - + BlightFireballTowerRangePct = 10583, + /// /// blight_fireball_tower_cast_speed_+% /// - BlightFireballTowerCastSpeedPct = 10582, - + BlightFireballTowerCastSpeedPct = 10584, + /// /// blight_fireball_tower_additional_projectiles_+ /// - BlightFireballTowerAdditionalProjectiles = 10583, - + BlightFireballTowerAdditionalProjectiles = 10585, + /// /// blight_fireball_tower_projectiles_nova /// - BlightFireballTowerProjectilesNova = 10584, - + BlightFireballTowerProjectilesNova = 10586, + /// /// blight_flamethrower_tower_damage_+% /// - BlightFlamethrowerTowerDamagePct = 10585, - + BlightFlamethrowerTowerDamagePct = 10587, + /// /// blight_flamethrower_tower_range_+% /// - BlightFlamethrowerTowerRangePct = 10586, - + BlightFlamethrowerTowerRangePct = 10588, + /// /// blight_flamethrower_tower_full_damage_fire_enemies /// - BlightFlamethrowerTowerFullDamageFireEnemies = 10587, - + BlightFlamethrowerTowerFullDamageFireEnemies = 10589, + /// /// blight_flamethrower_tower_cast_speed_+% /// - BlightFlamethrowerTowerCastSpeedPct = 10588, - + BlightFlamethrowerTowerCastSpeedPct = 10590, + /// /// blight_meteor_tower_damage_+% /// - BlightMeteorTowerDamagePct = 10589, - + BlightMeteorTowerDamagePct = 10591, + /// /// blight_meteor_tower_range_+% /// - BlightMeteorTowerRangePct = 10590, - + BlightMeteorTowerRangePct = 10592, + /// /// blight_meteor_tower_always_stun /// - BlightMeteorTowerAlwaysStun = 10591, - + BlightMeteorTowerAlwaysStun = 10593, + /// /// blight_meteor_tower_additional_meteor_+ /// - BlightMeteorTowerAdditionalMeteor = 10592, - + BlightMeteorTowerAdditionalMeteor = 10594, + /// /// fire_storm_fireball_delay_+% /// - FireStormFireballDelayPct = 10593, - + FireStormFireballDelayPct = 10595, + /// /// additional_number_of_monsters_to_summon_+ /// - AdditionalNumberOfMonstersToSummon = 10594, - + AdditionalNumberOfMonstersToSummon = 10596, + /// /// petrification_tick_speed_+% /// - PetrificationTickSpeedPct = 10595, - + PetrificationTickSpeedPct = 10597, + /// /// temporal_anomaly_tick_speed_+% /// - TemporalAnomalyTickSpeedPct = 10596, - + TemporalAnomalyTickSpeedPct = 10598, + /// /// temporal_anomaly_allied_action_speed_-% /// - TemporalAnomalyAlliedActionSpeedPct = 10597, - + TemporalAnomalyAlliedActionSpeedPct = 10599, + /// /// fire_storm_additional_fireballs_per_wave_+ /// - FireStormAdditionalFireballsPerWave = 10598, - + FireStormAdditionalFireballsPerWave = 10600, + /// /// phys_cascade_trap_range_+% /// - PhysCascadeTrapRangePct = 10599, - + PhysCascadeTrapRangePct = 10601, + /// /// shock_nova_skill_area_of_effect_+%_per_repeat /// - ShockNovaSkillAreaOfEffectPctPerRepeat = 10600, - + ShockNovaSkillAreaOfEffectPctPerRepeat = 10602, + /// /// chest_repeat_drops_count /// - ChestRepeatDropsCount = 10601, - + ChestRepeatDropsCount = 10603, + /// /// damage_+%_final_from_returning_projectile /// - DamagePctFinalFromReturningProjectile = 10602, - + DamagePctFinalFromReturningProjectile = 10604, + /// /// display_additional_projectile_per_2_mines_in_detonation_sequence /// - DisplayAdditionalProjectilePer2MinesInDetonationSequence = 10603, - + DisplayAdditionalProjectilePer2MinesInDetonationSequence = 10605, + /// /// display_removes_and_grants_elusive_when_used /// - DisplayRemovesAndGrantsElusiveWhenUsed = 10604, - + DisplayRemovesAndGrantsElusiveWhenUsed = 10606, + /// /// display_additional_projectile_per_mine_in_detonation_sequence /// - DisplayAdditionalProjectilePerMineInDetonationSequence = 10605, - + DisplayAdditionalProjectilePerMineInDetonationSequence = 10607, + /// /// display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine /// - DisplayMineDeontationMechanicsDetonationSpeedPctFinalPerSequenceMine = 10606, - + DisplayMineDeontationMechanicsDetonationSpeedPctFinalPerSequenceMine = 10608, + /// /// display_skitterbot_limit_per_type /// - DisplaySkitterbotLimitPerType = 10607, - + DisplaySkitterbotLimitPerType = 10609, + /// /// display_skitterbot_shocking_aura /// - DisplaySkitterbotShockingAura = 10608, - + DisplaySkitterbotShockingAura = 10610, + /// /// display_skitterbot_chilling_aura /// - DisplaySkitterbotChillingAura = 10609, - + DisplaySkitterbotChillingAura = 10611, + /// /// damage_+%_final_against_non_blight_monsters /// - DamagePctFinalAgainstNonBlightMonsters = 10610, - + DamagePctFinalAgainstNonBlightMonsters = 10612, + /// /// tencent_chiyou_set_weapon_skin /// - TencentChiyouSetWeaponSkin = 10611, - + TencentChiyouSetWeaponSkin = 10613, + /// /// tencent_chiyou_set_weapon_effect /// - TencentChiyouSetWeaponEffect = 10612, - + TencentChiyouSetWeaponEffect = 10614, + /// /// unaffected_by_temporal_tower /// - UnaffectedByTemporalTower = 10613, + UnaffectedByTemporalTower = 10615, + + /// + /// sweep_add_endurance_charge_on_hit_% + /// + SweepAddEnduranceChargeOnHitPct = 10616, + + /// + /// mine_cannot_rearm + /// + MineCannotRearm = 10617, + + /// + /// map_metamorphosis_league + /// + MapMetamorphosisLeague = 10618, + + /// + /// metamorphosis_skill_row + /// + MetamorphosisSkillRow = 10619, + + /// + /// metamorphosis_skill_instance_id + /// + MetamorphosisSkillInstanceId = 10620, + + /// + /// tethered_movement_speed_+%_final + /// + TetheredMovementSpeedPctFinal = 10621, + + /// + /// number_of_tethers + /// + NumberOfTethers = 10622, + + /// + /// tethered_movement_speed_+%_final_per_rope + /// + TetheredMovementSpeedPctFinalPerRope = 10623, + + /// + /// explosive_arrow_explosion_minimum_added_fire_damage + /// + ExplosiveArrowExplosionMinimumAddedFireDamage = 10624, + + /// + /// explosive_arrow_explosion_maximum_added_fire_damage + /// + ExplosiveArrowExplosionMaximumAddedFireDamage = 10625, + + /// + /// explosive_arrow_explosion_base_damage_+permyriad + /// + ExplosiveArrowExplosionBaseDamagePermyriad = 10626, + + /// + /// map_level_+ + /// + MapLevel = 10627, + + /// + /// additional_beam_only_chains + /// + AdditionalBeamOnlyChains = 10628, + + /// + /// virtual_number_of_chains_for_beams + /// + VirtualNumberOfChainsForBeams = 10629, + + /// + /// tethered_movement_speed_+%_final_per_rope_vs_rare + /// + TetheredMovementSpeedPctFinalPerRopeVsRare = 10630, + + /// + /// tethered_movement_speed_+%_final_per_rope_vs_unique + /// + TetheredMovementSpeedPctFinalPerRopeVsUnique = 10631, + + /// + /// is_ranged_attack_totem + /// + IsRangedAttackTotem = 10632, + + /// + /// attack_skills_additional_ballista_totems_allowed + /// + AttackSkillsAdditionalBallistaTotemsAllowed = 10633, + + /// + /// explosive_arrow_maximum_bonus_explosion_radius + /// + ExplosiveArrowMaximumBonusExplosionRadius = 10634, + + /// + /// modifiers_to_number_of_projectiles_instead_apply_to_splitting + /// + ModifiersToNumberOfProjectilesInsteadApplyToSplitting = 10635, + + /// + /// intermediary_number_of_additional_projectiles + /// + IntermediaryNumberOfAdditionalProjectiles = 10636, + + /// + /// virtual_projectile_number_to_split + /// + VirtualProjectileNumberToSplit = 10637, + + /// + /// virtual_arrow_number_to_split + /// + VirtualArrowNumberToSplit = 10638, + + /// + /// intermediary_number_of_additional_arrows + /// + IntermediaryNumberOfAdditionalArrows = 10639, + + /// + /// maximum_life_mana_and_energy_shield_+% + /// + MaximumLifeManaAndEnergyShieldPct = 10640, + + /// + /// maximum_energy_shield_+_per_100_life_reserved + /// + MaximumEnergyShieldPer100LifeReserved = 10641, + + /// + /// projectiles_barrage + /// + ProjectilesBarrage = 10642, + + /// + /// intermediary_chaos_resistance_only_additions + /// + IntermediaryChaosResistanceOnlyAdditions = 10643, + + /// + /// skill_ignores_cooldown + /// + SkillIgnoresCooldown = 10644, + + /// + /// summoned_monsters_num_magic_monsters + /// + SummonedMonstersNumMagicMonsters = 10645, + + /// + /// summoned_monsters_num_rare_monsters + /// + SummonedMonstersNumRareMonsters = 10646, + + /// + /// projectiles_rain + /// + ProjectilesRain = 10647, + + /// + /// tethered_enemies_take_attack_projectile_damage_taken_+% + /// + TetheredEnemiesTakeAttackProjectileDamageTakenPct = 10648, + + /// + /// support_rain_projectile_damage_+%_final + /// + SupportRainProjectileDamagePctFinal = 10649, + + /// + /// support_barrage_damage_+%_final + /// + SupportBarrageDamagePctFinal = 10650, + + /// + /// virtual_has_ascendancy_child_aura_stat + /// + VirtualHasAscendancyChildAuraStat = 10651, + + /// + /// action_should_face_away_from_target + /// + ActionShouldFaceAwayFromTarget = 10652, + + /// + /// damage_taken_+%_final_per_totem + /// + DamageTakenPctFinalPerTotem = 10653, + + /// + /// movement_velocity_+%_per_totem + /// + MovementVelocityPctPerTotem = 10654, + + /// + /// totems_action_speed_cannot_be_modified_below_base + /// + TotemsActionSpeedCannotBeModifiedBelowBase = 10655, + + /// + /// totem_attack_damage_leeched_as_mana_to_you_permyriad + /// + TotemAttackDamageLeechedAsManaToYouPermyriad = 10656, + + /// + /// damage_leeched_as_mana_to_parent_permyriad + /// + DamageLeechedAsManaToParentPermyriad = 10657, + + /// + /// totems_nearby_enemies_damage_taken_+% + /// + TotemsNearbyEnemiesDamageTakenPct = 10658, + + /// + /// attack_projectile_damage_taken_+% + /// + AttackProjectileDamageTakenPct = 10659, + + /// + /// physical_damage_taken_+%_final + /// + PhysicalDamageTakenPctFinal = 10660, + + /// + /// physical_damage_taken_when_hit_+%_final + /// + PhysicalDamageTakenWhenHitPctFinal = 10661, + + /// + /// cold_damage_taken_+%_final + /// + ColdDamageTakenPctFinal = 10662, + + /// + /// cold_damage_taken_when_hit_+%_final + /// + ColdDamageTakenWhenHitPctFinal = 10663, + + /// + /// lightning_damage_taken_+%_final + /// + LightningDamageTakenPctFinal = 10664, + + /// + /// lightning_damage_taken_when_hit_+%_final + /// + LightningDamageTakenWhenHitPctFinal = 10665, + + /// + /// fire_damage_taken_+%_final + /// + FireDamageTakenPctFinal = 10666, + + /// + /// fire_damage_taken_when_hit_+%_final + /// + FireDamageTakenWhenHitPctFinal = 10667, + + /// + /// chaos_damage_taken_+%_final + /// + ChaosDamageTakenPctFinal = 10668, + + /// + /// chaos_damage_taken_when_hit_+%_final + /// + ChaosDamageTakenWhenHitPctFinal = 10669, + + /// + /// elemental_damage_taken_+%_final + /// + ElementalDamageTakenPctFinal = 10670, + + /// + /// virtual_chaos_reflect_damage_taken_+% + /// + VirtualChaosReflectDamageTakenPct = 10671, + + /// + /// virtual_elemental_damage_taken_when_hit_+% + /// + VirtualElementalDamageTakenWhenHitPct = 10672, + + /// + /// virtual_physical_damage_taken_over_time_+% + /// + VirtualPhysicalDamageTakenOverTimePct = 10673, + + /// + /// virtual_cold_damage_taken_over_time_+% + /// + VirtualColdDamageTakenOverTimePct = 10674, + + /// + /// virtual_lightning_damage_taken_over_time_+% + /// + VirtualLightningDamageTakenOverTimePct = 10675, + + /// + /// virtual_fire_damage_taken_over_time_+% + /// + VirtualFireDamageTakenOverTimePct = 10676, + + /// + /// virtual_chaos_damage_taken_over_time_+% + /// + VirtualChaosDamageTakenOverTimePct = 10677, + + /// + /// chaos_damage_%_taken_from_mana_before_life + /// + ChaosDamagePctTakenFromManaBeforeLife = 10678, + + /// + /// on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds + /// + OnCastLoseAllManaGainPctAsMaximumLightningDamageFor4Seconds = 10679, + + /// + /// allow_multiple_offerings + /// + AllowMultipleOfferings = 10680, + + /// + /// offering_duration_+% + /// + OfferingDurationPct = 10681, + + /// + /// character_sheet_reference_accuracy + /// + CharacterSheetReferenceAccuracy = 10682, + + /// + /// character_sheet_reference_damage + /// + CharacterSheetReferenceDamage = 10683, + + /// + /// character_sheet_reference_evasion + /// + CharacterSheetReferenceEvasion = 10684, + + /// + /// character_sheet_reference_high_dex_evasion + /// + CharacterSheetReferenceHighDexEvasion = 10685, + + /// + /// chance_to_evade_attacks_+%_final + /// + ChanceToEvadeAttacksPctFinal = 10686, + + /// + /// chance_to_evade_projectile_attacks_+%_final + /// + ChanceToEvadeProjectileAttacksPctFinal = 10687, + + /// + /// chance_to_evade_melee_attacks_+%_final + /// + ChanceToEvadeMeleeAttacksPctFinal = 10688, + + /// + /// virtual_avoid_elemental_damage_% + /// + VirtualAvoidElementalDamagePct = 10689, + + /// + /// virtual_avoid_fire_damage_% + /// + VirtualAvoidFireDamagePct = 10690, + + /// + /// virtual_avoid_cold_damage_% + /// + VirtualAvoidColdDamagePct = 10691, + + /// + /// virtual_avoid_lightning_damage_% + /// + VirtualAvoidLightningDamagePct = 10692, + + /// + /// map_atlas_exile_influence + /// + MapAtlasExileInfluence = 10693, + + /// + /// fortify_damage_taken_when_hit_+%_final + /// + FortifyDamageTakenWhenHitPctFinal = 10694, + + /// + /// harbinger_channel_buff_damage_taken_+%_final + /// + HarbingerChannelBuffDamageTakenPctFinal = 10695, + + /// + /// damage_taken_when_hit_+%_final + /// + DamageTakenWhenHitPctFinal = 10696, + + /// + /// ailment_threshold + /// + AilmentThreshold = 10697, + + /// + /// base_ailment_threshold + /// + BaseAilmentThreshold = 10698, + + /// + /// ailment_threshold_+% + /// + AilmentThresholdPct = 10699, + + /// + /// max_chance_to_block_attacks_if_not_blocked_recently + /// + MaxChanceToBlockAttacksIfNotBlockedRecently = 10700, + + /// + /// phasing_if_blocked_recently + /// + PhasingIfBlockedRecently = 10701, + + /// + /// extra_target_targeting_distance_+% + /// + ExtraTargetTargetingDistancePct = 10702, + + /// + /// damaging_ailments_deal_damage_+%_faster + /// + DamagingAilmentsDealDamagePctFaster = 10703, + + /// + /// virtual_number_of_forks_for_projectiles_final + /// + VirtualNumberOfForksForProjectilesFinal = 10704, + + /// + /// number_of_additional_forks_base + /// + NumberOfAdditionalForksBase = 10705, + + /// + /// inc_aoe_plus_more_area_damage_+%_final + /// + IncAoePlusMoreAreaDamagePctFinal = 10706, + + /// + /// spell_echo_plus_chance_double_damage_%_final + /// + SpellEchoPlusChanceDoubleDamagePctFinal = 10707, + + /// + /// multistrike_damage_+%_final_on_third_repeat + /// + MultistrikeDamagePctFinalOnThirdRepeat = 10708, + + /// + /// unaffected_by_bleeding_while_leeching + /// + UnaffectedByBleedingWhileLeeching = 10709, + + /// + /// metamorphosis_boss_life_+%_final_permyriad + /// + MetamorphosisBossLifePctFinalPermyriad = 10710, + + /// + /// metamorphosis_boss_attack_speed_+%_final_permyriad + /// + MetamorphosisBossAttackSpeedPctFinalPermyriad = 10711, + + /// + /// metamorphosis_boss_cast_speed_+%_final_permyriad + /// + MetamorphosisBossCastSpeedPctFinalPermyriad = 10712, + + /// + /// metamorphosis_boss_move_speed_+%_final_permyriad + /// + MetamorphosisBossMoveSpeedPctFinalPermyriad = 10713, + + /// + /// metamorphosis_boss_damage_+%_final_permyriad + /// + MetamorphosisBossDamagePctFinalPermyriad = 10714, + + /// + /// metamorphosis_boss_actor_scale_+%_permyriad + /// + MetamorphosisBossActorScalePctPermyriad = 10715, + + /// + /// metamorphosis_boss_item_quantity_+%_final_permyriad + /// + MetamorphosisBossItemQuantityPctFinalPermyriad = 10716, + + /// + /// metamorphosis_boss_item_rarity_+%_final_permyriad + /// + MetamorphosisBossItemRarityPctFinalPermyriad = 10717, + + /// + /// metamorphosis_boss_extra_reward_%_chance_permyriad + /// + MetamorphosisBossExtraRewardPctChancePermyriad = 10718, + + /// + /// metamorphosis_boss_power_level + /// + MetamorphosisBossPowerLevel = 10719, + + /// + /// supported_aura_skill_gem_level_+ + /// + SupportedAuraSkillGemLevel = 10720, + + /// + /// supported_cold_skill_gem_level_+ + /// + SupportedColdSkillGemLevel = 10721, + + /// + /// supported_elemental_skill_gem_level_+ + /// + SupportedElementalSkillGemLevel = 10722, + + /// + /// supported_curse_skill_gem_level_+ + /// + SupportedCurseSkillGemLevel = 10723, + + /// + /// supported_lightning_skill_gem_level_+ + /// + SupportedLightningSkillGemLevel = 10724, + + /// + /// explosive_arrow_hit_and_ailment_damage_+%_final_per_stack + /// + ExplosiveArrowHitAndAilmentDamagePctFinalPerStack = 10725, + + /// + /// non_damaging_ailments_as_though_damage_+%_final + /// + NonDamagingAilmentsAsThoughDamagePctFinal = 10726, + + /// + /// critical_strikes_do_not_always_apply_non_damaging_ailments + /// + CriticalStrikesDoNotAlwaysApplyNonDamagingAilments = 10727, + + /// + /// summoned_phantasms_have_no_duration + /// + SummonedPhantasmsHaveNoDuration = 10728, + + /// + /// active_skill_player_level + /// + ActiveSkillPlayerLevel = 10729, + + /// + /// support_barrage_attack_time_+%_per_projectile_fired + /// + SupportBarrageAttackTimePctPerProjectileFired = 10730, + + /// + /// metamorphosis_boss_item_reward_slot_1_index + /// + MetamorphosisBossItemRewardSlot1Index = 10731, + + /// + /// metamorphosis_boss_item_reward_slot_2_index + /// + MetamorphosisBossItemRewardSlot2Index = 10732, + + /// + /// metamorphosis_boss_item_reward_slot_3_index + /// + MetamorphosisBossItemRewardSlot3Index = 10733, + + /// + /// metamorphosis_boss_item_reward_slot_4_index + /// + MetamorphosisBossItemRewardSlot4Index = 10734, + + /// + /// metamorphosis_boss_item_reward_slot_5_index + /// + MetamorphosisBossItemRewardSlot5Index = 10735, + + /// + /// local_item_allow_modification_while_corrupted + /// + LocalItemAllowModificationWhileCorrupted = 10736, + + /// + /// local_item_implicit_modifier_limit + /// + LocalItemImplicitModifierLimit = 10737, + + /// + /// skill_cooldown_time_override_ms + /// + SkillCooldownTimeOverrideMs = 10738, + + /// + /// skill_cooldown_group_override + /// + SkillCooldownGroupOverride = 10739, + + /// + /// jewellery_elemental_quality + /// + JewelleryElementalQuality = 10740, + + /// + /// jewellery_caster_quality + /// + JewelleryCasterQuality = 10741, + + /// + /// jewellery_attack_quality + /// + JewelleryAttackQuality = 10742, + + /// + /// jewellery_defense_quality + /// + JewelleryDefenseQuality = 10743, + + /// + /// jewellery_resource_quality + /// + JewelleryResourceQuality = 10744, + + /// + /// jewellery_resistance_quality + /// + JewelleryResistanceQuality = 10745, + + /// + /// jewellery_attribute_quality + /// + JewelleryAttributeQuality = 10746, + + /// + /// base_additional_burning_debuff_%_of_ignite_damage + /// + BaseAdditionalBurningDebuffPctOfIgniteDamage = 10747, + + /// + /// full_shield_threshold + /// + FullShieldThreshold = 10748, + + /// + /// skill_can_only_use_non_melee_weapons + /// + SkillCanOnlyUseNonMeleeWeapons = 10749, + + /// + /// skill_can_only_use_bow + /// + SkillCanOnlyUseBow = 10750, + + /// + /// chance_to_ignore_hexproof_% + /// + ChanceToIgnoreHexproofPct = 10751, + + /// + /// no_minion_duration + /// + NoMinionDuration = 10752, + + /// + /// active_skill_attack_damage_+%_final_with_two_handed_weapon + /// + ActiveSkillAttackDamagePctFinalWithTwoHandedWeapon = 10753, + + /// + /// active_skill_attack_speed_+%_final_with_two_handed_weapon + /// + ActiveSkillAttackSpeedPctFinalWithTwoHandedWeapon = 10754, + + /// + /// Knockback Speed +% + /// + KnockbackSpeedPct = 10755, + + /// + /// tethering_arrow_display_rope_limit + /// + TetheringArrowDisplayRopeLimit = 10756, + + /// + /// additive_arrow_speed_modifiers_apply_to_area_of_effect + /// + AdditiveArrowSpeedModifiersApplyToAreaOfEffect = 10757, + + /// + /// combined_arrow_speed_+% + /// + CombinedArrowSpeedPct = 10758, + + /// + /// metamorphosis_boss_disable_bone_morphing + /// + MetamorphosisBossDisableBoneMorphing = 10759, + + /// + /// map_additional_tier + /// + MapAdditionalTier = 10760, + + /// + /// map_warlord_influence + /// + MapWarlordInfluence = 10761, + + /// + /// support_spell_cascade_sideways + /// + SupportSpellCascadeSideways = 10762, + + /// + /// artillery_ballista_fire_pen_+% + /// + ArtilleryBallistaFirePenPct = 10763, + + /// + /// artillery_ballista_num_additional_arrows + /// + ArtilleryBallistaNumAdditionalArrows = 10764, + + /// + /// shrapnel_ballista_num_additional_arrows + /// + ShrapnelBallistaNumAdditionalArrows = 10765, + + /// + /// shrapnel_ballista_projectile_speed_+% + /// + ShrapnelBallistaProjectileSpeedPct = 10766, + + /// + /// shrapnel_ballista_num_pierce + /// + ShrapnelBallistaNumPierce = 10767, + + /// + /// determine_knockback_direction_from_melee_pattern + /// + DetermineKnockbackDirectionFromMeleePattern = 10768, + + /// + /// galvanic_arrow_projectile_speed_+% + /// + GalvanicArrowProjectileSpeedPct = 10769, + + /// + /// check_for_targets_between_initiator_and_projectile_source + /// + CheckForTargetsBetweenInitiatorAndProjectileSource = 10770, + + /// + /// cannot_recover_energy_shield + /// + CannotRecoverEnergyShield = 10771, + + /// + /// minions_use_parents_flasks_on_summon + /// + MinionsUseParentsFlasksOnSummon = 10772, + + /// + /// poison_dot_multiplier_+_per_frenzy_charge + /// + PoisonDotMultiplierPerFrenzyCharge = 10773, + + /// + /// movement_velocity_+%_while_near_parent_final + /// + MovementVelocityPctWhileNearParentFinal = 10774, + + /// + /// movement_velocity_+%_for_near_parent_buffstat_final + /// + MovementVelocityPctForNearParentBuffstatFinal = 10775, + + /// + /// sextant_uses_remaining + /// + SextantUsesRemaining = 10776, + + /// + /// watchstone_uses_remaining + /// + WatchstoneUsesRemaining = 10777, + + /// + /// skill_number_of_previous_locations_to_track + /// + SkillNumberOfPreviousLocationsToTrack = 10778, + + /// + /// melee_strike_skill_strike_previous_location + /// + MeleeStrikeSkillStrikePreviousLocation = 10779, + + /// + /// skill_is_strike_skill + /// + SkillIsStrikeSkill = 10780, + + /// + /// orion_circle_maze_number_of_circles + /// + OrionCircleMazeNumberOfCircles = 10781, + + /// + /// summon_mirage_warrior_on_crit + /// + SummonMirageWarriorOnCrit = 10782, + + /// + /// avoid_elemental_damage_while_phasing_% + /// + AvoidElementalDamageWhilePhasingPct = 10783, + + /// + /// active_skill_chill_as_though_damage_+%_final + /// + ActiveSkillChillAsThoughDamagePctFinal = 10784, + + /// + /// active_skill_shock_as_though_damage_+%_final + /// + ActiveSkillShockAsThoughDamagePctFinal = 10785, + + /// + /// fire_skill_gem_level_+ + /// + FireSkillGemLevel = 10786, + + /// + /// cold_skill_gem_level_+ + /// + ColdSkillGemLevel = 10787, + + /// + /// lightning_skill_gem_level_+ + /// + LightningSkillGemLevel = 10788, + + /// + /// chaos_skill_gem_level_+ + /// + ChaosSkillGemLevel = 10789, + + /// + /// physical_skill_gem_level_+ + /// + PhysicalSkillGemLevel = 10790, + + /// + /// strength_skill_gem_level_+ + /// + StrengthSkillGemLevel = 10791, + + /// + /// dexterity_skill_gem_level_+ + /// + DexteritySkillGemLevel = 10792, + + /// + /// intelligence_skill_gem_level_+ + /// + IntelligenceSkillGemLevel = 10793, + + /// + /// skill_is_nova_skill + /// + SkillIsNovaSkill = 10794, + + /// + /// nova_spells_cast_at_target_location + /// + NovaSpellsCastAtTargetLocation = 10795, + + /// + /// virtual_self_targeted_skills_target_location_instead + /// + VirtualSelfTargetedSkillsTargetLocationInstead = 10796, + + /// + /// map_awakening_level + /// + MapAwakeningLevel = 10797, + + /// + /// map_boss_life_+permyriad_final_from_awakening_level + /// + MapBossLifePermyriadFinalFromAwakeningLevel = 10798, + + /// + /// map_boss_additional_chance_to_drop_adjacent_map_permyriad + /// + MapBossAdditionalChanceToDropAdjacentMapPermyriad = 10799, + + /// + /// map_boss_chance_to_drop_additional_shaper_guardian_map_permyriad + /// + MapBossChanceToDropAdditionalShaperGuardianMapPermyriad = 10800, + + /// + /// map_boss_chance_to_drop_additional_elder_guardian_map_permyriad + /// + MapBossChanceToDropAdditionalElderGuardianMapPermyriad = 10801, + + /// + /// map_boss_chance_to_drop_additional_atlas_base_type_permyriad + /// + MapBossChanceToDropAdditionalAtlasBaseTypePermyriad = 10802, + + /// + /// map_boss_chance_to_drop_additional_unique_item_permyriad + /// + MapBossChanceToDropAdditionalUniqueItemPermyriad = 10803, + + /// + /// map_boss_chance_to_drop_additional_map_currency_permyriad + /// + MapBossChanceToDropAdditionalMapCurrencyPermyriad = 10804, + + /// + /// monster_life_+permyriad_final_from_awakening_level + /// + MonsterLifePermyriadFinalFromAwakeningLevel = 10805, + + /// + /// map_atlas_exile_special_drop_chance_+permyriad + /// + MapAtlasExileSpecialDropChancePermyriad = 10806, + + /// + /// map_atlas_exile_influenced_item_drop_chance_+permyriad + /// + MapAtlasExileInfluencedItemDropChancePermyriad = 10807, + + /// + /// chance_to_drop_additional_shaper_guardian_map_permyriad + /// + ChanceToDropAdditionalShaperGuardianMapPermyriad = 10808, + + /// + /// chance_to_drop_additional_elder_guardian_map_permyriad + /// + ChanceToDropAdditionalElderGuardianMapPermyriad = 10809, + + /// + /// chance_to_drop_additional_atlas_base_type_permyriad + /// + ChanceToDropAdditionalAtlasBaseTypePermyriad = 10810, + + /// + /// chance_to_drop_additional_unique_item_permyriad + /// + ChanceToDropAdditionalUniqueItemPermyriad = 10811, + + /// + /// chance_to_drop_additional_map_currency_permyriad + /// + ChanceToDropAdditionalMapCurrencyPermyriad = 10812, + + /// + /// supress_muzzle_flash + /// + SupressMuzzleFlash = 10813, + + /// + /// supress_weapon_surges + /// + SupressWeaponSurges = 10814, + + /// + /// muzzle_flash_swap_hands + /// + MuzzleFlashSwapHands = 10815, + + /// + /// local_jewel_minimum_radius_difference + /// + LocalJewelMinimumRadiusDifference = 10816, + + /// + /// maximum_number_of_mirage_warriors + /// + MaximumNumberOfMirageWarriors = 10817, + + /// + /// number_of_active_mirage_warriors + /// + NumberOfActiveMirageWarriors = 10818, + + /// + /// local_display_fire_and_cold_resist_debuff + /// + LocalDisplayFireAndColdResistDebuff = 10819, + + /// + /// additional_burning_debuff_%_of_ignite_damage + /// + AdditionalBurningDebuffPctOfIgniteDamage = 10820, + + /// + /// cannot_inflict_additional_burning_debuff_with_ignite + /// + CannotInflictAdditionalBurningDebuffWithIgnite = 10821, + + /// + /// burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite + /// + BurningArrowCannotInflictAdditionalBurningDebuffWithIgnite = 10822, + + /// + /// terrain_arrow_attachment_chance_reduction_+% + /// + TerrainArrowAttachmentChanceReductionPct = 10823, + + /// + /// projectiles_nova_on_impact_projectile_count + /// + ProjectilesNovaOnImpactProjectileCount = 10824, + + /// + /// map_atlas_exile_boss + /// + MapAtlasExileBoss = 10825, + + /// + /// should_use_alternate_fortify + /// + ShouldUseAlternateFortify = 10826, + + /// + /// alternate_fortify_evasion_rating_+%_final + /// + AlternateFortifyEvasionRatingPctFinal = 10827, + + /// + /// attack_and_cast_speed_+%_while_you_have_fortify + /// + AttackAndCastSpeedPctWhileYouHaveFortify = 10828, + + /// + /// hide_mini_life_bar + /// + HideMiniLifeBar = 10829, + + /// + /// hide_buff_visuals + /// + HideBuffVisuals = 10830, + + /// + /// ensnaring_arrow_debuff_effect_+% + /// + EnsnaringArrowDebuffEffectPct = 10831, + + /// + /// ensnaring_arrow_area_of_effect_+% + /// + EnsnaringArrowAreaOfEffectPct = 10832, + + /// + /// burning_arrow_debuff_effect_+% + /// + BurningArrowDebuffEffectPct = 10833, + + /// + /// explosive_arrow_duration_+% + /// + ExplosiveArrowDurationPct = 10834, + + /// + /// map_adds_X_extra_synthesis_mods + /// + MapAddsXExtraSynthesisMods = 10835, + + /// + /// map_adds_X_extra_synthesis_special_mods + /// + MapAddsXExtraSynthesisSpecialMods = 10836, + + /// + /// artillery_ballista_cross_strafe_pattern + /// + ArtilleryBallistaCrossStrafePattern = 10837, + + /// + /// skill_area_angle_+% + /// + SkillAreaAnglePct = 10838, + + /// + /// ice_shot_area_angle_+% + /// + IceShotAreaAnglePct = 10839, + + /// + /// ailment_threshold_pluspercent_final_for_map_boss + /// + AilmentThresholdPluspercentFinalForMapBoss = 10840, + + /// + /// base_inflict_cold_exposure_on_hit_%_chance + /// + BaseInflictColdExposureOnHitPctChance = 10841, + + /// + /// base_inflict_lightning_exposure_on_hit_%_chance + /// + BaseInflictLightningExposureOnHitPctChance = 10842, + + /// + /// base_inflict_fire_exposure_on_hit_%_chance + /// + BaseInflictFireExposureOnHitPctChance = 10843, + + /// + /// unique_voltaxic_rift_shock_as_though_damage_+%_final + /// + UniqueVoltaxicRiftShockAsThoughDamagePctFinal = 10844, + + /// + /// supported_fire_skill_gem_level_+ + /// + SupportedFireSkillGemLevel = 10845, + + /// + /// gain_single_conflux_for_3_seconds_every_8_seconds + /// + GainSingleConfluxFor3SecondsEvery8Seconds = 10846, + + /// + /// block_%_if_blocked_an_attack_recently + /// + BlockPctIfBlockedAnAttackRecently = 10847, + + /// + /// spell_block_%_if_blocked_a_spell_recently + /// + SpellBlockPctIfBlockedASpellRecently = 10848, + + /// + /// local_display_socketed_skills_fork + /// + LocalDisplaySocketedSkillsFork = 10849, + + /// + /// minimum_added_physical_damage_if_have_crit_recently + /// + MinimumAddedPhysicalDamageIfHaveCritRecently = 10850, + + /// + /// maximum_added_physical_damage_if_have_crit_recently + /// + MaximumAddedPhysicalDamageIfHaveCritRecently = 10851, + + /// + /// maximum_added_fire_damage_if_have_crit_recently + /// + MaximumAddedFireDamageIfHaveCritRecently = 10852, + + /// + /// minimum_added_fire_damage_if_have_crit_recently + /// + MinimumAddedFireDamageIfHaveCritRecently = 10853, + + /// + /// minimum_added_cold_damage_if_have_crit_recently + /// + MinimumAddedColdDamageIfHaveCritRecently = 10854, + + /// + /// maximum_added_cold_damage_if_have_crit_recently + /// + MaximumAddedColdDamageIfHaveCritRecently = 10855, + + /// + /// minimum_added_lightning_damage_if_have_crit_recently + /// + MinimumAddedLightningDamageIfHaveCritRecently = 10856, + + /// + /// maximum_added_lightning_damage_if_have_crit_recently + /// + MaximumAddedLightningDamageIfHaveCritRecently = 10857, + + /// + /// enemy_phys_reduction_%_penalty_vs_hit + /// + EnemyPhysReductionPctPenaltyVsHit = 10858, + + /// + /// local_fire_penetration_% + /// + LocalFirePenetrationPct = 10859, + + /// + /// main_hand_fire_penetration_% + /// + MainHandFirePenetrationPct = 10860, + + /// + /// off_hand_fire_penetration_% + /// + OffHandFirePenetrationPct = 10861, + + /// + /// local_cold_penetration_% + /// + LocalColdPenetrationPct = 10862, + + /// + /// main_hand_cold_penetration_% + /// + MainHandColdPenetrationPct = 10863, + + /// + /// off_hand_cold_penetration_% + /// + OffHandColdPenetrationPct = 10864, + + /// + /// local_lightning_penetration_% + /// + LocalLightningPenetrationPct = 10865, + + /// + /// main_hand_lightning_penetration_% + /// + MainHandLightningPenetrationPct = 10866, + + /// + /// off_hand_lightning_penetration_% + /// + OffHandLightningPenetrationPct = 10867, + + /// + /// should_have_tailwind_from_stat + /// + ShouldHaveTailwindFromStat = 10868, + + /// + /// tailwind_if_have_crit_recently + /// + TailwindIfHaveCritRecently = 10869, + + /// + /// unique_voltaxic_rift_shock_maximum_magnitude_override + /// + UniqueVoltaxicRiftShockMaximumMagnitudeOverride = 10870, + + /// + /// blight_path_piece_length_modifier_% + /// + BlightPathPieceLengthModifierPct = 10871, + + /// + /// minion_flask_charges_used_+% + /// + MinionFlaskChargesUsedPct = 10872, + + /// + /// drop_additional_synthesis_map + /// + DropAdditionalSynthesisMap = 10873, + + /// + /// local_ring_nova_spells_area_of_effect_+%_final + /// + LocalRingNovaSpellsAreaOfEffectPctFinal = 10874, + + /// + /// left_ring_slot_nova_spells_area_of_effect_+%_final + /// + LeftRingSlotNovaSpellsAreaOfEffectPctFinal = 10875, + + /// + /// right_ring_slot_nova_spells_area_of_effect_+%_final + /// + RightRingSlotNovaSpellsAreaOfEffectPctFinal = 10876, + + /// + /// support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired + /// + SupportBarrageTrapAndMineThrowingTimePctFinalPerProjectileFired = 10877, + + /// + /// virtual_trap_and_mine_throwing_time_+%_final + /// + VirtualTrapAndMineThrowingTimePctFinal = 10878, + + /// + /// max_number_of_lightning_warp_markers + /// + MaxNumberOfLightningWarpMarkers = 10879, + + /// + /// local_weapon_enemy_phys_reduction_%_penalty + /// + LocalWeaponEnemyPhysReductionPctPenalty = 10880, + + /// + /// main_hand_enemy_phys_reduction_%_penalty + /// + MainHandEnemyPhysReductionPctPenalty = 10881, + + /// + /// off_hand_enemy_phys_reduction_%_penalty + /// + OffHandEnemyPhysReductionPctPenalty = 10882, + + /// + /// impale_phys_reduction_%_penalty + /// + ImpalePhysReductionPctPenalty = 10883, + + /// + /// map_drop_influenced_items_type + /// + MapDropInfluencedItemsType = 10884, + + /// + /// melee_strike_skill_number_of_previous_locations_to_strike + /// + MeleeStrikeSkillNumberOfPreviousLocationsToStrike = 10885, + + /// + /// flask_duration_on_minions_+% + /// + FlaskDurationOnMinionsPct = 10886, + + /// + /// local_display_trigger_level_x_reflection_skill_on_equip + /// + LocalDisplayTriggerLevelXReflectionSkillOnEquip = 10887, + + /// + /// summoned_phantasms_grant_buff + /// + SummonedPhantasmsGrantBuff = 10888, + + /// + /// phantasm_minimum_added_physical_damage_to_grant + /// + PhantasmMinimumAddedPhysicalDamageToGrant = 10889, + + /// + /// phantasm_maximum_added_physical_damage_to_grant + /// + PhantasmMaximumAddedPhysicalDamageToGrant = 10890, + + /// + /// phantasm_grant_buff_minimum_added_physical_damage + /// + PhantasmGrantBuffMinimumAddedPhysicalDamage = 10891, + + /// + /// phantasm_grant_buff_maximum_added_physical_damage + /// + PhantasmGrantBuffMaximumAddedPhysicalDamage = 10892, + + /// + /// map_base_ground_fire_damage_to_deal_per_10_seconds + /// + MapBaseGroundFireDamageToDealPer10Seconds = 10893, + + /// + /// map_ground_ice_base_magnitude + /// + MapGroundIceBaseMagnitude = 10894, + + /// + /// map_ground_lightning_base_magnitude + /// + MapGroundLightningBaseMagnitude = 10895, + + /// + /// map_mod_effect_+%_for_non_unique_maps + /// + MapModEffectPctForNonUniqueMaps = 10896, + + /// + /// local_ring_attack_speed_+%_final + /// + LocalRingAttackSpeedPctFinal = 10897, + + /// + /// left_ring_slot_attack_speed_+%_final + /// + LeftRingSlotAttackSpeedPctFinal = 10898, + + /// + /// right_ring_slot_attack_speed_+%_final + /// + RightRingSlotAttackSpeedPctFinal = 10899, + + /// + /// map_crusader_influence_spawn_monster_from_crusader_group_on_death_non_unique_% + /// + MapCrusaderInfluenceSpawnMonsterFromCrusaderGroupOnDeathNonUniquePct = 10900, + + /// + /// local_jewel_variable_ring_radius_value + /// + LocalJewelVariableRingRadiusValue = 10901, + + /// + /// map_watchstone_monsters_life_+%_final + /// + MapWatchstoneMonstersLifePctFinal = 10902, + + /// + /// map_watchstone_monsters_damage_+%_final + /// + MapWatchstoneMonstersDamagePctFinal = 10903, + + /// + /// map_number_of_additional_prefixes + /// + MapNumberOfAdditionalPrefixes = 10904, + + /// + /// map_number_of_additional_suffixes + /// + MapNumberOfAdditionalSuffixes = 10905, + + /// + /// monster_life_+%_final_from_watchstone + /// + MonsterLifePctFinalFromWatchstone = 10906, + + /// + /// monster_damage_+%_final_from_watchstone + /// + MonsterDamagePctFinalFromWatchstone = 10907, + + /// + /// map_no_arrow_terrain_attachment_in_area + /// + MapNoArrowTerrainAttachmentInArea = 10908, + + /// + /// map_watchstone_additional_packs_of_elder_monsters + /// + MapWatchstoneAdditionalPacksOfElderMonsters = 10909, + + /// + /// map_watchstone_additional_packs_of_shaper_monsters + /// + MapWatchstoneAdditionalPacksOfShaperMonsters = 10910, + + /// + /// local_display_supported_by_level_x_awakened_added_fire_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedFireDamage = 10911, + + /// + /// local_display_supported_by_level_x_awakened_ancestral_call + /// + LocalDisplaySupportedByLevelXAwakenedAncestralCall = 10912, + + /// + /// local_display_supported_by_level_x_awakened_brutality + /// + LocalDisplaySupportedByLevelXAwakenedBrutality = 10913, + + /// + /// local_display_supported_by_level_x_awakened_burning_damage + /// + LocalDisplaySupportedByLevelXAwakenedBurningDamage = 10914, + + /// + /// local_display_supported_by_level_x_awakened_weapon_elemental_damage + /// + LocalDisplaySupportedByLevelXAwakenedWeaponElementalDamage = 10915, + + /// + /// local_display_supported_by_level_x_awakened_fire_penetration + /// + LocalDisplaySupportedByLevelXAwakenedFirePenetration = 10916, + + /// + /// local_display_supported_by_level_x_awakened_generosity + /// + LocalDisplaySupportedByLevelXAwakenedGenerosity = 10917, + + /// + /// local_display_supported_by_level_x_awakened_melee_physical_damage + /// + LocalDisplaySupportedByLevelXAwakenedMeleePhysicalDamage = 10918, + + /// + /// local_display_supported_by_level_x_awakened_melee_splash + /// + LocalDisplaySupportedByLevelXAwakenedMeleeSplash = 10919, + + /// + /// local_display_supported_by_level_x_awakened_multistrike + /// + LocalDisplaySupportedByLevelXAwakenedMultistrike = 10920, + + /// + /// local_display_supported_by_level_x_awakened_added_cold_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedColdDamage = 10921, + + /// + /// local_display_supported_by_level_x_awakened_arrow_nova + /// + LocalDisplaySupportedByLevelXAwakenedArrowNova = 10922, + + /// + /// local_display_supported_by_level_x_awakened_cast_on_crit + /// + LocalDisplaySupportedByLevelXAwakenedCastOnCrit = 10923, + + /// + /// local_display_supported_by_level_x_awakened_chain + /// + LocalDisplaySupportedByLevelXAwakenedChain = 10924, + + /// + /// local_display_supported_by_level_x_awakened_cold_penetration + /// + LocalDisplaySupportedByLevelXAwakenedColdPenetration = 10925, + + /// + /// local_display_supported_by_level_x_awakened_deadly_ailments + /// + LocalDisplaySupportedByLevelXAwakenedDeadlyAilments = 10926, + + /// + /// local_display_supported_by_level_x_awakened_fork + /// + LocalDisplaySupportedByLevelXAwakenedFork = 10927, + + /// + /// local_display_supported_by_level_x_awakened_greater_multiple_projectiles + /// + LocalDisplaySupportedByLevelXAwakenedGreaterMultipleProjectiles = 10928, + + /// + /// local_display_supported_by_level_x_awakened_swift_affliction + /// + LocalDisplaySupportedByLevelXAwakenedSwiftAffliction = 10929, + + /// + /// local_display_supported_by_level_x_awakened_void_manipulation + /// + LocalDisplaySupportedByLevelXAwakenedVoidManipulation = 10930, + + /// + /// local_display_supported_by_level_x_awakened_vicious_projectiles + /// + LocalDisplaySupportedByLevelXAwakenedViciousProjectiles = 10931, + + /// + /// local_display_supported_by_level_x_awakened_added_chaos_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedChaosDamage = 10932, + + /// + /// local_display_supported_by_level_x_awakened_added_lightning_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedLightningDamage = 10933, + + /// + /// local_display_supported_by_level_x_awakened_blasphemy + /// + LocalDisplaySupportedByLevelXAwakenedBlasphemy = 10934, + + /// + /// local_display_supported_by_level_x_awakened_cast_while_channelling + /// + LocalDisplaySupportedByLevelXAwakenedCastWhileChannelling = 10935, + + /// + /// local_display_supported_by_level_x_awakened_controlled_destruction + /// + LocalDisplaySupportedByLevelXAwakenedControlledDestruction = 10936, + + /// + /// local_display_supported_by_level_x_awakened_curse_on_hit + /// + LocalDisplaySupportedByLevelXAwakenedCurseOnHit = 10937, + + /// + /// local_display_supported_by_level_x_awakened_elemental_focus + /// + LocalDisplaySupportedByLevelXAwakenedElementalFocus = 10938, + + /// + /// local_display_supported_by_level_x_awakened_increased_area_of_effect + /// + LocalDisplaySupportedByLevelXAwakenedIncreasedAreaOfEffect = 10939, + + /// + /// local_display_supported_by_level_x_awakened_lightning_penetration + /// + LocalDisplaySupportedByLevelXAwakenedLightningPenetration = 10940, + + /// + /// local_display_supported_by_level_x_awakened_minion_damage + /// + LocalDisplaySupportedByLevelXAwakenedMinionDamage = 10941, + + /// + /// local_display_supported_by_level_x_awakened_spell_cascade + /// + LocalDisplaySupportedByLevelXAwakenedSpellCascade = 10942, + + /// + /// local_display_supported_by_level_x_awakened_spell_echo + /// + LocalDisplaySupportedByLevelXAwakenedSpellEcho = 10943, + + /// + /// local_display_supported_by_level_x_awakened_unbound_ailments + /// + LocalDisplaySupportedByLevelXAwakenedUnboundAilments = 10944, + + /// + /// local_display_supported_by_level_x_awakened_unleash + /// + LocalDisplaySupportedByLevelXAwakenedUnleash = 10945, + + /// + /// monster_additional_shaper_item_drop_chance_% + /// + MonsterAdditionalShaperItemDropChancePct = 10946, + + /// + /// monster_additional_elder_item_drop_chance_% + /// + MonsterAdditionalElderItemDropChancePct = 10947, + + /// + /// skill_used_by_mirage_warrior_damage_+%_final + /// + SkillUsedByMirageWarriorDamagePctFinal = 10948, + + /// + /// base_skill_used_by_mirage_warrior + /// + BaseSkillUsedByMirageWarrior = 10949, + + /// + /// number_of_equipped_shaper_or_elder_items + /// + NumberOfEquippedShaperOrElderItems = 10950, + + /// + /// trap_repeat_count + /// + TrapRepeatCount = 10951, + + /// + /// monster_mortar_additional_speed_+% + /// + MonsterMortarAdditionalSpeedPct = 10952, + + /// + /// arcane_cloak_cooldown_does_not_tick + /// + ArcaneCloakCooldownDoesNotTick = 10953, + + /// + /// global_added_lightning_damage + /// + GlobalAddedLightningDamage = 10954, + + /// + /// arcane_cloak_consume_%_of_mana + /// + ArcaneCloakConsumePctOfMana = 10955, + + /// + /// arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage + /// + ArcaneCloakGainPctOfConsumedManaAsLightningDamage = 10956, + + /// + /// arcane_cloak_damage_absorbed_% + /// + ArcaneCloakDamageAbsorbedPct = 10957, + + /// + /// map_affliction_league + /// + MapAfflictionLeague = 10958, + + /// + /// kinetic_wand_base_number_of_zig_zags + /// + KineticWandBaseNumberOfZigZags = 10959, + + /// + /// rune_paint_movement_speed_+%_final + /// + RunePaintMovementSpeedPctFinal = 10960, + + /// + /// bladefall_blade_left_in_ground_for_every_X_volleys + /// + BladefallBladeLeftInGroundForEveryXVolleys = 10961, + + /// + /// maximum_number_of_blades_left_in_ground + /// + MaximumNumberOfBladesLeftInGround = 10962, + + /// + /// bloodwhirl_cooldown_does_not_tick + /// + BloodwhirlCooldownDoesNotTick = 10963, + + /// + /// combined_attack_elemental_damage_+%_final + /// + CombinedAttackElementalDamagePctFinal = 10964, + + /// + /// chilling_areas_also_grant_lightning_damage_taken_+% + /// + ChillingAreasAlsoGrantLightningDamageTakenPct = 10965, + + /// + /// chance_to_sap_%_vs_enemies_in_chilling_areas + /// + ChanceToSapPctVsEnemiesInChillingAreas = 10966, + + /// + /// is_in_chilling_area + /// + IsInChillingArea = 10967, + + /// + /// rune_paint_max_rune_level + /// + RunePaintMaxRuneLevel = 10968, + + /// + /// rune_paint_damage_+%_final_per_rune_level + /// + RunePaintDamagePctFinalPerRuneLevel = 10969, + + /// + /// rune_paint_mana_spend_per_rune_upgrade + /// + RunePaintManaSpendPerRuneUpgrade = 10970, + + /// + /// spellslinger_trigger_on_wand_attack_% + /// + SpellslingerTriggerOnWandAttackPct = 10971, + + /// + /// gain_%_of_base_wand_damage_as_added_spell_damage + /// + GainPctOfBaseWandDamageAsAddedSpellDamage = 10972, + + /// + /// allow_2_active_banners + /// + Allow2ActiveBanners = 10973, + + /// + /// banner_fortify_duration_+% + /// + BannerFortifyDurationPct = 10974, + + /// + /// banner_adrenaline_duration_+% + /// + BannerAdrenalineDurationPct = 10975, + + /// + /// add_1_stage_to_banners_on_melee_hit_up_to_5_per_second + /// + Add1StageToBannersOnMeleeHitUpTo5PerSecond = 10976, + + /// + /// is_on_ground_arctic_breath + /// + IsOnGroundArcticBreath = 10977, + + /// + /// map_vaal_vessel_item_drop_rarity_+% + /// + MapVaalVesselItemDropRarityPct = 10978, + + /// + /// map_vaal_vessel_item_drop_quantity_+% + /// + MapVaalVesselItemDropQuantityPct = 10979, + + /// + /// map_vaal_vessel_drop_X_sacrifice_fragments + /// + MapVaalVesselDropXSacrificeFragments = 10980, + + /// + /// map_vaal_vessel_drop_X_mortal_fragments + /// + MapVaalVesselDropXMortalFragments = 10981, + + /// + /// map_vaal_vessel_drop_x_double_implicit_corrupted_uniques + /// + MapVaalVesselDropXDoubleImplicitCorruptedUniques = 10982, + + /// + /// map_vaal_vessel_drop_X_fossils + /// + MapVaalVesselDropXFossils = 10983, + + /// + /// map_vaal_vessel_drop_X_prophecies + /// + MapVaalVesselDropXProphecies = 10984, + + /// + /// map_vaal_vessel_drop_X_divination_cards + /// + MapVaalVesselDropXDivinationCards = 10985, + + /// + /// map_vaal_vessel_drop_X_rare_temple_items + /// + MapVaalVesselDropXRareTempleItems = 10986, + + /// + /// map_vaal_vessel_drop_X_vaal_orbs + /// + MapVaalVesselDropXVaalOrbs = 10987, + + /// + /// map_vaal_vessel_drop_X_levelled_vaal_gems + /// + MapVaalVesselDropXLevelledVaalGems = 10988, + + /// + /// scorch_on_critical_strike_with_fire_skills + /// + ScorchOnCriticalStrikeWithFireSkills = 10989, + + /// + /// frostburn_on_critical_strike_with_cold_skills + /// + FrostburnOnCriticalStrikeWithColdSkills = 10990, + + /// + /// sap_on_critical_strike_with_lightning_skills + /// + SapOnCriticalStrikeWithLightningSkills = 10991, + + /// + /// hollow_palm_technique_attack_speed_+%_final_from_keystone + /// + HollowPalmTechniqueAttackSpeedPctFinalFromKeystone = 10992, + + /// + /// hollow_palm_technique_attack_minimum_added_physical_damage + /// + HollowPalmTechniqueAttackMinimumAddedPhysicalDamage = 10993, + + /// + /// hollow_palm_technique_attack_maximum_added_physical_damage + /// + HollowPalmTechniqueAttackMaximumAddedPhysicalDamage = 10994, + + /// + /// unarmed_counts_as_dual_wielding + /// + UnarmedCountsAsDualWielding = 10995, + + /// + /// cannot_use_shield_gloves_or_quiver + /// + CannotUseShieldGlovesOrQuiver = 10996, + + /// + /// cannot_trigger_guard_skills + /// + CannotTriggerGuardSkills = 10997, + + /// + /// physical_damage_reduction_+%_while_affected_by_non_vaal_guard_skill + /// + PhysicalDamageReductionPctWhileAffectedByNonVaalGuardSkill = 10998, + + /// + /// virtual_never_ignite + /// + VirtualNeverIgnite = 10999, + + /// + /// virtual_never_shock + /// + VirtualNeverShock = 11000, + + /// + /// rune_paint_area_of_effect_+%_final_per_rune_level + /// + RunePaintAreaOfEffectPctFinalPerRuneLevel = 11001, + + /// + /// keystone_herald_buff_effect_+%_final_on_you + /// + KeystoneHeraldBuffEffectPctFinalOnYou = 11002, + + /// + /// keystone_herald_hit_damage_+%_final + /// + KeystoneHeraldHitDamagePctFinal = 11003, + + /// + /// skill_is_herald_skill + /// + SkillIsHeraldSkill = 11004, + + /// + /// scorch_on_critical_strike + /// + ScorchOnCriticalStrike = 11005, + + /// + /// frostburn_on_critical_strike + /// + FrostburnOnCriticalStrike = 11006, + + /// + /// sap_on_critical_strike + /// + SapOnCriticalStrike = 11007, + + /// + /// minions_damage_cannot_be_reflected + /// + MinionsDamageCannotBeReflected = 11008, + + /// + /// physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+% + /// + PhysicalReflectDamageTakenAndMinionPhysicalReflectDamageTakenPct = 11009, + + /// + /// elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+% + /// + ElementalReflectDamageTakenAndMinionElementalReflectDamageTakenPct = 11010, + + /// + /// your_auras_are_disabled + /// + YourAurasAreDisabled = 11011, + + /// + /// keystone_barbed_tips + /// + KeystoneBarbedTips = 11012, + + /// + /// can_only_have_one_herald + /// + CanOnlyHaveOneHerald = 11013, + + /// + /// reflect_damage_taken_and_minion_reflect_damage_taken_+% + /// + ReflectDamageTakenAndMinionReflectDamageTakenPct = 11014, + + /// + /// local_jewel_expansion_passive_node_index + /// + LocalJewelExpansionPassiveNodeIndex = 11015, + + /// + /// local_jewel_expansion_passive_node_count + /// + LocalJewelExpansionPassiveNodeCount = 11016, + + /// + /// local_jewel_expansion_jewels_count + /// + LocalJewelExpansionJewelsCount = 11017, + + /// + /// local_jewel_expansion_jewels_count_override + /// + LocalJewelExpansionJewelsCountOverride = 11018, + + /// + /// local_unique_jewel_grants_x_empty_passives + /// + LocalUniqueJewelGrantsXEmptyPassives = 11019, + + /// + /// local_jewel_expansion_keystone_disciple_of_kitava + /// + LocalJewelExpansionKeystoneDiscipleOfKitava = 11020, + + /// + /// local_jewel_expansion_+5%_small_node_effect_count + /// + LocalJewelExpansion5PctSmallNodeEffectCount = 11021, + + /// + /// local_jewel_expansion_+5%_notable_node_effect_count + /// + LocalJewelExpansion5PctNotableNodeEffectCount = 11022, + + /// + /// local_jewel_expansion_notable_node_effect_count + /// + LocalJewelExpansionNotableNodeEffectCount = 11023, + + /// + /// local_jewel_expansion_node_effect_+% + /// + LocalJewelExpansionNodeEffectPct = 11024, + + /// + /// local_jewel_expansion_notable_adds_node_effect_+% + /// + LocalJewelExpansionNotableAddsNodeEffectPct = 11025, + + /// + /// unique_damage_+%_final_from_nova_spell + /// + UniqueDamagePctFinalFromNovaSpell = 11026, + + /// + /// teleport_additional_distance_between_self_and_target + /// + TeleportAdditionalDistanceBetweenSelfAndTarget = 11027, + + /// + /// additional_1_projectile + /// + Additional1Projectile = 11028, + + /// + /// blast_rain_single_additional_projectile + /// + BlastRainSingleAdditionalProjectile = 11029, + + /// + /// grasping_vine_count + /// + GraspingVineCount = 11030, + + /// + /// chance_to_deal_double_damage_%_per_grasping_vine + /// + ChanceToDealDoubleDamagePctPerGraspingVine = 11031, + + /// + /// damage_taken_+%_final_per_grasping_vine + /// + DamageTakenPctFinalPerGraspingVine = 11032, + + /// + /// attack_minimum_added_physical_damage_for_ethereal_blades + /// + AttackMinimumAddedPhysicalDamageForEtherealBlades = 11033, + + /// + /// attack_maximum_added_physical_damage_for_ethereal_blades + /// + AttackMaximumAddedPhysicalDamageForEtherealBlades = 11034, + + /// + /// volatile_dead_max_cores_allowed + /// + VolatileDeadMaxCoresAllowed = 11035, + + /// + /// skill_aura_not_applied_on_caster + /// + SkillAuraNotAppliedOnCaster = 11036, + + /// + /// skill_is_banner_skill + /// + SkillIsBannerSkill = 11037, + + /// + /// critical_strike_chance_+%_per_stackable_unique_jewel + /// + CriticalStrikeChancePctPerStackableUniqueJewel = 11038, + + /// + /// ethereal_knives_blade_left_in_ground_for_every_X_projectiles + /// + EtherealKnivesBladeLeftInGroundForEveryXProjectiles = 11039, + + /// + /// number_of_grasping_vines_to_gain_every_second_while_stationary + /// + NumberOfGraspingVinesToGainEverySecondWhileStationary = 11040, + + /// + /// snipe_max_stacks + /// + SnipeMaxStacks = 11041, + + /// + /// snipe_triggered_skill_damage_+%_final + /// + SnipeTriggeredSkillDamagePctFinal = 11042, + + /// + /// snipe_triggered_skill_hit_damage_+%_final_per_stage + /// + SnipeTriggeredSkillHitDamagePctFinalPerStage = 11043, + + /// + /// skill_triggered_by_snipe + /// + SkillTriggeredBySnipe = 11044, + + /// + /// snipe_triggered_skill_hit_damage_+%_final_per_stage_conditional + /// + SnipeTriggeredSkillHitDamagePctFinalPerStageConditional = 11045, + + /// + /// global_armour_rating_+%_applies_to_critical_multiplier_at_x_ratio + /// + GlobalArmourRatingPctAppliesToCriticalMultiplierAtXRatio = 11046, + + /// + /// global_evasion_rating_+%_applies_to_critical_chance_at_x_ratio + /// + GlobalEvasionRatingPctAppliesToCriticalChanceAtXRatio = 11047, + + /// + /// spell_dodge_%_while_channelling + /// + SpellDodgePctWhileChannelling = 11048, + + /// + /// local_display_grant_level_x_snipe_skill + /// + LocalDisplayGrantLevelXSnipeSkill = 11049, + + /// + /// affliction_boss_death_zone_movement_speed_+%_final + /// + AfflictionBossDeathZoneMovementSpeedPctFinal = 11050, + + /// + /// local_jewel_+%_effect_per_passive_between_jewel_and_class_start + /// + LocalJewelPctEffectPerPassiveBetweenJewelAndClassStart = 11051, + + /// + /// local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start + /// + LocalJewelDisplayNumberOfAllocatedPassivesBetweenJewelAndClassStart = 11052, + + /// + /// affliction_monster_debuff_life_recovery_rate_+%_on_hit + /// + AfflictionMonsterDebuffLifeRecoveryRatePctOnHit = 11053, + + /// + /// affliction_monster_debuff_energy_shield_recovery_rate_+%_on_hit + /// + AfflictionMonsterDebuffEnergyShieldRecoveryRatePctOnHit = 11054, + + /// + /// affliction_monster_debuff_action_speed_+%_on_hit + /// + AfflictionMonsterDebuffActionSpeedPctOnHit = 11055, + + /// + /// affliction_monster_debuff_damage_taken_+%_on_hit + /// + AfflictionMonsterDebuffDamageTakenPctOnHit = 11056, + + /// + /// affliction_monster_debuff_flask_effect_+%_on_hit + /// + AfflictionMonsterDebuffFlaskEffectPctOnHit = 11057, + + /// + /// affliction_monster_debuff_flask_charges_gained_+%_on_hit + /// + AfflictionMonsterDebuffFlaskChargesGainedPctOnHit = 11058, + + /// + /// cannot_gain_affliction_recovery_rate_debuff_when_hit + /// + CannotGainAfflictionRecoveryRateDebuffWhenHit = 11059, + + /// + /// cannot_gain_affliction_action_speed_debuff_when_hit + /// + CannotGainAfflictionActionSpeedDebuffWhenHit = 11060, + + /// + /// cannot_gain_affliction_damage_taken_debuff_when_hit + /// + CannotGainAfflictionDamageTakenDebuffWhenHit = 11061, + + /// + /// cannot_gain_affliction_flask_debuff_when_hit + /// + CannotGainAfflictionFlaskDebuffWhenHit = 11062, + + /// + /// is_in_affliction_fog + /// + IsInAfflictionFog = 11063, + + /// + /// monster_is_in_affliction_fog + /// + MonsterIsInAfflictionFog = 11064, + + /// + /// purity_of_fire_aura_effect_+% + /// + PurityOfFireAuraEffectPct = 11065, + + /// + /// purity_of_ice_aura_effect_+% + /// + PurityOfIceAuraEffectPct = 11066, + + /// + /// purity_of_lightning_aura_effect_+% + /// + PurityOfLightningAuraEffectPct = 11067, + + /// + /// purity_of_elements_aura_effect_+% + /// + PurityOfElementsAuraEffectPct = 11068, + + /// + /// enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage + /// + EnemiesExplodeOnDeathByAttackFor10PctLifeAsPhysicalDamage = 11069, + + /// + /// warcries_count_as_having_x_additional_nearby_enemies + /// + WarcriesCountAsHavingXAdditionalNearbyEnemies = 11070, + + /// + /// enemies_taunted_by_your_warcries_are_unnerved + /// + EnemiesTauntedByYourWarcriesAreUnnerved = 11071, + + /// + /// enemies_taunted_by_your_warcies_are_intimidated + /// + EnemiesTauntedByYourWarciesAreIntimidated = 11072, + + /// + /// melee_critical_strike_chance_+%_if_warcried_recently + /// + MeleeCriticalStrikeChancePctIfWarcriedRecently = 11073, + + /// + /// melee_critical_strike_multiplier_+%_if_warcried_recently + /// + MeleeCriticalStrikeMultiplierPctIfWarcriedRecently = 11074, + + /// + /// additional_physical_damage_reduction_if_warcried_in_past_8_seconds + /// + AdditionalPhysicalDamageReductionIfWarcriedInPast8Seconds = 11075, + + /// + /// warcry_skill_area_of_effect_+% + /// + WarcrySkillAreaOfEffectPct = 11076, + + /// + /// taunt_also_applies_unnerve + /// + TauntAlsoAppliesUnnerve = 11077, + + /// + /// taunt_also_applies_intimidate + /// + TauntAlsoAppliesIntimidate = 11078, + + /// + /// skill_is_rain_skill + /// + SkillIsRainSkill = 11079, + + /// + /// cold_damage_+%_per_25_strength + /// + ColdDamagePctPer25Strength = 11080, + + /// + /// cold_damage_+%_per_25_dexterity + /// + ColdDamagePctPer25Dexterity = 11081, + + /// + /// cold_damage_+%_per_25_intelligence + /// + ColdDamagePctPer25Intelligence = 11082, + + /// + /// chaos_damage_+%_per_100_max_mana_up_to_80 + /// + ChaosDamagePctPer100MaxManaUpTo80 = 11083, + + /// + /// minion_summoned_recently_movement_speed_+% + /// + MinionSummonedRecentlyMovementSpeedPct = 11084, + + /// + /// minion_summoned_recently_attack_and_cast_speed_+% + /// + MinionSummonedRecentlyAttackAndCastSpeedPct = 11085, + + /// + /// minion_summoned_recently_cannot_be_damaged + /// + MinionSummonedRecentlyCannotBeDamaged = 11086, + + /// + /// attack_damage_+%_vs_maimed_enemies + /// + AttackDamagePctVsMaimedEnemies = 11087, + + /// + /// critical_strike_chance_+%_vs_taunted_enemies + /// + CriticalStrikeChancePctVsTauntedEnemies = 11088, + + /// + /// critical_strike_multiplier_+_vs_taunted_enemies + /// + CriticalStrikeMultiplierVsTauntedEnemies = 11089, + + /// + /// remove_bleed_on_life_flask_use + /// + RemoveBleedOnLifeFlaskUse = 11090, + + /// + /// movement_speed_+%_while_not_using_flask + /// + MovementSpeedPctWhileNotUsingFlask = 11091, + + /// + /// life_flask_charges_recovered_per_3_seconds + /// + LifeFlaskChargesRecoveredPer3Seconds = 11092, + + /// + /// additional_physical_damage_reduction_%_during_life_or_mana_flask_effect + /// + AdditionalPhysicalDamageReductionPctDuringLifeOrManaFlaskEffect = 11093, + + /// + /// attack_ailment_damage_+% + /// + AttackAilmentDamagePct = 11094, + + /// + /// impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding + /// + ImpaleDebuffEffectPctFromHitsThatAlsoInflictBleeding = 11095, + + /// + /// aoe_+%_per_second_while_stationary_up_to_50 + /// + AoePctPerSecondWhileStationaryUpTo50 = 11096, + + /// + /// critical_strike_%_chance_to_deal_double_damage + /// + CriticalStrikePctChanceToDealDoubleDamage = 11097, + + /// + /// chill_effect_+%_with_critical_strikes + /// + ChillEffectPctWithCriticalStrikes = 11098, + + /// + /// shock_effect_+%_with_critical_strikes + /// + ShockEffectPctWithCriticalStrikes = 11099, + + /// + /// minion_physical_damage_%_to_add_as_fire + /// + MinionPhysicalDamagePctToAddAsFire = 11100, + + /// + /// chance_to_deal_double_damage_while_on_full_life_% + /// + ChanceToDealDoubleDamageWhileOnFullLifePct = 11101, + + /// + /// minion_chance_to_deal_double_damage_while_on_full_life_% + /// + MinionChanceToDealDoubleDamageWhileOnFullLifePct = 11102, + + /// + /// minion_chance_to_ignite_% + /// + MinionChanceToIgnitePct = 11103, + + /// + /// minion_damage_against_ignited_enemies_+% + /// + MinionDamageAgainstIgnitedEnemiesPct = 11104, + + /// + /// minion_chance_to_impale_on_attack_hit_% + /// + MinionChanceToImpaleOnAttackHitPct = 11105, + + /// + /// summoned_skeleton_%_physical_to_chaos + /// + SummonedSkeletonPctPhysicalToChaos = 11106, + + /// + /// summoned_skeleton_%_chance_to_wither_for_2_seconds + /// + SummonedSkeletonPctChanceToWitherFor2Seconds = 11107, + + /// + /// raised_zombie_%_chance_to_taunt + /// + RaisedZombiePctChanceToTaunt = 11108, + + /// + /// using_life_flask + /// + UsingLifeFlask = 11109, + + /// + /// totem_placement_range_+% + /// + TotemPlacementRangePct = 11110, + + /// + /// totem_chaos_immunity + /// + TotemChaosImmunity = 11111, + + /// + /// totem_spells_damage_+% + /// + TotemSpellsDamagePct = 11112, + + /// + /// damage_+%_while_affected_by_a_herald + /// + DamagePctWhileAffectedByAHerald = 11113, + + /// + /// elemental_damage_+%_while_affected_by_a_herald + /// + ElementalDamagePctWhileAffectedByAHerald = 11114, + + /// + /// damage_over_time_+%_while_affected_by_a_herald + /// + DamageOverTimePctWhileAffectedByAHerald = 11115, + + /// + /// minion_damage_+%_while_affected_by_a_herald + /// + MinionDamagePctWhileAffectedByAHerald = 11116, + + /// + /// damage_+%_for_each_herald_affecting_you + /// + DamagePctForEachHeraldAffectingYou = 11117, + + /// + /// chance_to_freeze_shock_ignite_%_while_affected_by_a_herald + /// + ChanceToFreezeShockIgnitePctWhileAffectedByAHerald = 11118, + + /// + /// minion_movement_velocity_+%_for_each_herald_affecting_you + /// + MinionMovementVelocityPctForEachHeraldAffectingYou = 11119, + + /// + /// additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity + /// + AdditionalPhysicalDamageReductionPctPerSummonedSentinelOfPurity = 11120, + + /// + /// dot_multiplier_+_with_bow_skills + /// + DotMultiplierWithBowSkills = 11121, + + /// + /// skill_effect_duration_+%_with_bow_skills + /// + SkillEffectDurationPctWithBowSkills = 11122, + + /// + /// status_ailments_you_inflict_duration_+%_with_bows + /// + StatusAilmentsYouInflictDurationPctWithBows = 11123, + + /// + /// area_of_effect_+%_with_bow_skills + /// + AreaOfEffectPctWithBowSkills = 11124, + + /// + /// wand_physical_damage_%_to_add_as_chaos + /// + WandPhysicalDamagePctToAddAsChaos = 11125, + + /// + /// wand_physical_damage_%_to_convert_to_lightning + /// + WandPhysicalDamagePctToConvertToLightning = 11126, + + /// + /// two_handed_melee_area_of_effect_+% + /// + TwoHandedMeleeAreaOfEffectPct = 11127, + + /// + /// two_handed_melee_area_damage_+% + /// + TwoHandedMeleeAreaDamagePct = 11128, + + /// + /// have_used_a_travel_skill_recently + /// + HaveUsedATravelSkillRecently = 11129, + + /// + /// track_have_used_a_travel_skill_recently + /// + TrackHaveUsedATravelSkillRecently = 11130, + + /// + /// have_cast_a_spell_recently + /// + HaveCastASpellRecently = 11131, + + /// + /// track_have_cast_a_spell_recently + /// + TrackHaveCastASpellRecently = 11132, + + /// + /// have_cursed_an_enemy_recently + /// + HaveCursedAnEnemyRecently = 11133, + + /// + /// track_have_cursed_an_enemy_recently + /// + TrackHaveCursedAnEnemyRecently = 11134, + + /// + /// have_chilled_an_enemy_recently + /// + HaveChilledAnEnemyRecently = 11135, + + /// + /// track_have_chilled_an_enemy_recently + /// + TrackHaveChilledAnEnemyRecently = 11136, + + /// + /// have_stunned_an_enemy_with_a_two_handed_melee_weapon_recently + /// + HaveStunnedAnEnemyWithATwoHandedMeleeWeaponRecently = 11137, + + /// + /// have_crit_with_a_two_handed_melee_weapon_recently + /// + HaveCritWithATwoHandedMeleeWeaponRecently = 11138, + + /// + /// track_have_crit_with_a_two_handed_melee_weapon_recently + /// + TrackHaveCritWithATwoHandedMeleeWeaponRecently = 11139, + + /// + /// have_used_a_brand_skill_recently + /// + HaveUsedABrandSkillRecently = 11140, + + /// + /// track_have_used_a_brand_skill_recently + /// + TrackHaveUsedABrandSkillRecently = 11141, + + /// + /// have_hit_with_main_hand_weapon_recently + /// + HaveHitWithMainHandWeaponRecently = 11142, + + /// + /// track_have_hit_with_main_hand_weapon_recently + /// + TrackHaveHitWithMainHandWeaponRecently = 11143, + + /// + /// have_hit_with_off_hand_weapon_recently + /// + HaveHitWithOffHandWeaponRecently = 11144, + + /// + /// track_have_hit_with_off_hand_weapon_recently + /// + TrackHaveHitWithOffHandWeaponRecently = 11145, + + /// + /// have_ignited_an_enemy_recently + /// + HaveIgnitedAnEnemyRecently = 11146, + + /// + /// track_have_ignited_an_enemy_recently + /// + TrackHaveIgnitedAnEnemyRecently = 11147, + + /// + /// critical_strike_chance_+%_if_havent_blocked_recently + /// + CriticalStrikeChancePctIfHaventBlockedRecently = 11148, + + /// + /// critical_strike_multiplier_+_if_taken_a_savage_hit_recently + /// + CriticalStrikeMultiplierIfTakenASavageHitRecently = 11149, + + /// + /// movement_speed_+%_if_crit_recently + /// + MovementSpeedPctIfCritRecently = 11150, + + /// + /// area_of_effect_+%_if_killed_at_least_5_enemies_recently + /// + AreaOfEffectPctIfKilledAtLeast5EnemiesRecently = 11151, + + /// + /// chance_to_dodge_attacks_and_spells_%_if_enemy_hit_recently + /// + ChanceToDodgeAttacksAndSpellsPctIfEnemyHitRecently = 11152, + + /// + /// damage_+%_if_used_travel_skill_recently + /// + DamagePctIfUsedTravelSkillRecently = 11153, + + /// + /// chance_to_block_spells_%_if_cast_a_spell_recently + /// + ChanceToBlockSpellsPctIfCastASpellRecently = 11154, + + /// + /// energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently + /// + EnergyShieldRegenerationPctPerMinuteIfEnemyCursedRecently = 11155, + + /// + /// elemental_damage_+%_if_enemy_chilled_recently + /// + ElementalDamagePctIfEnemyChilledRecently = 11156, + + /// + /// elemental_damage_+%_if_enemy_shocked_recently + /// + ElementalDamagePctIfEnemyShockedRecently = 11157, + + /// + /// elemental_damage_+%_if_enemy_ignited_recently + /// + ElementalDamagePctIfEnemyIgnitedRecently = 11158, + + /// + /// energy_shield_regeneration_%_per_minute_if_enemy_killed_recently + /// + EnergyShieldRegenerationPctPerMinuteIfEnemyKilledRecently = 11159, + + /// + /// wand_damage_+%_if_crit_recently + /// + WandDamagePctIfCritRecently = 11160, + + /// + /// area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently + /// + AreaOfEffectPctIfEnemyStunnedWithTwoHandedMeleeWeaponRecently = 11161, + + /// + /// chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently + /// + ChanceToDealDoubleDamagePctIfCritWithTwoHandedMeleeWeaponRecently = 11162, + + /// + /// sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently + /// + SigilRepeatFrequencyPctIfHaventUsedABrandSkillRecently = 11163, + + /// + /// chance_to_evade_attacks_%_if_havent_been_hit_recently + /// + ChanceToEvadeAttacksPctIfHaventBeenHitRecently = 11164, + + /// + /// life_regeneration_%_per_minute_if_player_minion_died_recently + /// + LifeRegenerationPctPerMinuteIfPlayerMinionDiedRecently = 11165, + + /// + /// attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently + /// + AttackSpeedPctIfEnemyHitWithMainHandWeaponRecently = 11166, + + /// + /// movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently + /// + MovementSpeedPctIfEnemyHitWithOffHandWeaponRecently = 11167, + + /// + /// have_summoned_totem_in_past_2_seconds + /// + HaveSummonedTotemInPast2Seconds = 11168, + + /// + /// track_have_summoned_totem_in_past_2_seconds + /// + TrackHaveSummonedTotemInPast2Seconds = 11169, + + /// + /// totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds + /// + TotemDamagePctIfHaventSummonedTotemInPast2Seconds = 11170, + + /// + /// gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff + /// + GainFortifyForXSecondsOnMeleeHitWithMaceSceptreStaff = 11171, + + /// + /// damage_+%_with_maces_sceptres_staves + /// + DamagePctWithMacesSceptresStaves = 11172, + + /// + /// double_damage_%_chance_while_wielding_mace_sceptre_staff + /// + DoubleDamagePctChanceWhileWieldingMaceSceptreStaff = 11173, + + /// + /// movement_speed_+%_while_holding_shield + /// + MovementSpeedPctWhileHoldingShield = 11174, + + /// + /// physical_damage_+%_with_axes_swords + /// + PhysicalDamagePctWithAxesSwords = 11175, + + /// + /// impale_on_hit_%_chance_with_axes_swords + /// + ImpaleOnHitPctChanceWithAxesSwords = 11176, + + /// + /// attack_skill_ailment_damage_+%_while_wielding_axes_swords + /// + AttackSkillAilmentDamagePctWhileWieldingAxesSwords = 11177, + + /// + /// power_charge_on_non_critical_strike_%_chance_with_claws_daggers + /// + PowerChargeOnNonCriticalStrikePctChanceWithClawsDaggers = 11178, + + /// + /// critical_strike_multiplier_+%_with_claws_daggers + /// + CriticalStrikeMultiplierPctWithClawsDaggers = 11179, + + /// + /// attack_skill_additional_num_projectiles_while_wielding_claws_daggers + /// + AttackSkillAdditionalNumProjectilesWhileWieldingClawsDaggers = 11180, + + /// + /// posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers + /// + PosionDamageOverTimeMultiplierPctWhileWieldingClawsDaggers = 11181, + + /// + /// fire_damage_over_time_multiplier_+%_while_burning + /// + FireDamageOverTimeMultiplierPctWhileBurning = 11182, + + /// + /// life_regeneration_per_minute_%_while_burning + /// + LifeRegenerationPerMinutePctWhileBurning = 11183, + + /// + /// spell_block_%_while_at_max_power_charges + /// + SpellBlockPctWhileAtMaxPowerCharges = 11184, + + /// + /// attack_block_%_while_at_max_endurance_charges + /// + AttackBlockPctWhileAtMaxEnduranceCharges = 11185, + + /// + /// attack_speed_+%_if_you_have_at_least_600_strength + /// + AttackSpeedPctIfYouHaveAtLeast600Strength = 11186, + + /// + /// es_regeneration_per_minute_%_while_stationary + /// + EsRegenerationPerMinutePctWhileStationary = 11187, + + /// + /// spell_and_attack_dodge_%_while_moving + /// + SpellAndAttackDodgePctWhileMoving = 11188, + + /// + /// self_critical_strike_multiplier_+%_while_ignited + /// + SelfCriticalStrikeMultiplierPctWhileIgnited = 11189, + + /// + /// enemies_poisoned_by_you_cannot_regen_life + /// + EnemiesPoisonedByYouCannotRegenLife = 11190, + + /// + /// enemies_chilled_by_your_hits_are_shocked + /// + EnemiesChilledByYourHitsAreShocked = 11191, + + /// + /// enemies_shocked_by_your_hits_are_chilled + /// + EnemiesShockedByYourHitsAreChilled = 11192, + + /// + /// attack_dodge_%_from_cursed_enemies + /// + AttackDodgePctFromCursedEnemies = 11193, + + /// + /// left_ring_socketed_curse_replaces_skitterbots_chilling_aura + /// + LeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11194, + + /// + /// right_ring_socketed_curse_replaces_skitterbots_shocking_aura + /// + RightRingSocketedCurseReplacesSkitterbotsShockingAura = 11195, + + /// + /// local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura + /// + LocalLeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11196, + + /// + /// local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura + /// + LocalRightRingSocketedCurseReplacesSkitterbotsShockingAura = 11197, + + /// + /// hit_and_ailment_damage_+%_vs_cursed_enemies + /// + HitAndAilmentDamagePctVsCursedEnemies = 11198, + + /// + /// culling_strike_vs_cursed_enemies + /// + CullingStrikeVsCursedEnemies = 11199, + + /// + /// hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments + /// + HitAndAilmentDamagePctVsEnemiesAffectedByAilments = 11200, + + /// + /// bleeding_dot_multiplier_+_vs_poisoned_enemies + /// + BleedingDotMultiplierVsPoisonedEnemies = 11201, + + /// + /// poison_dot_multiplier_+_vs_bleeding_enemies + /// + PoisonDotMultiplierVsBleedingEnemies = 11202, + + /// + /// critical_strikes_always_knockback_shocked_enemies + /// + CriticalStrikesAlwaysKnockbackShockedEnemies = 11203, + + /// + /// cold_hit_damage_+%_vs_shocked_enemies + /// + ColdHitDamagePctVsShockedEnemies = 11204, + + /// + /// lightning_hit_damage_+%_vs_chilled_enemies + /// + LightningHitDamagePctVsChilledEnemies = 11205, + + /// + /// hit_and_ailment_damage_+%_vs_unique_enemies + /// + HitAndAilmentDamagePctVsUniqueEnemies = 11206, + + /// + /// lightning_damage_%_to_add_as_cold_vs_chilled_enemies + /// + LightningDamagePctToAddAsColdVsChilledEnemies = 11207, + + /// + /// arrow_damage_+%_max_as_distance_travelled_increases + /// + ArrowDamagePctMaxAsDistanceTravelledIncreases = 11208, + + /// + /// arrow_critical_strike_chance_+%_max_as_distance_travelled_increases + /// + ArrowCriticalStrikeChancePctMaxAsDistanceTravelledIncreases = 11209, + + /// + /// projectile_damage_+%_vs_nearby_enemies + /// + ProjectileDamagePctVsNearbyEnemies = 11210, + + /// + /// teleport_marker_art_variation + /// + TeleportMarkerArtVariation = 11211, + + /// + /// bleeding_damage_+%_vs_maimed_enemies + /// + BleedingDamagePctVsMaimedEnemies = 11212, + + /// + /// physical_dot_multiplier_+_while_wielding_axes_swords + /// + PhysicalDotMultiplierWhileWieldingAxesSwords = 11213, + + /// + /// local_affliction_notable_prodigious_defense + /// + LocalAfflictionNotableProdigiousDefense = 11214, + + /// + /// local_affliction_notable_advance_guard + /// + LocalAfflictionNotableAdvanceGuard = 11215, + + /// + /// local_affliction_notable_gladiatorial_combat + /// + LocalAfflictionNotableGladiatorialCombat = 11216, + + /// + /// local_affliction_notable_strike_leader + /// + LocalAfflictionNotableStrikeLeader = 11217, + + /// + /// local_affliction_notable_powerful_ward + /// + LocalAfflictionNotablePowerfulWard = 11218, + + /// + /// local_affliction_notable_enduring_ward + /// + LocalAfflictionNotableEnduringWard = 11219, + + /// + /// local_affliction_notable_gladiators_fortitude + /// + LocalAfflictionNotableGladiatorsFortitude = 11220, + + /// + /// local_affliction_notable_precise_retaliation + /// + LocalAfflictionNotablePreciseRetaliation = 11221, + + /// + /// local_affliction_notable_veteran_defender + /// + LocalAfflictionNotableVeteranDefender = 11222, + + /// + /// local_affliction_notable_iron_breaker + /// + LocalAfflictionNotableIronBreaker = 11223, + + /// + /// local_affliction_notable_deep_cuts + /// + LocalAfflictionNotableDeepCuts = 11224, + + /// + /// local_affliction_notable_master_the_fundamentals + /// + LocalAfflictionNotableMasterTheFundamentals = 11225, + + /// + /// local_affliction_notable_force_multiplier + /// + LocalAfflictionNotableForceMultiplier = 11226, + + /// + /// local_affliction_notable_furious_assault + /// + LocalAfflictionNotableFuriousAssault = 11227, + + /// + /// local_affliction_notable_vicious_skewering + /// + LocalAfflictionNotableViciousSkewering = 11228, + + /// + /// local_affliction_notable_grim_oath + /// + LocalAfflictionNotableGrimOath = 11229, + + /// + /// local_affliction_notable_battle_hardened + /// + LocalAfflictionNotableBattleHardened = 11230, + + /// + /// local_affliction_notable_replenishing_presence + /// + LocalAfflictionNotableReplenishingPresence = 11231, + + /// + /// local_affliction_notable_master_of_command + /// + LocalAfflictionNotableMasterOfCommand = 11232, + + /// + /// local_affliction_notable_first_among_equals + /// + LocalAfflictionNotableFirstAmongEquals = 11233, + + /// + /// local_affliction_notable_purposeful_harbinger + /// + LocalAfflictionNotablePurposefulHarbinger = 11234, + + /// + /// local_affliction_notable_precise_commander + /// + LocalAfflictionNotablePreciseCommander = 11235, + + /// + /// local_affliction_notable_pure_commander + /// + LocalAfflictionNotablePureCommander = 11236, + + /// + /// local_affliction_notable_stalwart_commander + /// + LocalAfflictionNotableStalwartCommander = 11237, + + /// + /// local_affliction_notable_vengeful_commander + /// + LocalAfflictionNotableVengefulCommander = 11238, + + /// + /// local_affliction_notable_skullbreaker + /// + LocalAfflictionNotableSkullbreaker = 11239, + + /// + /// local_affliction_notable_pressure_points + /// + LocalAfflictionNotablePressurePoints = 11240, + + /// + /// local_affliction_notable_overwhelming_malice + /// + LocalAfflictionNotableOverwhelmingMalice = 11241, + + /// + /// local_affliction_notable_magnifier + /// + LocalAfflictionNotableMagnifier = 11242, + + /// + /// local_affliction_notable_savage_response + /// + LocalAfflictionNotableSavageResponse = 11243, + + /// + /// local_affliction_notable_eye_of_the_storm + /// + LocalAfflictionNotableEyeOfTheStorm = 11244, + + /// + /// local_affliction_notable_basics_of_pain + /// + LocalAfflictionNotableBasicsOfPain = 11245, + + /// + /// local_affliction_notable_quick_getaway + /// + LocalAfflictionNotableQuickGetaway = 11246, + + /// + /// local_affliction_notable_assert_dominance + /// + LocalAfflictionNotableAssertDominance = 11247, + + /// + /// local_affliction_notable_vast_power + /// + LocalAfflictionNotableVastPower = 11248, + + /// + /// local_affliction_notable_powerful_assault + /// + LocalAfflictionNotablePowerfulAssault = 11249, + + /// + /// local_affliction_notable_intensity + /// + LocalAfflictionNotableIntensity = 11250, + + /// + /// local_affliction_notable_titanic_swings + /// + LocalAfflictionNotableTitanicSwings = 11251, + + /// + /// local_affliction_notable_towering_threat + /// + LocalAfflictionNotableToweringThreat = 11252, + + /// + /// local_affliction_notable_ancestral_echo + /// + LocalAfflictionNotableAncestralEcho = 11253, + + /// + /// local_affliction_notable_ancestral_reach + /// + LocalAfflictionNotableAncestralReach = 11254, + + /// + /// local_affliction_notable_ancestral_might + /// + LocalAfflictionNotableAncestralMight = 11255, + + /// + /// local_affliction_notable_ancestral_preservation + /// + LocalAfflictionNotableAncestralPreservation = 11256, + + /// + /// local_affliction_notable_snaring_spirits + /// + LocalAfflictionNotableSnaringSpirits = 11257, + + /// + /// local_affliction_notable_sleepless_sentries + /// + LocalAfflictionNotableSleeplessSentries = 11258, + + /// + /// local_affliction_notable_ancestral_guidance + /// + LocalAfflictionNotableAncestralGuidance = 11259, + + /// + /// local_affliction_notable_ancestral_inspiration + /// + LocalAfflictionNotableAncestralInspiration = 11260, + + /// + /// local_affliction_notable_vital_focus + /// + LocalAfflictionNotableVitalFocus = 11261, + + /// + /// local_affliction_notable_rapid_infusion + /// + LocalAfflictionNotableRapidInfusion = 11262, + + /// + /// local_affliction_notable_unwavering_focus + /// + LocalAfflictionNotableUnwaveringFocus = 11263, + + /// + /// local_affliction_notable_enduring_focus + /// + LocalAfflictionNotableEnduringFocus = 11264, + + /// + /// local_affliction_notable_precise_focus + /// + LocalAfflictionNotablePreciseFocus = 11265, + + /// + /// local_affliction_notable_stoic_focus + /// + LocalAfflictionNotableStoicFocus = 11266, + + /// + /// local_affliction_notable_hex_breaker + /// + LocalAfflictionNotableHexBreaker = 11267, + + /// + /// local_affliction_notable_arcane_focus + /// + LocalAfflictionNotableArcaneFocus = 11268, + + /// + /// local_affliction_notable_distilled_perfection + /// + LocalAfflictionNotableDistilledPerfection = 11269, + + /// + /// local_affliction_notable_spiked_concoction + /// + LocalAfflictionNotableSpikedConcoction = 11270, + + /// + /// local_affliction_notable_fasting + /// + LocalAfflictionNotableFasting = 11271, + + /// + /// local_affliction_notable_menders_wellspring + /// + LocalAfflictionNotableMendersWellspring = 11272, + + /// + /// local_affliction_notable_special_reserve + /// + LocalAfflictionNotableSpecialReserve = 11273, + + /// + /// local_affliction_notable_numbing_elixir + /// + LocalAfflictionNotableNumbingElixir = 11274, + + /// + /// local_affliction_notable_mob_mentality + /// + LocalAfflictionNotableMobMentality = 11275, + + /// + /// local_affliction_notable_cry_wolf + /// + LocalAfflictionNotableCryWolf = 11276, + + /// + /// local_affliction_notable_haunting_shout + /// + LocalAfflictionNotableHauntingShout = 11277, + + /// + /// local_affliction_notable_lead_by_example + /// + LocalAfflictionNotableLeadByExample = 11278, + + /// + /// local_affliction_notable_provocateur + /// + LocalAfflictionNotableProvocateur = 11279, + + /// + /// local_affliction_notable_warning_call + /// + LocalAfflictionNotableWarningCall = 11280, + + /// + /// local_affliction_notable_rattling_bellow + /// + LocalAfflictionNotableRattlingBellow = 11281, + + /// + /// local_affliction_notable_bloodscent + /// + LocalAfflictionNotableBloodscent = 11282, + + /// + /// local_affliction_notable_run_through + /// + LocalAfflictionNotableRunThrough = 11283, + + /// + /// local_affliction_notable_wound_aggravation + /// + LocalAfflictionNotableWoundAggravation = 11284, + + /// + /// local_affliction_notable_overlord + /// + LocalAfflictionNotableOverlord = 11285, + + /// + /// local_affliction_notable_expansive_might + /// + LocalAfflictionNotableExpansiveMight = 11286, + + /// + /// local_affliction_notable_weight_advantage + /// + LocalAfflictionNotableWeightAdvantage = 11287, + + /// + /// local_affliction_notable_wind_up + /// + LocalAfflictionNotableWindUp = 11288, + + /// + /// local_affliction_notable_fan_of_blades + /// + LocalAfflictionNotableFanOfBlades = 11289, + + /// + /// local_affliction_notable_disease_vector + /// + LocalAfflictionNotableDiseaseVector = 11290, + + /// + /// local_affliction_notable_arcing_shot + /// + LocalAfflictionNotableArcingShot = 11291, + + /// + /// local_affliction_notable_tempered_arrowheads + /// + LocalAfflictionNotableTemperedArrowheads = 11292, + + /// + /// local_affliction_notable_broadside + /// + LocalAfflictionNotableBroadside = 11293, + + /// + /// local_affliction_notable_explosive_force + /// + LocalAfflictionNotableExplosiveForce = 11294, + + /// + /// local_affliction_notable_opportunistic_fusilade + /// + LocalAfflictionNotableOpportunisticFusilade = 11295, + + /// + /// local_affliction_notable_storms_hand + /// + LocalAfflictionNotableStormsHand = 11296, + + /// + /// local_affliction_notable_battlefield_dominator + /// + LocalAfflictionNotableBattlefieldDominator = 11297, + + /// + /// local_affliction_notable_martial_mastery + /// + LocalAfflictionNotableMartialMastery = 11298, + + /// + /// local_affliction_notable_surefooted_striker + /// + LocalAfflictionNotableSurefootedStriker = 11299, + + /// + /// local_affliction_notable_graceful_execution + /// + LocalAfflictionNotableGracefulExecution = 11300, + + /// + /// local_affliction_notable_brutal_infamy + /// + LocalAfflictionNotableBrutalInfamy = 11301, + + /// + /// local_affliction_notable_fearsome_warrior + /// + LocalAfflictionNotableFearsomeWarrior = 11302, + + /// + /// local_affliction_notable_combat_rhythm + /// + LocalAfflictionNotableCombatRhythm = 11303, + + /// + /// local_affliction_notable_hit_and_run + /// + LocalAfflictionNotableHitAndRun = 11304, + + /// + /// local_affliction_notable_insatiable_killer + /// + LocalAfflictionNotableInsatiableKiller = 11305, + + /// + /// local_affliction_notable_mage_bane + /// + LocalAfflictionNotableMageBane = 11306, + + /// + /// local_affliction_notable_martial_momentum + /// + LocalAfflictionNotableMartialMomentum = 11307, + + /// + /// local_affliction_notable_deadly_repartee + /// + LocalAfflictionNotableDeadlyRepartee = 11308, + + /// + /// local_affliction_notable_quick_and_deadly + /// + LocalAfflictionNotableQuickAndDeadly = 11309, + + /// + /// local_affliction_notable_smite_the_weak + /// + LocalAfflictionNotableSmiteTheWeak = 11310, + + /// + /// local_affliction_notable_heavy_hitter + /// + LocalAfflictionNotableHeavyHitter = 11311, + + /// + /// local_affliction_notable_martial_prowess + /// + LocalAfflictionNotableMartialProwess = 11312, + + /// + /// local_affliction_notable_calamitous + /// + LocalAfflictionNotableCalamitous = 11313, + + /// + /// local_affliction_notable_devastator + /// + LocalAfflictionNotableDevastator = 11314, + + /// + /// local_affliction_notable_fuel_the_fight + /// + LocalAfflictionNotableFuelTheFight = 11315, + + /// + /// local_affliction_notable_drive_the_destruction + /// + LocalAfflictionNotableDriveTheDestruction = 11316, + + /// + /// local_affliction_notable_feed_the_fury + /// + LocalAfflictionNotableFeedTheFury = 11317, + + /// + /// local_affliction_notable_seal_mender + /// + LocalAfflictionNotableSealMender = 11318, + + /// + /// local_affliction_notable_conjured_wall + /// + LocalAfflictionNotableConjuredWall = 11319, + + /// + /// local_affliction_notable_arcane_heroism + /// + LocalAfflictionNotableArcaneHeroism = 11320, + + /// + /// local_affliction_notable_practiced_caster + /// + LocalAfflictionNotablePracticedCaster = 11321, + + /// + /// local_affliction_notable_burden_projection + /// + LocalAfflictionNotableBurdenProjection = 11322, + + /// + /// local_affliction_notable_thaumophage + /// + LocalAfflictionNotableThaumophage = 11323, + + /// + /// local_affliction_notable_essence_rush + /// + LocalAfflictionNotableEssenceRush = 11324, + + /// + /// local_affliction_notable_sap_psyche + /// + LocalAfflictionNotableSapPsyche = 11325, + + /// + /// local_affliction_notable_sadist + /// + LocalAfflictionNotableSadist = 11326, + + /// + /// local_affliction_notable_corrosive_elements + /// + LocalAfflictionNotableCorrosiveElements = 11327, + + /// + /// local_affliction_notable_doryanis_lesson + /// + LocalAfflictionNotableDoryanisLesson = 11328, + + /// + /// local_affliction_notable_disorienting_display + /// + LocalAfflictionNotableDisorientingDisplay = 11329, + + /// + /// local_affliction_notable_prismatic_heart + /// + LocalAfflictionNotablePrismaticHeart = 11330, + + /// + /// local_affliction_notable_widespread_destruction + /// + LocalAfflictionNotableWidespreadDestruction = 11331, + + /// + /// local_affliction_notable_master_of_fire + /// + LocalAfflictionNotableMasterOfFire = 11332, + + /// + /// local_affliction_notable_smoking_remains + /// + LocalAfflictionNotableSmokingRemains = 11333, + + /// + /// local_affliction_notable_cremator + /// + LocalAfflictionNotableCremator = 11334, + + /// + /// local_affliction_notable_snowstorm + /// + LocalAfflictionNotableSnowstorm = 11335, + + /// + /// local_affliction_notable_storm_drinker + /// + LocalAfflictionNotableStormDrinker = 11336, + + /// + /// local_affliction_notable_paralysis + /// + LocalAfflictionNotableParalysis = 11337, + + /// + /// local_affliction_notable_supercharge + /// + LocalAfflictionNotableSupercharge = 11338, + + /// + /// local_affliction_notable_blanketed_snow + /// + LocalAfflictionNotableBlanketedSnow = 11339, + + /// + /// local_affliction_notable_cold_to_the_core + /// + LocalAfflictionNotableColdToTheCore = 11340, + + /// + /// local_affliction_notable_cold_blooded_killer + /// + LocalAfflictionNotableColdBloodedKiller = 11341, + + /// + /// local_affliction_notable_touch_of_cruelty + /// + LocalAfflictionNotableTouchOfCruelty = 11342, + + /// + /// local_affliction_notable_unwaveringly_evil + /// + LocalAfflictionNotableUnwaveringlyEvil = 11343, + + /// + /// local_affliction_notable_unspeakable_gifts + /// + LocalAfflictionNotableUnspeakableGifts = 11344, + + /// + /// local_affliction_notable_dark_ideation + /// + LocalAfflictionNotableDarkIdeation = 11345, + + /// + /// local_affliction_notable_unholy_grace + /// + LocalAfflictionNotableUnholyGrace = 11346, + + /// + /// local_affliction_notable_wicked_pall + /// + LocalAfflictionNotableWickedPall = 11347, + + /// + /// local_affliction_notable_renewal + /// + LocalAfflictionNotableRenewal = 11348, + + /// + /// local_affliction_notable_raze_and_pillage + /// + LocalAfflictionNotableRazeAndPillage = 11349, + + /// + /// local_affliction_notable_rotten_claws + /// + LocalAfflictionNotableRottenClaws = 11350, + + /// + /// local_affliction_notable_call_to_the_slaughter + /// + LocalAfflictionNotableCallToTheSlaughter = 11351, + + /// + /// local_affliction_notable_hulking_corpses + /// + LocalAfflictionNotableHulkingCorpses = 11352, + + /// + /// local_affliction_notable_vicious_bite + /// + LocalAfflictionNotableViciousBite = 11353, + + /// + /// local_affliction_notable_primordial_bond + /// + LocalAfflictionNotablePrimordialBond = 11354, + + /// + /// local_affliction_notable_blowback + /// + LocalAfflictionNotableBlowback = 11355, + + /// + /// local_affliction_notable_fan_the_flames + /// + LocalAfflictionNotableFanTheFlames = 11356, + + /// + /// local_affliction_notable_cooked_alive + /// + LocalAfflictionNotableCookedAlive = 11357, + + /// + /// local_affliction_notable_burning_bright + /// + LocalAfflictionNotableBurningBright = 11358, + + /// + /// local_affliction_notable_wrapped_in_flame + /// + LocalAfflictionNotableWrappedInFlame = 11359, + + /// + /// local_affliction_notable_vivid_hues + /// + LocalAfflictionNotableVividHues = 11360, + + /// + /// local_affliction_notable_rend + /// + LocalAfflictionNotableRend = 11361, + + /// + /// local_affliction_notable_disorienting_wounds + /// + LocalAfflictionNotableDisorientingWounds = 11362, + + /// + /// local_affliction_notable_compound_injury + /// + LocalAfflictionNotableCompoundInjury = 11363, + + /// + /// local_affliction_notable_septic_spells + /// + LocalAfflictionNotableSepticSpells = 11364, + + /// + /// local_affliction_notable_low_tolerance + /// + LocalAfflictionNotableLowTolerance = 11365, + + /// + /// local_affliction_notable_steady_torment + /// + LocalAfflictionNotableSteadyTorment = 11366, + + /// + /// local_affliction_notable_eternal_suffering + /// + LocalAfflictionNotableEternalSuffering = 11367, + + /// + /// local_affliction_notable_eldritch_inspiration + /// + LocalAfflictionNotableEldritchInspiration = 11368, + + /// + /// local_affliction_notable_wasting_affliction + /// + LocalAfflictionNotableWastingAffliction = 11369, + + /// + /// local_affliction_notable_haemorrhage + /// + LocalAfflictionNotableHaemorrhage = 11370, + + /// + /// local_affliction_notable_flow_of_life + /// + LocalAfflictionNotableFlowOfLife = 11371, + + /// + /// local_affliction_notable_exposure_therapy + /// + LocalAfflictionNotableExposureTherapy = 11372, + + /// + /// local_affliction_notable_brush_with_death + /// + LocalAfflictionNotableBrushWithDeath = 11373, + + /// + /// local_affliction_notable_vile_reinvigoration + /// + LocalAfflictionNotableVileReinvigoration = 11374, + + /// + /// local_affliction_notable_circling_oblivion + /// + LocalAfflictionNotableCirclingOblivion = 11375, + + /// + /// local_affliction_notable_brewed_for_potency + /// + LocalAfflictionNotableBrewedForPotency = 11376, + + /// + /// local_affliction_notable_astonishing_affliction + /// + LocalAfflictionNotableAstonishingAffliction = 11377, + + /// + /// local_affliction_notable_cold_conduction + /// + LocalAfflictionNotableColdConduction = 11378, + + /// + /// local_affliction_notable_inspired_oppression + /// + LocalAfflictionNotableInspiredOppression = 11379, + + /// + /// local_affliction_notable_chilling_presence + /// + LocalAfflictionNotableChillingPresence = 11380, + + /// + /// local_affliction_notable_deep_chill + /// + LocalAfflictionNotableDeepChill = 11381, + + /// + /// local_affliction_notable_blast_freeze + /// + LocalAfflictionNotableBlastFreeze = 11382, + + /// + /// local_affliction_notable_thunderstruck + /// + LocalAfflictionNotableThunderstruck = 11383, + + /// + /// local_affliction_notable_stormrider + /// + LocalAfflictionNotableStormrider = 11384, + + /// + /// local_affliction_notable_overshock + /// + LocalAfflictionNotableOvershock = 11385, + + /// + /// local_affliction_notable_evil_eye + /// + LocalAfflictionNotableEvilEye = 11386, + + /// + /// local_affliction_notable_whispers_of_death + /// + LocalAfflictionNotableWhispersOfDeath = 11387, + + /// + /// local_affliction_notable_wardbreaker + /// + LocalAfflictionNotableWardbreaker = 11388, + + /// + /// local_affliction_notable_dark_discourse + /// + LocalAfflictionNotableDarkDiscourse = 11389, + + /// + /// local_affliction_notable_victim_maker + /// + LocalAfflictionNotableVictimMaker = 11390, + + /// + /// local_affliction_notable_master_of_fear + /// + LocalAfflictionNotableMasterOfFear = 11391, + + /// + /// local_affliction_notable_wish_for_death + /// + LocalAfflictionNotableWishForDeath = 11392, + + /// + /// local_affliction_notable_heraldry + /// + LocalAfflictionNotableHeraldry = 11393, + + /// + /// local_affliction_notable_endbringer + /// + LocalAfflictionNotableEndbringer = 11394, + + /// + /// local_affliction_notable_cult_leader + /// + LocalAfflictionNotableCultLeader = 11395, + + /// + /// local_affliction_notable_empowered_envoy + /// + LocalAfflictionNotableEmpoweredEnvoy = 11396, + + /// + /// local_affliction_notable_dark_messenger + /// + LocalAfflictionNotableDarkMessenger = 11397, + + /// + /// local_affliction_notable_agent_of_destruction + /// + LocalAfflictionNotableAgentOfDestruction = 11398, + + /// + /// local_affliction_notable_lasting_impression + /// + LocalAfflictionNotableLastingImpression = 11399, + + /// + /// local_affliction_notable_self_fulfilling_prophecy + /// + LocalAfflictionNotableSelfFulfillingProphecy = 11400, + + /// + /// local_affliction_notable_invigorating_portents + /// + LocalAfflictionNotableInvigoratingPortents = 11401, + + /// + /// local_affliction_notable_pure_agony + /// + LocalAfflictionNotablePureAgony = 11402, + + /// + /// local_affliction_notable_disciples + /// + LocalAfflictionNotableDisciples = 11403, + + /// + /// local_affliction_notable_dread_march + /// + LocalAfflictionNotableDreadMarch = 11404, + + /// + /// local_affliction_notable_blessed_rebirth + /// + LocalAfflictionNotableBlessedRebirth = 11405, + + /// + /// local_affliction_notable_life_from_death + /// + LocalAfflictionNotableLifeFromDeath = 11406, + + /// + /// local_affliction_notable_feasting_fiends + /// + LocalAfflictionNotableFeastingFiends = 11407, + + /// + /// local_affliction_notable_bodyguards + /// + LocalAfflictionNotableBodyguards = 11408, + + /// + /// local_affliction_notable_follow_through + /// + LocalAfflictionNotableFollowThrough = 11409, + + /// + /// local_affliction_notable_streamlined + /// + LocalAfflictionNotableStreamlined = 11410, + + /// + /// local_affliction_notable_shrieking_bolts + /// + LocalAfflictionNotableShriekingBolts = 11411, + + /// + /// local_affliction_notable_eye_to_eye + /// + LocalAfflictionNotableEyeToEye = 11412, + + /// + /// local_affliction_notable_repeater + /// + LocalAfflictionNotableRepeater = 11413, + + /// + /// local_affliction_notable_aerodynamics + /// + LocalAfflictionNotableAerodynamics = 11414, + + /// + /// local_affliction_notable_chip_away + /// + LocalAfflictionNotableChipAway = 11415, + + /// + /// local_affliction_notable_seeker_runes + /// + LocalAfflictionNotableSeekerRunes = 11416, + + /// + /// local_affliction_notable_remarkable + /// + LocalAfflictionNotableRemarkable = 11417, + + /// + /// local_affliction_notable_brand_loyalty + /// + LocalAfflictionNotableBrandLoyalty = 11418, + + /// + /// local_affliction_notable_holy_conquest + /// + LocalAfflictionNotableHolyConquest = 11419, + + /// + /// local_affliction_notable_grand_design + /// + LocalAfflictionNotableGrandDesign = 11420, + + /// + /// local_affliction_notable_set_and_forget + /// + LocalAfflictionNotableSetAndForget = 11421, + + /// + /// local_affliction_notable_expert_sabotage + /// + LocalAfflictionNotableExpertSabotage = 11422, + + /// + /// local_affliction_notable_guerilla_tactics + /// + LocalAfflictionNotableGuerillaTactics = 11423, + + /// + /// local_affliction_notable_expendability + /// + LocalAfflictionNotableExpendability = 11424, + + /// + /// local_affliction_notable_arcane_pyrotechnics + /// + LocalAfflictionNotableArcanePyrotechnics = 11425, + + /// + /// local_affliction_notable_surprise_sabotage + /// + LocalAfflictionNotableSurpriseSabotage = 11426, + + /// + /// local_affliction_notable_careful_handling + /// + LocalAfflictionNotableCarefulHandling = 11427, + + /// + /// local_affliction_notable_peak_vigour + /// + LocalAfflictionNotablePeakVigour = 11428, + + /// + /// local_affliction_notable_fettle + /// + LocalAfflictionNotableFettle = 11429, + + /// + /// local_affliction_notable_feast_of_flesh + /// + LocalAfflictionNotableFeastOfFlesh = 11430, + + /// + /// local_affliction_notable_sublime_sensation + /// + LocalAfflictionNotableSublimeSensation = 11431, + + /// + /// local_affliction_notable_surging_vitality + /// + LocalAfflictionNotableSurgingVitality = 11432, + + /// + /// local_affliction_notable_peace_amidst_chaos + /// + LocalAfflictionNotablePeaceAmidstChaos = 11433, + + /// + /// local_affliction_notable_adrenaline + /// + LocalAfflictionNotableAdrenaline = 11434, + + /// + /// local_affliction_notable_wall_of_muscle + /// + LocalAfflictionNotableWallOfMuscle = 11435, + + /// + /// local_affliction_notable_mindfulness + /// + LocalAfflictionNotableMindfulness = 11436, + + /// + /// local_affliction_notable_liquid_inspiration + /// + LocalAfflictionNotableLiquidInspiration = 11437, + + /// + /// local_affliction_notable_openness + /// + LocalAfflictionNotableOpenness = 11438, + + /// + /// local_affliction_notable_daring_ideas + /// + LocalAfflictionNotableDaringIdeas = 11439, + + /// + /// local_affliction_notable_clarity_of_purpose + /// + LocalAfflictionNotableClarityOfPurpose = 11440, + + /// + /// local_affliction_notable_scintillating_idea + /// + LocalAfflictionNotableScintillatingIdea = 11441, + + /// + /// local_affliction_notable_holistic_health + /// + LocalAfflictionNotableHolisticHealth = 11442, + + /// + /// local_affliction_notable_genius + /// + LocalAfflictionNotableGenius = 11443, + + /// + /// local_affliction_notable_improvisor + /// + LocalAfflictionNotableImprovisor = 11444, + + /// + /// local_affliction_notable_stubborn_student + /// + LocalAfflictionNotableStubbornStudent = 11445, + + /// + /// local_affliction_notable_savour_the_moment + /// + LocalAfflictionNotableSavourTheMoment = 11446, + + /// + /// local_affliction_notable_energy_from_naught + /// + LocalAfflictionNotableEnergyFromNaught = 11447, + + /// + /// local_affliction_notable_will_shaper + /// + LocalAfflictionNotableWillShaper = 11448, + + /// + /// local_affliction_notable_spring_back + /// + LocalAfflictionNotableSpringBack = 11449, + + /// + /// local_affliction_notable_conservation_of_energy + /// + LocalAfflictionNotableConservationOfEnergy = 11450, + + /// + /// local_affliction_notable_heart_of_iron + /// + LocalAfflictionNotableHeartOfIron = 11451, + + /// + /// local_affliction_notable_prismatic_carapace + /// + LocalAfflictionNotablePrismaticCarapace = 11452, + + /// + /// local_affliction_notable_militarism + /// + LocalAfflictionNotableMilitarism = 11453, + + /// + /// local_affliction_notable_second_skin + /// + LocalAfflictionNotableSecondSkin = 11454, + + /// + /// local_affliction_notable_dragon_hunter + /// + LocalAfflictionNotableDragonHunter = 11455, + + /// + /// local_affliction_notable_enduring_composure + /// + LocalAfflictionNotableEnduringComposure = 11456, + + /// + /// local_affliction_notable_prismatic_dance + /// + LocalAfflictionNotablePrismaticDance = 11457, + + /// + /// local_affliction_notable_natural_vigour + /// + LocalAfflictionNotableNaturalVigour = 11458, + + /// + /// local_affliction_notable_untouchable + /// + LocalAfflictionNotableUntouchable = 11459, + + /// + /// local_affliction_notable_shifting_shadow + /// + LocalAfflictionNotableShiftingShadow = 11460, + + /// + /// local_affliction_notable_readiness + /// + LocalAfflictionNotableReadiness = 11461, + + /// + /// local_affliction_notable_confident_combatant + /// + LocalAfflictionNotableConfidentCombatant = 11462, + + /// + /// local_affliction_notable_flexible_sentry + /// + LocalAfflictionNotableFlexibleSentry = 11463, + + /// + /// local_affliction_notable_vicious_guard_ + /// + LocalAfflictionNotableViciousGuard = 11464, + + /// + /// local_affliction_notable_mystical_ward + /// + LocalAfflictionNotableMysticalWard = 11465, + + /// + /// local_affliction_notable_rote_reinforcement + /// + LocalAfflictionNotableRoteReinforcement = 11466, + + /// + /// local_affliction_notable_mage_hunter + /// + LocalAfflictionNotableMageHunter = 11467, + + /// + /// local_affliction_notable_riot_queller + /// + LocalAfflictionNotableRiotQueller = 11468, + + /// + /// local_affliction_notable_one_with_the_shield + /// + LocalAfflictionNotableOneWithTheShield = 11469, + + /// + /// local_affliction_notable_aerialist + /// + LocalAfflictionNotableAerialist = 11470, + + /// + /// local_affliction_notable_elegant_form + /// + LocalAfflictionNotableElegantForm = 11471, + + /// + /// local_affliction_notable_darting_movements + /// + LocalAfflictionNotableDartingMovements = 11472, + + /// + /// local_affliction_notable_no_witnesses + /// + LocalAfflictionNotableNoWitnesses = 11473, + + /// + /// local_affliction_notable_molten_ones_mark + /// + LocalAfflictionNotableMoltenOnesMark = 11474, + + /// + /// local_affliction_notable_fire_attunement + /// + LocalAfflictionNotableFireAttunement = 11475, + + /// + /// local_affliction_notable_pure_might + /// + LocalAfflictionNotablePureMight = 11476, + + /// + /// local_affliction_notable_blacksmith + /// + LocalAfflictionNotableBlacksmith = 11477, + + /// + /// local_affliction_notable_non_flammable + /// + LocalAfflictionNotableNonFlammable = 11478, + + /// + /// local_affliction_notable_winter_prowler + /// + LocalAfflictionNotableWinterProwler = 11479, + + /// + /// local_affliction_notable_hibernator + /// + LocalAfflictionNotableHibernator = 11480, + + /// + /// local_affliction_notable_pure_guile + /// + LocalAfflictionNotablePureGuile = 11481, + + /// + /// local_affliction_notable_alchemist + /// + LocalAfflictionNotableAlchemist = 11482, + + /// + /// local_affliction_notable_antifreeze + /// + LocalAfflictionNotableAntifreeze = 11483, + + /// + /// local_affliction_notable_wizardry + /// + LocalAfflictionNotableWizardry = 11484, + + /// + /// local_affliction_notable_capacitor + /// + LocalAfflictionNotableCapacitor = 11485, + + /// + /// local_affliction_notable_pure_aptitude + /// + LocalAfflictionNotablePureAptitude = 11486, + + /// + /// local_affliction_notable_sage + /// + LocalAfflictionNotableSage = 11487, + + /// + /// local_affliction_notable_insulated + /// + LocalAfflictionNotableInsulated = 11488, + + /// + /// local_affliction_notable_born_of_chaos + /// + LocalAfflictionNotableBornOfChaos = 11489, + + /// + /// local_affliction_notable_antivenom + /// + LocalAfflictionNotableAntivenom = 11490, + + /// + /// local_affliction_notable_rot_resistant + /// + LocalAfflictionNotableRotResistant = 11491, + + /// + /// local_affliction_notable_blessed + /// + LocalAfflictionNotableBlessed = 11492, + + /// + /// local_affliction_notable_student_of_decay + /// + LocalAfflictionNotableStudentOfDecay = 11493, + + /// + /// area_skill_knockback_chance_% + /// + AreaSkillKnockbackChancePct = 11494, + + /// + /// fire_skill_chance_to_inflict_fire_exposure_% + /// + FireSkillChanceToInflictFireExposurePct = 11495, + + /// + /// cold_skill_chance_to_inflict_cold_exposure_% + /// + ColdSkillChanceToInflictColdExposurePct = 11496, + + /// + /// lightning_skill_chance_to_inflict_lightning_exposure_% + /// + LightningSkillChanceToInflictLightningExposurePct = 11497, + + /// + /// chaos_skill_chance_to_hinder_on_hit_% + /// + ChaosSkillChanceToHinderOnHitPct = 11498, + + /// + /// banner_mana_reservation_+% + /// + BannerManaReservationPct = 11499, + + /// + /// lightning_skill_stun_threshold_+% + /// + LightningSkillStunThresholdPct = 11500, + + /// + /// cannot_be_stunned_while_using_chaos_skill + /// + CannotBeStunnedWhileUsingChaosSkill = 11501, + + /// + /// poison_dot_multiplier_+_with_spells + /// + PoisonDotMultiplierWithSpells = 11502, + + /// + /// elemental_skill_chance_to_blind_nearby_enemies_% + /// + ElementalSkillChanceToBlindNearbyEnemiesPct = 11503, + + /// + /// is_affliction_monster + /// + IsAfflictionMonster = 11504, + + /// + /// gain_arcane_surge_when_you_summon_a_totem + /// + GainArcaneSurgeWhenYouSummonATotem = 11505, + + /// + /// add_frenzy_charge_on_kill_%_chance_while_dual_wielding + /// + AddFrenzyChargeOnKillPctChanceWhileDualWielding = 11506, + + /// + /// create_smoke_cloud_on_kill_%_chance + /// + CreateSmokeCloudOnKillPctChance = 11507, + + /// + /// totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed + /// + TotemHinderNearbyEnemiesWhenSummonedWith25PctReducedMovementSpeed = 11508, + + /// + /// attack_damage_+%_per_75_armour_or_evasion_on_shield + /// + AttackDamagePctPer75ArmourOrEvasionOnShield = 11509, + + /// + /// critical_multiplier_+%_per_10_max_es_on_shield + /// + CriticalMultiplierPctPer10MaxEsOnShield = 11510, + + /// + /// movement_speed_+%_while_you_have_infusion + /// + MovementSpeedPctWhileYouHaveInfusion = 11511, + + /// + /// infusion_effect_+% + /// + InfusionEffectPct = 11512, + + /// + /// flask_life_and_mana_to_recover_+% + /// + FlaskLifeAndManaToRecoverPct = 11513, + + /// + /// virtual_flask_mana_to_recover_+% + /// + VirtualFlaskManaToRecoverPct = 11514, + + /// + /// has_infusion + /// + HasInfusion = 11515, + + /// + /// map_uses_chaos_packs + /// + MapUsesChaosPacks = 11516, + + /// + /// local_jewel_expansion_keystone_lone_messenger + /// + LocalJewelExpansionKeystoneLoneMessenger = 11517, + + /// + /// local_jewel_expansion_keystone_natures_patience + /// + LocalJewelExpansionKeystoneNaturesPatience = 11518, + + /// + /// local_jewel_expansion_keystone_secrets_of_suffering + /// + LocalJewelExpansionKeystoneSecretsOfSuffering = 11519, + + /// + /// local_jewel_expansion_keystone_kineticism + /// + LocalJewelExpansionKeystoneKineticism = 11520, + + /// + /// local_jewel_expansion_keystone_pitfighter + /// + LocalJewelExpansionKeystonePitfighter = 11521, + + /// + /// local_jewel_expansion_keystone_veterans_awareness + /// + LocalJewelExpansionKeystoneVeteransAwareness = 11522, + + /// + /// local_jewel_expansion_keystone_hollow_palm_technique + /// + LocalJewelExpansionKeystoneHollowPalmTechnique = 11523, + + /// + /// recover_%_maximum_mana_when_enemy_frozen_permyriad + /// + RecoverPctMaximumManaWhenEnemyFrozenPermyriad = 11524, + + /// + /// chance_to_grant_power_charge_on_shocking_chilled_enemy_% + /// + ChanceToGrantPowerChargeOnShockingChilledEnemyPct = 11525, + + /// + /// shock_maximum_magnitude_is_60% + /// + ShockMaximumMagnitudeIs60Pct = 11526, + + /// + /// spread_freeze_to_nearby_enemies + /// + SpreadFreezeToNearbyEnemies = 11527, + + /// + /// spread_ignite_to_nearby_enemies + /// + SpreadIgniteToNearbyEnemies = 11528, + + /// + /// virtual_shock_maximum_magnitude_override + /// + VirtualShockMaximumMagnitudeOverride = 11529, + + /// + /// virtual_freeze_proliferation_radius + /// + VirtualFreezeProliferationRadius = 11530, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_life + /// + LocalAfflictionJewelSmallNodesGrantMaximumLife = 11531, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_mana + /// + LocalAfflictionJewelSmallNodesGrantMaximumMana = 11532, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_energy_shield + /// + LocalAfflictionJewelSmallNodesGrantMaximumEnergyShield = 11533, + + /// + /// local_affliction_jewel_small_nodes_grant_armour + /// + LocalAfflictionJewelSmallNodesGrantArmour = 11534, + + /// + /// local_affliction_jewel_small_nodes_grant_evasion + /// + LocalAfflictionJewelSmallNodesGrantEvasion = 11535, + + /// + /// local_affliction_jewel_small_nodes_grant_str + /// + LocalAfflictionJewelSmallNodesGrantStr = 11536, + + /// + /// local_affliction_jewel_small_nodes_grant_dex + /// + LocalAfflictionJewelSmallNodesGrantDex = 11537, + + /// + /// local_affliction_jewel_small_nodes_grant_int + /// + LocalAfflictionJewelSmallNodesGrantInt = 11538, + + /// + /// local_affliction_jewel_small_nodes_grant_all_attributes + /// + LocalAfflictionJewelSmallNodesGrantAllAttributes = 11539, + + /// + /// local_affliction_jewel_small_nodes_grant_mana_regeneration_+% + /// + LocalAfflictionJewelSmallNodesGrantManaRegenerationPct = 11540, + + /// + /// local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute + /// + LocalAfflictionJewelSmallNodesGrantPctLifeRegenerationPerMinute = 11541, + + /// + /// local_affliction_jewel_small_nodes_grant_fire_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantFireResistancePct = 11542, + + /// + /// local_affliction_jewel_small_nodes_grant_cold_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantColdResistancePct = 11543, + + /// + /// local_affliction_jewel_small_nodes_grant_lightning_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantLightningResistancePct = 11544, + + /// + /// local_affliction_jewel_small_nodes_grant_elemental_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantElementalResistancePct = 11545, + + /// + /// local_affliction_jewel_small_nodes_grant_chaos_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantChaosResistancePct = 11546, + + /// + /// local_affliction_jewel_small_nodes_grant_damage_+% + /// + LocalAfflictionJewelSmallNodesGrantDamagePct = 11547, + + /// + /// local_affliction_jewel_small_nodes_have_effect_+% + /// + LocalAfflictionJewelSmallNodesHaveEffectPct = 11548, + + /// + /// maximum_virulence_stacks + /// + MaximumVirulenceStacks = 11549, + + /// + /// unattached_sigil_attachment_range_+%_per_second + /// + UnattachedSigilAttachmentRangePctPerSecond = 11550, + + /// + /// extra_damage_rolls_with_lightning_damage_on_non_critical_hits + /// + ExtraDamageRollsWithLightningDamageOnNonCriticalHits = 11551, + + /// + /// maximum_intensify_stacks + /// + MaximumIntensifyStacks = 11552, + + /// + /// aura_effect_on_you_+%_per_herald_effecting_you + /// + AuraEffectOnYouPctPerHeraldEffectingYou = 11553, + + /// + /// virtual_aura_effect_on_self_pluspercent + /// + VirtualAuraEffectOnSelfPluspercent = 11554, + + /// + /// minion_attack_hits_knockback_chance_% + /// + MinionAttackHitsKnockbackChancePct = 11555, + + /// + /// minion_chance_to_gain_power_charge_on_hit_% + /// + MinionChanceToGainPowerChargeOnHitPct = 11556, + + /// + /// spectre_zombie_skeleton_critical_strike_multiplier_+ + /// + SpectreZombieSkeletonCriticalStrikeMultiplier = 11557, + + /// + /// minion_recover_%_maximum_life_on_minion_death + /// + MinionRecoverPctMaximumLifeOnMinionDeath = 11558, + + /// + /// poison_on_non_poisoned_enemies_damage_+% + /// + PoisonOnNonPoisonedEnemiesDamagePct = 11559, + + /// + /// elemental_resistance_%_per_stackable_unique_jewel + /// + ElementalResistancePctPerStackableUniqueJewel = 11560, + + /// + /// base_can_only_have_one_permanent_aura + /// + BaseCanOnlyHaveOnePermanentAura = 11561, + + /// + /// non_curse_aura_effect_+%_vs_enemies + /// + NonCurseAuraEffectPctVsEnemies = 11562, + + /// + /// map_area_contains_metamorphs + /// + MapAreaContainsMetamorphs = 11563, + + /// + /// map_metamorph_all_metamorphs_have_rewards + /// + MapMetamorphAllMetamorphsHaveRewards = 11564, + + /// + /// map_metamorph_boss_drops_additional_itemised_organs + /// + MapMetamorphBossDropsAdditionalItemisedOrgans = 11565, + + /// + /// keystone_hollow_palm_technique + /// + KeystoneHollowPalmTechnique = 11566, + + /// + /// keystone_disciple_of_kitava + /// + KeystoneDiscipleOfKitava = 11567, + + /// + /// keystone_natures_presence + /// + KeystoneNaturesPresence = 11568, + + /// + /// keystone_secrets_of_suffering + /// + KeystoneSecretsOfSuffering = 11569, + + /// + /// has_mastered_the_hollow_palm + /// + HasMasteredTheHollowPalm = 11570, + + /// + /// wearing_gloves + /// + WearingGloves = 11571, + + /// + /// is_wielding_two_weapon_types + /// + IsWieldingTwoWeaponTypes = 11572, + + /// + /// main_hand_attack_damage_+%_while_wielding_two_weapon_types + /// + MainHandAttackDamagePctWhileWieldingTwoWeaponTypes = 11573, + + /// + /// off_hand_attack_speed_+%_while_wielding_two_weapon_types + /// + OffHandAttackSpeedPctWhileWieldingTwoWeaponTypes = 11574, + + /// + /// life_regeneration_per_minute_%_while_channelling + /// + LifeRegenerationPerMinutePctWhileChannelling = 11575, + + /// + /// damage_+%_while_channelling + /// + DamagePctWhileChannelling = 11576, + + /// + /// mana_cost_+%_for_channelling_skills + /// + ManaCostPctForChannellingSkills = 11577, + + /// + /// %_chance_to_gain_endurance_charge_each_second_while_channelling + /// + PctChanceToGainEnduranceChargeEachSecondWhileChannelling = 11578, + + /// + /// critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second + /// + CriticalStrikeMultiplierIfYouveBeenChannellingForAtLeast1Second = 11579, + + /// + /// critical_strike_chance_+%_while_channelling + /// + CriticalStrikeChancePctWhileChannelling = 11580, + + /// + /// chance_to_block_attacks_%_while_channelling + /// + ChanceToBlockAttacksPctWhileChannelling = 11581, + + /// + /// chance_to_block_spells_%_while_channelling + /// + ChanceToBlockSpellsPctWhileChannelling = 11582, + + /// + /// have_been_channelling_for_at_least_1_second + /// + HaveBeenChannellingForAtLeast1Second = 11583, + + /// + /// gain_arcane_surge_for_4_seconds_after_channelling_for_1_second + /// + GainArcaneSurgeFor4SecondsAfterChannellingFor1Second = 11584, + + /// + /// attack_and_cast_speed_+%_while_channelling + /// + AttackAndCastSpeedPctWhileChannelling = 11585, + + /// + /// immune_to_curses_while_channelling + /// + ImmuneToCursesWhileChannelling = 11586, + + /// + /// damage_+%_with_herald_skills + /// + DamagePctWithHeraldSkills = 11587, + + /// + /// area_of_effect_+%_with_herald_skills + /// + AreaOfEffectPctWithHeraldSkills = 11588, + + /// + /// damage_over_time_+%_with_herald_skills + /// + DamageOverTimePctWithHeraldSkills = 11589, + + /// + /// critical_strike_multiplier_+_with_herald_skills + /// + CriticalStrikeMultiplierWithHeraldSkills = 11590, + + /// + /// additional_critical_strike_chance_permyriad_with_herald_skills + /// + AdditionalCriticalStrikeChancePermyriadWithHeraldSkills = 11591, + + /// + /// gain_arcane_surge_when_trap_triggered_by_an_enemy + /// + GainArcaneSurgeWhenTrapTriggeredByAnEnemy = 11592, + + /// + /// gain_arcane_surge_when_mine_detonated_targeting_an_enemy + /// + GainArcaneSurgeWhenMineDetonatedTargetingAnEnemy = 11593, + + /// + /// virtual_immune_to_curses + /// + VirtualImmuneToCurses = 11594, + + /// + /// hinder_aura_behaviour_variation + /// + HinderAuraBehaviourVariation = 11595, + + /// + /// enemies_you_curse_have_15%_hinder + /// + EnemiesYouCurseHave15PctHinder = 11596, + + /// + /// enemies_you_curse_are_intimidated + /// + EnemiesYouCurseAreIntimidated = 11597, + + /// + /// enemies_you_curse_are_unnerved + /// + EnemiesYouCurseAreUnnerved = 11598, + + /// + /// local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius + /// + LocalUniqueJewelLifeRecoveryRatePctPer10StrAllocatedInRadius = 11599, + + /// + /// local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius + /// + LocalUniqueJewelLifeRecoveryRatePctPer10StrUnallocatedInRadius = 11600, + + /// + /// local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius + /// + LocalUniqueJewelMovementSpeedPctPer10DexUnallocatedInRadius = 11601, + + /// + /// local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius + /// + LocalUniqueJewelAccuracyRatingPer10DexUnallocatedInRadius = 11602, + + /// + /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius + /// + LocalUniqueJewelManaRecoveryRatePctPer10IntAllocatedInRadius = 11603, + + /// + /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius + /// + LocalUniqueJewelManaRecoveryRatePctPer10IntUnallocatedInRadius = 11604, + + /// + /// local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius + /// + LocalUniqueJewelDotMultiplierPer10IntUnallocatedInRadius = 11605, + + /// + /// projectile_damage_+%_per_remaining_chain + /// + ProjectileDamagePctPerRemainingChain = 11606, + + /// + /// map_endgame_fog_depth + /// + MapEndgameFogDepth = 11607, + + /// + /// beam_bomb_action_speed_+%_final + /// + BeamBombActionSpeedPctFinal = 11608, + + /// + /// taunt_on_projectile_hit_chance_% + /// + TauntOnProjectileHitChancePct = 11609, + + /// + /// spells_chance_to_knockback_on_hit_% + /// + SpellsChanceToKnockbackOnHitPct = 11610, + + /// + /// spells_chance_to_poison_on_hit_% + /// + SpellsChanceToPoisonOnHitPct = 11611, + + /// + /// gain_x_rage_on_hit_with_axes_swords_1s_cooldown + /// + GainXRageOnHitWithAxesSwords1SCooldown = 11612, + + /// + /// chance_to_gain_unholy_might_on_crit_for_4_seconds_% + /// + ChanceToGainUnholyMightOnCritFor4SecondsPct = 11613, + + /// + /// gain_arcane_surge_on_hit_vs_unique_enemy_%_chance + /// + GainArcaneSurgeOnHitVsUniqueEnemyPctChance = 11614, + + /// + /// chance_to_intimidate_nearby_enemies_on_melee_kill_% + /// + ChanceToIntimidateNearbyEnemiesOnMeleeKillPct = 11615, + + /// + /// enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance + /// + EnemiesExplodeOnDeathByWandHitFor25PctLifeAsChaosDamagePctChance = 11616, + + /// + /// virtual_total_main_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% + /// + VirtualTotalMainHandChanceToExplodeEnemyOnKillByWandHitPct = 11617, + + /// + /// virtual_total_off_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% + /// + VirtualTotalOffHandChanceToExplodeEnemyOnKillByWandHitPct = 11618, + + /// + /// totem_chaos_resistance_% + /// + TotemChaosResistancePct = 11619, + + /// + /// cannot_be_afflicted + /// + CannotBeAfflicted = 11620, + + /// + /// cannot_have_affliction_mods + /// + CannotHaveAfflictionMods = 11621, + + /// + /// trap_or_mine_damage_+% + /// + TrapOrMineDamagePct = 11622, + + /// + /// you_and_nearby_allies_critical_strike_chance_+% + /// + YouAndNearbyAlliesCriticalStrikeChancePct = 11623, + + /// + /// you_and_nearby_allies_critical_strike_multiplier_+ + /// + YouAndNearbyAlliesCriticalStrikeMultiplier = 11624, + + /// + /// mana_regeneration_rate_+%_if_enemy_shocked_recently + /// + ManaRegenerationRatePctIfEnemyShockedRecently = 11625, + + /// + /// mana_regeneration_rate_+%_if_enemy_frozen_recently + /// + ManaRegenerationRatePctIfEnemyFrozenRecently = 11626, + + /// + /// local_display_nearby_enemies_have_fire_exposure + /// + LocalDisplayNearbyEnemiesHaveFireExposure = 11627, + + /// + /// local_display_nearby_enemies_are_chilled + /// + LocalDisplayNearbyEnemiesAreChilled = 11628, + + /// + /// projectiles_bounce_randomly_on_collision_x_times + /// + ProjectilesBounceRandomlyOnCollisionXTimes = 11629, + + /// + /// projectiles_bounce_randomly_terrain_only + /// + ProjectilesBounceRandomlyTerrainOnly = 11630, + + /// + /// projectiles_bounce_max_travel_distance_per_bounce + /// + ProjectilesBounceMaxTravelDistancePerBounce = 11631, + + /// + /// projectiles_bounce_max_travel_distance_all_bounces + /// + ProjectilesBounceMaxTravelDistanceAllBounces = 11632, + + /// + /// conditonal_move_if_enemy_beyond_%_of_maximum_action_distance + /// + ConditonalMoveIfEnemyBeyondPctOfMaximumActionDistance = 11633, + + /// + /// can_only_have_one_permanent_aura + /// + CanOnlyHaveOnePermanentAura = 11634, + + /// + /// minion_minimum_power_charges + /// + MinionMinimumPowerCharges = 11635, + + /// + /// map_vaal_vessel_drop_x_single_implicit_corrupted_uniques + /// + MapVaalVesselDropXSingleImplicitCorruptedUniques = 11636, + + /// + /// you_and_nearby_party_members_gain_x_rage_when_you_warcry + /// + YouAndNearbyPartyMembersGainXRageWhenYouWarcry = 11637, + + /// + /// projectile_speed_is_divided_by_%_of_scale + /// + ProjectileSpeedIsDividedByPctOfScale = 11638, + + /// + /// explosive_arrow_stack_limit + /// + ExplosiveArrowStackLimit = 11639, + + /// + /// local_affliction_notable_skeletal_atrophy + /// + LocalAfflictionNotableSkeletalAtrophy = 11640, + + /// + /// drop_affliction_splinters_chance_per_cent_mille + /// + DropAfflictionSplintersChancePerCentMille = 11641, + + /// + /// map_endgame_affliction_reward_1 + /// + MapEndgameAfflictionReward1 = 11642, + + /// + /// map_endgame_affliction_reward_2 + /// + MapEndgameAfflictionReward2 = 11643, + + /// + /// map_endgame_affliction_reward_3 + /// + MapEndgameAfflictionReward3 = 11644, + + /// + /// map_endgame_affliction_reward_4 + /// + MapEndgameAfflictionReward4 = 11645, + + /// + /// map_endgame_affliction_reward_5 + /// + MapEndgameAfflictionReward5 = 11646, + + /// + /// mana_reservation_+%_with_curse_skills + /// + ManaReservationPctWithCurseSkills = 11647, + + /// + /// critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently + /// + CriticalStrikeMultiplierIfCritWithAHeraldSkillRecently = 11648, + + /// + /// have_crit_with_a_herald_skill_recently + /// + HaveCritWithAHeraldSkillRecently = 11649, + + /// + /// track_have_crit_with_a_herald_skill_recently + /// + TrackHaveCritWithAHeraldSkillRecently = 11650, + + /// + /// attack_and_cast_speed_+%_with_fire_skills + /// + AttackAndCastSpeedPctWithFireSkills = 11651, + + /// + /// attack_and_cast_speed_+%_with_cold_skills + /// + AttackAndCastSpeedPctWithColdSkills = 11652, + + /// + /// attack_and_cast_speed_+%_with_lightning_skills + /// + AttackAndCastSpeedPctWithLightningSkills = 11653, + + /// + /// attack_and_cast_speed_+%_with_chaos_skills + /// + AttackAndCastSpeedPctWithChaosSkills = 11654, + + /// + /// attack_and_cast_speed_+%_with_physical_skills + /// + AttackAndCastSpeedPctWithPhysicalSkills = 11655, + + /// + /// attack_and_cast_speed_+%_with_elemental_skills + /// + AttackAndCastSpeedPctWithElementalSkills = 11656, + + /// + /// additional_physical_damage_reduction_%_while_frozen + /// + AdditionalPhysicalDamageReductionPctWhileFrozen = 11657, + + /// + /// multi_trap_and_mine_support_flags + /// + MultiTrapAndMineSupportFlags = 11658, + + /// + /// combined_ailment_all_damage_over_time_+% + /// + CombinedAilmentAllDamageOverTimePct = 11659, + + /// + /// combined_main_hand_ailment_all_damage_over_time_+% + /// + CombinedMainHandAilmentAllDamageOverTimePct = 11660, + + /// + /// combined_off_hand_ailment_all_damage_over_time_+% + /// + CombinedOffHandAilmentAllDamageOverTimePct = 11661, + + /// + /// dagger_ailment_damage_+% + /// + DaggerAilmentDamagePct = 11662, + + /// + /// claw_ailment_damage_+% + /// + ClawAilmentDamagePct = 11663, + + /// + /// sword_ailment_damage_+% + /// + SwordAilmentDamagePct = 11664, + + /// + /// bow_ailment_damage_+% + /// + BowAilmentDamagePct = 11665, + + /// + /// axe_ailment_damage_+% + /// + AxeAilmentDamagePct = 11666, + + /// + /// staff_ailment_damage_+% + /// + StaffAilmentDamagePct = 11667, + + /// + /// mace_ailment_damage_+% + /// + MaceAilmentDamagePct = 11668, + + /// + /// wand_ailment_damage_+% + /// + WandAilmentDamagePct = 11669, + + /// + /// one_handed_weapon_ailment_damage_+% + /// + OneHandedWeaponAilmentDamagePct = 11670, + + /// + /// two_handed_weapon_ailment_damage_+% + /// + TwoHandedWeaponAilmentDamagePct = 11671, + + /// + /// one_handed_melee_weapon_ailment_damage_+% + /// + OneHandedMeleeWeaponAilmentDamagePct = 11672, + + /// + /// two_handed_melee_weapon_ailment_damage_+% + /// + TwoHandedMeleeWeaponAilmentDamagePct = 11673, + + /// + /// melee_weapon_ailment_damage_+% + /// + MeleeWeaponAilmentDamagePct = 11674, + + /// + /// axe_or_sword_ailment_damage_+% + /// + AxeOrSwordAilmentDamagePct = 11675, + + /// + /// claw_or_dagger_ailment_damage_+% + /// + ClawOrDaggerAilmentDamagePct = 11676, + + /// + /// mace_or_staff_ailment_damage_+% + /// + MaceOrStaffAilmentDamagePct = 11677, + + /// + /// dagger_hit_and_ailment_damage_+% + /// + DaggerHitAndAilmentDamagePct = 11678, + + /// + /// claw_hit_and_ailment_damage_+% + /// + ClawHitAndAilmentDamagePct = 11679, + + /// + /// sword_hit_and_ailment_damage_+% + /// + SwordHitAndAilmentDamagePct = 11680, + + /// + /// bow_hit_and_ailment_damage_+% + /// + BowHitAndAilmentDamagePct = 11681, + + /// + /// axe_hit_and_ailment_damage_+% + /// + AxeHitAndAilmentDamagePct = 11682, + + /// + /// staff_hit_and_ailment_damage_+% + /// + StaffHitAndAilmentDamagePct = 11683, + + /// + /// mace_hit_and_ailment_damage_+% + /// + MaceHitAndAilmentDamagePct = 11684, + + /// + /// wand_hit_and_ailment_damage_+% + /// + WandHitAndAilmentDamagePct = 11685, + + /// + /// one_handed_weapon_hit_and_ailment_damage_+% + /// + OneHandedWeaponHitAndAilmentDamagePct = 11686, + + /// + /// two_handed_weapon_hit_and_ailment_damage_+% + /// + TwoHandedWeaponHitAndAilmentDamagePct = 11687, + + /// + /// one_handed_melee_weapon_hit_and_ailment_damage_+% + /// + OneHandedMeleeWeaponHitAndAilmentDamagePct = 11688, + + /// + /// two_handed_melee_weapon_hit_and_ailment_damage_+% + /// + TwoHandedMeleeWeaponHitAndAilmentDamagePct = 11689, + + /// + /// melee_weapon_hit_and_ailment_damage_+% + /// + MeleeWeaponHitAndAilmentDamagePct = 11690, + + /// + /// axe_or_sword_hit_and_ailment_damage_+% + /// + AxeOrSwordHitAndAilmentDamagePct = 11691, + + /// + /// claw_or_dagger_hit_and_ailment_damage_+% + /// + ClawOrDaggerHitAndAilmentDamagePct = 11692, + + /// + /// mace_or_staff_hit_and_ailment_damage_+% + /// + MaceOrStaffHitAndAilmentDamagePct = 11693, + + /// + /// virtual_main_hand_hit_and_ailment_damage_+%_from_weapon_type + /// + VirtualMainHandHitAndAilmentDamagePctFromWeaponType = 11694, + + /// + /// virtual_off_hand_hit_and_ailment_damage_+%_from_weapon_type + /// + VirtualOffHandHitAndAilmentDamagePctFromWeaponType = 11695, + + /// + /// attack_skills_damage_+%_while_dual_wielding + /// + AttackSkillsDamagePctWhileDualWielding = 11696, + + /// + /// attack_skills_damage_+%_while_holding_shield + /// + AttackSkillsDamagePctWhileHoldingShield = 11697, + + /// + /// damage_+%_while_wielding_wand + /// + DamagePctWhileWieldingWand = 11698, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantAttackSpeedPct = 11699, + + /// + /// local_affliction_jewel_small_nodes_grant_base_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseCastSpeedPct = 11700, + + /// + /// local_affliction_jewel_small_nodes_grant_damage_over_time_+% + /// + LocalAfflictionJewelSmallNodesGrantDamageOverTimePct = 11701, + + /// + /// local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseElementalStatusAilmentDurationPct = 11702, + + /// + /// local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseAuraAreaOfEffectPct = 11703, + + /// + /// local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantCurseAreaOfEffectPct = 11704, + + /// + /// local_affliction_jewel_small_nodes_grant_warcry_duration_+% + /// + LocalAfflictionJewelSmallNodesGrantWarcryDurationPct = 11705, + + /// + /// local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+ + /// + LocalAfflictionJewelSmallNodesGrantBaseCriticalStrikeMultiplier = 11706, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_% + /// + LocalAfflictionJewelSmallNodesGrantMinionLifeRegenerationRatePerMinutePct = 11707, + + /// + /// local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseSkillAreaOfEffectPct = 11708, + + /// + /// local_affliction_jewel_small_nodes_grant_base_projectile_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseProjectileSpeedPct = 11709, + + /// + /// local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantTrapAndMineThrowingSpeedPct = 11710, + + /// + /// local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantSummonTotemCastSpeedPct = 11711, + + /// + /// local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+% + /// + LocalAfflictionJewelSmallNodesGrantSigilTargetSearchRangePct = 11712, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChannellingSkills = 11713, + + /// + /// local_affliction_jewel_small_nodes_grant_charges_gained_+% + /// + LocalAfflictionJewelSmallNodesGrantChargesGainedPct = 11714, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithFireSkills = 11715, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithColdSkills = 11716, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithLightningSkills = 11717, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChaosSkills = 11718, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithPhysicalSkills = 11719, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithElementalSkills = 11720, + + /// + /// local_display_nearby_enemy_elemental_damage_taken_+% + /// + LocalDisplayNearbyEnemyElementalDamageTakenPct = 11721, + + /// + /// active_skill_minion_attack_speed_+%_final + /// + ActiveSkillMinionAttackSpeedPctFinal = 11722, + + /// + /// attack_speed_+%_final_for_minions + /// + AttackSpeedPctFinalForMinions = 11723, + + /// + /// curse_effect_+%_final_vs_players + /// + CurseEffectPctFinalVsPlayers = 11724, + + /// + /// blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated + /// + BladeBurstAreaOfEffectPctFinalPerBladeVortexBladeDetonated = 11725, + + /// + /// map_monsters_all_damage_can_shock + /// + MapMonstersAllDamageCanShock = 11726, + + /// + /// map_monsters_all_damage_can_chill + /// + MapMonstersAllDamageCanChill = 11727, + + /// + /// map_monsters_chance_to_inflict_brittle_% + /// + MapMonstersChanceToInflictBrittlePct = 11728, + + /// + /// map_monsters_chance_to_inflict_sapped_% + /// + MapMonstersChanceToInflictSappedPct = 11729, + + /// + /// map_monsters_chance_to_scorch_% + /// + MapMonstersChanceToScorchPct = 11730, + + /// + /// map_monsters_chance_to_impale_% + /// + MapMonstersChanceToImpalePct = 11731, + + /// + /// map_monsters_remove_%_of_mana_on_hit + /// + MapMonstersRemovePctOfManaOnHit = 11732, + + /// + /// remove_%_of_mana_on_hit + /// + RemovePctOfManaOnHit = 11733, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11734, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAt150PctValue = 11735, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValueWhileWieldingWand = 11736, + + /// + /// active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value + /// + ActiveSkillAdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11737, + + /// + /// skill_effect_duration_+%_with_non_curse_aura_skills + /// + SkillEffectDurationPctWithNonCurseAuraSkills = 11738, + + /// + /// projectile_attack_damage_+%_with_claw_or_dagger + /// + ProjectileAttackDamagePctWithClawOrDagger = 11739, + + /// + /// damage_taken_+%_final_from_affliction_depth + /// + DamageTakenPctFinalFromAfflictionDepth = 11740, + + /// + /// damage_taken_+%_final_from_affliction_split + /// + DamageTakenPctFinalFromAfflictionSplit = 11741, + + /// + /// leap_slam_minimum_distance + /// + LeapSlamMinimumDistance = 11742, + + /// + /// virtual_support_anticipation_charge_gain_interval_ms + /// + VirtualSupportAnticipationChargeGainIntervalMs = 11743, + + /// + /// support_anticipation_charge_gain_frequency_+% + /// + SupportAnticipationChargeGainFrequencyPct = 11744, + + /// + /// support_added_cooldown_count_if_not_instant + /// + SupportAddedCooldownCountIfNotInstant = 11745, + + /// + /// manaweave_cost_equals_%_unreserved_mana + /// + ManaweaveCostEqualsPctUnreservedMana = 11746, + + /// + /// manaweave_added_lightning_damage_%_cost_if_payable + /// + ManaweaveAddedLightningDamagePctCostIfPayable = 11747, + + /// + /// minion_attack_and_cast_speed_+% + /// + MinionAttackAndCastSpeedPct = 11748, + + /// + /// minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald + /// + MinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11749, + + /// + /// attack_and_cast_speed_+%_while_affected_by_a_herald + /// + AttackAndCastSpeedPctWhileAffectedByAHerald = 11750, + + /// + /// local_display_socketed_gems_supported_by_level_x_second_wind + /// + LocalDisplaySocketedGemsSupportedByLevelXSecondWind = 11751, + + /// + /// local_display_socketed_gems_supported_by_level_x_archmage + /// + LocalDisplaySocketedGemsSupportedByLevelXArchmage = 11752, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPct = 11753, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWhileAffectedByAHerald = 11754, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald + /// + LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11755, + + /// + /// minion_aggro_radius_+% + /// + MinionAggroRadiusPct = 11756, + + /// + /// map_monsters_maim_on_hit_%_chance + /// + MapMonstersMaimOnHitPctChance = 11757, + + /// + /// map_monsters_spells_chance_to_hinder_on_hit_%_chance + /// + MapMonstersSpellsChanceToHinderOnHitPctChance = 11758, + + /// + /// map_monsters_remove_enemy_flask_charge_on_hit_%_chance + /// + MapMonstersRemoveEnemyFlaskChargeOnHitPctChance = 11759, + + /// + /// remove_enemy_flask_charge_on_hit_%_chance + /// + RemoveEnemyFlaskChargeOnHitPctChance = 11760, + + /// + /// map_player_non_damaging_ailment_effect_+% + /// + MapPlayerNonDamagingAilmentEffectPct = 11761, + + /// + /// map_monsters_reduce_enemy_lightning_resistance_% + /// + MapMonstersReduceEnemyLightningResistancePct = 11762, + + /// + /// map_monsters_reduce_enemy_cold_resistance_% + /// + MapMonstersReduceEnemyColdResistancePct = 11763, + + /// + /// map_monsters_reduce_enemy_fire_resistance_% + /// + MapMonstersReduceEnemyFireResistancePct = 11764, + + /// + /// map_monsters_reduce_enemy_chaos_resistance_% + /// + MapMonstersReduceEnemyChaosResistancePct = 11765, + + /// + /// map_monsters_enemy_phys_reduction_%_penalty_vs_hit + /// + MapMonstersEnemyPhysReductionPctPenaltyVsHit = 11766, + + /// + /// minimum_movement_velocity_+%_excluding_stance + /// + MinimumMovementVelocityPctExcludingStance = 11767, + + /// + /// is_snipe_default_projectile + /// + IsSnipeDefaultProjectile = 11768, + + /// + /// assailum_socketed_gems_damage_+%_final + /// + AssailumSocketedGemsDamagePctFinal = 11769, + + /// + /// local_display_assailum_socketed_gems_damage_+%_final + /// + LocalDisplayAssailumSocketedGemsDamagePctFinal = 11770, + + /// + /// cannot_drop_splinters + /// + CannotDropSplinters = 11771, + + /// + /// is_warband_monster + /// + IsWarbandMonster = 11772, + + /// + /// is_elder_portal_monster + /// + IsElderPortalMonster = 11773, + + /// + /// is_map_boss_underling_monster + /// + IsMapBossUnderlingMonster = 11774, + + /// + /// is_affliction_wild_boss + /// + IsAfflictionWildBoss = 11775, + + /// + /// all_and_max_elemental_resist_+_while_affected_by_non_vaal_guard_skill + /// + AllAndMaxElementalResistWhileAffectedByNonVaalGuardSkill = 11776, + + /// + /// keystone_reactionary_damage_taken_+%_final_if_guard_buff_lost_recently + /// + KeystoneReactionaryDamageTakenPctFinalIfGuardBuffLostRecently = 11777, + + /// + /// summoned_monsters_no_drops_or_experience_if_parent_no_drops_or_experience + /// + SummonedMonstersNoDropsOrExperienceIfParentNoDropsOrExperience = 11778, + + /// + /// skill_travel_distance_+% + /// + SkillTravelDistancePct = 11779, + + /// + /// skill_maximum_travel_distance_+% + /// + SkillMaximumTravelDistancePct = 11780, + + /// + /// map_monster_non_damaging_ailment_effect_+%_on_self + /// + MapMonsterNonDamagingAilmentEffectPctOnSelf = 11781, + + /// + /// map_hidden_pack_size_+% + /// + MapHiddenPackSizePct = 11782, + + /// + /// non_damaging_ailment_effect_+%_on_self + /// + NonDamagingAilmentEffectPctOnSelf = 11783, + + /// + /// affected_by_glorious_madness + /// + AffectedByGloriousMadness = 11784, + + /// + /// embrace_madness_reactivation_cooldown + /// + EmbraceMadnessReactivationCooldown = 11785, + + /// + /// local_display_grants_skill_embrace_madness_level + /// + LocalDisplayGrantsSkillEmbraceMadnessLevel = 11786, + + /// + /// explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_% + /// + ExplodeEnemiesFor25PctLifeAsChaosOnKillWhileAffectedByGloriousMadnessChancePct = 11787, + + /// + /// all_damage_can_poison_while_affected_by_glorious_madness + /// + AllDamageCanPoisonWhileAffectedByGloriousMadness = 11788, + + /// + /// fortify_effect_on_self_while_affected_by_glorious_madness_+% + /// + FortifyEffectOnSelfWhileAffectedByGloriousMadnessPct = 11789, + + /// + /// chance_to_deal_double_damage_while_affected_by_glorious_madness_% + /// + ChanceToDealDoubleDamageWhileAffectedByGloriousMadnessPct = 11790, + + /// + /// gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness + /// + GainChillingShockingIgnitingConfluxWhileAffectedByGloriousMadness = 11791, + + /// + /// immune_to_elemental_status_ailments_while_affected_by_glorious_madness + /// + ImmuneToElementalStatusAilmentsWhileAffectedByGloriousMadness = 11792, + + /// + /// virtual_has_chilling_conflux + /// + VirtualHasChillingConflux = 11793, + + /// + /// virtual_has_shocking_conflux + /// + VirtualHasShockingConflux = 11794, + + /// + /// virtual_has_igniting_conflux + /// + VirtualHasIgnitingConflux = 11795, + + /// + /// keystone_reactionary_damage_taken_+%_final + /// + KeystoneReactionaryDamageTakenPctFinal = 11796, + + /// + /// main_hand_maim_on_hit_% + /// + MainHandMaimOnHitPct = 11797, + + /// + /// off_hand_maim_on_hit_% + /// + OffHandMaimOnHitPct = 11798, + + /// + /// virtual_maim_on_hit_% + /// + VirtualMaimOnHitPct = 11799, + + /// + /// main_hand_maim_on_crit_% + /// + MainHandMaimOnCritPct = 11800, + + /// + /// off_hand_maim_on_crit_% + /// + OffHandMaimOnCritPct = 11801, + + /// + /// virtual_maim_on_crit_% + /// + VirtualMaimOnCritPct = 11802, + + /// + /// cast_speed_for_brand_skills_+% + /// + CastSpeedForBrandSkillsPct = 11803, + + /// + /// blades_left_in_ground_+%_final_if_not_hand_cast + /// + BladesLeftInGroundPctFinalIfNotHandCast = 11804, + + /// + /// keystone_herald_of_doom + /// + KeystoneHeraldOfDoom = 11805, + + /// + /// attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana + /// + AttackSkillsHaveAddedLightningDamageEqualToPctOfMaximumMana = 11806, + + /// + /// lose_%_of_mana_when_you_use_an_attack_skill + /// + LosePctOfManaWhenYouUseAnAttackSkill = 11807, + + /// + /// is_incursion_temple_architect + /// + IsIncursionTempleArchitect = 11808, + + /// + /// is_incursion_temple_boss + /// + IsIncursionTempleBoss = 11809, + + /// + /// map_architects_drops_additional_map_currency + /// + MapArchitectsDropsAdditionalMapCurrency = 11810, + + /// + /// map_incursion_spawn_large_caustic_plants + /// + MapIncursionSpawnLargeCausticPlants = 11811, + + /// + /// map_incursion_spawn_parasitic_caustic_plants + /// + MapIncursionSpawnParasiticCausticPlants = 11812, + + /// + /// local_display_socketed_gems_supported_by_level_x_snipe + /// + LocalDisplaySocketedGemsSupportedByLevelXSnipe = 11813, + + /// + /// mana_cost + /// + ManaCost = 11814, + + /// + /// use_mana_cost_from_stat + /// + UseManaCostFromStat = 11815, + + /// + /// base_mana_cost + /// + BaseManaCost = 11816, + + /// + /// base_mana_cost_override + /// + BaseManaCostOverride = 11817, + + /// + /// combined_mana_multiplier_permyriad + /// + CombinedManaMultiplierPermyriad = 11818, + + /// + /// manaweave_added_lightning_damage_%_cost + /// + ManaweaveAddedLightningDamagePctCost = 11819, + + /// + /// map_incursion_tormented_spirit_random_possess + /// + MapIncursionTormentedSpiritRandomPossess = 11820, + + /// + /// local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect + /// + LocalUniqueFlaskVaalSkillCriticalStrikeChancePctDuringFlaskEffect = 11821, + + /// + /// local_flask_consumes_max_charges_on_use + /// + LocalFlaskConsumesMaxChargesOnUse = 11822, + + /// + /// local_flask_gain_charges_consumed_as_vaal_souls_on_use + /// + LocalFlaskGainChargesConsumedAsVaalSoulsOnUse = 11823, + + /// + /// arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second + /// + ArcaneCloakGainPctOfConsumedManaAsLifeRegeneratedPerSecond = 11824, + + /// + /// snipe_triggered_skill_ailment_damage_+%_final_per_stage_conditional + /// + SnipeTriggeredSkillAilmentDamagePctFinalPerStageConditional = 11825, + + /// + /// snipe_triggered_skill_ailment_damage_+%_final_per_stage + /// + SnipeTriggeredSkillAilmentDamagePctFinalPerStage = 11826, + + /// + /// is_snipe_default_projectile_2 + /// + IsSnipeDefaultProjectile2 = 11827, + + /// + /// keystone_herald_damage_over_time_+%_final + /// + KeystoneHeraldDamageOverTimePctFinal = 11828, + + /// + /// keystone_herald_minion_damage_+%_final + /// + KeystoneHeraldMinionDamagePctFinal = 11829, + + /// + /// map_incursion_boss_possessed_by_tormented_experimenter + /// + MapIncursionBossPossessedByTormentedExperimenter = 11830, + + /// + /// map_incursion_boss_possessed_by_tormented_blasphemer + /// + MapIncursionBossPossessedByTormentedBlasphemer = 11831, + + /// + /// map_incursion_boss_possessed_by_tormented_necromancer + /// + MapIncursionBossPossessedByTormentedNecromancer = 11832, + + /// + /// map_incursion_boss_possessed_by_tormented_arsonist + /// + MapIncursionBossPossessedByTormentedArsonist = 11833, + + /// + /// map_incursion_boss_possessed_by_tormented_thief + /// + MapIncursionBossPossessedByTormentedThief = 11834, + + /// + /// map_incursion_boss_possessed_by_tormented_mutilator + /// + MapIncursionBossPossessedByTormentedMutilator = 11835, + + /// + /// map_incursion_boss_possessed_by_tormented_charlatan + /// + MapIncursionBossPossessedByTormentedCharlatan = 11836, + + /// + /// map_incursion_boss_possessed_by_tormented_cannibal + /// + MapIncursionBossPossessedByTormentedCannibal = 11837, + + /// + /// map_incursion_boss_possessed_by_tormented_poisoner + /// + MapIncursionBossPossessedByTormentedPoisoner = 11838, + + /// + /// map_incursion_boss_possessed_by_tormented_corrupter + /// + MapIncursionBossPossessedByTormentedCorrupter = 11839, + + /// + /// map_incursion_boss_possessed_by_tormented_thug + /// + MapIncursionBossPossessedByTormentedThug = 11840, + + /// + /// map_incursion_boss_possessed_by_tormented_rogue + /// + MapIncursionBossPossessedByTormentedRogue = 11841, + + /// + /// map_incursion_boss_possessed_by_tormented_fisherman + /// + MapIncursionBossPossessedByTormentedFisherman = 11842, + + /// + /// map_incursion_boss_possessed_by_tormented_librarian + /// + MapIncursionBossPossessedByTormentedLibrarian = 11843, + + /// + /// map_incursion_boss_possessed_by_tormented_cutthroat + /// + MapIncursionBossPossessedByTormentedCutthroat = 11844, + + /// + /// map_incursion_boss_possessed_by_tormented_spy + /// + MapIncursionBossPossessedByTormentedSpy = 11845, + + /// + /// map_incursion_boss_possessed_by_tormented_martyr + /// + MapIncursionBossPossessedByTormentedMartyr = 11846, + + /// + /// map_incursion_boss_possessed_by_tormented_embezzler + /// + MapIncursionBossPossessedByTormentedEmbezzler = 11847, + + /// + /// map_incursion_boss_possessed_by_tormented_counterfeiter + /// + MapIncursionBossPossessedByTormentedCounterfeiter = 11848, + + /// + /// map_incursion_boss_possessed_by_tormented_warlord + /// + MapIncursionBossPossessedByTormentedWarlord = 11849, + + /// + /// map_incursion_boss_possessed_by_tormented_freezer + /// + MapIncursionBossPossessedByTormentedFreezer = 11850, + + /// + /// map_incursion_boss_possessed_by_tormented_smuggler + /// + MapIncursionBossPossessedByTormentedSmuggler = 11851, + + /// + /// minion_critical_strike_chance_+% + /// + MinionCriticalStrikeChancePct = 11852, + + /// + /// theoretical_number_of_forks + /// + TheoreticalNumberOfForks = 11853, + + /// + /// kinetic_bolt_number_of_zig_zags + /// + KineticBoltNumberOfZigZags = 11854, + + /// + /// kinetic_bolt_forks_apply_to_zig_zags + /// + KineticBoltForksApplyToZigZags = 11855, + + /// + /// map_simulacrum_reward_level_+ + /// + MapSimulacrumRewardLevel = 11856, + + /// + /// map_monsters_accuracy_rating_+%_hidden + /// + MapMonstersAccuracyRatingPctHidden = 11857, + + /// + /// projectile_spiral_end_on_death + /// + ProjectileSpiralEndOnDeath = 11858, + + /// + /// is_warband_leader + /// + IsWarbandLeader = 11859, + + /// + /// bladefall_volleys_needed_per_vestige_blade + /// + BladefallVolleysNeededPerVestigeBlade = 11860, + + /// + /// ethereal_knives_projectiles_needed_per_vestige_blade + /// + EtherealKnivesProjectilesNeededPerVestigeBlade = 11861, + + /// + /// kinetic_bolt_projectile_speed_+% + /// + KineticBoltProjectileSpeedPct = 11862, + + /// + /// kinetic_bolt_attack_speed_+% + /// + KineticBoltAttackSpeedPct = 11863, + + /// + /// blade_blast_skill_area_of_effect_+% + /// + BladeBlastSkillAreaOfEffectPct = 11864, + + /// + /// blade_blast_trigger_detonation_area_of_effect_+% + /// + BladeBlastTriggerDetonationAreaOfEffectPct = 11865, + + /// + /// blade_blase_damage_+% + /// + BladeBlaseDamagePct = 11866, + + /// + /// stormbind_skill_area_of_effect_+% + /// + StormbindSkillAreaOfEffectPct = 11867, + + /// + /// stormbind_skill_damage_+% + /// + StormbindSkillDamagePct = 11868, + + /// + /// rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown + /// + RuneBlastTeleportsToDetonatedRuneWith150MsCooldown = 11869, + + /// + /// rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown + /// + RuneBlastTeleportsToDetonatedRuneWith100MsCooldown = 11870, + + /// + /// spellslinger_mana_reservation_+% + /// + SpellslingerManaReservationPct = 11871, + + /// + /// spellslinger_cooldown_duration_+% + /// + SpellslingerCooldownDurationPct = 11872, + + /// + /// display_additional_projectile_per_4_mines_in_detonation_sequence + /// + DisplayAdditionalProjectilePer4MinesInDetonationSequence = 11873, + + /// + /// life_regeneration_rate_per_minute_%_while_stationary + /// + LifeRegenerationRatePerMinutePctWhileStationary = 11874, + + /// + /// spellslinger_mana_reservation + /// + SpellslingerManaReservation = 11875, + + /// + /// additional_insanity_effects_while_delirious + /// + AdditionalInsanityEffectsWhileDelirious = 11876, + + /// + /// local_affliction_jewel_display_small_nodes_grant_nothing + /// + LocalAfflictionJewelDisplaySmallNodesGrantNothing = 11877, + + /// + /// map_incursion_tormented_spirit_random_possess_2 + /// + MapIncursionTormentedSpiritRandomPossess2 = 11878, + + /// + /// is_betrayal_target + /// + IsBetrayalTarget = 11879, + + /// + /// is_incursion_architect + /// + IsIncursionArchitect = 11880, + + /// + /// is_bestiary_red_beast + /// + IsBestiaryRedBeast = 11881, + + /// + /// glorious_madness_timer_ms + /// + GloriousMadnessTimerMs = 11882, + + /// + /// embrace_madness_amount_of_cooldown_to_gain_ms + /// + EmbraceMadnessAmountOfCooldownToGainMs = 11883, + + /// + /// map_death_and_taxes_boss_drops_additional_currency + /// + MapDeathAndTaxesBossDropsAdditionalCurrency = 11884, + + /// + /// meta_skill_mana_reservation_override_% + /// + MetaSkillManaReservationOverridePct = 11885, + + /// + /// mana_reservation + /// + ManaReservation = 11886, + + /// + /// use_mana_reservation_from_stat + /// + UseManaReservationFromStat = 11887, + + /// + /// keystone_veterans_awareness + /// + KeystoneVeteransAwareness = 11888, + + /// + /// monster_affliction_depth + /// + MonsterAfflictionDepth = 11889, + + /// + /// animate_weapon_art_variation + /// + AnimateWeaponArtVariation = 11890, } } From faa1fad7426fd60909618141d287414528c49be9 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 11:38:49 -0400 Subject: [PATCH 11/81] Added full Influence support for items --- Core/PoEMemory/Components/Base.cs | 35 +++++++++++++++++------------ Core/Shared/Enums/InfluenceFlags.cs | 15 +++++++++++++ 2 files changed, 36 insertions(+), 14 deletions(-) create mode 100644 Core/Shared/Enums/InfluenceFlags.cs diff --git a/Core/PoEMemory/Components/Base.cs b/Core/PoEMemory/Components/Base.cs index 775c1e54..02506bcb 100644 --- a/Core/PoEMemory/Components/Base.cs +++ b/Core/PoEMemory/Components/Base.cs @@ -1,5 +1,6 @@ using ExileCore.Shared.Helpers; using GameOffsets.Native; +using ExileCore.Shared.Enums; namespace ExileCore.PoEMemory.Components { @@ -9,18 +10,24 @@ public class Base : Component private string _name; public string Name => _name ?? (_name = M.Read(Address + 0x10, 0x18).ToString(M)); public int ItemCellsSizeX => M.Read(Address + 0x10, 0x10); - public int ItemCellsSizeY => M.Read(Address + 0x10, 0x14); - public bool isCorrupted => M.Read(Address + 0xD8) == 1; - public bool isShaper => M.Read(Address + 0xD9) == 1; - public bool isElder => M.Read(Address + 0xDA) == 1; - - // public bool isFractured => M.Read(Address + 0x98) == 0; - - // 0x8 - link to base item - // +0x10 - Name - // +0x30 - Use hint - // +0x50 - Link to Data/BaseItemTypes.dat - - // 0xC (+4) fileref to visual identity - } + public int ItemCellsSizeY => M.Read(Address + 0x10, 0x14); + private Influence InfluenceFlag => (Influence)M.Read(Address + 0xD8); + public bool isShaper => (InfluenceFlag & Influence.Shaper) == Influence.Shaper; + public bool isElder => (InfluenceFlag & Influence.Elder) == Influence.Elder; + public bool isCrusader => (InfluenceFlag & Influence.Crusader) == Influence.Crusader; + public bool isHunter => (InfluenceFlag & Influence.Hunter) == Influence.Hunter; + public bool isRedeemer => (InfluenceFlag & Influence.Redeemer) == Influence.Redeemer; + public bool isWarlord => (InfluenceFlag & Influence.Warlord) == Influence.Warlord; + public bool isCorrupted => M.Read(Address + 0xDA) == 1; + public bool isSynthesized => M.Read(Address + 0xDE) == 1; + + // public bool isFractured => M.Read(Address + 0x98) == 0; + + // 0x8 - link to base item + // +0x10 - Name + // +0x30 - Use hint + // +0x50 - Link to Data/BaseItemTypes.dat + + // 0xC (+4) fileref to visual identity + } } diff --git a/Core/Shared/Enums/InfluenceFlags.cs b/Core/Shared/Enums/InfluenceFlags.cs new file mode 100644 index 00000000..178153bb --- /dev/null +++ b/Core/Shared/Enums/InfluenceFlags.cs @@ -0,0 +1,15 @@ +using System; + +namespace ExileCore.Shared.Enums +{ + [Flags] + public enum Influence : byte + { + Shaper = 1, + Elder = 2, + Crusader = 4, + Redeemer = 8, + Hunter = 16, + Warlord = 32, + } +} From dc139a3dc57bbd5d430e868cc23fdfd760fda32e Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 11:39:30 -0400 Subject: [PATCH 12/81] Updated Actor IsMoving to be True when Cyclone is being used. --- Core/PoEMemory/Components/Actor.cs | 87 +++++++++++++++++------------- 1 file changed, 51 insertions(+), 36 deletions(-) diff --git a/Core/PoEMemory/Components/Actor.cs b/Core/PoEMemory/Components/Actor.cs index 1d253f19..b5b7f0ae 100644 --- a/Core/PoEMemory/Components/Actor.cs +++ b/Core/PoEMemory/Components/Actor.cs @@ -6,29 +6,33 @@ using SharpDX; namespace ExileCore.PoEMemory.Components -{ - public class Actor : Component - { - private readonly FrameCache cacheValue; - - public Actor() - { - cacheValue = new FrameCache(() => M.Read(Address)); - } - - private ActorComponentOffsets Struct => cacheValue.Value; - /// - /// Standing still = 2048 =bit 11 set - /// running = 2178 = bit 11 & 7 - /// Maybe Bit-field : Bit 7 set = running - /// - public short ActionId => Address != 0 ? Struct.ActionId : (short) 0; - public ActionFlags Action => Address != 0 ? (ActionFlags) Struct.ActionId : ActionFlags.None; - public bool isMoving => (Action & ActionFlags.Moving) > 0; - public bool isAttacking => (Action & ActionFlags.UsingAbility) > 0; - public int AnimationId => Address != 0 ? Struct.AnimationId : 0; - public AnimationE Animation => Address != 0 ? (AnimationE) Struct.AnimationId : AnimationE.Idle; - /*public bool HasMinion(Entity entity) { +{ + public class Actor : Component + { + private readonly FrameCache cacheValue; + + public Actor() + { + cacheValue = new FrameCache(() => M.Read(Address)); + } + + public List MovementSkillIDs = new List() + { + 33793, // Cyclone + }; + + private ActorComponentOffsets Struct => cacheValue.Value; + /// + /// Standing still = 2048 =bit 11 set + /// running = 2178 = bit 11 & 7 + /// Maybe Bit-field : Bit 7 set = running + /// + public short ActionId => Address != 0 ? Struct.ActionId : (short)0; + public ActionFlags Action => Address != 0 ? (ActionFlags)Struct.ActionId : ActionFlags.None; + public bool isAttacking => (Action & ActionFlags.UsingAbility) > 0; + public int AnimationId => Address != 0 ? Struct.AnimationId : 0; + public AnimationE Animation => Address != 0 ? (AnimationE)Struct.AnimationId : AnimationE.Idle; + /*public bool HasMinion(Entity entity) { if (Address == 0) return false; var num = Struct.HasMinionArray.First; @@ -40,19 +44,30 @@ public Actor() } return false; - }*/ - - //public float TimeSinseLastMove => -M.Read(Address + 0x110); - //public float TimeSinseLastAction => -M.Read(Address + 0x114); - /// - /// Currently performed action information. - /// WARNING: This memory location changes a lot, - /// put try catch if you are accessing this variable and the fields in it. - /// - public ActionWrapper CurrentAction => Struct.ActionPtr > 0 ? GetObject(Struct.ActionPtr) : null; - - // e.g minions, mines - public long DeployedObjectsCount => Struct.DeployedObjectArray.Size / 8; + }*/ + + //public float TimeSinseLastMove => -M.Read(Address + 0x110); + //public float TimeSinseLastAction => -M.Read(Address + 0x114); + /// + /// Currently performed action information. + /// WARNING: This memory location changes a lot, + /// put try catch if you are accessing this variable and the fields in it. + /// + public ActionWrapper CurrentAction => Struct.ActionPtr > 0 ? GetObject(Struct.ActionPtr) : null; + public bool isMoving + { + get + { + if ((Action & ActionFlags.Moving) > 0) return true; + if (CurrentAction == null) return false; + if (CurrentAction.Skill == null) return false; + if (MovementSkillIDs.Contains(CurrentAction.Skill.Id)) return true; + return false; + } + } + + // e.g minions, mines + public long DeployedObjectsCount => Struct.DeployedObjectArray.Size / 8; public List DeployedObjects { From 4b24db03dd76d53ebcbdfcffab4b29e4b571150b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 11:39:58 -0400 Subject: [PATCH 13/81] Added missing Influence file to project --- Core/Core.csproj | 1201 +++++++++++++++++++++++----------------------- 1 file changed, 601 insertions(+), 600 deletions(-) diff --git a/Core/Core.csproj b/Core/Core.csproj index 66f8c629..b10693a0 100644 --- a/Core/Core.csproj +++ b/Core/Core.csproj @@ -1,607 +1,608 @@ - - - - - - - - Debug - AnyCPU - {5539D732-34A7-44AB-9E28-116C3429B12A} - Library - Properties - ExileCore - ExileCore - v4.8 - 512 - default - - - - - x64 - true - full - false - ..\..\PoeHelper\ - DEBUG;TRACE - prompt - 4 - true - - - x64 - pdbonly - true - ..\..\PoeHelper\ - TRACE - prompt - 4 - true - - - - ..\packages\Antlr4.Runtime.4.6.6\lib\net45\Antlr4.Runtime.dll - True - - - ..\deps\ImGui.NET.dll - True - - - ..\packages\InlineIL.Fody.1.3.2\lib\net452\InlineIL.dll - True - - - ..\packages\LinqFaster.1.0.0\lib\net461\JM.LinqFaster.dll - True - - - ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll - True - - - - ..\packages\morelinq.3.2.0\lib\net451\MoreLinq.dll - True - - - - ..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll - True - - - ..\packages\PoeFilterParser.1.0.44\lib\net471\PoeFilterParser.dll - - - ..\packages\ProcessMemoryUtilities.Net.1.2.0\lib\net48\ProcessMemoryUtilities.dll - True - - - ..\packages\Serilog.2.8.0\lib\net46\Serilog.dll - True - - - ..\packages\Serilog.Sinks.File.4.0.0\lib\net45\Serilog.Sinks.File.dll - True - - - ..\packages\Serilog.Sinks.RollingFile.3.3.0\lib\net45\Serilog.Sinks.RollingFile.dll - True - - - ..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll - True - - - ..\packages\SharpDX.D3DCompiler.4.2.0\lib\net45\SharpDX.D3DCompiler.dll - True - - - ..\packages\SharpDX.Desktop.4.2.0\lib\net45\SharpDX.Desktop.dll - True - - - ..\packages\SharpDX.Direct2D1.4.2.0\lib\net45\SharpDX.Direct2D1.dll - True - - - ..\packages\SharpDX.Direct3D11.4.2.0\lib\net45\SharpDX.Direct3D11.dll - True - - - ..\packages\SharpDX.DXGI.4.2.0\lib\net45\SharpDX.DXGI.dll - True - - - ..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll - True - - - ..\packages\SharpDX.XAudio2.4.2.0\lib\net45\SharpDX.XAudio2.dll - True - - - - ..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll - True - - - - - - - ..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll - True - - - - ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - True - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll - True - - - - C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Runtime.Serialization.dll - True - - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PreserveNewest - - - - - {38084bc9-079d-487e-b774-d2f407dc8389} - GameOffsets - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - + + + + + + + + Debug + AnyCPU + {5539D732-34A7-44AB-9E28-116C3429B12A} + Library + Properties + ExileCore + ExileCore + v4.8 + 512 + default + + + + + x64 + true + full + false + ..\..\PoeHelper\ + DEBUG;TRACE + prompt + 4 + true + + + x64 + pdbonly + true + ..\..\PoeHelper\ + TRACE + prompt + 4 + true + + + + ..\packages\Antlr4.Runtime.4.6.6\lib\net45\Antlr4.Runtime.dll + True + + + ..\deps\ImGui.NET.dll + True + + + ..\packages\InlineIL.Fody.1.3.2\lib\net452\InlineIL.dll + True + + + ..\packages\LinqFaster.1.0.0\lib\net461\JM.LinqFaster.dll + True + + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + True + + + + ..\packages\morelinq.3.2.0\lib\net451\MoreLinq.dll + True + + + + ..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll + True + + + ..\packages\PoeFilterParser.1.0.44\lib\net471\PoeFilterParser.dll + + + ..\packages\ProcessMemoryUtilities.Net.1.2.0\lib\net48\ProcessMemoryUtilities.dll + True + + + ..\packages\Serilog.2.8.0\lib\net46\Serilog.dll + True + + + ..\packages\Serilog.Sinks.File.4.0.0\lib\net45\Serilog.Sinks.File.dll + True + + + ..\packages\Serilog.Sinks.RollingFile.3.3.0\lib\net45\Serilog.Sinks.RollingFile.dll + True + + + ..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll + True + + + ..\packages\SharpDX.D3DCompiler.4.2.0\lib\net45\SharpDX.D3DCompiler.dll + True + + + ..\packages\SharpDX.Desktop.4.2.0\lib\net45\SharpDX.Desktop.dll + True + + + ..\packages\SharpDX.Direct2D1.4.2.0\lib\net45\SharpDX.Direct2D1.dll + True + + + ..\packages\SharpDX.Direct3D11.4.2.0\lib\net45\SharpDX.Direct3D11.dll + True + + + ..\packages\SharpDX.DXGI.4.2.0\lib\net45\SharpDX.DXGI.dll + True + + + ..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll + True + + + ..\packages\SharpDX.XAudio2.4.2.0\lib\net45\SharpDX.XAudio2.dll + True + + + + ..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll + True + + + + + + + ..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + + ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll + True + + + + + ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + + + + C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Runtime.Serialization.dll + True + + + + ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + + + {38084bc9-079d-487e-b774-d2f407dc8389} + GameOffsets + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + + + --> \ No newline at end of file From 775a8057293c6aff08028f8bbd8e13f856a7a6c1 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 12:42:40 -0400 Subject: [PATCH 14/81] Added Plugin Submodule tracking --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d642eb7f..bddafd50 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ *.suo *.user *.sln.docstates -Plugins/ # Build results [Dd]ebug/ [Rr]elease/ @@ -216,3 +215,4 @@ project.lock.json ##### # End of core ignore list, below put you custom 'per project' settings (patterns or path) ##### + From 0b9487e7b043238341ce01f52a7d28846e4edac5 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 12:44:58 -0400 Subject: [PATCH 15/81] Added HealthBars submodule --- .gitmodules | 4 ++++ Plugins/Source/HealthBars | 1 + 2 files changed, 5 insertions(+) create mode 100644 .gitmodules create mode 160000 Plugins/Source/HealthBars diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..017bd545 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "Plugins/Source/HealthBars"] + path = Plugins/Source/HealthBars + url = https://github.com/TehCheat/HealthBars + branch = master diff --git a/Plugins/Source/HealthBars b/Plugins/Source/HealthBars new file mode 160000 index 00000000..66443287 --- /dev/null +++ b/Plugins/Source/HealthBars @@ -0,0 +1 @@ +Subproject commit 66443287ce96fe9a3576a87cf59e9bf5ca24f329 From ba8766d74f969075a5133a15e8d90ef2a1e7f6d0 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 26 Mar 2020 13:12:52 -0400 Subject: [PATCH 16/81] Added BuffUtil, FullRareSetManager, IconsBuilder, MapsExchange, MineDetonator, and XpBar as submodules --- .gitmodules | 24 ++++++++++++++++++++++++ Plugins/Source/BuffUtil | 1 + Plugins/Source/FullRareSetManager | 1 + Plugins/Source/IconsBuilder | 1 + Plugins/Source/MapsExchange | 1 + Plugins/Source/MineDetonator | 1 + Plugins/Source/XpBar | 1 + 7 files changed, 30 insertions(+) create mode 160000 Plugins/Source/BuffUtil create mode 160000 Plugins/Source/FullRareSetManager create mode 160000 Plugins/Source/IconsBuilder create mode 160000 Plugins/Source/MapsExchange create mode 160000 Plugins/Source/MineDetonator create mode 160000 Plugins/Source/XpBar diff --git a/.gitmodules b/.gitmodules index 017bd545..7092c6d6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,27 @@ path = Plugins/Source/HealthBars url = https://github.com/TehCheat/HealthBars branch = master +[submodule "Plugins/Source/IconsBuilder"] + path = Plugins/Source/IconsBuilder + url = https://github.com/TehCheat/IconsBuilder + branch = master +[submodule "Plugins/Source/FullRareSetManager"] + path = Plugins/Source/FullRareSetManager + url = https://github.com/TehCheat/FullRareSetManager + branch = master +[submodule "Plugins/Source/MineDetonator"] + path = Plugins/Source/MineDetonator + url = https://github.com/TehCheat/MineDetonator + branch = master +[submodule "Plugins/Source/MapsExchange"] + path = Plugins/Source/MapsExchange + url = https://github.com/TehCheat/MapsExchange + branch = master +[submodule "Plugins/Source/BuffUtil"] + path = Plugins/Source/BuffUtil + url = https://github.com/TehCheat/BuffUtil + branch = master +[submodule "Plugins/Source/XpBar"] + path = Plugins/Source/XpBar + url = https://github.com/TehCheat/XpBar + branch = master diff --git a/Plugins/Source/BuffUtil b/Plugins/Source/BuffUtil new file mode 160000 index 00000000..60c302cd --- /dev/null +++ b/Plugins/Source/BuffUtil @@ -0,0 +1 @@ +Subproject commit 60c302cde70eb9265b7441bcd880832c8e5185f1 diff --git a/Plugins/Source/FullRareSetManager b/Plugins/Source/FullRareSetManager new file mode 160000 index 00000000..171bacfe --- /dev/null +++ b/Plugins/Source/FullRareSetManager @@ -0,0 +1 @@ +Subproject commit 171bacfe562f1b892f35e49e38a6cdeb7b0341b9 diff --git a/Plugins/Source/IconsBuilder b/Plugins/Source/IconsBuilder new file mode 160000 index 00000000..b5f33f4f --- /dev/null +++ b/Plugins/Source/IconsBuilder @@ -0,0 +1 @@ +Subproject commit b5f33f4f8754f0faee9afd09029761f10c2adfdb diff --git a/Plugins/Source/MapsExchange b/Plugins/Source/MapsExchange new file mode 160000 index 00000000..38462575 --- /dev/null +++ b/Plugins/Source/MapsExchange @@ -0,0 +1 @@ +Subproject commit 38462575bbd1a14a336c32c21f5cd48a3a5e0ffa diff --git a/Plugins/Source/MineDetonator b/Plugins/Source/MineDetonator new file mode 160000 index 00000000..3c1c96a3 --- /dev/null +++ b/Plugins/Source/MineDetonator @@ -0,0 +1 @@ +Subproject commit 3c1c96a3f8830bc180f5b915f91f22b50afc4079 diff --git a/Plugins/Source/XpBar b/Plugins/Source/XpBar new file mode 160000 index 00000000..1a4ee7df --- /dev/null +++ b/Plugins/Source/XpBar @@ -0,0 +1 @@ +Subproject commit 1a4ee7df99709457b449c198ec2a44f3d3c2b50d From be02366347dd84ab3c72a30f7a780acaf59178fd Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 09:38:48 -0400 Subject: [PATCH 17/81] Added DevTree as submodule --- .gitmodules | 4 ++++ Plugins/Source/DevTree | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/DevTree diff --git a/.gitmodules b/.gitmodules index 7092c6d6..ad5bb9dd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -26,3 +26,7 @@ path = Plugins/Source/XpBar url = https://github.com/TehCheat/XpBar branch = master +[submodule "Plugins/Source/DevTree"] + path = Plugins/Source/DevTree + url = https://github.com/TehCheat/DevTree + branch = master diff --git a/Plugins/Source/DevTree b/Plugins/Source/DevTree new file mode 160000 index 00000000..b63b7181 --- /dev/null +++ b/Plugins/Source/DevTree @@ -0,0 +1 @@ +Subproject commit b63b71814400ebce04ea82aac2670249b6cda853 From bcdb072ac21bbb32eccdc40df5b9deee4b1c125b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 09:54:50 -0400 Subject: [PATCH 18/81] Added AdvancedUberLabLayout as submodule --- .gitmodules | 4 ++++ Plugins/Source/AdvancedUberLabLayout | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/AdvancedUberLabLayout diff --git a/.gitmodules b/.gitmodules index ad5bb9dd..0633699f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -30,3 +30,7 @@ path = Plugins/Source/DevTree url = https://github.com/TehCheat/DevTree branch = master +[submodule "Plugins/Source/AdvancedUberLabLayout"] + path = Plugins/Source/AdvancedUberLabLayout + url = https://github.com/TehCheat/AdvancedUberLabLayout + branch = master diff --git a/Plugins/Source/AdvancedUberLabLayout b/Plugins/Source/AdvancedUberLabLayout new file mode 160000 index 00000000..21555559 --- /dev/null +++ b/Plugins/Source/AdvancedUberLabLayout @@ -0,0 +1 @@ +Subproject commit 215555599bb820063c9ae7f13b03eae4b6f48174 From 21c595617340adf08d13009d3c8aa5c78adee5a8 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 10:21:32 -0400 Subject: [PATCH 19/81] Added AdvancedTooltip submodule --- .gitmodules | 4 ++++ Plugins/Source/AdvancedTooltip | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/AdvancedTooltip diff --git a/.gitmodules b/.gitmodules index 0633699f..ff794c35 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,3 +34,7 @@ path = Plugins/Source/AdvancedUberLabLayout url = https://github.com/TehCheat/AdvancedUberLabLayout branch = master +[submodule "Plugins/Source/AdvancedTooltip"] + path = Plugins/Source/AdvancedTooltip + url = https://github.com/TehCheat/AdvancedTooltip + branch = master diff --git a/Plugins/Source/AdvancedTooltip b/Plugins/Source/AdvancedTooltip new file mode 160000 index 00000000..f69c643e --- /dev/null +++ b/Plugins/Source/AdvancedTooltip @@ -0,0 +1 @@ +Subproject commit f69c643e3d9e97aaf9a60e6b5850f9750ac10d8a From 175243308cc4d18f195f4d7ff0293cb7afc47c72 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 10:21:43 -0400 Subject: [PATCH 20/81] Added BasicFlaskRoutine submodule --- .gitmodules | 4 ++++ Plugins/Source/BasicFlaskRoutine | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/BasicFlaskRoutine diff --git a/.gitmodules b/.gitmodules index ff794c35..4cebea88 100644 --- a/.gitmodules +++ b/.gitmodules @@ -38,3 +38,7 @@ path = Plugins/Source/AdvancedTooltip url = https://github.com/TehCheat/AdvancedTooltip branch = master +[submodule "Plugins/Source/BasicFlaskRoutine"] + path = Plugins/Source/BasicFlaskRoutine + url = https://github.com/TehCheat/BasicFlaskRoutine + branch = master diff --git a/Plugins/Source/BasicFlaskRoutine b/Plugins/Source/BasicFlaskRoutine new file mode 160000 index 00000000..05a58f1c --- /dev/null +++ b/Plugins/Source/BasicFlaskRoutine @@ -0,0 +1 @@ +Subproject commit 05a58f1c168dc7712fa0df14b33ce5a42d16f883 From d69d30384087136ab17925855d7e5c6ef9c4c147 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 10:43:26 -0400 Subject: [PATCH 21/81] Added AutoOpen submodule --- .gitmodules | 4 ++++ Plugins/Source/AutoOpen | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/AutoOpen diff --git a/.gitmodules b/.gitmodules index 4cebea88..2aa98a2b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -42,3 +42,7 @@ path = Plugins/Source/BasicFlaskRoutine url = https://github.com/TehCheat/BasicFlaskRoutine branch = master +[submodule "Plugins/Source/AutoOpen"] + path = Plugins/Source/AutoOpen + url = https://github.com/ravand1990/AutoOpen + branch = master diff --git a/Plugins/Source/AutoOpen b/Plugins/Source/AutoOpen new file mode 160000 index 00000000..71704057 --- /dev/null +++ b/Plugins/Source/AutoOpen @@ -0,0 +1 @@ +Subproject commit 71704057a5dfbf4345e7fb581910e9c6b3f5a269 From fdf87f8c3288bc4631b6243eeca0cef0c7e304c9 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:03:04 -0400 Subject: [PATCH 22/81] Added DPSMeter submodule --- .gitmodules | 4 ++++ Plugins/Source/DPSMeter | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/DPSMeter diff --git a/.gitmodules b/.gitmodules index 2aa98a2b..bfc3172c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,3 +46,7 @@ path = Plugins/Source/AutoOpen url = https://github.com/ravand1990/AutoOpen branch = master +[submodule "Plugins/Source/DPSMeter"] + path = Plugins/Source/DPSMeter + url = https://github.com/TehCheat/DPSMeter + branch = master diff --git a/Plugins/Source/DPSMeter b/Plugins/Source/DPSMeter new file mode 160000 index 00000000..d0fc532d --- /dev/null +++ b/Plugins/Source/DPSMeter @@ -0,0 +1 @@ +Subproject commit d0fc532d69c0ed10df45b38049aa837fdaf396e7 From a4c66c4fed5ae466b6dc57f39329a7b0fab5ffba Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:06:17 -0400 Subject: [PATCH 23/81] Added EliteBar submodule --- .gitmodules | 4 ++++ Plugins/Source/EliteBar | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/EliteBar diff --git a/.gitmodules b/.gitmodules index bfc3172c..92dfd171 100644 --- a/.gitmodules +++ b/.gitmodules @@ -50,3 +50,7 @@ path = Plugins/Source/DPSMeter url = https://github.com/TehCheat/DPSMeter branch = master +[submodule "Plugins/Source/EliteBar"] + path = Plugins/Source/EliteBar + url = https://github.com/TehCheat/EliteBar + branch = master diff --git a/Plugins/Source/EliteBar b/Plugins/Source/EliteBar new file mode 160000 index 00000000..0c7f075b --- /dev/null +++ b/Plugins/Source/EliteBar @@ -0,0 +1 @@ +Subproject commit 0c7f075b5eed5226b59e5d79fdf8d5077efc54f6 From eaa7459b593e97bf6f279d358c4e20153ec0af83 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:26:52 -0400 Subject: [PATCH 24/81] Added ItemAlert submodule --- .gitmodules | 4 ++++ Plugins/Source/ItemAlert | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/ItemAlert diff --git a/.gitmodules b/.gitmodules index 92dfd171..2abedc64 100644 --- a/.gitmodules +++ b/.gitmodules @@ -54,3 +54,7 @@ path = Plugins/Source/EliteBar url = https://github.com/TehCheat/EliteBar branch = master +[submodule "Plugins/Source/ItemAlert"] + path = Plugins/Source/ItemAlert + url = https://github.com/TehCheat/ItemAlert + branch = master diff --git a/Plugins/Source/ItemAlert b/Plugins/Source/ItemAlert new file mode 160000 index 00000000..9e5e932c --- /dev/null +++ b/Plugins/Source/ItemAlert @@ -0,0 +1 @@ +Subproject commit 9e5e932c9e0105a09cef935aa15b8cd32be52b23 From 238fe86b33217a96f258a8c8373efb1afc70ea6b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:35:12 -0400 Subject: [PATCH 25/81] Added KillCounter submodule --- .gitmodules | 4 ++++ Plugins/Source/KillCounter | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/KillCounter diff --git a/.gitmodules b/.gitmodules index 2abedc64..dcca47b6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,3 +58,7 @@ path = Plugins/Source/ItemAlert url = https://github.com/TehCheat/ItemAlert branch = master +[submodule "Plugins/Source/KillCounter"] + path = Plugins/Source/KillCounter + url = https://github.com/TehCheat/KillCounter + branch = master diff --git a/Plugins/Source/KillCounter b/Plugins/Source/KillCounter new file mode 160000 index 00000000..3a9b1401 --- /dev/null +++ b/Plugins/Source/KillCounter @@ -0,0 +1 @@ +Subproject commit 3a9b14017c5439bf7aebe9a5f9fa24013e1ed185 From 0978de35bb095e2787dd7c080dda5065c1576046 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:40:16 -0400 Subject: [PATCH 26/81] Added MinimapIcons submodule --- .gitmodules | 4 ++++ Plugins/Source/MinimapIcons | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/MinimapIcons diff --git a/.gitmodules b/.gitmodules index dcca47b6..96aad0ea 100644 --- a/.gitmodules +++ b/.gitmodules @@ -62,3 +62,7 @@ path = Plugins/Source/KillCounter url = https://github.com/TehCheat/KillCounter branch = master +[submodule "Plugins/Source/MinimapIcons"] + path = Plugins/Source/MinimapIcons + url = https://github.com/TehCheat/MinimapIcons + branch = master diff --git a/Plugins/Source/MinimapIcons b/Plugins/Source/MinimapIcons new file mode 160000 index 00000000..37195437 --- /dev/null +++ b/Plugins/Source/MinimapIcons @@ -0,0 +1 @@ +Subproject commit 37195437788937f1f902bdcd9c2e80d04a60f122 From d374529d5bd074fb71bc70d50655b8d3ae08f451 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:57:55 -0400 Subject: [PATCH 27/81] Added MiscInformation submodule --- .gitmodules | 4 ++++ Plugins/Source/MiscInformation | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/MiscInformation diff --git a/.gitmodules b/.gitmodules index 96aad0ea..c2fdaa34 100644 --- a/.gitmodules +++ b/.gitmodules @@ -66,3 +66,7 @@ path = Plugins/Source/MinimapIcons url = https://github.com/TehCheat/MinimapIcons branch = master +[submodule "Plugins/Source/MiscInformation"] + path = Plugins/Source/MiscInformation + url = https://github.com/TehCheat/MiscInformation + branch = master diff --git a/Plugins/Source/MiscInformation b/Plugins/Source/MiscInformation new file mode 160000 index 00000000..c3e5766c --- /dev/null +++ b/Plugins/Source/MiscInformation @@ -0,0 +1 @@ +Subproject commit c3e5766cea9e346673b02ffd467f8dccf224b779 From 635543c0826709a7fa3bf54644107308bd993976 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 11:58:12 -0400 Subject: [PATCH 28/81] Added PassiveSkillTreePlanter submodule --- .gitmodules | 4 ++++ Plugins/Source/PassiveSkillTreePlanter | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/PassiveSkillTreePlanter diff --git a/.gitmodules b/.gitmodules index c2fdaa34..9827f2ae 100644 --- a/.gitmodules +++ b/.gitmodules @@ -70,3 +70,7 @@ path = Plugins/Source/MiscInformation url = https://github.com/TehCheat/MiscInformation branch = master +[submodule "Plugins/Source/PassiveSkillTreePlanter"] + path = Plugins/Source/PassiveSkillTreePlanter + url = https://github.com/TehCheat/PassiveSkillTreePlanter + branch = master diff --git a/Plugins/Source/PassiveSkillTreePlanter b/Plugins/Source/PassiveSkillTreePlanter new file mode 160000 index 00000000..fb44c5d3 --- /dev/null +++ b/Plugins/Source/PassiveSkillTreePlanter @@ -0,0 +1 @@ +Subproject commit fb44c5d34296ba2008dd32b4ca75933d58e2971b From 03561eac8322022eee69f2cf0cd3635da8e4bdad Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 12:04:18 -0400 Subject: [PATCH 29/81] Added Pickit submodule --- .gitmodules | 4 ++++ Plugins/Source/Pickit | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/Pickit diff --git a/.gitmodules b/.gitmodules index 9827f2ae..3ecafccc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -74,3 +74,7 @@ path = Plugins/Source/PassiveSkillTreePlanter url = https://github.com/TehCheat/PassiveSkillTreePlanter branch = master +[submodule "Plugins/Source/Pickit"] + path = Plugins/Source/Pickit + url = https://github.com/TehCheat/Pickit + branch = master diff --git a/Plugins/Source/Pickit b/Plugins/Source/Pickit new file mode 160000 index 00000000..10b297fa --- /dev/null +++ b/Plugins/Source/Pickit @@ -0,0 +1 @@ +Subproject commit 10b297fa03ecf50e7a23e075d89048af0b28a587 From 91d3bc1242c86500359915706a37e927687218fc Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 12:04:28 -0400 Subject: [PATCH 30/81] Added PreloadAlert submodule --- .gitmodules | 4 ++++ Plugins/Source/PreloadAlert | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/PreloadAlert diff --git a/.gitmodules b/.gitmodules index 3ecafccc..b9778b6a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -78,3 +78,7 @@ path = Plugins/Source/Pickit url = https://github.com/TehCheat/Pickit branch = master +[submodule "Plugins/Source/PreloadAlert"] + path = Plugins/Source/PreloadAlert + url = https://github.com/TehCheat/PreloadAlert + branch = master diff --git a/Plugins/Source/PreloadAlert b/Plugins/Source/PreloadAlert new file mode 160000 index 00000000..1ac8dad6 --- /dev/null +++ b/Plugins/Source/PreloadAlert @@ -0,0 +1 @@ +Subproject commit 1ac8dad694e16f803d5aa4423b48b31647693815 From 71f3c33bd43250f70254234c7e0d261293300481 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 12:11:55 -0400 Subject: [PATCH 31/81] Added SkillDPS submodule --- .gitmodules | 4 ++++ Plugins/Source/SkillDPS | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/SkillDPS diff --git a/.gitmodules b/.gitmodules index b9778b6a..e6a6b989 100644 --- a/.gitmodules +++ b/.gitmodules @@ -82,3 +82,7 @@ path = Plugins/Source/PreloadAlert url = https://github.com/TehCheat/PreloadAlert branch = master +[submodule "Plugins/Source/SkillDPS"] + path = Plugins/Source/SkillDPS + url = https://github.com/TehCheat/SkillDPS + branch = master diff --git a/Plugins/Source/SkillDPS b/Plugins/Source/SkillDPS new file mode 160000 index 00000000..4f94d460 --- /dev/null +++ b/Plugins/Source/SkillDPS @@ -0,0 +1 @@ +Subproject commit 4f94d460345ce71fd76ac0eb70570d94f6eeee9b From 1eb4fdde9a6928c940b37a003231b3e0355cf5d8 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 12:24:14 -0400 Subject: [PATCH 32/81] Added Stashie submodule --- .gitmodules | 4 ++++ Plugins/Source/Stashie | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/Stashie diff --git a/.gitmodules b/.gitmodules index e6a6b989..c06553bf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -86,3 +86,7 @@ path = Plugins/Source/SkillDPS url = https://github.com/TehCheat/SkillDPS branch = master +[submodule "Plugins/Source/Stashie"] + path = Plugins/Source/Stashie + url = https://github.com/TehCheat/Stashie + branch = master diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie new file mode 160000 index 00000000..d05005c3 --- /dev/null +++ b/Plugins/Source/Stashie @@ -0,0 +1 @@ +Subproject commit d05005c3c6548f8b8a879b195e5ef016ce59c878 From 4dde09848d4cd7a20b1ad9acf16c31b80c5c6c32 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 12:46:09 -0400 Subject: [PATCH 33/81] Updated HealthBars and IconsBuilder submodules with proper references/output paths --- Plugins/Source/HealthBars | 2 +- Plugins/Source/IconsBuilder | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Source/HealthBars b/Plugins/Source/HealthBars index 66443287..38ff87f5 160000 --- a/Plugins/Source/HealthBars +++ b/Plugins/Source/HealthBars @@ -1 +1 @@ -Subproject commit 66443287ce96fe9a3576a87cf59e9bf5ca24f329 +Subproject commit 38ff87f5a6a4ade776aff209eb8940ebbf6a0b50 diff --git a/Plugins/Source/IconsBuilder b/Plugins/Source/IconsBuilder index b5f33f4f..c98a97b1 160000 --- a/Plugins/Source/IconsBuilder +++ b/Plugins/Source/IconsBuilder @@ -1 +1 @@ -Subproject commit b5f33f4f8754f0faee9afd09029761f10c2adfdb +Subproject commit c98a97b10460316034b2c70def7d32b3acbd27df From 322b56386ff5faf46e29cccf9dad0ddb4cd428dd Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 15:06:29 -0400 Subject: [PATCH 34/81] Updated submodules --- Plugins/Source/AdvancedUberLabLayout | 2 +- Plugins/Source/AutoOpen | 2 +- Plugins/Source/BasicFlaskRoutine | 2 +- Plugins/Source/BuffUtil | 2 +- Plugins/Source/FullRareSetManager | 2 +- Plugins/Source/MapsExchange | 2 +- Plugins/Source/MineDetonator | 2 +- Plugins/Source/PassiveSkillTreePlanter | 2 +- Plugins/Source/Pickit | 2 +- Plugins/Source/Stashie | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Plugins/Source/AdvancedUberLabLayout b/Plugins/Source/AdvancedUberLabLayout index 21555559..bc2275b9 160000 --- a/Plugins/Source/AdvancedUberLabLayout +++ b/Plugins/Source/AdvancedUberLabLayout @@ -1 +1 @@ -Subproject commit 215555599bb820063c9ae7f13b03eae4b6f48174 +Subproject commit bc2275b98b0f0a9799e0abc3bbd93f70bd22649f diff --git a/Plugins/Source/AutoOpen b/Plugins/Source/AutoOpen index 71704057..f052f8bc 160000 --- a/Plugins/Source/AutoOpen +++ b/Plugins/Source/AutoOpen @@ -1 +1 @@ -Subproject commit 71704057a5dfbf4345e7fb581910e9c6b3f5a269 +Subproject commit f052f8bc346767adf2aa29ab1d544f9fda93d169 diff --git a/Plugins/Source/BasicFlaskRoutine b/Plugins/Source/BasicFlaskRoutine index 05a58f1c..42073255 160000 --- a/Plugins/Source/BasicFlaskRoutine +++ b/Plugins/Source/BasicFlaskRoutine @@ -1 +1 @@ -Subproject commit 05a58f1c168dc7712fa0df14b33ce5a42d16f883 +Subproject commit 42073255025497f21a74b4daa153b86c661eba8f diff --git a/Plugins/Source/BuffUtil b/Plugins/Source/BuffUtil index 60c302cd..390f607c 160000 --- a/Plugins/Source/BuffUtil +++ b/Plugins/Source/BuffUtil @@ -1 +1 @@ -Subproject commit 60c302cde70eb9265b7441bcd880832c8e5185f1 +Subproject commit 390f607cf7b03162f29d27c5256e4b45d6db23fd diff --git a/Plugins/Source/FullRareSetManager b/Plugins/Source/FullRareSetManager index 171bacfe..1c52f832 160000 --- a/Plugins/Source/FullRareSetManager +++ b/Plugins/Source/FullRareSetManager @@ -1 +1 @@ -Subproject commit 171bacfe562f1b892f35e49e38a6cdeb7b0341b9 +Subproject commit 1c52f832cb966183f750204002f30743087acea9 diff --git a/Plugins/Source/MapsExchange b/Plugins/Source/MapsExchange index 38462575..dcb82be1 160000 --- a/Plugins/Source/MapsExchange +++ b/Plugins/Source/MapsExchange @@ -1 +1 @@ -Subproject commit 38462575bbd1a14a336c32c21f5cd48a3a5e0ffa +Subproject commit dcb82be10eb3367c3a620ebd790eb75d0a459b88 diff --git a/Plugins/Source/MineDetonator b/Plugins/Source/MineDetonator index 3c1c96a3..5aa19c16 160000 --- a/Plugins/Source/MineDetonator +++ b/Plugins/Source/MineDetonator @@ -1 +1 @@ -Subproject commit 3c1c96a3f8830bc180f5b915f91f22b50afc4079 +Subproject commit 5aa19c16bcc7cfe449d39f935e0612bb812783bc diff --git a/Plugins/Source/PassiveSkillTreePlanter b/Plugins/Source/PassiveSkillTreePlanter index fb44c5d3..5d22b492 160000 --- a/Plugins/Source/PassiveSkillTreePlanter +++ b/Plugins/Source/PassiveSkillTreePlanter @@ -1 +1 @@ -Subproject commit fb44c5d34296ba2008dd32b4ca75933d58e2971b +Subproject commit 5d22b49227f211943fe616247c1d6547fb5408a8 diff --git a/Plugins/Source/Pickit b/Plugins/Source/Pickit index 10b297fa..581274c0 160000 --- a/Plugins/Source/Pickit +++ b/Plugins/Source/Pickit @@ -1 +1 @@ -Subproject commit 10b297fa03ecf50e7a23e075d89048af0b28a587 +Subproject commit 581274c0a384b80740f2e43a4b6ef85fc4381b4c diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index d05005c3..23e1b600 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit d05005c3c6548f8b8a879b195e5ef016ce59c878 +Subproject commit 23e1b600fb55661dd74a5a141dd1da1ace3ef0ed From a3330be4a3b15d177c740d8fca2db134fa686fc1 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 15:06:47 -0400 Subject: [PATCH 35/81] Updated solution with submodules. --- ExileApi.sln | 461 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 308 insertions(+), 153 deletions(-) diff --git a/ExileApi.sln b/ExileApi.sln index 9dd41ae2..c94e794d 100644 --- a/ExileApi.sln +++ b/ExileApi.sln @@ -1,153 +1,308 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28407.52 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Loader", "Loader\Loader.csproj", "{C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "Core\Core.csproj", "{5539D732-34A7-44AB-9E28-116C3429B12A}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{CC061825-B447-4124-8467-9B830EB88F4C}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stashie", "Plugins\Source\Stashie\Stashie.csproj", "{EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedTooltip", "Plugins\Source\AdvancedTooltip\AdvancedTooltip.csproj", "{E15FF26B-5D91-4492-A8BD-C9F5B60D8845}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTree", "Plugins\Source\DevTree\DevTree.csproj", "{EBC7708C-CDD2-4997-A482-D39F9986DDB5}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthBars", "Plugins\Source\HealthBars\HealthBars.csproj", "{4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconsBuilder", "Plugins\Source\IconsBuilder\IconsBuilder.csproj", "{0D4BAE14-C9FF-47E1-8B60-D8A859512B20}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ItemAlert", "Plugins\Source\ItemAlert\ItemAlert.csproj", "{FD3E6670-B40E-458C-9C77-A60C7C0CDA31}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KillCounter", "Plugins\Source\KillCounter\KillCounter.csproj", "{B80F3D7E-EB08-44A6-9FC0-0E704820B920}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinimapIcons", "Plugins\Source\MinimapIcons\MinimapIcons.csproj", "{1AE459C5-308A-4A4E-95E3-4A87C57D2087}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MiscInformation", "Plugins\Source\MiscInformation\MiscInformation.csproj", "{FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PickIt", "Plugins\Source\PickIt\PickIt.csproj", "{286EB4C6-31A1-4B8E-BF5A-83F9591AE322}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPBar", "Plugins\Source\XPBar\XPBar.csproj", "{C1B13FD4-C3A3-4C88-818F-497FE34C362F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DPSMeter", "Plugins\Source\DPSMeter\DPSMeter.csproj", "{DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EliteBar", "Plugins\Source\EliteBar\EliteBar.csproj", "{D13CD5D2-F97F-43EB-962A-116E84B23017}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PreloadAlert", "Plugins\Source\PreloadAlert\PreloadAlert.csproj", "{8B098CA6-52E6-4D70-9F00-6802AA2E464F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameOffsets", "GameOffsets\GameOffsets.csproj", "{38084BC9-079D-487E-B774-D2F407DC8389}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassiveSkillTreePlanter", "Plugins\Source\PassiveSkillTreePlanter\PassiveSkillTreePlanter.csproj", "{CAA01498-5C8A-429F-8BB8-57E29DD05E6E}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skill DPS", "Plugins\Source\Skill DPS\Skill DPS.csproj", "{1DF43765-FF6E-478D-8D85-55C07AE137DE}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|Any CPU.Build.0 = Release|Any CPU - {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|Any CPU.Build.0 = Release|Any CPU - {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|Any CPU.Build.0 = Release|Any CPU - {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|Any CPU.Build.0 = Release|Any CPU - {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|Any CPU.Build.0 = Release|Any CPU - {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|Any CPU.Build.0 = Release|Any CPU - {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|Any CPU.Build.0 = Release|Any CPU - {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|Any CPU.Build.0 = Release|Any CPU - {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|Any CPU.Build.0 = Release|Any CPU - {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|Any CPU.Build.0 = Release|Any CPU - {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|Any CPU.Build.0 = Release|Any CPU - {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|Any CPU.Build.0 = Debug|Any CPU - {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|Any CPU.ActiveCfg = Release|Any CPU - {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|Any CPU.Build.0 = Release|Any CPU - {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|Any CPU.Build.0 = Release|Any CPU - {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|Any CPU.Build.0 = Release|Any CPU - {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|Any CPU.Build.0 = Release|Any CPU - {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|Any CPU.Build.0 = Release|Any CPU - {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|Any CPU.Build.0 = Debug|Any CPU - {38084BC9-079D-487E-B774-D2F407DC8389}.Release|Any CPU.ActiveCfg = Release|Any CPU - {38084BC9-079D-487E-B774-D2F407DC8389}.Release|Any CPU.Build.0 = Release|Any CPU - {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|Any CPU.Build.0 = Release|Any CPU - {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E} = {CC061825-B447-4124-8467-9B830EB88F4C} - {E15FF26B-5D91-4492-A8BD-C9F5B60D8845} = {CC061825-B447-4124-8467-9B830EB88F4C} - {EBC7708C-CDD2-4997-A482-D39F9986DDB5} = {CC061825-B447-4124-8467-9B830EB88F4C} - {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5} = {CC061825-B447-4124-8467-9B830EB88F4C} - {0D4BAE14-C9FF-47E1-8B60-D8A859512B20} = {CC061825-B447-4124-8467-9B830EB88F4C} - {FD3E6670-B40E-458C-9C77-A60C7C0CDA31} = {CC061825-B447-4124-8467-9B830EB88F4C} - {B80F3D7E-EB08-44A6-9FC0-0E704820B920} = {CC061825-B447-4124-8467-9B830EB88F4C} - {1AE459C5-308A-4A4E-95E3-4A87C57D2087} = {CC061825-B447-4124-8467-9B830EB88F4C} - {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842} = {CC061825-B447-4124-8467-9B830EB88F4C} - {286EB4C6-31A1-4B8E-BF5A-83F9591AE322} = {CC061825-B447-4124-8467-9B830EB88F4C} - {C1B13FD4-C3A3-4C88-818F-497FE34C362F} = {CC061825-B447-4124-8467-9B830EB88F4C} - {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B} = {CC061825-B447-4124-8467-9B830EB88F4C} - {D13CD5D2-F97F-43EB-962A-116E84B23017} = {CC061825-B447-4124-8467-9B830EB88F4C} - {8B098CA6-52E6-4D70-9F00-6802AA2E464F} = {CC061825-B447-4124-8467-9B830EB88F4C} - {CAA01498-5C8A-429F-8BB8-57E29DD05E6E} = {CC061825-B447-4124-8467-9B830EB88F4C} - {1DF43765-FF6E-478D-8D85-55C07AE137DE} = {CC061825-B447-4124-8467-9B830EB88F4C} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5AD7BE45-2243-42A2-9D8F-2C212D20F7E9} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28407.52 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Loader", "Loader\Loader.csproj", "{C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "Core\Core.csproj", "{5539D732-34A7-44AB-9E28-116C3429B12A}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{CC061825-B447-4124-8467-9B830EB88F4C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stashie", "Plugins\Source\Stashie\Stashie.csproj", "{EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedTooltip", "Plugins\Source\AdvancedTooltip\AdvancedTooltip.csproj", "{E15FF26B-5D91-4492-A8BD-C9F5B60D8845}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTree", "Plugins\Source\DevTree\DevTree.csproj", "{EBC7708C-CDD2-4997-A482-D39F9986DDB5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthBars", "Plugins\Source\HealthBars\HealthBars.csproj", "{4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconsBuilder", "Plugins\Source\IconsBuilder\IconsBuilder.csproj", "{0D4BAE14-C9FF-47E1-8B60-D8A859512B20}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ItemAlert", "Plugins\Source\ItemAlert\ItemAlert.csproj", "{FD3E6670-B40E-458C-9C77-A60C7C0CDA31}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KillCounter", "Plugins\Source\KillCounter\KillCounter.csproj", "{B80F3D7E-EB08-44A6-9FC0-0E704820B920}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinimapIcons", "Plugins\Source\MinimapIcons\MinimapIcons.csproj", "{1AE459C5-308A-4A4E-95E3-4A87C57D2087}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MiscInformation", "Plugins\Source\MiscInformation\MiscInformation.csproj", "{FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PickIt", "Plugins\Source\PickIt\PickIt.csproj", "{286EB4C6-31A1-4B8E-BF5A-83F9591AE322}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPBar", "Plugins\Source\XPBar\XPBar.csproj", "{C1B13FD4-C3A3-4C88-818F-497FE34C362F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DPSMeter", "Plugins\Source\DPSMeter\DPSMeter.csproj", "{DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EliteBar", "Plugins\Source\EliteBar\EliteBar.csproj", "{D13CD5D2-F97F-43EB-962A-116E84B23017}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PreloadAlert", "Plugins\Source\PreloadAlert\PreloadAlert.csproj", "{8B098CA6-52E6-4D70-9F00-6802AA2E464F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameOffsets", "GameOffsets\GameOffsets.csproj", "{38084BC9-079D-487E-B774-D2F407DC8389}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedUberLabLayout", "Plugins\Source\AdvancedUberLabLayout\AdvancedUberLabLayout.csproj", "{3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoOpen", "Plugins\Source\AutoOpen\AutoOpen.csproj", "{6D997C8E-5C70-4068-844B-E8BD951C9F42}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BasicFlaskRoutine", "Plugins\Source\BasicFlaskRoutine\src\BasicFlaskRoutine.csproj", "{4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuffUtil", "Plugins\Source\BuffUtil\BuffUtil.csproj", "{D0344191-0958-4D1B-8A24-9A518F6E2636}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FullRareSetManager", "Plugins\Source\FullRareSetManager\FullRareSetManager.csproj", "{E3EB04C1-7693-4465-9D53-129BC5EF80BA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapsExchange", "Plugins\Source\MapsExchange\src\MapsExchange\MapsExchange.csproj", "{48D21D6F-16AA-42DD-BD99-66F006C9B73B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MineDetonator", "Plugins\Source\MineDetonator\MineDetonator.csproj", "{BF450EFE-86F5-42AD-A32A-144B878B033B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassiveSkillTreePlanter", "Plugins\Source\PassiveSkillTreePlanter\PassiveSkillTreePlanter.csproj", "{CAA01498-5C8A-429F-8BB8-57E29DD05E6E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skill DPS", "Plugins\Source\SkillDPS\Skill DPS.csproj", "{1DF43765-FF6E-478D-8D85-55C07AE137DE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|x64.ActiveCfg = Debug|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Debug|x64.Build.0 = Debug|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|Any CPU.Build.0 = Release|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|x64.ActiveCfg = Release|Any CPU + {C6DB5AE9-3C73-4950-8FA4-A92DB4C7C1DB}.Release|x64.Build.0 = Release|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|x64.ActiveCfg = Debug|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Debug|x64.Build.0 = Debug|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|Any CPU.Build.0 = Release|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|x64.ActiveCfg = Release|Any CPU + {5539D732-34A7-44AB-9E28-116C3429B12A}.Release|x64.Build.0 = Release|Any CPU + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|x64.ActiveCfg = Debug|x64 + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Debug|x64.Build.0 = Debug|x64 + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|Any CPU.Build.0 = Release|Any CPU + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|x64.ActiveCfg = Release|x64 + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}.Release|x64.Build.0 = Release|x64 + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|x64.ActiveCfg = Debug|x64 + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Debug|x64.Build.0 = Debug|x64 + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|Any CPU.Build.0 = Release|Any CPU + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|x64.ActiveCfg = Release|x64 + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845}.Release|x64.Build.0 = Release|x64 + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|x64.ActiveCfg = Debug|x64 + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Debug|x64.Build.0 = Debug|x64 + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|Any CPU.Build.0 = Release|Any CPU + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|x64.ActiveCfg = Release|x64 + {EBC7708C-CDD2-4997-A482-D39F9986DDB5}.Release|x64.Build.0 = Release|x64 + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|x64.ActiveCfg = Debug|x64 + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Debug|x64.Build.0 = Debug|x64 + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|Any CPU.Build.0 = Release|Any CPU + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|x64.ActiveCfg = Release|x64 + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5}.Release|x64.Build.0 = Release|x64 + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|x64.ActiveCfg = Debug|x64 + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Debug|x64.Build.0 = Debug|x64 + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|Any CPU.Build.0 = Release|Any CPU + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|x64.ActiveCfg = Release|x64 + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20}.Release|x64.Build.0 = Release|x64 + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|x64.ActiveCfg = Debug|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Debug|x64.Build.0 = Debug|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|Any CPU.Build.0 = Release|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|x64.ActiveCfg = Release|Any CPU + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31}.Release|x64.Build.0 = Release|Any CPU + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|x64.ActiveCfg = Debug|x64 + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Debug|x64.Build.0 = Debug|x64 + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|Any CPU.Build.0 = Release|Any CPU + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|x64.ActiveCfg = Release|x64 + {B80F3D7E-EB08-44A6-9FC0-0E704820B920}.Release|x64.Build.0 = Release|x64 + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|x64.ActiveCfg = Debug|x64 + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Debug|x64.Build.0 = Debug|x64 + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|Any CPU.Build.0 = Release|Any CPU + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|x64.ActiveCfg = Release|x64 + {1AE459C5-308A-4A4E-95E3-4A87C57D2087}.Release|x64.Build.0 = Release|x64 + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|x64.ActiveCfg = Debug|x64 + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Debug|x64.Build.0 = Debug|x64 + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|Any CPU.Build.0 = Release|Any CPU + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|x64.ActiveCfg = Release|x64 + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842}.Release|x64.Build.0 = Release|x64 + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|Any CPU.Build.0 = Debug|Any CPU + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|x64.ActiveCfg = Debug|x64 + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Debug|x64.Build.0 = Debug|x64 + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|Any CPU.ActiveCfg = Release|Any CPU + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|Any CPU.Build.0 = Release|Any CPU + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|x64.ActiveCfg = Release|x64 + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322}.Release|x64.Build.0 = Release|x64 + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|x64.ActiveCfg = Debug|x64 + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Debug|x64.Build.0 = Debug|x64 + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|Any CPU.Build.0 = Release|Any CPU + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|x64.ActiveCfg = Release|x64 + {C1B13FD4-C3A3-4C88-818F-497FE34C362F}.Release|x64.Build.0 = Release|x64 + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|x64.ActiveCfg = Debug|x64 + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Debug|x64.Build.0 = Debug|x64 + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|Any CPU.Build.0 = Release|Any CPU + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|x64.ActiveCfg = Release|x64 + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B}.Release|x64.Build.0 = Release|x64 + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|x64.ActiveCfg = Debug|x64 + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Debug|x64.Build.0 = Debug|x64 + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|Any CPU.Build.0 = Release|Any CPU + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|x64.ActiveCfg = Release|x64 + {D13CD5D2-F97F-43EB-962A-116E84B23017}.Release|x64.Build.0 = Release|x64 + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|x64.ActiveCfg = Debug|x64 + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Debug|x64.Build.0 = Debug|x64 + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|Any CPU.Build.0 = Release|Any CPU + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|x64.ActiveCfg = Release|x64 + {8B098CA6-52E6-4D70-9F00-6802AA2E464F}.Release|x64.Build.0 = Release|x64 + {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|x64.ActiveCfg = Debug|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Debug|x64.Build.0 = Debug|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Release|Any CPU.ActiveCfg = Release|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Release|Any CPU.Build.0 = Release|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Release|x64.ActiveCfg = Release|Any CPU + {38084BC9-079D-487E-B774-D2F407DC8389}.Release|x64.Build.0 = Release|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Debug|x64.ActiveCfg = Debug|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Debug|x64.Build.0 = Debug|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Release|Any CPU.Build.0 = Release|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Release|x64.ActiveCfg = Release|Any CPU + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620}.Release|x64.Build.0 = Release|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Debug|x64.ActiveCfg = Debug|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Debug|x64.Build.0 = Debug|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Release|Any CPU.Build.0 = Release|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Release|x64.ActiveCfg = Release|Any CPU + {6D997C8E-5C70-4068-844B-E8BD951C9F42}.Release|x64.Build.0 = Release|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Debug|x64.ActiveCfg = Debug|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Debug|x64.Build.0 = Debug|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Release|Any CPU.Build.0 = Release|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Release|x64.ActiveCfg = Release|Any CPU + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961}.Release|x64.Build.0 = Release|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Debug|x64.ActiveCfg = Debug|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Debug|x64.Build.0 = Debug|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Release|Any CPU.Build.0 = Release|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Release|x64.ActiveCfg = Release|Any CPU + {D0344191-0958-4D1B-8A24-9A518F6E2636}.Release|x64.Build.0 = Release|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Debug|x64.ActiveCfg = Debug|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Debug|x64.Build.0 = Debug|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Release|Any CPU.Build.0 = Release|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Release|x64.ActiveCfg = Release|Any CPU + {E3EB04C1-7693-4465-9D53-129BC5EF80BA}.Release|x64.Build.0 = Release|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Debug|x64.ActiveCfg = Debug|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Debug|x64.Build.0 = Debug|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Release|Any CPU.Build.0 = Release|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Release|x64.ActiveCfg = Release|Any CPU + {48D21D6F-16AA-42DD-BD99-66F006C9B73B}.Release|x64.Build.0 = Release|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Debug|x64.ActiveCfg = Debug|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Debug|x64.Build.0 = Debug|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Release|Any CPU.Build.0 = Release|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Release|x64.ActiveCfg = Release|Any CPU + {BF450EFE-86F5-42AD-A32A-144B878B033B}.Release|x64.Build.0 = Release|Any CPU + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|x64.ActiveCfg = Debug|x64 + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Debug|x64.Build.0 = Debug|x64 + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|Any CPU.Build.0 = Release|Any CPU + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|x64.ActiveCfg = Release|x64 + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E}.Release|x64.Build.0 = Release|x64 + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|x64.ActiveCfg = Debug|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Debug|x64.Build.0 = Debug|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|Any CPU.Build.0 = Release|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|x64.ActiveCfg = Release|Any CPU + {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|x64.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {EED0427D-D8EB-4EBC-9F6F-4AE49A83963E} = {CC061825-B447-4124-8467-9B830EB88F4C} + {E15FF26B-5D91-4492-A8BD-C9F5B60D8845} = {CC061825-B447-4124-8467-9B830EB88F4C} + {EBC7708C-CDD2-4997-A482-D39F9986DDB5} = {CC061825-B447-4124-8467-9B830EB88F4C} + {4DEE86D7-5666-4B10-93C2-0CCEEF3799E5} = {CC061825-B447-4124-8467-9B830EB88F4C} + {0D4BAE14-C9FF-47E1-8B60-D8A859512B20} = {CC061825-B447-4124-8467-9B830EB88F4C} + {FD3E6670-B40E-458C-9C77-A60C7C0CDA31} = {CC061825-B447-4124-8467-9B830EB88F4C} + {B80F3D7E-EB08-44A6-9FC0-0E704820B920} = {CC061825-B447-4124-8467-9B830EB88F4C} + {1AE459C5-308A-4A4E-95E3-4A87C57D2087} = {CC061825-B447-4124-8467-9B830EB88F4C} + {FE6BC0C3-DB0E-4808-B99F-9C5D39AE1842} = {CC061825-B447-4124-8467-9B830EB88F4C} + {286EB4C6-31A1-4B8E-BF5A-83F9591AE322} = {CC061825-B447-4124-8467-9B830EB88F4C} + {C1B13FD4-C3A3-4C88-818F-497FE34C362F} = {CC061825-B447-4124-8467-9B830EB88F4C} + {DAEAB5B7-1485-4BF3-B09C-0B9F7A5CC89B} = {CC061825-B447-4124-8467-9B830EB88F4C} + {D13CD5D2-F97F-43EB-962A-116E84B23017} = {CC061825-B447-4124-8467-9B830EB88F4C} + {8B098CA6-52E6-4D70-9F00-6802AA2E464F} = {CC061825-B447-4124-8467-9B830EB88F4C} + {3C72BE7E-BC50-4FD1-ABB1-70EEC9A88620} = {CC061825-B447-4124-8467-9B830EB88F4C} + {6D997C8E-5C70-4068-844B-E8BD951C9F42} = {CC061825-B447-4124-8467-9B830EB88F4C} + {4EBA974C-AC8C-42A5-B8EE-5AD318B6D961} = {CC061825-B447-4124-8467-9B830EB88F4C} + {D0344191-0958-4D1B-8A24-9A518F6E2636} = {CC061825-B447-4124-8467-9B830EB88F4C} + {E3EB04C1-7693-4465-9D53-129BC5EF80BA} = {CC061825-B447-4124-8467-9B830EB88F4C} + {48D21D6F-16AA-42DD-BD99-66F006C9B73B} = {CC061825-B447-4124-8467-9B830EB88F4C} + {BF450EFE-86F5-42AD-A32A-144B878B033B} = {CC061825-B447-4124-8467-9B830EB88F4C} + {CAA01498-5C8A-429F-8BB8-57E29DD05E6E} = {CC061825-B447-4124-8467-9B830EB88F4C} + {1DF43765-FF6E-478D-8D85-55C07AE137DE} = {CC061825-B447-4124-8467-9B830EB88F4C} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5AD7BE45-2243-42A2-9D8F-2C212D20F7E9} + EndGlobalSection +EndGlobal From 647c3265745d3670bc8e20995bc63a96b1e22c35 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 16:16:40 -0400 Subject: [PATCH 36/81] Moved Stashie remote repo to https://github.com/Craere/Stashie --- Plugins/Source/Stashie | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index 23e1b600..4f3235ea 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit 23e1b600fb55661dd74a5a141dd1da1ace3ef0ed +Subproject commit 4f3235ea810c641ae1871fd2c86a8af7d019dab6 From 955b01811b1819fc76afb883a42196ea0173e4a7 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 17:01:22 -0400 Subject: [PATCH 37/81] Updated Stashie to point at Craere's repo. --- Plugins/Source/Stashie | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index 4f3235ea..6ce574d2 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit 4f3235ea810c641ae1871fd2c86a8af7d019dab6 +Subproject commit 6ce574d2f68c1a906e2686621f5d97695049cc03 From d109887b879c448b570da2b98d172853367506fd Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 19:41:57 -0400 Subject: [PATCH 38/81] Moved Stashie remote repo to Craere's fork for real this time --- Plugins/Source/Stashie | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index 6ce574d2..b8900146 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit 6ce574d2f68c1a906e2686621f5d97695049cc03 +Subproject commit b8900146091100aabcfc5a097217a2bb88427712 From b1e5bdf216ca03fc72e58d40fbf7059c3db2c2d6 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 20:28:46 -0400 Subject: [PATCH 39/81] Added AutoQuit plugin as submodule and added to ExileApi --- .gitmodules | 4 ++++ ExileApi.sln | 11 +++++++++++ Plugins/Source/AutoQuit | 1 + 3 files changed, 16 insertions(+) create mode 160000 Plugins/Source/AutoQuit diff --git a/.gitmodules b/.gitmodules index c06553bf..68d029f3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -90,3 +90,7 @@ path = Plugins/Source/Stashie url = https://github.com/TehCheat/Stashie branch = master +[submodule "Plugins/Source/AutoQuit"] + path = Plugins/Source/AutoQuit + url = https://github.com/TehCheat/AutoQuit + branch = master diff --git a/ExileApi.sln b/ExileApi.sln index c94e794d..dba6bfc1 100644 --- a/ExileApi.sln +++ b/ExileApi.sln @@ -57,6 +57,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassiveSkillTreePlanter", " EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skill DPS", "Plugins\Source\SkillDPS\Skill DPS.csproj", "{1DF43765-FF6E-478D-8D85-55C07AE137DE}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoQuit", "Plugins\Source\AutoQuit\AutoQuit.csproj", "{8433FCBF-E9EC-4014-8854-1F0D79D2D38D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -273,6 +275,14 @@ Global {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|Any CPU.Build.0 = Release|Any CPU {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|x64.ActiveCfg = Release|Any CPU {1DF43765-FF6E-478D-8D85-55C07AE137DE}.Release|x64.Build.0 = Release|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Debug|x64.ActiveCfg = Debug|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Debug|x64.Build.0 = Debug|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|Any CPU.Build.0 = Release|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|x64.ActiveCfg = Release|Any CPU + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -301,6 +311,7 @@ Global {BF450EFE-86F5-42AD-A32A-144B878B033B} = {CC061825-B447-4124-8467-9B830EB88F4C} {CAA01498-5C8A-429F-8BB8-57E29DD05E6E} = {CC061825-B447-4124-8467-9B830EB88F4C} {1DF43765-FF6E-478D-8D85-55C07AE137DE} = {CC061825-B447-4124-8467-9B830EB88F4C} + {8433FCBF-E9EC-4014-8854-1F0D79D2D38D} = {CC061825-B447-4124-8467-9B830EB88F4C} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {5AD7BE45-2243-42A2-9D8F-2C212D20F7E9} diff --git a/Plugins/Source/AutoQuit b/Plugins/Source/AutoQuit new file mode 160000 index 00000000..c69055b2 --- /dev/null +++ b/Plugins/Source/AutoQuit @@ -0,0 +1 @@ +Subproject commit c69055b2c097466b189ce0542b95425bb25eac92 From 0f8784dd8d0dddeaf578dfa2764834ce25345d7b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 20:36:30 -0400 Subject: [PATCH 40/81] Updated AutoQuit (fixed indentation in project file) --- Plugins/Source/AutoQuit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/AutoQuit b/Plugins/Source/AutoQuit index c69055b2..04c1ceae 160000 --- a/Plugins/Source/AutoQuit +++ b/Plugins/Source/AutoQuit @@ -1 +1 @@ -Subproject commit c69055b2c097466b189ce0542b95425bb25eac92 +Subproject commit 04c1ceaeb79edf7854bf76e86c82d44196bfd811 From 5fba53180f62ca37515fab78ec8ba6cfefb29b1b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 20:42:52 -0400 Subject: [PATCH 41/81] Reduced AutoQuit build spam --- Plugins/Source/AutoQuit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/AutoQuit b/Plugins/Source/AutoQuit index 04c1ceae..46a67f71 160000 --- a/Plugins/Source/AutoQuit +++ b/Plugins/Source/AutoQuit @@ -1 +1 @@ -Subproject commit 04c1ceaeb79edf7854bf76e86c82d44196bfd811 +Subproject commit 46a67f71d23fcdf8d61a1f8e04ee93391ec92ba5 From 292f18308607ee24527e1b3dc8ebd8710623b6a7 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 20:45:27 -0400 Subject: [PATCH 42/81] Added DelveWalls submodule --- .gitmodules | 4 ++++ Plugins/Source/DelveWalls | 1 + 2 files changed, 5 insertions(+) create mode 160000 Plugins/Source/DelveWalls diff --git a/.gitmodules b/.gitmodules index 68d029f3..fdbe6691 100644 --- a/.gitmodules +++ b/.gitmodules @@ -94,3 +94,7 @@ path = Plugins/Source/AutoQuit url = https://github.com/TehCheat/AutoQuit branch = master +[submodule "Plugins/Source/DelveWalls"] + path = Plugins/Source/DelveWalls + url = https://github.com/TehCheat/DelveWalls + branch = master diff --git a/Plugins/Source/DelveWalls b/Plugins/Source/DelveWalls new file mode 160000 index 00000000..71f211a1 --- /dev/null +++ b/Plugins/Source/DelveWalls @@ -0,0 +1 @@ +Subproject commit 71f211a158136c0f6c5ae330de33891b37c469ba From 05e8f0806f654aff59906b5809d9829935fe0802 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 27 Mar 2020 20:53:06 -0400 Subject: [PATCH 43/81] Added DelveWalls and updated references and output path --- ExileApi.sln | 11 +++++++++++ Plugins/Source/DelveWalls | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ExileApi.sln b/ExileApi.sln index dba6bfc1..1f15d8f7 100644 --- a/ExileApi.sln +++ b/ExileApi.sln @@ -59,6 +59,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skill DPS", "Plugins\Source EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoQuit", "Plugins\Source\AutoQuit\AutoQuit.csproj", "{8433FCBF-E9EC-4014-8854-1F0D79D2D38D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DelveWalls", "Plugins\Source\DelveWalls\DelveWalls.csproj", "{61BD0E34-7F45-42C8-8780-4B878C148650}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -283,6 +285,14 @@ Global {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|Any CPU.Build.0 = Release|Any CPU {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|x64.ActiveCfg = Release|Any CPU {8433FCBF-E9EC-4014-8854-1F0D79D2D38D}.Release|x64.Build.0 = Release|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Debug|Any CPU.Build.0 = Debug|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Debug|x64.ActiveCfg = Debug|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Debug|x64.Build.0 = Debug|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Release|Any CPU.ActiveCfg = Release|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Release|Any CPU.Build.0 = Release|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Release|x64.ActiveCfg = Release|Any CPU + {61BD0E34-7F45-42C8-8780-4B878C148650}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -312,6 +322,7 @@ Global {CAA01498-5C8A-429F-8BB8-57E29DD05E6E} = {CC061825-B447-4124-8467-9B830EB88F4C} {1DF43765-FF6E-478D-8D85-55C07AE137DE} = {CC061825-B447-4124-8467-9B830EB88F4C} {8433FCBF-E9EC-4014-8854-1F0D79D2D38D} = {CC061825-B447-4124-8467-9B830EB88F4C} + {61BD0E34-7F45-42C8-8780-4B878C148650} = {CC061825-B447-4124-8467-9B830EB88F4C} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {5AD7BE45-2243-42A2-9D8F-2C212D20F7E9} diff --git a/Plugins/Source/DelveWalls b/Plugins/Source/DelveWalls index 71f211a1..23d80d7a 160000 --- a/Plugins/Source/DelveWalls +++ b/Plugins/Source/DelveWalls @@ -1 +1 @@ -Subproject commit 71f211a158136c0f6c5ae330de33891b37c469ba +Subproject commit 23d80d7af445217c4749b1d4aeefed8e13fcd516 From 2dfc6f640354d57c614b7109c1b3c35e37f1275a Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 28 Mar 2020 00:19:51 -0400 Subject: [PATCH 44/81] Fixed Enduring Mana Flask spam bug in BasicFlaskRoutine --- Plugins/Source/BasicFlaskRoutine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/BasicFlaskRoutine b/Plugins/Source/BasicFlaskRoutine index 42073255..8649edfa 160000 --- a/Plugins/Source/BasicFlaskRoutine +++ b/Plugins/Source/BasicFlaskRoutine @@ -1 +1 @@ -Subproject commit 42073255025497f21a74b4daa153b86c661eba8f +Subproject commit 8649edfafc6b06ab641fdb8b89edf5805a0d9666 From 879010302af7df5748c450ea0c1a69cae8b44c29 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 28 Mar 2020 01:17:55 -0400 Subject: [PATCH 45/81] Actually fixed enduring mana flask bug --- Plugins/Source/BasicFlaskRoutine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/BasicFlaskRoutine b/Plugins/Source/BasicFlaskRoutine index 8649edfa..96068f37 160000 --- a/Plugins/Source/BasicFlaskRoutine +++ b/Plugins/Source/BasicFlaskRoutine @@ -1 +1 @@ -Subproject commit 8649edfafc6b06ab641fdb8b89edf5805a0d9666 +Subproject commit 96068f373da06447002f882eac45bffc371d54bd From f621c0feee1867a8b3fb517be09f52c93ab09995 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 29 Mar 2020 12:16:23 -0400 Subject: [PATCH 46/81] Added Steam exe handling to Core. Added SteamOffsetUpdate.py. --- Core/Core.cs | 3 ++- SteamOffsetUpdate.py | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 SteamOffsetUpdate.py diff --git a/Core/Core.cs b/Core/Core.cs index 5cca2f8e..bf46657b 100644 --- a/Core/Core.cs +++ b/Core/Core.cs @@ -496,7 +496,8 @@ private static (Process process, Offsets offsets)? FindPoeProcess() var clients = Process.GetProcessesByName(Offsets.Regular.ExeName).Select(x => (x, Offsets.Regular)) .ToList(); - clients.AddRange(Process.GetProcessesByName(Offsets.Korean.ExeName).Select(p => (p, Offsets.Korean))); + clients.AddRange(Process.GetProcessesByName(Offsets.Korean.ExeName).Select(p => (p, Offsets.Korean))); + clients.AddRange(Process.GetProcessesByName(Offsets.Steam.ExeName).Select(p => (p, Offsets.Steam))); var ixChosen = clients.Count > 1 ? ChooseSingleProcess(clients) : 0; if (clients.Count > 0) diff --git a/SteamOffsetUpdate.py b/SteamOffsetUpdate.py new file mode 100644 index 00000000..28a1ad3a --- /dev/null +++ b/SteamOffsetUpdate.py @@ -0,0 +1,27 @@ +import re + + +IGS_OFFSET = 0x28 + +igs_offsets = [] +# open GameOffsets.cs +with open('GameOffsets/IngameStateOffsets.cs', 'r') as igs: + igs_offsets = igs.readlines() + +new_igs_offsets = [] +# parse the lines +for line in igs_offsets: + # only change offsets greater than 0x300 + if not '0x' in line: + new_igs_offsets.append(line) + continue + offset_value = re.search('0x[\da-fA-F]+', line) + if offset_value and int(offset_value.group(0), 16) < 300: + new_igs_offsets.append(line) + continue + new_igs_offsets.append(re.sub('0x[\dA-Fa-f]+', lambda m : '0x{:X}'.format(int(m.group(0), 16) + IGS_OFFSET, 'X'), line)) + +# save the file +with open('GameOffsets/IngameStateOffsets.cs', 'w') as igs: + for line in new_igs_offsets: + igs.write(line) From 64e52188b503aef55bcedb4a5884df09b3a668d8 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 30 Mar 2020 11:51:51 -0400 Subject: [PATCH 47/81] Updated IsMoving to actually work with Cyclone --- Core/PoEMemory/Components/Actor.cs | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/Core/PoEMemory/Components/Actor.cs b/Core/PoEMemory/Components/Actor.cs index b5b7f0ae..05f20e2b 100644 --- a/Core/PoEMemory/Components/Actor.cs +++ b/Core/PoEMemory/Components/Actor.cs @@ -16,11 +16,6 @@ public Actor() cacheValue = new FrameCache(() => M.Read(Address)); } - public List MovementSkillIDs = new List() - { - 33793, // Cyclone - }; - private ActorComponentOffsets Struct => cacheValue.Value; /// /// Standing still = 2048 =bit 11 set @@ -58,16 +53,15 @@ public bool isMoving { get { - if ((Action & ActionFlags.Moving) > 0) return true; - if (CurrentAction == null) return false; - if (CurrentAction.Skill == null) return false; - if (MovementSkillIDs.Contains(CurrentAction.Skill.Id)) return true; - return false; - } - } + if ((Action & ActionFlags.Moving) > 0) return true; + if (CurrentAction == null) return false; + if (ActorSkills.Find(m => m.Name == "Cyclone" && m.IsUsing == true) != null) return true; + return false; + } + } - // e.g minions, mines - public long DeployedObjectsCount => Struct.DeployedObjectArray.Size / 8; + // e.g minions, mines + public long DeployedObjectsCount => Struct.DeployedObjectArray.Size / 8; public List DeployedObjects { From aeab9385dd3d56b9f475869a664c8d59dbfa4c24 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 30 Mar 2020 11:53:34 -0400 Subject: [PATCH 48/81] Fixed ExileCore.dll reference path in MineDetonator submodule --- Plugins/Source/MineDetonator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/MineDetonator b/Plugins/Source/MineDetonator index 5aa19c16..75f12400 160000 --- a/Plugins/Source/MineDetonator +++ b/Plugins/Source/MineDetonator @@ -1 +1 @@ -Subproject commit 5aa19c16bcc7cfe449d39f935e0612bb812783bc +Subproject commit 75f12400d5cb1f44d84e2544f3132d100ebb0515 From c25474e9f677d7faa1d1592de781547ba1164d4a Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 30 Mar 2020 12:19:13 -0400 Subject: [PATCH 49/81] Simplified the Cyclone IsMoving check because IsUsing doesn't seem to be working. --- Core/PoEMemory/Components/Actor.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Core/PoEMemory/Components/Actor.cs b/Core/PoEMemory/Components/Actor.cs index 05f20e2b..30bb8080 100644 --- a/Core/PoEMemory/Components/Actor.cs +++ b/Core/PoEMemory/Components/Actor.cs @@ -48,14 +48,14 @@ public Actor() /// WARNING: This memory location changes a lot, /// put try catch if you are accessing this variable and the fields in it. /// - public ActionWrapper CurrentAction => Struct.ActionPtr > 0 ? GetObject(Struct.ActionPtr) : null; - public bool isMoving - { - get - { + public ActionWrapper CurrentAction => Struct.ActionPtr > 0 ? GetObject(Struct.ActionPtr) : null; + public bool isMoving + { + get + { if ((Action & ActionFlags.Moving) > 0) return true; if (CurrentAction == null) return false; - if (ActorSkills.Find(m => m.Name == "Cyclone" && m.IsUsing == true) != null) return true; + if (CurrentAction.Skill.Name == "Cyclone") return true; return false; } } From 82485beaa61ca7d2f9feae0b4fb4fb7358aef32b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 30 Mar 2020 18:07:10 -0400 Subject: [PATCH 50/81] Updated Stashie to the latest. --- Plugins/Source/Stashie | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index b8900146..dc80f35c 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit b8900146091100aabcfc5a097217a2bb88427712 +Subproject commit dc80f35caa2a38aed59e94b9d9aff422f2e30190 From 8266cd4f9d40a9adb025b0cc4858ddcb7cd01b10 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Thu, 2 Apr 2020 12:37:48 -0400 Subject: [PATCH 51/81] Fixed floating combat text in the HealthBars plugin --- Plugins/Source/HealthBars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/HealthBars b/Plugins/Source/HealthBars index 38ff87f5..65ada086 160000 --- a/Plugins/Source/HealthBars +++ b/Plugins/Source/HealthBars @@ -1 +1 @@ -Subproject commit 38ff87f5a6a4ade776aff209eb8940ebbf6a0b50 +Subproject commit 65ada0860c332901de6396fa1ecadaad88e00b8c From 4d1d89ad5de69abf841c7ac08ea4ddae9ecb6a61 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Wed, 8 Apr 2020 10:07:20 -0400 Subject: [PATCH 52/81] Uncommented and fixed Vaal skill offsets --- Core/PoEMemory/Components/Actor.cs | 6 +++--- Core/PoEMemory/MemoryObjects/ActorVaalSkill.cs | 10 +++++----- GameOffsets/ActorComponentOffsets.cs | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Core/PoEMemory/Components/Actor.cs b/Core/PoEMemory/Components/Actor.cs index 30bb8080..89088bf3 100644 --- a/Core/PoEMemory/Components/Actor.cs +++ b/Core/PoEMemory/Components/Actor.cs @@ -107,7 +107,7 @@ public List ActorSkills } } - /*public List ActorVaalSkills + public List ActorVaalSkills { get { @@ -119,14 +119,14 @@ public List ActorSkills var result = new List(); for (var addr = skillsStartPointer; addr < skillsEndPointer; addr += ACTOR_VAAL_SKILLS_SIZE) { - result.Add(ReadObject(addr)); + result.Add(GetObject(addr)); if (stuckCounter++ > 50) return new List(); } return result; } - }*/ + } public class ActionWrapper : RemoteMemoryObject { diff --git a/Core/PoEMemory/MemoryObjects/ActorVaalSkill.cs b/Core/PoEMemory/MemoryObjects/ActorVaalSkill.cs index 2665ad63..cf5787d4 100644 --- a/Core/PoEMemory/MemoryObjects/ActorVaalSkill.cs +++ b/Core/PoEMemory/MemoryObjects/ActorVaalSkill.cs @@ -11,11 +11,11 @@ public class ActorVaalSkill : RemoteMemoryObject private const int MAX_VAAL_SOULS_OFFSET = 0x10; private const int VAAL_SOULS_PER_USE_OFFSET = 0x14; private const int CURRENT_VAAL_SOULS_OFFSET = 0x18; - public string VaalSkillInternalName => M.ReadStringU(M.Read(NAMES_POINTER_OFFSET) + INTERNAL_NAME_OFFSET); - public string VaalSkillDisplayName => M.ReadStringU(M.Read(NAMES_POINTER_OFFSET) + NAME_OFFSET); - public string VaalSkillDescription => M.ReadStringU(M.Read(NAMES_POINTER_OFFSET) + DESCRIPTION_OFFSET); - public string VaalSkillSkillName => M.ReadStringU(M.Read(NAMES_POINTER_OFFSET) + SKILL_NAME_OFFSET); - public string VaalSkillIcon => M.ReadStringU(M.Read(NAMES_POINTER_OFFSET) + ICON_OFFSET); + public string VaalSkillInternalName => M.ReadStringU(M.Read(M.Read(Address + NAMES_POINTER_OFFSET) + INTERNAL_NAME_OFFSET)); + public string VaalSkillDisplayName => M.ReadStringU(M.Read(M.Read(Address + NAMES_POINTER_OFFSET) + NAME_OFFSET)); + public string VaalSkillDescription => M.ReadStringU(M.Read(M.Read(Address + NAMES_POINTER_OFFSET) + DESCRIPTION_OFFSET)); + public string VaalSkillSkillName => M.ReadStringU(M.Read(M.Read(Address + NAMES_POINTER_OFFSET) + SKILL_NAME_OFFSET)); + public string VaalSkillIcon => M.ReadStringU(M.Read(M.Read(Address + NAMES_POINTER_OFFSET) + ICON_OFFSET)); public int VaalMaxSouls => M.Read(Address + MAX_VAAL_SOULS_OFFSET); public int VaalSoulsPerUse => M.Read(Address + VAAL_SOULS_PER_USE_OFFSET); public int CurrVaalSouls => M.Read(Address + CURRENT_VAAL_SOULS_OFFSET); diff --git a/GameOffsets/ActorComponentOffsets.cs b/GameOffsets/ActorComponentOffsets.cs index 642a83ac..aaa69fe9 100644 --- a/GameOffsets/ActorComponentOffsets.cs +++ b/GameOffsets/ActorComponentOffsets.cs @@ -23,8 +23,8 @@ public struct ActorComponentOffsets [FieldOffset(0x510)] public NativePtrArray ActorSkillsArray; // Broken Offset, remove comment on fixup. - // [FieldOffset(0x540)] public NativePtrArray ActorVaalSkills; - // [FieldOffset(0x438)] public NativePtrArray HasMinionArray; + [FieldOffset(0x540)] public NativePtrArray ActorVaalSkills; + [FieldOffset(0x578)] public NativePtrArray HasMinionArray; [FieldOffset(0x578)] public NativePtrArray DeployedObjectArray; } From f5cbdd8cfa875480b0b61b39f208e608554f329e Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 10 Apr 2020 13:42:36 -0400 Subject: [PATCH 53/81] Updated Stashie to the latest --- Plugins/Source/Stashie | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Stashie b/Plugins/Source/Stashie index dc80f35c..9454871d 160000 --- a/Plugins/Source/Stashie +++ b/Plugins/Source/Stashie @@ -1 +1 @@ -Subproject commit dc80f35caa2a38aed59e94b9d9aff422f2e30190 +Subproject commit 9454871d4e2abf44fa2331a3c1e3db002ca913fb From c586518efc2babe6d6574b7fe48a6ad8de1db41d Mon Sep 17 00:00:00 2001 From: TehCheat Date: Wed, 15 Apr 2020 16:29:20 -0400 Subject: [PATCH 54/81] Updated IngameUIElementOffsets --- GameOffsets/IngameUElementsOffsets.cs | 58 +++++++++++++-------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index 703809a1..b695b055 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -7,34 +7,34 @@ public struct IngameUElementsOffsets { [FieldOffset(0x210)] public long GetQuests; [FieldOffset(0x250)] public long GameUI; - [FieldOffset(0x368)] public long Mouse; - [FieldOffset(0x370)] public long SkillBar; - [FieldOffset(0x378)] public long HiddenSkillBar; - [FieldOffset(0x478)] public long QuestTracker; - [FieldOffset(0x4E0 /*4F0*/)] public long OpenLeftPanel; - [FieldOffset(0x4E8 /*4F8*/)] public long OpenRightPanel; - [FieldOffset(0x518)] public long InventoryPanel; - [FieldOffset(0x520)] public long StashElement; - [FieldOffset(0x548)] public long TreePanel; - [FieldOffset(0x550)] public long AtlasPanel; - [FieldOffset(0x580)] public long WorldMap; - [FieldOffset(0x5A0)] public long Map; - [FieldOffset(0x5A8)] public long itemsOnGroundLabelRoot; - [FieldOffset(0x640)] public long PurchaseWindow; - [FieldOffset(0x648)] public long SellWindow; - [FieldOffset(0x688)] public long MapDeviceWindow; - [FieldOffset(0x6E0)] public long IncursionWindow; - [FieldOffset(0x700)] public long DelveWindow; - [FieldOffset(0x720)] public long BetrayalWindow; - [FieldOffset(0x728)] public long ZanaMissionChoice; - [FieldOffset(0x738)] public long CraftBenchWindow; - [FieldOffset(0x740)] public long UnveilWindow; - [FieldOffset(0x768)] public long SynthesisWindow; - [FieldOffset(0x778)] public long MetamorphWindow; - [FieldOffset(0x7C8)] public long AreaInstanceUi; - [FieldOffset(0x8A0)] public long InvitesPanel; - [FieldOffset(0x8F8)] public long GemLvlUpPanel; - [FieldOffset(0x990)] public long ItemOnGroundTooltip; - [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors + [FieldOffset(0x370)] public long Mouse; + [FieldOffset(0x378)] public long SkillBar; + [FieldOffset(0x380)] public long HiddenSkillBar; + [FieldOffset(0x480)] public long QuestTracker; + [FieldOffset(0x4E8 /*4F8*/)] public long OpenLeftPanel; + [FieldOffset(0x4F0 /*500*/)] public long OpenRightPanel; + [FieldOffset(0x520)] public long InventoryPanel; + [FieldOffset(0x528)] public long StashElement; + [FieldOffset(0x550)] public long TreePanel; + [FieldOffset(0x558)] public long AtlasPanel; + [FieldOffset(0x588)] public long WorldMap; + [FieldOffset(0x5A8)] public long Map; + [FieldOffset(0x5B0)] public long itemsOnGroundLabelRoot; + [FieldOffset(0x648)] public long PurchaseWindow; + [FieldOffset(0x650)] public long SellWindow; + [FieldOffset(0x690)] public long MapDeviceWindow; + [FieldOffset(0x6E8)] public long IncursionWindow; + [FieldOffset(0x708)] public long DelveWindow; + [FieldOffset(0x728)] public long BetrayalWindow; + [FieldOffset(0x730)] public long ZanaMissionChoice; + [FieldOffset(0x740)] public long CraftBenchWindow; + [FieldOffset(0x748)] public long UnveilWindow; + [FieldOffset(0x778)] public long SynthesisWindow; + [FieldOffset(0x788)] public long MetamorphWindow; + [FieldOffset(0x7D8)] public long AreaInstanceUi; + [FieldOffset(0x8A8)] public long InvitesPanel; + [FieldOffset(0x900)] public long GemLvlUpPanel; + [FieldOffset(0x9B0)] public long ItemOnGroundTooltip; + [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors } } From 22595249f5b1c19325a0fe6440c7df30c43d342e Mon Sep 17 00:00:00 2001 From: TehCheat Date: Wed, 15 Apr 2020 16:32:50 -0400 Subject: [PATCH 55/81] Fixed portal offsets and renamed the pointer start/end variable names --- Core/PoEMemory/MemoryObjects/IngameData.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/MemoryObjects/IngameData.cs b/Core/PoEMemory/MemoryObjects/IngameData.cs index 55d311f4..16fc4a63 100644 --- a/Core/PoEMemory/MemoryObjects/IngameData.cs +++ b/Core/PoEMemory/MemoryObjects/IngameData.cs @@ -75,10 +75,10 @@ public IList TownPortals { get { - var statPtrStart = M.Read(Address + 0x4B4); - var statPtrEnd = M.Read(Address + 0x4BC); + var portalPtrStart = M.Read(Address + 0x598); + var portalPtrEnd = M.Read(Address + 0x5A0); - return M.ReadStructsArray(statPtrStart, statPtrEnd, PortalObject.StructSize, TheGame); + return M.ReadStructsArray(portalPtrStart, portalPtrEnd, PortalObject.StructSize, TheGame); } } From 52c4e22999eb6a99e8b717fae0c08f394e954cb3 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Wed, 17 Jun 2020 16:24:17 -0400 Subject: [PATCH 56/81] Updated some 3.11 offsets --- Core/PoEMemory/Components/Player.cs | 8 +- GameOffsets/CameraOffsets.cs | 26 +-- GameOffsets/Components/Chest.cs | 112 ++++++------ GameOffsets/GameOffsets.csproj | 202 +++++++++++----------- GameOffsets/IngameDataOffsets.cs | 30 ++-- GameOffsets/IngameStateOffsets.cs | 34 ++-- GameOffsets/IngameUElementsOffsets.cs | 2 +- GameOffsets/LifeComponentOffsets.cs | 24 +-- GameOffsets/PositionedComponentOffsets.cs | 32 ++-- GameOffsets/RenderComponentOffsets.cs | 28 +-- GameOffsets/TargetableComponentOffsets.cs | 5 +- 11 files changed, 252 insertions(+), 251 deletions(-) diff --git a/Core/PoEMemory/Components/Player.cs b/Core/PoEMemory/Components/Player.cs index 24f59c81..b8c58d86 100644 --- a/Core/PoEMemory/Components/Player.cs +++ b/Core/PoEMemory/Components/Player.cs @@ -19,14 +19,14 @@ public class Player : Component public int Level => Address != 0 ? M.Read(Address + 0x1A8) : 1; public int AllocatedLootId => Address != 0 ? M.Read(Address + 0x16C) : 1; public int HideoutLevel => M.Read(Address + 0x38E); - public byte PropheciesCount => M.Read(Address + 0x212); + public byte PropheciesCount => M.Read(Address + 0x20A); public IList Prophecies { get { var result = new List(); - var readAddr = Address + 0x214; + var readAddr = Address + 0x20C; for (var i = 0; i < 7; i++) { @@ -48,8 +48,8 @@ public IList Prophecies } public HideoutWrapper Hideout => ReadObject(Address + 0x368); - public PantheonGod PantheonMinor => (PantheonGod) M.Read(Address + 0x193); - public PantheonGod PantheonMajor => (PantheonGod) M.Read(Address + 0x194); + public PantheonGod PantheonMinor => (PantheonGod) M.Read(Address + 0x1AB); + public PantheonGod PantheonMajor => (PantheonGod) M.Read(Address + 0x1AC); private IList AllocatedPassivesM() { diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 832798c2..049555f9 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -1,18 +1,18 @@ using System.Runtime.InteropServices; -using SharpDX; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct CameraOffsets - { - [FieldOffset(0x4)] public int Width; - [FieldOffset(0x8)] public int Height; +using SharpDX; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct CameraOffsets + { + [FieldOffset(0x8)] public int Width; + [FieldOffset(0xC)] public int Height; //First value is changing when we change the screen size (ratio) //4 bytes before the matrix doesn't change - [FieldOffset(0xA4)] public Matrix MatrixBytes; - [FieldOffset(0x11C)] public Vector3 Position; + [FieldOffset(0xA8)] public Matrix MatrixBytes; + [FieldOffset(0xD8)] public Vector3 Position; [FieldOffset(0x210)] public float ZFar; - } -} + } +} diff --git a/GameOffsets/Components/Chest.cs b/GameOffsets/Components/Chest.cs index ec6728ac..cd335dd9 100644 --- a/GameOffsets/Components/Chest.cs +++ b/GameOffsets/Components/Chest.cs @@ -1,56 +1,56 @@ -namespace GameOffsets.Components -{ - using System.Runtime.InteropServices; - - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct Chest - { - [FieldOffset(0x0000)] public ComponentHeader Header; - - //// This Ptr can be zero for a chest with the same Metadata path. - //// So I am not sure what this Ptr is for. I have a feeling this - //// is reminant of an old GGG code. Anyway, nothing useful inside it. - //[FieldOffset(0x0010)] public long BrokenPtr; - - //// Theory: Whenever there is a StaticPtr in a component, - //// it means some other structure is creating/using/pointing to - //// this structure from here/this offset. - //[FieldOffset(0x0018)] public long StaticPtr2; - - //// This is an array of pointers. If chest is a normal chest then it only contains - //// the tartgetable component ptr in this Array @ offset 0. - //// Whereas, if chest is a Strongbox chest then it contains - //// the targetable component ptr @ offset 0 and some other ptr @ offset 8. - //// We can use size of this NativePtrArray to figure out if it's a chest or a strongbox. - //[FieldOffset(0x0020)] public NativePtrArray ArrayOfPtr; - - //// Chest.dat data in here. it's also present @ 0x88. - [FieldOffset(0x0058)] public long ChestInternalPtr; - [FieldOffset(0x0078)] public bool IsOpened; - [FieldOffset(0x0079)] public bool IsLocked; - [FieldOffset(0x007C)] public byte Quality; - - //// 0x90, 0x98 ptrs are only available for strongboxes. - //// However, they disappear when we open the strongbox. - - //// Strongbox/Simple Chest Rarity (look at Rarity.dat). - //// Always 0 for Simple chests. - [FieldOffset(0x00B0)] public byte Rarity; - - //// ChestEffects.dat data in here. It's useless. - //[FieldOffset(0x00B8)] public long ChestEffectsPtr; - } - - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct ChestInternalStruct - { - //// No plugin uses this - //[FieldOffset(0x20)] public bool DestroyingAfterOpen; - //[FieldOffset(0x21)] public bool IsLarge; - //[FieldOffset(0x22)] public bool Stompable; - //[FieldOffset(0x25)] public bool OpenOnDamage; - //// Strongboxes.dat data in here. - //// Can be used to accurately determined if it's a strongbox or not. - [FieldOffset(0x0050)] public long StrongboxesPtr; - } -} \ No newline at end of file +namespace GameOffsets.Components +{ + using System.Runtime.InteropServices; + + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct Chest + { + [FieldOffset(0x0000)] public ComponentHeader Header; + + //// This Ptr can be zero for a chest with the same Metadata path. + //// So I am not sure what this Ptr is for. I have a feeling this + //// is reminant of an old GGG code. Anyway, nothing useful inside it. + //[FieldOffset(0x0010)] public long BrokenPtr; + + //// Theory: Whenever there is a StaticPtr in a component, + //// it means some other structure is creating/using/pointing to + //// this structure from here/this offset. + //[FieldOffset(0x0018)] public long StaticPtr2; + + //// This is an array of pointers. If chest is a normal chest then it only contains + //// the tartgetable component ptr in this Array @ offset 0. + //// Whereas, if chest is a Strongbox chest then it contains + //// the targetable component ptr @ offset 0 and some other ptr @ offset 8. + //// We can use size of this NativePtrArray to figure out if it's a chest or a strongbox. + //[FieldOffset(0x0020)] public NativePtrArray ArrayOfPtr; + + //// Chest.dat data in here. it's also present @ 0x88. + [FieldOffset(0x0058)] public long ChestInternalPtr; + [FieldOffset(0x178)] public bool IsOpened; + [FieldOffset(0x179)] public bool IsLocked; + [FieldOffset(0x17C)] public byte Quality; + + //// 0x90, 0x98 ptrs are only available for strongboxes. + //// However, they disappear when we open the strongbox. + + //// Strongbox/Simple Chest Rarity (look at Rarity.dat). + //// Always 0 for Simple chests. + [FieldOffset(0x00B0)] public byte Rarity; + + //// ChestEffects.dat data in here. It's useless. + //[FieldOffset(0x00B8)] public long ChestEffectsPtr; + } + + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct ChestInternalStruct + { + //// No plugin uses this + //[FieldOffset(0x20)] public bool DestroyingAfterOpen; + //[FieldOffset(0x21)] public bool IsLarge; + //[FieldOffset(0x22)] public bool Stompable; + //[FieldOffset(0x25)] public bool OpenOnDamage; + //// Strongboxes.dat data in here. + //// Can be used to accurately determined if it's a strongbox or not. + [FieldOffset(0x0050)] public long StrongboxesPtr; + } +} diff --git a/GameOffsets/GameOffsets.csproj b/GameOffsets/GameOffsets.csproj index 8fb39262..a735e50f 100644 --- a/GameOffsets/GameOffsets.csproj +++ b/GameOffsets/GameOffsets.csproj @@ -1,108 +1,108 @@ - - - - - Debug - AnyCPU - {38084BC9-079D-487E-B774-D2F407DC8389} - Library - Properties - GameOffsets - GameOffsets - v4.8 - 512 - - - x64 - true - full - false - ..\..\PoeHelper\ - DEBUG;TRACE - prompt - 4 - true - - - x64 - pdbonly - true - ..\..\PoeHelper\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll - False - - - ..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll - False - - - + + + + + Debug + AnyCPU + {38084BC9-079D-487E-B774-D2F407DC8389} + Library + Properties + GameOffsets + GameOffsets + v4.8 + 512 + + + x64 + true + full + false + ..\..\PoeHelper\ + DEBUG;TRACE + prompt + 4 + true + + + x64 + pdbonly + true + ..\..\PoeHelper\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll + False + + + ..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll + False + + + + --> \ No newline at end of file diff --git a/GameOffsets/IngameDataOffsets.cs b/GameOffsets/IngameDataOffsets.cs index aa0bc420..84a3b411 100644 --- a/GameOffsets/IngameDataOffsets.cs +++ b/GameOffsets/IngameDataOffsets.cs @@ -1,18 +1,18 @@ using System.Runtime.InteropServices; -using GameOffsets.Native; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct IngameDataOffsets - { - [FieldOffset(0x60)] public long CurrentArea; - [FieldOffset(0x78)] public byte CurrentAreaLevel; +using GameOffsets.Native; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct IngameDataOffsets + { + [FieldOffset(0x60)] public long CurrentArea; + [FieldOffset(0x78)] public byte CurrentAreaLevel; [FieldOffset(0xDC)] public uint CurrentAreaHash; [FieldOffset(0xF0)] public NativePtrArray MapStats; - [FieldOffset(0x408)] public long LocalPlayer; - [FieldOffset(0x11C)] public long LabDataPtr; - [FieldOffset(0x490)] public long EntityList; - [FieldOffset(0x498)] public long EntitiesCount; - } -} + [FieldOffset(0x400)] public long LocalPlayer; + [FieldOffset(0x11C)] public long LabDataPtr; + [FieldOffset(0x488)] public long EntityList; + [FieldOffset(0x490)] public long EntitiesCount; + } +} diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index 3f011eb8..33d2b090 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -1,18 +1,18 @@ using System.Runtime.InteropServices; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct IngameStateOffsets + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct IngameStateOffsets { - [FieldOffset(0x80)] public long IngameUi; + [FieldOffset(0x80)] public long IngameUi; [FieldOffset(0xA0)] public long EntityLabelMap; - [FieldOffset(0x378)] public long Data; - [FieldOffset(0x380)] public long ServerData; - [FieldOffset(0x4A8)] public long UIRoot; + [FieldOffset(0x3F8)] public long Data; + [FieldOffset(0x400)] public long ServerData; + [FieldOffset(0x528)] public long UIRoot; [FieldOffset(0x4E0)] public long UIHoverTooltip; [FieldOffset(0x4E8)] public float CurentUElementPosX; - [FieldOffset(0x4EC)] public float CurentUElementPosY; + [FieldOffset(0x4EC)] public float CurentUElementPosY; [FieldOffset(0x4F0)] public long UIHover; [FieldOffset(0x518)] public int MouseXGlobal; [FieldOffset(0x51C)] public int MouseYGlobal; @@ -22,10 +22,10 @@ public struct IngameStateOffsets [FieldOffset(0x530)] public float MouseYInGame; [FieldOffset(0x554)] public float TimeInGame; [FieldOffset(0x55C)] public float TimeInGameF; - [FieldOffset(0x570)] public int DiagnosticInfoType; - [FieldOffset(0x7A0)] public long LatencyRectangle; - [FieldOffset(0xC40)] public long FrameTimeRectangle; - [FieldOffset(0xE90)] public long FPSRectangle; - [FieldOffset(0xFE4)] public int Camera; - } -} + [FieldOffset(0x570)] public int DiagnosticInfoType; + [FieldOffset(0x7A0)] public long LatencyRectangle; + [FieldOffset(0xC40)] public long FrameTimeRectangle; + [FieldOffset(0xE90)] public long FPSRectangle; + [FieldOffset(0x1060)] public int Camera; + } +} diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index b695b055..ffcfae5d 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -34,7 +34,7 @@ public struct IngameUElementsOffsets [FieldOffset(0x7D8)] public long AreaInstanceUi; [FieldOffset(0x8A8)] public long InvitesPanel; [FieldOffset(0x900)] public long GemLvlUpPanel; - [FieldOffset(0x9B0)] public long ItemOnGroundTooltip; + [FieldOffset(0x9C8)] public long ItemOnGroundTooltip; [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors } } diff --git a/GameOffsets/LifeComponentOffsets.cs b/GameOffsets/LifeComponentOffsets.cs index 847ee53d..c12b2f7c 100644 --- a/GameOffsets/LifeComponentOffsets.cs +++ b/GameOffsets/LifeComponentOffsets.cs @@ -7,18 +7,18 @@ namespace GameOffsets public struct LifeComponentOffsets { [FieldOffset(0x8)] public long Owner; - [FieldOffset(0x180)] public NativePtrArray Buffs; - [FieldOffset(0x190)] public float Regen; - [FieldOffset(0x1BC)] public int MaxMana; - [FieldOffset(0x1B8)] public float ManaRegen; - [FieldOffset(0x1C0)] public int ReservedFlatMana; - [FieldOffset(0x1C4)] public int CurMana; - [FieldOffset(0x1C8)] public int ReservedPercentMana; - [FieldOffset(0x1F4)] public int MaxES; - [FieldOffset(0x1FC)] public int CurES; - [FieldOffset(0x254)] public int MaxHP; - [FieldOffset(0x258)] public int ReservedFlatHP; - [FieldOffset(0x25C)] public int CurHP; + [FieldOffset(0x180)] public NativePtrArray Buffs; + [FieldOffset(0x190)] public float Regen; + [FieldOffset(0x1B8)] public float ManaRegen; + [FieldOffset(0x1BC)] public int MaxMana; + [FieldOffset(0x1C0)] public int ReservedFlatMana; + [FieldOffset(0x1C4)] public int CurMana; + [FieldOffset(0x1C8)] public int ReservedPercentMana; + [FieldOffset(0x1F4)] public int MaxES; + [FieldOffset(0x1FC)] public int CurES; + [FieldOffset(0x254)] public int MaxHP; + [FieldOffset(0x258)] public int ReservedFlatHP; + [FieldOffset(0x25C)] public int CurHP; [FieldOffset(0x260)] public int ReservedPercentHP; } } diff --git a/GameOffsets/PositionedComponentOffsets.cs b/GameOffsets/PositionedComponentOffsets.cs index e836017c..e8940bac 100644 --- a/GameOffsets/PositionedComponentOffsets.cs +++ b/GameOffsets/PositionedComponentOffsets.cs @@ -1,22 +1,22 @@ using System.Runtime.InteropServices; -using SharpDX; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct PositionedComponentOffsets - { +using SharpDX; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct PositionedComponentOffsets + { [FieldOffset(8)] public long OwnerAddress; [FieldOffset(0x158)] public byte Reaction; [FieldOffset(0x164)] public int Size; [FieldOffset(0x1AC)] public Vector2 PrevPosition; [FieldOffset(0x1C4)] public Vector2 RelativeCoord; - [FieldOffset(0x1E0)] public Vector2 GridPosition; - [FieldOffset(0x1E0)] public int GridX; - [FieldOffset(0x1E4)] public int GridY; - [FieldOffset(0x1E8)] public float Rotation; - [FieldOffset(0x210)] public Vector2 WorldPosition; - [FieldOffset(0x210)] public float WorldX; - [FieldOffset(0x214)] public float WorldY; - } -} + [FieldOffset(0x1E8)] public Vector2 GridPosition; + [FieldOffset(0x1E8)] public int GridX; + [FieldOffset(0x1EC)] public int GridY; + [FieldOffset(0x1F0)] public float Rotation; + [FieldOffset(0x218)] public Vector2 WorldPosition; + [FieldOffset(0x218)] public float WorldX; + [FieldOffset(0x21C)] public float WorldY; + } +} diff --git a/GameOffsets/RenderComponentOffsets.cs b/GameOffsets/RenderComponentOffsets.cs index d12db4a2..a7f3514b 100644 --- a/GameOffsets/RenderComponentOffsets.cs +++ b/GameOffsets/RenderComponentOffsets.cs @@ -1,16 +1,16 @@ using System.Runtime.InteropServices; -using GameOffsets.Native; -using SharpDX; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct RenderComponentOffsets - { - [FieldOffset(0x80)] public Vector3 Pos; - [FieldOffset(0x8C)] public Vector3 Bounds; - [FieldOffset(0xA0)] public NativeStringU Name; +using GameOffsets.Native; +using SharpDX; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct RenderComponentOffsets + { + [FieldOffset(0x80)] public Vector3 Pos; + [FieldOffset(0x8C)] public Vector3 Bounds; + [FieldOffset(0xA0)] public NativeStringU Name; [FieldOffset(0xC0)] public Vector3 Rotation; - [FieldOffset(0xE8)] public float Height; - } -} + [FieldOffset(0xE0)] public float Height; + } +} diff --git a/GameOffsets/TargetableComponentOffsets.cs b/GameOffsets/TargetableComponentOffsets.cs index 2d546787..b639dd23 100644 --- a/GameOffsets/TargetableComponentOffsets.cs +++ b/GameOffsets/TargetableComponentOffsets.cs @@ -5,7 +5,8 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct TargetableComponentOffsets { - [FieldOffset(0x30)] public bool isTargetable; - [FieldOffset(0x32)] public bool isTargeted; + [FieldOffset(0x48)] public bool isTargetable; + [FieldOffset(0x49)] public bool isHighlightable; + [FieldOffset(0x4A)] public bool isTargeted; } } From 7c637de5ead3e520ecb0acd86beb1e35bf170798 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 20 Jun 2020 23:52:37 -0400 Subject: [PATCH 57/81] Updated more offsets for 3.11. Added stridemann's fix for file iteration --- Core/PoEMemory/FilesFromMemory.cs | 49 +++++++++++----- Core/PoEMemory/MemoryObjects/ServerData.cs | 16 +++--- GameOffsets/CameraOffsets.cs | 4 +- GameOffsets/FilesOffsets.cs | 20 ++++--- GameOffsets/IngameStateOffsets.cs | 40 ++++++------- GameOffsets/RenderComponentOffsets.cs | 10 ++-- GameOffsets/ServerDataOffsets.cs | 66 +++++++++++----------- 7 files changed, 113 insertions(+), 92 deletions(-) diff --git a/Core/PoEMemory/FilesFromMemory.cs b/Core/PoEMemory/FilesFromMemory.cs index cfcfd854..91cd5279 100644 --- a/Core/PoEMemory/FilesFromMemory.cs +++ b/Core/PoEMemory/FilesFromMemory.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; +using System.Diagnostics; using System.Threading.Tasks; using ExileCore.Shared.Enums; using ExileCore.Shared.Helpers; @@ -39,28 +40,46 @@ public Dictionary GetAllFiles() { var files = new ConcurrentDictionary(); var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; - var start = mem.Read(fileRoot + 0x8); - var filesPointer = mem.ReadListPointer(new IntPtr(start)); + Parallel.For(0, 256, (i) => + { + var addr = fileRoot + i * 0x40; + var fileChunkStruct = mem.Read(addr); - Parallel.ForEach(filesPointer, p => + ReadDictionary(fileChunkStruct.ListPtr, files); + }); + + return files.ToDictionary(); + } + + public void ReadDictionary(long head, ConcurrentDictionary dictionary) + { + var node = mem.Read(head); + + var sw = Stopwatch.StartNew(); + var headLong = head; + + while (headLong != node.Next) { - var filesOffsets = mem.Read(p); + if (sw.ElapsedMilliseconds > 2000) + { + Core.Logger.Error($"ReadDictionary error. Elapsed: {sw.ElapsedMilliseconds}"); + return; + } + + var filesOffsets = mem.Read(node.Value); var advancedInformation = mem.Read(filesOffsets.MoreInformation); if (advancedInformation.String.buf == 0) return; - /*var str = RemoteMemoryObject.Cache.StringCache.Read($"{nameof(FilesFromMemory)}{advancedInformation.String.buf}", - () => advancedInformation.String.ToString(mem));*/ - var str = advancedInformation.String.ToString(mem); - if (str.Length <= 0) return; + var key = mem.ReadStringU(node.Key); - files.TryAdd( - str, - new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, advancedInformation.Test1, - advancedInformation.Test2)); - }); + if (dictionary.ContainsKey(key)) + Core.Logger.Error($"ReadDictionary error. Already contains key: {key}. Value: {node.Value:X}"); + else + dictionary[key] = new FileInformation(node.Value, advancedInformation.AreaCount, advancedInformation.Test1, advancedInformation.Test2); - return files.ToDictionary(); + node = mem.Read(node.Next); + } } public Dictionary GetAllFilesSync() @@ -73,6 +92,7 @@ public Dictionary GetAllFilesSync() foreach (var p in filesPointer) { var filesOffsets = mem.Read(p); + /* var advancedInformation = mem.Read(filesOffsets.MoreInformation); if (advancedInformation.String.buf == 0) continue; @@ -83,6 +103,7 @@ public Dictionary GetAllFilesSync() files[str] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, advancedInformation.Test1, advancedInformation.Test2); + */ } return files; diff --git a/Core/PoEMemory/MemoryObjects/ServerData.cs b/Core/PoEMemory/MemoryObjects/ServerData.cs index 451e0aae..bfdf3765 100644 --- a/Core/PoEMemory/MemoryObjects/ServerData.cs +++ b/Core/PoEMemory/MemoryObjects/ServerData.cs @@ -67,12 +67,12 @@ public int GetBeastCapturedAmount(BestiaryCapturableMonster monster) #region PlayerData public ushort LastActionId => ServerDataStruct.LastActionId; - public int CharacterLevel => ServerDataStruct.CharacterLevel; - public int PassiveRefundPointsLeft => ServerDataStruct.PassiveRefundPointsLeft; - public int FreePassiveSkillPointsLeft => ServerDataStruct.FreePassiveSkillPointsLeft; - public int QuestPassiveSkillPoints => ServerDataStruct.QuestPassiveSkillPoints; - public int TotalAscendencyPoints => ServerDataStruct.TotalAscendencyPoints; - public int SpentAscendencyPoints => ServerDataStruct.SpentAscendencyPoints; + //public int CharacterLevel => ServerDataStruct.CharacterLevel; + //public int PassiveRefundPointsLeft => ServerDataStruct.PassiveRefundPointsLeft; + //public int FreePassiveSkillPointsLeft => ServerDataStruct.FreePassiveSkillPointsLeft; + //public int QuestPassiveSkillPoints => ServerDataStruct.QuestPassiveSkillPoints; + //public int TotalAscendencyPoints => ServerDataStruct.TotalAscendencyPoints; + //public int SpentAscendencyPoints => ServerDataStruct.SpentAscendencyPoints; public PartyAllocation PartyAllocationType => (PartyAllocation) ServerDataStruct.PartyAllocationType; public string League => ServerDataStruct.League.ToString(M); public PartyStatus PartyStatusType => (PartyStatus) this.ServerDataStruct.PartyStatusType; @@ -117,8 +117,8 @@ public IList PassiveSkillIds { if (Address == 0) return null; - var fisrPtr = ServerDataStruct.PassiveSkillIds.First; - var endPtr = ServerDataStruct.PassiveSkillIds.Last; + var fisrPtr = 0;//ServerDataStruct.PassiveSkillIds.First; + var endPtr = 0;// ServerDataStruct.PassiveSkillIds.Last; var totalStats = (int) (endPtr - fisrPtr); var bytes = M.ReadMem(fisrPtr, totalStats); var res = new List(); diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 049555f9..2e9d6263 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -11,8 +11,8 @@ public struct CameraOffsets //First value is changing when we change the screen size (ratio) //4 bytes before the matrix doesn't change [FieldOffset(0xA8)] public Matrix MatrixBytes; - [FieldOffset(0xD8)] public Vector3 Position; - [FieldOffset(0x210)] public float ZFar; + [FieldOffset(0x120)] public Vector3 Position; + [FieldOffset(0x214)] public float ZFar; } } diff --git a/GameOffsets/FilesOffsets.cs b/GameOffsets/FilesOffsets.cs index b8672ae0..5ed55c0a 100644 --- a/GameOffsets/FilesOffsets.cs +++ b/GameOffsets/FilesOffsets.cs @@ -2,19 +2,21 @@ using GameOffsets.Native; namespace GameOffsets -{ +{ [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct FilesOffsets { - [FieldOffset(0x10)] public long String; + [FieldOffset(0x8)] public long ListPtr; + [FieldOffset(0x18)] public long MoreInformation; + } - [FieldOffset(0x18)] public long MoreInformation; - /*public string ToString(IMemory mem) { - var size = mem.Read(MoreInformation); - if (size.Size < 512) - return mem.ReadStringU(String.ToInt64(), (int) (size.Size * 2)); - return mem.ReadStringU(String.ToInt64()); - }*/ + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct FileNode + { + public long Next; + public long Prev; + public long Key; + public long Value; } [StructLayout(LayoutKind.Explicit, Pack = 1)] diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index 33d2b090..731680c7 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -7,25 +7,25 @@ public struct IngameStateOffsets { [FieldOffset(0x80)] public long IngameUi; [FieldOffset(0xA0)] public long EntityLabelMap; - [FieldOffset(0x3F8)] public long Data; - [FieldOffset(0x400)] public long ServerData; - [FieldOffset(0x528)] public long UIRoot; - [FieldOffset(0x4E0)] public long UIHoverTooltip; - [FieldOffset(0x4E8)] public float CurentUElementPosX; - [FieldOffset(0x4EC)] public float CurentUElementPosY; - [FieldOffset(0x4F0)] public long UIHover; - [FieldOffset(0x518)] public int MouseXGlobal; - [FieldOffset(0x51C)] public int MouseYGlobal; - [FieldOffset(0x524)] public float UIHoverX; - [FieldOffset(0x528)] public float UIHoverY; - [FieldOffset(0x52C)] public float MouseXInGame; - [FieldOffset(0x530)] public float MouseYInGame; - [FieldOffset(0x554)] public float TimeInGame; - [FieldOffset(0x55C)] public float TimeInGameF; - [FieldOffset(0x570)] public int DiagnosticInfoType; - [FieldOffset(0x7A0)] public long LatencyRectangle; - [FieldOffset(0xC40)] public long FrameTimeRectangle; - [FieldOffset(0xE90)] public long FPSRectangle; - [FieldOffset(0x1060)] public int Camera; + [FieldOffset(0x478)] public long Data; + [FieldOffset(0x480)] public long ServerData; + [FieldOffset(0x5A8)] public long UIRoot; + [FieldOffset(0x5E0)] public long UIHoverTooltip; + [FieldOffset(0x5E8)] public float CurentUElementPosX; + [FieldOffset(0x5EC)] public float CurentUElementPosY; + [FieldOffset(0x5F0)] public long UIHover; + [FieldOffset(0x618)] public int MouseXGlobal; + [FieldOffset(0x61C)] public int MouseYGlobal; + [FieldOffset(0x624)] public float UIHoverX; + [FieldOffset(0x628)] public float UIHoverY; + [FieldOffset(0x62C)] public float MouseXInGame; + [FieldOffset(0x630)] public float MouseYInGame; + [FieldOffset(0x654)] public float TimeInGame; + [FieldOffset(0x65C)] public float TimeInGameF; + [FieldOffset(0x670)] public int DiagnosticInfoType; + [FieldOffset(0x8A0)] public long LatencyRectangle; + [FieldOffset(0xD40)] public long FrameTimeRectangle; + [FieldOffset(0xF90)] public long FPSRectangle; + [FieldOffset(0x10E0)] public int Camera; } } diff --git a/GameOffsets/RenderComponentOffsets.cs b/GameOffsets/RenderComponentOffsets.cs index a7f3514b..d19e5091 100644 --- a/GameOffsets/RenderComponentOffsets.cs +++ b/GameOffsets/RenderComponentOffsets.cs @@ -7,10 +7,10 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct RenderComponentOffsets { - [FieldOffset(0x80)] public Vector3 Pos; - [FieldOffset(0x8C)] public Vector3 Bounds; - [FieldOffset(0xA0)] public NativeStringU Name; - [FieldOffset(0xC0)] public Vector3 Rotation; - [FieldOffset(0xE0)] public float Height; + [FieldOffset(0x90)] public Vector3 Pos; + [FieldOffset(0x9C)] public Vector3 Bounds; + [FieldOffset(0xA0)] public NativeStringU Name; + [FieldOffset(0xD0)] public Vector3 Rotation; + [FieldOffset(0xF8)] public float Height; } } diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 3922975e..9e5a63fb 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -27,39 +27,37 @@ public struct ServerDataOffsets public const int Skip = 0x5000; public const int ATLAS_REGION_UPGRADES = 0x7782; [FieldOffset(0)] public long MasterAreas; - [FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; - [FieldOffset(0x7108 - Skip)] public byte PlayerClass; - [FieldOffset(0x710C - Skip)] public int CharacterLevel; - [FieldOffset(0x7110 - Skip)] public int PassiveRefundPointsLeft; - [FieldOffset(0x7114 - Skip)] public int QuestPassiveSkillPoints; - [FieldOffset(0x7118 - Skip)] public int FreePassiveSkillPointsLeft;//TODO: 3.8.1 fix me - [FieldOffset(0x711C - Skip)] public int TotalAscendencyPoints; - [FieldOffset(0x7120 - Skip)] public int SpentAscendencyPoints; - [FieldOffset(0x7188 - Skip)] public byte NetworkState; - [FieldOffset(0x71A0 - Skip)] public NativeStringU League; - [FieldOffset(0x7220 - Skip)] public float TimeInGame; - [FieldOffset(0x7228 - Skip)] public int Latency; - [FieldOffset(0x7238 - Skip)] public NativePtrArray PlayerStashTabs; - [FieldOffset(0x7250 - Skip)] public NativePtrArray GuildStashTabs; - [FieldOffset(0x7350 - Skip)] public byte PartyStatusType; - [FieldOffset(0x7360 - Skip)] public byte PartyAllocationType; - [FieldOffset(0x7360 - Skip)] public long GuildName; - [FieldOffset(0x73F0 - Skip)] public SkillBarIdsStruct SkillBarIds; - [FieldOffset(0x7440 - Skip)] public NativePtrArray NearestPlayers; - [FieldOffset(0x7548 - Skip)] public NativePtrArray PlayerInventories; - [FieldOffset(0x7618 - Skip)] public NativePtrArray NPCInventories; - [FieldOffset(0x76D0 - Skip)] public NativePtrArray GuildInventories; - [FieldOffset(0x7828 - Skip)] public ushort TradeChatChannel; - [FieldOffset(0x7830 - Skip)] public ushort GlobalChatChannel; - [FieldOffset(0x787C - Skip)] public ushort LastActionId;//Do we need this? - [FieldOffset(0x78F0 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset - [FieldOffset(0x78F8 - Skip)] public long BonusCompletedAreas; - [FieldOffset(0x7440 - Skip)] public long ElderInfluencedAreas; - [FieldOffset(0x7660 - Skip)] public long ElderGuardiansAreas; //Maybe wrong not tested - [FieldOffset(0x7930 - Skip)] public long ShapedAreas; //Maybe wrong not tested - [FieldOffset(0x842C - Skip)] public byte MonsterLevel; - [FieldOffset(0x842D - Skip)] public byte MonstersRemaining; - [FieldOffset(0x84E0 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested - [FieldOffset(0x84EC - Skip)] public int CurrentAzuriteAmount; + //[FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; + [FieldOffset(0x72B0 - Skip)] public byte PlayerClass; + //[FieldOffset(0x710C - Skip)] public int CharacterLevel; + //[FieldOffset(0x7110 - Skip)] public int PassiveRefundPointsLeft; + //[FieldOffset(0x7114 - Skip)] public int QuestPassiveSkillPoints; + //[FieldOffset(0x7118 - Skip)] public int FreePassiveSkillPointsLeft;//TODO: 3.8.1 fix me + //[FieldOffset(0x711C - Skip)] public int TotalAscendencyPoints; + //[FieldOffset(0x7120 - Skip)] public int SpentAscendencyPoints; + [FieldOffset(0x7328 - Skip)] public byte NetworkState; + [FieldOffset(0x7350 - Skip)] public NativeStringU League; + [FieldOffset(0x73C0 - Skip)] public float TimeInGame; + [FieldOffset(0x73C8 - Skip)] public int Latency; + [FieldOffset(0x73D8 - Skip)] public NativePtrArray PlayerStashTabs; + [FieldOffset(0x73F0 - Skip)] public NativePtrArray GuildStashTabs; + [FieldOffset(0x74F0 - Skip)] public byte PartyStatusType; + [FieldOffset(0x7500 - Skip)] public byte PartyAllocationType; + [FieldOffset(0x7588 - Skip)] public long GuildName; + [FieldOffset(0x7590 - Skip)] public SkillBarIdsStruct SkillBarIds; + [FieldOffset(0x75E8 - Skip)] public NativePtrArray NearestPlayers; + [FieldOffset(0x76F0 - Skip)] public NativePtrArray PlayerInventories; + [FieldOffset(0x77C8 - Skip)] public NativePtrArray NPCInventories; + [FieldOffset(0x7880 - Skip)] public NativePtrArray GuildInventories; + [FieldOffset(0x79E0 - Skip)] public ushort TradeChatChannel; + [FieldOffset(0x79E8 - Skip)] public ushort GlobalChatChannel; + [FieldOffset(0x7A38 - Skip)] public ushort LastActionId;//Do we need this? + [FieldOffset(0x7AB0 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset + [FieldOffset(0x7AF0 - Skip)] public long BonusCompletedAreas; + [FieldOffset(0x7B30 - Skip)] public long AwakenedAreas; + [FieldOffset(0x85E4 - Skip)] public byte MonsterLevel; + [FieldOffset(0x85e5 - Skip)] public byte MonstersRemaining; + [FieldOffset(0x8698 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested + [FieldOffset(0x86A4 - Skip)] public int CurrentAzuriteAmount; } } From 149378e765ec7ed1a24babc0d0247612827dc4f6 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 21 Jun 2020 01:26:36 -0400 Subject: [PATCH 58/81] Updated fileRootPattern --- Core/PoEMemory/Offsets.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Core/PoEMemory/Offsets.cs b/Core/PoEMemory/Offsets.cs index d6283ccc..2c8465dc 100644 --- a/Core/PoEMemory/Offsets.cs +++ b/Core/PoEMemory/Offsets.cs @@ -42,12 +42,8 @@ public class Offsets private static readonly Pattern fileRootPattern = new Pattern(new byte[] { - 0x65, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, - 0x48, 0x8b, 0x08, - 0x48, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x8B, 0x04, 0x0E, - 0x39, 0x05 - }, "xxxxx????xxxxx?????xxxxx", "File Root", + 0x48, 0x8D, 0x2D, 0x00, 0x00, 0x00, 0x00, 0x41, 0x8B, 0x00, 0x00, 0x39 + }, "xxx????xx??x", "File Root", 14630000); /* Area Change @@ -138,7 +134,7 @@ public Dictionary DoPatternScans(IMemory m) // long InGameState = m.Read(Base + BaseAddress, 0x8, 0xF8, 0x38); // System.Console.WriteLine("InGameState: " + InGameState.ToString("x8")); - FileRoot = m.Read(baseAddress + array[index] + 15) + array[index] + 19; + FileRoot = m.Read(baseAddress + array[index] + 0x3) + array[index] + 0x7; index++; // System.Console.WriteLine("FileRoot Pointer: " + (FileRoot + m.AddressOfProcess).ToString("x8")); From ebc51a92f159d1a55b6f8867d2d7d15ec6f54cfc Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 21 Jun 2020 01:45:44 -0400 Subject: [PATCH 59/81] Updated AreaChangeCount. --- Core/PoEMemory/Offsets.cs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Core/PoEMemory/Offsets.cs b/Core/PoEMemory/Offsets.cs index 2c8465dc..69dca240 100644 --- a/Core/PoEMemory/Offsets.cs +++ b/Core/PoEMemory/Offsets.cs @@ -68,15 +68,8 @@ public class Offsets new Pattern( new byte[] { - 0x74, 0x11, - 0x41, 0x8b, 0xc7, - 0xf0, - 0x0f, 0xc1, 0x01, - 0x8b, 0x05, 0x01, 0x7d, 0x61, 0x01, - 0x41, 0x89, 0x40, 0x38, - 0x49, 0x8b, 0x55, 0x08, - 0x48, 0x85, 0xd2 - }, "x??x?xxx?x??????x???x???x?", "Area change", 9430000); + 0xE8, 0x00, 0x00, 0x00, 0x00, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x05 + }, "x????x????xx", "Area change", 9430000); /* PathOfExile_x64.exe+853E28 - 48 89 05 E9ABC400 - mov [PathOfExile_x64.exe+149EA18],rax { [00000000] } @@ -139,7 +132,7 @@ public Dictionary DoPatternScans(IMemory m) // System.Console.WriteLine("FileRoot Pointer: " + (FileRoot + m.AddressOfProcess).ToString("x8")); - AreaChangeCount = m.Read(baseAddress + array[index] + 11) + array[index] + 15; + AreaChangeCount = m.Read(baseAddress + array[index] + 0xC) + array[index] + 0x10; index++; // System.Console.WriteLine("AreaChangeCount: " + m.ReadInt(AreaChangeCount + m.AddressOfProcess).ToString()); From 093a26530a7818716e269e996fbcf82aa637af2f Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 21 Jun 2020 01:51:06 -0400 Subject: [PATCH 60/81] various FilesFromMemory fixes --- Core/PoEMemory/FilesFromMemory.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Core/PoEMemory/FilesFromMemory.cs b/Core/PoEMemory/FilesFromMemory.cs index 91cd5279..ccce44f1 100644 --- a/Core/PoEMemory/FilesFromMemory.cs +++ b/Core/PoEMemory/FilesFromMemory.cs @@ -76,7 +76,7 @@ public void ReadDictionary(long head, ConcurrentDictionary(node.Next); } @@ -92,7 +92,6 @@ public Dictionary GetAllFilesSync() foreach (var p in filesPointer) { var filesOffsets = mem.Read(p); - /* var advancedInformation = mem.Read(filesOffsets.MoreInformation); if (advancedInformation.String.buf == 0) continue; @@ -103,7 +102,6 @@ public Dictionary GetAllFilesSync() files[str] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, advancedInformation.Test1, advancedInformation.Test2); - */ } return files; From 209b5034eeda097fdf7ab2c0c747ade1b7633f76 Mon Sep 17 00:00:00 2001 From: Stridemann Date: Sat, 20 Jun 2020 19:27:47 +0300 Subject: [PATCH 61/81] fixed some offsets --- Core/PoEMemory/FilesFromMemory.cs | 217 +- Core/PoEMemory/Offsets.cs | 4 +- Core/Shared/Enums/GameStat.cs | 118531 ++++++++++--------- GameOffsets/ActorComponentOffsets.cs | 2 +- GameOffsets/CameraOffsets.cs | 2 +- GameOffsets/Components/Life.cs | 20 +- GameOffsets/Components/Player.cs | 18 +- GameOffsets/Components/Render.cs | 4 +- GameOffsets/Components/Targetable.cs | 6 +- GameOffsets/FilesOffsets.cs | 48 +- GameOffsets/IngameDataOffsets.cs | 2 +- GameOffsets/IngameStateOffsets.cs | 4 +- GameOffsets/IngameUElementsOffsets.cs | 4 +- GameOffsets/ModsComponentOffsets.cs | 48 +- GameOffsets/PositionedComponentOffsets.cs | 2 +- 15 files changed, 60798 insertions(+), 58114 deletions(-) diff --git a/Core/PoEMemory/FilesFromMemory.cs b/Core/PoEMemory/FilesFromMemory.cs index ccce44f1..8778b837 100644 --- a/Core/PoEMemory/FilesFromMemory.cs +++ b/Core/PoEMemory/FilesFromMemory.cs @@ -1,110 +1,111 @@ -using System; -using System.Collections.Concurrent; -using System.Collections.Generic; -using System.Diagnostics; -using System.Threading.Tasks; -using ExileCore.Shared.Enums; -using ExileCore.Shared.Helpers; -using ExileCore.Shared.Interfaces; -using GameOffsets; -using MoreLinq; - -namespace ExileCore.PoEMemory -{ - public struct FileInformation - { - public FileInformation(long ptr, int changeCount, int test1, int test2) - { - Ptr = ptr; - ChangeCount = changeCount; - Test1 = test1; - Test2 = test2; - } - - public long Ptr { get; } - public int ChangeCount { get; } - public int Test1 { get; } - public int Test2 { get; } - } - - public class FilesFromMemory - { - private readonly IMemory mem; - - public FilesFromMemory(IMemory memory) - { - mem = memory; - } - - public Dictionary GetAllFiles() - { - var files = new ConcurrentDictionary(); - var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; - - Parallel.For(0, 256, (i) => - { - var addr = fileRoot + i * 0x40; - var fileChunkStruct = mem.Read(addr); - - ReadDictionary(fileChunkStruct.ListPtr, files); +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.Threading.Tasks; +using ExileCore.PoEMemory.MemoryObjects; +using ExileCore.Shared.Enums; +using ExileCore.Shared.Helpers; +using ExileCore.Shared.Interfaces; +using GameOffsets; +using GameOffsets.Native; +using MoreLinq; + +namespace ExileCore.PoEMemory +{ + public struct FileInformation + { + public FileInformation(long ptr, int changeCount) + { + Ptr = ptr; + ChangeCount = changeCount; + } + + public long Ptr { get; } + public int ChangeCount { get; } + } + + public class FilesFromMemory + { + private readonly IMemory mem; + + public FilesFromMemory(IMemory memory) + { + mem = memory; + } + + public Dictionary GetAllFiles() + { + var files = new ConcurrentDictionary(); + var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; + + Parallel.For(0, 256, (i) => + { + var readAddress = fileRoot + i * 0x40; + var fileChunkStruct = mem.Read(readAddress); + + ReadDictionary(fileChunkStruct.ListPtr, files); }); + + return files.ToDictionary(); + } + + public void ReadDictionary(long head, ConcurrentDictionary dictionary) + { + var node = mem.Read(head); + + var sw = Stopwatch.StartNew(); + var headLong = head; + + while (headLong != node.Next) + { + if (sw.ElapsedMilliseconds > 2000) + { + Core.Logger.Error($"ReadDictionary error. Elapsed: {sw.ElapsedMilliseconds}"); + return; + } + + var key = mem.ReadStringU(node.Key); + + if (dictionary.ContainsKey(key)) + Core.Logger.Error($"ReadDictionary error. Already contains key: {key}. Value: {node.Value:X}"); + else + { + var changeCount = mem.Read(node.Value + 0x38); + dictionary[key] = new FileInformation(node.Value, changeCount); + } + + node = mem.Read(node.Next); + } + } + + public Dictionary GetAllFilesSync() + { + var files = new Dictionary(); + throw new NotImplementedException(); + //var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; + //var start = mem.Read(fileRoot + 0x8); + //var filesPointer = mem.ReadListPointer(new IntPtr(start)); + + //foreach (var p in filesPointer) + //{ + // var filesOffsets = mem.Read(p); + // var advancedInformation = mem.Read(filesOffsets.MoreInformation); + // if (advancedInformation.String.buf == 0) continue; + + // var str = RemoteMemoryObject.Cache.StringCache.Read( + // $"{nameof(FilesFromMemory)}{advancedInformation.String.buf}", + // () => advancedInformation.String.ToString(mem)); + + // if (str.Length <= 0) continue; + + // files[str] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, + // advancedInformation.Test1, + // advancedInformation.Test2); + //} - return files.ToDictionary(); - } - - public void ReadDictionary(long head, ConcurrentDictionary dictionary) - { - var node = mem.Read(head); - - var sw = Stopwatch.StartNew(); - var headLong = head; - - while (headLong != node.Next) - { - if (sw.ElapsedMilliseconds > 2000) - { - Core.Logger.Error($"ReadDictionary error. Elapsed: {sw.ElapsedMilliseconds}"); - return; - } - - var filesOffsets = mem.Read(node.Value); - var advancedInformation = mem.Read(filesOffsets.MoreInformation); - if (advancedInformation.String.buf == 0) return; - - var key = mem.ReadStringU(node.Key); - - if (dictionary.ContainsKey(key)) - Core.Logger.Error($"ReadDictionary error. Already contains key: {key}. Value: {node.Value:X}"); - else - dictionary[key] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, advancedInformation.Test1, advancedInformation.Test2); - - node = mem.Read(node.Next); - } - } - - public Dictionary GetAllFilesSync() - { - var files = new Dictionary(); - var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; - var start = mem.Read(fileRoot + 0x8); - var filesPointer = mem.ReadListPointer(new IntPtr(start)); - - foreach (var p in filesPointer) - { - var filesOffsets = mem.Read(p); - var advancedInformation = mem.Read(filesOffsets.MoreInformation); - if (advancedInformation.String.buf == 0) continue; - - var str = RemoteMemoryObject.Cache.StringCache.Read($"{nameof(FilesFromMemory)}{advancedInformation.String.buf}", - () => advancedInformation.String.ToString(mem)); - - if (str.Length <= 0) continue; - - files[str] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, advancedInformation.Test1, - advancedInformation.Test2); - } - - return files; - } - } -} + return files; + } + } +} \ No newline at end of file diff --git a/Core/PoEMemory/Offsets.cs b/Core/PoEMemory/Offsets.cs index 69dca240..6ca67158 100644 --- a/Core/PoEMemory/Offsets.cs +++ b/Core/PoEMemory/Offsets.cs @@ -42,9 +42,9 @@ public class Offsets private static readonly Pattern fileRootPattern = new Pattern(new byte[] { - 0x48, 0x8D, 0x2D, 0x00, 0x00, 0x00, 0x00, 0x41, 0x8B, 0x00, 0x00, 0x39 + 0x48, 0x8D, 0x2D , 0x00 , 0x00, 0x00, 0x00 , 0x41 , 0x8B , 0x00 , 0x00 , 0x39 }, "xxx????xx??x", "File Root", - 14630000); + 000000); /* Area Change 00007FF63317CE40 | 48 83 EC 58 | sub rsp,58 | diff --git a/Core/Shared/Enums/GameStat.cs b/Core/Shared/Enums/GameStat.cs index e9dd54ee..afcd3020 100644 --- a/Core/Shared/Enums/GameStat.cs +++ b/Core/Shared/Enums/GameStat.cs @@ -1,59456 +1,62151 @@ -namespace ExileCore.Shared.Enums -{ - public enum GameStat +namespace ExileCore.Shared.Enums +{ + public enum GameStat { - /// - /// Level - /// + /// + /// Level + /// Level = 1, - /// - /// Item Drop Slots - /// + /// + /// Item Drop Slots + /// ItemDropSlots = 2, - /// - /// Main Hand Weapon Type - /// + /// + /// Main Hand Weapon Type + /// MainHandWeaponType = 3, - /// - /// Off Hand Weapon Type - /// + /// + /// Off Hand Weapon Type + /// OffHandWeaponType = 4, - /// - /// Endurance Charges - /// + /// + /// Endurance Charges + /// CurrentEnduranceCharges = 5, - /// - /// Frenzy Charges - /// + /// + /// Frenzy Charges + /// CurrentFrenzyCharges = 6, - /// - /// Power Charges - /// + /// + /// Power Charges + /// CurrentPowerCharges = 7, - /// - /// Cannot be Life-Leeched - /// + /// + /// Cannot be Life-Leeched + /// CannotHaveLifeLeechedFrom = 8, - /// - /// Cannot be Mana-Leeched - /// + /// + /// Cannot be Mana-Leeched + /// CannotHaveManaLeechedFrom = 9, - /// - /// Experience From Slain Monsters - /// + /// + /// Experience From Slain Monsters + /// MonsterSlainExperiencePct = 10, - /// - /// Rarity of Items Dropped by Monsters - /// + /// + /// Rarity of Items Dropped by Monsters + /// MonsterDroppedItemRarityPct = 11, - /// - /// Quantity of Items Dropped by Monsters - /// + /// + /// Quantity of Items Dropped by Monsters + /// MonsterDroppedItemQuantityPct = 12, - /// - /// Local Flask Life to Recover - /// + /// + /// Local Flask Life to Recover + /// LocalFlaskLifeToRecover = 13, - /// - /// Local Flask Life to Recover +% - /// + /// + /// Local Flask Life to Recover +% + /// LocalFlaskLifeToRecoverPct = 14, - /// - /// Local Flask Mana to Recover - /// + /// + /// Local Flask Mana to Recover + /// LocalFlaskManaToRecover = 15, - /// - /// Local Flask Mana to Recover +% - /// + /// + /// Local Flask Mana to Recover +% + /// LocalFlaskManaToRecoverPct = 16, - /// - /// Local Flask Recovery Speed +% - /// + /// + /// Local Flask Recovery Speed +% + /// LocalFlaskRecoverySpeedPct = 17, - /// - /// Time to Recover - /// + /// + /// Time to Recover + /// LocalFlaskDecisecondsToRecover = 18, - /// - /// Local Extra Charges - /// + /// + /// Local Extra Charges + /// LocalExtraMaxCharges = 19, - /// - /// Shield Block Chance - /// + /// + /// Shield Block Chance + /// ShieldBlockPct = 20, - /// - /// old_do_not_use_spell_block_%_from_assumed_block_value - /// + /// + /// old_do_not_use_spell_block_%_from_assumed_block_value + /// OldDoNotUseSpellBlockPctFromAssumedBlockValue = 21, - /// - /// Blocking while Dual Wielding - /// + /// + /// Blocking while Dual Wielding + /// BlockWhileDualWieldingPct = 22, - /// - /// Block Recovery Increase - /// + /// + /// Block Recovery Increase + /// BlockRecoveryPct = 23, - /// - /// Shield Armour - /// + /// + /// Shield Armour + /// ShieldArmourPct = 24, - /// - /// All Damage - /// + /// + /// All Damage + /// DamagePct = 25, - /// - /// Spell Damage +% - /// + /// + /// Spell Damage +% + /// SpellDamagePct = 26, - /// - /// Physical Damage +% - /// + /// + /// Physical Damage +% + /// PhysicalDamagePct = 27, - /// - /// Local Physical Damage +% - /// + /// + /// Local Physical Damage +% + /// LocalPhysicalDamagePct = 28, - /// - /// Minimum Added Physical Damage - /// + /// + /// Minimum Added Physical Damage + /// GlobalMinimumAddedPhysicalDamage = 29, - /// - /// Maximum Added Physical Damage - /// + /// + /// Maximum Added Physical Damage + /// GlobalMaximumAddedPhysicalDamage = 30, - /// - /// Minimum Added Physical Damage - /// + /// + /// Minimum Added Physical Damage + /// AttackMinimumAddedPhysicalDamage = 31, - /// - /// Maximum Added Physical Damage - /// + /// + /// Maximum Added Physical Damage + /// AttackMaximumAddedPhysicalDamage = 32, - /// - /// Local Minimum Added Physical Damage - /// + /// + /// Local Minimum Added Physical Damage + /// LocalMinimumAddedPhysicalDamage = 33, - /// - /// Local Maximum Added Physical Damage - /// + /// + /// Local Maximum Added Physical Damage + /// LocalMaximumAddedPhysicalDamage = 34, - /// - /// Axe Damage - /// + /// + /// Axe Damage + /// PhysicalAxeDamagePct = 35, - /// - /// Staff Damage - /// + /// + /// Staff Damage + /// PhysicalStaffDamagePct = 36, - /// - /// Claw Damage - /// + /// + /// Claw Damage + /// PhysicalClawDamagePct = 37, - /// - /// Dagger Damage - /// + /// + /// Dagger Damage + /// PhysicalDaggerDamagePct = 38, - /// - /// Mace Damage - /// + /// + /// Mace Damage + /// PhysicalMaceDamagePct = 39, - /// - /// Bow Damage - /// + /// + /// Bow Damage + /// PhysicalBowDamagePct = 40, - /// - /// Sword Damage - /// + /// + /// Sword Damage + /// PhysicalSwordDamagePct = 41, - /// - /// Wand Damage - /// + /// + /// Wand Damage + /// PhysicalWandDamagePct = 42, - /// - /// Fire Damage +% - /// + /// + /// Fire Damage +% + /// FireDamagePct = 43, - /// - /// Minimum Added Fire Damage - /// + /// + /// Minimum Added Fire Damage + /// GlobalMinimumAddedFireDamage = 44, - /// - /// Maximum Added Fire Damage - /// + /// + /// Maximum Added Fire Damage + /// GlobalMaximumAddedFireDamage = 45, - /// - /// Attack Minimum Added Fire Damage - /// + /// + /// Attack Minimum Added Fire Damage + /// AttackMinimumAddedFireDamage = 46, - /// - /// Attack Maximum Added Fire Damage - /// + /// + /// Attack Maximum Added Fire Damage + /// AttackMaximumAddedFireDamage = 47, - /// - /// Local Minimum Added Fire Damage - /// + /// + /// Local Minimum Added Fire Damage + /// LocalMinimumAddedFireDamage = 48, - /// - /// Local Maximum Added Fire Damage - /// + /// + /// Local Maximum Added Fire Damage + /// LocalMaximumAddedFireDamage = 49, - /// - /// Cold Damage +% - /// + /// + /// Cold Damage +% + /// ColdDamagePct = 50, - /// - /// Minimum Added Cold Damage - /// + /// + /// Minimum Added Cold Damage + /// GlobalMinimumAddedColdDamage = 51, - /// - /// Maximum Added Cold Damage - /// + /// + /// Maximum Added Cold Damage + /// GlobalMaximumAddedColdDamage = 52, - /// - /// Attack Minimum Added Cold Damage - /// + /// + /// Attack Minimum Added Cold Damage + /// AttackMinimumAddedColdDamage = 53, - /// - /// Attack Maximum Added Cold Damage - /// + /// + /// Attack Maximum Added Cold Damage + /// AttackMaximumAddedColdDamage = 54, - /// - /// Local Minimum Added Cold Damage - /// + /// + /// Local Minimum Added Cold Damage + /// LocalMinimumAddedColdDamage = 55, - /// - /// Local Maximum Added Cold Damage - /// + /// + /// Local Maximum Added Cold Damage + /// LocalMaximumAddedColdDamage = 56, - /// - /// Lightning Damage +% - /// + /// + /// Lightning Damage +% + /// LightningDamagePct = 57, - /// - /// Minimum Added Lightning Damage - /// + /// + /// Minimum Added Lightning Damage + /// GlobalMinimumAddedLightningDamage = 58, - /// - /// Maximum Added Lightning Damage - /// + /// + /// Maximum Added Lightning Damage + /// GlobalMaximumAddedLightningDamage = 59, - /// - /// Attack Minimum Added Lightning Damage - /// + /// + /// Attack Minimum Added Lightning Damage + /// AttackMinimumAddedLightningDamage = 60, - /// - /// Attack Maximum Added Lightning Damage - /// + /// + /// Attack Maximum Added Lightning Damage + /// AttackMaximumAddedLightningDamage = 61, - /// - /// Local Minimum Added Lightning Damage - /// + /// + /// Local Minimum Added Lightning Damage + /// LocalMinimumAddedLightningDamage = 62, - /// - /// Local Maximum Added Lightning Damage - /// + /// + /// Local Maximum Added Lightning Damage + /// LocalMaximumAddedLightningDamage = 63, - /// - /// Chaos Damage +% - /// + /// + /// Chaos Damage +% + /// ChaosDamagePct = 64, - /// - /// Minimum Added Chaos Damage - /// + /// + /// Minimum Added Chaos Damage + /// GlobalMinimumAddedChaosDamage = 65, - /// - /// Maximum Added Chaos Damage - /// + /// + /// Maximum Added Chaos Damage + /// GlobalMaximumAddedChaosDamage = 66, - /// - /// Minimum Added Chaos Damage - /// + /// + /// Minimum Added Chaos Damage + /// AttackMinimumAddedChaosDamage = 67, - /// - /// Maximum Added Chaos Damage - /// + /// + /// Maximum Added Chaos Damage + /// AttackMaximumAddedChaosDamage = 68, - /// - /// Local Minimum Added Chaos Damage - /// + /// + /// Local Minimum Added Chaos Damage + /// LocalMinimumAddedChaosDamage = 69, - /// - /// Local Maximum Added Chaos Damage - /// + /// + /// Local Maximum Added Chaos Damage + /// LocalMaximumAddedChaosDamage = 70, - /// - /// Attack Speed +% - /// + /// + /// Attack Speed +% + /// AttackSpeedPct = 71, - /// - /// Local Attack Speed +% - /// + /// + /// Local Attack Speed +% + /// LocalAttackSpeedPct = 72, - /// - /// Melee Attack Speed - /// + /// + /// Melee Attack Speed + /// MeleeAttackSpeedPct = 73, - /// - /// Attack Speed while Dual Wielding - /// + /// + /// Attack Speed while Dual Wielding + /// AttackSpeedWhileDualWieldingPct = 74, - /// - /// Attack Speed with Axes - /// + /// + /// Attack Speed with Axes + /// AxeAttackSpeedPct = 75, - /// - /// Attack Speed with Staves - /// + /// + /// Attack Speed with Staves + /// StaffAttackSpeedPct = 76, - /// - /// Attack Speed with Claws - /// + /// + /// Attack Speed with Claws + /// ClawAttackSpeedPct = 77, - /// - /// Attack Speed with Daggers - /// + /// + /// Attack Speed with Daggers + /// DaggerAttackSpeedPct = 78, - /// - /// Attack Speed with Maces - /// + /// + /// Attack Speed with Maces + /// MaceAttackSpeedPct = 79, - /// - /// Attack Speed with Bows - /// + /// + /// Attack Speed with Bows + /// BowAttackSpeedPct = 80, - /// - /// Attack Speed with Swords - /// + /// + /// Attack Speed with Swords + /// SwordAttackSpeedPct = 81, - /// - /// Attack Speed with Wands - /// + /// + /// Attack Speed with Wands + /// WandAttackSpeedPct = 82, - /// - /// Attack Speed with Shields - /// + /// + /// Attack Speed with Shields + /// ShieldAttackSpeedPct = 83, - /// - /// Accuracy Rating - /// + /// + /// Accuracy Rating + /// AccuracyRating = 84, - /// - /// Accuracy Rating +% - /// + /// + /// Accuracy Rating +% + /// AccuracyRatingPct = 85, - /// - /// Accuracy Rating while Dual Wielding +% - /// + /// + /// Accuracy Rating while Dual Wielding +% + /// AccuracyRatingWhileDualWieldingPct = 86, - /// - /// Accuracy Rating with Axes - /// + /// + /// Accuracy Rating with Axes + /// AxeAccuracyRatingPct = 87, - /// - /// Accuracy Rating with Staves - /// + /// + /// Accuracy Rating with Staves + /// StaffAccuracyRatingPct = 88, - /// - /// Accuracy Rating with Claws - /// + /// + /// Accuracy Rating with Claws + /// ClawAccuracyRatingPct = 89, - /// - /// Accuracy Rating with Daggers - /// + /// + /// Accuracy Rating with Daggers + /// DaggerAccuracyRatingPct = 90, - /// - /// Accuracy Rating with Maces - /// + /// + /// Accuracy Rating with Maces + /// MaceAccuracyRatingPct = 91, - /// - /// Accuracy Rating with Bows - /// + /// + /// Accuracy Rating with Bows + /// BowAccuracyRatingPct = 92, - /// - /// Accuracy Rating with Swords - /// + /// + /// Accuracy Rating with Swords + /// SwordAccuracyRatingPct = 93, - /// - /// Accuracy Rating with Wands - /// + /// + /// Accuracy Rating with Wands + /// WandAccuracyRatingPct = 94, - /// - /// Poisons on Critical Strike with Dagger - /// + /// + /// Poisons on Critical Strike with Dagger + /// PoisonOnCriticalStrikeWithDagger = 95, - /// - /// Base Critical Strike Multiplier +% - /// + /// + /// Base Critical Strike Multiplier +% + /// BaseCriticalStrikeMultiplier = 96, - /// - /// Critical Strike Multiplier - /// + /// + /// Critical Strike Multiplier + /// CriticalStrikeMultiplierWithDagger = 97, - /// - /// Critical Strike Multiplier - /// + /// + /// Critical Strike Multiplier + /// BaseSelfCriticalStrikeMultiplierPct = 98, - /// - /// Enemy Critical Strike Damage Multiplier reduction per Endurance Charge - /// + /// + /// Enemy Critical Strike Damage Multiplier reduction per Endurance Charge + /// SelfCriticalStrikeMultiplierPctPerEnduranceCharge = 99, - /// - /// old_do_not_use_local_life_leech_from_physical_damage_% - /// + /// + /// old_do_not_use_local_life_leech_from_physical_damage_% + /// OldDoNotUseLocalLifeLeechFromPhysicalDamagePct = 100, - /// - /// old_do_not_use_local_mana_leech_from_physical_damage_% - /// + /// + /// old_do_not_use_local_mana_leech_from_physical_damage_% + /// OldDoNotUseLocalManaLeechFromPhysicalDamagePct = 101, - /// - /// Life Leech From Physical Damage % - /// + /// + /// Life Leech From Physical Damage % + /// OldDoNotUseLifeLeechFromPhysicalDamagePct = 102, - /// - /// Mana Leech From Physical Damage % - /// + /// + /// Mana Leech From Physical Damage % + /// OldDoNotUseManaLeechFromPhysicalDamagePct = 103, - /// - /// old_do_not_use_life_leech_from_physical_damage_with_claw_% - /// + /// + /// old_do_not_use_life_leech_from_physical_damage_with_claw_% + /// OldDoNotUseLifeLeechFromPhysicalDamageWithClawPct = 104, - /// - /// Base Life Gained On Enemy Death - /// + /// + /// Base Life Gained On Enemy Death + /// BaseLifeGainedOnEnemyDeath = 105, - /// - /// Life Leech from any Damage - /// + /// + /// Life Leech from any Damage + /// LifeLeechFromAnyDamagePermyriad = 106, - /// - /// Mana Leech from any Damage - /// + /// + /// Mana Leech from any Damage + /// ManaLeechFromAnyDamagePermyriad = 107, - /// - /// Base Mana Gained On Enemy Death - /// + /// + /// Base Mana Gained On Enemy Death + /// BaseManaGainedOnEnemyDeath = 108, - /// - /// Base Stun Threshold Reduction +% - /// + /// + /// Base Stun Threshold Reduction +% + /// BaseStunThresholdReductionPct = 109, - /// - /// while_using_mace_stun_threshold_reduction_+% - /// + /// + /// while_using_mace_stun_threshold_reduction_+% + /// WhileUsingMaceStunThresholdReductionPct = 110, - /// - /// Knockback - /// + /// + /// Knockback + /// GlobalKnockback = 111, - /// - /// Knockback with Bows - /// + /// + /// Knockback with Bows + /// KnockbackWithBow = 112, - /// - /// Knockback with Staves - /// + /// + /// Knockback with Staves + /// KnockbackWithStaff = 113, - /// - /// Knockback with Wands - /// + /// + /// Knockback with Wands + /// KnockbackWithWand = 114, - /// - /// Knockback - /// + /// + /// Knockback + /// LocalKnockback = 115, - /// - /// maximum_physical_damage_reduction_% - /// + /// + /// maximum_physical_damage_reduction_% + /// MaximumPhysicalDamageReductionPct = 116, - /// - /// Base Physical Damage Reduction Rating - /// + /// + /// Base Physical Damage Reduction Rating + /// BasePhysicalDamageReductionRating = 117, - /// - /// Physical Damage Reduction Rating +% - /// + /// + /// Physical Damage Reduction Rating +% + /// PhysicalDamageReductionRatingPct = 118, - /// - /// Local Physical Damage Reduction Rating +% - /// + /// + /// Local Physical Damage Reduction Rating +% + /// LocalPhysicalDamageReductionRatingPct = 119, - /// - /// Base Evasion Rating - /// + /// + /// Base Evasion Rating + /// BaseEvasionRating = 120, - /// - /// Global Evasion Rating +% - /// + /// + /// Global Evasion Rating +% + /// EvasionRatingPct = 121, - /// - /// Local Evasion Rating +% - /// + /// + /// Local Evasion Rating +% + /// LocalEvasionRatingPct = 122, - /// - /// Evasion Rating increase per Frenzy Charge - /// + /// + /// Evasion Rating increase per Frenzy Charge + /// EvasionRatingPctPerFrenzyCharge = 123, - /// - /// Base Maximum Life - /// + /// + /// Base Maximum Life + /// BaseMaximumLife = 124, - /// - /// Maximum Life +% - /// + /// + /// Maximum Life +% + /// MaximumLifePct = 125, - /// - /// Life Regeneration Rate per Minute - /// + /// + /// Life Regeneration Rate per Minute + /// BaseLifeRegenerationRatePerMinute = 126, - /// - /// Life Regeneration Rate per Endurance Charge - /// + /// + /// Life Regeneration Rate per Endurance Charge + /// LifeRegenerationRatePerMinutePctPerEnduranceCharge = 127, - /// - /// Base Maximum Mana - /// + /// + /// Base Maximum Mana + /// BaseMaximumMana = 128, - /// - /// Maximum Mana +% - /// + /// + /// Maximum Mana +% + /// MaximumManaPct = 129, - /// - /// Mana Regeneration Rate per Minute - /// + /// + /// Mana Regeneration Rate per Minute + /// ManaRegenerationRatePerMinutePct = 130, - /// - /// Mana Regeneration Rate +% - /// + /// + /// Mana Regeneration Rate +% + /// ManaRegenerationRatePct = 131, - /// - /// Mana Regeneration Rate per Minute - /// + /// + /// Mana Regeneration Rate per Minute + /// BaseManaRegenerationRatePerMinute = 132, - /// - /// Mana Regeneration Rate per Power Charge - /// + /// + /// Mana Regeneration Rate per Power Charge + /// ManaRegenerationRatePerMinutePctPerPowerCharge = 133, - /// - /// Base Maximum Energy Shield - /// + /// + /// Base Maximum Energy Shield + /// BaseMaximumEnergyShield = 134, - /// - /// Global Maximum Energy Shield +% - /// + /// + /// Global Maximum Energy Shield +% + /// MaximumEnergyShieldPct = 135, - /// - /// Local Energy Shield - /// + /// + /// Local Energy Shield + /// LocalEnergyShield = 136, - /// - /// Local Energy Shield +% - /// + /// + /// Local Energy Shield +% + /// LocalEnergyShieldPct = 137, - /// - /// energy_shield_recharge_rate_per_minute_% - /// + /// + /// energy_shield_recharge_rate_per_minute_% + /// EnergyShieldRechargeRatePerMinutePct = 138, - /// - /// energy_shield_recharge_rate_+% - /// + /// + /// energy_shield_recharge_rate_+% + /// EnergyShieldRechargeRatePct = 139, - /// - /// Energy Shield Delay Recovery Increase - /// + /// + /// Energy Shield Delay Recovery Increase + /// EnergyShieldDelayPct = 140, - /// - /// Cannot be Damaged - /// + /// + /// Cannot be Damaged + /// CannotBeDamaged = 141, - /// - /// Resist all Elements - /// + /// + /// Resist all Elements + /// BaseResistAllElementsPct = 142, - /// - /// Additional Elemental Resistance per Endurance Charge - /// + /// + /// Additional Elemental Resistance per Endurance Charge + /// ResistAllElementsPctPerEnduranceCharge = 143, - /// - /// maximum_fire_damage_resistance_% - /// + /// + /// maximum_fire_damage_resistance_% + /// MaximumFireDamageResistancePct = 144, - /// - /// Base Fire Damage Resistance % - /// + /// + /// Base Fire Damage Resistance % + /// BaseFireDamageResistancePct = 145, - /// - /// maximum_cold_damage_resistance_% - /// + /// + /// maximum_cold_damage_resistance_% + /// MaximumColdDamageResistancePct = 146, - /// - /// Base Cold Damage Resistance % - /// + /// + /// Base Cold Damage Resistance % + /// BaseColdDamageResistancePct = 147, - /// - /// maximum_lightning_damage_resistance_% - /// + /// + /// maximum_lightning_damage_resistance_% + /// MaximumLightningDamageResistancePct = 148, - /// - /// Base Lightning Damage Resistance % - /// + /// + /// Base Lightning Damage Resistance % + /// BaseLightningDamageResistancePct = 149, - /// - /// maximum_chaos_damage_resistance_% - /// + /// + /// maximum_chaos_damage_resistance_% + /// MaximumChaosDamageResistancePct = 150, - /// - /// Base Chaos Damage Resistance % - /// + /// + /// Base Chaos Damage Resistance % + /// BaseChaosDamageResistancePct = 151, - /// - /// Increased Item Quantity % - /// + /// + /// Increased Item Quantity % + /// BaseItemFoundQuantityPct = 152, - /// - /// chest_item_quantity_+% - /// + /// + /// chest_item_quantity_+% + /// ChestItemQuantityPct = 153, - /// - /// Base Item Found Rarity +% - /// + /// + /// Base Item Found Rarity +% + /// BaseItemFoundRarityPct = 154, - /// - /// chest_item_rarity_+% - /// + /// + /// chest_item_rarity_+% + /// ChestItemRarityPct = 155, - /// - /// item_found_quality_+% - /// + /// + /// item_found_quality_+% + /// ItemFoundQualityPct = 156, - /// - /// item_found_relevancy_+% - /// + /// + /// item_found_relevancy_+% + /// ItemFoundRelevancyPct = 157, - /// - /// Experience Gain increase - /// + /// + /// Experience Gain increase + /// ExperienceGainPct = 158, - /// - /// Experience Loss on Death - /// + /// + /// Experience Loss on Death + /// ExperienceLossOnDeathPct = 159, - /// - /// Minion Life Increase - /// + /// + /// Minion Life Increase + /// MinionMaximumLifePct = 160, - /// - /// Spectre Life Increase - /// + /// + /// Spectre Life Increase + /// BaseSpectreMaximumLifePct = 161, - /// - /// Zombie Life Increase - /// + /// + /// Zombie Life Increase + /// BaseZombieMaximumLifePct = 162, - /// - /// Fire Elemental Life Increase - /// + /// + /// Fire Elemental Life Increase + /// BaseFireElementalMaximumLifePct = 163, - /// - /// Raven Life Increase - /// + /// + /// Raven Life Increase + /// BaseRavenMaximumLifePct = 164, - /// - /// Spectre Quantity - /// + /// + /// Spectre Quantity + /// BaseNumberOfSpectresAllowed = 165, - /// - /// Zombie Quantity - /// + /// + /// Zombie Quantity + /// BaseNumberOfZombiesAllowed = 166, - /// - /// Totem Life increase - /// + /// + /// Totem Life increase + /// TotemLifePct = 167, - /// - /// Totem Range increase - /// + /// + /// Totem Range increase + /// TotemRangePct = 168, - /// - /// Buff Duration Increase - /// + /// + /// Buff Duration Increase + /// BuffDurationPct = 169, - /// - /// Buff Affects Party - /// + /// + /// Buff Affects Party + /// BuffAffectsParty = 170, - /// - /// Buff Affects Party Radius - /// + /// + /// Buff Affects Party Radius + /// BuffPartyEffectRadiusPct = 171, - /// - /// Projectiles do not Chain - /// + /// + /// Projectiles do not Chain + /// DoNotChain = 172, - /// - /// Additional Chains - /// + /// + /// Additional Chains + /// NumberOfChains = 173, - /// - /// Additional Projectiles - /// + /// + /// Additional Projectiles + /// NumberOfAdditionalProjectiles = 174, - /// - /// Additional Arrows - /// + /// + /// Additional Arrows + /// BaseNumberOfAdditionalArrows = 175, - /// - /// Base Projectile Speed +% - /// + /// + /// Base Projectile Speed +% + /// BaseProjectileSpeedPct = 176, - /// - /// Arrow speed increase - /// + /// + /// Arrow speed increase + /// BaseArrowSpeedPct = 177, - /// - /// Base Movement Velocity +% - /// + /// + /// Base Movement Velocity +% + /// BaseMovementVelocityPct = 178, - /// - /// Movement Speed increase per Frenzy Charge - /// + /// + /// Movement Speed increase per Frenzy Charge + /// MovementVelocityPctPerFrenzyCharge = 179, - /// - /// Maximum Endurance Charges - /// + /// + /// Maximum Endurance Charges + /// MaxEnduranceCharges = 180, - /// - /// Maximum Frenzy Charges - /// + /// + /// Maximum Frenzy Charges + /// MaxFrenzyCharges = 181, - /// - /// Maximum Power Charges - /// + /// + /// Maximum Power Charges + /// MaxPowerCharges = 182, - /// - /// Add Endurance Charge on Critical Strike - /// + /// + /// Add Endurance Charge on Critical Strike + /// AddEnduranceChargeOnCriticalStrike = 183, - /// - /// add_frenzy_charge_on_critical_strike - /// + /// + /// add_frenzy_charge_on_critical_strike + /// AddFrenzyChargeOnCriticalStrike = 184, - /// - /// add_power_charge_on_critical_strike - /// + /// + /// add_power_charge_on_critical_strike + /// AddPowerChargeOnCriticalStrike = 185, - /// - /// add_endurance_charge_on_skill_hit_% - /// + /// + /// add_endurance_charge_on_skill_hit_% + /// AddEnduranceChargeOnSkillHitPct = 186, - /// - /// add_frenzy_charge_on_skill_hit_% - /// + /// + /// add_frenzy_charge_on_skill_hit_% + /// AddFrenzyChargeOnSkillHitPct = 187, - /// - /// add_power_charge_on_skill_hit_% - /// + /// + /// add_power_charge_on_skill_hit_% + /// AddPowerChargeOnSkillHitPct = 188, - /// - /// add_endurance_charge_on_enemy_critical_strike - /// + /// + /// add_endurance_charge_on_enemy_critical_strike + /// AddEnduranceChargeOnEnemyCriticalStrike = 189, - /// - /// add_endurance_charge_on_status_ailment - /// + /// + /// add_endurance_charge_on_status_ailment + /// AddEnduranceChargeOnStatusAilment = 190, - /// - /// Chill Avoidance - /// + /// + /// Chill Avoidance + /// BaseAvoidChillPct = 191, - /// - /// Freeze Avoidance - /// + /// + /// Freeze Avoidance + /// BaseAvoidFreezePct = 192, - /// - /// Ignite Avoidance - /// + /// + /// Ignite Avoidance + /// BaseAvoidIgnitePct = 193, - /// - /// Shock Avoidance - /// + /// + /// Shock Avoidance + /// BaseAvoidShockPct = 194, - /// - /// Stun Avoidance - /// + /// + /// Stun Avoidance + /// AvoidStunPct = 195, - /// - /// Always Ignite Targets - /// + /// + /// Always Ignite Targets + /// AlwaysIgnite = 196, - /// - /// Always Shock Targets - /// + /// + /// Always Shock Targets + /// AlwaysShock = 197, - /// - /// Always Stun Targets - /// + /// + /// Always Stun Targets + /// AlwaysStun = 198, - /// - /// Always Freeze Targets - /// + /// + /// Always Freeze Targets + /// AlwaysFreeze = 199, - /// - /// Chill Duration Increase - /// + /// + /// Chill Duration Increase + /// ChillDurationPct = 200, - /// - /// Shock Duration Increase - /// + /// + /// Shock Duration Increase + /// ShockDurationPct = 201, - /// - /// Freeze Duration Increase - /// + /// + /// Freeze Duration Increase + /// FreezeDurationPct = 202, - /// - /// Ignite Duration Increase - /// + /// + /// Ignite Duration Increase + /// IgniteDurationPct = 203, - /// - /// Stun Duration Increase - /// + /// + /// Stun Duration Increase + /// StunDurationPct = 204, - /// - /// base_self_chill_duration_-% - /// + /// + /// base_self_chill_duration_-% + /// BaseSelfChillDurationPct = 205, - /// - /// base_self_shock_duration_-% - /// + /// + /// base_self_shock_duration_-% + /// BaseSelfShockDurationPct = 206, - /// - /// base_self_freeze_duration_-% - /// + /// + /// base_self_freeze_duration_-% + /// BaseSelfFreezeDurationPct = 207, - /// - /// base_self_ignite_duration_-% - /// + /// + /// base_self_ignite_duration_-% + /// BaseSelfIgniteDurationPct = 208, - /// - /// chance_per_second_of_fire_spreading_between_enemies_% - /// + /// + /// chance_per_second_of_fire_spreading_between_enemies_% + /// ChancePerSecondOfFireSpreadingBetweenEnemiesPct = 209, - /// - /// Burning Damage Increase - /// + /// + /// Burning Damage Increase + /// BurnDamagePct = 210, - /// - /// Active Skill Level - /// + /// + /// Active Skill Level + /// ActiveSkillLevel = 211, - /// - /// Gem Experience Gain - /// + /// + /// Gem Experience Gain + /// GemExperienceGainPct = 212, - /// - /// Skill Area of Effect Radius Increase - /// + /// + /// Skill Area of Effect Radius Increase + /// SkillAreaOfEffectPct = 213, - /// - /// Mana Cost Reduction - /// + /// + /// Mana Cost Reduction + /// BaseManaCostPct = 214, - /// - /// Skill Repeat Count - /// + /// + /// Skill Repeat Count + /// SkillRepeatCount = 215, - /// - /// Skill Duration - /// + /// + /// Skill Duration + /// SkillEffectDurationPct = 216, - /// - /// Cast Speed +% - /// + /// + /// Cast Speed +% + /// BaseCastSpeedPct = 217, - /// - /// Cast Speed increase per Power Charge - /// + /// + /// Cast Speed increase per Power Charge + /// CastSpeedPctPerPowerCharge = 218, - /// - /// Skill Cooldown Reduction - /// + /// + /// Skill Cooldown Reduction + /// SkillCooldownPct = 219, - /// - /// avoid_interruption_while_casting_% - /// + /// + /// avoid_interruption_while_casting_% + /// AvoidInterruptionWhileCastingPct = 220, - /// - /// Additional Targets - /// + /// + /// Additional Targets + /// BaseAttackRepeatCount = 221, - /// - /// Base Stun Recovery +% - /// + /// + /// Base Stun Recovery +% + /// BaseStunRecoveryPct = 222, - /// - /// Stun Recovery increase per Frenzy Charge - /// + /// + /// Stun Recovery increase per Frenzy Charge + /// StunRecoveryPctPerFrenzyCharge = 223, - /// - /// while_using_sword_reduce_enemy_block_% - /// + /// + /// while_using_sword_reduce_enemy_block_% + /// WhileUsingSwordReduceEnemyBlockPct = 224, - /// - /// Prevent Monster Heal - /// + /// + /// Prevent Monster Heal + /// PreventMonsterHeal = 225, - /// - /// Prevent Monster Heal Duration - /// + /// + /// Prevent Monster Heal Duration + /// PreventMonsterHealDurationPct = 226, - /// - /// chest_trap_defuse_% - /// + /// + /// chest_trap_defuse_% + /// ChestTrapDefusePct = 227, - /// - /// enemies_chill_as_unfrozen - /// + /// + /// enemies_chill_as_unfrozen + /// EnemiesChillAsUnfrozen = 228, - /// - /// shocks_enemies_that_hit_actor_while_actor_is_casting - /// + /// + /// shocks_enemies_that_hit_actor_while_actor_is_casting + /// ShocksEnemiesThatHitActorWhileActorIsCasting = 229, - /// - /// local_is_max_quality - /// + /// + /// local_is_max_quality + /// LocalIsMaxQuality = 230, - /// - /// local_disable_gem_experience_gain - /// + /// + /// local_disable_gem_experience_gain + /// LocalDisableGemExperienceGain = 231, - /// - /// local_gem_experience_gain_+% - /// + /// + /// local_gem_experience_gain_+% + /// LocalGemExperienceGainPct = 232, - /// - /// local_extra_socket - /// + /// + /// local_extra_socket + /// LocalExtraSocket = 233, - /// - /// local_level_requirement_- - /// + /// + /// local_level_requirement_- + /// LocalLevelRequirement = 234, - /// - /// Local Attribute Requirements +% - /// + /// + /// Local Attribute Requirements +% + /// LocalAttributeRequirementsPct = 235, - /// - /// local_all_sockets_are_white - /// + /// + /// local_all_sockets_are_white + /// LocalAllSocketsAreWhite = 236, - /// - /// local_quantity_of_sockets_+% - /// + /// + /// local_quantity_of_sockets_+% + /// LocalQuantityOfSocketsPct = 237, - /// - /// local_connectivity_of_sockets_+% - /// + /// + /// local_connectivity_of_sockets_+% + /// LocalConnectivityOfSocketsPct = 238, - /// - /// local_gem_level_+ - /// + /// + /// local_gem_level_+ + /// LocalGemLevel = 239, - /// - /// Block Chance - /// + /// + /// Block Chance + /// CombinedBaseBlockPct = 240, - /// - /// Armour - /// + /// + /// Armour + /// PhysicalDamageReductionRating = 241, - /// - /// Chance to Block Spells - /// + /// + /// Chance to Block Spells + /// SpellBlockPct = 242, - /// - /// Movement Velocity +% - /// + /// + /// Movement Velocity +% + /// MovementVelocityPct = 243, - /// - /// is_dual_wielding - /// + /// + /// is_dual_wielding + /// IsDualWielding = 244, - /// - /// Life - /// + /// + /// Life + /// MaximumLife = 245, - /// - /// Mana - /// + /// + /// Mana + /// MaximumMana = 246, - /// - /// Energy Shield - /// + /// + /// Energy Shield + /// MaximumEnergyShield = 247, - /// - /// life_regeneration_rate_per_minute - /// + /// + /// life_regeneration_rate_per_minute + /// LifeRegenerationRatePerMinute = 248, - /// - /// mana_regeneration_rate_per_minute - /// + /// + /// mana_regeneration_rate_per_minute + /// ManaRegenerationRatePerMinute = 249, - /// - /// energy_shield_recharge_rate_per_minute - /// + /// + /// energy_shield_recharge_rate_per_minute + /// EnergyShieldRechargeRatePerMinute = 250, - /// - /// spell_minimum_cold_damage - /// + /// + /// spell_minimum_cold_damage + /// SpellMinimumColdDamage = 251, - /// - /// spell_maximum_cold_damage - /// + /// + /// spell_maximum_cold_damage + /// SpellMaximumColdDamage = 252, - /// - /// spell_minimum_fire_damage - /// + /// + /// spell_minimum_fire_damage + /// SpellMinimumFireDamage = 253, - /// - /// spell_maximum_fire_damage - /// + /// + /// spell_maximum_fire_damage + /// SpellMaximumFireDamage = 254, - /// - /// spell_minimum_lightning_damage - /// + /// + /// spell_minimum_lightning_damage + /// SpellMinimumLightningDamage = 255, - /// - /// spell_minimum_chaos_damage - /// + /// + /// spell_minimum_chaos_damage + /// SpellMinimumChaosDamage = 256, - /// - /// spell_maximum_lightning_damage - /// + /// + /// spell_maximum_lightning_damage + /// SpellMaximumLightningDamage = 257, - /// - /// spell_maximum_chaos_damage - /// + /// + /// spell_maximum_chaos_damage + /// SpellMaximumChaosDamage = 258, - /// - /// spell_minimum_physical_damage - /// + /// + /// spell_minimum_physical_damage + /// SpellMinimumPhysicalDamage = 259, - /// - /// spell_maximum_physical_damage - /// + /// + /// spell_maximum_physical_damage + /// SpellMaximumPhysicalDamage = 260, - /// - /// main_hand_minimum_cold_damage - /// + /// + /// main_hand_minimum_cold_damage + /// MainHandMinimumColdDamage = 261, - /// - /// main_hand_maximum_cold_damage - /// + /// + /// main_hand_maximum_cold_damage + /// MainHandMaximumColdDamage = 262, - /// - /// off_hand_minimum_cold_damage - /// + /// + /// off_hand_minimum_cold_damage + /// OffHandMinimumColdDamage = 263, - /// - /// off_hand_maximum_cold_damage - /// + /// + /// off_hand_maximum_cold_damage + /// OffHandMaximumColdDamage = 264, - /// - /// main_hand_minimum_fire_damage - /// + /// + /// main_hand_minimum_fire_damage + /// MainHandMinimumFireDamage = 265, - /// - /// main_hand_maximum_fire_damage - /// + /// + /// main_hand_maximum_fire_damage + /// MainHandMaximumFireDamage = 266, - /// - /// off_hand_minimum_fire_damage - /// + /// + /// off_hand_minimum_fire_damage + /// OffHandMinimumFireDamage = 267, - /// - /// off_hand_maximum_fire_damage - /// + /// + /// off_hand_maximum_fire_damage + /// OffHandMaximumFireDamage = 268, - /// - /// main_hand_minimum_lightning_damage - /// + /// + /// main_hand_minimum_lightning_damage + /// MainHandMinimumLightningDamage = 269, - /// - /// main_hand_maximum_lightning_damage - /// + /// + /// main_hand_maximum_lightning_damage + /// MainHandMaximumLightningDamage = 270, - /// - /// off_hand_minimum_lightning_damage - /// + /// + /// off_hand_minimum_lightning_damage + /// OffHandMinimumLightningDamage = 271, - /// - /// off_hand_maximum_lightning_damage - /// + /// + /// off_hand_maximum_lightning_damage + /// OffHandMaximumLightningDamage = 272, - /// - /// main_hand_minimum_chaos_damage - /// + /// + /// main_hand_minimum_chaos_damage + /// MainHandMinimumChaosDamage = 273, - /// - /// main_hand_maximum_chaos_damage - /// + /// + /// main_hand_maximum_chaos_damage + /// MainHandMaximumChaosDamage = 274, - /// - /// off_hand_minimum_chaos_damage - /// + /// + /// off_hand_minimum_chaos_damage + /// OffHandMinimumChaosDamage = 275, - /// - /// off_hand_maximum_chaos_damage - /// + /// + /// off_hand_maximum_chaos_damage + /// OffHandMaximumChaosDamage = 276, - /// - /// main_hand_minimum_physical_damage - /// + /// + /// main_hand_minimum_physical_damage + /// MainHandMinimumPhysicalDamage = 277, - /// - /// main_hand_maximum_physical_damage - /// + /// + /// main_hand_maximum_physical_damage + /// MainHandMaximumPhysicalDamage = 278, - /// - /// off_hand_minimum_physical_damage - /// + /// + /// off_hand_minimum_physical_damage + /// OffHandMinimumPhysicalDamage = 279, - /// - /// off_hand_maximum_physical_damage - /// + /// + /// off_hand_maximum_physical_damage + /// OffHandMaximumPhysicalDamage = 280, - /// - /// Block and Stun Recovery +% - /// + /// + /// Block and Stun Recovery +% + /// StunRecoveryPct = 281, - /// - /// Evasion Rating - /// + /// + /// Evasion Rating + /// EvasionRating = 282, - /// - /// Main Hand Enemy Block Reduction - /// + /// + /// Main Hand Enemy Block Reduction + /// MainHandReduceEnemyBlockPct = 283, - /// - /// Off Hand Enemy Block Reduction - /// + /// + /// Off Hand Enemy Block Reduction + /// OffHandReduceEnemyBlockPct = 284, - /// - /// main_hand_critical_strike_multiplier_+ - /// + /// + /// main_hand_critical_strike_multiplier_+ + /// MainHandCriticalStrikeMultiplier = 285, - /// - /// off_hand_critical_strike_multiplier_+ - /// + /// + /// off_hand_critical_strike_multiplier_+ + /// OffHandCriticalStrikeMultiplier = 286, - /// - /// self_critical_strike_multiplier_+% - /// + /// + /// self_critical_strike_multiplier_+% + /// SelfCriticalStrikeMultiplierPct = 287, - /// - /// main_hand_knockback - /// + /// + /// main_hand_knockback + /// MainHandKnockback = 288, - /// - /// off_hand_knockback - /// + /// + /// off_hand_knockback + /// OffHandKnockback = 289, - /// - /// Main Hand Accuracy Rating - /// + /// + /// Main Hand Accuracy Rating + /// MainHandAccuracyRating = 290, - /// - /// Off Hand Accuracy Rating - /// + /// + /// Off Hand Accuracy Rating + /// OffHandAccuracyRating = 291, - /// - /// Main Hand Attack Speed Increase - /// + /// + /// Main Hand Attack Speed Increase + /// MainHandAttackSpeedPct = 292, - /// - /// Off Hand Attack Speed Increase - /// + /// + /// Off Hand Attack Speed Increase + /// OffHandAttackSpeedPct = 293, - /// - /// Cast Speed Increase - /// + /// + /// Cast Speed Increase + /// CastSpeedPct = 294, - /// - /// spectre_maximum_life_+% - /// + /// + /// spectre_maximum_life_+% + /// SpectreMaximumLifePct = 295, - /// - /// zombie_maximum_life_+% - /// + /// + /// zombie_maximum_life_+% + /// ZombieMaximumLifePct = 296, - /// - /// fire_elemental_maximum_life_+% - /// + /// + /// fire_elemental_maximum_life_+% + /// FireElementalMaximumLifePct = 297, - /// - /// raven_maximum_life_+% - /// + /// + /// raven_maximum_life_+% + /// RavenMaximumLifePct = 298, - /// - /// number_of_additional_arrows - /// + /// + /// number_of_additional_arrows + /// NumberOfAdditionalArrows = 299, - /// - /// arrow_speed_+% - /// + /// + /// arrow_speed_+% + /// ArrowSpeedPct = 300, - /// - /// Main Hand Stun Threshold Reduction - /// + /// + /// Main Hand Stun Threshold Reduction + /// MainHandStunThresholdReductionPct = 301, - /// - /// Off Hand Stun Threshold Reduction - /// + /// + /// Off Hand Stun Threshold Reduction + /// OffHandStunThresholdReductionPct = 302, - /// - /// Main Hand Life Leech from Physical Attacks - /// + /// + /// Main Hand Life Leech from Physical Attacks + /// MainHandLifeLeechFromPhysicalAttackDamagePermyriad = 303, - /// - /// Off Hand Life Leech from Physical Attacks - /// + /// + /// Off Hand Life Leech from Physical Attacks + /// OffHandLifeLeechFromPhysicalAttackDamagePermyriad = 304, - /// - /// Main Hand Mana Leech from Physical Attacks - /// + /// + /// Main Hand Mana Leech from Physical Attacks + /// MainHandManaLeechFromPhysicalAttackDamagePermyriad = 305, - /// - /// Off Hand Mana Leech from Physical Attacks - /// + /// + /// Off Hand Mana Leech from Physical Attacks + /// OffHandManaLeechFromPhysicalAttackDamagePermyriad = 306, - /// - /// Cold Resistance - /// + /// + /// Cold Resistance + /// ColdDamageResistancePct = 307, - /// - /// Fire Resistance - /// + /// + /// Fire Resistance + /// FireDamageResistancePct = 308, - /// - /// Lightning Resistance - /// + /// + /// Lightning Resistance + /// LightningDamageResistancePct = 309, - /// - /// Chaos Resistance - /// + /// + /// Chaos Resistance + /// ChaosDamageResistancePct = 310, - /// - /// resist_all_elements_% - /// + /// + /// resist_all_elements_% + /// ResistAllElementsPct = 311, - /// - /// Trap Duration increase - /// + /// + /// Trap Duration increase + /// TrapDurationPct = 312, - /// - /// Trap Trigger Radius increase - /// + /// + /// Trap Trigger Radius increase + /// TrapTriggerRadiusPct = 313, - /// - /// Trap Throwing Speed increase - /// + /// + /// Trap Throwing Speed increase + /// TrapThrowingSpeedPct = 314, - /// - /// monster_response_time_ms - /// + /// + /// monster_response_time_ms + /// MonsterResponseTimeMs = 315, - /// - /// skill_internal_monster_responsiveness_+% - /// + /// + /// skill_internal_monster_responsiveness_+% + /// SkillInternalMonsterResponsivenessPct = 316, - /// - /// endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry - /// - EnduranceChargesGrantedPerOneHundredNearbyEnemiesDuringEnduranceWarcry = 317, + /// + /// endurance_charge_granted_per_X_monster_power_during_endurance_warcry + /// + EnduranceChargeGrantedPerXMonsterPowerDuringEnduranceWarcry = 317, - /// - /// skill_range_+% - /// + /// + /// skill_range_+% + /// SkillRangePct = 318, - /// - /// skill_visual_scale_+% - /// + /// + /// skill_visual_scale_+% + /// SkillVisualScalePct = 319, - /// - /// imp_variation - /// + /// + /// imp_variation + /// ImpVariation = 320, - /// - /// main_hand_base_weapon_attack_duration_ms - /// + /// + /// main_hand_base_weapon_attack_duration_ms + /// MainHandBaseWeaponAttackDurationMs = 321, - /// - /// off_hand_base_weapon_attack_duration_ms - /// + /// + /// off_hand_base_weapon_attack_duration_ms + /// OffHandBaseWeaponAttackDurationMs = 322, - /// - /// main_hand_minimum_attack_distance - /// + /// + /// main_hand_minimum_attack_distance + /// MainHandMinimumAttackDistance = 323, - /// - /// off_hand_minimum_attack_distance - /// + /// + /// off_hand_minimum_attack_distance + /// OffHandMinimumAttackDistance = 324, - /// - /// main_hand_base_maximum_attack_distance - /// + /// + /// main_hand_base_maximum_attack_distance + /// MainHandBaseMaximumAttackDistance = 325, - /// - /// off_hand_base_maximum_attack_distance - /// + /// + /// off_hand_base_maximum_attack_distance + /// OffHandBaseMaximumAttackDistance = 326, - /// - /// main_hand_quality - /// + /// + /// main_hand_quality + /// MainHandQuality = 327, - /// - /// off_hand_quality - /// + /// + /// off_hand_quality + /// OffHandQuality = 328, - /// - /// base_spell_critical_strike_multiplier_+ - /// + /// + /// base_spell_critical_strike_multiplier_+ + /// BaseSpellCriticalStrikeMultiplier = 329, - /// - /// spell_critical_strike_multiplier_+ - /// + /// + /// spell_critical_strike_multiplier_+ + /// SpellCriticalStrikeMultiplier = 330, - /// - /// Skill Placed as Trap - /// + /// + /// Skill Placed as Trap + /// IsTrap = 331, - /// - /// Weapon Elemental Damage +% - /// + /// + /// Weapon Elemental Damage +% + /// WeaponElementalDamagePct = 332, - /// - /// staff_stun_duration_+% - /// + /// + /// staff_stun_duration_+% + /// StaffStunDurationPct = 333, - /// - /// two_handed_melee_physical_damage_+% - /// + /// + /// two_handed_melee_physical_damage_+% + /// TwoHandedMeleePhysicalDamagePct = 334, - /// - /// two_handed_melee_stun_duration_+% - /// + /// + /// two_handed_melee_stun_duration_+% + /// TwoHandedMeleeStunDurationPct = 335, - /// - /// two_handed_melee_attack_speed_+% - /// + /// + /// two_handed_melee_attack_speed_+% + /// TwoHandedMeleeAttackSpeedPct = 336, - /// - /// two_handed_melee_accuracy_rating_+% - /// + /// + /// two_handed_melee_accuracy_rating_+% + /// TwoHandedMeleeAccuracyRatingPct = 337, - /// - /// physical_damage_while_dual_wielding_+% - /// + /// + /// physical_damage_while_dual_wielding_+% + /// PhysicalDamageWhileDualWieldingPct = 338, - /// - /// one_handed_melee_physical_damage_+% - /// + /// + /// one_handed_melee_physical_damage_+% + /// OneHandedMeleePhysicalDamagePct = 339, - /// - /// one_handed_melee_attack_speed_+% - /// + /// + /// one_handed_melee_attack_speed_+% + /// OneHandedMeleeAttackSpeedPct = 340, - /// - /// one_handed_melee_accuracy_rating_+% - /// + /// + /// one_handed_melee_accuracy_rating_+% + /// OneHandedMeleeAccuracyRatingPct = 341, - /// - /// Base Stun Duration +% - /// + /// + /// Base Stun Duration +% + /// BaseStunDurationPct = 342, - /// - /// bow_stun_duration_+% - /// + /// + /// bow_stun_duration_+% + /// BowStunDurationPct = 343, - /// - /// Life Gained On Hit - /// + /// + /// Life Gained On Hit + /// BaseLifeGainPerTarget = 344, - /// - /// corpse_explosion_monster_life_% - /// + /// + /// corpse_explosion_monster_life_% + /// CorpseExplosionMonsterLifePct = 345, - /// - /// skill_level - /// + /// + /// skill_level + /// SkillLevel = 346, - /// - /// action_speed_-% - /// + /// + /// action_speed_-% + /// ActionSpeedPct = 347, - /// - /// skill_art_variation - /// + /// + /// skill_art_variation + /// SkillArtVariation = 348, - /// - /// always_crit - /// + /// + /// always_crit + /// AlwaysCrit = 349, - /// - /// damage_infusion_% - /// + /// + /// damage_infusion_% + /// DamageInfusionPct = 350, - /// - /// chaos_damage_taken_per_minute - /// + /// + /// chaos_damage_taken_per_minute + /// ChaosDamageTakenPerMinute = 351, - /// - /// base_fire_damage_to_deal_per_minute - /// + /// + /// base_fire_damage_to_deal_per_minute + /// BaseFireDamageToDealPerMinute = 352, - /// - /// add_frenzy_charge_on_kill - /// + /// + /// add_frenzy_charge_on_kill + /// AddFrenzyChargeOnKill = 353, - /// - /// base_fire_damage_to_deal_to_nearby_per_minute - /// + /// + /// base_fire_damage_to_deal_to_nearby_per_minute + /// BaseFireDamageToDealToNearbyPerMinute = 354, - /// - /// base_physical_damage_taken_per_minute - /// + /// + /// base_physical_damage_taken_per_minute + /// BasePhysicalDamageTakenPerMinute = 355, - /// - /// spell_minimum_base_lightning_damage_per_removable_power_charge - /// + /// + /// spell_minimum_base_lightning_damage_per_removable_power_charge + /// SpellMinimumBaseLightningDamagePerRemovablePowerCharge = 356, - /// - /// spell_maximum_base_lightning_damage_per_removable_power_charge - /// + /// + /// spell_maximum_base_lightning_damage_per_removable_power_charge + /// SpellMaximumBaseLightningDamagePerRemovablePowerCharge = 357, - /// - /// base_skill_effect_duration - /// + /// + /// base_skill_effect_duration + /// BaseSkillEffectDuration = 358, - /// - /// skill_effect_duration - /// + /// + /// skill_effect_duration + /// SkillEffectDuration = 359, - /// - /// buff_effect_duration - /// + /// + /// buff_effect_duration + /// BuffEffectDuration = 360, - /// - /// Buff/Debuff Duration increase per Endurance Charge - /// + /// + /// Buff/Debuff Duration increase per Endurance Charge + /// BuffEffectDurationPctPerRemovableEnduranceCharge = 361, - /// - /// Buff/Debuff Duration increase per Endurance Charge - /// + /// + /// Buff/Debuff Duration increase per Endurance Charge + /// BuffEffectDurationPctPerRemovableEnduranceChargeLimitedTo5 = 362, - /// - /// Local Base Evasion Rating - /// + /// + /// Local Base Evasion Rating + /// LocalBaseEvasionRating = 363, - /// - /// Local Base Physical Damage Reduction Rating - /// + /// + /// Local Base Physical Damage Reduction Rating + /// LocalBasePhysicalDamageReductionRating = 364, - /// - /// Attack Speed increase per Frenzy Charge - /// + /// + /// Attack Speed increase per Frenzy Charge + /// BaseAttackSpeedPctPerFrenzyCharge = 365, - /// - /// Physical Damage increase per Frenzy Charge - /// + /// + /// Physical Damage increase per Frenzy Charge + /// PhysicalDamagePctPerFrenzyCharge = 366, - /// - /// is_player - /// + /// + /// is_player + /// IsPlayer = 367, - /// - /// life_per_level - /// + /// + /// life_per_level + /// LifePerLevel = 368, - /// - /// mana_per_level - /// + /// + /// mana_per_level + /// ManaPerLevel = 369, - /// - /// backstab_damage_+% - /// + /// + /// backstab_damage_+% + /// BackstabDamagePct = 370, - /// - /// additional_player_bonus_maximum_life_+%_final - /// + /// + /// additional_player_bonus_maximum_life_+%_final + /// AdditionalPlayerBonusMaximumLifePctFinal = 371, - /// - /// intermediary_maximum_life - /// + /// + /// intermediary_maximum_life + /// IntermediaryMaximumLife = 372, - /// - /// Local Flask Armour +% While Healing - /// + /// + /// Local Flask Armour +% While Healing + /// LocalFlaskArmourPctWhileHealing = 373, - /// - /// Local Flask Evasion +% While Healing - /// + /// + /// Local Flask Evasion +% While Healing + /// LocalFlaskEvasionPctWhileHealing = 374, - /// - /// Local Flask Energy Shield +% While Healing - /// + /// + /// Local Flask Energy Shield +% While Healing + /// LocalFlaskEnergyShieldPctWhileHealing = 375, - /// - /// Local Flask Movement Speed +% While Healing - /// + /// + /// Local Flask Movement Speed +% While Healing + /// LocalFlaskMovementSpeedPctWhileHealing = 376, - /// - /// Local Flask Stun Recovery +% While Healing - /// + /// + /// Local Flask Stun Recovery +% While Healing + /// LocalFlaskStunRecoveryPctWhileHealing = 377, - /// - /// Local Flask Resistances +% While Healing - /// + /// + /// Local Flask Resistances +% While Healing + /// LocalFlaskResistancesPctWhileHealing = 378, - /// - /// Local Flask Life Leech % While Healing - /// + /// + /// Local Flask Life Leech % While Healing + /// OldDoNotUseLocalFlaskLifeLeechPctWhileHealing = 379, - /// - /// Local Flask Mana Leech % While Healing - /// + /// + /// Local Flask Mana Leech % While Healing + /// OldDoNotUseLocalFlaskManaLeechPctWhileHealing = 380, - /// - /// Local Flask Adds Knockback While Healing - /// + /// + /// Local Flask Adds Knockback While Healing + /// LocalFlaskAddsKnockbackWhileHealing = 381, - /// - /// local_flask_removes_%_of_mana_recovery_from_life_on_use - /// + /// + /// local_flask_removes_%_of_mana_recovery_from_life_on_use + /// LocalFlaskRemovesPctOfManaRecoveryFromLifeOnUse = 382, - /// - /// local_flask_removes_%_of_life_recovery_from_mana_on_use - /// + /// + /// local_flask_removes_%_of_life_recovery_from_mana_on_use + /// LocalFlaskRemovesPctOfLifeRecoveryFromManaOnUse = 383, - /// - /// local_flask_removes_%_of_life_recovery_from_life_on_use - /// + /// + /// local_flask_removes_%_of_life_recovery_from_life_on_use + /// LocalFlaskRemovesPctOfLifeRecoveryFromLifeOnUse = 384, - /// - /// Local Flask Amount To Recover +% When On Low Life - /// + /// + /// Local Flask Amount To Recover +% When On Low Life + /// LocalFlaskAmountToRecoverPctWhenOnLowLife = 385, - /// - /// Local Flask Recover Instantly When On Low Life - /// + /// + /// Local Flask Recover Instantly When On Low Life + /// LocalFlaskRecoverInstantlyWhenOnLowLife = 386, - /// - /// Local Flask Recovery Amount % To Recover Instantly - /// + /// + /// Local Flask Recovery Amount % To Recover Instantly + /// LocalFlaskRecoveryAmountPctToRecoverInstantly = 387, - /// - /// local_flask_dispels_burning - /// + /// + /// local_flask_dispels_burning + /// LocalFlaskDispelsBurning = 388, - /// - /// local_flask_dispels_freeze_and_chill - /// + /// + /// local_flask_dispels_freeze_and_chill + /// LocalFlaskDispelsFreezeAndChill = 389, - /// - /// local_max_charges_+% - /// + /// + /// local_max_charges_+% + /// LocalMaxChargesPct = 390, - /// - /// Local Charges Added +% - /// + /// + /// Local Charges Added +% + /// LocalChargesAddedPct = 391, - /// - /// Local Flask Amount To Recover +% - /// + /// + /// Local Flask Amount To Recover +% + /// LocalFlaskAmountToRecoverPct = 392, - /// - /// Local Flask Recovers Instantly - /// + /// + /// Local Flask Recovers Instantly + /// LocalFlaskRecoversInstantly = 393, - /// - /// Local Flask Minion Heal % - /// + /// + /// Local Flask Minion Heal % + /// LocalFlaskMinionHealPct = 394, - /// - /// Local Recharge On Crit - /// + /// + /// Local Recharge On Crit + /// LocalRechargeOnCrit = 395, - /// - /// Local Recharge On Take Crit - /// + /// + /// Local Recharge On Take Crit + /// LocalRechargeOnTakeCrit = 396, - /// - /// local_critical_strike_multiplier_+ - /// + /// + /// local_critical_strike_multiplier_+ + /// LocalCriticalStrikeMultiplier = 397, - /// - /// local_flask_prevents_death_while_healing - /// + /// + /// local_flask_prevents_death_while_healing + /// LocalFlaskPreventsDeathWhileHealing = 398, - /// - /// Cannot Die - /// + /// + /// Cannot Die + /// CannotDie = 399, - /// - /// Flask Life Amount +% - /// + /// + /// Flask Life Amount +% + /// FlaskLifeToRecoverPct = 400, - /// - /// Flask Mana Amount +% - /// + /// + /// Flask Mana Amount +% + /// FlaskManaToRecoverPct = 401, - /// - /// Flask Recovery Speed +% - /// + /// + /// Flask Recovery Speed +% + /// FlaskRecoverySpeedPct = 402, - /// - /// Knockback Distance +% - /// + /// + /// Knockback Distance +% + /// KnockbackDistancePct = 403, - /// - /// weapon_fire_damage_+% - /// + /// + /// weapon_fire_damage_+% + /// WeaponFireDamagePct = 404, - /// - /// weapon_cold_damage_+% - /// + /// + /// weapon_cold_damage_+% + /// WeaponColdDamagePct = 405, - /// - /// weapon_lightning_damage_+% - /// + /// + /// weapon_lightning_damage_+% + /// WeaponLightningDamagePct = 406, - /// - /// weapon_chaos_damage_+% - /// + /// + /// weapon_chaos_damage_+% + /// WeaponChaosDamagePct = 407, - /// - /// spell_elemental_damage_+% - /// + /// + /// spell_elemental_damage_+% + /// SpellElementalDamagePct = 408, - /// - /// resist_all_elements_+%_while_holding_shield - /// + /// + /// resist_all_elements_+%_while_holding_shield + /// ResistAllElementsPctWhileHoldingShield = 409, - /// - /// Staff Block % - /// + /// + /// Staff Block % + /// StaffBlockPct = 410, - /// - /// attack_minimum_added_lightning_damage_with_wand - /// + /// + /// attack_minimum_added_lightning_damage_with_wand + /// AttackMinimumAddedLightningDamageWithWand = 411, - /// - /// attack_maximum_added_lightning_damage_with_wand - /// + /// + /// attack_maximum_added_lightning_damage_with_wand + /// AttackMaximumAddedLightningDamageWithWand = 412, - /// - /// attack_minimum_added_fire_damage_with_wand - /// + /// + /// attack_minimum_added_fire_damage_with_wand + /// AttackMinimumAddedFireDamageWithWand = 413, - /// - /// attack_maximum_added_fire_damage_with_wand - /// + /// + /// attack_maximum_added_fire_damage_with_wand + /// AttackMaximumAddedFireDamageWithWand = 414, - /// - /// attack_minimum_added_cold_damage_with_wand - /// + /// + /// attack_minimum_added_cold_damage_with_wand + /// AttackMinimumAddedColdDamageWithWand = 415, - /// - /// attack_maximum_added_cold_damage_with_wand - /// + /// + /// attack_maximum_added_cold_damage_with_wand + /// AttackMaximumAddedColdDamageWithWand = 416, - /// - /// wand_elemental_damage_+% - /// + /// + /// wand_elemental_damage_+% + /// WandElementalDamagePct = 417, - /// - /// chance_to_gain_endurance_charge_on_block_% - /// + /// + /// chance_to_gain_endurance_charge_on_block_% + /// ChanceToGainEnduranceChargeOnBlockPct = 418, - /// - /// Endurance Charge duration increase - /// + /// + /// Endurance Charge duration increase + /// EnduranceChargeDurationPct = 419, - /// - /// share_endurance_charges_with_party_within_distance - /// + /// + /// share_endurance_charges_with_party_within_distance + /// ShareEnduranceChargesWithPartyWithinDistance = 420, - /// - /// add_frenzy_charge_on_enemy_block - /// + /// + /// add_frenzy_charge_on_enemy_block + /// AddFrenzyChargeOnEnemyBlock = 421, - /// - /// Frenzy Charge duration increase - /// + /// + /// Frenzy Charge duration increase + /// BaseFrenzyChargeDurationPct = 422, - /// - /// share_frenzy_charges_with_party_within_distance - /// + /// + /// share_frenzy_charges_with_party_within_distance + /// ShareFrenzyChargesWithPartyWithinDistance = 423, - /// - /// add_power_charge_on_minion_death - /// + /// + /// add_power_charge_on_minion_death + /// AddPowerChargeOnMinionDeath = 424, - /// - /// Area of Effect increase per Power Charge - /// + /// + /// Area of Effect increase per Power Charge + /// SkillAreaOfEffectPctPerPowerCharge = 425, - /// - /// Spell Damage increase per Power Charge - /// + /// + /// Spell Damage increase per Power Charge + /// SpellDamagePctPerPowerCharge = 426, - /// - /// Wand Damage increase per Power Charge - /// + /// + /// Wand Damage increase per Power Charge + /// WandDamagePctPerPowerCharge = 427, - /// - /// Power Charge duration Increase - /// + /// + /// Power Charge duration Increase + /// PowerChargeDurationPct = 428, - /// - /// share_power_charges_with_party_within_distance - /// + /// + /// share_power_charges_with_party_within_distance + /// SharePowerChargesWithPartyWithinDistance = 429, - /// - /// minions_explode_on_low_life_maximum_life_%_to_deal - /// + /// + /// minions_explode_on_low_life_maximum_life_%_to_deal + /// MinionsExplodeOnLowLifeMaximumLifePctToDeal = 430, - /// - /// Totem Duration increase - /// + /// + /// Totem Duration increase + /// TotemDurationPct = 431, - /// - /// buff_effect_on_self_+% - /// + /// + /// buff_effect_on_self_+% + /// BuffEffectOnSelfPct = 432, - /// - /// add_power_charge_when_interrupted_while_casting - /// + /// + /// add_power_charge_when_interrupted_while_casting + /// AddPowerChargeWhenInterruptedWhileCasting = 433, - /// - /// add_power_charge_when_kill_shocked_enemy - /// + /// + /// add_power_charge_when_kill_shocked_enemy + /// AddPowerChargeWhenKillShockedEnemy = 434, - /// - /// Base Skill Area Of Effect +% - /// + /// + /// Base Skill Area Of Effect +% + /// BaseSkillAreaOfEffectPct = 435, - /// - /// casting_spell - /// + /// + /// casting_spell + /// CastingSpell = 436, - /// - /// avoid_interruption_% - /// + /// + /// avoid_interruption_% + /// AvoidInterruptionPct = 437, - /// - /// shocks_enemies_that_hit_actor - /// + /// + /// shocks_enemies_that_hit_actor + /// ShocksEnemiesThatHitActor = 438, - /// - /// add_power_charge_when_interrupted - /// + /// + /// add_power_charge_when_interrupted + /// AddPowerChargeWhenInterrupted = 439, - /// - /// attack_minimum_base_fire_damage_for_elemental_hit - /// + /// + /// attack_minimum_base_fire_damage_for_elemental_hit + /// AttackMinimumBaseFireDamageForElementalHit = 440, - /// - /// attack_maximum_base_fire_damage_for_elemental_hit - /// + /// + /// attack_maximum_base_fire_damage_for_elemental_hit + /// AttackMaximumBaseFireDamageForElementalHit = 441, - /// - /// attack_minimum_base_cold_damage_for_elemental_hit - /// + /// + /// attack_minimum_base_cold_damage_for_elemental_hit + /// AttackMinimumBaseColdDamageForElementalHit = 442, - /// - /// attack_maximum_base_cold_damage_for_elemental_hit - /// + /// + /// attack_maximum_base_cold_damage_for_elemental_hit + /// AttackMaximumBaseColdDamageForElementalHit = 443, - /// - /// attack_minimum_base_lightning_damage_for_elemental_hit - /// + /// + /// attack_minimum_base_lightning_damage_for_elemental_hit + /// AttackMinimumBaseLightningDamageForElementalHit = 444, - /// - /// attack_maximum_base_lightning_damage_for_elemental_hit - /// + /// + /// attack_maximum_base_lightning_damage_for_elemental_hit + /// AttackMaximumBaseLightningDamageForElementalHit = 445, - /// - /// additional_physical_damage_reduction_% - /// + /// + /// additional_physical_damage_reduction_% + /// AdditionalPhysicalDamageReductionPct = 446, - /// - /// Physical Damage Reduction per Endurance Charge - /// + /// + /// Physical Damage Reduction per Endurance Charge + /// PhysicalDamageReductionPctPerEnduranceCharge = 447, - /// - /// physical_damage_%_to_add_as_fire - /// + /// + /// physical_damage_%_to_add_as_fire + /// PhysicalDamagePctToAddAsFire = 448, - /// - /// physical_damage_%_to_add_as_cold - /// + /// + /// physical_damage_%_to_add_as_cold + /// PhysicalDamagePctToAddAsCold = 449, - /// - /// physical_damage_%_to_add_as_lightning - /// + /// + /// physical_damage_%_to_add_as_lightning + /// PhysicalDamagePctToAddAsLightning = 450, - /// - /// physical_damage_%_to_add_as_chaos - /// + /// + /// physical_damage_%_to_add_as_chaos + /// PhysicalDamagePctToAddAsChaos = 451, - /// - /// life_regeneration_rate_per_minute_% - /// + /// + /// life_regeneration_rate_per_minute_% + /// LifeRegenerationRatePerMinutePct = 452, - /// - /// base_chaos_damage_%_of_maximum_life_taken_per_minute - /// + /// + /// base_chaos_damage_%_of_maximum_life_taken_per_minute + /// BaseChaosDamagePctOfMaximumLifeTakenPerMinute = 453, - /// - /// base_chaos_damage_taken_per_minute - /// + /// + /// base_chaos_damage_taken_per_minute + /// BaseChaosDamageTakenPerMinute = 454, - /// - /// add_level_X_blood_rage_on_kill - /// + /// + /// add_level_X_blood_rage_on_kill + /// AddLevelXBloodRageOnKill = 455, - /// - /// base_chance_to_freeze_% - /// + /// + /// base_chance_to_freeze_% + /// BaseChanceToFreezePct = 456, - /// - /// display_mana_cost_reduction_% - /// + /// + /// display_mana_cost_reduction_% + /// DisplayManaCostReductionPct = 457, - /// - /// display_minion_monster_level - /// + /// + /// display_minion_monster_level + /// DisplayMinionMonsterLevel = 458, - /// - /// display_minion_monster_type - /// + /// + /// display_minion_monster_type + /// DisplayMinionMonsterType = 459, - /// - /// monster_slain_flask_charges_granted_+% - /// + /// + /// monster_slain_flask_charges_granted_+% + /// MonsterSlainFlaskChargesGrantedPct = 460, - /// - /// Flask Charges Gained +% - /// + /// + /// Flask Charges Gained +% + /// ChargesGainedPct = 461, - /// - /// Knockback on Critical Strike - /// + /// + /// Knockback on Critical Strike + /// GlobalKnockbackOnCrit = 462, - /// - /// dummy_stat_display_nothing - /// + /// + /// dummy_stat_display_nothing + /// DummyStatDisplayNothing = 463, - /// - /// shield_charge_extra_distance - /// + /// + /// shield_charge_extra_distance + /// ShieldChargeExtraDistance = 464, - /// - /// shield_charge_end_slide_distance - /// + /// + /// shield_charge_end_slide_distance + /// ShieldChargeEndSlideDistance = 465, - /// - /// Main Hand Knockback on Critical Strike - /// + /// + /// Main Hand Knockback on Critical Strike + /// MainHandKnockbackOnCrit = 466, - /// - /// Off Hand Knockback on Critical Strike - /// + /// + /// Off Hand Knockback on Critical Strike + /// OffHandKnockbackOnCrit = 467, - /// - /// knockback_on_crit_with_staff - /// + /// + /// knockback_on_crit_with_staff + /// KnockbackOnCritWithStaff = 468, - /// - /// knockback_on_crit_with_bow - /// + /// + /// knockback_on_crit_with_bow + /// KnockbackOnCritWithBow = 469, - /// - /// knockback_on_crit_with_wand - /// + /// + /// knockback_on_crit_with_wand + /// KnockbackOnCritWithWand = 470, - /// - /// shield_charge_stun_duration_+%_maximum - /// + /// + /// shield_charge_stun_duration_+%_maximum + /// ShieldChargeStunDurationPctMaximum = 471, - /// - /// shield_charge_knockback_distance_+%_maximum - /// + /// + /// shield_charge_knockback_distance_+%_maximum + /// ShieldChargeKnockbackDistancePctMaximum = 472, - /// - /// shield_charge_damage_+%_maximum - /// + /// + /// shield_charge_damage_+%_maximum + /// ShieldChargeDamagePctMaximum = 473, - /// - /// spell_minimum_base_fire_damage_per_removable_endurance_charge - /// + /// + /// spell_minimum_base_fire_damage_per_removable_endurance_charge + /// SpellMinimumBaseFireDamagePerRemovableEnduranceCharge = 474, - /// - /// spell_maximum_base_fire_damage_per_removable_endurance_charge - /// + /// + /// spell_maximum_base_fire_damage_per_removable_endurance_charge + /// SpellMaximumBaseFireDamagePerRemovableEnduranceCharge = 475, - /// - /// spell_minimum_base_cold_damage_per_removable_frenzy_charge - /// + /// + /// spell_minimum_base_cold_damage_per_removable_frenzy_charge + /// SpellMinimumBaseColdDamagePerRemovableFrenzyCharge = 476, - /// - /// spell_maximum_base_cold_damage_per_removable_frenzy_charge - /// + /// + /// spell_maximum_base_cold_damage_per_removable_frenzy_charge + /// SpellMaximumBaseColdDamagePerRemovableFrenzyCharge = 477, - /// - /// base_damage_taken_+% - /// + /// + /// base_damage_taken_+% + /// BaseDamageTakenPct = 478, - /// - /// is_shocked - /// + /// + /// is_shocked + /// IsShocked = 479, - /// - /// base_global_chance_to_knockback_% - /// + /// + /// base_global_chance_to_knockback_% + /// BaseGlobalChanceToKnockbackPct = 480, - /// - /// main_hand_chance_to_knockback_% - /// + /// + /// main_hand_chance_to_knockback_% + /// MainHandChanceToKnockbackPct = 481, - /// - /// off_hand_chance_to_knockback_% - /// + /// + /// off_hand_chance_to_knockback_% + /// OffHandChanceToKnockbackPct = 482, - /// - /// base_physical_damage_%_to_convert_to_fire - /// + /// + /// base_physical_damage_%_to_convert_to_fire + /// BasePhysicalDamagePctToConvertToFire = 483, - /// - /// base_physical_damage_%_to_convert_to_cold - /// + /// + /// base_physical_damage_%_to_convert_to_cold + /// BasePhysicalDamagePctToConvertToCold = 484, - /// - /// base_physical_damage_%_to_convert_to_lightning - /// + /// + /// base_physical_damage_%_to_convert_to_lightning + /// BasePhysicalDamagePctToConvertToLightning = 485, - /// - /// base_physical_damage_%_to_convert_to_chaos - /// + /// + /// base_physical_damage_%_to_convert_to_chaos + /// BasePhysicalDamagePctToConvertToChaos = 486, - /// - /// Elemental Damage +% - /// + /// + /// Elemental Damage +% + /// ElementalDamagePct = 487, - /// - /// Mana Regeneration rate increase per Power Charge - /// + /// + /// Mana Regeneration rate increase per Power Charge + /// ManaRegenerationRatePctPerPowerCharge = 488, - /// - /// Minion Damage increase - /// + /// + /// Minion Damage increase + /// MinionDamagePct = 489, - /// - /// shield_maximum_energy_shield_+% - /// + /// + /// shield_maximum_energy_shield_+% + /// ShieldMaximumEnergyShieldPct = 490, - /// - /// melee_physical_damage_+% - /// + /// + /// melee_physical_damage_+% + /// MeleePhysicalDamagePct = 491, - /// - /// maximum_block_% - /// + /// + /// maximum_block_% + /// MaximumBlockPct = 492, - /// - /// shield_physical_damage_reduction_rating_+% - /// + /// + /// shield_physical_damage_reduction_rating_+% + /// ShieldPhysicalDamageReductionRatingPct = 493, - /// - /// shield_evasion_rating_+% - /// + /// + /// shield_evasion_rating_+% + /// ShieldEvasionRatingPct = 494, - /// - /// base_shield_evasion_rating - /// + /// + /// base_shield_evasion_rating + /// BaseShieldEvasionRating = 495, - /// - /// base_shield_physical_damage_reduction_rating - /// + /// + /// base_shield_physical_damage_reduction_rating + /// BaseShieldPhysicalDamageReductionRating = 496, - /// - /// base_shield_maximum_energy_shield - /// + /// + /// base_shield_maximum_energy_shield + /// BaseShieldMaximumEnergyShield = 497, - /// - /// ranged_weapon_physical_damage_+% - /// + /// + /// ranged_weapon_physical_damage_+% + /// RangedWeaponPhysicalDamagePct = 498, - /// - /// projectile_damage_+% - /// + /// + /// projectile_damage_+% + /// ProjectileDamagePct = 499, - /// - /// base_is_projectile - /// + /// + /// base_is_projectile + /// BaseIsProjectile = 500, - /// - /// Cast Speed increase per Frenzy Charge - /// + /// + /// Cast Speed increase per Frenzy Charge + /// BaseCastSpeedPctPerFrenzyCharge = 501, - /// - /// sword_accuracy_rating - /// + /// + /// sword_accuracy_rating + /// SwordAccuracyRating = 502, - /// - /// bow_accuracy_rating - /// + /// + /// bow_accuracy_rating + /// BowAccuracyRating = 503, - /// - /// dagger_accuracy_rating - /// + /// + /// dagger_accuracy_rating + /// DaggerAccuracyRating = 504, - /// - /// axe_accuracy_rating - /// + /// + /// axe_accuracy_rating + /// AxeAccuracyRating = 505, - /// - /// claw_accuracy_rating - /// + /// + /// claw_accuracy_rating + /// ClawAccuracyRating = 506, - /// - /// staff_accuracy_rating - /// + /// + /// staff_accuracy_rating + /// StaffAccuracyRating = 507, - /// - /// mace_accuracy_rating - /// + /// + /// mace_accuracy_rating + /// MaceAccuracyRating = 508, - /// - /// wand_accuracy_rating - /// + /// + /// wand_accuracy_rating + /// WandAccuracyRating = 509, - /// - /// wall_expand_delay_ms - /// + /// + /// wall_expand_delay_ms + /// WallExpandDelayMs = 510, - /// - /// wall_maximum_length - /// + /// + /// wall_maximum_length + /// WallMaximumLength = 511, - /// - /// main_hand_poison_on_critical_strike - /// + /// + /// main_hand_poison_on_critical_strike + /// MainHandPoisonOnCriticalStrike = 512, - /// - /// off_hand_poison_on_critical_strike - /// + /// + /// off_hand_poison_on_critical_strike + /// OffHandPoisonOnCriticalStrike = 513, - /// - /// current_viper_strike_orbs - /// + /// + /// current_viper_strike_orbs + /// CurrentViperStrikeOrbs = 514, - /// - /// max_viper_strike_orbs - /// + /// + /// max_viper_strike_orbs + /// MaxViperStrikeOrbs = 515, - /// - /// monster_chance_to_not_flee_% - /// + /// + /// monster_chance_to_not_flee_% + /// MonsterChanceToNotFleePct = 516, - /// - /// Local Socketed Fire Gem Level + - /// + /// + /// Local Socketed Fire Gem Level + + /// LocalSocketedFireGemLevel = 517, - /// - /// Local Socketed Cold Gem Level + - /// + /// + /// Local Socketed Cold Gem Level + + /// LocalSocketedColdGemLevel = 518, - /// - /// Local Socketed Lightning Gem Level + - /// + /// + /// Local Socketed Lightning Gem Level + + /// LocalSocketedLightningGemLevel = 519, - /// - /// local_socketed_chaos_gem_level_+ - /// + /// + /// local_socketed_chaos_gem_level_+ + /// LocalSocketedChaosGemLevel = 520, - /// - /// local_socketed_projectile_gem_level_+ - /// + /// + /// local_socketed_projectile_gem_level_+ + /// LocalSocketedProjectileGemLevel = 521, - /// - /// local_socketed_spell_gem_level_+ - /// + /// + /// local_socketed_spell_gem_level_+ + /// LocalSocketedSpellGemLevel = 522, - /// - /// Local Socketed Melee Gem Level + - /// + /// + /// Local Socketed Melee Gem Level + + /// LocalSocketedMeleeGemLevel = 523, - /// - /// Local Socketed Bow Gem Level + - /// + /// + /// Local Socketed Bow Gem Level + + /// LocalSocketedBowGemLevel = 524, - /// - /// Local Socketed Minion Gem Level + - /// + /// + /// Local Socketed Minion Gem Level + + /// LocalSocketedMinionGemLevel = 525, - /// - /// Local Socketed Gem Level + - /// + /// + /// Local Socketed Gem Level + + /// LocalSocketedGemLevel = 526, - /// - /// base_killed_monster_dropped_item_rarity_+% - /// + /// + /// base_killed_monster_dropped_item_rarity_+% + /// BaseKilledMonsterDroppedItemRarityPct = 527, - /// - /// base_killed_monster_dropped_item_quantity_+% - /// + /// + /// base_killed_monster_dropped_item_quantity_+% + /// BaseKilledMonsterDroppedItemQuantityPct = 528, - /// - /// current_fuse_arrow_orbs - /// + /// + /// current_fuse_arrow_orbs + /// CurrentFuseArrowOrbs = 529, - /// - /// max_fuse_arrow_orbs - /// + /// + /// max_fuse_arrow_orbs + /// MaxFuseArrowOrbs = 530, - /// - /// minimum_fire_damage_per_fuse_arrow_orb - /// + /// + /// minimum_fire_damage_per_fuse_arrow_orb + /// MinimumFireDamagePerFuseArrowOrb = 531, - /// - /// maximum_fire_damage_per_fuse_arrow_orb - /// + /// + /// maximum_fire_damage_per_fuse_arrow_orb + /// MaximumFireDamagePerFuseArrowOrb = 532, - /// - /// buff_time_passed_+%_other_than_temporal_chains - /// + /// + /// buff_time_passed_+%_other_than_temporal_chains + /// BuffTimePassedPctOtherThanTemporalChains = 533, - /// - /// chance_to_be_shocked_% - /// + /// + /// chance_to_be_shocked_% + /// ChanceToBeShockedPct = 534, - /// - /// chance_to_be_chilled_% - /// + /// + /// chance_to_be_chilled_% + /// ChanceToBeChilledPct = 535, - /// - /// chance_to_be_frozen_% - /// + /// + /// chance_to_be_frozen_% + /// ChanceToBeFrozenPct = 536, - /// - /// chance_to_be_ignited_% - /// + /// + /// chance_to_be_ignited_% + /// ChanceToBeIgnitedPct = 537, - /// - /// life_leech_on_any_damage_when_hit_permyriad - /// + /// + /// life_leech_on_any_damage_when_hit_permyriad + /// LifeLeechOnAnyDamageWhenHitPermyriad = 538, - /// - /// mana_leech_on_any_damage_when_hit_permyriad - /// + /// + /// mana_leech_on_any_damage_when_hit_permyriad + /// ManaLeechOnAnyDamageWhenHitPermyriad = 539, - /// - /// chance_to_grant_power_charge_on_death_% - /// + /// + /// chance_to_grant_power_charge_on_death_% + /// ChanceToGrantPowerChargeOnDeathPct = 540, - /// - /// physical_damage_dealt_applied_to_self_% - /// + /// + /// physical_damage_dealt_applied_to_self_% + /// PhysicalDamageDealtAppliedToSelfPct = 541, - /// - /// chance_to_be_knocked_back_% - /// + /// + /// chance_to_be_knocked_back_% + /// ChanceToBeKnockedBackPct = 542, - /// - /// degen_effect_+% - /// + /// + /// degen_effect_+% + /// DegenEffectPct = 543, - /// - /// chance_to_be_stunned_% - /// + /// + /// chance_to_be_stunned_% + /// ChanceToBeStunnedPct = 544, - /// - /// chance_to_grant_endurance_charge_on_death_% - /// + /// + /// chance_to_grant_endurance_charge_on_death_% + /// ChanceToGrantEnduranceChargeOnDeathPct = 545, - /// - /// physical_damage_taken_+% - /// + /// + /// physical_damage_taken_+% + /// PhysicalDamageTakenPct = 546, - /// - /// fuse_arrow_explosion_radius_+_per_fuse_arrow_orb - /// + /// + /// fuse_arrow_explosion_radius_+_per_fuse_arrow_orb + /// FuseArrowExplosionRadiusPerFuseArrowOrb = 547, - /// - /// base_number_of_skeletons_allowed - /// + /// + /// base_number_of_skeletons_allowed + /// BaseNumberOfSkeletonsAllowed = 548, - /// - /// number_of_melee_skeletons_to_summon - /// + /// + /// number_of_melee_skeletons_to_summon + /// NumberOfMeleeSkeletonsToSummon = 549, - /// - /// Main Hand Critical Strike Chance - /// + /// + /// Main Hand Critical Strike Chance + /// MainHandCriticalStrikeChance = 550, - /// - /// Off Hand Critical Strike Chance - /// + /// + /// Off Hand Critical Strike Chance + /// OffHandCriticalStrikeChance = 551, - /// - /// Spell Critical Strike Chance - /// + /// + /// Spell Critical Strike Chance + /// SpellCriticalStrikeChance = 552, - /// - /// local_critical_strike_chance - /// + /// + /// local_critical_strike_chance + /// LocalCriticalStrikeChance = 553, - /// - /// base_spell_critical_strike_chance - /// + /// + /// base_spell_critical_strike_chance + /// BaseSpellCriticalStrikeChance = 554, - /// - /// Critical Strike Chance +% - /// + /// + /// Critical Strike Chance +% + /// CriticalStrikeChancePct = 555, - /// - /// Critical Strike chance increase per Power Charge - /// + /// + /// Critical Strike chance increase per Power Charge + /// CriticalStrikeChancePctPerPowerCharge = 556, - /// - /// Spell Critical Strike Chance +% - /// + /// + /// Spell Critical Strike Chance +% + /// SpellCriticalStrikeChancePct = 557, - /// - /// Local Critical Strike Chance +% - /// + /// + /// Local Critical Strike Chance +% + /// LocalCriticalStrikeChancePct = 558, - /// - /// dagger_critical_strike_chance_+% - /// + /// + /// dagger_critical_strike_chance_+% + /// DaggerCriticalStrikeChancePct = 559, - /// - /// bow_critical_strike_chance_+% - /// + /// + /// bow_critical_strike_chance_+% + /// BowCriticalStrikeChancePct = 560, - /// - /// claw_critical_strike_chance_+% - /// + /// + /// claw_critical_strike_chance_+% + /// ClawCriticalStrikeChancePct = 561, - /// - /// base_life_recovery_per_minute - /// + /// + /// base_life_recovery_per_minute + /// BaseLifeRecoveryPerMinute = 562, - /// - /// base_mana_recovery_per_minute - /// + /// + /// base_mana_recovery_per_minute + /// BaseManaRecoveryPerMinute = 563, - /// - /// maximum_life_%_to_add_to_maximum_energy_shield - /// + /// + /// maximum_life_%_to_add_to_maximum_energy_shield + /// MaximumLifePctToAddToMaximumEnergyShield = 564, - /// - /// physical_damage_taken_%_to_deal_to_attacker - /// + /// + /// physical_damage_taken_%_to_deal_to_attacker + /// PhysicalDamageTakenPctToDealToAttacker = 565, - /// - /// elemental_damage_taken_%_to_deal_to_attacker - /// + /// + /// elemental_damage_taken_%_to_deal_to_attacker + /// ElementalDamageTakenPctToDealToAttacker = 566, - /// - /// base_skeleton_maximum_life_+% - /// + /// + /// base_skeleton_maximum_life_+% + /// BaseSkeletonMaximumLifePct = 567, - /// - /// skeleton_maximum_life_+% - /// + /// + /// skeleton_maximum_life_+% + /// SkeletonMaximumLifePct = 568, - /// - /// additional_base_critical_strike_chance - /// + /// + /// additional_base_critical_strike_chance + /// AdditionalBaseCriticalStrikeChance = 569, - /// - /// accuracy_rating_per_level - /// + /// + /// accuracy_rating_per_level + /// AccuracyRatingPerLevel = 570, - /// - /// evasion_rating_per_level - /// + /// + /// evasion_rating_per_level + /// EvasionRatingPerLevel = 571, - /// - /// Local Accuracy Rating - /// + /// + /// Local Accuracy Rating + /// LocalAccuracyRating = 572, - /// - /// strength - /// + /// + /// strength + /// Strength = 573, - /// - /// base_strength - /// + /// + /// base_strength + /// BaseStrength = 574, - /// - /// Additional Strength - /// + /// + /// Additional Strength + /// AdditionalStrength = 575, - /// - /// intelligence - /// + /// + /// intelligence + /// Intelligence = 576, - /// - /// base_intelligence - /// + /// + /// base_intelligence + /// BaseIntelligence = 577, - /// - /// Additional Intelligence - /// + /// + /// Additional Intelligence + /// AdditionalIntelligence = 578, - /// - /// dexterity - /// + /// + /// dexterity + /// Dexterity = 579, - /// - /// base_dexterity - /// + /// + /// base_dexterity + /// BaseDexterity = 580, - /// - /// Additional Dexterity - /// + /// + /// Additional Dexterity + /// AdditionalDexterity = 581, - /// - /// on_low_life - /// + /// + /// on_low_life + /// OnLowLife = 582, - /// - /// on_full_life - /// + /// + /// on_full_life + /// OnFullLife = 583, - /// - /// damage_+%_when_on_low_life - /// + /// + /// damage_+%_when_on_low_life + /// DamagePctWhenOnLowLife = 584, - /// - /// damage_+%_when_on_full_life - /// + /// + /// damage_+%_when_on_full_life + /// DamagePctWhenOnFullLife = 585, - /// - /// cast_speed_+%_when_on_low_life - /// + /// + /// cast_speed_+%_when_on_low_life + /// CastSpeedPctWhenOnLowLife = 586, - /// - /// cast_speed_+%_when_on_full_life - /// + /// + /// cast_speed_+%_when_on_full_life + /// CastSpeedPctWhenOnFullLife = 587, - /// - /// attack_speed_+%_when_on_low_life - /// + /// + /// attack_speed_+%_when_on_low_life + /// AttackSpeedPctWhenOnLowLife = 588, - /// - /// attack_speed_+%_when_on_full_life - /// + /// + /// attack_speed_+%_when_on_full_life + /// AttackSpeedPctWhenOnFullLife = 589, - /// - /// kill_enemy_on_hit_if_under_10%_life - /// + /// + /// kill_enemy_on_hit_if_under_10%_life + /// KillEnemyOnHitIfUnder10PctLife = 590, - /// - /// Cold Resistance Penetration - /// + /// + /// Cold Resistance Penetration + /// ReduceEnemyColdResistancePct = 591, - /// - /// Fire Resistance Penetration - /// + /// + /// Fire Resistance Penetration + /// ReduceEnemyFireResistancePct = 592, - /// - /// Lightning Resistance Penetration - /// + /// + /// Lightning Resistance Penetration + /// ReduceEnemyLightningResistancePct = 593, - /// - /// base_reduce_enemy_fire_resistance_% - /// + /// + /// base_reduce_enemy_fire_resistance_% + /// BaseReduceEnemyFireResistancePct = 594, - /// - /// base_reduce_enemy_cold_resistance_% - /// + /// + /// base_reduce_enemy_cold_resistance_% + /// BaseReduceEnemyColdResistancePct = 595, - /// - /// base_reduce_enemy_lightning_resistance_% - /// + /// + /// base_reduce_enemy_lightning_resistance_% + /// BaseReduceEnemyLightningResistancePct = 596, - /// - /// Reduce Enemy Elemental Resistance % - /// + /// + /// Reduce Enemy Elemental Resistance % + /// ReduceEnemyElementalResistancePct = 597, - /// - /// Chaos Resistance Penetration - /// + /// + /// Chaos Resistance Penetration + /// ReduceEnemyChaosResistancePct = 598, - /// - /// life_leech_on_physical_damage_when_hit_by_attack_% - /// + /// + /// life_leech_on_physical_damage_when_hit_by_attack_% + /// LifeLeechOnPhysicalDamageWhenHitByAttackPct = 599, - /// - /// mana_leech_on_physical_damage_when_hit_by_attack_% - /// + /// + /// mana_leech_on_physical_damage_when_hit_by_attack_% + /// ManaLeechOnPhysicalDamageWhenHitByAttackPct = 600, - /// - /// add_endurance_charge_on_melee_critical_strike - /// + /// + /// add_endurance_charge_on_melee_critical_strike + /// AddEnduranceChargeOnMeleeCriticalStrike = 601, - /// - /// add_frenzy_charge_on_melee_critical_strike - /// + /// + /// add_frenzy_charge_on_melee_critical_strike + /// AddFrenzyChargeOnMeleeCriticalStrike = 602, - /// - /// add_power_charge_on_melee_critical_strike - /// + /// + /// add_power_charge_on_melee_critical_strike + /// AddPowerChargeOnMeleeCriticalStrike = 603, - /// - /// Life Leech speed increase - /// + /// + /// Life Leech speed increase + /// LifeLeechSpeedPct = 604, - /// - /// Mana Leech speed increase - /// + /// + /// Mana Leech speed increase + /// ManaLeechSpeedPct = 605, - /// - /// Additional All Attributes - /// + /// + /// Additional All Attributes + /// AdditionalAllAttributes = 606, - /// - /// base_critical_strike_multiplier - /// + /// + /// base_critical_strike_multiplier + /// BaseCriticalStrikeMultiplier2 = 607, - /// - /// Main Hand Critical Strike Damage Multiplier - /// + /// + /// Main Hand Critical Strike Damage Multiplier + /// MainHandCriticalStrikeMultiplier2 = 608, - /// - /// Off Hand Critical Strike Damage Multiplier - /// + /// + /// Off Hand Critical Strike Damage Multiplier + /// OffHandCriticalStrikeMultiplier2 = 609, - /// - /// Spell Critical Strike Damage Multiplier - /// + /// + /// Spell Critical Strike Damage Multiplier + /// SpellCriticalStrikeMultiplier2 = 610, - /// - /// base_cold_damage_%_to_convert_to_fire - /// + /// + /// base_cold_damage_%_to_convert_to_fire + /// BaseColdDamagePctToConvertToFire = 611, - /// - /// base_chance_to_ignite_% - /// + /// + /// base_chance_to_ignite_% + /// BaseChanceToIgnitePct = 612, - /// - /// fire_storm_fireball_delay_ms - /// + /// + /// fire_storm_fireball_delay_ms + /// FireStormFireballDelayMs = 613, - /// - /// one_handed_melee_critical_strike_chance_+% - /// + /// + /// one_handed_melee_critical_strike_chance_+% + /// OneHandedMeleeCriticalStrikeChancePct = 614, - /// - /// axe_critical_strike_multiplier_+ - /// + /// + /// axe_critical_strike_multiplier_+ + /// AxeCriticalStrikeMultiplier = 615, - /// - /// sword_critical_strike_multiplier_+ - /// + /// + /// sword_critical_strike_multiplier_+ + /// SwordCriticalStrikeMultiplier = 616, - /// - /// bow_critical_strike_multiplier_+ - /// + /// + /// bow_critical_strike_multiplier_+ + /// BowCriticalStrikeMultiplier = 617, - /// - /// minion_movement_speed_+% - /// + /// + /// minion_movement_speed_+% + /// MinionMovementSpeedPct = 618, - /// - /// is_area_damage - /// + /// + /// is_area_damage + /// IsAreaDamage = 619, - /// - /// area_damage_+% - /// + /// + /// area_damage_+% + /// AreaDamagePct = 620, - /// - /// avoid_all_elemental_status_% - /// + /// + /// avoid_all_elemental_status_% + /// AvoidAllElementalStatusPct = 621, - /// - /// self_elemental_status_duration_-% - /// + /// + /// self_elemental_status_duration_-% + /// SelfElementalStatusDurationPct = 622, - /// - /// one_handed_melee_critical_strike_multiplier_+ - /// + /// + /// one_handed_melee_critical_strike_multiplier_+ + /// OneHandedMeleeCriticalStrikeMultiplier = 623, - /// - /// two_handed_melee_critical_strike_chance_+% - /// + /// + /// two_handed_melee_critical_strike_chance_+% + /// TwoHandedMeleeCriticalStrikeChancePct = 624, - /// - /// two_handed_melee_critical_strike_multiplier_+ - /// + /// + /// two_handed_melee_critical_strike_multiplier_+ + /// TwoHandedMeleeCriticalStrikeMultiplier = 625, - /// - /// shield_charge_continue_past_target - /// + /// + /// shield_charge_continue_past_target + /// ShieldChargeContinuePastTarget = 626, - /// - /// Chill avoidance - /// + /// + /// Chill avoidance + /// AvoidChillPct = 627, - /// - /// Freeze avoidance - /// + /// + /// Freeze avoidance + /// AvoidFreezePct = 628, - /// - /// Ignite avoidance - /// + /// + /// Ignite avoidance + /// AvoidIgnitePct = 629, - /// - /// Shock avoidance - /// + /// + /// Shock avoidance + /// AvoidShockPct = 630, - /// - /// Chill duration on self reduction - /// + /// + /// Chill duration on self reduction + /// SelfChillDurationPct = 631, - /// - /// Shock duration on self reduction - /// + /// + /// Shock duration on self reduction + /// SelfShockDurationPct = 632, - /// - /// Freeze duration on self reduction - /// + /// + /// Freeze duration on self reduction + /// SelfFreezeDurationPct = 633, - /// - /// Ignite duration on self reduction - /// + /// + /// Ignite duration on self reduction + /// SelfIgniteDurationPct = 634, - /// - /// active_skill_damage_+%_final - /// + /// + /// active_skill_damage_+%_final + /// ActiveSkillDamagePctFinal = 635, - /// - /// phase_run_melee_physical_damage_+%_final - /// + /// + /// phase_run_melee_physical_damage_+%_final + /// PhaseRunMeleePhysicalDamagePctFinal = 636, - /// - /// active_skill_physical_damage_+%_final - /// + /// + /// active_skill_physical_damage_+%_final + /// ActiveSkillPhysicalDamagePctFinal = 637, - /// - /// active_skill_elemental_damage_+%_final - /// + /// + /// active_skill_elemental_damage_+%_final + /// ActiveSkillElementalDamagePctFinal = 638, - /// - /// active_skill_fire_damage_+%_final - /// + /// + /// active_skill_fire_damage_+%_final + /// ActiveSkillFireDamagePctFinal = 639, - /// - /// active_skill_cold_damage_+%_final - /// + /// + /// active_skill_cold_damage_+%_final + /// ActiveSkillColdDamagePctFinal = 640, - /// - /// active_skill_lightning_damage_+%_final - /// + /// + /// active_skill_lightning_damage_+%_final + /// ActiveSkillLightningDamagePctFinal = 641, - /// - /// active_skill_chaos_damage_+%_final - /// + /// + /// active_skill_chaos_damage_+%_final + /// ActiveSkillChaosDamagePctFinal = 642, - /// - /// support_melee_physical_damage_+%_final - /// + /// + /// support_melee_physical_damage_+%_final + /// SupportMeleePhysicalDamagePctFinal = 643, - /// - /// support_weapon_elemental_damage_+%_final - /// + /// + /// support_weapon_elemental_damage_+%_final + /// SupportWeaponElementalDamagePctFinal = 644, - /// - /// support_area_concentrate_area_damage_+%_final - /// + /// + /// support_area_concentrate_area_damage_+%_final + /// SupportAreaConcentrateAreaDamagePctFinal = 645, - /// - /// active_skill_attack_damage_+%_final - /// + /// + /// active_skill_attack_damage_+%_final + /// ActiveSkillAttackDamagePctFinal = 646, - /// - /// active_skill_spell_damage_+%_final - /// + /// + /// active_skill_spell_damage_+%_final + /// ActiveSkillSpellDamagePctFinal = 647, - /// - /// support_multiple_projectile_damage_+%_final - /// + /// + /// support_multiple_projectile_damage_+%_final + /// SupportMultipleProjectileDamagePctFinal = 648, - /// - /// enfeeble_damage_+%_final - /// + /// + /// enfeeble_damage_+%_final + /// EnfeebleDamagePctFinal = 649, - /// - /// active_skill_minion_life_+%_final - /// + /// + /// active_skill_minion_life_+%_final + /// ActiveSkillMinionLifePctFinal = 650, - /// - /// active_skill_minion_damage_+%_final - /// + /// + /// active_skill_minion_damage_+%_final + /// ActiveSkillMinionDamagePctFinal = 651, - /// - /// max_life_+%_final_for_minion - /// + /// + /// max_life_+%_final_for_minion + /// MaxLifePctFinalForMinion = 652, - /// - /// damage_+%_final_for_minion - /// + /// + /// damage_+%_final_for_minion + /// DamagePctFinalForMinion = 653, - /// - /// strength_per_level - /// + /// + /// strength_per_level + /// StrengthPerLevel = 654, - /// - /// dexterity_per_level - /// + /// + /// dexterity_per_level + /// DexterityPerLevel = 655, - /// - /// intelligence_per_level - /// + /// + /// intelligence_per_level + /// IntelligencePerLevel = 656, - /// - /// critical_strike_chance_while_dual_wielding_+% - /// + /// + /// critical_strike_chance_while_dual_wielding_+% + /// CriticalStrikeChanceWhileDualWieldingPct = 657, - /// - /// critical_strike_multiplier_while_dual_wielding_+ - /// + /// + /// critical_strike_multiplier_while_dual_wielding_+ + /// CriticalStrikeMultiplierWhileDualWielding = 658, - /// - /// mace_critical_strike_multiplier_+ - /// + /// + /// mace_critical_strike_multiplier_+ + /// MaceCriticalStrikeMultiplier = 659, - /// - /// base_chance_to_shock_% - /// + /// + /// base_chance_to_shock_% + /// BaseChanceToShockPct = 660, - /// - /// spell_maximum_action_distance_+% - /// + /// + /// spell_maximum_action_distance_+% + /// SpellMaximumActionDistancePct = 661, - /// - /// Local Accuracy Rating +% - /// + /// + /// Local Accuracy Rating +% + /// LocalAccuracyRatingPct = 662, - /// - /// Increased Quantity of items dropped by slain monsters - /// + /// + /// Increased Quantity of items dropped by slain monsters + /// DisplaySkillIncreasedItemQuantityPct = 663, - /// - /// Increased Rarity of items dropped by slain monsters - /// + /// + /// Increased Rarity of items dropped by slain monsters + /// DisplaySkillIncreasedItemRarityPct = 664, - /// - /// wand_physical_damage_%_to_add_as_fire - /// + /// + /// wand_physical_damage_%_to_add_as_fire + /// WandPhysicalDamagePctToAddAsFire = 665, - /// - /// wand_physical_damage_%_to_add_as_cold - /// + /// + /// wand_physical_damage_%_to_add_as_cold + /// WandPhysicalDamagePctToAddAsCold = 666, - /// - /// wand_physical_damage_%_to_add_as_lightning - /// + /// + /// wand_physical_damage_%_to_add_as_lightning + /// WandPhysicalDamagePctToAddAsLightning = 667, - /// - /// main_hand_minimum_total_damage - /// + /// + /// main_hand_minimum_total_damage + /// MainHandMinimumTotalDamage = 668, - /// - /// main_hand_maximum_total_damage - /// + /// + /// main_hand_maximum_total_damage + /// MainHandMaximumTotalDamage = 669, - /// - /// Off Hand Total Combined Damage - /// + /// + /// Off Hand Total Combined Damage + /// OffHandMinimumTotalDamage = 670, - /// - /// off_hand_maximum_total_damage - /// + /// + /// off_hand_maximum_total_damage + /// OffHandMaximumTotalDamage = 671, - /// - /// spell_minimum_total_damage - /// + /// + /// spell_minimum_total_damage + /// SpellMinimumTotalDamage = 672, - /// - /// spell_maximum_total_damage - /// + /// + /// spell_maximum_total_damage + /// SpellMaximumTotalDamage = 673, - /// - /// main_hand_chance_to_hit_% - /// + /// + /// main_hand_chance_to_hit_% + /// MainHandChanceToHitPct = 674, - /// - /// off_hand_chance_to_hit_% - /// + /// + /// off_hand_chance_to_hit_% + /// OffHandChanceToHitPct = 675, - /// - /// hundred_times_attacks_per_second - /// + /// + /// hundred_times_attacks_per_second + /// HundredTimesAttacksPerSecond = 676, - /// - /// hundred_times_damage_per_second - /// + /// + /// hundred_times_damage_per_second + /// HundredTimesDamagePerSecond = 677, - /// - /// chance_to_evade_% - /// + /// + /// chance_to_evade_% + /// ChanceToEvadePct = 678, - /// - /// base_spell_cast_time_ms - /// + /// + /// base_spell_cast_time_ms + /// BaseSpellCastTimeMs = 679, - /// - /// hundred_times_casts_per_second - /// + /// + /// hundred_times_casts_per_second + /// HundredTimesCastsPerSecond = 680, - /// - /// global_hit_causes_monster_flee_% - /// + /// + /// global_hit_causes_monster_flee_% + /// GlobalHitCausesMonsterFleePct = 681, - /// - /// local_hit_causes_monster_flee_% - /// + /// + /// local_hit_causes_monster_flee_% + /// LocalHitCausesMonsterFleePct = 682, - /// - /// main_hand_hit_causes_monster_flee_% - /// + /// + /// main_hand_hit_causes_monster_flee_% + /// MainHandHitCausesMonsterFleePct = 683, - /// - /// off_hand_hit_causes_monster_flee_% - /// + /// + /// off_hand_hit_causes_monster_flee_% + /// OffHandHitCausesMonsterFleePct = 684, - /// - /// global_always_hit - /// + /// + /// global_always_hit + /// GlobalAlwaysHit = 685, - /// - /// main_hand_always_hit - /// + /// + /// main_hand_always_hit + /// MainHandAlwaysHit = 686, - /// - /// off_hand_always_hit - /// + /// + /// off_hand_always_hit + /// OffHandAlwaysHit = 687, - /// - /// local_always_hit - /// + /// + /// local_always_hit + /// LocalAlwaysHit = 688, - /// - /// explode_on_low_life_%_maximum_life_to_deal - /// + /// + /// explode_on_low_life_%_maximum_life_to_deal + /// ExplodeOnLowLifePctMaximumLifeToDeal = 689, - /// - /// curses_never_expire - /// + /// + /// curses_never_expire + /// CursesNeverExpire = 690, - /// - /// Chance to Dodge Attacks - /// + /// + /// Chance to Dodge Attacks + /// ChanceToDodgePct = 691, - /// - /// no_physical_damage_reduction_rating - /// + /// + /// no_physical_damage_reduction_rating + /// NoPhysicalDamageReductionRating = 692, - /// - /// no_energy_shield - /// + /// + /// no_energy_shield + /// NoEnergyShield = 693, - /// - /// keystone_iron_reflexes - /// + /// + /// keystone_iron_reflexes + /// KeystoneIronReflexes = 694, - /// - /// global_cannot_crit - /// + /// + /// global_cannot_crit + /// GlobalCannotCrit = 695, - /// - /// convert_all_physical_damage_to_fire - /// + /// + /// convert_all_physical_damage_to_fire + /// ConvertAllPhysicalDamageToFire = 696, - /// - /// base_cannot_evade - /// + /// + /// base_cannot_evade + /// BaseCannotEvade = 697, - /// - /// chaos_immunity - /// + /// + /// chaos_immunity + /// ChaosImmunity = 698, - /// - /// keystone_chaos_inoculation - /// + /// + /// keystone_chaos_inoculation + /// KeystoneChaosInoculation = 699, - /// - /// mana_%_to_add_as_energy_shield - /// + /// + /// mana_%_to_add_as_energy_shield + /// ManaPctToAddAsEnergyShield = 700, - /// - /// no_mana - /// + /// + /// no_mana + /// NoMana = 701, - /// - /// base_use_life_in_place_of_mana - /// + /// + /// base_use_life_in_place_of_mana + /// BaseUseLifeInPlaceOfMana = 702, - /// - /// Cannot be Stunned - /// + /// + /// Cannot be Stunned + /// BaseCannotBeStunned = 703, - /// - /// ignore_armour_movement_penalties - /// + /// + /// ignore_armour_movement_penalties + /// IgnoreArmourMovementPenalties = 704, - /// - /// base_buff_duration_ms_+_per_removable_endurance_charge - /// + /// + /// base_buff_duration_ms_+_per_removable_endurance_charge + /// BaseBuffDurationMsPerRemovableEnduranceCharge = 705, - /// - /// secondary_minimum_physical_damage - /// + /// + /// secondary_minimum_physical_damage + /// SecondaryMinimumPhysicalDamage = 706, - /// - /// secondary_maximum_physical_damage - /// + /// + /// secondary_maximum_physical_damage + /// SecondaryMaximumPhysicalDamage = 707, - /// - /// secondary_minimum_cold_damage - /// + /// + /// secondary_minimum_cold_damage + /// SecondaryMinimumColdDamage = 708, - /// - /// secondary_maximum_cold_damage - /// + /// + /// secondary_maximum_cold_damage + /// SecondaryMaximumColdDamage = 709, - /// - /// secondary_minimum_fire_damage - /// + /// + /// secondary_minimum_fire_damage + /// SecondaryMinimumFireDamage = 710, - /// - /// secondary_maximum_fire_damage - /// + /// + /// secondary_maximum_fire_damage + /// SecondaryMaximumFireDamage = 711, - /// - /// secondary_minimum_lightning_damage - /// + /// + /// secondary_minimum_lightning_damage + /// SecondaryMinimumLightningDamage = 712, - /// - /// secondary_maximum_lightning_damage - /// + /// + /// secondary_maximum_lightning_damage + /// SecondaryMaximumLightningDamage = 713, - /// - /// secondary_minimum_chaos_damage - /// + /// + /// secondary_minimum_chaos_damage + /// SecondaryMinimumChaosDamage = 714, - /// - /// secondary_maximum_chaos_damage - /// + /// + /// secondary_maximum_chaos_damage + /// SecondaryMaximumChaosDamage = 715, - /// - /// secondary_critical_strike_multiplier - /// + /// + /// secondary_critical_strike_multiplier + /// SecondaryCriticalStrikeMultiplier = 716, - /// - /// secondary_critical_strike_chance - /// + /// + /// secondary_critical_strike_chance + /// SecondaryCriticalStrikeChance = 717, - /// - /// Immune to Physical Damage - /// + /// + /// Immune to Physical Damage + /// PhysicalImmunity = 718, - /// - /// base_actor_scale_+% - /// + /// + /// base_actor_scale_+% + /// BaseActorScalePct = 719, - /// - /// display_estimated_physical_damage_reduciton_% - /// + /// + /// display_estimated_physical_damage_reduciton_% + /// DisplayEstimatedPhysicalDamageReducitonPct = 720, - /// - /// curse_count - /// + /// + /// curse_count + /// CurseCount = 721, - /// - /// number_of_additional_curses_allowed - /// + /// + /// number_of_additional_curses_allowed + /// NumberOfAdditionalCursesAllowed = 722, - /// - /// melee_knockback - /// + /// + /// melee_knockback + /// MeleeKnockback = 723, - /// - /// Projectiles Fired - /// + /// + /// Projectiles Fired + /// TotalNumberOfProjectilesToFire = 724, - /// - /// Arrows Fired - /// + /// + /// Arrows Fired + /// TotalNumberOfArrowsToFire = 725, - /// - /// number_of_zombies_allowed - /// + /// + /// number_of_zombies_allowed + /// NumberOfZombiesAllowed = 726, - /// - /// number_of_spectres_allowed - /// + /// + /// number_of_spectres_allowed + /// NumberOfSpectresAllowed = 727, - /// - /// number_of_skeletons_allowed - /// + /// + /// number_of_skeletons_allowed + /// NumberOfSkeletonsAllowed = 728, - /// - /// From Armour Movement Speed +% - /// + /// + /// From Armour Movement Speed +% + /// FromArmourMovementSpeedPct = 729, - /// - /// active_skill_minion_energy_shield_+%_final - /// + /// + /// active_skill_minion_energy_shield_+%_final + /// ActiveSkillMinionEnergyShieldPctFinal = 730, - /// - /// energy_shield_+%_final_for_minion - /// + /// + /// energy_shield_+%_final_for_minion + /// EnergyShieldPctFinalForMinion = 731, - /// - /// projectile_damage_taken_+% - /// + /// + /// projectile_damage_taken_+% + /// ProjectileDamageTakenPct = 732, - /// - /// fire_shield_damage_threshold - /// + /// + /// fire_shield_damage_threshold + /// FireShieldDamageThreshold = 733, - /// - /// support_multiple_projectiles_critical_strike_chance_+%_final - /// + /// + /// support_multiple_projectiles_critical_strike_chance_+%_final + /// SupportMultipleProjectilesCriticalStrikeChancePctFinal = 734, - /// - /// display_monster_wealth_mod - /// + /// + /// display_monster_wealth_mod + /// DisplayMonsterWealthMod = 735, - /// - /// Local Armour And Energy Shield +% - /// + /// + /// Local Armour And Energy Shield +% + /// LocalArmourAndEnergyShieldPct = 736, - /// - /// Local Armour And Evasion +% - /// + /// + /// Local Armour And Evasion +% + /// LocalArmourAndEvasionPct = 737, - /// - /// Local Evasion And Energy Shield +% - /// + /// + /// Local Evasion And Energy Shield +% + /// LocalEvasionAndEnergyShieldPct = 738, - /// - /// Local Armour And Evasion And Energy Shield +% - /// + /// + /// Local Armour And Evasion And Energy Shield +% + /// LocalArmourAndEvasionAndEnergyShieldPct = 739, - /// - /// Flask Charges Used +% - /// + /// + /// Flask Charges Used +% + /// FlaskChargesUsedPct = 740, - /// - /// Flask Duration +% - /// + /// + /// Flask Duration +% + /// FlaskDurationPct = 741, - /// - /// Flask Life Recovery Rate +% - /// + /// + /// Flask Life Recovery Rate +% + /// FlaskLifeRecoveryRatePct = 742, - /// - /// Flask Mana Recovery Rate +% - /// + /// + /// Flask Mana Recovery Rate +% + /// FlaskManaRecoveryRatePct = 743, - /// - /// minions_get_shield_stats_instead_of_you - /// + /// + /// minions_get_shield_stats_instead_of_you + /// MinionsGetShieldStatsInsteadOfYou = 744, - /// - /// cannot_resist_cold_damage - /// + /// + /// cannot_resist_cold_damage + /// CannotResistColdDamage = 745, - /// - /// add_power_charge_on_kill - /// + /// + /// add_power_charge_on_kill + /// AddPowerChargeOnKill = 746, - /// - /// immune_to_curses - /// + /// + /// immune_to_curses + /// ImmuneToCurses = 747, - /// - /// monster_grants_frenzy_charges_to_allies_within_distance_on_death - /// + /// + /// monster_grants_frenzy_charges_to_allies_within_distance_on_death + /// MonsterGrantsFrenzyChargesToAlliesWithinDistanceOnDeath = 748, - /// - /// dual_wield_or_shield_block_% - /// + /// + /// dual_wield_or_shield_block_% + /// DualWieldOrShieldBlockPct = 749, - /// - /// gain_frenzy_charge_for_each_quarter_life_removed - /// + /// + /// gain_frenzy_charge_for_each_quarter_life_removed + /// GainFrenzyChargeForEachQuarterLifeRemoved = 750, - /// - /// monster_life_thresholds_passed - /// + /// + /// monster_life_thresholds_passed + /// MonsterLifeThresholdsPassed = 751, - /// - /// chaos_inoculation_keystone_energy_shield_+%_final - /// + /// + /// chaos_inoculation_keystone_energy_shield_+%_final + /// ChaosInoculationKeystoneEnergyShieldPctFinal = 752, - /// - /// pain_attunement_keystone_spell_damage_+%_final - /// + /// + /// pain_attunement_keystone_spell_damage_+%_final + /// PainAttunementKeystoneSpellDamagePctFinal = 753, - /// - /// keystone_elemental_equilibrium - /// + /// + /// keystone_elemental_equilibrium + /// KeystoneElementalEquilibrium = 754, - /// - /// evasion_rating_+_when_on_low_life - /// + /// + /// evasion_rating_+_when_on_low_life + /// EvasionRatingWhenOnLowLife = 755, - /// - /// life_regeneration_rate_per_minute_%_when_on_low_life - /// + /// + /// life_regeneration_rate_per_minute_%_when_on_low_life + /// LifeRegenerationRatePerMinutePctWhenOnLowLife = 756, - /// - /// local_socketed_strength_gem_level_+ - /// + /// + /// local_socketed_strength_gem_level_+ + /// LocalSocketedStrengthGemLevel = 757, - /// - /// local_socketed_dexterity_gem_level_+ - /// + /// + /// local_socketed_dexterity_gem_level_+ + /// LocalSocketedDexterityGemLevel = 758, - /// - /// local_socketed_intelligence_gem_level_+ - /// + /// + /// local_socketed_intelligence_gem_level_+ + /// LocalSocketedIntelligenceGemLevel = 759, - /// - /// Physical Damage Reflected to Melee Attackers - /// + /// + /// Physical Damage Reflected to Melee Attackers + /// MaximumPhysicalDamageToReturnToMeleeAttacker = 760, - /// - /// Fire Damage Reflected to Melee Attackers - /// + /// + /// Fire Damage Reflected to Melee Attackers + /// MaximumFireDamageToReturnToMeleeAttacker = 761, - /// - /// Cold Damage Reflected to Melee Attackers - /// + /// + /// Cold Damage Reflected to Melee Attackers + /// MaximumColdDamageToReturnToMeleeAttacker = 762, - /// - /// Lightning Damage Reflected to Melee Attackers - /// + /// + /// Lightning Damage Reflected to Melee Attackers + /// MaximumLightningDamageToReturnToMeleeAttacker = 763, - /// - /// Chaos Damage Reflected to Melee Attackers - /// + /// + /// Chaos Damage Reflected to Melee Attackers + /// MaximumChaosDamageToReturnToMeleeAttacker = 764, - /// - /// Physical Damage Reflected to Melee Attackers - /// + /// + /// Physical Damage Reflected to Melee Attackers + /// MinimumPhysicalDamageToReturnToMeleeAttacker = 765, - /// - /// Fire Damage Reflected to Melee Attackers - /// + /// + /// Fire Damage Reflected to Melee Attackers + /// MinimumFireDamageToReturnToMeleeAttacker = 766, - /// - /// Cold Damage Reflected to Melee Attackers - /// + /// + /// Cold Damage Reflected to Melee Attackers + /// MinimumColdDamageToReturnToMeleeAttacker = 767, - /// - /// Lightning Damage Reflected to Melee Attackers - /// + /// + /// Lightning Damage Reflected to Melee Attackers + /// MinimumLightningDamageToReturnToMeleeAttacker = 768, - /// - /// Chaos Damage Reflected to Melee Attackers - /// + /// + /// Chaos Damage Reflected to Melee Attackers + /// MinimumChaosDamageToReturnToMeleeAttacker = 769, - /// - /// physical_damage_taken_when_hit_by_attack - /// - PhysicalDamageTakenWhenHitByAttack = 770, - - /// - /// fire_damage_taken_when_hit_by_attack - /// - FireDamageTakenWhenHitByAttack = 771, - - /// - /// cold_damage_taken_when_hit_by_attack - /// - ColdDamageTakenWhenHitByAttack = 772, - - /// - /// lightning_damage_taken_when_hit_by_attack - /// - LightningDamageTakenWhenHitByAttack = 773, - - /// - /// chaos_damage_taken_when_hit_by_attack - /// - ChaosDamageTakenWhenHitByAttack = 774, - - /// - /// mana_cost_+%_when_on_low_life - /// - ManaCostPctWhenOnLowLife = 775, - - /// - /// elemental_resistance_%_when_on_low_life - /// - ElementalResistancePctWhenOnLowLife = 776, - - /// - /// local_has_no_sockets - /// - LocalHasNoSockets = 777, - - /// - /// local_all_sockets_linked - /// - LocalAllSocketsLinked = 778, - - /// - /// movement_velocity_+%_when_on_low_life - /// - MovementVelocityPctWhenOnLowLife = 779, - - /// - /// mana_cost_+% - /// - ManaCostPct = 780, - - /// - /// keystone_acrobatics - /// - KeystoneAcrobatics = 781, - - /// - /// keystone_pain_attunement - /// - KeystonePainAttunement = 782, - - /// - /// item_found_quantity_+%_when_on_low_life - /// - ItemFoundQuantityPctWhenOnLowLife = 783, - - /// - /// item_found_rarity_+%_when_on_low_life - /// - ItemFoundRarityPctWhenOnLowLife = 784, - - /// - /// item_found_quantity_+% - /// - ItemFoundQuantityPct = 785, - - /// - /// item_found_rarity_+% - /// - ItemFoundRarityPct = 786, - - /// - /// active_skill_projectile_damage_+%_final - /// - ActiveSkillProjectileDamagePctFinal = 787, - - /// - /// bonus_damage_+%_from_strength - /// - BonusDamagePctFromStrength = 788, - - /// - /// keystone_strong_bowman - /// - KeystoneStrongBowman = 789, - - /// - /// monster_projectile_variation - /// - MonsterProjectileVariation = 790, - - /// - /// keystone_point_blank - /// - KeystonePointBlank = 791, - - /// - /// damage_+%_final_from_distance - /// - DamagePctFinalFromDistance = 792, - - /// - /// keystone_conduit - /// - KeystoneConduit = 793, - - /// - /// movement_velocity_+%_when_on_full_life - /// - MovementVelocityPctWhenOnFullLife = 794, - - /// - /// show_number_of_projectiles - /// - ShowNumberOfProjectiles = 795, - - /// - /// lightning_arrow_maximum_number_of_extra_targets - /// - LightningArrowMaximumNumberOfExtraTargets = 796, - - /// - /// Physical Damage +% - /// - MainHandLocalPhysicalDamagePct = 797, - - /// - /// Additional Minimum Physical Damage - /// - MainHandLocalMinimumAddedPhysicalDamage = 798, - - /// - /// Additional Maximum Physical Damage - /// - MainHandLocalMaximumAddedPhysicalDamage = 799, - - /// - /// Additional Minimum Fire Damage - /// - MainHandLocalMinimumAddedFireDamage = 800, - - /// - /// Additional Maximum Fire Damage - /// - MainHandLocalMaximumAddedFireDamage = 801, - - /// - /// Additional Minimum Cold Damage - /// - MainHandLocalMinimumAddedColdDamage = 802, - - /// - /// Additional Maximum Cold Damage - /// - MainHandLocalMaximumAddedColdDamage = 803, - - /// - /// Additional Minimum Lightning Damage - /// - MainHandLocalMinimumAddedLightningDamage = 804, - - /// - /// Additional Maximum Lightning Damage - /// - MainHandLocalMaximumAddedLightningDamage = 805, - - /// - /// Additional Minimum Chaos Damage - /// - MainHandLocalMinimumAddedChaosDamage = 806, - - /// - /// Additional Maximum Chaos Damage - /// - MainHandLocalMaximumAddedChaosDamage = 807, - - /// - /// Main Hand Attack Speed +% - /// - MainHandLocalAttackSpeedPct = 808, - - /// - /// old_do_not_use_main_hand_local_life_leech_from_physical_damage_% - /// - OldDoNotUseMainHandLocalLifeLeechFromPhysicalDamagePct = 809, - - /// - /// old_do_not_use_main_hand_local_mana_leech_from_physical_damage_% - /// - OldDoNotUseMainHandLocalManaLeechFromPhysicalDamagePct = 810, - - /// - /// Knockback - /// - MainHandLocalKnockback = 811, - - /// - /// main_hand_local_critical_strike_multiplier_+ - /// - MainHandLocalCriticalStrikeMultiplier = 812, - - /// - /// main_hand_local_critical_strike_chance - /// - MainHandLocalCriticalStrikeChance = 813, - - /// - /// main_hand_local_critical_strike_chance_+% - /// - MainHandLocalCriticalStrikeChancePct = 814, - - /// - /// main_hand_local_accuracy_rating - /// - MainHandLocalAccuracyRating = 815, - - /// - /// main_hand_local_accuracy_rating_+% - /// - MainHandLocalAccuracyRatingPct = 816, - - /// - /// main_hand_local_hit_causes_monster_flee_% - /// - MainHandLocalHitCausesMonsterFleePct = 817, - - /// - /// main_hand_local_always_hit - /// - MainHandLocalAlwaysHit = 818, - - /// - /// Physical Damage +% - /// - OffHandLocalPhysicalDamagePct = 819, - - /// - /// Additional Minimum Physical Damage - /// - OffHandLocalMinimumAddedPhysicalDamage = 820, - - /// - /// Additional Maximum Physical Damage - /// - OffHandLocalMaximumAddedPhysicalDamage = 821, - - /// - /// Additional Minimum Fire Damage - /// - OffHandLocalMinimumAddedFireDamage = 822, - - /// - /// Additional Maximum Fire Damage - /// - OffHandLocalMaximumAddedFireDamage = 823, - - /// - /// Additional Minimum Cold Damage - /// - OffHandLocalMinimumAddedColdDamage = 824, - - /// - /// Additional Maximum Cold Damage - /// - OffHandLocalMaximumAddedColdDamage = 825, - - /// - /// Additional Minimum Lightning Damage - /// - OffHandLocalMinimumAddedLightningDamage = 826, - - /// - /// Additional Maximum Lightning Damage - /// - OffHandLocalMaximumAddedLightningDamage = 827, - - /// - /// Additional Minimum Chaos Damage - /// - OffHandLocalMinimumAddedChaosDamage = 828, - - /// - /// Additional Maximum Chaos Damage - /// - OffHandLocalMaximumAddedChaosDamage = 829, - - /// - /// Attack Speed - /// - OffHandLocalAttackSpeedPct = 830, - - /// - /// old_do_not_use_off_hand_local_life_leech_from_physical_damage_% - /// - OldDoNotUseOffHandLocalLifeLeechFromPhysicalDamagePct = 831, - - /// - /// old_do_not_use_off_hand_local_mana_leech_from_physical_damage_% - /// - OldDoNotUseOffHandLocalManaLeechFromPhysicalDamagePct = 832, - - /// - /// Knockback - /// - OffHandLocalKnockback = 833, - - /// - /// off_hand_local_critical_strike_multiplier_+ - /// - OffHandLocalCriticalStrikeMultiplier = 834, - - /// - /// off_hand_local_critical_strike_chance - /// - OffHandLocalCriticalStrikeChance = 835, - - /// - /// off_hand_local_critical_strike_chance_+% - /// - OffHandLocalCriticalStrikeChancePct = 836, - - /// - /// off_hand_local_accuracy_rating - /// - OffHandLocalAccuracyRating = 837, - - /// - /// off_hand_local_accuracy_rating_+% - /// - OffHandLocalAccuracyRatingPct = 838, - - /// - /// off_hand_local_hit_causes_monster_flee_% - /// - OffHandLocalHitCausesMonsterFleePct = 839, - - /// - /// off_hand_local_always_hit - /// - OffHandLocalAlwaysHit = 840, - - /// - /// acrobatics_additional_chance_to_dodge_% - /// - AcrobaticsAdditionalChanceToDodgePct = 841, - - /// - /// keystone_phase_acrobatics - /// - KeystonePhaseAcrobatics = 842, - - /// - /// Chance to Dodge Spell Damage - /// - ChanceToDodgeSpellsPct = 843, - - /// - /// phase_acrobatics_additional_chance_to_dodge_spells_% - /// - PhaseAcrobaticsAdditionalChanceToDodgeSpellsPct = 844, - - /// - /// number_of_inca_minions_allowed - /// - NumberOfIncaMinionsAllowed = 845, - - /// - /// curse_cast_speed_+% - /// - CurseCastSpeedPct = 846, - - /// - /// chance_to_evade_projectile_attacks_+% - /// - ChanceToEvadeProjectileAttacksPct = 847, - - /// - /// keystone_projectile_evasion - /// - KeystoneProjectileEvasion = 848, - - /// - /// elemental_status_effect_aura_radius - /// - ElementalStatusEffectAuraRadius = 849, - - /// - /// support_lesser_multiple_projectile_damage_+%_final - /// - SupportLesserMultipleProjectileDamagePctFinal = 850, - - /// - /// use_life_in_place_of_mana - /// - UseLifeInPlaceOfMana = 851, - - /// - /// keystone_blood_magic - /// - KeystoneBloodMagic = 852, - - /// - /// base_mana_reservation_+% - /// - BaseManaReservationPct = 853, - - /// - /// base_aura_area_of_effect_+% - /// - BaseAuraAreaOfEffectPct = 854, - - /// - /// physical_attack_damage_taken_+ - /// - PhysicalAttackDamageTaken = 855, - - /// - /// physical_ranged_attack_damage_taken_+ - /// - PhysicalRangedAttackDamageTaken = 856, - - /// - /// old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value - /// - OldDoNotUseSpellBlockPctWhileOnLowLifeFromAssumedBlockValue = 857, - - /// - /// display_what_elemental_proliferation_does - /// - DisplayWhatElementalProliferationDoes = 858, - - /// - /// skill_can_fire_arrows - /// - SkillCanFireArrows = 859, - - /// - /// skill_can_fire_wand_projectiles - /// - SkillCanFireWandProjectiles = 860, - - /// - /// Local Additional Block Chance % - /// - LocalAdditionalBlockChancePct = 861, - - /// - /// keystone_minion_instability - /// - KeystoneMinionInstability = 862, - - /// - /// strong_casting - /// - StrongCasting = 863, - - /// - /// support_damage_while_on_full_life_+%_final - /// - SupportDamageWhileOnFullLifePctFinal = 864, - - /// - /// Skill placed as Totem - /// - IsTotem = 865, - - /// - /// monster_base_type_attack_cast_speed_+%_and_damage_-%_final - /// - MonsterBaseTypeAttackCastSpeedPctAndDamagePctFinal = 866, - - /// - /// monster_rarity_attack_cast_speed_+%_and_damage_-%_final - /// - MonsterRarityAttackCastSpeedPctAndDamagePctFinal = 867, - - /// - /// monster_attack_cast_speed_+%_and_damage_-%_final - /// - MonsterAttackCastSpeedPctAndDamagePctFinal = 868, - - /// - /// cast_speed_+%_granted_from_skill - /// - CastSpeedPctGrantedFromSkill = 869, - - /// - /// is_hidden_monster - /// - IsHiddenMonster = 870, - - /// - /// base_totem_duration - /// - BaseTotemDuration = 871, - - /// - /// totem_duration - /// - TotemDuration = 872, - - /// - /// base_totem_range - /// - BaseTotemRange = 873, - - /// - /// totem_range - /// - TotemRange = 874, - - /// - /// immune_to_auras_from_other_entities - /// - ImmuneToAurasFromOtherEntities = 875, - - /// - /// totem_support_gem_level - /// - TotemSupportGemLevel = 876, - - /// - /// base_number_of_totems_allowed - /// - BaseNumberOfTotemsAllowed = 877, - - /// - /// base_trap_duration - /// - BaseTrapDuration = 878, - - /// - /// trap_duration - /// - TrapDuration = 879, - - /// - /// base_number_of_traps_allowed - /// - BaseNumberOfTrapsAllowed = 880, - - /// - /// monster_flurry - /// - MonsterFlurry = 881, - - /// - /// number_of_insects_allowed - /// - NumberOfInsectsAllowed = 882, - - /// - /// is_remote_mine - /// - IsRemoteMine = 883, - - /// - /// base_number_of_remote_mines_allowed - /// - BaseNumberOfRemoteMinesAllowed = 884, - - /// - /// base_mine_duration - /// - BaseMineDuration = 885, - - /// - /// mine_duration - /// - MineDuration = 886, - - /// - /// nonlethal_fire_damage_taken_per_minute_unaffected_by_level_scaling - /// - NonlethalFireDamageTakenPerMinuteUnaffectedByLevelScaling = 887, - - /// - /// base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute - /// - BaseNonlethalFireDamagePctOfMaximumLifeTakenPerMinute = 888, - - /// - /// righteous_fire_spell_damage_+%_final - /// - RighteousFireSpellDamagePctFinal = 889, - - /// - /// base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute - /// - BaseRighteousFirePctOfMaxLifeToDealToNearbyPerMinute = 890, - - /// - /// totem_level - /// - TotemLevel = 891, - - /// - /// base_active_skill_totem_level - /// - BaseActiveSkillTotemLevel = 892, - - /// - /// alternate_minion - /// - AlternateMinion = 893, - - /// - /// corpse_consumption_life_to_gain - /// - CorpseConsumptionLifeToGain = 894, - - /// - /// support_totem_damage_+%_final - /// - SupportTotemDamagePctFinal = 895, - - /// - /// freeze_mine_damage_to_freeze_as_though_dealing - /// - FreezeMineDamageToFreezeAsThoughDealing = 896, - - /// - /// monster_no_drops_or_experience - /// - MonsterNoDropsOrExperience = 897, - - /// - /// active_skill_gem_added_damage_effectiveness_+%_final - /// - ActiveSkillGemAddedDamageEffectivenessPctFinal = 898, - - /// - /// monster_gain_frenzy_charge_on_kin_death - /// - MonsterGainFrenzyChargeOnKinDeath = 899, - - /// - /// monster_ground_fire_on_death_%_max_damage_to_deal_per_minute - /// - MonsterGroundFireOnDeathPctMaxDamageToDealPerMinute = 900, - - /// - /// monster_ground_fire_on_death_base_area_of_effect_radius - /// - MonsterGroundFireOnDeathBaseAreaOfEffectRadius = 901, - - /// - /// monster_ground_effect_on_death_base_duration_ms - /// - MonsterGroundEffectOnDeathBaseDurationMs = 902, - - /// - /// monster_ground_fire_on_death_duration_ms - /// - MonsterGroundFireOnDeathDurationMs = 903, - - /// - /// curse_on_hit_%_vulnerability - /// - CurseOnHitPctVulnerability = 904, - - /// - /// curse_on_hit_%_temporal_chains - /// - CurseOnHitPctTemporalChains = 905, - - /// - /// support_gem_mine_damage_+%_final - /// - SupportGemMineDamagePctFinal = 906, - - /// - /// undead_description - /// - UndeadDescription = 907, - - /// - /// monster_casts_firestorm_text - /// - MonsterCastsFirestormText = 908, - - /// - /// monster_casts_puncture_text - /// - MonsterCastsPunctureText = 909, - - /// - /// monster_casts_coldsnap_text - /// - MonsterCastsColdsnapText = 910, - - /// - /// monster_casts_assassins_mark_curse_text - /// - MonsterCastsAssassinsMarkCurseText = 911, - - /// - /// monster_casts_elementral_weakness_curse_text - /// - MonsterCastsElementralWeaknessCurseText = 912, - - /// - /// monster_casts_enfeeble_curse_text - /// - MonsterCastsEnfeebleCurseText = 913, - - /// - /// monster_casts_fireball_text - /// - MonsterCastsFireballText = 914, - - /// - /// monster_casts_ice_nova_text - /// - MonsterCastsIceNovaText = 915, - - /// - /// monster_casts_ice_spear_text - /// - MonsterCastsIceSpearText = 916, - - /// - /// monster_casts_molten_shell_text - /// - MonsterCastsMoltenShellText = 917, - - /// - /// monster_casts_projectile_vulnerability_curse_text - /// - MonsterCastsProjectileVulnerabilityCurseText = 918, - - /// - /// monster_casts_shock_nova_text - /// - MonsterCastsShockNovaText = 919, - - /// - /// monster_casts_spark_text - /// - MonsterCastsSparkText = 920, - - /// - /// monster_casts_vulnerability_curse_text - /// - MonsterCastsVulnerabilityCurseText = 921, - - /// - /// monster_casts_warlords_mark_curse_text - /// - MonsterCastsWarlordsMarkCurseText = 922, - - /// - /// monster_detonates_corpses_text - /// - MonsterDetonatesCorpsesText = 923, - - /// - /// monster_explodes_on_its_target_text - /// - MonsterExplodesOnItsTargetText = 924, - - /// - /// monster_fires_a_rain_of_arrows_text - /// - MonsterFiresARainOfArrowsText = 925, - - /// - /// monster_fires_burning_arrows_text - /// - MonsterFiresBurningArrowsText = 926, - - /// - /// monster_fires_explosive_arrows_text - /// - MonsterFiresExplosiveArrowsText = 927, - - /// - /// monster_fires_lightning_arrows_text - /// - MonsterFiresLightningArrowsText = 928, - - /// - /// monster_fires_caustic_arrows_text - /// - MonsterFiresCausticArrowsText = 929, - - /// - /// monster_fires_split_arrows_text - /// - MonsterFiresSplitArrowsText = 930, - - /// - /// monster_leaps_onto_enemies_text - /// - MonsterLeapsOntoEnemiesText = 931, - - /// - /// monster_raises_undead_text - /// - MonsterRaisesUndeadText = 932, - - /// - /// monster_summons_exploding_spawn_text - /// - MonsterSummonsExplodingSpawnText = 933, - - /// - /// monster_summons_monkeys_from_nearby_trees_text - /// - MonsterSummonsMonkeysFromNearbyTreesText = 934, - - /// - /// monster_summons_skeletons_text - /// - MonsterSummonsSkeletonsText = 935, - - /// - /// monster_summons_spawn_text - /// - MonsterSummonsSpawnText = 936, - - /// - /// monster_uses_enduring_cry_text - /// - MonsterUsesEnduringCryText = 937, - - /// - /// monster_uses_flicker_strike_text - /// - MonsterUsesFlickerStrikeText = 938, - - /// - /// monster_uses_glacial_hammer_text - /// - MonsterUsesGlacialHammerText = 939, - - /// - /// monster_uses_ground_slam_text - /// - MonsterUsesGroundSlamText = 940, - - /// - /// monster_uses_lightning_strike_text - /// - MonsterUsesLightningStrikeText = 941, - - /// - /// monster_uses_phase_run_text - /// - MonsterUsesPhaseRunText = 942, - - /// - /// monster_casts_shield_charge_text - /// - MonsterCastsShieldChargeText = 943, - - /// - /// monster_casts_mass_frenzy_text - /// - MonsterCastsMassFrenzyText = 944, - - /// - /// monster_casts_temporal_chains_text - /// - MonsterCastsTemporalChainsText = 945, - - /// - /// monster_casts_frenzy_text - /// - MonsterCastsFrenzyText = 946, - - /// - /// monster_casts_viper_strike_text - /// - MonsterCastsViperStrikeText = 947, - - /// - /// monster_casts_elemental_hit_text - /// - MonsterCastsElementalHitText = 948, - - /// - /// cannot_block_attacks - /// - CannotBlockAttacks = 949, - - /// - /// Chance to Block Attacks - /// - AttackBlockPct = 950, - - /// - /// local_weapon_uses_both_hands - /// - LocalWeaponUsesBothHands = 951, - - /// - /// base_maximum_fire_damage_resistance_% - /// - BaseMaximumFireDamageResistancePct = 952, - - /// - /// base_maximum_cold_damage_resistance_% - /// - BaseMaximumColdDamageResistancePct = 953, - - /// - /// base_maximum_lightning_damage_resistance_% - /// - BaseMaximumLightningDamageResistancePct = 954, - - /// - /// base_maximum_chaos_damage_resistance_% - /// - BaseMaximumChaosDamageResistancePct = 955, - - /// - /// additional_maximum_all_resistances_% - /// - AdditionalMaximumAllResistancesPct = 956, - - /// - /// additional_maximum_all_elemental_resistances_% - /// - AdditionalMaximumAllElementalResistancesPct = 957, - - /// - /// local_display_socketed_gems_get_concentrated_area_level - /// - LocalDisplaySocketedGemsGetConcentratedAreaLevel = 958, - - /// - /// number_of_additional_traps_allowed - /// - NumberOfAdditionalTrapsAllowed = 959, - - /// - /// number_of_additional_remote_mines_allowed - /// - NumberOfAdditionalRemoteMinesAllowed = 960, - - /// - /// number_of_traps_allowed - /// - NumberOfTrapsAllowed = 961, - - /// - /// number_of_remote_mines_allowed - /// - NumberOfRemoteMinesAllowed = 962, - - /// - /// number_of_additional_totems_allowed - /// - NumberOfAdditionalTotemsAllowed = 963, - - /// - /// number_of_totems_allowed - /// - NumberOfTotemsAllowed = 964, - - /// - /// additional_physical_damage_reduction_%_when_on_low_life - /// - AdditionalPhysicalDamageReductionPctWhenOnLowLife = 965, - - /// - /// endurance_only_conduit - /// - EnduranceOnlyConduit = 966, - - /// - /// frenzy_only_conduit - /// - FrenzyOnlyConduit = 967, - - /// - /// power_only_conduit - /// - PowerOnlyConduit = 968, - - /// - /// ice_spear_second_form_critical_strike_chance_+% - /// - IceSpearSecondFormCriticalStrikeChancePct = 969, - - /// - /// ice_spear_second_form_critical_strike_multiplier_+ - /// - IceSpearSecondFormCriticalStrikeMultiplier = 970, - - /// - /// ice_spear_second_form_projectile_speed_+%_final - /// - IceSpearSecondFormProjectileSpeedPctFinal = 971, - - /// - /// monster_dropped_item_rarity_+%_from_player_support - /// - MonsterDroppedItemRarityPctFromPlayerSupport = 972, - - /// - /// monster_dropped_item_quantity_+%_from_player_support - /// - MonsterDroppedItemQuantityPctFromPlayerSupport = 973, - - /// - /// monster_ground_ice_on_death_base_area_of_effect_radius - /// - MonsterGroundIceOnDeathBaseAreaOfEffectRadius = 974, - - /// - /// monster_ground_ice_on_death_duration_ms - /// - MonsterGroundIceOnDeathDurationMs = 975, - - /// - /// monster_ground_tar_on_death_base_area_of_effect_radius - /// - MonsterGroundTarOnDeathBaseAreaOfEffectRadius = 976, - - /// - /// monster_ground_tar_on_death_duration_ms - /// - MonsterGroundTarOnDeathDurationMs = 977, - - /// - /// monster_ground_tar_on_death_monvement_speed_pluspercent - /// - MonsterGroundTarOnDeathMonvementSpeedPluspercent = 978, - - /// - /// blinded - /// - Blinded = 979, - - /// - /// local_chance_to_blind_on_hit_% - /// - LocalChanceToBlindOnHitPct = 980, - - /// - /// main_hand_local_chance_to_blind_on_hit_% - /// - MainHandLocalChanceToBlindOnHitPct = 981, - - /// - /// off_hand_local_chance_to_blind_on_hit_% - /// - OffHandLocalChanceToBlindOnHitPct = 982, - - /// - /// global_chance_to_blind_on_hit_% - /// - GlobalChanceToBlindOnHitPct = 983, - - /// - /// main_hand_chance_to_blind_on_hit_% - /// - MainHandChanceToBlindOnHitPct = 984, - - /// - /// off_hand_chance_to_blind_on_hit_% - /// - OffHandChanceToBlindOnHitPct = 985, - - /// - /// local_display_socketed_gems_get_blind_level - /// - LocalDisplaySocketedGemsGetBlindLevel = 986, - - /// - /// blind_duration_+% - /// - BlindDurationPct = 987, - - /// - /// cannot_be_knocked_back - /// - CannotBeKnockedBack = 988, - - /// - /// dual_wield_inherent_attack_speed_+%_final - /// - DualWieldInherentAttackSpeedPctFinal = 989, - - /// - /// map_spawn_two_bosses - /// - MapSpawnTwoBosses = 990, - - /// - /// map_boss_damage_+% - /// - MapBossDamagePct = 991, - - /// - /// map_boss_attack_and_cast_speed_+% - /// - MapBossAttackAndCastSpeedPct = 992, - - /// - /// map_monsters_additional_fire_resistance - /// - MapMonstersAdditionalFireResistance = 993, - - /// - /// map_monsters_additional_cold_resistance - /// - MapMonstersAdditionalColdResistance = 994, - - /// - /// map_monsters_additional_lightning_resistance - /// - MapMonstersAdditionalLightningResistance = 995, - - /// - /// map_monsters_additional_physical_damage_reduction - /// - MapMonstersAdditionalPhysicalDamageReduction = 996, - - /// - /// map_monsters_cannot_be_stunned - /// - MapMonstersCannotBeStunned = 997, - - /// - /// map_monsters_life_+% - /// - MapMonstersLifePct = 998, - - /// - /// map_monsters_damage_+% - /// - MapMonstersDamagePct = 999, - - /// - /// map_monsters_movement_speed_+% - /// - MapMonstersMovementSpeedPct = 1000, - - /// - /// map_monsters_attack_speed_+% - /// - MapMonstersAttackSpeedPct = 1001, - - /// - /// map_monsters_cast_speed_+% - /// - MapMonstersCastSpeedPct = 1002, - - /// - /// map_monsters_reflect_%_physical_damage - /// - MapMonstersReflectPctPhysicalDamage = 1003, - - /// - /// map_monsters_reflect_%_elemental_damage - /// - MapMonstersReflectPctElementalDamage = 1004, - - /// - /// map_monsters_additional_number_of_projecitles - /// - MapMonstersAdditionalNumberOfProjecitles = 1005, - - /// - /// map_player_has_level_X_vulnerability - /// - MapPlayerHasLevelXVulnerability = 1006, - - /// - /// map_player_has_level_X_warlords_mark - /// - MapPlayerHasLevelXWarlordsMark = 1007, - - /// - /// map_player_has_level_X_enfeeble - /// - MapPlayerHasLevelXEnfeeble = 1008, - - /// - /// map_player_has_level_X_elemental_weakness - /// - MapPlayerHasLevelXElementalWeakness = 1009, - - /// - /// map_player_has_level_X_temporal_chains - /// - MapPlayerHasLevelXTemporalChains = 1010, - - /// - /// map_player_no_regeneration - /// - MapPlayerNoRegeneration = 1011, - - /// - /// no_life_regeneration - /// - NoLifeRegeneration = 1012, - - /// - /// no_mana_regeneration - /// - NoManaRegeneration = 1013, - - /// - /// map_player_base_chaos_damage_taken_per_minute - /// - MapPlayerBaseChaosDamageTakenPerMinute = 1014, - - /// - /// map_player_has_blood_magic_keystone - /// - MapPlayerHasBloodMagicKeystone = 1015, - - /// - /// map_player_has_elemental_equilibrium_keystone - /// - MapPlayerHasElementalEquilibriumKeystone = 1016, - - /// - /// map_player_has_chaos_inoculation_keystone - /// - MapPlayerHasChaosInoculationKeystone = 1017, - - /// - /// map_additional_player_maximum_resistances_% - /// - MapAdditionalPlayerMaximumResistancesPct = 1018, - - /// - /// map_player_status_recovery_speed_+% - /// - MapPlayerStatusRecoverySpeedPct = 1019, - - /// - /// life_recovery_speed_+%_final_from_map - /// - LifeRecoverySpeedPctFinalFromMap = 1020, - - /// - /// mana_recovery_speed_+%_final_from_map - /// - ManaRecoverySpeedPctFinalFromMap = 1021, - - /// - /// energy_shield_recovery_speed_+%_final_from_map - /// - EnergyShieldRecoverySpeedPctFinalFromMap = 1022, - - /// - /// map_size_+% - /// - MapSizePct = 1023, - - /// - /// map_is_branchy - /// - MapIsBranchy = 1024, - - /// - /// map_packs_are_totems - /// - MapPacksAreTotems = 1025, - - /// - /// map_packs_are_skeletons - /// - MapPacksAreSkeletons = 1026, - - /// - /// map_packs_are_bandits - /// - MapPacksAreBandits = 1027, - - /// - /// map_packs_are_goatmen - /// - MapPacksAreGoatmen = 1028, - - /// - /// map_packs_are_sea_witches_and_spawn - /// - MapPacksAreSeaWitchesAndSpawn = 1029, - - /// - /// map_packs_are_undead_and_necromancers - /// - MapPacksAreUndeadAndNecromancers = 1030, - - /// - /// map_packs_fire_projectiles - /// - MapPacksFireProjectiles = 1031, - - /// - /// map_pack_size_+% - /// - MapPackSizePct = 1032, - - /// - /// map_number_of_magic_packs_+% - /// - MapNumberOfMagicPacksPct = 1033, - - /// - /// map_number_of_rare_packs_+% - /// - MapNumberOfRarePacksPct = 1034, - - /// - /// map_base_ground_fire_damage_to_deal_per_minute - /// - MapBaseGroundFireDamageToDealPerMinute = 1035, - - /// - /// map_monsters_%_physical_damage_to_convert_to_fire - /// - MapMonstersPctPhysicalDamageToConvertToFire = 1036, - - /// - /// map_monsters_%_physical_damage_to_convert_to_cold - /// - MapMonstersPctPhysicalDamageToConvertToCold = 1037, - - /// - /// map_monsters_%_physical_damage_to_convert_to_lightning - /// - MapMonstersPctPhysicalDamageToConvertToLightning = 1038, - - /// - /// map_monsters_%_physical_damage_to_convert_to_chaos - /// - MapMonstersPctPhysicalDamageToConvertToChaos = 1039, - - /// - /// map_monsters_%_physical_damage_to_add_as_fire - /// - MapMonstersPctPhysicalDamageToAddAsFire = 1040, - - /// - /// map_monsters_%_physical_damage_to_add_as_cold - /// - MapMonstersPctPhysicalDamageToAddAsCold = 1041, - - /// - /// map_monsters_%_physical_damage_to_add_as_lightning - /// - MapMonstersPctPhysicalDamageToAddAsLightning = 1042, - - /// - /// map_monsters_%_physical_damage_to_add_as_chaos - /// - MapMonstersPctPhysicalDamageToAddAsChaos = 1043, - - /// - /// base_additional_physical_damage_reduction_% - /// - BaseAdditionalPhysicalDamageReductionPct = 1044, - - /// - /// map_monsters_gain_x_frenzy_charges_every_20_seconds - /// - MapMonstersGainXFrenzyChargesEvery20Seconds = 1045, - - /// - /// map_additional_number_of_packs_to_choose - /// - MapAdditionalNumberOfPacksToChoose = 1046, - - /// - /// map_item_drop_quantity_+% - /// - MapItemDropQuantityPct = 1047, - - /// - /// map_ground_effect_patches_per_100_tiles - /// - MapGroundEffectPatchesPer100Tiles = 1048, - - /// - /// map_ground_tar_movement_speed_+% - /// - MapGroundTarMovementSpeedPct = 1049, - - /// - /// map_ground_effect_radius - /// - MapGroundEffectRadius = 1050, - - /// - /// map_ground_ice - /// - MapGroundIce = 1051, - - /// - /// map_chest_item_quantity_+% - /// - MapChestItemQuantityPct = 1052, - - /// - /// map_chest_item_rarity_+% - /// - MapChestItemRarityPct = 1053, - - /// - /// display_map_no_monsters - /// - DisplayMapNoMonsters = 1054, - - /// - /// necromancer_additional_rarity_levels_can_be_raised - /// - NecromancerAdditionalRarityLevelsCanBeRaised = 1055, - - /// - /// monster_dropped_item_quantity_from_numplayers_+% - /// - MonsterDroppedItemQuantityFromNumplayersPct = 1056, - - /// - /// map_disable_chest_drop_scaling - /// - MapDisableChestDropScaling = 1057, - - /// - /// physical_damage_taken_%_as_fire - /// - PhysicalDamageTakenPctAsFire = 1058, - - /// - /// physical_damage_taken_%_as_cold - /// - PhysicalDamageTakenPctAsCold = 1059, - - /// - /// physical_damage_taken_%_as_lightning - /// - PhysicalDamageTakenPctAsLightning = 1060, - - /// - /// physical_damage_taken_%_as_chaos - /// - PhysicalDamageTakenPctAsChaos = 1061, - - /// - /// base_energy_shield_regeneration_rate_per_minute - /// - BaseEnergyShieldRegenerationRatePerMinute = 1062, - - /// - /// leech_energy_shield_instead_of_life - /// - LeechEnergyShieldInsteadOfLife = 1063, - - /// - /// energy_shield_regeneration_rate_per_minute - /// - EnergyShieldRegenerationRatePerMinute = 1064, - - /// - /// monster_uses_mass_power_text - /// - MonsterUsesMassPowerText = 1065, - - /// - /// monster_uses_mass_endurance_text - /// - MonsterUsesMassEnduranceText = 1066, - - /// - /// monster_uses_shockwave_text - /// - MonsterUsesShockwaveText = 1067, - - /// - /// unique_facebreaker_unarmed_physical_damage_+%_final - /// - UniqueFacebreakerUnarmedPhysicalDamagePctFinal = 1068, - - /// - /// local_display_socketed_gems_get_increased_area_level - /// - LocalDisplaySocketedGemsGetIncreasedAreaLevel = 1069, - - /// - /// local_socketed_aura_gem_level_+ - /// - LocalSocketedAuraGemLevel = 1070, - - /// - /// extra_gore - /// - ExtraGore = 1071, - - /// - /// local_one_socket_each_colour_only - /// - LocalOneSocketEachColourOnly = 1072, - - /// - /// life_reserved_by_stat_% - /// - LifeReservedByStatPct = 1073, - - /// - /// block_while_dual_wielding_claws_% - /// - BlockWhileDualWieldingClawsPct = 1074, - - /// - /// unique_chin_sol_close_range_bow_damage_+%_final - /// - UniqueChinSolCloseRangeBowDamagePctFinal = 1075, - - /// - /// unique_chin_sol_close_range_knockback - /// - UniqueChinSolCloseRangeKnockback = 1076, - - /// - /// physical_damage_reduction_rating_against_projectiles - /// - PhysicalDamageReductionRatingAgainstProjectiles = 1077, - - /// - /// additional_block_chance_against_projectiles_% - /// - AdditionalBlockChanceAgainstProjectilesPct = 1078, - - /// - /// physical_damage_reduction_rating_+%_against_projectiles - /// - PhysicalDamageReductionRatingPctAgainstProjectiles = 1079, - - /// - /// spell_projectile_block_% - /// - SpellProjectileBlockPct = 1080, - - /// - /// projectile_attack_block_% - /// - ProjectileAttackBlockPct = 1081, - - /// - /// display_estimated_physical_damage_reduciton_against_projectiles_% - /// - DisplayEstimatedPhysicalDamageReducitonAgainstProjectilesPct = 1082, - - /// - /// damage_taken_goes_to_mana_% - /// - DamageTakenGoesToManaPct = 1083, - - /// - /// evasion_and_physical_damage_reduction_rating_+% - /// - EvasionAndPhysicalDamageReductionRatingPct = 1084, - - /// - /// additional_item_drop_slots_when_deleted_on_death - /// - AdditionalItemDropSlotsWhenDeletedOnDeath = 1085, - - /// - /// mana_degeneration_per_minute - /// - ManaDegenerationPerMinute = 1086, - - /// - /// life_degeneration_per_minute - /// - LifeDegenerationPerMinute = 1087, - - /// - /// ice_shield_moving_mana_degeneration_per_minute - /// - IceShieldMovingManaDegenerationPerMinute = 1088, - - /// - /// unique_quill_rain_damage_+%_final - /// - UniqueQuillRainDamagePctFinal = 1089, - - /// - /// melee_physical_damage_taken_%_to_deal_to_attacker - /// - MeleePhysicalDamageTakenPctToDealToAttacker = 1090, - - /// - /// additional_block_% - /// - AdditionalBlockPct = 1091, - - /// - /// frozen_monsters_take_increased_damage - /// - FrozenMonstersTakeIncreasedDamage = 1092, - - /// - /// local_display_socketed_gems_get_blood_magic_level - /// - LocalDisplaySocketedGemsGetBloodMagicLevel = 1093, - - /// - /// local_display_socketed_gems_have_blood_magic - /// - LocalDisplaySocketedGemsHaveBloodMagic = 1094, - - /// - /// Monster Base Block % - /// - MonsterBaseBlockPct = 1095, - - /// - /// base_cannot_leech - /// - BaseCannotLeech = 1096, - - /// - /// keystone_vampirism - /// - KeystoneVampirism = 1097, - - /// - /// unique_dewaths_hide_physical_attack_damage_dealt_- - /// - UniqueDewathsHidePhysicalAttackDamageDealt = 1098, - - /// - /// local_strength_requirement_+% - /// - LocalStrengthRequirementPct = 1099, - - /// - /// local_dexterity_requirement_+% - /// - LocalDexterityRequirementPct = 1100, - - /// - /// local_intelligence_requirement_+% - /// - LocalIntelligenceRequirementPct = 1101, - - /// - /// local_cannot_be_used_with_chaos_innoculation - /// - LocalCannotBeUsedWithChaosInnoculation = 1102, - - /// - /// local_display_socketed_gems_have_mana_reservation_+% - /// - LocalDisplaySocketedGemsHaveManaReservationPct = 1103, - - /// - /// mace_elemental_damage_+% - /// - MaceElementalDamagePct = 1104, - - /// - /// active_skill_minion_movement_velocity_+%_final - /// - ActiveSkillMinionMovementVelocityPctFinal = 1105, - - /// - /// movement_velocity_+%_final_for_minion - /// - MovementVelocityPctFinalForMinion = 1106, - - /// - /// movement_velocity_cap - /// - MovementVelocityCap = 1107, - - /// - /// display_minion_base_maximum_life - /// - DisplayMinionBaseMaximumLife = 1108, - - /// - /// display_minion_maximum_life - /// - DisplayMinionMaximumLife = 1109, - - /// - /// skill_physical_damage_%_to_convert_to_fire - /// - SkillPhysicalDamagePctToConvertToFire = 1110, - - /// - /// skill_physical_damage_%_to_convert_to_cold - /// - SkillPhysicalDamagePctToConvertToCold = 1111, - - /// - /// skill_physical_damage_%_to_convert_to_lightning - /// - SkillPhysicalDamagePctToConvertToLightning = 1112, - - /// - /// skill_physical_damage_%_to_convert_to_chaos - /// - SkillPhysicalDamagePctToConvertToChaos = 1113, - - /// - /// skill_cold_damage_%_to_convert_to_fire - /// - SkillColdDamagePctToConvertToFire = 1114, - - /// - /// physical_damage_%_to_convert_to_fire - /// - PhysicalDamagePctToConvertToFire = 1115, - - /// - /// physical_damage_%_to_convert_to_cold - /// - PhysicalDamagePctToConvertToCold = 1116, - - /// - /// physical_damage_%_to_convert_to_lightning - /// - PhysicalDamagePctToConvertToLightning = 1117, - - /// - /// physical_damage_%_to_convert_to_chaos - /// - PhysicalDamagePctToConvertToChaos = 1118, - - /// - /// cold_damage_%_to_convert_to_fire - /// - ColdDamagePctToConvertToFire = 1119, - - /// - /// main_hand_attack_duration_ms - /// - MainHandAttackDurationMs = 1120, - - /// - /// off_hand_attack_duration_ms - /// - OffHandAttackDurationMs = 1121, - - /// - /// spell_cast_time_ms - /// - SpellCastTimeMs = 1122, - - /// - /// cast_time_overrides_attack_duration - /// - CastTimeOverridesAttackDuration = 1123, - - /// - /// projectiles_fork - /// - ProjectilesFork = 1124, - - /// - /// base_skill_number_of_additional_hits - /// - BaseSkillNumberOfAdditionalHits = 1125, - - /// - /// skill_override_pvp_scaling_time_ms - /// - SkillOverridePvpScalingTimeMs = 1126, - - /// - /// skill_double_hits_when_dual_wielding - /// - SkillDoubleHitsWhenDualWielding = 1127, - - /// - /// skill_number_of_additional_hits - /// - SkillNumberOfAdditionalHits = 1128, - - /// - /// trap_override_pvp_scaling_time_ms - /// - TrapOverridePvpScalingTimeMs = 1129, - - /// - /// mine_override_pvp_scaling_time_ms - /// - MineOverridePvpScalingTimeMs = 1130, - - /// - /// override_pvp_scaling_time_ms - /// - OverridePvpScalingTimeMs = 1131, - - /// - /// skill_display_number_of_totems_allowed - /// - SkillDisplayNumberOfTotemsAllowed = 1132, - - /// - /// skill_display_number_of_traps_allowed - /// - SkillDisplayNumberOfTrapsAllowed = 1133, - - /// - /// skill_display_number_of_remote_mines_allowed - /// - SkillDisplayNumberOfRemoteMinesAllowed = 1134, - - /// - /// energy_shield_%_gained_on_block - /// - EnergyShieldPctGainedOnBlock = 1135, - - /// - /// local_display_socketed_gems_get_added_chaos_damage_level - /// - LocalDisplaySocketedGemsGetAddedChaosDamageLevel = 1136, - - /// - /// projectiles_return - /// - ProjectilesReturn = 1137, - - /// - /// projectile_number_to_split - /// - ProjectileNumberToSplit = 1138, - - /// - /// determination_aura_armour_+%_final - /// - DeterminationAuraArmourPctFinal = 1139, - - /// - /// support_chain_hit_damage_+%_final - /// - SupportChainHitDamagePctFinal = 1140, - - /// - /// support_split_projectile_damage_+%_final - /// - SupportSplitProjectileDamagePctFinal = 1141, - - /// - /// support_return_projectile_damage_+%_final - /// - SupportReturnProjectileDamagePctFinal = 1142, - - /// - /// support_fork_projectile_damage_+%_final - /// - SupportForkProjectileDamagePctFinal = 1143, - - /// - /// energy_shield_%_of_armour_rating_gained_on_block - /// - EnergyShieldPctOfArmourRatingGainedOnBlock = 1144, - - /// - /// skeleton_duration_+% - /// - SkeletonDurationPct = 1145, - - /// - /// local_poison_on_hit - /// - LocalPoisonOnHit = 1146, - - /// - /// main_hand_local_poison_on_hit - /// - MainHandLocalPoisonOnHit = 1147, - - /// - /// off_hand_local_poison_on_hit - /// - OffHandLocalPoisonOnHit = 1148, - - /// - /// on_low_mana - /// - OnLowMana = 1149, - - /// - /// spell_damage_taken_+%_when_on_low_mana - /// - SpellDamageTakenPctWhenOnLowMana = 1150, - - /// - /// virtual_spell_damage_taken_+% - /// - VirtualSpellDamageTakenPct = 1151, - - /// - /// evasion_rating_+_when_on_full_life - /// - EvasionRatingWhenOnFullLife = 1152, - - /// - /// aura_effect_on_self_+% - /// - AuraEffectOnSelfPct = 1153, - - /// - /// minions_have_aura_effect_+% - /// - MinionsHaveAuraEffectPct = 1154, - - /// - /// reflect_curses - /// - ReflectCurses = 1155, - - /// - /// global_critical_strike_chance_+%_while_holding_staff - /// - GlobalCriticalStrikeChancePctWhileHoldingStaff = 1156, - - /// - /// global_critical_strike_multiplier_+_while_holding_staff - /// - GlobalCriticalStrikeMultiplierWhileHoldingStaff = 1157, - - /// - /// secondary_damage_critical_strike_multiplier_+ - /// - SecondaryDamageCriticalStrikeMultiplier = 1158, - - /// - /// old_do_not_use_life_leech_from_spell_damage_% - /// - OldDoNotUseLifeLeechFromSpellDamagePct = 1159, - - /// - /// old_do_not_use_mana_leech_from_spell_damage_% - /// - OldDoNotUseManaLeechFromSpellDamagePct = 1160, - - /// - /// punishment_physical_damage_%_reflected_for_normal_monsters - /// - PunishmentPhysicalDamagePctReflectedForNormalMonsters = 1161, - - /// - /// punishment_physical_damage_%_reflected_for_magic_monsters - /// - PunishmentPhysicalDamagePctReflectedForMagicMonsters = 1162, - - /// - /// punishment_physical_damage_%_reflected_for_rare_monsters - /// - PunishmentPhysicalDamagePctReflectedForRareMonsters = 1163, - - /// - /// punishment_physical_damage_%_reflected_for_unique_monsters - /// - PunishmentPhysicalDamagePctReflectedForUniqueMonsters = 1164, - - /// - /// is_player_minion - /// - IsPlayerMinion = 1165, - - /// - /// Local Flask Curse Immunity While Healing - /// - LocalFlaskCurseImmunityWhileHealing = 1166, - - /// - /// attacks_deal_no_physical_damage - /// - AttacksDealNoPhysicalDamage = 1167, - - /// - /// whirling_blades_base_ground_fire_damage_to_deal_per_minute - /// - WhirlingBladesBaseGroundFireDamageToDealPerMinute = 1168, - - /// - /// monster_casts_ethereal_knives_text - /// - MonsterCastsEtherealKnivesText = 1169, - - /// - /// monster_throws_beartraps_text - /// - MonsterThrowsBeartrapsText = 1170, - - /// - /// monster_casts_lightning_thorns_text - /// - MonsterCastsLightningThornsText = 1171, - - /// - /// monster_throws_fire_bombs_text - /// - MonsterThrowsFireBombsText = 1172, - - /// - /// monster_throws_caustic_bombs_text - /// - MonsterThrowsCausticBombsText = 1173, - - /// - /// monster_casts_freezing_pulse_text - /// - MonsterCastsFreezingPulseText = 1174, - - /// - /// monster_cleaves_text - /// - MonsterCleavesText = 1175, - - /// - /// monster_fires_ice_shot_arrows_text - /// - MonsterFiresIceShotArrowsText = 1176, - - /// - /// monster_casts_conductivity_text - /// - MonsterCastsConductivityText = 1177, - - /// - /// monster_casts_flammability_text - /// - MonsterCastsFlammabilityText = 1178, - - /// - /// monster_casts_augmented_fireballs_text - /// - MonsterCastsAugmentedFireballsText = 1179, - - /// - /// monster_channels_lightning_text - /// - MonsterChannelsLightningText = 1180, - - /// - /// monster_casts_arc_text - /// - MonsterCastsArcText = 1181, - - /// - /// monster_raises_zombies_text - /// - MonsterRaisesZombiesText = 1182, - - /// - /// monster_casts_ice_shield_text - /// - MonsterCastsIceShieldText = 1183, - - /// - /// monster_casts_unholy_fire_text - /// - MonsterCastsUnholyFireText = 1184, - - /// - /// physical_damage_taken_+ - /// - PhysicalDamageTaken = 1185, - - /// - /// fire_damage_taken_+ - /// - FireDamageTaken = 1186, - - /// - /// monster_gain_power_charge_on_kin_death - /// - MonsterGainPowerChargeOnKinDeath = 1187, - - /// - /// monster_casts_discharge_text - /// - MonsterCastsDischargeText = 1188, - - /// - /// trap_variation - /// - TrapVariation = 1189, - - /// - /// number_of_water_elementals_to_summon - /// - NumberOfWaterElementalsToSummon = 1190, - - /// - /// number_of_water_elementals_allowed - /// - NumberOfWaterElementalsAllowed = 1191, - - /// - /// display_summons_water_elementals_text - /// - DisplaySummonsWaterElementalsText = 1192, - - /// - /// shield_charge_remove_stun_and_knockback - /// - ShieldChargeRemoveStunAndKnockback = 1193, - - /// - /// display_monster_uses_double_strike_text - /// - DisplayMonsterUsesDoubleStrikeText = 1194, - - /// - /// bleed_on_hit_base_duration - /// - BleedOnHitBaseDuration = 1195, - - /// - /// display_monster_uses_whirling_blades_text - /// - DisplayMonsterUsesWhirlingBladesText = 1196, - - /// - /// Cannot be Stunned - /// - CannotBeStunned = 1197, - - /// - /// cannot_be_stunned_when_on_low_life - /// - CannotBeStunnedWhenOnLowLife = 1198, - - /// - /// display_monster_casts_lightning_warp_text - /// - DisplayMonsterCastsLightningWarpText = 1199, - - /// - /// display_golden_radiance - /// - DisplayGoldenRadiance = 1200, - - /// - /// display_monster_casts_frostbite_text - /// - DisplayMonsterCastsFrostbiteText = 1201, - - /// - /// cannot_be_converted_or_dominated - /// - CannotBeConvertedOrDominated = 1202, - - /// - /// map_hidden_monster_life_+%_times_6_final - /// - MapHiddenMonsterLifePctTimes6Final = 1203, - - /// - /// map_hidden_monster_damage_+%_squared_final - /// - MapHiddenMonsterDamagePctSquaredFinal = 1204, - - /// - /// regenerate_energy_shield_instead_of_life - /// - RegenerateEnergyShieldInsteadOfLife = 1205, - - /// - /// damage_not_from_skill_user - /// - DamageNotFromSkillUser = 1206, - - /// - /// deal_no_damage_yourself - /// - DealNoDamageYourself = 1207, - - /// - /// deal_no_damage - /// - DealNoDamage = 1208, - - /// - /// disable_skill_if_melee_attack - /// - DisableSkillIfMeleeAttack = 1209, - - /// - /// display_disable_melee_weapons - /// - DisplayDisableMeleeWeapons = 1210, - - /// - /// chaos_damage_does_not_bypass_energy_shield - /// - ChaosDamageDoesNotBypassEnergyShield = 1211, - - /// - /// cannot_cast_spells - /// - CannotCastSpells = 1212, - - /// - /// piety_transform_debuff_time_ms - /// - PietyTransformDebuffTimeMs = 1213, - - /// - /// cheat_override_blood_effect_level - /// - CheatOverrideBloodEffectLevel = 1214, - - /// - /// map_undead_monsters_get_up_after_X_seconds - /// - MapUndeadMonstersGetUpAfterXSeconds = 1215, - - /// - /// local_stun_threshold_reduction_+% - /// - LocalStunThresholdReductionPct = 1216, - - /// - /// main_hand_local_stun_threshold_reduction_+% - /// - MainHandLocalStunThresholdReductionPct = 1217, - - /// - /// off_hand_local_stun_threshold_reduction_+% - /// - OffHandLocalStunThresholdReductionPct = 1218, - - /// - /// intermediary_maximum_life_including_chaos_innoculation - /// - IntermediaryMaximumLifeIncludingChaosInnoculation = 1219, - - /// - /// Light Radius +% - /// - LightRadiusPct = 1220, - - /// - /// active_skill_cast_speed_+%_final - /// - ActiveSkillCastSpeedPctFinal = 1221, - - /// - /// map_has_X_waves_of_monsters - /// - MapHasXWavesOfMonsters = 1222, - - /// - /// map_has_X_seconds_between_waves - /// - MapHasXSecondsBetweenWaves = 1223, - - /// - /// map_num_initial_wave_monsters - /// - MapNumInitialWaveMonsters = 1224, - - /// - /// map_wave_monster_increment - /// - MapWaveMonsterIncrement = 1225, - - /// - /// flamethrower_damage_+%_per_stage_final - /// - FlamethrowerDamagePctPerStageFinal = 1226, - - /// - /// ground_tar_on_take_crit_base_area_of_effect_radius - /// - GroundTarOnTakeCritBaseAreaOfEffectRadius = 1227, - - /// - /// ground_tar_on_take_crit_duration_ms - /// - GroundTarOnTakeCritDurationMs = 1228, - - /// - /// ground_tar_on_take_crit_monvement_speed_pluspercent - /// - GroundTarOnTakeCritMonvementSpeedPluspercent = 1229, - - /// - /// curse_on_hit_%_enfeeble - /// - CurseOnHitPctEnfeeble = 1230, - - /// - /// totem_art_variation - /// - TotemArtVariation = 1231, - - /// - /// spells_have_culling_strike - /// - SpellsHaveCullingStrike = 1232, - - /// - /// map_monsters_immune_to_a_random_status_ailment_or_stun - /// - MapMonstersImmuneToARandomStatusAilmentOrStun = 1233, - - /// - /// map_monster_melee_attacks_apply_random_curses - /// - MapMonsterMeleeAttacksApplyRandomCurses = 1234, - - /// - /// map_monster_melee_attacks_apply_random_curses_%_chance - /// - MapMonsterMeleeAttacksApplyRandomCursesPctChance = 1235, - - /// - /// map_monsters_reflect_curses - /// - MapMonstersReflectCurses = 1236, - - /// - /// curse_on_melee_hit_%_random_curse - /// - CurseOnMeleeHitPctRandomCurse = 1237, - - /// - /// main_hand_maximum_attack_distance - /// - MainHandMaximumAttackDistance = 1238, - - /// - /// off_hand_maximum_attack_distance - /// - OffHandMaximumAttackDistance = 1239, - - /// - /// melee_range_+ - /// - MeleeRange = 1240, - - /// - /// cyclone_movement_speed_+%_final - /// - CycloneMovementSpeedPctFinal = 1241, - - /// - /// local_display_socketed_gems_get_added_fire_damage_level - /// - LocalDisplaySocketedGemsGetAddedFireDamageLevel = 1242, - - /// - /// local_display_socketed_gems_get_cold_to_fire_level - /// - LocalDisplaySocketedGemsGetColdToFireLevel = 1243, - - /// - /// local_display_socketed_gems_get_fire_penetration_level - /// - LocalDisplaySocketedGemsGetFirePenetrationLevel = 1244, - - /// - /// evasion_rating_+%_when_on_low_life - /// - EvasionRatingPctWhenOnLowLife = 1245, - - /// - /// life_leech_is_instant - /// - LifeLeechIsInstant = 1246, - - /// - /// base_life_leech_is_instant - /// - BaseLifeLeechIsInstant = 1247, - - /// - /// support_multiple_attacks_melee_attack_speed_+%_final - /// - SupportMultipleAttacksMeleeAttackSpeedPctFinal = 1248, - - /// - /// map_item_drop_rarity_+% - /// - MapItemDropRarityPct = 1249, - - /// - /// - /// - LifeGainPerTarget = 1250, - - /// - /// local_life_leech_is_instant - /// - LocalLifeLeechIsInstant = 1251, - - /// - /// main_hand_local_life_leech_is_instant - /// - MainHandLocalLifeLeechIsInstant = 1252, - - /// - /// off_hand_local_life_leech_is_instant - /// - OffHandLocalLifeLeechIsInstant = 1253, - - /// - /// avoid_ignite_%_when_on_low_life - /// - AvoidIgnitePctWhenOnLowLife = 1254, - - /// - /// fire_damage_resistance_%_when_on_low_life - /// - FireDamageResistancePctWhenOnLowLife = 1255, - - /// - /// local_display_socketed_gems_get_elemental_proliferation_level - /// - LocalDisplaySocketedGemsGetElementalProliferationLevel = 1256, - - /// - /// melee_splash - /// - MeleeSplash = 1257, - - /// - /// support_melee_splash_damage_+%_final - /// - SupportMeleeSplashDamagePctFinal = 1258, - - /// - /// support_melee_splash_damage_+%_final_for_splash - /// - SupportMeleeSplashDamagePctFinalForSplash = 1259, - - /// - /// add_power_charge_on_critical_strike_% - /// - AddPowerChargeOnCriticalStrikePct = 1260, - - /// - /// Additional Melee Targets - /// - BaseMeleeAttackRepeatCount = 1261, - - /// - /// Additional Targets - /// - AttackRepeatCount = 1262, - - /// - /// display_map_larger_maze - /// - DisplayMapLargerMaze = 1263, - - /// - /// display_map_restless_dead - /// - DisplayMapRestlessDead = 1264, - - /// - /// display_map_two_bosses - /// - DisplayMapTwoBosses = 1265, - - /// - /// display_map_large_chest - /// - DisplayMapLargeChest = 1266, - - /// - /// local_socketed_movement_gem_level_+ - /// - LocalSocketedMovementGemLevel = 1267, - - /// - /// map_projectile_speed_+% - /// - MapProjectileSpeedPct = 1268, - - /// - /// map_player_projectile_damage_+%_final - /// - MapPlayerProjectileDamagePctFinal = 1269, - - /// - /// projectile_damage_+%_final_from_map - /// - ProjectileDamagePctFinalFromMap = 1270, - - /// - /// support_multiple_attack_damage_+%_final - /// - SupportMultipleAttackDamagePctFinal = 1271, - - /// - /// necromancer_revivable_even_if_corpse_unusable - /// - NecromancerRevivableEvenIfCorpseUnusable = 1272, - - /// - /// local_six_linked_white_sockets - /// - LocalSixLinkedWhiteSockets = 1273, - - /// - /// area_of_effect_+%_per_20_int - /// - AreaOfEffectPctPer20Int = 1274, - - /// - /// attack_speed_+%_per_10_dex - /// - AttackSpeedPctPer10Dex = 1275, - - /// - /// physical_weapon_damage_+%_per_10_str - /// - PhysicalWeaponDamagePctPer10Str = 1276, - - /// - /// Dodge chance per Frenzy Charge - /// - ChanceToDodgePctPerFrenzyCharge = 1277, - - /// - /// gain_power_charge_per_enemy_you_crit - /// - GainPowerChargePerEnemyYouCrit = 1278, - - /// - /// local_unique_tabula_rasa_no_requirement_or_energy_shield - /// - LocalUniqueTabulaRasaNoRequirementOrEnergyShield = 1279, - - /// - /// map_wave_magic_increase - /// - MapWaveMagicIncrease = 1280, - - /// - /// local_display_socketed_gems_get_spell_totem_level - /// - LocalDisplaySocketedGemsGetSpellTotemLevel = 1281, - - /// - /// cannot_increase_quantity_of_dropped_items - /// - CannotIncreaseQuantityOfDroppedItems = 1282, - - /// - /// cannot_increase_rarity_of_dropped_items - /// - CannotIncreaseRarityOfDroppedItems = 1283, - - /// - /// killed_monster_dropped_item_rarity_+% - /// - KilledMonsterDroppedItemRarityPct = 1284, - - /// - /// killed_monster_dropped_item_quantity_+% - /// - KilledMonsterDroppedItemQuantityPct = 1285, - - /// - /// burning_damage_taken_+% - /// - BurningDamageTakenPct = 1286, - - /// - /// curse_effect_on_self_+% - /// - CurseEffectOnSelfPct = 1287, - - /// - /// randomly_cursed_when_totems_die_curse_level - /// - RandomlyCursedWhenTotemsDieCurseLevel = 1288, - - /// - /// Physical Damage Reflected to any Enemy Hit - /// - MaximumPhysicalDamageToReturnWhenHit = 1289, - - /// - /// Fire Damage Reflected to any Enemy Hit - /// - MaximumFireDamageToReturnWhenHit = 1290, - - /// - /// Cold Damage Reflected to any Enemy Hit - /// - MaximumColdDamageToReturnWhenHit = 1291, - - /// - /// Lightning Damage Reflected to any Enemy Hit - /// - MaximumLightningDamageToReturnWhenHit = 1292, - - /// - /// Chaos Damage Reflected to any Enemy Hit - /// - MaximumChaosDamageToReturnWhenHit = 1293, - - /// - /// Physical Damage Reflected to any Enemy Hit - /// - MinimumPhysicalDamageToReturnWhenHit = 1294, - - /// - /// Fire Damage Reflected to any Enemy Hit - /// - MinimumFireDamageToReturnWhenHit = 1295, - - /// - /// Cold Damage Reflected to any Enemy Hit - /// - MinimumColdDamageToReturnWhenHit = 1296, - - /// - /// Lightning Damage Reflected to any Enemy Hit - /// - MinimumLightningDamageToReturnWhenHit = 1297, - - /// - /// Chaos Damage Reflected to any Enemy Hit - /// - MinimumChaosDamageToReturnWhenHit = 1298, - - /// - /// local_display_socketed_gems_get_increased_duration_level - /// - LocalDisplaySocketedGemsGetIncreasedDurationLevel = 1299, - - /// - /// summon_fire_resistance_+ - /// - SummonFireResistance = 1300, - - /// - /// summon_cold_resistance_+ - /// - SummonColdResistance = 1301, - - /// - /// summon_lightning_resistance_+ - /// - SummonLightningResistance = 1302, - - /// - /// melee_weapon_critical_strike_multiplier_+ - /// - MeleeWeaponCriticalStrikeMultiplier = 1303, - - /// - /// map_monster_skills_chain_X_additional_times - /// - MapMonsterSkillsChainXAdditionalTimes = 1304, - - /// - /// local_ring_disable_other_ring - /// - LocalRingDisableOtherRing = 1305, - - /// - /// disable_ring_slot_1 - /// - DisableRingSlot1 = 1306, - - /// - /// disable_ring_slot_2 - /// - DisableRingSlot2 = 1307, - - /// - /// global_item_attribute_requirements_+% - /// - GlobalItemAttributeRequirementsPct = 1308, - - /// - /// grant_kill_to_target_when_exploding_self - /// - GrantKillToTargetWhenExplodingSelf = 1309, - - /// - /// Mana gained on Hit - /// - ManaGainPerTarget = 1310, - - /// - /// animation_effect_variation - /// - AnimationEffectVariation = 1311, - - /// - /// enemy_hits_roll_low_damage - /// - EnemyHitsRollLowDamage = 1312, - - /// - /// minions_take_no_actions - /// - MinionsTakeNoActions = 1313, - - /// - /// unique_loris_lantern_golden_light - /// - UniqueLorisLanternGoldenLight = 1314, - - /// - /// chaos_damage_resistance_%_when_on_low_life - /// - ChaosDamageResistancePctWhenOnLowLife = 1315, - - /// - /// gain_power_charge_for_each_quarter_life_removed - /// - GainPowerChargeForEachQuarterLifeRemoved = 1316, - - /// - /// enemy_extra_damage_rolls - /// - EnemyExtraDamageRolls = 1317, - - /// - /// enemy_extra_damage_rolls_when_on_low_life - /// - EnemyExtraDamageRollsWhenOnLowLife = 1318, - - /// - /// map_fixed_seed - /// - MapFixedSeed = 1319, - - /// - /// map_monsters_drop_ground_fire_on_death_base_radius - /// - MapMonstersDropGroundFireOnDeathBaseRadius = 1320, - - /// - /// map_monsters_drop_ground_fire_on_death_duration_ms - /// - MapMonstersDropGroundFireOnDeathDurationMs = 1321, - - /// - /// map_monsters_drop_ground_fire_on_death_%_max_damage_to_deal_per_minute - /// - MapMonstersDropGroundFireOnDeathPctMaxDamageToDealPerMinute = 1322, - - /// - /// map_monsters_convert_all_physical_damage_to_fire - /// - MapMonstersConvertAllPhysicalDamageToFire = 1323, - - /// - /// map_players_convert_all_physical_damage_to_fire - /// - MapPlayersConvertAllPhysicalDamageToFire = 1324, - - /// - /// local_display_socketed_gems_have_chance_to_flee_% - /// - LocalDisplaySocketedGemsHaveChanceToFleePct = 1325, - - /// - /// map_no_refills_in_town - /// - MapNoRefillsInTown = 1326, - - /// - /// base_minimum_lightning_damage_on_charge_expiry - /// - BaseMinimumLightningDamageOnChargeExpiry = 1327, - - /// - /// base_maximum_lightning_damage_on_charge_expiry - /// - BaseMaximumLightningDamageOnChargeExpiry = 1328, - - /// - /// item_drops_on_death - /// - ItemDropsOnDeath = 1329, - - /// - /// map_minimap_revealed - /// - MapMinimapRevealed = 1330, - - /// - /// explode_on_death_%_main_hand_damage_to_deal_as_fire - /// - ExplodeOnDeathPctMainHandDamageToDealAsFire = 1331, - - /// - /// explode_on_death_%_main_hand_damage_to_deal_as_lightning - /// - ExplodeOnDeathPctMainHandDamageToDealAsLightning = 1332, - - /// - /// explode_on_death_%_main_hand_damage_to_deal_as_cold - /// - ExplodeOnDeathPctMainHandDamageToDealAsCold = 1333, - - /// - /// explode_on_death_%_main_hand_damage_to_deal_as_chaos - /// - ExplodeOnDeathPctMainHandDamageToDealAsChaos = 1334, - - /// - /// Never Shock Targets - /// - NeverShock = 1335, - - /// - /// Never Freeze Targets - /// - NeverFreeze = 1336, - - /// - /// faster_burn_% - /// - FasterBurnPct = 1337, - - /// - /// disable_chest_slot - /// - DisableChestSlot = 1338, - - /// - /// local_display_socketed_gems_get_faster_attacks_level - /// - LocalDisplaySocketedGemsGetFasterAttacksLevel = 1339, - - /// - /// local_display_socketed_gems_get_melee_physical_damage_level - /// - LocalDisplaySocketedGemsGetMeleePhysicalDamageLevel = 1340, - - /// - /// flasks_dispel_burning - /// - FlasksDispelBurning = 1341, - - /// - /// physical_claw_damage_+%_when_on_low_life - /// - PhysicalClawDamagePctWhenOnLowLife = 1342, - - /// - /// accuracy_rating_+%_when_on_low_life - /// - AccuracyRatingPctWhenOnLowLife = 1343, - - /// - /// cannot_leech - /// - CannotLeech = 1344, - - /// - /// cannot_leech_when_on_low_life - /// - CannotLeechWhenOnLowLife = 1345, - - /// - /// base_cannot_leech_life - /// - BaseCannotLeechLife = 1346, - - /// - /// base_cannot_leech_mana - /// - BaseCannotLeechMana = 1347, - - /// - /// cannot_leech_life - /// - CannotLeechLife = 1348, - - /// - /// cannot_leech_mana - /// - CannotLeechMana = 1349, - - /// - /// base_energy_shield_gained_on_enemy_death - /// - BaseEnergyShieldGainedOnEnemyDeath = 1350, - - /// - /// summon_totem_cast_speed_+% - /// - SummonTotemCastSpeedPct = 1351, - - /// - /// consecrate_on_block_%_chance_to_create - /// - ConsecrateOnBlockPctChanceToCreate = 1352, - - /// - /// consecrate_on_block_%_life_regen_per_minute - /// - ConsecrateOnBlockPctLifeRegenPerMinute = 1353, - - /// - /// consecrate_on_block_base_radius - /// - ConsecrateOnBlockBaseRadius = 1354, - - /// - /// consecrate_on_block_duration_ms - /// - ConsecrateOnBlockDurationMs = 1355, - - /// - /// desecrate_on_block_%_chance_to_create - /// - DesecrateOnBlockPctChanceToCreate = 1356, - - /// - /// desecrate_on_block_base_chaos_damage_to_deal_per_minute - /// - DesecrateOnBlockBaseChaosDamageToDealPerMinute = 1357, - - /// - /// desecrate_on_block_base_radius - /// - DesecrateOnBlockBaseRadius = 1358, - - /// - /// desecrate_on_block_duration_ms - /// - DesecrateOnBlockDurationMs = 1359, - - /// - /// base_chaos_damage_%_of_maximum_life_taken_per_minute_per_frenzy_charge - /// - BaseChaosDamagePctOfMaximumLifeTakenPerMinutePerFrenzyCharge = 1360, - - /// - /// add_frenzy_charge_on_kill_%_chance - /// - AddFrenzyChargeOnKillPctChance = 1361, - - /// - /// local_socketed_elemental_gem_level_+ - /// - LocalSocketedElementalGemLevel = 1362, - - /// - /// melee_critical_strike_chance_+% - /// - MeleeCriticalStrikeChancePct = 1363, - - /// - /// melee_critical_strike_chance_+%_when_on_full_life - /// - MeleeCriticalStrikeChancePctWhenOnFullLife = 1364, - - /// - /// cannot_be_killed_by_elemental_reflect - /// - CannotBeKilledByElementalReflect = 1365, - - /// - /// local_display_socketed_gems_get_added_lightning_damage_level - /// - LocalDisplaySocketedGemsGetAddedLightningDamageLevel = 1366, - - /// - /// map_is_unidentified - /// - MapIsUnidentified = 1367, - - /// - /// melee_attacks_usable_without_mana_cost - /// - MeleeAttacksUsableWithoutManaCost = 1368, - - /// - /// melee_attack_mana_cost_+ - /// - MeleeAttackManaCost = 1369, - - /// - /// Melee Damage +% - /// - MeleeDamagePct = 1370, - - /// - /// melee_damage_taken_+% - /// - MeleeDamageTakenPct = 1371, - - /// - /// map_experience_gain_+% - /// - MapExperienceGainPct = 1372, - - /// - /// life_gained_on_block - /// - LifeGainedOnBlock = 1373, - - /// - /// mana_gained_on_block - /// - ManaGainedOnBlock = 1374, - - /// - /// minimum_physical_damage_to_return_on_block - /// - MinimumPhysicalDamageToReturnOnBlock = 1375, - - /// - /// maximum_physical_damage_to_return_on_block - /// - MaximumPhysicalDamageToReturnOnBlock = 1376, - - /// - /// footstep_effect_variation - /// - FootstepEffectVariation = 1377, - - /// - /// zombie_maximum_life_+ - /// - ZombieMaximumLife = 1378, - - /// - /// number_of_zombies_allowed_+% - /// - NumberOfZombiesAllowedPct = 1379, - - /// - /// zombie_chaos_elemental_damage_resistance_% - /// - ZombieChaosElementalDamageResistancePct = 1380, - - /// - /// chill_and_freeze_duration_based_on_%_energy_shield - /// - ChillAndFreezeDurationBasedOnPctEnergyShield = 1381, - - /// - /// number_of_equipped_uniques - /// - NumberOfEquippedUniques = 1382, - - /// - /// intelligence_+%_per_equipped_unique - /// - IntelligencePctPerEquippedUnique = 1383, - - /// - /// ignited_enemies_explode_on_kill - /// - IgnitedEnemiesExplodeOnKill = 1384, - - /// - /// additional_scroll_of_wisdom_drop_chance_% - /// - AdditionalScrollOfWisdomDropChancePct = 1385, - - /// - /// explode_on_kill_%_fire_damage_to_deal - /// - ExplodeOnKillPctFireDamageToDeal = 1386, - - /// - /// zombie_explode_on_kill_%_fire_damage_to_deal - /// - ZombieExplodeOnKillPctFireDamageToDeal = 1387, - - /// - /// local_unique_flask_item_rarity_+%_while_healing - /// - LocalUniqueFlaskItemRarityPctWhileHealing = 1388, - - /// - /// local_unique_flask_item_quantity_+%_while_healing - /// - LocalUniqueFlaskItemQuantityPctWhileHealing = 1389, - - /// - /// local_unique_flask_light_radius_+%_while_healing - /// - LocalUniqueFlaskLightRadiusPctWhileHealing = 1390, - - /// - /// local_unique_flask_resist_all_elements_%_during_flask_effect - /// - LocalUniqueFlaskResistAllElementsPctDuringFlaskEffect = 1391, - - /// - /// Additional Strength And Intelligence - /// - AdditionalStrengthAndIntelligence = 1392, - - /// - /// Additional Strength And Dexterity - /// - AdditionalStrengthAndDexterity = 1393, - - /// - /// Additional Dexterity And Intelligence - /// - AdditionalDexterityAndIntelligence = 1394, - - /// - /// curse_effect_+% - /// - CurseEffectPct = 1395, - - /// - /// nonfunctional_old_stat_map_monster_movement_velocity_cap - /// - NonfunctionalOldStatMapMonsterMovementVelocityCap = 1396, - - /// - /// movement_velocity_+%_while_cursed - /// - MovementVelocityPctWhileCursed = 1397, - - /// - /// map_spawn_exile_per_area_% - /// - MapSpawnExilePerAreaPct = 1398, - - /// - /// cyclone_extra_distance - /// - CycloneExtraDistance = 1399, - - /// - /// zombie_boss_extract_life_%_to_gain - /// - ZombieBossExtractLifePctToGain = 1400, - - /// - /// life_regeneration_rate_per_minute_%_per_frenzy_charge - /// - LifeRegenerationRatePerMinutePctPerFrenzyCharge = 1401, - - /// - /// enemy_on_low_life_damage_taken_+%_per_frenzy_charge - /// - EnemyOnLowLifeDamageTakenPctPerFrenzyCharge = 1402, - - /// - /// movement_velocity_+%_per_ten_levels - /// - MovementVelocityPctPerTenLevels = 1403, - - /// - /// enemy_on_low_life_damage_taken_+% - /// - EnemyOnLowLifeDamageTakenPct = 1404, - - /// - /// add_power_charge_on_kill_%_chance - /// - AddPowerChargeOnKillPctChance = 1405, - - /// - /// gain_endurance_charge_on_power_charge_expiry - /// - GainEnduranceChargeOnPowerChargeExpiry = 1406, - - /// - /// melee_damage_+%_when_on_full_life - /// - MeleeDamagePctWhenOnFullLife = 1407, - - /// - /// consecrate_on_crit_%_chance_to_create - /// - ConsecrateOnCritPctChanceToCreate = 1408, - - /// - /// Projectile speed increase - /// - ProjectileSpeedPct = 1409, - - /// - /// Projectile Speed increase per Frenzy Charge - /// - ProjectileSpeedPctPerFrenzyCharge = 1410, - - /// - /// Projectile Damage increase per Power Charge - /// - ProjectileDamagePctPerPowerCharge = 1411, - - /// - /// killed_monster_dropped_item_rarity_+%_on_crit - /// - KilledMonsterDroppedItemRarityPctOnCrit = 1412, - - /// - /// onslaught_buff_duration_on_kill_ms - /// - OnslaughtBuffDurationOnKillMs = 1413, - - /// - /// local_right_ring_slot_no_mana_regeneration - /// - LocalRightRingSlotNoManaRegeneration = 1414, - - /// - /// local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_% - /// - LocalRightRingSlotBaseEnergyShieldRegenerationRatePerMinutePct = 1415, - - /// - /// local_left_ring_slot_mana_regeneration_rate_+% - /// - LocalLeftRingSlotManaRegenerationRatePct = 1416, - - /// - /// local_left_ring_slot_no_energy_shield_recharge_or_regeneration - /// - LocalLeftRingSlotNoEnergyShieldRechargeOrRegeneration = 1417, - - /// - /// no_energy_shield_recharge_or_regeneration - /// - NoEnergyShieldRechargeOrRegeneration = 1418, - - /// - /// base_energy_shield_regeneration_rate_per_minute_% - /// - BaseEnergyShieldRegenerationRatePerMinutePct = 1419, - - /// - /// character_sheet_monster_level - /// - CharacterSheetMonsterLevel = 1420, - - /// - /// keystone_acrobatics_energy_shield_+%_final - /// - KeystoneAcrobaticsEnergyShieldPctFinal = 1421, - - /// - /// keystone_acrobatics_physical_damage_reduction_rating_+%_final - /// - KeystoneAcrobaticsPhysicalDamageReductionRatingPctFinal = 1422, - - /// - /// life_recovery_per_minute_from_leech - /// - LifeRecoveryPerMinuteFromLeech = 1423, - - /// - /// mana_recovery_per_minute_from_leech - /// - ManaRecoveryPerMinuteFromLeech = 1424, - - /// - /// energy_shield_recovery_per_minute_from_leech - /// - EnergyShieldRecoveryPerMinuteFromLeech = 1425, - - /// - /// life_recovery_per_minute - /// - LifeRecoveryPerMinute = 1426, - - /// - /// mana_recovery_per_minute - /// - ManaRecoveryPerMinute = 1427, - - /// - /// energy_shield_recovery_per_minute - /// - EnergyShieldRecoveryPerMinute = 1428, - - /// - /// extra_critical_rolls - /// - ExtraCriticalRolls = 1429, - - /// - /// combined_all_damage_+% - /// - CombinedAllDamagePct = 1430, - - /// - /// combined_all_damage_+%_final - /// - CombinedAllDamagePctFinal = 1431, - - /// - /// combined_spell_all_damage_+% - /// - CombinedSpellAllDamagePct = 1432, - - /// - /// combined_spell_all_damage_+%_final - /// - CombinedSpellAllDamagePctFinal = 1433, - - /// - /// combined_attack_all_damage_+% - /// - CombinedAttackAllDamagePct = 1434, - - /// - /// combined_attack_all_damage_+%_final - /// - CombinedAttackAllDamagePctFinal = 1435, - - /// - /// combined_main_hand_attack_all_damage_+% - /// - CombinedMainHandAttackAllDamagePct = 1436, - - /// - /// combined_off_hand_attack_all_damage_+% - /// - CombinedOffHandAttackAllDamagePct = 1437, - - /// - /// combined_physical_damage_+% - /// - CombinedPhysicalDamagePct = 1438, - - /// - /// combined_physical_damage_+%_final - /// - CombinedPhysicalDamagePctFinal = 1439, - - /// - /// combined_attack_physical_damage_+% - /// - CombinedAttackPhysicalDamagePct = 1440, - - /// - /// combined_attack_physical_damage_+%_final - /// - CombinedAttackPhysicalDamagePctFinal = 1441, - - /// - /// combined_main_hand_attack_physical_damage_+% - /// - CombinedMainHandAttackPhysicalDamagePct = 1442, - - /// - /// combined_off_hand_attack_physical_damage_+% - /// - CombinedOffHandAttackPhysicalDamagePct = 1443, - - /// - /// combined_main_hand_attack_physical_damage_+%_final - /// - CombinedMainHandAttackPhysicalDamagePctFinal = 1444, - - /// - /// combined_off_hand_attack_physical_damage_+%_final - /// - CombinedOffHandAttackPhysicalDamagePctFinal = 1445, - - /// - /// combined_fire_damage_+% - /// - CombinedFireDamagePct = 1446, - - /// - /// combined_fire_damage_+%_final - /// - CombinedFireDamagePctFinal = 1447, - - /// - /// combined_cold_damage_+% - /// - CombinedColdDamagePct = 1448, - - /// - /// combined_cold_damage_+%_final - /// - CombinedColdDamagePctFinal = 1449, - - /// - /// combined_lightning_damage_+% - /// - CombinedLightningDamagePct = 1450, - - /// - /// combined_lightning_damage_+%_final - /// - CombinedLightningDamagePctFinal = 1451, - - /// - /// combined_chaos_damage_+% - /// - CombinedChaosDamagePct = 1452, - - /// - /// combined_chaos_damage_+%_final - /// - CombinedChaosDamagePctFinal = 1453, - - /// - /// combined_elemental_damage_+% - /// - CombinedElementalDamagePct = 1454, - - /// - /// combined_elemental_damage_+%_final - /// - CombinedElementalDamagePctFinal = 1455, - - /// - /// combined_attack_fire_damage_+% - /// - CombinedAttackFireDamagePct = 1456, - - /// - /// combined_attack_fire_damage_+%_final - /// - CombinedAttackFireDamagePctFinal = 1457, - - /// - /// combined_attack_cold_damage_+% - /// - CombinedAttackColdDamagePct = 1458, - - /// - /// combined_attack_cold_damage_+%_final - /// - CombinedAttackColdDamagePctFinal = 1459, - - /// - /// combined_spell_fire_damage_+% - /// - CombinedSpellFireDamagePct = 1460, - - /// - /// combined_spell_fire_damage_+%_final - /// - CombinedSpellFireDamagePctFinal = 1461, - - /// - /// combined_spell_cold_damage_+% - /// - CombinedSpellColdDamagePct = 1462, - - /// - /// combined_spell_lightning_damage_+% - /// - CombinedSpellLightningDamagePct = 1463, - - /// - /// combined_spell_lightning_damage_+%_final - /// - CombinedSpellLightningDamagePctFinal = 1464, - - /// - /// combined_spell_elemental_damage_+% - /// - CombinedSpellElementalDamagePct = 1465, - - /// - /// combined_spell_elemental_damage_+%_final - /// - CombinedSpellElementalDamagePctFinal = 1466, - - /// - /// combined_main_hand_attack_elemental_damage_+% - /// - CombinedMainHandAttackElementalDamagePct = 1467, - - /// - /// combined_off_hand_attack_elemental_damage_+% - /// - CombinedOffHandAttackElementalDamagePct = 1468, - - /// - /// combined_main_hand_attack_elemental_damage_+%_final - /// - CombinedMainHandAttackElementalDamagePctFinal = 1469, - - /// - /// combined_off_hand_attack_elemental_damage_+%_final - /// - CombinedOffHandAttackElementalDamagePctFinal = 1470, - - /// - /// combined_main_hand_attack_fire_damage_+% - /// - CombinedMainHandAttackFireDamagePct = 1471, - - /// - /// combined_off_hand_attack_fire_damage_+% - /// - CombinedOffHandAttackFireDamagePct = 1472, - - /// - /// combined_main_hand_attack_cold_damage_+% - /// - CombinedMainHandAttackColdDamagePct = 1473, - - /// - /// combined_off_hand_attack_cold_damage_+% - /// - CombinedOffHandAttackColdDamagePct = 1474, - - /// - /// combined_main_hand_attack_lightning_damage_+% - /// - CombinedMainHandAttackLightningDamagePct = 1475, - - /// - /// combined_off_hand_attack_lightning_damage_+% - /// - CombinedOffHandAttackLightningDamagePct = 1476, - - /// - /// combined_main_hand_attack_chaos_damage_+% - /// - CombinedMainHandAttackChaosDamagePct = 1477, - - /// - /// combined_off_hand_attack_chaos_damage_+% - /// - CombinedOffHandAttackChaosDamagePct = 1478, - - /// - /// spell_minimum_base_physical_damage - /// - SpellMinimumBasePhysicalDamage = 1479, - - /// - /// spell_maximum_base_physical_damage - /// - SpellMaximumBasePhysicalDamage = 1480, - - /// - /// spell_minimum_base_fire_damage - /// - SpellMinimumBaseFireDamage = 1481, - - /// - /// spell_maximum_base_fire_damage - /// - SpellMaximumBaseFireDamage = 1482, - - /// - /// spell_minimum_base_cold_damage - /// - SpellMinimumBaseColdDamage = 1483, - - /// - /// spell_maximum_base_cold_damage - /// - SpellMaximumBaseColdDamage = 1484, - - /// - /// spell_minimum_base_lightning_damage - /// - SpellMinimumBaseLightningDamage = 1485, - - /// - /// spell_maximum_base_lightning_damage - /// - SpellMaximumBaseLightningDamage = 1486, - - /// - /// spell_minimum_base_chaos_damage - /// - SpellMinimumBaseChaosDamage = 1487, - - /// - /// spell_maximum_base_chaos_damage - /// - SpellMaximumBaseChaosDamage = 1488, - - /// - /// is_projectile - /// - IsProjectile = 1489, - - /// - /// attack_is_melee - /// - AttackIsMelee = 1490, - - /// - /// base_lightning_damage_%_to_convert_to_fire - /// - BaseLightningDamagePctToConvertToFire = 1491, - - /// - /// base_lightning_damage_%_to_convert_to_cold - /// - BaseLightningDamagePctToConvertToCold = 1492, - - /// - /// base_fire_damage_%_to_convert_to_chaos - /// - BaseFireDamagePctToConvertToChaos = 1493, - - /// - /// base_cold_damage_%_to_convert_to_chaos - /// - BaseColdDamagePctToConvertToChaos = 1494, - - /// - /// base_lightning_damage_%_to_convert_to_chaos - /// - BaseLightningDamagePctToConvertToChaos = 1495, - - /// - /// skill_lightning_damage_%_to_convert_to_fire - /// - SkillLightningDamagePctToConvertToFire = 1496, - - /// - /// skill_lightning_damage_%_to_convert_to_cold - /// - SkillLightningDamagePctToConvertToCold = 1497, - - /// - /// skill_fire_damage_%_to_convert_to_chaos - /// - SkillFireDamagePctToConvertToChaos = 1498, - - /// - /// skill_cold_damage_%_to_convert_to_chaos - /// - SkillColdDamagePctToConvertToChaos = 1499, - - /// - /// skill_lightning_damage_%_to_convert_to_chaos - /// - SkillLightningDamagePctToConvertToChaos = 1500, - - /// - /// lightning_damage_%_to_convert_to_fire - /// - LightningDamagePctToConvertToFire = 1501, - - /// - /// lightning_damage_%_to_convert_to_cold - /// - LightningDamagePctToConvertToCold = 1502, - - /// - /// fire_damage_%_to_convert_to_chaos - /// - FireDamagePctToConvertToChaos = 1503, - - /// - /// cold_damage_%_to_convert_to_chaos - /// - ColdDamagePctToConvertToChaos = 1504, - - /// - /// lightning_damage_%_to_convert_to_chaos - /// - LightningDamagePctToConvertToChaos = 1505, - - /// - /// physical_damage_%_lost_to_conversion - /// - PhysicalDamagePctLostToConversion = 1506, - - /// - /// fire_damage_%_lost_to_conversion - /// - FireDamagePctLostToConversion = 1507, - - /// - /// cold_damage_%_lost_to_conversion - /// - ColdDamagePctLostToConversion = 1508, - - /// - /// lightning_damage_%_lost_to_conversion - /// - LightningDamagePctLostToConversion = 1509, - - /// - /// chaos_damage_%_lost_to_conversion - /// - ChaosDamagePctLostToConversion = 1510, - - /// - /// fire_damage_%_to_add_as_chaos - /// - FireDamagePctToAddAsChaos = 1511, - - /// - /// cold_damage_%_to_add_as_fire - /// - ColdDamagePctToAddAsFire = 1512, - - /// - /// cold_damage_%_to_add_as_chaos - /// - ColdDamagePctToAddAsChaos = 1513, - - /// - /// lightning_damage_%_to_add_as_fire - /// - LightningDamagePctToAddAsFire = 1514, - - /// - /// lightning_damage_%_to_add_as_cold - /// - LightningDamagePctToAddAsCold = 1515, - - /// - /// lightning_damage_%_to_add_as_chaos - /// - LightningDamagePctToAddAsChaos = 1516, - - /// - /// total_physical_damage_%_as_fire - /// - TotalPhysicalDamagePctAsFire = 1517, - - /// - /// total_physical_damage_%_as_cold - /// - TotalPhysicalDamagePctAsCold = 1518, - - /// - /// total_physical_damage_%_as_lightning - /// - TotalPhysicalDamagePctAsLightning = 1519, - - /// - /// total_physical_damage_%_as_chaos - /// - TotalPhysicalDamagePctAsChaos = 1520, - - /// - /// total_lightning_damage_%_as_fire - /// - TotalLightningDamagePctAsFire = 1521, - - /// - /// total_lightning_damage_%_as_cold - /// - TotalLightningDamagePctAsCold = 1522, - - /// - /// total_lightning_damage_%_as_chaos - /// - TotalLightningDamagePctAsChaos = 1523, - - /// - /// total_cold_damage_%_as_fire - /// - TotalColdDamagePctAsFire = 1524, - - /// - /// total_cold_damage_%_as_chaos - /// - TotalColdDamagePctAsChaos = 1525, - - /// - /// total_fire_damage_%_as_chaos - /// - TotalFireDamagePctAsChaos = 1526, - - /// - /// secondary_minimum_base_physical_damage - /// - SecondaryMinimumBasePhysicalDamage = 1527, - - /// - /// secondary_maximum_base_physical_damage - /// - SecondaryMaximumBasePhysicalDamage = 1528, - - /// - /// secondary_minimum_base_fire_damage - /// - SecondaryMinimumBaseFireDamage = 1529, - - /// - /// secondary_maximum_base_fire_damage - /// - SecondaryMaximumBaseFireDamage = 1530, - - /// - /// secondary_minimum_base_cold_damage - /// - SecondaryMinimumBaseColdDamage = 1531, - - /// - /// secondary_maximum_base_cold_damage - /// - SecondaryMaximumBaseColdDamage = 1532, - - /// - /// secondary_minimum_base_lightning_damage - /// - SecondaryMinimumBaseLightningDamage = 1533, - - /// - /// secondary_maximum_base_lightning_damage - /// - SecondaryMaximumBaseLightningDamage = 1534, - - /// - /// secondary_minimum_base_chaos_damage - /// - SecondaryMinimumBaseChaosDamage = 1535, - - /// - /// secondary_maximum_base_chaos_damage - /// - SecondaryMaximumBaseChaosDamage = 1536, - - /// - /// spell_total_minimum_base_physical_damage - /// - SpellTotalMinimumBasePhysicalDamage = 1537, - - /// - /// spell_total_maximum_base_physical_damage - /// - SpellTotalMaximumBasePhysicalDamage = 1538, - - /// - /// spell_total_minimum_base_fire_damage - /// - SpellTotalMinimumBaseFireDamage = 1539, - - /// - /// spell_total_maximum_base_fire_damage - /// - SpellTotalMaximumBaseFireDamage = 1540, - - /// - /// spell_total_minimum_base_cold_damage - /// - SpellTotalMinimumBaseColdDamage = 1541, - - /// - /// spell_total_maximum_base_cold_damage - /// - SpellTotalMaximumBaseColdDamage = 1542, - - /// - /// spell_total_minimum_base_lightning_damage - /// - SpellTotalMinimumBaseLightningDamage = 1543, - - /// - /// spell_total_maximum_base_lightning_damage - /// - SpellTotalMaximumBaseLightningDamage = 1544, - - /// - /// spell_total_minimum_base_chaos_damage - /// - SpellTotalMinimumBaseChaosDamage = 1545, - - /// - /// spell_total_maximum_base_chaos_damage - /// - SpellTotalMaximumBaseChaosDamage = 1546, - - /// - /// spell_total_minimum_added_physical_damage - /// - SpellTotalMinimumAddedPhysicalDamage = 1547, - - /// - /// spell_total_maximum_added_physical_damage - /// - SpellTotalMaximumAddedPhysicalDamage = 1548, - - /// - /// spell_total_minimum_added_fire_damage - /// - SpellTotalMinimumAddedFireDamage = 1549, - - /// - /// spell_total_maximum_added_fire_damage - /// - SpellTotalMaximumAddedFireDamage = 1550, - - /// - /// spell_total_minimum_added_cold_damage - /// - SpellTotalMinimumAddedColdDamage = 1551, - - /// - /// spell_total_maximum_added_cold_damage - /// - SpellTotalMaximumAddedColdDamage = 1552, - - /// - /// spell_total_minimum_added_lightning_damage - /// - SpellTotalMinimumAddedLightningDamage = 1553, - - /// - /// spell_total_maximum_added_lightning_damage - /// - SpellTotalMaximumAddedLightningDamage = 1554, - - /// - /// spell_total_minimum_added_chaos_damage - /// - SpellTotalMinimumAddedChaosDamage = 1555, - - /// - /// spell_total_maximum_added_chaos_damage - /// - SpellTotalMaximumAddedChaosDamage = 1556, - - /// - /// main_hand_total_minimum_base_physical_damage - /// - MainHandTotalMinimumBasePhysicalDamage = 1557, - - /// - /// main_hand_total_maximum_base_physical_damage - /// - MainHandTotalMaximumBasePhysicalDamage = 1558, - - /// - /// main_hand_total_minimum_base_fire_damage - /// - MainHandTotalMinimumBaseFireDamage = 1559, - - /// - /// main_hand_total_maximum_base_fire_damage - /// - MainHandTotalMaximumBaseFireDamage = 1560, - - /// - /// main_hand_total_minimum_base_cold_damage - /// - MainHandTotalMinimumBaseColdDamage = 1561, - - /// - /// main_hand_total_maximum_base_cold_damage - /// - MainHandTotalMaximumBaseColdDamage = 1562, - - /// - /// main_hand_total_minimum_base_lightning_damage - /// - MainHandTotalMinimumBaseLightningDamage = 1563, - - /// - /// main_hand_total_maximum_base_lightning_damage - /// - MainHandTotalMaximumBaseLightningDamage = 1564, - - /// - /// main_hand_total_minimum_base_chaos_damage - /// - MainHandTotalMinimumBaseChaosDamage = 1565, - - /// - /// main_hand_total_maximum_base_chaos_damage - /// - MainHandTotalMaximumBaseChaosDamage = 1566, - - /// - /// main_hand_total_minimum_added_physical_damage - /// - MainHandTotalMinimumAddedPhysicalDamage = 1567, - - /// - /// main_hand_total_maximum_added_physical_damage - /// - MainHandTotalMaximumAddedPhysicalDamage = 1568, - - /// - /// main_hand_total_minimum_added_fire_damage - /// - MainHandTotalMinimumAddedFireDamage = 1569, - - /// - /// main_hand_total_maximum_added_fire_damage - /// - MainHandTotalMaximumAddedFireDamage = 1570, - - /// - /// main_hand_total_minimum_added_cold_damage - /// - MainHandTotalMinimumAddedColdDamage = 1571, - - /// - /// main_hand_total_maximum_added_cold_damage - /// - MainHandTotalMaximumAddedColdDamage = 1572, - - /// - /// main_hand_total_minimum_added_lightning_damage - /// - MainHandTotalMinimumAddedLightningDamage = 1573, - - /// - /// main_hand_total_maximum_added_lightning_damage - /// - MainHandTotalMaximumAddedLightningDamage = 1574, - - /// - /// main_hand_total_minimum_added_chaos_damage - /// - MainHandTotalMinimumAddedChaosDamage = 1575, - - /// - /// main_hand_total_maximum_added_chaos_damage - /// - MainHandTotalMaximumAddedChaosDamage = 1576, - - /// - /// off_hand_total_minimum_base_physical_damage - /// - OffHandTotalMinimumBasePhysicalDamage = 1577, - - /// - /// off_hand_total_maximum_base_physical_damage - /// - OffHandTotalMaximumBasePhysicalDamage = 1578, - - /// - /// off_hand_total_minimum_base_fire_damage - /// - OffHandTotalMinimumBaseFireDamage = 1579, - - /// - /// off_hand_total_maximum_base_fire_damage - /// - OffHandTotalMaximumBaseFireDamage = 1580, - - /// - /// off_hand_total_minimum_base_cold_damage - /// - OffHandTotalMinimumBaseColdDamage = 1581, - - /// - /// off_hand_total_maximum_base_cold_damage - /// - OffHandTotalMaximumBaseColdDamage = 1582, - - /// - /// off_hand_total_minimum_base_lightning_damage - /// - OffHandTotalMinimumBaseLightningDamage = 1583, - - /// - /// off_hand_total_maximum_base_lightning_damage - /// - OffHandTotalMaximumBaseLightningDamage = 1584, - - /// - /// off_hand_total_minimum_base_chaos_damage - /// - OffHandTotalMinimumBaseChaosDamage = 1585, - - /// - /// off_hand_total_maximum_base_chaos_damage - /// - OffHandTotalMaximumBaseChaosDamage = 1586, - - /// - /// off_hand_total_minimum_added_physical_damage - /// - OffHandTotalMinimumAddedPhysicalDamage = 1587, - - /// - /// off_hand_total_maximum_added_physical_damage - /// - OffHandTotalMaximumAddedPhysicalDamage = 1588, - - /// - /// off_hand_total_minimum_added_fire_damage - /// - OffHandTotalMinimumAddedFireDamage = 1589, - - /// - /// off_hand_total_maximum_added_fire_damage - /// - OffHandTotalMaximumAddedFireDamage = 1590, - - /// - /// off_hand_total_minimum_added_cold_damage - /// - OffHandTotalMinimumAddedColdDamage = 1591, - - /// - /// off_hand_total_maximum_added_cold_damage - /// - OffHandTotalMaximumAddedColdDamage = 1592, - - /// - /// off_hand_total_minimum_added_lightning_damage - /// - OffHandTotalMinimumAddedLightningDamage = 1593, - - /// - /// off_hand_total_maximum_added_lightning_damage - /// - OffHandTotalMaximumAddedLightningDamage = 1594, - - /// - /// off_hand_total_minimum_added_chaos_damage - /// - OffHandTotalMinimumAddedChaosDamage = 1595, - - /// - /// off_hand_total_maximum_added_chaos_damage - /// - OffHandTotalMaximumAddedChaosDamage = 1596, - - /// - /// spell_minimum_added_physical_damage - /// - SpellMinimumAddedPhysicalDamage = 1597, - - /// - /// spell_maximum_added_physical_damage - /// - SpellMaximumAddedPhysicalDamage = 1598, - - /// - /// spell_minimum_added_fire_damage - /// - SpellMinimumAddedFireDamage = 1599, - - /// - /// spell_maximum_added_fire_damage - /// - SpellMaximumAddedFireDamage = 1600, - - /// - /// spell_minimum_added_cold_damage - /// - SpellMinimumAddedColdDamage = 1601, - - /// - /// spell_maximum_added_cold_damage - /// - SpellMaximumAddedColdDamage = 1602, - - /// - /// spell_minimum_added_lightning_damage - /// - SpellMinimumAddedLightningDamage = 1603, - - /// - /// spell_maximum_added_lightning_damage - /// - SpellMaximumAddedLightningDamage = 1604, - - /// - /// spell_minimum_added_chaos_damage - /// - SpellMinimumAddedChaosDamage = 1605, - - /// - /// spell_maximum_added_chaos_damage - /// - SpellMaximumAddedChaosDamage = 1606, - - /// - /// total_base_life_regeneration_rate_per_minute_% - /// - TotalBaseLifeRegenerationRatePerMinutePct = 1607, - - /// - /// total_base_life_regeneration_rate_per_minute - /// - TotalBaseLifeRegenerationRatePerMinute = 1608, - - /// - /// total_base_maximum_energy_shield - /// - TotalBaseMaximumEnergyShield = 1609, - - /// - /// combined_energy_shield_+% - /// - CombinedEnergyShieldPct = 1610, - - /// - /// combined_energy_shield_from_shield_+% - /// - CombinedEnergyShieldFromShieldPct = 1611, - - /// - /// combined_energy_shield_+%_final - /// - CombinedEnergyShieldPctFinal = 1612, - - /// - /// total_base_evasion_rating - /// - TotalBaseEvasionRating = 1613, - - /// - /// combined_evasion_rating_+% - /// - CombinedEvasionRatingPct = 1614, - - /// - /// combined_evasion_rating_from_shield_+% - /// - CombinedEvasionRatingFromShieldPct = 1615, - - /// - /// movement_velocity_+1%_per_X_evasion_rating - /// - MovementVelocity1PctPerXEvasionRating = 1616, - - /// - /// local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage - /// - LocalDisplaySocketedGemsHavePctChanceToIgniteWithFireDamage = 1617, - - /// - /// cannot_freeze_shock_ignite_on_critical - /// - CannotFreezeShockIgniteOnCritical = 1618, - - /// - /// no_critical_strike_multiplier - /// - NoCriticalStrikeMultiplier = 1619, - - /// - /// onslaught_on_crit_duration_ms - /// - OnslaughtOnCritDurationMs = 1620, - - /// - /// zombie_scale_+% - /// - ZombieScalePct = 1621, - - /// - /// zombie_physical_damage_+% - /// - ZombiePhysicalDamagePct = 1622, - - /// - /// faster_burn_from_attacks_% - /// - FasterBurnFromAttacksPct = 1623, - - /// - /// weapon_elemental_damage_+%_per_power_charge - /// - WeaponElementalDamagePctPerPowerCharge = 1624, - - /// - /// apply_linked_curses_on_hit_% - /// - ApplyLinkedCursesOnHitPct = 1625, - - /// - /// cannot_cast_curses - /// - CannotCastCurses = 1626, - - /// - /// spell_damage_modifiers_apply_to_attack_damage - /// - SpellDamageModifiersApplyToAttackDamage = 1627, - - /// - /// spell_damage_+%_from_dexterity - /// - SpellDamagePctFromDexterity = 1628, - - /// - /// agile_will - /// - AgileWill = 1629, - - /// - /// old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge - /// - OldDoNotUseManaLeechFromPhysicalDamagePctPerPowerCharge = 1630, - - /// - /// chaos_damage_can_shock - /// - ChaosDamageCanShock = 1631, - - /// - /// physical_damage_can_chill - /// - PhysicalDamageCanChill = 1632, - - /// - /// killed_monster_dropped_item_quantity_+%_when_frozen - /// - KilledMonsterDroppedItemQuantityPctWhenFrozen = 1633, - - /// - /// killed_monster_dropped_item_rarity_+%_when_shocked - /// - KilledMonsterDroppedItemRarityPctWhenShocked = 1634, - - /// - /// local_flask_removes_%_maximum_energy_shield_on_use - /// - LocalFlaskRemovesPctMaximumEnergyShieldOnUse = 1635, - - /// - /// local_flask_deals_%_maximum_life_as_chaos_damage_on_use - /// - LocalFlaskDealsPctMaximumLifeAsChaosDamageOnUse = 1636, - - /// - /// local_flask_gain_power_charges_on_use - /// - LocalFlaskGainPowerChargesOnUse = 1637, - - /// - /// local_flask_gain_frenzy_charges_on_use - /// - LocalFlaskGainFrenzyChargesOnUse = 1638, - - /// - /// local_flask_gain_endurance_charges_on_use - /// - LocalFlaskGainEnduranceChargesOnUse = 1639, - - /// - /// deaths_oath_debuff_on_kill_duration_ms - /// - DeathsOathDebuffOnKillDurationMs = 1640, - - /// - /// deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute - /// - DeathsOathDebuffOnKillBaseChaosDamageToDealPerMinute = 1641, - - /// - /// local_display_aura_base_chaos_damage_to_deal_per_minute - /// - LocalDisplayAuraBaseChaosDamageToDealPerMinute = 1642, - - /// - /// blood_footprints_from_item - /// - BloodFootprintsFromItem = 1643, - - /// - /// demigod_footprints_from_item - /// - DemigodFootprintsFromItem = 1644, - - /// - /// silver_footprints_from_item - /// - SilverFootprintsFromItem = 1645, - - /// - /// map_obas_trial - /// - MapObasTrial = 1646, - - /// - /// display_skill_deals_secondary_damage - /// - DisplaySkillDealsSecondaryDamage = 1647, - - /// - /// secondary_minimum_total_damage - /// - SecondaryMinimumTotalDamage = 1648, - - /// - /// secondary_maximum_total_damage - /// - SecondaryMaximumTotalDamage = 1649, - - /// - /// local_unique_counts_as_dual_wielding - /// - LocalUniqueCountsAsDualWielding = 1650, - - /// - /// unique_local_minimum_added_fire_damage_when_in_main_hand - /// - UniqueLocalMinimumAddedFireDamageWhenInMainHand = 1651, - - /// - /// unique_local_maximum_added_fire_damage_when_in_main_hand - /// - UniqueLocalMaximumAddedFireDamageWhenInMainHand = 1652, - - /// - /// unique_local_minimum_added_chaos_damage_when_in_off_hand - /// - UniqueLocalMinimumAddedChaosDamageWhenInOffHand = 1653, - - /// - /// unique_local_maximum_added_chaos_damage_when_in_off_hand - /// - UniqueLocalMaximumAddedChaosDamageWhenInOffHand = 1654, - - /// - /// unique_local_minimum_added_cold_damage_when_in_off_hand - /// - UniqueLocalMinimumAddedColdDamageWhenInOffHand = 1655, - - /// - /// unique_local_maximum_added_cold_damage_when_in_off_hand - /// - UniqueLocalMaximumAddedColdDamageWhenInOffHand = 1656, - - /// - /// map_floor_unlock_time_seconds_UNUSED - /// - MapFloorUnlockTimeSecondsUNUSED = 1657, - - /// - /// map_ignore_rogue_exile_rarity_bias - /// - MapIgnoreRogueExileRarityBias = 1658, - - /// - /// map_override_rogue_exile_min_level - /// - MapOverrideRogueExileMinLevel = 1659, - - /// - /// Attack Speed increase per Frenzy Charge - /// - AttackSpeedPctPerFrenzyCharge = 1660, - - /// - /// Cast Speed increase per Frenzy Charge - /// - CastSpeedPctPerFrenzyCharge = 1661, - - /// - /// attack_and_cast_speed_+%_per_frenzy_charge - /// - AttackAndCastSpeedPctPerFrenzyCharge = 1662, - - /// - /// converted_original_team - /// - ConvertedOriginalTeam = 1663, - - /// - /// damage_+%_vs_enemies_on_low_life_per_frenzy_charge - /// - DamagePctVsEnemiesOnLowLifePerFrenzyCharge = 1664, - - /// - /// damage_+%_per_frenzy_charge - /// - DamagePctPerFrenzyCharge = 1665, - - /// - /// damage_removed_from_mana_before_life_% - /// - DamageRemovedFromManaBeforeLifePct = 1666, - - /// - /// local_display_aura_damage_+% - /// - LocalDisplayAuraDamagePct = 1667, - - /// - /// attack_ignite_chance_% - /// - AttackIgniteChancePct = 1668, - - /// - /// melee_damage_+%_vs_frozen_enemies - /// - MeleeDamagePctVsFrozenEnemies = 1669, - - /// - /// melee_damage_+%_vs_shocked_enemies - /// - MeleeDamagePctVsShockedEnemies = 1670, - - /// - /// melee_damage_+%_vs_burning_enemies - /// - MeleeDamagePctVsBurningEnemies = 1671, - - /// - /// melee_damage_taken_%_to_deal_to_attacker - /// - MeleeDamageTakenPctToDealToAttacker = 1672, - - /// - /// mana_gained_when_hit - /// - ManaGainedWhenHit = 1673, - - /// - /// local_display_socketed_gems_get_reduced_mana_cost_level - /// - LocalDisplaySocketedGemsGetReducedManaCostLevel = 1674, - - /// - /// local_display_socketed_gems_get_faster_cast_level - /// - LocalDisplaySocketedGemsGetFasterCastLevel = 1675, - - /// - /// projectile_ignite_chance_% - /// - ProjectileIgniteChancePct = 1676, - - /// - /// projectile_freeze_chance_% - /// - ProjectileFreezeChancePct = 1677, - - /// - /// projectile_shock_chance_% - /// - ProjectileShockChancePct = 1678, - - /// - /// local_off_hand_visual_identity_override_hash - /// - LocalOffHandVisualIdentityOverrideHash = 1679, - - /// - /// elemental_reflect_damage_taken_+% - /// - ElementalReflectDamageTakenPct = 1680, - - /// - /// physical_reflect_damage_taken_+% - /// - PhysicalReflectDamageTakenPct = 1681, - - /// - /// local_left_ring_slot_elemental_reflect_damage_taken_+% - /// - LocalLeftRingSlotElementalReflectDamageTakenPct = 1682, - - /// - /// local_right_ring_slot_physical_reflect_damage_taken_+% - /// - LocalRightRingSlotPhysicalReflectDamageTakenPct = 1683, - - /// - /// grace_aura_evasion_rating_+%_final - /// - GraceAuraEvasionRatingPctFinal = 1684, - - /// - /// deal_no_attack_damage - /// - DealNoAttackDamage = 1685, - - /// - /// deal_no_main_hand_damage - /// - DealNoMainHandDamage = 1686, - - /// - /// deal_no_off_hand_damage - /// - DealNoOffHandDamage = 1687, - - /// - /// deal_no_spell_damage - /// - DealNoSpellDamage = 1688, - - /// - /// deal_no_secondary_damage - /// - DealNoSecondaryDamage = 1689, - - /// - /// deal_no_physical_damage - /// - DealNoPhysicalDamage = 1690, - - /// - /// deal_no_fire_damage - /// - DealNoFireDamage = 1691, - - /// - /// deal_no_cold_damage - /// - DealNoColdDamage = 1692, - - /// - /// deal_no_lightning_damage - /// - DealNoLightningDamage = 1693, - - /// - /// deal_no_chaos_damage - /// - DealNoChaosDamage = 1694, - - /// - /// deal_no_spell_physical_damage - /// - DealNoSpellPhysicalDamage = 1695, - - /// - /// deal_no_spell_fire_damage - /// - DealNoSpellFireDamage = 1696, - - /// - /// deal_no_spell_cold_damage - /// - DealNoSpellColdDamage = 1697, - - /// - /// deal_no_spell_lightning_damage - /// - DealNoSpellLightningDamage = 1698, - - /// - /// deal_no_spell_chaos_damage - /// - DealNoSpellChaosDamage = 1699, - - /// - /// deal_no_secondary_physical_damage - /// - DealNoSecondaryPhysicalDamage = 1700, - - /// - /// deal_no_secondary_fire_damage - /// - DealNoSecondaryFireDamage = 1701, - - /// - /// deal_no_secondary_cold_damage - /// - DealNoSecondaryColdDamage = 1702, - - /// - /// deal_no_secondary_lightning_damage - /// - DealNoSecondaryLightningDamage = 1703, - - /// - /// deal_no_secondary_chaos_damage - /// - DealNoSecondaryChaosDamage = 1704, - - /// - /// deal_no_main_hand_physical_damage - /// - DealNoMainHandPhysicalDamage = 1705, - - /// - /// deal_no_main_hand_fire_damage - /// - DealNoMainHandFireDamage = 1706, - - /// - /// deal_no_main_hand_cold_damage - /// - DealNoMainHandColdDamage = 1707, - - /// - /// deal_no_main_hand_lightning_damage - /// - DealNoMainHandLightningDamage = 1708, - - /// - /// deal_no_main_hand_chaos_damage - /// - DealNoMainHandChaosDamage = 1709, - - /// - /// deal_no_off_hand_physical_damage - /// - DealNoOffHandPhysicalDamage = 1710, - - /// - /// deal_no_off_hand_fire_damage - /// - DealNoOffHandFireDamage = 1711, - - /// - /// deal_no_off_hand_cold_damage - /// - DealNoOffHandColdDamage = 1712, - - /// - /// deal_no_off_hand_lightning_damage - /// - DealNoOffHandLightningDamage = 1713, - - /// - /// deal_no_off_hand_chaos_damage - /// - DealNoOffHandChaosDamage = 1714, - - /// - /// base_deal_no_main_hand_damage - /// - BaseDealNoMainHandDamage = 1715, - - /// - /// base_deal_no_off_hand_damage - /// - BaseDealNoOffHandDamage = 1716, - - /// - /// base_deal_no_spell_damage - /// - BaseDealNoSpellDamage = 1717, - - /// - /// base_deal_no_secondary_damage - /// - BaseDealNoSecondaryDamage = 1718, - - /// - /// base_deal_no_attack_damage - /// - BaseDealNoAttackDamage = 1719, - - /// - /// base_deal_no_physical_damage - /// - BaseDealNoPhysicalDamage = 1720, - - /// - /// base_deal_no_fire_damage - /// - BaseDealNoFireDamage = 1721, - - /// - /// base_deal_no_cold_damage - /// - BaseDealNoColdDamage = 1722, - - /// - /// base_deal_no_lightning_damage - /// - BaseDealNoLightningDamage = 1723, - - /// - /// base_deal_no_chaos_damage - /// - BaseDealNoChaosDamage = 1724, - - /// - /// local_can_only_deal_damage_with_this_weapon - /// - LocalCanOnlyDealDamageWithThisWeapon = 1725, - - /// - /// reave_area_of_effect_+%_final_per_stage - /// - ReaveAreaOfEffectPctFinalPerStage = 1726, - - /// - /// skill_can_add_multiple_charges_per_action - /// - SkillCanAddMultipleChargesPerAction = 1727, - - /// - /// local_charges_used_+% - /// - LocalChargesUsedPct = 1728, - - /// - /// non_critical_damage_multiplier_+% - /// - NonCriticalDamageMultiplierPct = 1729, - - /// - /// skill_sound_variation - /// - SkillSoundVariation = 1730, - - /// - /// unique_map_boss_number_of_rare_items_to_drop - /// - UniqueMapBossNumberOfRareItemsToDrop = 1731, - - /// - /// unique_map_boss_class_of_rare_items_to_drop - /// - UniqueMapBossClassOfRareItemsToDrop = 1732, - - /// - /// base_cold_damage_to_deal_per_minute - /// - BaseColdDamageToDealPerMinute = 1733, - - /// - /// number_of_totems_summoned_in_formation - /// - NumberOfTotemsSummonedInFormation = 1734, - - /// - /// supported_active_skill_gem_level_+ - /// - SupportedActiveSkillGemLevel = 1735, - - /// - /// shock_art_variation - /// - ShockArtVariation = 1736, - - /// - /// support_multicast_cast_speed_+%_final - /// - SupportMulticastCastSpeedPctFinal = 1737, - - /// - /// global_attack_speed_+%_per_green_socket_on_item - /// - GlobalAttackSpeedPctPerGreenSocketOnItem = 1738, - - /// - /// global_weapon_physical_damage_+%_per_red_socket_on_item - /// - GlobalWeaponPhysicalDamagePctPerRedSocketOnItem = 1739, - - /// - /// old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item - /// - OldDoNotUseGlobalManaLeechFromPhysicalAttackDamagePctPerBlueSocketOnItem = 1740, - - /// - /// global_melee_range_+_per_white_socket_on_item - /// - GlobalMeleeRangePerWhiteSocketOnItem = 1741, - - /// - /// spell_damage_+%_per_5%_block_chance - /// - SpellDamagePctPer5PctBlockChance = 1742, - - /// - /// base_life_gained_on_spell_hit - /// - BaseLifeGainedOnSpellHit = 1743, - - /// - /// armour_%_to_leech_as_life_on_block - /// - ArmourPctToLeechAsLifeOnBlock = 1744, - - /// - /// energy_shield_%_to_lose_on_block - /// - EnergyShieldPctToLoseOnBlock = 1745, - - /// - /// light_radius_scales_with_energy_shield - /// - LightRadiusScalesWithEnergyShield = 1746, - - /// - /// fishing_range_+% - /// - FishingRangePct = 1747, - - /// - /// fishing_line_strength_+% - /// - FishingLineStrengthPct = 1748, - - /// - /// fish_quantity_+% - /// - FishQuantityPct = 1749, - - /// - /// fish_rarity_+% - /// - FishRarityPct = 1750, - - /// - /// fishing_pool_consumption_+% - /// - FishingPoolConsumptionPct = 1751, - - /// - /// fishing_lure_type - /// - FishingLureType = 1752, - - /// - /// fishing_hook_type - /// - FishingHookType = 1753, - - /// - /// cannot_be_damaged_by_things_outside_radius - /// - CannotBeDamagedByThingsOutsideRadius = 1754, - - /// - /// inside_shield - /// - InsideShield = 1755, - - /// - /// flask_effect_+% - /// - FlaskEffectPct = 1756, - - /// - /// chance_to_gain_endurance_charge_when_hit_% - /// - ChanceToGainEnduranceChargeWhenHitPct = 1757, - - /// - /// lose_all_endurance_charges_when_reaching_maximum - /// - LoseAllEnduranceChargesWhenReachingMaximum = 1758, - - /// - /// gain_onslaught_ms_when_reaching_maximum_endurance_charges - /// - GainOnslaughtMsWhenReachingMaximumEnduranceCharges = 1759, - - /// - /// cannot_gain_endurance_charges_while_have_onslaught - /// - CannotGainEnduranceChargesWhileHaveOnslaught = 1760, - - /// - /// has_onslaught - /// - HasOnslaught = 1761, - - /// - /// cannot_gain_endurance_charges - /// - CannotGainEnduranceCharges = 1762, - - /// - /// local_weapon_range_+ - /// - LocalWeaponRange = 1763, - - /// - /// off_hand_weapon_range_+ - /// - OffHandWeaponRange = 1764, - - /// - /// main_hand_weapon_range_+ - /// - MainHandWeaponRange = 1765, - - /// - /// Local Has X Sockets - /// - LocalHasXSockets = 1766, - - /// - /// weapon_physical_damage_+% - /// - WeaponPhysicalDamagePct = 1767, - - /// - /// maximum_critical_strike_chance - /// - MaximumCriticalStrikeChance = 1768, - - /// - /// chilled_monsters_take_+%_burning_damage - /// - ChilledMonstersTakePctBurningDamage = 1769, - - /// - /// unique_ignite_chance_%_when_in_main_hand - /// - UniqueIgniteChancePctWhenInMainHand = 1770, - - /// - /// unique_chill_duration_+%_when_in_off_hand - /// - UniqueChillDurationPctWhenInOffHand = 1771, - - /// - /// curse_on_melee_block_level_15_punishment - /// - CurseOnMeleeBlockLevel15Punishment = 1772, - - /// - /// curse_on_projectile_block_level_15_temporal_chains - /// - CurseOnProjectileBlockLevel15TemporalChains = 1773, - - /// - /// curse_on_spell_block_level_15_elemental_weakness - /// - CurseOnSpellBlockLevel15ElementalWeakness = 1774, - - /// - /// local_display_socketed_gems_get_item_quantity_+% - /// - LocalDisplaySocketedGemsGetItemQuantityPct = 1775, - - /// - /// local_display_socketed_gems_get_iron_will_level - /// - LocalDisplaySocketedGemsGetIronWillLevel = 1776, - - /// - /// gain_onslaught_on_stun_duration_ms - /// - GainOnslaughtOnStunDurationMs = 1777, - - /// - /// cast_linked_spells_on_attack_hit_% - /// - CastLinkedSpellsOnAttackHitPct = 1778, - - /// - /// spectres_have_aura_cast_attack_move_speed_+% - /// - SpectresHaveAuraCastAttackMoveSpeedPct = 1779, - - /// - /// physical_damage_reduction_rating_per_level - /// - PhysicalDamageReductionRatingPerLevel = 1780, - - /// - /// maximum_life_per_10_levels - /// - MaximumLifePer10Levels = 1781, - - /// - /// resist_all_elements_%_per_10_levels - /// - ResistAllElementsPctPer10Levels = 1782, - - /// - /// chance_to_gain_random_curse_when_hit_%_per_10_levels - /// - ChanceToGainRandomCurseWhenHitPctPer10Levels = 1783, - - /// - /// chance_to_gain_random_curse_when_hit_% - /// - ChanceToGainRandomCurseWhenHitPct = 1784, - - /// - /// curse_on_hit_%_flammability - /// - CurseOnHitPctFlammability = 1785, - - /// - /// support_trap_damage_+%_final - /// - SupportTrapDamagePctFinal = 1786, - - /// - /// number_of_additional_traps_to_throw - /// - NumberOfAdditionalTrapsToThrow = 1787, - - /// - /// number_of_traps_to_throw - /// - NumberOfTrapsToThrow = 1788, - - /// - /// projectiles_nova - /// - ProjectilesNova = 1789, - - /// - /// support_multithrow_damage_+%_final - /// - SupportMultithrowDamagePctFinal = 1790, - - /// - /// suppressing_fire_debuff_cast_speed_+%_final - /// - SuppressingFireDebuffCastSpeedPctFinal = 1791, - - /// - /// suppressing_fire_debuff_non_melee_attack_speed_+%_final - /// - SuppressingFireDebuffNonMeleeAttackSpeedPctFinal = 1792, - - /// - /// cast_on_death_% - /// - CastOnDeathPct = 1793, - - /// - /// accuracy_rating_+%_per_frenzy_charge - /// - AccuracyRatingPctPerFrenzyCharge = 1794, - - /// - /// base_skill_is_trapped - /// - BaseSkillIsTrapped = 1795, - - /// - /// base_skill_is_mined - /// - BaseSkillIsMined = 1796, - - /// - /// base_skill_is_totemified - /// - BaseSkillIsTotemified = 1797, - - /// - /// trap_damage_+% - /// - TrapDamagePct = 1798, - - /// - /// totem_damage_+% - /// - TotemDamagePct = 1799, - - /// - /// mine_damage_+% - /// - MineDamagePct = 1800, - - /// - /// monster_reverse_point_blank_damage_-%_at_minimum_range - /// - MonsterReversePointBlankDamagePctAtMinimumRange = 1801, - - /// - /// frenzy_charge_duration_+%_per_frenzy_charge - /// - FrenzyChargeDurationPctPerFrenzyCharge = 1802, - - /// - /// Frenzy Charge duration increase - /// - VirtualFrenzyChargeDurationPct = 1803, - - /// - /// attacks_poison_while_at_max_frenzy_charges - /// - AttacksPoisonWhileAtMaxFrenzyCharges = 1804, - - /// - /// attacks_poison - /// - AttacksPoison = 1805, - - /// - /// gain_endurance_charge_on_melee_stun - /// - GainEnduranceChargeOnMeleeStun = 1806, - - /// - /// damage_taken_+%_vs_demons - /// - DamageTakenPctVsDemons = 1807, - - /// - /// damage_+%_vs_demons - /// - DamagePctVsDemons = 1808, - - /// - /// local_recharge_on_demon_killed - /// - LocalRechargeOnDemonKilled = 1809, - - /// - /// local_unique_flask_damage_taken_+%_vs_demons_while_healing - /// - LocalUniqueFlaskDamageTakenPctVsDemonsWhileHealing = 1810, - - /// - /// local_unique_flask_damage_+%_vs_demons_while_healing - /// - LocalUniqueFlaskDamagePctVsDemonsWhileHealing = 1811, - - /// - /// chance_to_apply_suppression_on_hit_% - /// - ChanceToApplySuppressionOnHitPct = 1812, - - /// - /// is_frozen - /// - IsFrozen = 1813, - - /// - /// is_chilled - /// - IsChilled = 1814, - - /// - /// is_ignited - /// - IsIgnited = 1815, - - /// - /// curses_reflected_to_self - /// - CursesReflectedToSelf = 1816, - - /// - /// movement_speed_bonus_when_throwing_trap_ms - /// - MovementSpeedBonusWhenThrowingTrapMs = 1817, - - /// - /// local_display_socketed_gems_get_trap_level - /// - LocalDisplaySocketedGemsGetTrapLevel = 1818, - - /// - /// poison_on_melee_critical_strike_% - /// - PoisonOnMeleeCriticalStrikePct = 1819, - - /// - /// shocks_reflected_to_self - /// - ShocksReflectedToSelf = 1820, - - /// - /// damage_+%_per_shock - /// - DamagePctPerShock = 1821, - - /// - /// movement_velocity_+%_per_shock - /// - MovementVelocityPctPerShock = 1822, - - /// - /// damage_+1%_per_X_strength - /// - Damage1PctPerXStrength = 1823, - - /// - /// physical_damage_reduction_rating_+1%_per_X_strength - /// - PhysicalDamageReductionRating1PctPerXStrength = 1824, - - /// - /// damage_+1%_per_X_strength_when_in_main_hand - /// - Damage1PctPerXStrengthWhenInMainHand = 1825, - - /// - /// physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand - /// - PhysicalDamageReductionRating1PctPerXStrengthWhenInOffHand = 1826, - - /// - /// local_display_socketed_gems_get_curse_reflection - /// - LocalDisplaySocketedGemsGetCurseReflection = 1827, - - /// - /// freeze_mine_cold_resistance_+_while_frozen - /// - FreezeMineColdResistanceWhileFrozen = 1828, - - /// - /// max_corrupted_blood_stacks - /// - MaxCorruptedBloodStacks = 1829, - - /// - /// current_corrupted_blood_stacks - /// - CurrentCorruptedBloodStacks = 1830, - - /// - /// physical_damage_taken_per_minute - /// - PhysicalDamageTakenPerMinute = 1831, - - /// - /// base_physical_damage_taken_per_minute_per_corrupted_blood_stack - /// - BasePhysicalDamageTakenPerMinutePerCorruptedBloodStack = 1832, - - /// - /// firestorm_drop_burning_ground_duration_ms - /// - FirestormDropBurningGroundDurationMs = 1833, - - /// - /// firestorm_base_area_of_effect_+% - /// - FirestormBaseAreaOfEffectPct = 1834, - - /// - /// Mine Duration increase - /// - MineDurationPct = 1835, - - /// - /// display_monster_spike_nova_on_death_text - /// - DisplayMonsterSpikeNovaOnDeathText = 1836, - - /// - /// display_monster_ice_spear_nova_on_death_text - /// - DisplayMonsterIceSpearNovaOnDeathText = 1837, - - /// - /// skill_unusable - /// - SkillUnusable = 1838, - - /// - /// cast_linked_spells_on_attack_crit_% - /// - CastLinkedSpellsOnAttackCritPct = 1839, - - /// - /// cast_linked_spells_on_melee_kill_% - /// - CastLinkedSpellsOnMeleeKillPct = 1840, - - /// - /// spell_uncastable_if_triggerable - /// - SpellUncastableIfTriggerable = 1841, - - /// - /// mine_detonation_is_instant - /// - MineDetonationIsInstant = 1842, - - /// - /// trap_damage_penetrates_%_elemental_resistance - /// - TrapDamagePenetratesPctElementalResistance = 1843, - - /// - /// mine_damage_penetrates_%_elemental_resistance - /// - MineDamagePenetratesPctElementalResistance = 1844, - - /// - /// traps_invulnerable_for_duration_ms - /// - TrapsInvulnerableForDurationMs = 1845, - - /// - /// mines_invulnerable_for_duration_ms - /// - MinesInvulnerableForDurationMs = 1846, - - /// - /// totem_elemental_resistance_% - /// - TotemElementalResistancePct = 1847, - - /// - /// totem_additional_physical_damage_reduction_% - /// - TotemAdditionalPhysicalDamageReductionPct = 1848, - - /// - /// Mine Detonation Radius increase - /// - MineDetonationRadiusPct = 1849, - - /// - /// totem_skill_cast_speed_+% - /// - TotemSkillCastSpeedPct = 1850, - - /// - /// totem_skill_attack_speed_+% - /// - TotemSkillAttackSpeedPct = 1851, - - /// - /// Mine Throwing Speed increase - /// - MineLayingSpeedPct = 1852, - - /// - /// cyclone_places_ground_ice - /// - CyclonePlacesGroundIce = 1853, - - /// - /// leap_slam_base_ground_fire_damage_to_deal_per_minute - /// - LeapSlamBaseGroundFireDamageToDealPerMinute = 1854, - - /// - /// projectiles_return_if_no_hit_object - /// - ProjectilesReturnIfNoHitObject = 1855, - - /// - /// cast_on_stunned_% - /// - CastOnStunnedPct = 1856, - - /// - /// cast_on_damage_taken_% - /// - CastOnDamageTakenPct = 1857, - - /// - /// cast_on_damage_taken_threshold - /// - CastOnDamageTakenThreshold = 1858, - - /// - /// deal_no_non_fire_damage - /// - DealNoNonFireDamage = 1859, - - /// - /// ice_nova_places_ground_ice - /// - IceNovaPlacesGroundIce = 1860, - - /// - /// shock_nova_places_X_ground_lightning_patches - /// - ShockNovaPlacesXGroundLightningPatches = 1861, - - /// - /// ignores_proximity_shield - /// - IgnoresProximityShield = 1862, - - /// - /// emerge_speed_+% - /// - EmergeSpeedPct = 1863, - - /// - /// animated_armour_replace_off_hand_weapon - /// - AnimatedArmourReplaceOffHandWeapon = 1864, - - /// - /// map_no_exiles - /// - MapNoExiles = 1865, - - /// - /// animate_item_maximum_level_requirement - /// - AnimateItemMaximumLevelRequirement = 1866, - - /// - /// phase_through_objects - /// - PhaseThroughObjects = 1867, - - /// - /// delete_on_death - /// - DeleteOnDeath = 1868, - - /// - /// corpse_consumption_mana_to_gain - /// - CorpseConsumptionManaToGain = 1869, - - /// - /// fixed_projectile_spread - /// - FixedProjectileSpread = 1870, - - /// - /// Fire And Cold Damage Resistance % - /// - FireAndColdDamageResistancePct = 1871, - - /// - /// Fire And Lightning Damage Resistance % - /// - FireAndLightningDamageResistancePct = 1872, - - /// - /// Cold And Lightning Damage Resistance % - /// - ColdAndLightningDamageResistancePct = 1873, - - /// - /// display_monster_mod_nemesis_test - /// - DisplayMonsterModNemesisTest = 1874, - - /// - /// base_damage_not_from_skill_user - /// - BaseDamageNotFromSkillUser = 1875, - - /// - /// map_rare_monsters_have_nemesis_mod - /// - MapRareMonstersHaveNemesisMod = 1876, - - /// - /// display_monster_has_firestorm_daemon - /// - DisplayMonsterHasFirestormDaemon = 1877, - - /// - /// monster_raises_after_death - /// - MonsterRaisesAfterDeath = 1878, - - /// - /// display_monster_is_apparition - /// - DisplayMonsterIsApparition = 1879, - - /// - /// monster_spawns_X_monsters_on_death - /// - MonsterSpawnsXMonstersOnDeath = 1880, - - /// - /// damage_+%_while_ignited - /// - DamagePctWhileIgnited = 1881, - - /// - /// physical_damage_reduction_rating_while_frozen - /// - PhysicalDamageReductionRatingWhileFrozen = 1882, - - /// - /// old_do_not_use_mana_leech_%_vs_shocked_enemies - /// - OldDoNotUseManaLeechPctVsShockedEnemies = 1883, - - /// - /// old_do_not_use_life_leech_%_vs_frozen_enemies - /// - OldDoNotUseLifeLeechPctVsFrozenEnemies = 1884, - - /// - /// damage_+%_vs_rare_monsters - /// - DamagePctVsRareMonsters = 1885, - - /// - /// damage_+%_vs_enemies_per_freeze_shock_ignite - /// - DamagePctVsEnemiesPerFreezeShockIgnite = 1886, - - /// - /// chance_to_freeze_shock_ignite_% - /// - ChanceToFreezeShockIgnitePct = 1887, - - /// - /// shrine_buff_effect_on_self_+% - /// - ShrineBuffEffectOnSelfPct = 1888, - - /// - /// shrine_effect_duration_+% - /// - ShrineEffectDurationPct = 1889, - - /// - /// local_unique_flask_cannot_recover_life_while_healing - /// - LocalUniqueFlaskCannotRecoverLifeWhileHealing = 1890, - - /// - /// local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration - /// - LocalUniqueFlaskRecoverPctMaximumLifeWhenEffectReachesDuration = 1891, - - /// - /// local_unique_flask_no_mana_cost_while_healing - /// - LocalUniqueFlaskNoManaCostWhileHealing = 1892, - - /// - /// shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy - /// - ShockXNearbyEnemiesFor2SOnKillingShockedEnemy = 1893, - - /// - /// ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy - /// - IgniteXNearbyEnemiesFor4SOnKillingIgnitedEnemy = 1894, - - /// - /// Additional chance to Ignite enemies - /// - ChanceToIgnitePct = 1895, - - /// - /// Additional chance to Shock enemies - /// - ChanceToShockPct = 1896, - - /// - /// Additional chance to Freeze enemies - /// - ChanceToFreezePct = 1897, - - /// - /// echoing_shrine_cast_speed_+%_final - /// - EchoingShrineCastSpeedPctFinal = 1898, - - /// - /// echoing_shrine_attack_speed_+%_final - /// - EchoingShrineAttackSpeedPctFinal = 1899, - - /// - /// display_monster_has_proximity_shield_daemon - /// - DisplayMonsterHasProximityShieldDaemon = 1900, - - /// - /// display_monster_has_summon_skeletons_daemon - /// - DisplayMonsterHasSummonSkeletonsDaemon = 1901, - - /// - /// display_monster_has_smoke_mine_daemon - /// - DisplayMonsterHasSmokeMineDaemon = 1902, - - /// - /// monster_drop_additional_unique_items - /// - MonsterDropAdditionalUniqueItems = 1903, - - /// - /// base_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack - /// - BaseCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 1904, - - /// - /// cannot_recover_life - /// - CannotRecoverLife = 1905, - - /// - /// recover_%_maximum_life_when_buff_reaches_duration - /// - RecoverPctMaximumLifeWhenBuffReachesDuration = 1906, - - /// - /// no_mana_cost - /// - NoManaCost = 1907, - - /// - /// gain_rare_monster_mods_on_kill_ms - /// - GainRareMonsterModsOnKillMs = 1908, - - /// - /// corpse_cannot_be_destroyed - /// - CorpseCannotBeDestroyed = 1909, - - /// - /// cannot_be_dominated - /// - CannotBeDominated = 1910, - - /// - /// lightning_warp_shocked_ground_duration_ms - /// - LightningWarpShockedGroundDurationMs = 1911, - - /// - /// physical_damage_%_to_add_as_random_element - /// - PhysicalDamagePctToAddAsRandomElement = 1912, - - /// - /// always_cause_elemental_status_ailment - /// - AlwaysCauseElementalStatusAilment = 1913, - - /// - /// reflect_projectiles_at_owner - /// - ReflectProjectilesAtOwner = 1914, - - /// - /// base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute - /// - BaseRighteousFirePctOfMaxEnergyShieldToDealToNearbyPerMinute = 1915, - - /// - /// base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute - /// - BaseNonlethalFireDamagePctOfMaximumEnergyShieldTakenPerMinute = 1916, - - /// - /// nemesis_transform_on_low_life - /// - NemesisTransformOnLowLife = 1917, - - /// - /// attack_and_cast_speed_+% - /// - AttackAndCastSpeedPct = 1918, - - /// - /// cleave_damage_+%_final_while_dual_wielding - /// - CleaveDamagePctFinalWhileDualWielding = 1919, - - /// - /// monster_level_scale_maximum_mana_and_mana_cost_+%_final - /// - MonsterLevelScaleMaximumManaAndManaCostPctFinal = 1920, - - /// - /// grant_actor_scale_+%_to_aura_owner_on_death - /// - GrantActorScalePctToAuraOwnerOnDeath = 1921, - - /// - /// grant_attack_speed_+%_to_aura_owner_on_death - /// - GrantAttackSpeedPctToAuraOwnerOnDeath = 1922, - - /// - /// grant_cast_speed_+%_to_aura_owner_on_death - /// - GrantCastSpeedPctToAuraOwnerOnDeath = 1923, - - /// - /// grant_damage_reduction_%_to_aura_owner_on_death - /// - GrantDamageReductionPctToAuraOwnerOnDeath = 1924, - - /// - /// random_curse_on_hit_% - /// - RandomCurseOnHitPct = 1925, - - /// - /// random_curses_include_silence - /// - RandomCursesIncludeSilence = 1926, - - /// - /// is_twinned_unique_boss - /// - IsTwinnedUniqueBoss = 1927, - - /// - /// remove_flask_effects_on_hit_% - /// - RemoveFlaskEffectsOnHitPct = 1928, - - /// - /// remove_charges_on_hit_% - /// - RemoveChargesOnHitPct = 1929, - - /// - /// monster_casts_arctic_breath_text - /// - MonsterCastsArcticBreathText = 1930, - - /// - /// cast_on_death_damage_+%_final_while_dead - /// - CastOnDeathDamagePctFinalWhileDead = 1931, - - /// - /// cast_on_damage_taken_damage_+%_final - /// - CastOnDamageTakenDamagePctFinal = 1932, - - /// - /// life_gained_on_spell_hit - /// - LifeGainedOnSpellHit = 1933, - - /// - /// base_attacks_poison - /// - BaseAttacksPoison = 1934, - - /// - /// active_skill_attack_speed_+%_final - /// - ActiveSkillAttackSpeedPctFinal = 1935, - - /// - /// infinite_skill_effect_duration - /// - InfiniteSkillEffectDuration = 1936, - - /// - /// physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked - /// - PhysicalDamageReductionRatingPctWhileNotIgnitedFrozenShocked = 1937, - - /// - /// max_corrupted_blood_rain_stacks - /// - MaxCorruptedBloodRainStacks = 1938, - - /// - /// current_corrupted_blood_rain_stacks - /// - CurrentCorruptedBloodRainStacks = 1939, - - /// - /// base_physical_damage_taken_per_minute_per_corrupted_blood_rain_stack - /// - BasePhysicalDamageTakenPerMinutePerCorruptedBloodRainStack = 1940, - - /// - /// base_damage_removed_from_mana_before_life_% - /// - BaseDamageRemovedFromManaBeforeLifePct = 1941, - - /// - /// keystone_mana_shield - /// - KeystoneManaShield = 1942, - - /// - /// actor_scale_+% - /// - ActorScalePct = 1943, - - /// - /// capped_actor_scale_+% - /// - CappedActorScalePct = 1944, - - /// - /// cannot_stun - /// - CannotStun = 1945, - - /// - /// is_daemon - /// - IsDaemon = 1946, - - /// - /// disable_light - /// - DisableLight = 1947, - - /// - /// Base Chance To Dodge % - /// - BaseChanceToDodgePct = 1948, - - /// - /// base_chance_to_dodge_spells_% - /// - BaseChanceToDodgeSpellsPct = 1949, - - /// - /// map_allow_shrines - /// - MapAllowShrines = 1950, - - /// - /// aura_effect_+% - /// - AuraEffectPct = 1951, - - /// - /// display_monster_uses_far_shot_text - /// - DisplayMonsterUsesFarShotText = 1952, - - /// - /// monster_additional_rarity_of_dropped_items_in_merciless_+% - /// - MonsterAdditionalRarityOfDroppedItemsInMercilessPct = 1953, - - /// - /// monster_additional_quantity_of_dropped_items_in_merciless_+% - /// - MonsterAdditionalQuantityOfDroppedItemsInMercilessPct = 1954, - - /// - /// mortal_conviction_mana_reservation_+%_final - /// - MortalConvictionManaReservationPctFinal = 1955, - - /// - /// mana_reservation_+% - /// - ManaReservationPct = 1956, - - /// - /// additional_player_bonus_maximum_energy_shield_+%_final - /// - AdditionalPlayerBonusMaximumEnergyShieldPctFinal = 1957, - - /// - /// additional_player_bonus_monster_slain_flask_charges_granted_+%_final - /// - AdditionalPlayerBonusMonsterSlainFlaskChargesGrantedPctFinal = 1958, - - /// - /// display_monster_uses_suppressing_fire_text - /// - DisplayMonsterUsesSuppressingFireText = 1959, - - /// - /// display_monster_casts_devouring_totem_skill_text - /// - DisplayMonsterCastsDevouringTotemSkillText = 1960, - - /// - /// monster_additional_quantity_of_dropped_items_in_cruel_+% - /// - MonsterAdditionalQuantityOfDroppedItemsInCruelPct = 1961, - - /// - /// monster_additional_rarity_of_dropped_items_in_cruel_+% - /// - MonsterAdditionalRarityOfDroppedItemsInCruelPct = 1962, - - /// - /// supported_active_skill_gem_quality_% - /// - SupportedActiveSkillGemQualityPct = 1963, - - /// - /// map_rarity - /// - MapRarity = 1964, - - /// - /// animate_guardian_last_known_life - /// - AnimateGuardianLastKnownLife = 1965, - - /// - /// spell_only_castable_on_death - /// - SpellOnlyCastableOnDeath = 1966, - - /// - /// local_support_gem_max_skill_level_requirement_to_support - /// - LocalSupportGemMaxSkillLevelRequirementToSupport = 1967, - - /// - /// display_monster_casts_lightning_nova_text - /// - DisplayMonsterCastsLightningNovaText = 1968, - - /// - /// physical_damage_to_deal_per_minute - /// - PhysicalDamageToDealPerMinute = 1969, - - /// - /// base_physical_damage_to_deal_per_minute - /// - BasePhysicalDamageToDealPerMinute = 1970, - - /// - /// fire_damage_to_deal_per_minute - /// - FireDamageToDealPerMinute = 1971, - - /// - /// cold_damage_to_deal_per_minute - /// - ColdDamageToDealPerMinute = 1972, - - /// - /// lightning_damage_to_deal_per_minute - /// - LightningDamageToDealPerMinute = 1973, - - /// - /// base_lightning_damage_to_deal_per_minute - /// - BaseLightningDamageToDealPerMinute = 1974, - - /// - /// chaos_damage_to_deal_per_minute - /// - ChaosDamageToDealPerMinute = 1975, - - /// - /// base_chaos_damage_to_deal_per_minute - /// - BaseChaosDamageToDealPerMinute = 1976, - - /// - /// base_chaos_damage_%_of_maximum_life_to_deal_per_minute - /// - BaseChaosDamagePctOfMaximumLifeToDealPerMinute = 1977, - - /// - /// base_chaos_damage_taken_per_minute_per_viper_strike_orb - /// - BaseChaosDamageTakenPerMinutePerViperStrikeOrb = 1978, - - /// - /// combined_all_damage_over_time_+% - /// - CombinedAllDamageOverTimePct = 1979, - - /// - /// combined_all_damage_over_time_+%_final - /// - CombinedAllDamageOverTimePctFinal = 1980, - - /// - /// combined_physical_damage_over_time_+% - /// - CombinedPhysicalDamageOverTimePct = 1981, - - /// - /// combined_physical_damage_over_time_+%_final - /// - CombinedPhysicalDamageOverTimePctFinal = 1982, - - /// - /// combined_elemental_damage_over_time_+% - /// - CombinedElementalDamageOverTimePct = 1983, - - /// - /// combined_elemental_damage_over_time_+%_final - /// - CombinedElementalDamageOverTimePctFinal = 1984, - - /// - /// combined_fire_damage_over_time_+% - /// - CombinedFireDamageOverTimePct = 1985, - - /// - /// combined_fire_damage_over_time_+%_final - /// - CombinedFireDamageOverTimePctFinal = 1986, - - /// - /// combined_cold_damage_over_time_+% - /// - CombinedColdDamageOverTimePct = 1987, - - /// - /// combined_cold_damage_over_time_+%_final - /// - CombinedColdDamageOverTimePctFinal = 1988, - - /// - /// combined_lightning_damage_over_time_+% - /// - CombinedLightningDamageOverTimePct = 1989, - - /// - /// combined_lightning_damage_over_time_+%_final - /// - CombinedLightningDamageOverTimePctFinal = 1990, - - /// - /// combined_chaos_damage_over_time_+% - /// - CombinedChaosDamageOverTimePct = 1991, - - /// - /// combined_chaos_damage_over_time_+%_final - /// - CombinedChaosDamageOverTimePctFinal = 1992, - - /// - /// damage_over_time_+% - /// - DamageOverTimePct = 1993, - - /// - /// fire_damage_taken_per_minute - /// - FireDamageTakenPerMinute = 1994, - - /// - /// base_fire_damage_taken_per_minute - /// - BaseFireDamageTakenPerMinute = 1995, - - /// - /// cold_damage_taken_per_minute - /// - ColdDamageTakenPerMinute = 1996, - - /// - /// base_cold_damage_taken_per_minute - /// - BaseColdDamageTakenPerMinute = 1997, - - /// - /// lightning_damage_taken_per_minute - /// - LightningDamageTakenPerMinute = 1998, - - /// - /// base_lightning_damage_taken_per_minute - /// - BaseLightningDamageTakenPerMinute = 1999, - - /// - /// deal_no_damage_over_time - /// - DealNoDamageOverTime = 2000, - - /// - /// base_deal_no_damage_over_time - /// - BaseDealNoDamageOverTime = 2001, - - /// - /// deal_no_physical_damage_over_time - /// - DealNoPhysicalDamageOverTime = 2002, - - /// - /// deal_no_fire_damage_over_time - /// - DealNoFireDamageOverTime = 2003, - - /// - /// deal_no_cold_damage_over_time - /// - DealNoColdDamageOverTime = 2004, - - /// - /// deal_no_lightning_damage_over_time - /// - DealNoLightningDamageOverTime = 2005, - - /// - /// deal_no_chaos_damage_over_time - /// - DealNoChaosDamageOverTime = 2006, - - /// - /// unique_critical_strike_chance_+%_final - /// - UniqueCriticalStrikeChancePctFinal = 2007, - - /// - /// map_ground_lightning - /// - MapGroundLightning = 2008, - - /// - /// add_endurance_charge_on_kill - /// - AddEnduranceChargeOnKill = 2009, - - /// - /// unique_lose_all_endurance_charges_when_hit - /// - UniqueLoseAllEnduranceChargesWhenHit = 2010, - - /// - /// unique_gain_onslaught_when_hit_duration_ms - /// - UniqueGainOnslaughtWhenHitDurationMs = 2011, - - /// - /// chance_to_counter_strike_when_hit_% - /// - ChanceToCounterStrikeWhenHitPct = 2012, - - /// - /// hundred_times_average_damage_per_hit - /// - HundredTimesAverageDamagePerHit = 2013, - - /// - /// hundred_times_average_damage_per_skill_use - /// - HundredTimesAverageDamagePerSkillUse = 2014, - - /// - /// base_skill_show_average_damage_instead_of_dps - /// - BaseSkillShowAverageDamageInsteadOfDps = 2015, - - /// - /// display_hundred_times_damage_per_skill_use - /// - DisplayHundredTimesDamagePerSkillUse = 2016, - - /// - /// base_monster_will_be_deleted_on_death - /// - BaseMonsterWillBeDeletedOnDeath = 2017, - - /// - /// monster_will_be_deleted_on_death - /// - MonsterWillBeDeletedOnDeath = 2018, - - /// - /// charged_blast_spell_damage_+%_final_per_stack - /// - ChargedBlastSpellDamagePctFinalPerStack = 2019, - - /// - /// from_code_active_skill_spell_damage_+%_final - /// - FromCodeActiveSkillSpellDamagePctFinal = 2020, - - /// - /// leech_X_life_per_spell_cast - /// - LeechXLifePerSpellCast = 2021, - - /// - /// zero_elemental_resistance - /// - ZeroElementalResistance = 2022, - - /// - /// global_defences_+% - /// - GlobalDefencesPct = 2023, - - /// - /// minimum_lightning_damage_to_return_on_block - /// - MinimumLightningDamageToReturnOnBlock = 2024, - - /// - /// maximum_lightning_damage_to_return_on_block - /// - MaximumLightningDamageToReturnOnBlock = 2025, - - /// - /// leap_slam_spawn_X_zombies_on_impact - /// - LeapSlamSpawnXZombiesOnImpact = 2026, - - /// - /// culling_strike_on_burning_enemies - /// - CullingStrikeOnBurningEnemies = 2027, - - /// - /// gain_frenzy_charge_if_attack_ignites - /// - GainFrenzyChargeIfAttackIgnites = 2028, - - /// - /// map_monsters_are_immune_to_curses - /// - MapMonstersAreImmuneToCurses = 2029, - - /// - /// map_packs_are_animals - /// - MapPacksAreAnimals = 2030, - - /// - /// map_packs_are_demons - /// - MapPacksAreDemons = 2031, - - /// - /// map_packs_are_humanoids - /// - MapPacksAreHumanoids = 2032, - - /// - /// monster_drop_higher_level_gear - /// - MonsterDropHigherLevelGear = 2033, - - /// - /// regenerate_X_life_over_1_second_on_cast - /// - RegenerateXLifeOver1SecondOnCast = 2034, - - /// - /// map_monsters_gain_x_power_charges_every_20_seconds - /// - MapMonstersGainXPowerChargesEvery20Seconds = 2035, - - /// - /// map_monsters_gain_x_endurance_charges_every_20_seconds - /// - MapMonstersGainXEnduranceChargesEvery20Seconds = 2036, - - /// - /// damage_+%_per_10_levels - /// - DamagePctPer10Levels = 2037, - - /// - /// monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute - /// - MonsterCausticCloudOnDeathPctMaxDamageToDealPerMinute = 2038, - - /// - /// monster_caustic_cloud_on_death_base_area_of_effect_radius - /// - MonsterCausticCloudOnDeathBaseAreaOfEffectRadius = 2039, - - /// - /// monster_caustic_cloud_on_death_duration_ms - /// - MonsterCausticCloudOnDeathDurationMs = 2040, - - /// - /// chaos_damage_taken_+ - /// - ChaosDamageTaken = 2041, - - /// - /// local_socketed_curse_gem_level_+ - /// - LocalSocketedCurseGemLevel = 2042, - - /// - /// base_curse_duration_+% - /// - BaseCurseDurationPct = 2043, - - /// - /// curse_duration_+% - /// - CurseDurationPct = 2044, - - /// - /// curse_effect_duration - /// - CurseEffectDuration = 2045, - - /// - /// self_curse_duration_+% - /// - SelfCurseDurationPct = 2046, - - /// - /// local_display_socketed_gems_get_flee_level - /// - LocalDisplaySocketedGemsGetFleeLevel = 2047, - - /// - /// dexterity_+% - /// - DexterityPct = 2048, - - /// - /// strength_+% - /// - StrengthPct = 2049, - - /// - /// intelligence_+% - /// - IntelligencePct = 2050, - - /// - /// display_map_final_boss_drops_higher_level_gear - /// - DisplayMapFinalBossDropsHigherLevelGear = 2051, - - /// - /// chaos_resistance_+_while_using_flask - /// - ChaosResistanceWhileUsingFlask = 2052, - - /// - /// minimum_physical_damage_to_reflect_to_self_on_attack - /// - MinimumPhysicalDamageToReflectToSelfOnAttack = 2053, - - /// - /// maximum_physical_damage_to_reflect_to_self_on_attack - /// - MaximumPhysicalDamageToReflectToSelfOnAttack = 2054, - - /// - /// is_bleeding - /// - IsBleeding = 2055, - - /// - /// damage_+%_vs_bleeding_enemies - /// - DamagePctVsBleedingEnemies = 2056, - - /// - /// unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge - /// - UniqueGainOnslaughtWhenHitDurationMsPerEnduranceCharge = 2057, - - /// - /// fire_damage_taken_+% - /// - FireDamageTakenPct = 2058, - - /// - /// crits_have_culling_strike - /// - CritsHaveCullingStrike = 2059, - - /// - /// support_projectile_attack_physical_damage_+%_final - /// - SupportProjectileAttackPhysicalDamagePctFinal = 2060, - - /// - /// support_projectile_attack_speed_+%_final - /// - SupportProjectileAttackSpeedPctFinal = 2061, - - /// - /// supported_active_skill_gem_expereince_gained_+% - /// - SupportedActiveSkillGemExpereinceGainedPct = 2062, - - /// - /// flame_whip_damage_+%_final_vs_burning_enemies - /// - FlameWhipDamagePctFinalVsBurningEnemies = 2063, - - /// - /// unique_spread_poison_to_nearby_enemies_on_kill - /// - UniqueSpreadPoisonToNearbyEnemiesOnKill = 2064, - - /// - /// unique_spread_poison_to_nearby_allies_as_regeneration_on_kill - /// - UniqueSpreadPoisonToNearbyAlliesAsRegenerationOnKill = 2065, - - /// - /// uncapped_fire_damage_resistance_% - /// - UncappedFireDamageResistancePct = 2066, - - /// - /// uncapped_cold_damage_resistance_% - /// - UncappedColdDamageResistancePct = 2067, - - /// - /// uncapped_lightning_damage_resistance_% - /// - UncappedLightningDamageResistancePct = 2068, - - /// - /// uncapped_chaos_damage_resistance_% - /// - UncappedChaosDamageResistancePct = 2069, - - /// - /// local_ring_duplicate_other_ring - /// - LocalRingDuplicateOtherRing = 2070, - - /// - /// duplicate_ring_slot_1 - /// - DuplicateRingSlot1 = 2071, - - /// - /// duplicate_ring_slot_2 - /// - DuplicateRingSlot2 = 2072, - - /// - /// unique_fire_damage_shocks - /// - UniqueFireDamageShocks = 2073, - - /// - /// unique_cold_damage_ignites - /// - UniqueColdDamageIgnites = 2074, - - /// - /// unique_lightning_damage_freezes - /// - UniqueLightningDamageFreezes = 2075, - - /// - /// fire_damage_can_shock - /// - FireDamageCanShock = 2076, - - /// - /// cold_damage_can_ignite - /// - ColdDamageCanIgnite = 2077, - - /// - /// lightning_damage_can_freeze - /// - LightningDamageCanFreeze = 2078, - - /// - /// fire_damage_cannot_ignite - /// - FireDamageCannotIgnite = 2079, - - /// - /// cold_damage_cannot_freeze - /// - ColdDamageCannotFreeze = 2080, - - /// - /// lightning_damage_cannot_shock - /// - LightningDamageCannotShock = 2081, - - /// - /// can_catch_exotic_fish - /// - CanCatchExoticFish = 2082, - - /// - /// transfer_curses_to_X_nearby_enemies_on_kill - /// - TransferCursesToXNearbyEnemiesOnKill = 2083, - - /// - /// freeze_as_though_dealt_damage_+% - /// - FreezeAsThoughDealtDamagePct = 2084, - - /// - /// chill_prevention_ms_when_chilled - /// - ChillPreventionMsWhenChilled = 2085, - - /// - /// freeze_prevention_ms_when_frozen - /// - FreezePreventionMsWhenFrozen = 2086, - - /// - /// ignite_prevention_ms_when_ignited - /// - IgnitePreventionMsWhenIgnited = 2087, - - /// - /// shock_prevention_ms_when_shocked - /// - ShockPreventionMsWhenShocked = 2088, - - /// - /// grant_X_frenzy_charges_to_nearby_allies_on_death - /// - GrantXFrenzyChargesToNearbyAlliesOnDeath = 2089, - - /// - /// unique_gain_power_charge_on_non_crit - /// - UniqueGainPowerChargeOnNonCrit = 2090, - - /// - /// unique_lose_all_power_charges_on_crit - /// - UniqueLoseAllPowerChargesOnCrit = 2091, - - /// - /// curse_area_of_effect_+% - /// - CurseAreaOfEffectPct = 2092, - - /// - /// support_spell_totem_cast_speed_+%_final - /// - SupportSpellTotemCastSpeedPctFinal = 2093, - - /// - /// support_attack_totem_attack_speed_+%_final - /// - SupportAttackTotemAttackSpeedPctFinal = 2094, - - /// - /// map_non_unique_monsters_spawn_X_monsters_on_death - /// - MapNonUniqueMonstersSpawnXMonstersOnDeath = 2095, - - /// - /// local_unique_attacks_cast_socketed_lightning_spells_% - /// - LocalUniqueAttacksCastSocketedLightningSpellsPct = 2096, - - /// - /// main_hand_local_unique_attacks_cast_socketed_lightning_spells_% - /// - MainHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2097, - - /// - /// off_hand_local_unique_attacks_cast_socketed_lightning_spells_% - /// - OffHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2098, - - /// - /// local_display_aura_curse_effect_on_self_+% - /// - LocalDisplayAuraCurseEffectOnSelfPct = 2099, - - /// - /// flask_minion_heal_% - /// - FlaskMinionHealPct = 2100, - - /// - /// minion_block_% - /// - MinionBlockPct = 2101, - - /// - /// minion_physical_damage_reduction_rating - /// - MinionPhysicalDamageReductionRating = 2102, - - /// - /// untargetable_by_monster_ai - /// - UntargetableByMonsterAi = 2103, - - /// - /// virtual_untargetable_by_monster_ai - /// - VirtualUntargetableByMonsterAi = 2104, - - /// - /// untargetable_by_enemy_monster_ai - /// - UntargetableByEnemyMonsterAi = 2105, - - /// - /// desecrate_number_of_corpses_to_create - /// - DesecrateNumberOfCorpsesToCreate = 2106, - - /// - /// local_display_aura_damage_+%_allies_only - /// - LocalDisplayAuraDamagePctAlliesOnly = 2107, - - /// - /// map_invasion_monster_packs - /// - MapInvasionMonsterPacks = 2108, - - /// - /// base_spell_block_% - /// - BaseSpellBlockPct = 2109, - - /// - /// minion_attack_speed_+% - /// - MinionAttackSpeedPct = 2110, - - /// - /// minion_cast_speed_+% - /// - MinionCastSpeedPct = 2111, - - /// - /// old_do_not_use_minion_life_leech_from_any_damage_permyriad - /// - OldDoNotUseMinionLifeLeechFromAnyDamagePermyriad = 2112, - - /// - /// minion_life_regeneration_rate_per_minute_% - /// - MinionLifeRegenerationRatePerMinutePct = 2113, - - /// - /// minion_elemental_resistance_% - /// - MinionElementalResistancePct = 2114, - - /// - /// minion_chaos_resistance_% - /// - MinionChaosResistancePct = 2115, - - /// - /// skill_show_average_damage_instead_of_dps - /// - SkillShowAverageDamageInsteadOfDps = 2116, - - /// - /// offering_skill_effect_duration_per_corpse - /// - OfferingSkillEffectDurationPerCorpse = 2117, - - /// - /// unholy_might_on_kill_duration_ms - /// - UnholyMightOnKillDurationMs = 2118, - - /// - /// minion_unholy_might_on_kill_duration_ms - /// - MinionUnholyMightOnKillDurationMs = 2119, - - /// - /// chest_delay_drops_until_daemons_finish - /// - ChestDelayDropsUntilDaemonsFinish = 2120, - - /// - /// base_number_of_raging_spirits_allowed - /// - BaseNumberOfRagingSpiritsAllowed = 2121, - - /// - /// number_of_raging_spirits_allowed - /// - NumberOfRagingSpiritsAllowed = 2122, - - /// - /// chest_play_warning_sound - /// - ChestPlayWarningSound = 2123, - - /// - /// chest_drop_additional_unqiue_items - /// - ChestDropAdditionalUnqiueItems = 2124, - - /// - /// upheaval_number_of_spikes - /// - UpheavalNumberOfSpikes = 2125, - - /// - /// chest_display_summons_skeletons - /// - ChestDisplaySummonsSkeletons = 2126, - - /// - /// chest_display_ice_nova - /// - ChestDisplayIceNova = 2127, - - /// - /// chest_display_freeze - /// - ChestDisplayFreeze = 2128, - - /// - /// cyclone_places_ground_desecration_chaos_damage_per_minute - /// - CyclonePlacesGroundDesecrationChaosDamagePerMinute = 2129, - - /// - /// firestorm_drop_ground_ice_duration_ms - /// - FirestormDropGroundIceDurationMs = 2130, - - /// - /// vaal_burning_arrow_explode_on_hit - /// - VaalBurningArrowExplodeOnHit = 2131, - - /// - /// molten_shell_explode_each_hit - /// - MoltenShellExplodeEachHit = 2132, - - /// - /// desecrate_corpse_level - /// - DesecrateCorpseLevel = 2133, - - /// - /// lightning_warp_remove_delay - /// - LightningWarpRemoveDelay = 2134, - - /// - /// immortal_call_prevent_all_damage - /// - ImmortalCallPreventAllDamage = 2135, - - /// - /// power_siphon_fire_at_all_targets - /// - PowerSiphonFireAtAllTargets = 2136, - - /// - /// rain_of_arrows_place_shocking_ground_duration_ms - /// - RainOfArrowsPlaceShockingGroundDurationMs = 2137, - - /// - /// leap_slam_base_caustic_cloud_damage_to_deal_per_minute - /// - LeapSlamBaseCausticCloudDamageToDealPerMinute = 2138, - - /// - /// base_number_of_projectiles_in_spiral_nova - /// - BaseNumberOfProjectilesInSpiralNova = 2139, - - /// - /// projectile_spiral_nova_time_ms - /// - ProjectileSpiralNovaTimeMs = 2140, - - /// - /// projectile_spiral_nova_angle - /// - ProjectileSpiralNovaAngle = 2141, - - /// - /// kiweth_consume_leech_%_max_life - /// - KiwethConsumeLeechPctMaxLife = 2142, - - /// - /// ice_nova_number_of_repeats - /// - IceNovaNumberOfRepeats = 2143, - - /// - /// ice_nova_radius_+%_per_repeat - /// - IceNovaRadiusPctPerRepeat = 2144, - - /// - /// local_display_socketed_gems_have_iron_will - /// - LocalDisplaySocketedGemsHaveIronWill = 2145, - - /// - /// local_display_socketed_gems_chain_X_additional_times - /// - LocalDisplaySocketedGemsChainXAdditionalTimes = 2146, - - /// - /// old_do_not_use_base_life_leech_from_physical_damage_permyriad - /// - OldDoNotUseBaseLifeLeechFromPhysicalDamagePermyriad = 2147, - - /// - /// old_do_not_use_base_life_leech_from_fire_damage_permyriad - /// - OldDoNotUseBaseLifeLeechFromFireDamagePermyriad = 2148, - - /// - /// old_do_not_use_base_life_leech_from_cold_damage_permyriad - /// - OldDoNotUseBaseLifeLeechFromColdDamagePermyriad = 2149, - - /// - /// old_do_not_use_base_life_leech_from_lightning_damage_permyriad - /// - OldDoNotUseBaseLifeLeechFromLightningDamagePermyriad = 2150, - - /// - /// base_life_leech_from_chaos_damage_permyriad - /// - BaseLifeLeechFromChaosDamagePermyriad = 2151, - - /// - /// base_mana_leech_from_physical_damage_permyriad - /// - BaseManaLeechFromPhysicalDamagePermyriad = 2152, - - /// - /// base_mana_leech_from_fire_damage_permyriad - /// - BaseManaLeechFromFireDamagePermyriad = 2153, - - /// - /// base_mana_leech_from_cold_damage_permyriad - /// - BaseManaLeechFromColdDamagePermyriad = 2154, - - /// - /// old_do_not_use_base_mana_leech_from_lightning_damage_permyriad - /// - OldDoNotUseBaseManaLeechFromLightningDamagePermyriad = 2155, - - /// - /// base_mana_leech_from_chaos_damage_permyriad - /// - BaseManaLeechFromChaosDamagePermyriad = 2156, - - /// - /// base_leech_is_instant_on_critical - /// - BaseLeechIsInstantOnCritical = 2157, - - /// - /// local_socketed_vaal_gem_level_+ - /// - LocalSocketedVaalGemLevel = 2158, - - /// - /// elemental_damage_%_to_add_as_chaos - /// - ElementalDamagePctToAddAsChaos = 2159, - - /// - /// chance_to_ignite_%_while_using_flask - /// - ChanceToIgnitePctWhileUsingFlask = 2160, - - /// - /// chance_to_freeze_%_while_using_flask - /// - ChanceToFreezePctWhileUsingFlask = 2161, - - /// - /// chance_to_shock_%_while_using_flask - /// - ChanceToShockPctWhileUsingFlask = 2162, - - /// - /// stun_threshold_reduction_+%_while_using_flask - /// - StunThresholdReductionPctWhileUsingFlask = 2163, - - /// - /// local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing - /// - LocalUniqueFlaskPhysicalDamagePctToAddAsChaosWhileHealing = 2164, - - /// - /// local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing - /// - LocalUniqueFlaskElementalDamagePctToAddAsChaosWhileHealing = 2165, - - /// - /// old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing - /// - OldDoNotUseLocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 2166, - - /// - /// local_display_socketed_spells_repeat_count - /// - LocalDisplaySocketedSpellsRepeatCount = 2167, - - /// - /// map_ambush_chests - /// - MapAmbushChests = 2168, - - /// - /// atziri_do_not_gain_skill_charges - /// - AtziriDoNotGainSkillCharges = 2169, - - /// - /// chest_hidden_item_quantity_+% - /// - ChestHiddenItemQuantityPct = 2170, - - /// - /// chest_hidden_item_rarity_+% - /// - ChestHiddenItemRarityPct = 2171, - - /// - /// monster_drop_vaal_fragment_chance - /// - MonsterDropVaalFragmentChance = 2172, - - /// - /// summoned_monster_rarity - /// - SummonedMonsterRarity = 2173, - - /// - /// number_of_monsters_to_summon - /// - NumberOfMonstersToSummon = 2174, - - /// - /// chest_gems_drop_with_experience - /// - ChestGemsDropWithExperience = 2175, - - /// - /// chest_drops_additional_utility_flasks - /// - ChestDropsAdditionalUtilityFlasks = 2176, - - /// - /// chest_items_drop_identified - /// - ChestItemsDropIdentified = 2177, - - /// - /// chest_drop_additional_normal_items_up_to - /// - ChestDropAdditionalNormalItemsUpTo = 2178, - - /// - /// chest_drop_additional_magic_items_up_to - /// - ChestDropAdditionalMagicItemsUpTo = 2179, - - /// - /// chest_drop_additional_rare_items_up_to - /// - ChestDropAdditionalRareItemsUpTo = 2180, - - /// - /// chest_dropped_items_have_quality_% - /// - ChestDroppedItemsHaveQualityPct = 2181, - - /// - /// dropped_items_have_additional_sockets - /// - DroppedItemsHaveAdditionalSockets = 2182, - - /// - /// dropped_items_are_fully_linked - /// - DroppedItemsAreFullyLinked = 2183, - - /// - /// chest_dropped_item_level_+ - /// - ChestDroppedItemLevel = 2184, - - /// - /// dropped_items_are_duplicated - /// - DroppedItemsAreDuplicated = 2185, - - /// - /// monster_unlock_chests_on_death - /// - MonsterUnlockChestsOnDeath = 2186, - - /// - /// local_display_socketed_gems_mana_cost_-% - /// - LocalDisplaySocketedGemsManaCostPct = 2187, - - /// - /// chest_spawn_rogue_exiles - /// - ChestSpawnRogueExiles = 2188, - - /// - /// chest_display_revive_nearby_monsters - /// - ChestDisplayReviveNearbyMonsters = 2189, - - /// - /// chest_display_spawns_monsters_continuously - /// - ChestDisplaySpawnsMonstersContinuously = 2190, - - /// - /// chest_display_explodes_corpses - /// - ChestDisplayExplodesCorpses = 2191, - - /// - /// chest_camoflaged - /// - ChestCamoflaged = 2192, - - /// - /// chest_display_cast_random_curse - /// - ChestDisplayCastRandomCurse = 2193, - - /// - /// chest_display_ignite - /// - ChestDisplayIgnite = 2194, - - /// - /// chest_display_fire_storm - /// - ChestDisplayFireStorm = 2195, - - /// - /// chest_display_caustic_clouds - /// - ChestDisplayCausticClouds = 2196, - - /// - /// chest_display_explosion - /// - ChestDisplayExplosion = 2197, - - /// - /// chest_drops_only_hybrid_flasks - /// - ChestDropsOnlyHybridFlasks = 2198, - - /// - /// chest_drops_only_support_gems - /// - ChestDropsOnlySupportGems = 2199, - - /// - /// chest_drops_extra_vaal_gems - /// - ChestDropsExtraVaalGems = 2200, - - /// - /// firestorm_drop_ground_shock_duration_ms - /// - FirestormDropGroundShockDurationMs = 2201, - - /// - /// detonate_dead_chain_explode - /// - DetonateDeadChainExplode = 2202, - - /// - /// corrupted_blood_cleave_stacks_to_add - /// - CorruptedBloodCleaveStacksToAdd = 2203, - - /// - /// desecrated_ground_art_variation - /// - DesecratedGroundArtVariation = 2204, - - /// - /// kiweth_projectile_spawn_kiweth - /// - KiwethProjectileSpawnKiweth = 2205, - - /// - /// rain_of_arrows_pin - /// - RainOfArrowsPin = 2206, - - /// - /// onslaught_on_vaal_skill_use_duration_ms - /// - OnslaughtOnVaalSkillUseDurationMs = 2207, - - /// - /// cold_snap_ground_ice - /// - ColdSnapGroundIce = 2208, - - /// - /// num_ghost_monkeys_to_summon - /// - NumGhostMonkeysToSummon = 2209, - - /// - /// smoke_mine_spawn_X_snakes_on_teleport - /// - SmokeMineSpawnXSnakesOnTeleport = 2210, - - /// - /// num_sandspitters_to_summon - /// - NumSandspittersToSummon = 2211, - - /// - /// vaal_lightning_strike_beam_damage_+%_final - /// - VaalLightningStrikeBeamDamagePctFinal = 2212, - - /// - /// atziri_lightning_charge_requirement_- - /// - AtziriLightningChargeRequirement = 2213, - - /// - /// atziri_fire_charge_requirement_- - /// - AtziriFireChargeRequirement = 2214, - - /// - /// atziri_physical_charge_requirement_- - /// - AtziriPhysicalChargeRequirement = 2215, - - /// - /// life_leech_from_physical_damage_permyriad - /// - LifeLeechFromPhysicalDamagePermyriad = 2216, - - /// - /// life_leech_from_fire_damage_permyriad - /// - LifeLeechFromFireDamagePermyriad = 2217, - - /// - /// life_leech_from_cold_damage_permyriad - /// - LifeLeechFromColdDamagePermyriad = 2218, - - /// - /// life_leech_from_lightning_damage_permyriad - /// - LifeLeechFromLightningDamagePermyriad = 2219, - - /// - /// life_leech_from_chaos_damage_permyriad - /// - LifeLeechFromChaosDamagePermyriad = 2220, - - /// - /// mana_leech_from_physical_damage_permyriad - /// - ManaLeechFromPhysicalDamagePermyriad = 2221, - - /// - /// mana_leech_from_fire_damage_permyriad - /// - ManaLeechFromFireDamagePermyriad = 2222, - - /// - /// mana_leech_from_cold_damage_permyriad - /// - ManaLeechFromColdDamagePermyriad = 2223, - - /// - /// mana_leech_from_lightning_damage_permyriad - /// - ManaLeechFromLightningDamagePermyriad = 2224, - - /// - /// mana_leech_from_chaos_damage_permyriad - /// - ManaLeechFromChaosDamagePermyriad = 2225, - - /// - /// old_do_not_use_base_life_leech_from_elemental_damage_permyriad - /// - OldDoNotUseBaseLifeLeechFromElementalDamagePermyriad = 2226, - - /// - /// base_mana_leech_from_elemental_damage_permyriad - /// - BaseManaLeechFromElementalDamagePermyriad = 2227, - - /// - /// attack_minimum_added_physical_damage_with_bow - /// - AttackMinimumAddedPhysicalDamageWithBow = 2228, - - /// - /// attack_maximum_added_physical_damage_with_bow - /// - AttackMaximumAddedPhysicalDamageWithBow = 2229, - - /// - /// attack_minimum_added_fire_damage_with_bow - /// - AttackMinimumAddedFireDamageWithBow = 2230, - - /// - /// attack_maximum_added_fire_damage_with_bow - /// - AttackMaximumAddedFireDamageWithBow = 2231, - - /// - /// number_of_packs_to_summon - /// - NumberOfPacksToSummon = 2232, - - /// - /// summon_monster_radius - /// - SummonMonsterRadius = 2233, - - /// - /// resist_life_leech_% - /// - ResistLifeLeechPct = 2234, - - /// - /// resist_mana_leech_% - /// - ResistManaLeechPct = 2235, - - /// - /// level_11_or_lower_life_+%_final - /// - Level11OrLowerLifePctFinal = 2236, - - /// - /// local_socketed_support_gem_level_+ - /// - LocalSocketedSupportGemLevel = 2237, - - /// - /// level_33_or_lower_life_+%_final - /// - Level33OrLowerLifePctFinal = 2238, - - /// - /// level_33_or_lower_damage_+%_final - /// - Level33OrLowerDamagePctFinal = 2239, - - /// - /// display_monster_casts_vaal_detonate_dead_text - /// - DisplayMonsterCastsVaalDetonateDeadText = 2240, - - /// - /// minions_have_chest_summon_indicator - /// - MinionsHaveChestSummonIndicator = 2241, - - /// - /// curse_on_hit_level_temporal_chains - /// - CurseOnHitLevelTemporalChains = 2242, - - /// - /// curse_on_hit_level_vulnerability - /// - CurseOnHitLevelVulnerability = 2243, - - /// - /// curse_on_hit_level_elemental_weakness - /// - CurseOnHitLevelElementalWeakness = 2244, - - /// - /// local_display_socketed_gems_get_melee_splash_level - /// - LocalDisplaySocketedGemsGetMeleeSplashLevel = 2245, - - /// - /// local_display_socketed_gems_get_cast_on_crit_level - /// - LocalDisplaySocketedGemsGetCastOnCritLevel = 2246, - - /// - /// local_display_socketed_gems_get_cast_when_stunned_level - /// - LocalDisplaySocketedGemsGetCastWhenStunnedLevel = 2247, - - /// - /// is_double - /// - IsDouble = 2248, - - /// - /// can_catch_corrupted_fish - /// - CanCatchCorruptedFish = 2249, - - /// - /// disable_animated_armour - /// - DisableAnimatedArmour = 2250, - - /// - /// number_of_archer_skeletons_to_summon - /// - NumberOfArcherSkeletonsToSummon = 2251, - - /// - /// number_of_mage_skeletons_to_summon - /// - NumberOfMageSkeletonsToSummon = 2252, - - /// - /// number_of_leader_skeletons_to_summon - /// - NumberOfLeaderSkeletonsToSummon = 2253, - - /// - /// map_spawn_extra_exiles - /// - MapSpawnExtraExiles = 2254, - - /// - /// map_disable_new_instance_management - /// - MapDisableNewInstanceManagement = 2255, - - /// - /// local_display_socketed_gems_get_mana_multplier_% - /// - LocalDisplaySocketedGemsGetManaMultplierPct = 2256, - - /// - /// local_display_socketed_gems_get_stun_level - /// - LocalDisplaySocketedGemsGetStunLevel = 2257, - - /// - /// local_display_socketed_gems_get_additional_accuracy_level - /// - LocalDisplaySocketedGemsGetAdditionalAccuracyLevel = 2258, - - /// - /// local_display_socketed_gems_get_multistrike_level - /// - LocalDisplaySocketedGemsGetMultistrikeLevel = 2259, - - /// - /// local_display_socketed_gems_get_faster_projectiles_level - /// - LocalDisplaySocketedGemsGetFasterProjectilesLevel = 2260, - - /// - /// local_display_socketed_gems_get_life_leech_level - /// - LocalDisplaySocketedGemsGetLifeLeechLevel = 2261, - - /// - /// local_display_socketed_gems_get_increased_critical_damage_level - /// - LocalDisplaySocketedGemsGetIncreasedCriticalDamageLevel = 2262, - - /// - /// local_display_socketed_gems_get_fork_level - /// - LocalDisplaySocketedGemsGetForkLevel = 2263, - - /// - /// local_display_socketed_gems_get_weapon_elemental_damage_level - /// - LocalDisplaySocketedGemsGetWeaponElementalDamageLevel = 2264, - - /// - /// local_display_grants_skill_purity_of_fire_level - /// - LocalDisplayGrantsSkillPurityOfFireLevel = 2265, - - /// - /// local_display_grants_skill_purity_of_cold_level - /// - LocalDisplayGrantsSkillPurityOfColdLevel = 2266, - - /// - /// local_display_grants_skill_purity_of_lightning_level - /// - LocalDisplayGrantsSkillPurityOfLightningLevel = 2267, - - /// - /// local_display_grants_skill_flammability_level - /// - LocalDisplayGrantsSkillFlammabilityLevel = 2268, - - /// - /// local_display_grants_skill_conductivity_level - /// - LocalDisplayGrantsSkillConductivityLevel = 2269, - - /// - /// local_display_grants_skill_frostbite_level - /// - LocalDisplayGrantsSkillFrostbiteLevel = 2270, - - /// - /// local_display_grants_skill_temporal_chains_level - /// - LocalDisplayGrantsSkillTemporalChainsLevel = 2271, - - /// - /// local_display_grants_skill_haste_level - /// - LocalDisplayGrantsSkillHasteLevel = 2272, - - /// - /// local_display_grants_skill_clarity_level - /// - LocalDisplayGrantsSkillClarityLevel = 2273, - - /// - /// local_display_grants_skill_vitality_level - /// - LocalDisplayGrantsSkillVitalityLevel = 2274, - - /// - /// local_display_grants_skill_purity_level - /// - LocalDisplayGrantsSkillPurityLevel = 2275, - - /// - /// local_display_grants_skill_critical_weakness_level - /// - LocalDisplayGrantsSkillCriticalWeaknessLevel = 2276, - - /// - /// local_display_grants_skill_wrath_level - /// - LocalDisplayGrantsSkillWrathLevel = 2277, - - /// - /// local_display_grants_skill_hatred_level - /// - LocalDisplayGrantsSkillHatredLevel = 2278, - - /// - /// local_display_grants_skill_anger_level - /// - LocalDisplayGrantsSkillAngerLevel = 2279, - - /// - /// local_display_grants_skill_determination_level - /// - LocalDisplayGrantsSkillDeterminationLevel = 2280, - - /// - /// local_display_grants_skill_grace_level - /// - LocalDisplayGrantsSkillGraceLevel = 2281, - - /// - /// local_display_grants_skill_discipline_level - /// - LocalDisplayGrantsSkillDisciplineLevel = 2282, - - /// - /// local_display_grants_skill_projectile_weakness_level - /// - LocalDisplayGrantsSkillProjectileWeaknessLevel = 2283, - - /// - /// local_display_grants_skill_elemental_weakness_level - /// - LocalDisplayGrantsSkillElementalWeaknessLevel = 2284, - - /// - /// local_display_grants_skill_vulnerability_level - /// - LocalDisplayGrantsSkillVulnerabilityLevel = 2285, - - /// - /// cold_damage_cannot_chill - /// - ColdDamageCannotChill = 2286, - - /// - /// elemental_damage_taken_%_as_chaos - /// - ElementalDamageTakenPctAsChaos = 2287, - - /// - /// fire_damage_taken_%_as_chaos - /// - FireDamageTakenPctAsChaos = 2288, - - /// - /// cold_damage_taken_%_as_chaos - /// - ColdDamageTakenPctAsChaos = 2289, - - /// - /// lightning_damage_taken_%_as_chaos - /// - LightningDamageTakenPctAsChaos = 2290, - - /// - /// global_reduce_enemy_block_% - /// - GlobalReduceEnemyBlockPct = 2291, - - /// - /// base_spell_repeat_count - /// - BaseSpellRepeatCount = 2292, - - /// - /// spell_repeat_count - /// - SpellRepeatCount = 2293, - - /// - /// pvp_damage_+%_final_scale - /// - PvpDamagePctFinalScale = 2294, - - /// - /// physical_damage_taken_+_vs_beasts - /// - PhysicalDamageTakenVsBeasts = 2295, - - /// - /// local_strength_requirement_+ - /// - LocalStrengthRequirement = 2296, - - /// - /// local_dexterity_requirement_+ - /// - LocalDexterityRequirement = 2297, - - /// - /// local_intelligence_requirement_+ - /// - LocalIntelligenceRequirement = 2298, - - /// - /// display_monster_vaal_storm_call - /// - DisplayMonsterVaalStormCall = 2299, - - /// - /// reave_rotation_on_repeat - /// - ReaveRotationOnRepeat = 2300, - - /// - /// reave_additional_max_stacks - /// - ReaveAdditionalMaxStacks = 2301, - - /// - /// reave_additional_starting_stacks - /// - ReaveAdditionalStartingStacks = 2302, - - /// - /// bleed_on_melee_crit_chance_% - /// - BleedOnMeleeCritChancePct = 2303, - - /// - /// bleed_on_melee_crit_chance_duration_ms - /// - BleedOnMeleeCritChanceDurationMs = 2304, - - /// - /// energy_shield_recharge_not_delayed_by_damage - /// - EnergyShieldRechargeNotDelayedByDamage = 2305, - - /// - /// maximum_dodge_chance_% - /// - MaximumDodgeChancePct = 2306, - - /// - /// maximum_spell_dodge_chance_% - /// - MaximumSpellDodgeChancePct = 2307, - - /// - /// weapon_physical_damage_%_to_add_as_random_element - /// - WeaponPhysicalDamagePctToAddAsRandomElement = 2308, - - /// - /// throw_traps_in_circle_radius - /// - ThrowTrapsInCircleRadius = 2309, - - /// - /// damage_taken_+% - /// - DamageTakenPct = 2310, - - /// - /// Damage Taken +% increase per Frenzy Charge - /// - DamageTakenPctPerFrenzyCharge = 2311, - - /// - /// Lightning Damage +% increase per Frenzy Charge - /// - LightningDamagePctPerFrenzyCharge = 2312, - - /// - /// Life Gained on Kill - /// - LifeGainedOnEnemyDeath = 2313, - - /// - /// Life Gained on Kill per Frenzy Charge - /// - LifeGainedOnEnemyDeathPerFrenzyCharge = 2314, - - /// - /// vaal_sweep_additional_base_radius_for_push - /// - VaalSweepAdditionalBaseRadiusForPush = 2315, - - /// - /// main_hand_weapon_elemental_damage_+% - /// - MainHandWeaponElementalDamagePct = 2316, - - /// - /// off_hand_weapon_elemental_damage_+% - /// - OffHandWeaponElementalDamagePct = 2317, - - /// - /// local_attacks_with_this_weapon_elemental_damage_+% - /// - LocalAttacksWithThisWeaponElementalDamagePct = 2318, - - /// - /// monster_casts_glacial_cascade_text - /// - MonsterCastsGlacialCascadeText = 2319, - - /// - /// dual_wield_inherent_physical_attack_damage_+%_final - /// - DualWieldInherentPhysicalAttackDamagePctFinal = 2320, - - /// - /// damage_cannot_be_reflected - /// - DamageCannotBeReflected = 2321, - - /// - /// map_base_ground_desecration_damage_to_deal_per_minute - /// - MapBaseGroundDesecrationDamageToDealPerMinute = 2322, - - /// - /// global_poison_on_hit - /// - GlobalPoisonOnHit = 2323, - - /// - /// map_monsters_poison_on_hit - /// - MapMonstersPoisonOnHit = 2324, - - /// - /// play_jack_the_axe_sounds - /// - PlayJackTheAxeSounds = 2325, - - /// - /// sound_on_kill_wolf_call - /// - SoundOnKillWolfCall = 2326, - - /// - /// oba_decapitated - /// - ObaDecapitated = 2327, - - /// - /// chest_number_of_additional_kaom_uniques_to_drop - /// - ChestNumberOfAdditionalKaomUniquesToDrop = 2328, - - /// - /// chest_drop_additional_number_of_uniques_of_drop_pool_types - /// - ChestDropAdditionalNumberOfUniquesOfDropPoolTypes = 2329, - - /// - /// chest_display_kaom_totems - /// - ChestDisplayKaomTotems = 2330, - - /// - /// map_mission_id - /// - MapMissionId = 2331, - - /// - /// chest_no_regular_drops - /// - ChestNoRegularDrops = 2332, - - /// - /// map_side_area_chance_+% - /// - MapSideAreaChancePct = 2333, - - /// - /// chest_drop_additional_unique_maps - /// - ChestDropAdditionalUniqueMaps = 2334, - - /// - /// map_display_garena_drop_buff - /// - MapDisplayGarenaDropBuff = 2335, - - /// - /// keystone_unwavering_stance - /// - KeystoneUnwaveringStance = 2336, - - /// - /// cannot_evade - /// - CannotEvade = 2337, - - /// - /// never_ignite - /// - NeverIgnite = 2338, - - /// - /// global_chance_to_knockback_% - /// - GlobalChanceToKnockbackPct = 2339, - - /// - /// local_unique_flask_instantly_recovers_%_maximum_life - /// - LocalUniqueFlaskInstantlyRecoversPctMaximumLife = 2340, - - /// - /// local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing - /// - LocalUniqueFlaskChaosDamagePctOfMaximumLifeToDealPerMinuteWhileHealing = 2341, - - /// - /// unique_add_power_charge_on_melee_knockback_% - /// - UniqueAddPowerChargeOnMeleeKnockbackPct = 2342, - - /// - /// display_map_boss_gives_experience_+% - /// - DisplayMapBossGivesExperiencePct = 2343, - - /// - /// gain_power_charge_when_throwing_trap_% - /// - GainPowerChargeWhenThrowingTrapPct = 2344, - - /// - /// local_display_grants_skill_bear_trap_level - /// - LocalDisplayGrantsSkillBearTrapLevel = 2345, - - /// - /// critical_strike_chance_+%_per_8_strength - /// - CriticalStrikeChancePctPer8Strength = 2346, - - /// - /// skill_is_trapped - /// - SkillIsTrapped = 2347, - - /// - /// skill_is_mined - /// - SkillIsMined = 2348, - - /// - /// skill_is_totemified - /// - SkillIsTotemified = 2349, - - /// - /// current_rampage_stacks - /// - CurrentRampageStacks = 2350, - - /// - /// max_rampage_stacks - /// - MaxRampageStacks = 2351, - - /// - /// damage_+%_per_10_rampage_stacks - /// - DamagePctPer10RampageStacks = 2352, - - /// - /// movement_velocity_+%_per_10_rampage_stacks - /// - MovementVelocityPctPer10RampageStacks = 2353, - - /// - /// map_players_gain_rampage_stacks - /// - MapPlayersGainRampageStacks = 2354, - - /// - /// map_disable_missions - /// - MapDisableMissions = 2355, - - /// - /// map_spawn_map_portal - /// - MapSpawnMapPortal = 2356, - - /// - /// local_unique_flask_block_%_while_healing - /// - LocalUniqueFlaskBlockPctWhileHealing = 2357, - - /// - /// local_unique_flask_spell_block_%_while_healing - /// - LocalUniqueFlaskSpellBlockPctWhileHealing = 2358, - - /// - /// map_beyond_rules - /// - MapBeyondRules = 2359, - - /// - /// map_extra_ruleset - /// - MapExtraRuleset = 2360, - - /// - /// map_mission_variation - /// - MapMissionVariation = 2361, - - /// - /// ground_spikes_physical_damage_to_deal_per_minute - /// - GroundSpikesPhysicalDamageToDealPerMinute = 2362, - - /// - /// ground_spikes_moving_physical_damage_to_deal_per_minute - /// - GroundSpikesMovingPhysicalDamageToDealPerMinute = 2363, - - /// - /// attack_speed_+%_while_ignited - /// - AttackSpeedPctWhileIgnited = 2364, - - /// - /// cast_speed_+%_while_ignited - /// - CastSpeedPctWhileIgnited = 2365, - - /// - /// chance_to_ignite_%_while_ignited - /// - ChanceToIgnitePctWhileIgnited = 2366, - - /// - /// fire_nova_damage_+%_per_repeat_final - /// - FireNovaDamagePctPerRepeatFinal = 2367, - - /// - /// lightning_trap_projectiles_leave_shocking_ground - /// - LightningTrapProjectilesLeaveShockingGround = 2368, - - /// - /// main_hand_weapon_physical_damage_+%_per_250_evasion - /// - MainHandWeaponPhysicalDamagePctPer250Evasion = 2369, - - /// - /// off_hand_weapon_physical_damage_+%_per_250_evasion - /// - OffHandWeaponPhysicalDamagePctPer250Evasion = 2370, - - /// - /// local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion - /// - LocalAttacksWithThisWeaponPhysicalDamagePctPer250Evasion = 2371, - - /// - /// map_cagan_has_hidden_mods - /// - MapCaganHasHiddenMods = 2372, - - /// - /// cyclone_places_ground_tar_movement_speed_+% - /// - CyclonePlacesGroundTarMovementSpeedPct = 2373, - - /// - /// wand_damage_+% - /// - WandDamagePct = 2374, - - /// - /// cast_speed_while_dual_wielding_+% - /// - CastSpeedWhileDualWieldingPct = 2375, - - /// - /// shield_spell_block_% - /// - ShieldSpellBlockPct = 2376, - - /// - /// local_display_socketed_gems_get_echo_level - /// - LocalDisplaySocketedGemsGetEchoLevel = 2377, - - /// - /// support_echo_damage_+%_final - /// - SupportEchoDamagePctFinal = 2378, - - /// - /// global_bleed_on_hit - /// - GlobalBleedOnHit = 2379, - - /// - /// local_bleed_on_hit - /// - LocalBleedOnHit = 2380, - - /// - /// main_hand_bleed_on_hit - /// - MainHandBleedOnHit = 2381, - - /// - /// off_hand_bleed_on_hit - /// - OffHandBleedOnHit = 2382, - - /// - /// damage_+%_vs_ignited_enemies - /// - DamagePctVsIgnitedEnemies = 2383, - - /// - /// recover_%_maximum_life_on_rampage_threshold - /// - RecoverPctMaximumLifeOnRampageThreshold = 2384, - - /// - /// dispel_status_ailments_on_rampage_threshold - /// - DispelStatusAilmentsOnRampageThreshold = 2385, - - /// - /// gain_physical_damage_immunity_on_rampage_threshold_ms - /// - GainPhysicalDamageImmunityOnRampageThresholdMs = 2386, - - /// - /// gain_X_vaal_souls_on_rampage_threshold - /// - GainXVaalSoulsOnRampageThreshold = 2387, - - /// - /// physical_damage_+%_vs_poisoned_enemies - /// - PhysicalDamagePctVsPoisonedEnemies = 2388, - - /// - /// block_causes_monster_flee_% - /// - BlockCausesMonsterFleePct = 2389, - - /// - /// life_regeneration_rate_per_minute_per_level - /// - LifeRegenerationRatePerMinutePerLevel = 2390, - - /// - /// critical_strike_chance_+%_per_level - /// - CriticalStrikeChancePctPerLevel = 2391, - - /// - /// attack_damage_+%_per_level - /// - AttackDamagePctPerLevel = 2392, - - /// - /// spell_damage_+%_per_level - /// - SpellDamagePctPerLevel = 2393, - - /// - /// recharge_flasks_on_crit - /// - RechargeFlasksOnCrit = 2394, - - /// - /// bleeding_monsters_movement_velocity_+% - /// - BleedingMonstersMovementVelocityPct = 2395, - - /// - /// old_do_not_use_life_leech_permyriad_on_crit - /// - OldDoNotUseLifeLeechPermyriadOnCrit = 2396, - - /// - /// ground_smoke_on_rampage_threshold_ms - /// - GroundSmokeOnRampageThresholdMs = 2397, - - /// - /// phasing_on_rampage_threshold_ms - /// - PhasingOnRampageThresholdMs = 2398, - - /// - /// on_full_energy_shield - /// - OnFullEnergyShield = 2399, - - /// - /// movement_velocity_+%_on_full_energy_shield - /// - MovementVelocityPctOnFullEnergyShield = 2400, - - /// - /// sword_critical_strike_chance_+% - /// - SwordCriticalStrikeChancePct = 2401, - - /// - /// attack_damage_+%_per_450_evasion - /// - AttackDamagePctPer450Evasion = 2402, - - /// - /// old_do_not_use_mana_leech_from_physical_damage_with_claw_% - /// - OldDoNotUseManaLeechFromPhysicalDamageWithClawPct = 2403, - - /// - /// main_hand_steal_power_frenzy_endurance_charges_on_hit_% - /// - MainHandStealPowerFrenzyEnduranceChargesOnHitPct = 2404, - - /// - /// off_hand_steal_power_frenzy_endurance_charges_on_hit_% - /// - OffHandStealPowerFrenzyEnduranceChargesOnHitPct = 2405, - - /// - /// claw_steal_power_frenzy_endurance_charges_on_hit_% - /// - ClawStealPowerFrenzyEnduranceChargesOnHitPct = 2406, - - /// - /// player_gain_rampage_stacks - /// - PlayerGainRampageStacks = 2407, - - /// - /// regenerate_%_armour_as_life_over_1_second_on_block - /// - RegeneratePctArmourAsLifeOver1SecondOnBlock = 2408, - - /// - /// monster_cast_spell_%_on_attack_hit - /// - MonsterCastSpellPctOnAttackHit = 2409, - - /// - /// unique_chaos_damage_to_reflect_to_self_on_attack_%_chance - /// - UniqueChaosDamageToReflectToSelfOnAttackPctChance = 2410, - - /// - /// unique_minimum_chaos_damage_to_reflect_to_self_on_attack - /// - UniqueMinimumChaosDamageToReflectToSelfOnAttack = 2411, - - /// - /// unique_maximum_chaos_damage_to_reflect_to_self_on_attack - /// - UniqueMaximumChaosDamageToReflectToSelfOnAttack = 2412, - - /// - /// map_monsters_curse_effect_+% - /// - MapMonstersCurseEffectPct = 2413, - - /// - /// map_mission_variation2 - /// - MapMissionVariation2 = 2414, - - /// - /// map_player_has_random_level_X_curse_every_10_seconds - /// - MapPlayerHasRandomLevelXCurseEvery10Seconds = 2415, - - /// - /// display_map_inhabited_by_wild_beasts - /// - DisplayMapInhabitedByWildBeasts = 2416, - - /// - /// monster_no_drops - /// - MonsterNoDrops = 2417, - - /// - /// map_monster_no_drops - /// - MapMonsterNoDrops = 2418, - - /// - /// life_regeneration_rate_+% - /// - LifeRegenerationRatePct = 2419, - - /// - /// cannot_be_blinded - /// - CannotBeBlinded = 2420, - - /// - /// local_socketed_skill_gem_level_+ - /// - LocalSocketedSkillGemLevel = 2421, - - /// - /// gain_unholy_might_on_rampage_threshold_ms - /// - GainUnholyMightOnRampageThresholdMs = 2422, - - /// - /// elemental_damage_+%_per_level - /// - ElementalDamagePctPerLevel = 2423, - - /// - /// chaos_damage_+%_per_level - /// - ChaosDamagePctPerLevel = 2424, - - /// - /// life_gained_on_enemy_death_per_level - /// - LifeGainedOnEnemyDeathPerLevel = 2425, - - /// - /// mana_gained_on_enemy_death - /// - ManaGainedOnEnemyDeath = 2426, - - /// - /// energy_shield_gained_on_enemy_death - /// - EnergyShieldGainedOnEnemyDeath = 2427, - - /// - /// mana_gained_on_enemy_death_per_level - /// - ManaGainedOnEnemyDeathPerLevel = 2428, - - /// - /// energy_shield_gained_on_enemy_death_per_level - /// - EnergyShieldGainedOnEnemyDeathPerLevel = 2429, - - /// - /// aura_cannot_affect_self - /// - AuraCannotAffectSelf = 2430, - - /// - /// map_scion_mission_monster_pack - /// - MapScionMissionMonsterPack = 2431, - - /// - /// mace_critical_strike_chance_+% - /// - MaceCriticalStrikeChancePct = 2432, - - /// - /// staff_critical_strike_chance_+% - /// - StaffCriticalStrikeChancePct = 2433, - - /// - /// wand_critical_strike_chance_+% - /// - WandCriticalStrikeChancePct = 2434, - - /// - /// wand_critical_strike_multiplier_+ - /// - WandCriticalStrikeMultiplier = 2435, - - /// - /// bow_stun_threshold_reduction_+% - /// - BowStunThresholdReductionPct = 2436, - - /// - /// number_of_animated_bows_to_summon - /// - NumberOfAnimatedBowsToSummon = 2437, - - /// - /// number_of_animated_daggers_to_summon - /// - NumberOfAnimatedDaggersToSummon = 2438, - - /// - /// number_of_animated_two_handed_swords_to_summon - /// - NumberOfAnimatedTwoHandedSwordsToSummon = 2439, - - /// - /// firestorm_avoid_unwalkable_terrain - /// - FirestormAvoidUnwalkableTerrain = 2440, - - /// - /// ground_effect_ring_type - /// - GroundEffectRingType = 2441, - - /// - /// local_display_socketed_gems_have_elemental_equilibrium - /// - LocalDisplaySocketedGemsHaveElementalEquilibrium = 2442, - - /// - /// unique_fire_damage_resistance_%_when_red_gem_socketed - /// - UniqueFireDamageResistancePctWhenRedGemSocketed = 2443, - - /// - /// unique_cold_damage_resistance_%_when_green_gem_socketed - /// - UniqueColdDamageResistancePctWhenGreenGemSocketed = 2444, - - /// - /// unique_lightning_damage_resistance_%_when_blue_gem_socketed - /// - UniqueLightningDamageResistancePctWhenBlueGemSocketed = 2445, - - /// - /// skill_mana_cost_+ - /// - SkillManaCost = 2446, - - /// - /// map_aoe_daemons_per_100_tiles - /// - MapAoeDaemonsPer100Tiles = 2447, - - /// - /// map_aoe_daemons_variation - /// - MapAoeDaemonsVariation = 2448, - - /// - /// monster_no_beyond_portal - /// - MonsterNoBeyondPortal = 2449, - - /// - /// local_socketed_support_gem_quality_+ - /// - LocalSocketedSupportGemQuality = 2450, - - /// - /// map_packs_are_str_mission_totems - /// - MapPacksAreStrMissionTotems = 2451, - - /// - /// chance_to_grant_frenzy_charge_on_death_% - /// - ChanceToGrantFrenzyChargeOnDeathPct = 2452, - - /// - /// life_granted_when_hit_by_attacks - /// - LifeGrantedWhenHitByAttacks = 2453, - - /// - /// mana_granted_when_hit_by_attacks - /// - ManaGrantedWhenHitByAttacks = 2454, - - /// - /// life_granted_when_killed - /// - LifeGrantedWhenKilled = 2455, - - /// - /// mana_granted_when_killed - /// - ManaGrantedWhenKilled = 2456, - - /// - /// evasion_rating_+%_final_from_poachers_mark - /// - EvasionRatingPctFinalFromPoachersMark = 2457, - - /// - /// monster_interactible_corpse - /// - MonsterInteractibleCorpse = 2458, - - /// - /// revive_all_with_onslaught_make_minions - /// - ReviveAllWithOnslaughtMakeMinions = 2459, - - /// - /// revive_all_with_onslaught_make_unusable - /// - ReviveAllWithOnslaughtMakeUnusable = 2460, - - /// - /// additive_spell_damage_modifiers_apply_to_attack_damage - /// - AdditiveSpellDamageModifiersApplyToAttackDamage = 2461, - - /// - /// monster_minimap_icon - /// - MonsterMinimapIcon = 2462, - - /// - /// is_trap_object - /// - IsTrapObject = 2463, - - /// - /// attack_projectiles_return - /// - AttackProjectilesReturn = 2464, - - /// - /// attack_projectiles_return_if_no_hit_object - /// - AttackProjectilesReturnIfNoHitObject = 2465, - - /// - /// minion_damage_+%_per_10_rampage_stacks - /// - MinionDamagePctPer10RampageStacks = 2466, - - /// - /// minion_movement_velocity_+%_per_10_rampage_stacks - /// - MinionMovementVelocityPctPer10RampageStacks = 2467, - - /// - /// virtual_minion_damage_+% - /// - VirtualMinionDamagePct = 2468, - - /// - /// player_dex_mission_enable_pointer - /// - PlayerDexMissionEnablePointer = 2469, - - /// - /// map_hidden_monster_life_+%_final - /// - MapHiddenMonsterLifePctFinal = 2470, - - /// - /// map_hidden_monster_damage_+%_final - /// - MapHiddenMonsterDamagePctFinal = 2471, - - /// - /// projectiles_not_offset - /// - ProjectilesNotOffset = 2472, - - /// - /// herald_of_ash_fire_damage_+% - /// - HeraldOfAshFireDamagePct = 2473, - - /// - /// map_num_extra_invasion_bosses - /// - MapNumExtraInvasionBosses = 2474, - - /// - /// map_num_extra_strongboxes - /// - MapNumExtraStrongboxes = 2475, - - /// - /// map_num_extra_shrines - /// - MapNumExtraShrines = 2476, - - /// - /// map_all_monster_packs_rare_and_allow_magic - /// - MapAllMonsterPacksRareAndAllowMagic = 2477, - - /// - /// duelist_master_is_dummy_variation - /// - DuelistMasterIsDummyVariation = 2478, - - /// - /// soul_eater_ignore_non_experience_monsters - /// - SoulEaterIgnoreNonExperienceMonsters = 2479, - - /// - /// summoned_monsters_are_minions - /// - SummonedMonstersAreMinions = 2480, - - /// - /// summoned_monsters_no_drops_or_experience - /// - SummonedMonstersNoDropsOrExperience = 2481, - - /// - /// monster_do_not_fracture - /// - MonsterDoNotFracture = 2482, - - /// - /// item_generation_cannot_change_prefixes - /// - ItemGenerationCannotChangePrefixes = 2483, - - /// - /// item_generation_cannot_change_suffixes - /// - ItemGenerationCannotChangeSuffixes = 2484, - - /// - /// item_generation_cannot_roll_caster_affixes - /// - ItemGenerationCannotRollCasterAffixes = 2485, - - /// - /// item_generation_cannot_roll_attack_affixes - /// - ItemGenerationCannotRollAttackAffixes = 2486, - - /// - /// item_generation_can_have_multiple_crafted_mods - /// - ItemGenerationCanHaveMultipleCraftedMods = 2487, - - /// - /// map_set_league_category - /// - MapSetLeagueCategory = 2488, - - /// - /// local_level_requirement_+ - /// - LocalLevelRequirement2 = 2489, - - /// - /// projectile_spiral_nova_starting_angle_offset - /// - ProjectileSpiralNovaStartingAngleOffset = 2490, - - /// - /// projectile_spiral_nova_both_directions - /// - ProjectileSpiralNovaBothDirections = 2491, - - /// - /// triggered_spell_spell_damage_+% - /// - TriggeredSpellSpellDamagePct = 2492, - - /// - /// damage_+%_vs_blinded_enemies - /// - DamagePctVsBlindedEnemies = 2493, - - /// - /// ground_smoke_when_hit_% - /// - GroundSmokeWhenHitPct = 2494, - - /// - /// number_of_beacons - /// - NumberOfBeacons = 2495, - - /// - /// is_dead - /// - IsDead = 2496, - - /// - /// area_of_effect_+%_while_dead - /// - AreaOfEffectPctWhileDead = 2497, - - /// - /// beacon_placement_radius - /// - BeaconPlacementRadius = 2498, - - /// - /// map_area_portal_variation - /// - MapAreaPortalVariation = 2499, - - /// - /// skill_is_triggered - /// - SkillIsTriggered = 2500, - - /// - /// skill_is_curse - /// - SkillIsCurse = 2501, - - /// - /// skill_triggerable_spell - /// - SkillTriggerableSpell = 2502, - - /// - /// unique_mjolner_lightning_spells_triggered - /// - UniqueMjolnerLightningSpellsTriggered = 2503, - - /// - /// skill_number_of_triggers - /// - SkillNumberOfTriggers = 2504, - - /// - /// curse_on_block_level_5_vulnerability - /// - CurseOnBlockLevel5Vulnerability = 2505, - - /// - /// monster_enrages_on_low_life_text - /// - MonsterEnragesOnLowLifeText = 2506, - - /// - /// drop_bear_fall_on_target - /// - DropBearFallOnTarget = 2507, - - /// - /// map_magic_pack_mod_rules - /// - MapMagicPackModRules = 2508, - - /// - /// display_map_has_oxygen - /// - DisplayMapHasOxygen = 2509, - - /// - /// bloodlines_beacon_on_death_variation - /// - BloodlinesBeaconOnDeathVariation = 2510, - - /// - /// actor_scale_+%_granted_to_pack_members_on_death - /// - ActorScalePctGrantedToPackMembersOnDeath = 2511, - - /// - /// maximum_life_+%_granted_to_pack_members_on_death - /// - MaximumLifePctGrantedToPackMembersOnDeath = 2512, - - /// - /// monster_dodge_direction - /// - MonsterDodgeDirection = 2513, - - /// - /// herald_of_ice_cold_damage_+% - /// - HeraldOfIceColdDamagePct = 2514, - - /// - /// herald_of_thunder_lightning_damage_+% - /// - HeraldOfThunderLightningDamagePct = 2515, - - /// - /// number_of_taniwha_tails_allowed - /// - NumberOfTaniwhaTailsAllowed = 2516, - - /// - /// minion_dies_when_parent_dies - /// - MinionDiesWhenParentDies = 2517, - - /// - /// unique_nearby_allies_recover_permyriad_max_life_on_death - /// - UniqueNearbyAlliesRecoverPermyriadMaxLifeOnDeath = 2518, - - /// - /// suppress_mod_stat_display - /// - SuppressModStatDisplay = 2519, - - /// - /// base_steal_power_frenzy_endurance_charges_on_hit_% - /// - BaseStealPowerFrenzyEnduranceChargesOnHitPct = 2520, - - /// - /// cannot_die_and_damage_+%_near_pack_corpse - /// - CannotDieAndDamagePctNearPackCorpse = 2521, - - /// - /// projectile_spread_radius - /// - ProjectileSpreadRadius = 2522, - - /// - /// local_item_drops_on_death_if_equipped_by_animate_armour - /// - LocalItemDropsOnDeathIfEquippedByAnimateArmour = 2523, - - /// - /// physical_attack_damage_+% - /// - PhysicalAttackDamagePct = 2524, - - /// - /// melee_physical_damage_+%_while_holding_shield - /// - MeleePhysicalDamagePctWhileHoldingShield = 2525, - - /// - /// local_display_socketed_gems_get_cast_on_death_level - /// - LocalDisplaySocketedGemsGetCastOnDeathLevel = 2526, - - /// - /// cluster_burst_spawn_amount - /// - ClusterBurstSpawnAmount = 2527, - - /// - /// bloodline_daemon_update_count_on_death - /// - BloodlineDaemonUpdateCountOnDeath = 2528, - - /// - /// bloodline_daemon_pack_death_count - /// - BloodlineDaemonPackDeathCount = 2529, - - /// - /// bloodline_summon_blood_monster_on_pack_death - /// - BloodlineSummonBloodMonsterOnPackDeath = 2530, - - /// - /// damage_taken_+%_per_bloodline_damage_charge - /// - DamageTakenPctPerBloodlineDamageCharge = 2531, - - /// - /// attack_speed_+%_per_bloodline_speed_charge - /// - AttackSpeedPctPerBloodlineSpeedCharge = 2532, - - /// - /// cast_speed_+%_per_bloodline_speed_charge - /// - CastSpeedPctPerBloodlineSpeedCharge = 2533, - - /// - /// current_bloodline_damage_charges - /// - CurrentBloodlineDamageCharges = 2534, - - /// - /// current_bloodline_speed_charges - /// - CurrentBloodlineSpeedCharges = 2535, - - /// - /// maximum_bloodline_damage_charges - /// - MaximumBloodlineDamageCharges = 2536, - - /// - /// maximum_bloodline_speed_charges - /// - MaximumBloodlineSpeedCharges = 2537, - - /// - /// apply_X_random_curses_on_hit - /// - ApplyXRandomCursesOnHit = 2538, - - /// - /// total_projectile_spread_angle_override - /// - TotalProjectileSpreadAngleOverride = 2539, - - /// - /// map_beyond_chance_% - /// - MapBeyondChancePct = 2540, - - /// - /// map_boss_vaal_item_drop_% - /// - MapBossVaalItemDropPct = 2541, - - /// - /// map_is_corrupted - /// - MapIsCorrupted = 2542, - - /// - /// map_no_strongboxes - /// - MapNoStrongboxes = 2543, - - /// - /// keystone_acrobatics_block_chance_+%_final - /// - KeystoneAcrobaticsBlockChancePctFinal = 2544, - - /// - /// corpse_consumption_affects_pack - /// - CorpseConsumptionAffectsPack = 2545, - - /// - /// damage_+%_per_bloodline_damage_charge - /// - DamagePctPerBloodlineDamageCharge = 2546, - - /// - /// movement_speed_+%_per_bloodline_speed_charge - /// - MovementSpeedPctPerBloodlineSpeedCharge = 2547, - - /// - /// active_skill_area_damage_+%_final - /// - ActiveSkillAreaDamagePctFinal = 2548, - - /// - /// monster_share_charges_with_pack - /// - MonsterShareChargesWithPack = 2549, - - /// - /// melee_counterattack_trigger_on_block_% - /// - MeleeCounterattackTriggerOnBlockPct = 2550, - - /// - /// bloodline_firestorm_scales_with_pack_death - /// - BloodlineFirestormScalesWithPackDeath = 2551, - - /// - /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute - /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 2552, - - /// - /// is_totem_object - /// - IsTotemObject = 2553, - - /// - /// uses_no_mana - /// - UsesNoMana = 2554, - - /// - /// monster_spawn_bloodlines_ghost_totem_on_death - /// - MonsterSpawnBloodlinesGhostTotemOnDeath = 2555, - - /// - /// skill_triggerable_attack - /// - SkillTriggerableAttack = 2556, - - /// - /// attack_unusable_if_triggerable - /// - AttackUnusableIfTriggerable = 2557, - - /// - /// clone_hidden_duration - /// - CloneHiddenDuration = 2558, - - /// - /// never_take_critical_strike - /// - NeverTakeCriticalStrike = 2559, - - /// - /// tormented_necromancer_spawn_monster_on_death_variation - /// - TormentedNecromancerSpawnMonsterOnDeathVariation = 2560, - - /// - /// tormented_mutilator_spawn_monster_on_death_variation - /// - TormentedMutilatorSpawnMonsterOnDeathVariation = 2561, - - /// - /// spawn_monster_on_death_variation - /// - SpawnMonsterOnDeathVariation = 2562, - - /// - /// map_spawn_tormented_spirits - /// - MapSpawnTormentedSpirits = 2563, - - /// - /// damage_+%_vs_frozen_shocked_ignited_enemies - /// - DamagePctVsFrozenShockedIgnitedEnemies = 2564, - - /// - /// bloodlines_animate_guardian_on_death - /// - BloodlinesAnimateGuardianOnDeath = 2565, - - /// - /// melee_counterattack_trigger_on_hit_% - /// - MeleeCounterattackTriggerOnHitPct = 2566, - - /// - /// reduce_enemy_dodge_% - /// - ReduceEnemyDodgePct = 2567, - - /// - /// shield_counterattack_aoe_range - /// - ShieldCounterattackAoeRange = 2568, - - /// - /// bloodlines_monster_unholy_might_duration_ms - /// - BloodlinesMonsterUnholyMightDurationMs = 2569, - - /// - /// bloodlines_monster_unholy_might_damage_taken_+% - /// - BloodlinesMonsterUnholyMightDamageTakenPct = 2570, - - /// - /// bloodlines_phylacteral_link_is_vulnerable - /// - BloodlinesPhylacteralLinkIsVulnerable = 2571, - - /// - /// bloodlines_full_guardian_size_+%_on_death - /// - BloodlinesFullGuardianSizePctOnDeath = 2572, - - /// - /// bloodlines_guardian_damage_+%_on_death - /// - BloodlinesGuardianDamagePctOnDeath = 2573, - - /// - /// bloodlines_guardian_attack_speed_+%_on_death - /// - BloodlinesGuardianAttackSpeedPctOnDeath = 2574, - - /// - /// bloodlines_guardian_movement_speed_+%_on_death - /// - BloodlinesGuardianMovementSpeedPctOnDeath = 2575, - - /// - /// bloodlines_force_drop_of_pack_item_type_rarity - /// - BloodlinesForceDropOfPackItemTypeRarity = 2576, - - /// - /// merveil_number_of_geysers - /// - MerveilNumberOfGeysers = 2577, - - /// - /// weapon_elemental_damage_+%_while_using_flask - /// - WeaponElementalDamagePctWhileUsingFlask = 2578, - - /// - /// attack_speed_+%_while_holding_shield - /// - AttackSpeedPctWhileHoldingShield = 2579, - - /// - /// create_trap_at_target_location - /// - CreateTrapAtTargetLocation = 2580, - - /// - /// avoid_knockback_% - /// - AvoidKnockbackPct = 2581, - - /// - /// bloodlines_corrupted_blood_%_average_damage_to_deal_per_minute_per_stack_for_20_pack_members - /// - BloodlinesCorruptedBloodPctAverageDamageToDealPerMinutePerStackFor20PackMembers = 2582, - - /// - /// cant_touch_this - /// - CantTouchThis = 2583, - - /// - /// cant_possess_this - /// - CantPossessThis = 2584, - - /// - /// base_physical_damage_%_of_maximum_life_taken_per_minute - /// - BasePhysicalDamagePctOfMaximumLifeTakenPerMinute = 2585, - - /// - /// static_strike_explosion_damage_+%_final - /// - StaticStrikeExplosionDamagePctFinal = 2586, - - /// - /// disable_highlight - /// - DisableHighlight = 2587, - - /// - /// removes_%_mana_on_hit - /// - RemovesPctManaOnHit = 2588, - - /// - /// curse_when_hit_%_silence - /// - CurseWhenHitPctSilence = 2589, - - /// - /// life_gain_on_ignited_enemy_hit - /// - LifeGainOnIgnitedEnemyHit = 2590, - - /// - /// minimum_added_physical_damage_vs_frozen_enemies - /// - MinimumAddedPhysicalDamageVsFrozenEnemies = 2591, - - /// - /// maximum_added_physical_damage_vs_frozen_enemies - /// - MaximumAddedPhysicalDamageVsFrozenEnemies = 2592, - - /// - /// damage_vs_shocked_enemies_+% - /// - DamageVsShockedEnemiesPct = 2593, - - /// - /// old_do_not_use_life_leech_permyriad_vs_shocked_enemies - /// - OldDoNotUseLifeLeechPermyriadVsShockedEnemies = 2594, - - /// - /// physical_damage_as_fire_damage_vs_ignited_enemies_% - /// - PhysicalDamageAsFireDamageVsIgnitedEnemiesPct = 2595, - - /// - /// local_display_socketed_melee_gems_have_area_radius_+% - /// - LocalDisplaySocketedMeleeGemsHaveAreaRadiusPct = 2596, - - /// - /// local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire - /// - LocalDisplaySocketedRedGemsHavePctOfPhysicalDamageToAddAsFire = 2597, - - /// - /// curse_effect_+%_vs_players - /// - CurseEffectPctVsPlayers = 2598, - - /// - /// monster_drop_additional_currency_items - /// - MonsterDropAdditionalCurrencyItems = 2599, - - /// - /// monster_drop_additional_wisdom_scrolls - /// - MonsterDropAdditionalWisdomScrolls = 2600, - - /// - /// monster_drop_additional_portal_scrolls - /// - MonsterDropAdditionalPortalScrolls = 2601, - - /// - /// monster_drop_additional_rings_amulets - /// - MonsterDropAdditionalRingsAmulets = 2602, - - /// - /// item_generation_local_maximum_mod_required_level_override - /// - ItemGenerationLocalMaximumModRequiredLevelOverride = 2603, - - /// - /// block_chance_+% - /// - BlockChancePct = 2604, - - /// - /// local_unique_flask_physical_damage_taken_%_as_cold_while_healing - /// - LocalUniqueFlaskPhysicalDamageTakenPctAsColdWhileHealing = 2605, - - /// - /// local_unique_flask_physical_damage_%_to_add_as_cold_while_healing - /// - LocalUniqueFlaskPhysicalDamagePctToAddAsColdWhileHealing = 2606, - - /// - /// local_unique_flask_avoid_chill_%_while_healing - /// - LocalUniqueFlaskAvoidChillPctWhileHealing = 2607, - - /// - /// local_unique_flask_avoid_freeze_%_while_healing - /// - LocalUniqueFlaskAvoidFreezePctWhileHealing = 2608, - - /// - /// monster_drop_additional_map_items - /// - MonsterDropAdditionalMapItems = 2609, - - /// - /// lightning_warp_move_speed_override - /// - LightningWarpMoveSpeedOverride = 2610, - - /// - /// fire_damage_taken_%_causes_additional_physical_damage - /// - FireDamageTakenPctCausesAdditionalPhysicalDamage = 2611, - - /// - /// chill_effectiveness_on_self_+% - /// - ChillEffectivenessOnSelfPct = 2612, - - /// - /// temporal_chains_effeciveness_+% - /// - TemporalChainsEffecivenessPct = 2613, - - /// - /// gain_flask_charge_when_crit_% - /// - GainFlaskChargeWhenCritPct = 2614, - - /// - /// gain_flask_charge_when_crit_amount - /// - GainFlaskChargeWhenCritAmount = 2615, - - /// - /// self_physical_damage_on_skill_use_%_mana_cost - /// - SelfPhysicalDamageOnSkillUsePctManaCost = 2616, - - /// - /// torment_embezzler_debuff_on_hit_recovery_speed_+% - /// - TormentEmbezzlerDebuffOnHitRecoverySpeedPct = 2617, - - /// - /// monster_no_drops_when_not_deleted_on_death - /// - MonsterNoDropsWhenNotDeletedOnDeath = 2618, - - /// - /// leech_amount_+%_final_on_crit - /// - LeechAmountPctFinalOnCrit = 2619, - - /// - /// unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit - /// - UnqiueAtzitisAcuityInstantLeech60PctEffectivenessOnCrit = 2620, - - /// - /// life_and_mana_leech_is_instant_on_critical - /// - LifeAndManaLeechIsInstantOnCritical = 2621, - - /// - /// bleed_on_melee_attack_chance_% - /// - BleedOnMeleeAttackChancePct = 2622, - - /// - /// physical_damage_over_time_+% - /// - PhysicalDamageOverTimePct = 2623, - - /// - /// elemental_equilibrium_effect_+% - /// - ElementalEquilibriumEffectPct = 2624, - - /// - /// local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent - /// - LocalDisplaySocketedGemsHaveElementalEquilibriumEffectPluspercent = 2625, - - /// - /// attack_damage_+% - /// - AttackDamagePct = 2626, - - /// - /// attack_damage_vs_bleeding_enemies_+% - /// - AttackDamageVsBleedingEnemiesPct = 2627, - - /// - /// chance_to_gain_endurance_charge_on_crit_% - /// - ChanceToGainEnduranceChargeOnCritPct = 2628, - - /// - /// chance_to_gain_power_charge_when_block_% - /// - ChanceToGainPowerChargeWhenBlockPct = 2629, - - /// - /// stuns_have_culling_strike - /// - StunsHaveCullingStrike = 2630, - - /// - /// chance_to_gain_onslaught_on_kill_% - /// - ChanceToGainOnslaughtOnKillPct = 2631, - - /// - /// onslaught_time_granted_on_kill_ms - /// - OnslaughtTimeGrantedOnKillMs = 2632, - - /// - /// base_main_hand_damage_+% - /// - BaseMainHandDamagePct = 2633, - - /// - /// base_off_hand_attack_speed_+% - /// - BaseOffHandAttackSpeedPct = 2634, - - /// - /// damage_vs_enemies_on_low_life_+% - /// - DamageVsEnemiesOnLowLifePct = 2635, - - /// - /// drop_additional_rare_items - /// - DropAdditionalRareItems = 2636, - - /// - /// monster_drop_additional_vaal_items - /// - MonsterDropAdditionalVaalItems = 2637, - - /// - /// bloodlines_shrouded - /// - BloodlinesShrouded = 2638, - - /// - /// monster_pretend_to_be_player_level - /// - MonsterPretendToBePlayerLevel = 2639, - - /// - /// monster_display_ES_when_life_full - /// - MonsterDisplayESWhenLifeFull = 2640, - - /// - /// minimum_added_fire_damage_vs_ignited_enemies - /// - MinimumAddedFireDamageVsIgnitedEnemies = 2641, - - /// - /// maximum_added_fire_damage_vs_ignited_enemies - /// - MaximumAddedFireDamageVsIgnitedEnemies = 2642, - - /// - /// monster_is_possessed - /// - MonsterIsPossessed = 2643, - - /// - /// monster_has_second_form - /// - MonsterHasSecondForm = 2644, - - /// - /// map_crash_instance_debug - /// - MapCrashInstanceDebug = 2645, - - /// - /// map_pause_instance_debug - /// - MapPauseInstanceDebug = 2646, - - /// - /// chance_to_gain_endurance_charge_on_melee_crit_% - /// - ChanceToGainEnduranceChargeOnMeleeCritPct = 2647, - - /// - /// physical_damage_per_endurance_charge_+% - /// - PhysicalDamagePerEnduranceChargePct = 2648, - - /// - /// penetrate_elemental_resistance_per_frenzy_charge_% - /// - PenetrateElementalResistancePerFrenzyChargePct = 2649, - - /// - /// damage_vs_enemies_on_full_life_per_power_charge_+% - /// - DamageVsEnemiesOnFullLifePerPowerChargePct = 2650, - - /// - /// damage_vs_enemies_on_low_life_per_power_charge_+% - /// - DamageVsEnemiesOnLowLifePerPowerChargePct = 2651, - - /// - /// monster_dodge_distance - /// - MonsterDodgeDistance = 2652, - - /// - /// cast_socketed_minion_skills_on_bow_kill_% - /// - CastSocketedMinionSkillsOnBowKillPct = 2653, - - /// - /// minion_damage_+%_per_10_dex - /// - MinionDamagePctPer10Dex = 2654, - - /// - /// unique_bow_minion_spells_triggered - /// - UniqueBowMinionSpellsTriggered = 2655, - - /// - /// Local Flask Ignite Immunity While Healing - /// - LocalFlaskIgniteImmunityWhileHealing = 2656, - - /// - /// Local Flask Chill And Freeze Immunity While Healing - /// - LocalFlaskChillAndFreezeImmunityWhileHealing = 2657, - - /// - /// Local Flask Shock Immunity While Healing - /// - LocalFlaskShockImmunityWhileHealing = 2658, - - /// - /// Local Flask Bleeding Immunity While Healing - /// - LocalFlaskBleedingImmunityWhileHealing = 2659, - - /// - /// immune_to_bleeding - /// - ImmuneToBleeding = 2660, - - /// - /// local_display_socketed_gems_have_number_of_additional_projectiles - /// - LocalDisplaySocketedGemsHaveNumberOfAdditionalProjectiles = 2661, - - /// - /// local_display_socketed_gems_projectiles_nova - /// - LocalDisplaySocketedGemsProjectilesNova = 2662, - - /// - /// local_display_socketed_gems_skill_effect_duration_+% - /// - LocalDisplaySocketedGemsSkillEffectDurationPct = 2663, - - /// - /// life_regen_per_minute_per_endurance_charge - /// - LifeRegenPerMinutePerEnduranceCharge = 2664, - - /// - /// vaal_souls_gained_per_minute - /// - VaalSoulsGainedPerMinute = 2665, - - /// - /// attack_damage_that_stuns_also_chills - /// - AttackDamageThatStunsAlsoChills = 2666, - - /// - /// cannot_knockback - /// - CannotKnockback = 2667, - - /// - /// cleave_disable_predictive_damage - /// - CleaveDisablePredictiveDamage = 2668, - - /// - /// display_map_contains_grandmasters - /// - DisplayMapContainsGrandmasters = 2669, - - /// - /// gain_x_life_when_endurance_charge_expires_or_consumed - /// - GainXLifeWhenEnduranceChargeExpiresOrConsumed = 2670, - - /// - /// virtual_maximum_endurance_charges - /// - VirtualMaximumEnduranceCharges = 2671, - - /// - /// virtual_maximum_frenzy_charges - /// - VirtualMaximumFrenzyCharges = 2672, - - /// - /// virtual_maximum_power_charges - /// - VirtualMaximumPowerCharges = 2673, - - /// - /// no_maximum_power_charges - /// - NoMaximumPowerCharges = 2674, - - /// - /// damage_vs_cursed_enemies_per_enemy_curse_+% - /// - DamageVsCursedEnemiesPerEnemyCursePct = 2675, - - /// - /// virtual_ignite_duration_+% - /// - VirtualIgniteDurationPct = 2676, - - /// - /// virtual_shock_duration_+% - /// - VirtualShockDurationPct = 2677, - - /// - /// virtual_freeze_duration_+% - /// - VirtualFreezeDurationPct = 2678, - - /// - /// virtual_chill_duration_+% - /// - VirtualChillDurationPct = 2679, - - /// - /// base_elemental_status_ailment_duration_+% - /// - BaseElementalStatusAilmentDurationPct = 2680, - - /// - /// local_display_socketed_gems_supported_by_x_knockback_level - /// - LocalDisplaySocketedGemsSupportedByXKnockbackLevel = 2681, - - /// - /// enemy_knockback_direction_is_reversed - /// - EnemyKnockbackDirectionIsReversed = 2682, - - /// - /// map_zana_subarea_mission - /// - MapZanaSubareaMission = 2683, - - /// - /// map_zana_subarea_extra_req - /// - MapZanaSubareaExtraReq = 2684, - - /// - /// immune_to_ally_buff_auras - /// - ImmuneToAllyBuffAuras = 2685, - - /// - /// buff_auras_dont_affect_allies - /// - BuffAurasDontAffectAllies = 2686, - - /// - /// hits_can_only_kill_frozen_enemies - /// - HitsCanOnlyKillFrozenEnemies = 2687, - - /// - /// spectral_throw_deceleration_override - /// - SpectralThrowDecelerationOverride = 2688, - - /// - /// maximum_life_taken_as_physical_damage_on_minion_death_% - /// - MaximumLifeTakenAsPhysicalDamageOnMinionDeathPct = 2689, - - /// - /// maximum_es_taken_as_physical_damage_on_minion_death_% - /// - MaximumEsTakenAsPhysicalDamageOnMinionDeathPct = 2690, - - /// - /// minion_skill_area_of_effect_+% - /// - MinionSkillAreaOfEffectPct = 2691, - - /// - /// energy_shield_regeneration_%_per_minute_while_shocked - /// - EnergyShieldRegenerationPctPerMinuteWhileShocked = 2692, - - /// - /// chest_drops_extra_vaal_fragments - /// - ChestDropsExtraVaalFragments = 2693, - - /// - /// chest_drops_extra_rare_items_of_same_base_type - /// - ChestDropsExtraRareItemsOfSameBaseType = 2694, - - /// - /// ignite_art_variation - /// - IgniteArtVariation = 2695, - - /// - /// curse_apply_as_aura - /// - CurseApplyAsAura = 2696, - - /// - /// combined_pvp_damage_+%_final - /// - CombinedPvpDamagePctFinal = 2697, - - /// - /// support_cast_on_death_pvp_damage_+%_final - /// - SupportCastOnDeathPvpDamagePctFinal = 2698, - - /// - /// support_cast_on_damage_taken_pvp_damage_+%_final - /// - SupportCastOnDamageTakenPvpDamagePctFinal = 2699, - - /// - /// support_cast_when_stunned_pvp_damage_+%_final - /// - SupportCastWhenStunnedPvpDamagePctFinal = 2700, - - /// - /// support_cast_on_crit_pvp_damage_+%_final - /// - SupportCastOnCritPvpDamagePctFinal = 2701, - - /// - /// support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies - /// - SupportBloodlustMeleePhysicalDamagePctFinalVsBleedingEnemies = 2702, - - /// - /// support_bloodlust_melee_physical_damage_+%_final - /// - SupportBloodlustMeleePhysicalDamagePctFinal = 2703, - - /// - /// cannot_be_damaged_by_nonplayer_damage - /// - CannotBeDamagedByNonplayerDamage = 2704, - - /// - /// cannot_cause_bleeding - /// - CannotCauseBleeding = 2705, - - /// - /// inspiring_cry_damage_+%_per_one_hundred_nearby_enemies - /// - InspiringCryDamagePctPerOneHundredNearbyEnemies = 2706, - - /// - /// charge_duration_+% - /// - ChargeDurationPct = 2707, - - /// - /// virtual_power_charge_duration_+% - /// - VirtualPowerChargeDurationPct = 2708, - - /// - /// virtual_endurance_charge_duration_+% - /// - VirtualEnduranceChargeDurationPct = 2709, - - /// - /// daresso_attack_combo_physical_damage_%_to_add_as_cold - /// - DaressoAttackComboPhysicalDamagePctToAddAsCold = 2710, - - /// - /// old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies - /// - OldDoNotUseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 2711, - - /// - /// base_life_leech_from_attack_damage_permyriad - /// - BaseLifeLeechFromAttackDamagePermyriad = 2712, - - /// - /// base_mana_leech_from_attack_damage_permyriad - /// - BaseManaLeechFromAttackDamagePermyriad = 2713, - - /// - /// test_stat_check_code - /// - TestStatCheckCode = 2714, - - /// - /// monster_penalty_against_minions_damage_+%_final - /// - MonsterPenaltyAgainstMinionsDamagePctFinal = 2715, - - /// - /// monster_penalty_against_minions_damage_+%_final_vs_player_minions - /// - MonsterPenaltyAgainstMinionsDamagePctFinalVsPlayerMinions = 2716, - - /// - /// physical_damage_taken_on_minion_death - /// - PhysicalDamageTakenOnMinionDeath = 2717, - - /// - /// abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies - /// - AbyssalCryMovementVelocityPctPerOneHundredNearbyEnemies = 2718, - - /// - /// onslaught_buff_duration_on_culling_strike_ms - /// - OnslaughtBuffDurationOnCullingStrikeMs = 2719, - - /// - /// base_avoid_chill_%_while_have_onslaught - /// - BaseAvoidChillPctWhileHaveOnslaught = 2720, - - /// - /// base_avoid_freeze_%_while_have_onslaught - /// - BaseAvoidFreezePctWhileHaveOnslaught = 2721, - - /// - /// base_avoid_shock_%_while_have_onslaught - /// - BaseAvoidShockPctWhileHaveOnslaught = 2722, - - /// - /// base_avoid_ignite_%_while_have_onslaught - /// - BaseAvoidIgnitePctWhileHaveOnslaught = 2723, - - /// - /// avoid_chill_%_while_have_onslaught - /// - AvoidChillPctWhileHaveOnslaught = 2724, - - /// - /// avoid_freeze_%_while_have_onslaught - /// - AvoidFreezePctWhileHaveOnslaught = 2725, - - /// - /// avoid_shock_%_while_have_onslaught - /// - AvoidShockPctWhileHaveOnslaught = 2726, - - /// - /// avoid_ignite_%_while_have_onslaught - /// - AvoidIgnitePctWhileHaveOnslaught = 2727, - - /// - /// attack_minimum_added_lightning_damage_while_unarmed - /// - AttackMinimumAddedLightningDamageWhileUnarmed = 2728, - - /// - /// attack_maximum_added_lightning_damage_while_unarmed - /// - AttackMaximumAddedLightningDamageWhileUnarmed = 2729, - - /// - /// spell_minimum_added_lightning_damage_while_unarmed - /// - SpellMinimumAddedLightningDamageWhileUnarmed = 2730, - - /// - /// spell_maximum_added_lightning_damage_while_unarmed - /// - SpellMaximumAddedLightningDamageWhileUnarmed = 2731, - - /// - /// gain_X_energy_shield_on_killing_shocked_enemy - /// - GainXEnergyShieldOnKillingShockedEnemy = 2732, - - /// - /// support_concentrated_effect_skill_area_of_effect_+%_final - /// - SupportConcentratedEffectSkillAreaOfEffectPctFinal = 2733, - - /// - /// elemental_damage_+%_per_frenzy_charge - /// - ElementalDamagePctPerFrenzyCharge = 2734, - - /// - /// chaos_damage_poisons - /// - ChaosDamagePoisons = 2735, - - /// - /// mine_extra_uses - /// - MineExtraUses = 2736, - - /// - /// from_code_active_skill_damage_+%_final - /// - FromCodeActiveSkillDamagePctFinal = 2737, - - /// - /// newshocknova_first_ring_damage_+%_final - /// - NewshocknovaFirstRingDamagePctFinal = 2738, - - /// - /// ice_crash_second_hit_damage_+%_final - /// - IceCrashSecondHitDamagePctFinal = 2739, - - /// - /// killed_monster_dropped_item_rarity_+%_when_frozen - /// - KilledMonsterDroppedItemRarityPctWhenFrozen = 2740, - - /// - /// local_six_linked_sockets - /// - LocalSixLinkedSockets = 2741, - - /// - /// local_display_socketed_gems_get_generosity_level - /// - LocalDisplaySocketedGemsGetGenerosityLevel = 2742, - - /// - /// local_display_socketed_gems_get_remote_mine_level - /// - LocalDisplaySocketedGemsGetRemoteMineLevel = 2743, - - /// - /// local_display_aura_life_regeneration_rate_per_minute_% - /// - LocalDisplayAuraLifeRegenerationRatePerMinutePct = 2744, - - /// - /// local_display_aura_mana_regeneration_rate_+% - /// - LocalDisplayAuraManaRegenerationRatePct = 2745, - - /// - /// unique_insanity_do_weird_things - /// - UniqueInsanityDoWeirdThings = 2746, - - /// - /// base_elemental_damage_heals - /// - BaseElementalDamageHeals = 2747, - - /// - /// base_fire_damage_heals - /// - BaseFireDamageHeals = 2748, - - /// - /// base_cold_damage_heals - /// - BaseColdDamageHeals = 2749, - - /// - /// base_lightning_damage_heals - /// - BaseLightningDamageHeals = 2750, - - /// - /// fire_damage_heals - /// - FireDamageHeals = 2751, - - /// - /// cold_damage_heals - /// - ColdDamageHeals = 2752, - - /// - /// lightning_damage_heals - /// - LightningDamageHeals = 2753, - - /// - /// chance_to_gain_power_charge_on_melee_stun_% - /// - ChanceToGainPowerChargeOnMeleeStunPct = 2754, - - /// - /// gain_unholy_might_for_2_seconds_on_melee_crit - /// - GainUnholyMightFor2SecondsOnMeleeCrit = 2755, - - /// - /// unique_mine_damage_+%_final - /// - UniqueMineDamagePctFinal = 2756, - - /// - /// abyssal_cry_%_max_life_as_chaos_on_death - /// - AbyssalCryPctMaxLifeAsChaosOnDeath = 2757, - - /// - /// ignites_reflected_to_self - /// - IgnitesReflectedToSelf = 2758, - - /// - /// avoid_freeze_chill_ignite_%_while_have_onslaught - /// - AvoidFreezeChillIgnitePctWhileHaveOnslaught = 2759, - - /// - /// sword_physical_damage_%_to_add_as_fire - /// - SwordPhysicalDamagePctToAddAsFire = 2760, - - /// - /// gain_onslaught_when_ignited_ms - /// - GainOnslaughtWhenIgnitedMs = 2761, - - /// - /// blind_nearby_enemies_when_ignited_% - /// - BlindNearbyEnemiesWhenIgnitedPct = 2762, - - /// - /// map_has_weather - /// - MapHasWeather = 2763, - - /// - /// malachai_elemental_cone_spell_minimum_damage - /// - MalachaiElementalConeSpellMinimumDamage = 2764, - - /// - /// malachai_elemental_cone_spell_maximum_damage - /// - MalachaiElementalConeSpellMaximumDamage = 2765, - - /// - /// local_display_socketed_gems_supported_by_pierce_level - /// - LocalDisplaySocketedGemsSupportedByPierceLevel = 2766, - - /// - /// map_non_unique_equipment_drops_as_sell_price - /// - MapNonUniqueEquipmentDropsAsSellPrice = 2767, - - /// - /// local_flask_use_causes_monster_flee_chance_% - /// - LocalFlaskUseCausesMonsterFleeChancePct = 2768, - - /// - /// local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect - /// - LocalUniqueLionsRoarMeleePhysicalDamagePctFinalDuringFlaskEffect = 2769, - - /// - /// unique_lions_roar_melee_physical_damage_+%_final - /// - UniqueLionsRoarMeleePhysicalDamagePctFinal = 2770, - - /// - /// local_flask_adds_knockback_during_flask_effect - /// - LocalFlaskAddsKnockbackDuringFlaskEffect = 2771, - - /// - /// map_items_drop_corrupted - /// - MapItemsDropCorrupted = 2772, - - /// - /// chest_number_of_additional_spider_uniques_to_drop - /// - ChestNumberOfAdditionalSpiderUniquesToDrop = 2773, - - /// - /// Mana Gained On Hit - /// - VirtualManaGainPerTarget = 2774, - - /// - /// life_and_mana_gain_per_hit - /// - LifeAndManaGainPerHit = 2775, - - /// - /// life_and_mana_leech_from_physical_damage_permyriad - /// - LifeAndManaLeechFromPhysicalDamagePermyriad = 2776, - - /// - /// cannot_inflict_status_ailments - /// - CannotInflictStatusAilments = 2777, - - /// - /// map_weapons_drop_animated - /// - MapWeaponsDropAnimated = 2778, - - /// - /// attacks_bleed_on_stun - /// - AttacksBleedOnStun = 2779, - - /// - /// chance_to_fortify_on_melee_hit_+% - /// - ChanceToFortifyOnMeleeHitPct = 2780, - - /// - /// taunt_target_id - /// - TauntTargetId = 2781, - - /// - /// spell_minimum_base_cold_damage_+_per_10_intelligence - /// - SpellMinimumBaseColdDamagePer10Intelligence = 2782, - - /// - /// spell_maximum_base_cold_damage_+_per_10_intelligence - /// - SpellMaximumBaseColdDamagePer10Intelligence = 2783, - - /// - /// skill_effect_duration_+%_per_10_strength - /// - SkillEffectDurationPctPer10Strength = 2784, - - /// - /// virtual_skill_effect_duration_+% - /// - VirtualSkillEffectDurationPct = 2785, - - /// - /// skill_is_fire_skill - /// - SkillIsFireSkill = 2786, - - /// - /// skill_is_cold_skill - /// - SkillIsColdSkill = 2787, - - /// - /// skill_is_lightning_skill - /// - SkillIsLightningSkill = 2788, - - /// - /// ground_slam_cone_angle_override - /// - GroundSlamConeAngleOverride = 2789, - - /// - /// virtual_minion_movement_velocity_+% - /// - VirtualMinionMovementVelocityPct = 2790, - - /// - /// map_disable_torment_spirits - /// - MapDisableTormentSpirits = 2791, - - /// - /// map_spawn_extra_torment_spirits - /// - MapSpawnExtraTormentSpirits = 2792, - - /// - /// use_goddess_player_audio - /// - UseGoddessPlayerAudio = 2793, - - /// - /// local_display_grants_skill_gluttony_of_elements_level - /// - LocalDisplayGrantsSkillGluttonyOfElementsLevel = 2794, - - /// - /// local_display_socketed_gems_get_pierce_level - /// - LocalDisplaySocketedGemsGetPierceLevel = 2795, - - /// - /// damage_with_fire_skills_+% - /// - DamageWithFireSkillsPct = 2796, - - /// - /// damage_with_cold_skills_+% - /// - DamageWithColdSkillsPct = 2797, - - /// - /// damage_with_lightning_skills_+% - /// - DamageWithLightningSkillsPct = 2798, - - /// - /// cast_speed_for_fire_skills_+% - /// - CastSpeedForFireSkillsPct = 2799, - - /// - /// cast_speed_for_cold_skills_+% - /// - CastSpeedForColdSkillsPct = 2800, - - /// - /// cast_speed_for_lightning_skills_+% - /// - CastSpeedForLightningSkillsPct = 2801, - - /// - /// movement_velocity_+%_while_phasing - /// - MovementVelocityPctWhilePhasing = 2802, - - /// - /// phase_on_vaal_skill_use_duration_ms - /// - PhaseOnVaalSkillUseDurationMs = 2803, - - /// - /// monster_inherent_damage_taken_+%_final - /// - MonsterInherentDamageTakenPctFinal = 2804, - - /// - /// taunt_duration_+% - /// - TauntDurationPct = 2805, - - /// - /// cyclone_ice_path_radius - /// - CycloneIcePathRadius = 2806, - - /// - /// unarmed_melee_physical_damage_+% - /// - UnarmedMeleePhysicalDamagePct = 2807, - - /// - /// unarmed_melee_attack_speed_+% - /// - UnarmedMeleeAttackSpeedPct = 2808, - - /// - /// cast_speed_+%_while_holding_shield - /// - CastSpeedPctWhileHoldingShield = 2809, - - /// - /// cast_speed_+%_while_holding_staff - /// - CastSpeedPctWhileHoldingStaff = 2810, - - /// - /// virtual_energy_shield_gain_per_target - /// - VirtualEnergyShieldGainPerTarget = 2811, - - /// - /// energy_shield_gain_per_target - /// - EnergyShieldGainPerTarget = 2812, - - /// - /// axe_critical_strike_chance_+% - /// - AxeCriticalStrikeChancePct = 2813, - - /// - /// claw_critical_strike_multiplier_+ - /// - ClawCriticalStrikeMultiplier = 2814, - - /// - /// staff_critical_strike_multiplier_+ - /// - StaffCriticalStrikeMultiplier = 2815, - - /// - /// local_jewel_effect_base_radius - /// - LocalJewelEffectBaseRadius = 2816, - - /// - /// local_jewel_nearby_passives_str_to_dex - /// - LocalJewelNearbyPassivesStrToDex = 2817, - - /// - /// local_jewel_nearby_passives_dex_to_str - /// - LocalJewelNearbyPassivesDexToStr = 2818, - - /// - /// local_jewel_nearby_passives_str_to_int - /// - LocalJewelNearbyPassivesStrToInt = 2819, - - /// - /// local_jewel_nearby_passives_int_to_str - /// - LocalJewelNearbyPassivesIntToStr = 2820, - - /// - /// local_jewel_nearby_passives_dex_to_int - /// - LocalJewelNearbyPassivesDexToInt = 2821, - - /// - /// local_jewel_nearby_passives_int_to_dex - /// - LocalJewelNearbyPassivesIntToDex = 2822, - - /// - /// critical_strike_chance_while_wielding_shield_+% - /// - CriticalStrikeChanceWhileWieldingShieldPct = 2823, - - /// - /// trap_critical_strike_chance_+% - /// - TrapCriticalStrikeChancePct = 2824, - - /// - /// mine_critical_strike_chance_+% - /// - MineCriticalStrikeChancePct = 2825, - - /// - /// projectiles_can_shotgun - /// - ProjectilesCanShotgun = 2826, - - /// - /// life_recovery_rate_+% - /// - LifeRecoveryRatePct = 2827, - - /// - /// mana_recovery_rate_+% - /// - ManaRecoveryRatePct = 2828, - - /// - /// energy_shield_recovery_rate_+% - /// - EnergyShieldRecoveryRatePct = 2829, - - /// - /// spell_chance_to_shock_frozen_enemies_% - /// - SpellChanceToShockFrozenEnemiesPct = 2830, - - /// - /// cannot_be_taunted - /// - CannotBeTaunted = 2831, - - /// - /// cannot_be_taunted_when_taunted_ms - /// - CannotBeTauntedWhenTauntedMs = 2832, - - /// - /// attacks_do_not_cost_mana - /// - AttacksDoNotCostMana = 2833, - - /// - /// cannot_leech_or_regenerate_mana - /// - CannotLeechOrRegenerateMana = 2834, - - /// - /// virtual_global_cannot_crit - /// - VirtualGlobalCannotCrit = 2835, - - /// - /// virtual_global_attacks_always_hit - /// - VirtualGlobalAttacksAlwaysHit = 2836, - - /// - /// resolute_technique - /// - ResoluteTechnique = 2837, - - /// - /// local_life_and_mana_leech_from_physical_damage_permyriad - /// - LocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2838, - - /// - /// main_hand_local_life_and_mana_leech_from_physical_damage_permyriad - /// - MainHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2839, - - /// - /// off_hand_local_life_and_mana_leech_from_physical_damage_permyriad - /// - OffHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2840, - - /// - /// local_flask_use_causes_area_knockback - /// - LocalFlaskUseCausesAreaKnockback = 2841, - - /// - /// skill_is_chaos_skill - /// - SkillIsChaosSkill = 2842, - - /// - /// critical_strike_multiplier_is_100 - /// - CriticalStrikeMultiplierIs100 = 2843, - - /// - /// can_inflict_multiple_ignites - /// - CanInflictMultipleIgnites = 2844, - - /// - /// ignite_duration_-% - /// - IgniteDurationPct2 = 2845, - - /// - /// passive_can_be_allocated_without_connection - /// - PassiveCanBeAllocatedWithoutConnection = 2846, - - /// - /// local_unique_jewel_nearby_disconnected_passives_can_be_allocated - /// - LocalUniqueJewelNearbyDisconnectedPassivesCanBeAllocated = 2847, - - /// - /// Local Chance To Bleed On Hit % - /// - LocalChanceToBleedOnHitPct = 2848, - - /// - /// main_hand_local_chance_to_bleed_on_hit_% - /// - MainHandLocalChanceToBleedOnHitPct = 2849, - - /// - /// off_hand_local_chance_to_bleed_on_hit_% - /// - OffHandLocalChanceToBleedOnHitPct = 2850, - - /// - /// skill_total_pvp_damage_+%_final - /// - SkillTotalPvpDamagePctFinal = 2851, - - /// - /// fire_critical_strike_chance_+% - /// - FireCriticalStrikeChancePct = 2852, - - /// - /// lightning_critical_strike_chance_+% - /// - LightningCriticalStrikeChancePct = 2853, - - /// - /// cold_critical_strike_chance_+% - /// - ColdCriticalStrikeChancePct = 2854, - - /// - /// elemental_critical_strike_chance_+% - /// - ElementalCriticalStrikeChancePct = 2855, - - /// - /// chaos_critical_strike_chance_+% - /// - ChaosCriticalStrikeChancePct = 2856, - - /// - /// pvp_shield_damage_+%_final - /// - PvpShieldDamagePctFinal = 2857, - - /// - /// skill_area_of_effect_when_unarmed_+% - /// - SkillAreaOfEffectWhenUnarmedPct = 2858, - - /// - /// gain_X_random_rare_monster_mods_on_kill - /// - GainXRandomRareMonsterModsOnKill = 2859, - - /// - /// chance_to_gain_power_charge_on_stun_% - /// - ChanceToGainPowerChargeOnStunPct = 2860, - - /// - /// gain_unholy_might_for_2_seconds_on_crit - /// - GainUnholyMightFor2SecondsOnCrit = 2861, - - /// - /// monster_life_+%_final_from_rarity - /// - MonsterLifePctFinalFromRarity = 2862, - - /// - /// monster_life_+%_final_from_map - /// - MonsterLifePctFinalFromMap = 2863, - - /// - /// melee_critical_strike_multiplier_+_while_wielding_shield - /// - MeleeCriticalStrikeMultiplierWhileWieldingShield = 2864, - - /// - /// trap_critical_strike_multiplier_+ - /// - TrapCriticalStrikeMultiplier = 2865, - - /// - /// mine_critical_strike_multiplier_+ - /// - MineCriticalStrikeMultiplier = 2866, - - /// - /// fire_critical_strike_multiplier_+ - /// - FireCriticalStrikeMultiplier = 2867, - - /// - /// lightning_critical_strike_multiplier_+ - /// - LightningCriticalStrikeMultiplier = 2868, - - /// - /// cold_critical_strike_multiplier_+ - /// - ColdCriticalStrikeMultiplier = 2869, - - /// - /// elemental_critical_strike_multiplier_+ - /// - ElementalCriticalStrikeMultiplier = 2870, - - /// - /// chaos_critical_strike_multiplier_+ - /// - ChaosCriticalStrikeMultiplier = 2871, - - /// - /// cast_speed_for_chaos_skills_+% - /// - CastSpeedForChaosSkillsPct = 2872, - - /// - /// spell_block_while_dual_wielding_% - /// - SpellBlockWhileDualWieldingPct = 2873, - - /// - /// spell_block_with_staff_% - /// - SpellBlockWithStaffPct = 2874, - - /// - /// recover_%_maximum_life_when_corpse_destroyed_or_consumed - /// - RecoverPctMaximumLifeWhenCorpseDestroyedOrConsumed = 2875, - - /// - /// local_unique_jewel_totem_life_+X%_per_10_str_in_radius - /// - LocalUniqueJewelTotemLifeXpctPer10StrInRadius = 2876, - - /// - /// minion_chance_to_dodge_% - /// - MinionChanceToDodgePct = 2877, - - /// - /// local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill - /// - LocalUniqueJewelWith4NotablesGainXRandomRareMonsterModsOnKill = 2878, - - /// - /// minimum_added_fire_damage_per_active_buff - /// - MinimumAddedFireDamagePerActiveBuff = 2879, - - /// - /// maximum_added_fire_damage_per_active_buff - /// - MaximumAddedFireDamagePerActiveBuff = 2880, - - /// - /// recover_%_of_maximum_life_on_block - /// - RecoverPctOfMaximumLifeOnBlock = 2881, - - /// - /// minion_recover_%_of_maximum_life_on_block - /// - MinionRecoverPctOfMaximumLifeOnBlock = 2882, - - /// - /// totems_cannot_be_stunned - /// - TotemsCannotBeStunned = 2883, - - /// - /// is_leeching - /// - IsLeeching = 2884, - - /// - /// damage_+%_while_leeching - /// - DamagePctWhileLeeching = 2885, - - /// - /// is_life_leeching - /// - IsLifeLeeching = 2886, - - /// - /// is_mana_leeching - /// - IsManaLeeching = 2887, - - /// - /// is_es_leeching - /// - IsEsLeeching = 2888, - - /// - /// movement_velocity_+%_while_ignited - /// - MovementVelocityPctWhileIgnited = 2889, - - /// - /// bow_damage_+% - /// - BowDamagePct = 2890, - - /// - /// display_bow_range_+ - /// - DisplayBowRange = 2891, - - /// - /// bleed_on_bow_attack_chance_% - /// - BleedOnBowAttackChancePct = 2892, - - /// - /// bow_physical_damage_+%_while_holding_shield - /// - BowPhysicalDamagePctWhileHoldingShield = 2893, - - /// - /// bow_steal_power_frenzy_endurance_charges_on_hit_% - /// - BowStealPowerFrenzyEnduranceChargesOnHitPct = 2894, - - /// - /// life_leech_from_physical_damage_with_bow_permyriad - /// - LifeLeechFromPhysicalDamageWithBowPermyriad = 2895, - - /// - /// mana_leech_from_physical_damage_with_bow_permyriad - /// - ManaLeechFromPhysicalDamageWithBowPermyriad = 2896, - - /// - /// poison_on_critical_strike_with_bow - /// - PoisonOnCriticalStrikeWithBow = 2897, - - /// - /// bow_elemental_damage_+% - /// - BowElementalDamagePct = 2898, - - /// - /// with_bow_additional_block_% - /// - WithBowAdditionalBlockPct = 2899, - - /// - /// bow_enemy_block_-% - /// - BowEnemyBlockPct = 2900, - - /// - /// local_unique_jewel_melee_applies_to_bow - /// - LocalUniqueJewelMeleeAppliesToBow = 2901, - - /// - /// local_unique_jewel_chaos_damage_+%_per_10_int_in_radius - /// - LocalUniqueJewelChaosDamagePctPer10IntInRadius = 2902, - - /// - /// local_unique_jewel_passives_in_radius_applied_to_minions_instead - /// - LocalUniqueJewelPassivesInRadiusAppliedToMinionsInstead = 2903, - - /// - /// life_gained_on_hit_per_enemy_status_ailment - /// - LifeGainedOnHitPerEnemyStatusAilment = 2904, - - /// - /// life_gained_on_spell_hit_per_enemy_status_ailment - /// - LifeGainedOnSpellHitPerEnemyStatusAilment = 2905, - - /// - /// life_regeneration_rate_+%_while_es_full - /// - LifeRegenerationRatePctWhileEsFull = 2906, - - /// - /// local_unique_jewel_with_x_int_in_radius_+1_curse - /// - LocalUniqueJewelWithXIntInRadius1Curse = 2907, - - /// - /// melee_range_+_while_unarmed - /// - MeleeRangeWhileUnarmed = 2908, - - /// - /// damage_+%_per_equipped_magic_item - /// - DamagePctPerEquippedMagicItem = 2909, - - /// - /// number_of_equipped_magic_items - /// - NumberOfEquippedMagicItems = 2910, - - /// - /// base_number_of_golems_allowed - /// - BaseNumberOfGolemsAllowed = 2911, - - /// - /// number_of_golems_allowed - /// - NumberOfGolemsAllowed = 2912, - - /// - /// fire_golem_grants_damage_+% - /// - FireGolemGrantsDamagePct = 2913, - - /// - /// ice_golem_grants_critical_strike_chance_+% - /// - IceGolemGrantsCriticalStrikeChancePct = 2914, - - /// - /// ice_golem_grants_accuracy_+% - /// - IceGolemGrantsAccuracyPct = 2915, - - /// - /// chaos_golem_grants_additional_physical_damage_reduction_% - /// - ChaosGolemGrantsAdditionalPhysicalDamageReductionPct = 2916, - - /// - /// spell_damage_+%_while_es_full - /// - SpellDamagePctWhileEsFull = 2917, - - /// - /// virtual_number_of_additional_projectiles - /// - VirtualNumberOfAdditionalProjectiles = 2918, - - /// - /// totem_number_of_additional_projectiles - /// - TotemNumberOfAdditionalProjectiles = 2919, - - /// - /// chance_to_dodge_spells_%_while_es_full - /// - ChanceToDodgeSpellsPctWhileEsFull = 2920, - - /// - /// chance_to_gain_unholy_might_on_melee_kill_% - /// - ChanceToGainUnholyMightOnMeleeKillPct = 2921, - - /// - /// spell_damage_+%_while_no_mana_reserved - /// - SpellDamagePctWhileNoManaReserved = 2922, - - /// - /// mana_reserved - /// - ManaReserved = 2923, - - /// - /// spell_damage_+%_while_not_low_mana - /// - SpellDamagePctWhileNotLowMana = 2924, - - /// - /// mana_cost_+%_while_not_low_mana - /// - ManaCostPctWhileNotLowMana = 2925, - - /// - /// local_display_grants_skill_icestorm_level - /// - LocalDisplayGrantsSkillIcestormLevel = 2926, - - /// - /// spell_damage_+%_per_10_int - /// - SpellDamagePctPer10Int = 2927, - - /// - /// virtual_firestorm_drop_chilled_ground_duration_ms - /// - VirtualFirestormDropChilledGroundDurationMs = 2928, - - /// - /// virtual_firestorm_drop_shocked_ground_duration_ms - /// - VirtualFirestormDropShockedGroundDurationMs = 2929, - - /// - /// virtual_firestorm_drop_burning_ground_duration_ms - /// - VirtualFirestormDropBurningGroundDurationMs = 2930, - - /// - /// number_of_assigned_keystones - /// - NumberOfAssignedKeystones = 2931, - - /// - /// all_attributes_+%_per_assigned_keystone - /// - AllAttributesPctPerAssignedKeystone = 2932, - - /// - /// number_of_additional_clones - /// - NumberOfAdditionalClones = 2933, - - /// - /// damage_taken_+%_from_hits - /// - DamageTakenPctFromHits = 2934, - - /// - /// chance_to_gain_frenzy_charge_on_killing_frozen_enemy_% - /// - ChanceToGainFrenzyChargeOnKillingFrozenEnemyPct = 2935, - - /// - /// damage_+%_vs_frozen_enemies - /// - DamagePctVsFrozenEnemies = 2936, - - /// - /// support_hypothermia_damage_+%_vs_chilled_enemies_final - /// - SupportHypothermiaDamagePctVsChilledEnemiesFinal = 2937, - - /// - /// additional_chance_to_freeze_chilled_enemies_% - /// - AdditionalChanceToFreezeChilledEnemiesPct = 2938, - - /// - /// onslaught_time_granted_on_killing_shocked_enemy_ms - /// - OnslaughtTimeGrantedOnKillingShockedEnemyMs = 2939, - - /// - /// support_hypothermia_damage_+%_final - /// - SupportHypothermiaDamagePctFinal = 2940, - - /// - /// object_inherent_attack_skills_damage_+%_final_per_frenzy_charge - /// - ObjectInherentAttackSkillsDamagePctFinalPerFrenzyCharge = 2941, - - /// - /// skill_effect_duration_per_100_int - /// - SkillEffectDurationPer100Int = 2942, - - /// - /// local_unique_jewel_intelligence_per_unallocated_node_in_radius - /// - LocalUniqueJewelIntelligencePerUnallocatedNodeInRadius = 2943, - - /// - /// local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_% - /// - LocalUniqueJewelWith70DexPhysicalDamageToAddAsChaosPct = 2944, - - /// - /// local_unique_jewel_with_70_str_life_recovery_speed_+% - /// - LocalUniqueJewelWith70StrLifeRecoverySpeedPct = 2945, - - /// - /// cannot_be_cursed_with_silence - /// - CannotBeCursedWithSilence = 2946, - - /// - /// number_of_equipped_corrupted_items - /// - NumberOfEquippedCorruptedItems = 2947, - - /// - /// vaal_skill_damage_+% - /// - VaalSkillDamagePct = 2948, - - /// - /// skill_is_vaal_skill - /// - SkillIsVaalSkill = 2949, - - /// - /// damage_+%_while_dead - /// - DamagePctWhileDead = 2950, - - /// - /// chaos_damage_+%_per_equipped_corrupted_item - /// - ChaosDamagePctPerEquippedCorruptedItem = 2951, - - /// - /// life_leech_speed_+%_per_equipped_corrupted_item - /// - LifeLeechSpeedPctPerEquippedCorruptedItem = 2952, - - /// - /// virtual_life_leech_speed_+% - /// - VirtualLifeLeechSpeedPct = 2953, - - /// - /// mana_leech_speed_+%_per_equipped_corrupted_item - /// - ManaLeechSpeedPctPerEquippedCorruptedItem = 2954, - - /// - /// virtual_mana_leech_speed_+% - /// - VirtualManaLeechSpeedPct = 2955, - - /// - /// skill_is_attack - /// - SkillIsAttack = 2956, - - /// - /// hundred_times_non_spell_casts_per_second - /// - HundredTimesNonSpellCastsPerSecond = 2957, - - /// - /// sound_on_rare_kill_ice_whisper - /// - SoundOnRareKillIceWhisper = 2958, - - /// - /// chance_to_gain_vaal_soul_on_kill_% - /// - ChanceToGainVaalSoulOnKillPct = 2959, - - /// - /// piety_fire_form_hits_cause_stacking_damage_taken - /// - PietyFireFormHitsCauseStackingDamageTaken = 2960, - - /// - /// vaal_skill_effect_duration_+% - /// - VaalSkillEffectDurationPct = 2961, - - /// - /// energy_shield_protects_mana - /// - EnergyShieldProtectsMana = 2962, - - /// - /// spend_energy_shield_for_costs_before_mana - /// - SpendEnergyShieldForCostsBeforeMana = 2963, - - /// - /// vaal_skill_critical_strike_chance_+% - /// - VaalSkillCriticalStrikeChancePct = 2964, - - /// - /// local_unique_item_limit - /// - LocalUniqueItemLimit = 2965, - - /// - /// vaal_skill_critical_strike_multiplier_+ - /// - VaalSkillCriticalStrikeMultiplier = 2966, - - /// - /// local_display_aura_allies_have_culling_strike - /// - LocalDisplayAuraAlliesHaveCullingStrike = 2967, - - /// - /// local_display_aura_allies_have_increased_item_rarity_+% - /// - LocalDisplayAuraAlliesHaveIncreasedItemRarityPct = 2968, - - /// - /// chance_to_gain_vaal_soul_on_enemy_shatter_% - /// - ChanceToGainVaalSoulOnEnemyShatterPct = 2969, - - /// - /// mana_cost_+%_on_totemified_aura_skills - /// - ManaCostPctOnTotemifiedAuraSkills = 2970, - - /// - /// skill_is_aura_skill - /// - SkillIsAuraSkill = 2971, - - /// - /// corrupted_gem_experience_gain_+% - /// - CorruptedGemExperienceGainPct = 2972, - - /// - /// active_skill_attack_damage_final_permyriad - /// - ActiveSkillAttackDamageFinalPermyriad = 2973, - - /// - /// fortify_duration_+% - /// - FortifyDurationPct = 2974, - - /// - /// support_slower_projectiles_damage_+%_final - /// - SupportSlowerProjectilesDamagePctFinal = 2975, - - /// - /// chance_to_evade_melee_attacks_+% - /// - ChanceToEvadeMeleeAttacksPct = 2976, - - /// - /// support_elemental_proliferation_damage_+%_final - /// - SupportElementalProliferationDamagePctFinal = 2977, - - /// - /// flicker_strike_more_attack_speed_+%_final - /// - FlickerStrikeMoreAttackSpeedPctFinal = 2978, - - /// - /// support_minion_damage_+%_final - /// - SupportMinionDamagePctFinal = 2979, - - /// - /// life_leech_uses_chaos_damage_when_X_corrupted_items_equipped - /// - LifeLeechUsesChaosDamageWhenXCorruptedItemsEquipped = 2980, - - /// - /// half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped - /// - HalfPhysicalBypassesEsHalfChaosDamagesEsWhenXCorruptedItemsEquipped = 2981, - - /// - /// chaos_damage_damages_energy_shield_% - /// - ChaosDamageDamagesEnergyShieldPct = 2982, - - /// - /// physical_damage_bypass_energy_shield_% - /// - PhysicalDamageBypassEnergyShieldPct = 2983, - - /// - /// gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms - /// - GainSoulEaterWithEquippedCorruptedItemsOnVaalSkillUseMs = 2984, - - /// - /// base_spell_lightning_damage_+% - /// - BaseSpellLightningDamagePct = 2985, - - /// - /// wrath_aura_spell_lightning_damage_+%_final - /// - WrathAuraSpellLightningDamagePctFinal = 2986, - - /// - /// support_slower_projectiles_projectile_speed_+%_final - /// - SupportSlowerProjectilesProjectileSpeedPctFinal = 2987, - - /// - /// support_reduced_duration_skill_effect_duration_+%_final - /// - SupportReducedDurationSkillEffectDurationPctFinal = 2988, - - /// - /// maximum_mana_%_gained_on_kill - /// - MaximumManaPctGainedOnKill = 2989, - - /// - /// maximum_life_%_lost_on_kill - /// - MaximumLifePctLostOnKill = 2990, - - /// - /// maximum_energy_shield_%_lost_on_kill - /// - MaximumEnergyShieldPctLostOnKill = 2991, - - /// - /// passive_applies_to_minions - /// - PassiveAppliesToMinions = 2992, - - /// - /// chance_to_curse_self_with_punishment_on_kill_% - /// - ChanceToCurseSelfWithPunishmentOnKillPct = 2993, - - /// - /// damage_taken_+%_while_es_full - /// - DamageTakenPctWhileEsFull = 2994, - - /// - /// base_deal_no_damage - /// - BaseDealNoDamage = 2995, - - /// - /// voll_slam_damage_+%_final_at_centre - /// - VollSlamDamagePctFinalAtCentre = 2996, - - /// - /// local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius - /// - LocalUniqueJewelEvasionRatingPctPerXDexInRadius = 2997, - - /// - /// local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius - /// - LocalUniqueJewelClawPhysicalDamagePctPerXDexInRadius = 2998, - - /// - /// local_unique_jewel_damage_increases_applies_to_fire_damage - /// - LocalUniqueJewelDamageIncreasesAppliesToFireDamage = 2999, - - /// - /// fire_sword_damage_+% - /// - FireSwordDamagePct = 3000, - - /// - /// fire_wand_damage_+% - /// - FireWandDamagePct = 3001, - - /// - /// two_handed_melee_fire_damage_+% - /// - TwoHandedMeleeFireDamagePct = 3002, - - /// - /// spell_fire_damage_+% - /// - SpellFireDamagePct = 3003, - - /// - /// melee_fire_damage_+%_while_holding_shield - /// - MeleeFireDamagePctWhileHoldingShield = 3004, - - /// - /// fire_staff_damage_+% - /// - FireStaffDamagePct = 3005, - - /// - /// fire_mace_damage_+% - /// - FireMaceDamagePct = 3006, - - /// - /// fire_damage_while_dual_wielding_+% - /// - FireDamageWhileDualWieldingPct = 3007, - - /// - /// fire_dagger_damage_+% - /// - FireDaggerDamagePct = 3008, - - /// - /// fire_claw_damage_+% - /// - FireClawDamagePct = 3009, - - /// - /// fire_bow_damage_+% - /// - FireBowDamagePct = 3010, - - /// - /// fire_axe_damage_+% - /// - FireAxeDamagePct = 3011, - - /// - /// fire_attack_damage_+% - /// - FireAttackDamagePct = 3012, - - /// - /// one_handed_melee_fire_damage_+% - /// - OneHandedMeleeFireDamagePct = 3013, - - /// - /// melee_fire_damage_+% - /// - MeleeFireDamagePct = 3014, - - /// - /// fire_damage_over_time_+% - /// - FireDamageOverTimePct = 3015, - - /// - /// local_unique_jewel_physical_damage_increases_applies_to_cold_damage - /// - LocalUniqueJewelPhysicalDamageIncreasesAppliesToColdDamage = 3016, - - /// - /// cold_sword_damage_+% - /// - ColdSwordDamagePct = 3017, - - /// - /// cold_wand_damage_+% - /// - ColdWandDamagePct = 3018, - - /// - /// two_handed_melee_cold_damage_+% - /// - TwoHandedMeleeColdDamagePct = 3019, - - /// - /// spell_cold_damage_+% - /// - SpellColdDamagePct = 3020, - - /// - /// melee_cold_damage_+%_while_holding_shield - /// - MeleeColdDamagePctWhileHoldingShield = 3021, - - /// - /// cold_staff_damage_+% - /// - ColdStaffDamagePct = 3022, - - /// - /// cold_mace_damage_+% - /// - ColdMaceDamagePct = 3023, - - /// - /// cold_damage_while_dual_wielding_+% - /// - ColdDamageWhileDualWieldingPct = 3024, - - /// - /// cold_dagger_damage_+% - /// - ColdDaggerDamagePct = 3025, - - /// - /// cold_claw_damage_+% - /// - ColdClawDamagePct = 3026, - - /// - /// cold_bow_damage_+% - /// - ColdBowDamagePct = 3027, - - /// - /// cold_axe_damage_+% - /// - ColdAxeDamagePct = 3028, - - /// - /// cold_attack_damage_+% - /// - ColdAttackDamagePct = 3029, - - /// - /// one_handed_melee_cold_damage_+% - /// - OneHandedMeleeColdDamagePct = 3030, - - /// - /// melee_cold_damage_+% - /// - MeleeColdDamagePct = 3031, - - /// - /// cold_damage_over_time_+% - /// - ColdDamageOverTimePct = 3032, - - /// - /// additional_staff_block_% - /// - AdditionalStaffBlockPct = 3033, - - /// - /// local_unique_jewel_cold_damage_increases_applies_to_physical_damage - /// - LocalUniqueJewelColdDamageIncreasesAppliesToPhysicalDamage = 3034, - - /// - /// local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex - /// - LocalUniqueJewelOneAdditionalMaximumLightningDamagePerXDex = 3035, - - /// - /// local_unique_jewel_additional_life_per_X_int_in_radius - /// - LocalUniqueJewelAdditionalLifePerXIntInRadius = 3036, - - /// - /// local_unique_jewel_chaos_damage_+%_per_X_int_in_radius - /// - LocalUniqueJewelChaosDamagePctPerXIntInRadius = 3037, - - /// - /// local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius - /// - LocalUniqueJewelChillFreezeDurationPctPerXDexInRadius = 3038, - - /// - /// local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius - /// - LocalUniqueJewelDexAndIntApplyToStrMeleeDamageBonusInRadius = 3039, - - /// - /// melee_damage_bonus_attributes_from_jewels - /// - MeleeDamageBonusAttributesFromJewels = 3040, - - /// - /// kaom_number_of_spawners_triggered - /// - KaomNumberOfSpawnersTriggered = 3041, - - /// - /// melee_damage_vs_bleeding_enemies_+% - /// - MeleeDamageVsBleedingEnemiesPct = 3042, - - /// - /// number_of_active_buffs - /// - NumberOfActiveBuffs = 3043, - - /// - /// fire_mortar_second_hit_damage_+%_final - /// - FireMortarSecondHitDamagePctFinal = 3044, - - /// - /// support_trap_and_mine_damage_+%_final - /// - SupportTrapAndMineDamagePctFinal = 3045, - - /// - /// active_skill_minion_added_damage_+%_final - /// - ActiveSkillMinionAddedDamagePctFinal = 3046, - - /// - /// minion_added_damage_+%_final_from_skill - /// - MinionAddedDamagePctFinalFromSkill = 3047, - - /// - /// newpunishment_melee_physical_damage_+%_final - /// - NewpunishmentMeleePhysicalDamagePctFinal = 3048, - - /// - /// physical_damage_+%_while_life_leeching - /// - PhysicalDamagePctWhileLifeLeeching = 3049, - - /// - /// spell_staff_damage_+% - /// - SpellStaffDamagePct = 3050, - - /// - /// spell_damage_+%_while_holding_shield - /// - SpellDamagePctWhileHoldingShield = 3051, - - /// - /// spell_damage_+%_while_dual_wielding - /// - SpellDamagePctWhileDualWielding = 3052, - - /// - /// cyclone_places_ground_fire_damage_per_minute - /// - CyclonePlacesGroundFireDamagePerMinute = 3053, - - /// - /// newpunishment_melee_damage_+%_final - /// - NewpunishmentMeleeDamagePctFinal = 3054, - - /// - /// newpunishment_attack_speed_+% - /// - NewpunishmentAttackSpeedPct = 3055, - - /// - /// base_strength_and_dexterity - /// - BaseStrengthAndDexterity = 3056, - - /// - /// base_strength_and_intelligence - /// - BaseStrengthAndIntelligence = 3057, - - /// - /// base_dexterity_and_intelligence - /// - BaseDexterityAndIntelligence = 3058, - - /// - /// base_physical_damage_%_of_maximum_life_to_deal_per_minute - /// - BasePhysicalDamagePctOfMaximumLifeToDealPerMinute = 3059, - - /// - /// has_fortify - /// - HasFortify = 3060, - - /// - /// physical_damage_reduction_rating_+%_while_fortify_is_active - /// - PhysicalDamageReductionRatingPctWhileFortifyIsActive = 3061, - - /// - /// evasion_rating_+%_while_onslaught_is_active - /// - EvasionRatingPctWhileOnslaughtIsActive = 3062, - - /// - /// fortify_effect_+% - /// - FortifyEffectPct = 3063, - - /// - /// melee_physical_damage_+%_while_fortify_is_active - /// - MeleePhysicalDamagePctWhileFortifyIsActive = 3064, - - /// - /// local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius - /// - LocalUniqueJewelUnarmedDamagePctPerXDexInRadius = 3065, - - /// - /// increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem - /// - IncreasedCriticalStrikeChanceBuffForXMillisecondsOnPlacingATotem = 3066, - - /// - /// %_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy - /// - PctChanceToGainPowerChargeOnTrapTriggeredByAnEnemy = 3067, - - /// - /// %_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy - /// - PctChanceToGainPowerChargeOnMineDetonatedTargetingAnEnemy = 3068, - - /// - /// totem_critical_strike_chance_+% - /// - TotemCriticalStrikeChancePct = 3069, - - /// - /// totem_critical_strike_multiplier_+ - /// - TotemCriticalStrikeMultiplier = 3070, - - /// - /// damage_+%_per_active_curse_on_self - /// - DamagePctPerActiveCurseOnSelf = 3071, - - /// - /// map_force_topology - /// - MapForceTopology = 3072, - - /// - /// maximum_life_leech_rate_%_per_minute - /// - MaximumLifeLeechRatePctPerMinute = 3073, - - /// - /// maximum_mana_leech_rate_%_per_minute - /// - MaximumManaLeechRatePctPerMinute = 3074, - - /// - /// chill_enemy_when_hit_duration_ms - /// - ChillEnemyWhenHitDurationMs = 3075, - - /// - /// ice_crash_third_hit_damage_+%_final - /// - IceCrashThirdHitDamagePctFinal = 3076, - - /// - /// newpunishment_applied_buff_duration_ms - /// - NewpunishmentAppliedBuffDurationMs = 3077, - - /// - /// recover_X_life_on_block - /// - RecoverXLifeOnBlock = 3078, - - /// - /// minion_recover_X_life_on_block - /// - MinionRecoverXLifeOnBlock = 3079, - - /// - /// base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute - /// - BasePhysicalDamagePctOfMaximumEnergyShieldToDealPerMinute = 3080, - - /// - /// base_physical_damage_%_of_maximum_energy_shield_taken_per_minute - /// - BasePhysicalDamagePctOfMaximumEnergyShieldTakenPerMinute = 3081, - - /// - /// minimum_added_fire_attack_damage_per_active_buff - /// - MinimumAddedFireAttackDamagePerActiveBuff = 3082, - - /// - /// maximum_added_fire_attack_damage_per_active_buff - /// - MaximumAddedFireAttackDamagePerActiveBuff = 3083, - - /// - /// minimum_added_fire_spell_damage_per_active_buff - /// - MinimumAddedFireSpellDamagePerActiveBuff = 3084, - - /// - /// maximum_added_fire_spell_damage_per_active_buff - /// - MaximumAddedFireSpellDamagePerActiveBuff = 3085, - - /// - /// revenant_revive_explode_damage_% - /// - RevenantReviveExplodeDamagePct = 3086, - - /// - /// new_arctic_armour_physical_damage_taken_when_hit_+%_final - /// - NewArcticArmourPhysicalDamageTakenWhenHitPctFinal = 3087, - - /// - /// new_arctic_armour_fire_damage_taken_when_hit_+%_final - /// - NewArcticArmourFireDamageTakenWhenHitPctFinal = 3088, - - /// - /// firestorm_use_server_effects - /// - FirestormUseServerEffects = 3089, - - /// - /// monster_no_map_drops - /// - MonsterNoMapDrops = 3090, - - /// - /// Local Life Gain Per Target - /// - LocalLifeGainPerTarget = 3091, - - /// - /// base_main_hand_local_life_gain_per_target - /// - BaseMainHandLocalLifeGainPerTarget = 3092, - - /// - /// base_off_hand_local_life_gain_per_target - /// - BaseOffHandLocalLifeGainPerTarget = 3093, - - /// - /// Local Mana Gain Per Target - /// - LocalManaGainPerTarget = 3094, - - /// - /// base_main_hand_local_mana_gain_per_target - /// - BaseMainHandLocalManaGainPerTarget = 3095, - - /// - /// base_off_hand_local_mana_gain_per_target - /// - BaseOffHandLocalManaGainPerTarget = 3096, - - /// - /// local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect - /// - LocalUniqueChaosDamageDoesNotBypassEnergyShieldDuringFlaskEffect = 3097, - - /// - /// local_unique_remove_life_and_regen_es_from_removed_life - /// - LocalUniqueRemoveLifeAndRegenEsFromRemovedLife = 3098, - - /// - /// local_unique_regen_es_from_removed_life_duration_ms - /// - LocalUniqueRegenEsFromRemovedLifeDurationMs = 3099, - - /// - /// elemental_strike_physical_damage_%_to_convert - /// - ElementalStrikePhysicalDamagePctToConvert = 3100, - - /// - /// main_hand_local_life_gain_per_target - /// - MainHandLocalLifeGainPerTarget = 3101, - - /// - /// off_hand_local_life_gain_per_target - /// - OffHandLocalLifeGainPerTarget = 3102, - - /// - /// local_life_and_mana_gain_per_target - /// - LocalLifeAndManaGainPerTarget = 3103, - - /// - /// base_main_hand_local_life_and_mana_gain_per_target - /// - BaseMainHandLocalLifeAndManaGainPerTarget = 3104, - - /// - /// base_off_hand_local_life_and_mana_gain_per_target - /// - BaseOffHandLocalLifeAndManaGainPerTarget = 3105, - - /// - /// main_hand_local_mana_gain_per_target - /// - MainHandLocalManaGainPerTarget = 3106, - - /// - /// off_hand_local_mana_gain_per_target - /// - OffHandLocalManaGainPerTarget = 3107, - - /// - /// Local Life Leech From Physical Damage Permyriad - /// - LocalLifeLeechFromPhysicalDamagePermyriad = 3108, - - /// - /// main_hand_local_life_leech_from_physical_damage_permyriad - /// - MainHandLocalLifeLeechFromPhysicalDamagePermyriad = 3109, - - /// - /// off_hand_local_life_leech_from_physical_damage_permyriad - /// - OffHandLocalLifeLeechFromPhysicalDamagePermyriad = 3110, - - /// - /// local_mana_leech_from_physical_damage_permyriad - /// - LocalManaLeechFromPhysicalDamagePermyriad = 3111, - - /// - /// main_hand_local_mana_leech_from_physical_damage_permyriad - /// - MainHandLocalManaLeechFromPhysicalDamagePermyriad = 3112, - - /// - /// off_hand_local_mana_leech_from_physical_damage_permyriad - /// - OffHandLocalManaLeechFromPhysicalDamagePermyriad = 3113, - - /// - /// life_leech_from_physical_attack_damage_permyriad - /// - LifeLeechFromPhysicalAttackDamagePermyriad = 3114, - - /// - /// mana_leech_from_physical_attack_damage_permyriad - /// - ManaLeechFromPhysicalAttackDamagePermyriad = 3115, - - /// - /// local_flask_life_leech_permyriad_while_healing - /// - LocalFlaskLifeLeechPermyriadWhileHealing = 3116, - - /// - /// local_flask_mana_leech_permyriad_while_healing - /// - LocalFlaskManaLeechPermyriadWhileHealing = 3117, - - /// - /// base_life_leech_from_spell_damage_permyriad - /// - BaseLifeLeechFromSpellDamagePermyriad = 3118, - - /// - /// base_mana_leech_from_spell_damage_permyriad - /// - BaseManaLeechFromSpellDamagePermyriad = 3119, - - /// - /// life_leech_from_spell_damage_permyriad - /// - LifeLeechFromSpellDamagePermyriad = 3120, - - /// - /// mana_leech_from_spell_damage_permyriad - /// - ManaLeechFromSpellDamagePermyriad = 3121, - - /// - /// mana_leech_from_physical_damage_permyriad_per_power_charge - /// - ManaLeechFromPhysicalDamagePermyriadPerPowerCharge = 3122, - - /// - /// global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item - /// - GlobalManaLeechFromPhysicalAttackDamagePermyriadPerBlueSocketOnItem = 3123, - - /// - /// base_mana_leech_permyriad_vs_shocked_enemies - /// - BaseManaLeechPermyriadVsShockedEnemies = 3124, - - /// - /// base_life_leech_permyriad_vs_frozen_enemies - /// - BaseLifeLeechPermyriadVsFrozenEnemies = 3125, - - /// - /// mana_leech_permyriad_vs_shocked_enemies - /// - ManaLeechPermyriadVsShockedEnemies = 3126, - - /// - /// life_leech_permyriad_vs_frozen_enemies - /// - LifeLeechPermyriadVsFrozenEnemies = 3127, - - /// - /// base_life_leech_from_physical_damage_permyriad - /// - BaseLifeLeechFromPhysicalDamagePermyriad = 3128, - - /// - /// base_life_leech_from_fire_damage_permyriad - /// - BaseLifeLeechFromFireDamagePermyriad = 3129, - - /// - /// base_life_leech_from_cold_damage_permyriad - /// - BaseLifeLeechFromColdDamagePermyriad = 3130, - - /// - /// base_life_leech_from_lightning_damage_permyriad - /// - BaseLifeLeechFromLightningDamagePermyriad = 3131, - - /// - /// base_mana_leech_from_lightning_damage_permyriad - /// - BaseManaLeechFromLightningDamagePermyriad = 3132, - - /// - /// local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing - /// - LocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 3133, - - /// - /// base_life_leech_from_elemental_damage_permyriad - /// - BaseLifeLeechFromElementalDamagePermyriad = 3134, - - /// - /// life_leech_permyriad_on_crit - /// - LifeLeechPermyriadOnCrit = 3135, - - /// - /// base_life_leech_permyriad_vs_shocked_enemies - /// - BaseLifeLeechPermyriadVsShockedEnemies = 3136, - - /// - /// life_leech_permyriad_vs_shocked_enemies - /// - LifeLeechPermyriadVsShockedEnemies = 3137, - - /// - /// base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies - /// - BaseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3138, - - /// - /// life_leech_from_physical_damage_with_claw_permyriad - /// - LifeLeechFromPhysicalDamageWithClawPermyriad = 3139, - - /// - /// minion_life_leech_from_any_damage_permyriad - /// - MinionLifeLeechFromAnyDamagePermyriad = 3140, - - /// - /// mana_leech_from_physical_damage_with_claw_permyriad - /// - ManaLeechFromPhysicalDamageWithClawPermyriad = 3141, - - /// - /// life_leech_from_attack_damage_permyriad_vs_chilled_enemies - /// - LifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3142, - - /// - /// map_summon_exploding_buff_storms - /// - MapSummonExplodingBuffStorms = 3143, - - /// - /// map_items_have_random_quality - /// - MapItemsHaveRandomQuality = 3144, - - /// - /// map_summon_runic_circles - /// - MapSummonRunicCircles = 3145, - - /// - /// map_spawn_warbands - /// - MapSpawnWarbands = 3146, - - /// - /// chance_to_gain_endurance_charge_on_bow_crit_% - /// - ChanceToGainEnduranceChargeOnBowCritPct = 3147, - - /// - /// global_critical_strike_chance_+%_while_holding_bow - /// - GlobalCriticalStrikeChancePctWhileHoldingBow = 3148, - - /// - /// global_critical_strike_multiplier_+_while_holding_bow - /// - GlobalCriticalStrikeMultiplierWhileHoldingBow = 3149, - - /// - /// map_spawn_extra_warbands - /// - MapSpawnExtraWarbands = 3150, - - /// - /// soul_is_consumed_on_death - /// - SoulIsConsumedOnDeath = 3151, - - /// - /// some_passives_apply_to_minions - /// - SomePassivesApplyToMinions = 3152, - - /// - /// damage_+%_with_movement_skills - /// - DamagePctWithMovementSkills = 3153, - - /// - /// attack_speed_+%_with_movement_skills - /// - AttackSpeedPctWithMovementSkills = 3154, - - /// - /// life_gained_on_killing_ignited_enemies - /// - LifeGainedOnKillingIgnitedEnemies = 3155, - - /// - /// damage_taken_+%_from_skeletons - /// - DamageTakenPctFromSkeletons = 3156, - - /// - /// damage_taken_+%_from_ghosts - /// - DamageTakenPctFromGhosts = 3157, - - /// - /// skill_is_movement_skill - /// - SkillIsMovementSkill = 3158, - - /// - /// cannot_be_shocked_while_frozen - /// - CannotBeShockedWhileFrozen = 3159, - - /// - /// local_display_grants_skill_lightning_warp_level - /// - LocalDisplayGrantsSkillLightningWarpLevel = 3160, - - /// - /// life_leech_from_attack_damage_permyriad_vs_bleeding_enemies - /// - LifeLeechFromAttackDamagePermyriadVsBleedingEnemies = 3161, - - /// - /// number_of_additional_curses_allowed_on_self - /// - NumberOfAdditionalCursesAllowedOnSelf = 3162, - - /// - /// map_spawn_warband_fire - /// - MapSpawnWarbandFire = 3163, - - /// - /// map_spawn_warband_cold - /// - MapSpawnWarbandCold = 3164, - - /// - /// map_spawn_warband_thunder - /// - MapSpawnWarbandThunder = 3165, - - /// - /// map_spawn_warband_chaos - /// - MapSpawnWarbandChaos = 3166, - - /// - /// map_max_warband_rank - /// - MapMaxWarbandRank = 3167, - - /// - /// monster_report_warband_destroyed_on_death - /// - MonsterReportWarbandDestroyedOnDeath = 3168, - - /// - /// trap_throw_arm_time_override - /// - TrapThrowArmTimeOverride = 3169, - - /// - /// item_rarity_+%_while_using_flask - /// - ItemRarityPctWhileUsingFlask = 3170, - - /// - /// dropped_items_are_corrupted - /// - DroppedItemsAreCorrupted = 3171, - - /// - /// monster_dropped_non_unique_equipment_drops_as_sell_price - /// - MonsterDroppedNonUniqueEquipmentDropsAsSellPrice = 3172, - - /// - /// monster_dropped_items_have_random_quality - /// - MonsterDroppedItemsHaveRandomQuality = 3173, - - /// - /// player_found_items_are_corrupted - /// - PlayerFoundItemsAreCorrupted = 3174, - - /// - /// player_non_unique_equipment_found_as_sell_price - /// - PlayerNonUniqueEquipmentFoundAsSellPrice = 3175, - - /// - /// player_found_items_have_random_quality - /// - PlayerFoundItemsHaveRandomQuality = 3176, - - /// - /// map_storm_delay_+% - /// - MapStormDelayPct = 3177, - - /// - /// map_storm_duration_+% - /// - MapStormDurationPct = 3178, - - /// - /// map_storm_area_of_effect_+% - /// - MapStormAreaOfEffectPct = 3179, - - /// - /// map_storm_buff_duration_+% - /// - MapStormBuffDurationPct = 3180, - - /// - /// map_storm_buff_duration_+%_on_low_life_target - /// - MapStormBuffDurationPctOnLowLifeTarget = 3181, - - /// - /// map_tempest_random_monster_drops_unique - /// - MapTempestRandomMonsterDropsUnique = 3182, - - /// - /// map_tempest_random_monster_drops_map - /// - MapTempestRandomMonsterDropsMap = 3183, - - /// - /// map_tempest_fish_school_size_+% - /// - MapTempestFishSchoolSizePct = 3184, - - /// - /// monster_stormcall_individually_trigger - /// - MonsterStormcallIndividuallyTrigger = 3185, - - /// - /// map_tempest_random_monster_drops_vaal_fragment - /// - MapTempestRandomMonsterDropsVaalFragment = 3186, - - /// - /// map_bosses_have_phylacteral_link - /// - MapBossesHavePhylacteralLink = 3187, - - /// - /// monster_can_have_bloodline - /// - MonsterCanHaveBloodline = 3188, - - /// - /// local_socketed_warcry_gem_level_+ - /// - LocalSocketedWarcryGemLevel = 3189, - - /// - /// mana_gained_on_hitting_taunted_enemy - /// - ManaGainedOnHittingTauntedEnemy = 3190, - - /// - /// life_gained_on_taunting_enemy - /// - LifeGainedOnTauntingEnemy = 3191, - - /// - /// onslaught_buff_duration_on_killing_taunted_enemy_ms - /// - OnslaughtBuffDurationOnKillingTauntedEnemyMs = 3192, - - /// - /// local_socketed_golem_gem_level_+ - /// - LocalSocketedGolemGemLevel = 3193, - - /// - /// local_display_socketed_gems_supported_by_x_increased_minion_life_level - /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionLifeLevel = 3194, - - /// - /// local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level - /// - LocalDisplaySocketedGemsSupportedByXLesserMultipleProjectilesLevel = 3195, - - /// - /// local_display_socketed_gems_supported_by_x_increased_minion_damage_level - /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionDamageLevel = 3196, - - /// - /// local_display_socketed_gems_supported_by_x_increased_critical_damage_level - /// - LocalDisplaySocketedGemsSupportedByXIncreasedCriticalDamageLevel = 3197, - - /// - /// number_of_power_charges_to_gain - /// - NumberOfPowerChargesToGain = 3198, - - /// - /// number_of_frenzy_charges_to_gain - /// - NumberOfFrenzyChargesToGain = 3199, - - /// - /// number_of_endurance_charges_to_gain - /// - NumberOfEnduranceChargesToGain = 3200, - - /// - /// animate_weapon_duration_+% - /// - AnimateWeaponDurationPct = 3201, - - /// - /// totem_skill_area_of_effect_+% - /// - TotemSkillAreaOfEffectPct = 3202, - - /// - /// life_leech_from_skills_used_by_totems_permyriad - /// - LifeLeechFromSkillsUsedByTotemsPermyriad = 3203, - - /// - /// damage_reflected_to_enemies_%_gained_as_life - /// - DamageReflectedToEnemiesPctGainedAsLife = 3204, - - /// - /// animate_weapon_number_of_additional_copies - /// - AnimateWeaponNumberOfAdditionalCopies = 3205, - - /// - /// cannot_drop_below_%_life - /// - CannotDropBelowPctLife = 3206, - - /// - /// local_display_socketed_gems_supported_by_x_increased_minion_speed_level - /// - LocalDisplaySocketedGemsSupportedByXIncreasedMinionSpeedLevel = 3207, - - /// - /// attack_is_not_melee_override - /// - AttackIsNotMeleeOverride = 3208, - - /// - /// map_storm_delay_+%_final - /// - MapStormDelayPctFinal = 3209, - - /// - /// map_storm_duration_+%_final - /// - MapStormDurationPctFinal = 3210, - - /// - /// map_always_has_weather - /// - MapAlwaysHasWeather = 3211, - - /// - /// melee_weapon_range_+ - /// - MeleeWeaponRange = 3212, - - /// - /// damage_+%_vs_players - /// - DamagePctVsPlayers = 3213, - - /// - /// immune_vaal_lighting_warp - /// - ImmuneVaalLightingWarp = 3214, - - /// - /// base_secondary_skill_effect_duration - /// - BaseSecondarySkillEffectDuration = 3215, - - /// - /// secondary_skill_effect_duration - /// - SecondarySkillEffectDuration = 3216, - - /// - /// enemy_aggro_radius_+% - /// - EnemyAggroRadiusPct = 3217, - - /// - /// skill_effect_duration_+%_per_removable_frenzy_charge - /// - SkillEffectDurationPctPerRemovableFrenzyCharge = 3218, - - /// - /// chilled_ground_effect_on_self_+% - /// - ChilledGroundEffectOnSelfPct = 3219, - - /// - /// burning_ground_effect_on_self_+% - /// - BurningGroundEffectOnSelfPct = 3220, - - /// - /// shocked_ground_effect_on_self_+% - /// - ShockedGroundEffectOnSelfPct = 3221, - - /// - /// desecrated_ground_effect_on_self_+% - /// - DesecratedGroundEffectOnSelfPct = 3222, - - /// - /// spell_and_attack_minimum_added_lightning_damage - /// - SpellAndAttackMinimumAddedLightningDamage = 3223, - - /// - /// spell_and_attack_maximum_added_lightning_damage - /// - SpellAndAttackMaximumAddedLightningDamage = 3224, - - /// - /// shocked_ground_when_hit_% - /// - ShockedGroundWhenHitPct = 3225, - - /// - /// map_tempest_base_ground_fire_damage_to_deal_per_minute - /// - MapTempestBaseGroundFireDamageToDealPerMinute = 3226, - - /// - /// map_tempest_base_ground_desecration_damage_to_deal_per_minute - /// - MapTempestBaseGroundDesecrationDamageToDealPerMinute = 3227, - - /// - /// map_tempest_ground_ice - /// - MapTempestGroundIce = 3228, - - /// - /// map_tempest_ground_tar_movement_speed_+% - /// - MapTempestGroundTarMovementSpeedPct = 3229, - - /// - /// map_tempest_ground_lightning - /// - MapTempestGroundLightning = 3230, - - /// - /// map_tempest_ground_effect_patches_per_100_tiles - /// - MapTempestGroundEffectPatchesPer100Tiles = 3231, - - /// - /// map_tempest_ground_effect_radius - /// - MapTempestGroundEffectRadius = 3232, - - /// - /// projectile_minimum_range - /// - ProjectileMinimumRange = 3233, - - /// - /// projectile_speed_variation_+% - /// - ProjectileSpeedVariationPct = 3234, - - /// - /// secondary_buff_effect_duration - /// - SecondaryBuffEffectDuration = 3235, - - /// - /// level_1_to_40_life_+%_final - /// - Level1To40LifePctFinal = 3236, - - /// - /// level_41_to_57_life_+%_final - /// - Level41To57LifePctFinal = 3237, - - /// - /// level_58_to_70_life_+%_final - /// - Level58To70LifePctFinal = 3238, - - /// - /// local_unique_jewel_energy_shield_increases_applies_to_armour_doubled - /// - LocalUniqueJewelEnergyShieldIncreasesAppliesToArmourDoubled = 3239, - - /// - /// local_unique_jewel_life_increases_applies_to_energy_shield - /// - LocalUniqueJewelLifeIncreasesAppliesToEnergyShield = 3240, - - /// - /// local_unique_jewel_life_increases_applies_to_mana_doubled - /// - LocalUniqueJewelLifeIncreasesAppliesToManaDoubled = 3241, - - /// - /// cyclone_first_hit_damage_+%_final - /// - CycloneFirstHitDamagePctFinal = 3242, - - /// - /// cannot_use_warcries - /// - CannotUseWarcries = 3243, - - /// - /// map_debug_disable_nonboss_monsters - /// - MapDebugDisableNonbossMonsters = 3244, - - /// - /// totem_mana_+% - /// - TotemManaPct = 3245, - - /// - /// totem_energy_shield_+% - /// - TotemEnergyShieldPct = 3246, - - /// - /// minion_maximum_mana_+% - /// - MinionMaximumManaPct = 3247, - - /// - /// minion_maximum_energy_shield_+% - /// - MinionMaximumEnergyShieldPct = 3248, - - /// - /// base_maximum_life_per_red_socket_on_item - /// - BaseMaximumLifePerRedSocketOnItem = 3249, - - /// - /// base_maximum_energy_shield_per_blue_socket_on_item - /// - BaseMaximumEnergyShieldPerBlueSocketOnItem = 3250, - - /// - /// base_maximum_mana_per_green_socket_on_item - /// - BaseMaximumManaPerGreenSocketOnItem = 3251, - - /// - /// currently_has_no_energy_shield - /// - CurrentlyHasNoEnergyShield = 3252, - - /// - /// damage_+%_when_currently_has_no_energy_shield - /// - DamagePctWhenCurrentlyHasNoEnergyShield = 3253, - - /// - /// chance_to_gain_unholy_might_on_block_% - /// - ChanceToGainUnholyMightOnBlockPct = 3254, - - /// - /// damage_+%_when_on_burning_ground - /// - DamagePctWhenOnBurningGround = 3255, - - /// - /// life_regeneration_rate_per_minute_%_when_on_chilled_ground - /// - LifeRegenerationRatePerMinutePctWhenOnChilledGround = 3256, - - /// - /// movement_velocity_+%_when_on_shocked_ground - /// - MovementVelocityPctWhenOnShockedGround = 3257, - - /// - /// is_on_ground_fire_burn - /// - IsOnGroundFireBurn = 3258, - - /// - /// is_on_ground_ice_chill - /// - IsOnGroundIceChill = 3259, - - /// - /// is_on_ground_lightning_shock - /// - IsOnGroundLightningShock = 3260, - - /// - /// damage_taken_goes_to_mana_%_per_power_charge - /// - DamageTakenGoesToManaPctPerPowerCharge = 3261, - - /// - /// power_charge_art_variation - /// - PowerChargeArtVariation = 3262, - - /// - /// map_tempest_display_prefix - /// - MapTempestDisplayPrefix = 3263, - - /// - /// map_tempest_display_suffix - /// - MapTempestDisplaySuffix = 3264, - - /// - /// temporal_chains_action_speed_+%_final - /// - TemporalChainsActionSpeedPctFinal = 3265, - - /// - /// virtual_action_speed_+% - /// - VirtualActionSpeedPct = 3266, - - /// - /// light_radius_+%_while_phased - /// - LightRadiusPctWhilePhased = 3267, - - /// - /// map_monsters_area_of_effect_+% - /// - MapMonstersAreaOfEffectPct = 3268, - - /// - /// map_monsters_avoid_freeze_and_chill_% - /// - MapMonstersAvoidFreezeAndChillPct = 3269, - - /// - /// map_monsters_avoid_ignite_% - /// - MapMonstersAvoidIgnitePct = 3270, - - /// - /// map_monsters_avoid_shock_% - /// - MapMonstersAvoidShockPct = 3271, - - /// - /// map_monsters_avoid_elemental_ailments_% - /// - MapMonstersAvoidElementalAilmentsPct = 3272, - - /// - /// map_monsters_critical_strike_chance_+% - /// - MapMonstersCriticalStrikeChancePct = 3273, - - /// - /// map_monsters_critical_strike_multiplier_+ - /// - MapMonstersCriticalStrikeMultiplier = 3274, - - /// - /// map_monsters_life_leech_resistance_% - /// - MapMonstersLifeLeechResistancePct = 3275, - - /// - /// map_monsters_mana_leech_resistance_% - /// - MapMonstersManaLeechResistancePct = 3276, - - /// - /// map_boss_maximum_life_+% - /// - MapBossMaximumLifePct = 3277, - - /// - /// map_boss_area_of_effect_+% - /// - MapBossAreaOfEffectPct = 3278, - - /// - /// map_hidden_experience_gain_+% - /// - MapHiddenExperienceGainPct = 3279, - - /// - /// map_hidden_rare_monsters_have_nemesis_mod - /// - MapHiddenRareMonstersHaveNemesisMod = 3280, - - /// - /// map_hidden_spawn_extra_exiles - /// - MapHiddenSpawnExtraExiles = 3281, - - /// - /// map_hidden_spawn_extra_torment_spirits - /// - MapHiddenSpawnExtraTormentSpirits = 3282, - - /// - /// map_hidden_magic_pack_mod_rules - /// - MapHiddenMagicPackModRules = 3283, - - /// - /// map_hidden_monsters_additional_fire_resistance - /// - MapHiddenMonstersAdditionalFireResistance = 3284, - - /// - /// map_hidden_monsters_additional_cold_resistance - /// - MapHiddenMonstersAdditionalColdResistance = 3285, - - /// - /// map_hidden_monsters_additional_lightning_resistance - /// - MapHiddenMonstersAdditionalLightningResistance = 3286, - - /// - /// map_hidden_monsters_poison_on_hit - /// - MapHiddenMonstersPoisonOnHit = 3287, - - /// - /// map_hidden_monsters_%_physical_damage_to_add_as_fire - /// - MapHiddenMonstersPctPhysicalDamageToAddAsFire = 3288, - - /// - /// map_hidden_monsters_%_physical_damage_to_add_as_cold - /// - MapHiddenMonstersPctPhysicalDamageToAddAsCold = 3289, - - /// - /// map_hidden_monsters_%_physical_damage_to_add_as_lightning - /// - MapHiddenMonstersPctPhysicalDamageToAddAsLightning = 3290, - - /// - /// map_hidden_monsters_%_physical_damage_to_add_as_chaos - /// - MapHiddenMonstersPctPhysicalDamageToAddAsChaos = 3291, - - /// - /// map_hidden_packs_are_totems - /// - MapHiddenPacksAreTotems = 3292, - - /// - /// skill_effect_duration_per_100_int_+% - /// - SkillEffectDurationPer100IntPct = 3293, - - /// - /// map_equipment_drops_identified - /// - MapEquipmentDropsIdentified = 3294, - - /// - /// player_found_equipment_drops_identified - /// - PlayerFoundEquipmentDropsIdentified = 3295, - - /// - /// monster_equipment_drops_identified - /// - MonsterEquipmentDropsIdentified = 3296, - - /// - /// flask_charges_gained_+%_during_flask_effect - /// - FlaskChargesGainedPctDuringFlaskEffect = 3297, - - /// - /// mana_regeneration_rate_+%_during_flask_effect - /// - ManaRegenerationRatePctDuringFlaskEffect = 3298, - - /// - /// movement_speed_+%_during_flask_effect - /// - MovementSpeedPctDuringFlaskEffect = 3299, - - /// - /// map_player_has_level_X_punishment - /// - MapPlayerHasLevelXPunishment = 3300, - - /// - /// item_found_quantity_+%_per_white_socket_on_item - /// - ItemFoundQuantityPctPerWhiteSocketOnItem = 3301, - - /// - /// monster_number_of_additional_players - /// - MonsterNumberOfAdditionalPlayers = 3302, - - /// - /// local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius - /// - LocalUniqueJewelPhysicalAttackDamage1PctPerXStrengthInRadius = 3303, - - /// - /// local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius - /// - LocalUniqueJewelFortifyDuration1PctPerXIntInRadius = 3304, - - /// - /// local_unique_jewel_fire_damage_+1%_per_x_int_in_radius - /// - LocalUniqueJewelFireDamage1PctPerXIntInRadius = 3305, - - /// - /// local_unique_jewel_cold_damage_+1%_per_x_int_in_radius - /// - LocalUniqueJewelColdDamage1PctPerXIntInRadius = 3306, - - /// - /// local_unique_jewel_physical_damage_+1%_per_int_in_radius - /// - LocalUniqueJewelPhysicalDamage1PctPerIntInRadius = 3307, - - /// - /// local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius - /// - LocalUniqueJewelPhysicalAttackDamage1PctPerXDexInRadius = 3308, - - /// - /// local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius - /// - LocalUniqueJewelProjectileDamage1PctPerXDexInRadius = 3309, - - /// - /// local_unique_jewel_fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range_with_x_int_in_radius - /// - LocalUniqueJewelFireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRangeWithXIntInRadius = 3310, - - /// - /// local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius - /// - LocalUniqueJewelGlacialCascadeAdditionalSequenceWithXIntInRadius = 3311, - - /// - /// local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius - /// - LocalUniqueJewelAnimateWeaponAnimatesBowsAndWandsWithXDexInRadius = 3312, - - /// - /// local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius - /// - LocalUniqueJewelSplitArrowFiresAdditionalArrowWithXDexInRadius = 3313, - - /// - /// vigilant_strike_applies_to_nearby_allies_for_X_seconds - /// - VigilantStrikeAppliesToNearbyAlliesForXSeconds = 3314, - - /// - /// split_arrow_number_of_additional_arrows - /// - SplitArrowNumberOfAdditionalArrows = 3315, - - /// - /// animate_weapon_can_animate_bows - /// - AnimateWeaponCanAnimateBows = 3316, - - /// - /// animate_weapon_can_animate_wands - /// - AnimateWeaponCanAnimateWands = 3317, - - /// - /// fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range - /// - FireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRange = 3318, - - /// - /// total_physical_damage_taken_per_minute - /// - TotalPhysicalDamageTakenPerMinute = 3319, - - /// - /// total_fire_damage_taken_per_minute - /// - TotalFireDamageTakenPerMinute = 3320, - - /// - /// total_cold_damage_taken_per_minute - /// - TotalColdDamageTakenPerMinute = 3321, - - /// - /// total_lightning_damage_taken_per_minute - /// - TotalLightningDamageTakenPerMinute = 3322, - - /// - /// total_chaos_damage_taken_per_minute - /// - TotalChaosDamageTakenPerMinute = 3323, - - /// - /// total_nonlethal_fire_damage_taken_per_minute - /// - TotalNonlethalFireDamageTakenPerMinute = 3324, - - /// - /// total_damage_taken_per_minute_to_energy_shield - /// - TotalDamageTakenPerMinuteToEnergyShield = 3325, - - /// - /// total_damage_taken_per_minute_to_life - /// - TotalDamageTakenPerMinuteToLife = 3326, - - /// - /// total_nonlethal_damage_taken_per_minute_to_energy_shield - /// - TotalNonlethalDamageTakenPerMinuteToEnergyShield = 3327, - - /// - /// total_nonlethal_damage_taken_per_minute_to_life - /// - TotalNonlethalDamageTakenPerMinuteToLife = 3328, - - /// - /// total_healing_from_damage_taken_per_minute - /// - TotalHealingFromDamageTakenPerMinute = 3329, - - /// - /// chance_to_gain_unholy_might_on_kill_for_3_seconds_% - /// - ChanceToGainUnholyMightOnKillFor3SecondsPct = 3330, - - /// - /// chance_to_grant_nearby_enemies_onslaught_on_kill_% - /// - ChanceToGrantNearbyEnemiesOnslaughtOnKillPct = 3331, - - /// - /// chance_to_grant_nearby_enemies_unholy_might_on_kill_% - /// - ChanceToGrantNearbyEnemiesUnholyMightOnKillPct = 3332, - - /// - /// recover_%_maximum_life_on_kill - /// - RecoverPctMaximumLifeOnKill = 3333, - - /// - /// chance_to_cast_on_kill_%_target_self - /// - ChanceToCastOnKillPctTargetSelf = 3334, - - /// - /// socketed_trap_skills_create_smoke_cloud - /// - SocketedTrapSkillsCreateSmokeCloud = 3335, - - /// - /// fire_damage_+%_to_blinded_enemies - /// - FireDamagePctToBlindedEnemies = 3336, - - /// - /// spell_damage_taken_+%_from_blinded_enemies - /// - SpellDamageTakenPctFromBlindedEnemies = 3337, - - /// - /// curse_enemies_with_level_x_assassins_mark_when_curse_cast - /// - CurseEnemiesWithLevelXAssassinsMarkWhenCurseCast = 3338, - - /// - /// disable_weapons - /// - DisableWeapons = 3339, - - /// - /// shock_dispelled_on_full_energy_shield - /// - ShockDispelledOnFullEnergyShield = 3340, - - /// - /// local_display_nearby_enemies_take_X_lightning_damage_per_minute - /// - LocalDisplayNearbyEnemiesTakeXLightningDamagePerMinute = 3341, - - /// - /// item_destroyed_on_death - /// - ItemDestroyedOnDeath = 3342, - - /// - /// summoned_monsters_set_parent - /// - SummonedMonstersSetParent = 3343, - - /// - /// maximum_number_of_spinning_blades - /// - MaximumNumberOfSpinningBlades = 3344, - - /// - /// ball_lightning_damage_+% - /// - BallLightningDamagePct = 3345, - - /// - /// cast_when_critically_hit_% - /// - CastWhenCriticallyHitPct = 3346, - - /// - /// attack_trigger_on_hit_% - /// - AttackTriggerOnHitPct = 3347, - - /// - /// cast_on_hit_% - /// - CastOnHitPct = 3348, - - /// - /// map_spawn_talismans - /// - MapSpawnTalismans = 3349, - - /// - /// map_spawn_extra_talismans - /// - MapSpawnExtraTalismans = 3350, - - /// - /// map_hidden_num_extra_invasion_bosses - /// - MapHiddenNumExtraInvasionBosses = 3351, - - /// - /// monster_no_talismans - /// - MonsterNoTalismans = 3352, - - /// - /// enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit - /// - EnchantmentBootsLifeRegenPerMinutePctFor4SecondsWhenHit = 3353, - - /// - /// fire_damage_taken_%_as_lightning - /// - FireDamageTakenPctAsLightning = 3354, - - /// - /// fire_damage_taken_%_as_cold - /// - FireDamageTakenPctAsCold = 3355, - - /// - /// lightning_damage_taken_%_as_cold - /// - LightningDamageTakenPctAsCold = 3356, - - /// - /// lightning_damage_taken_%_as_fire - /// - LightningDamageTakenPctAsFire = 3357, - - /// - /// cold_damage_taken_%_as_lightning - /// - ColdDamageTakenPctAsLightning = 3358, - - /// - /// cold_damage_taken_%_as_fire - /// - ColdDamageTakenPctAsFire = 3359, - - /// - /// all_attributes_+% - /// - AllAttributesPct = 3360, - - /// - /// base_cooldown_speed_+% - /// - BaseCooldownSpeedPct = 3361, - - /// - /// virtual_cooldown_speed_+% - /// - VirtualCooldownSpeedPct = 3362, - - /// - /// base_righteous_lightning_%_of_max_mana_to_deal_to_nearby_per_minute - /// - BaseRighteousLightningPctOfMaxManaToDealToNearbyPerMinute = 3363, - - /// - /// righteous_lightning_critical_strike_chance_+% - /// - RighteousLightningCriticalStrikeChancePct = 3364, - - /// - /// mana_degeneration_per_minute_% - /// - ManaDegenerationPerMinutePct = 3365, - - /// - /// active_skill_index - /// - ActiveSkillIndex = 3366, - - /// - /// stun_threshold_based_on_%_mana_instead_of_life - /// - StunThresholdBasedOnPctManaInsteadOfLife = 3367, - - /// - /// local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge - /// - LocalFlaskGainXSecondsOfOnslaughtPerFrenzyCharge = 3368, - - /// - /// life_leech_applies_to_enemies_% - /// - LifeLeechAppliesToEnemiesPct = 3369, - - /// - /// enchantment_boots_minimum_added_fire_damage_on_kill_4s - /// - EnchantmentBootsMinimumAddedFireDamageOnKill4S = 3370, - - /// - /// enchantment_boots_maximum_added_fire_damage_on_kill_4s - /// - EnchantmentBootsMaximumAddedFireDamageOnKill4S = 3371, - - /// - /// enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds - /// - EnchantmentBootsMovementSpeedPctWhenNotHitFor4Seconds = 3372, - - /// - /// enchantment_boots_dodge_chance_when_critically_hit_% - /// - EnchantmentBootsDodgeChanceWhenCriticallyHitPct = 3373, - - /// - /// enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds - /// - EnchantmentBootsStatusAilmentChancePctWhenHaventCritFor4Seconds = 3374, - - /// - /// base_chance_to_stun_% - /// - BaseChanceToStunPct = 3375, - - /// - /// display_cast_word_of_flames_on_kill_% - /// - DisplayCastWordOfFlamesOnKillPct = 3376, - - /// - /// display_cast_word_of_blades_on_kill_% - /// - DisplayCastWordOfBladesOnKillPct = 3377, - - /// - /// display_cast_word_of_reflection_on_kill_% - /// - DisplayCastWordOfReflectionOnKillPct = 3378, - - /// - /// display_cast_word_of_force_on_hit_% - /// - DisplayCastWordOfForceOnHitPct = 3379, - - /// - /// display_cast_word_of_light_when_hit_% - /// - DisplayCastWordOfLightWhenHitPct = 3380, - - /// - /// display_cast_word_of_thunder_on_hit_% - /// - DisplayCastWordOfThunderOnHitPct = 3381, - - /// - /// display_cast_word_of_the_grave_on_kill_% - /// - DisplayCastWordOfTheGraveOnKillPct = 3382, - - /// - /// display_cast_word_of_war_on_kill_% - /// - DisplayCastWordOfWarOnKillPct = 3383, - - /// - /// map_spawn_stone_circles - /// - MapSpawnStoneCircles = 3384, - - /// - /// map_force_stone_circle - /// - MapForceStoneCircle = 3385, - - /// - /// base_poison_damage_+% - /// - BasePoisonDamagePct = 3386, - - /// - /// base_poison_duration_+% - /// - BasePoisonDurationPct = 3387, - - /// - /// poison_duration_+% - /// - PoisonDurationPct = 3388, - - /// - /// poison_skill_effect_duration - /// - PoisonSkillEffectDuration = 3389, - - /// - /// base_chance_to_poison_on_hit_% - /// - BaseChanceToPoisonOnHitPct = 3390, - - /// - /// quake_slam_fully_charged_explosion_damage_+%_final - /// - QuakeSlamFullyChargedExplosionDamagePctFinal = 3391, - - /// - /// local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius - /// - LocalUniqueJewelGlacialHammerItemRarityOnShatteringEnemyPctWith50StrengthInRadius = 3392, - - /// - /// local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius - /// - LocalUniqueJewelSpectralThrowDamageForEachEnemyHitWithSpectralWeaponPctWith50DexterityInRadius = 3393, - - /// - /// local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius - /// - LocalUniqueJewelDoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePctWith50DexterityInRadius = 3394, - - /// - /// local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius - /// - LocalUniqueJewelViperStrikeAttackDamagePerPoisonOnEnemyPctWith50DexterityInRadius = 3395, - - /// - /// local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius - /// - LocalUniqueJewelHeavyStrikeChanceToDealDoubleDamagePctWith50StrengthInRadius = 3396, - - /// - /// enchantment_boots_mana_costs_when_hit_+% - /// - EnchantmentBootsManaCostsWhenHitPct = 3397, - - /// - /// enchantment_boots_stun_avoid_%_on_kill - /// - EnchantmentBootsStunAvoidPctOnKill = 3398, - - /// - /// enchantment_boots_spell_dodge_when_hit_by_spells_% - /// - EnchantmentBootsSpellDodgeWhenHitBySpellsPct = 3399, - - /// - /// enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill - /// - EnchantmentBootsAttackAndCastSpeedPctFor4SecondsOnKill = 3400, - - /// - /// enchantment_boots_added_cold_damage_when_hit_minimum - /// - EnchantmentBootsAddedColdDamageWhenHitMinimum = 3401, - - /// - /// enchantment_boots_added_cold_damage_when_hit_maximum - /// - EnchantmentBootsAddedColdDamageWhenHitMaximum = 3402, - - /// - /// enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds - /// - EnchantmentBootsMinimumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3403, - - /// - /// enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds - /// - EnchantmentBootsMaximumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3404, - - /// - /// enchantment_boots_life_leech_on_kill_permyriad - /// - EnchantmentBootsLifeLeechOnKillPermyriad = 3405, - - /// - /// enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds - /// - EnchantmentCriticalStrikeChancePctIfYouHaventCritFor4Seconds = 3406, - - /// - /// no_extra_bleed_damage_while_moving - /// - NoExtraBleedDamageWhileMoving = 3407, - - /// - /// action_speed_cannot_be_reduced_below_base - /// - ActionSpeedCannotBeReducedBelowBase = 3408, - - /// - /// movement_speed_cannot_be_reduced_below_base - /// - MovementSpeedCannotBeReducedBelowBase = 3409, - - /// - /// damage_+%_while_fortified - /// - DamagePctWhileFortified = 3410, - - /// - /// life_regeneration_per_minute_%_while_fortified - /// - LifeRegenerationPerMinutePctWhileFortified = 3411, - - /// - /// damage_+%_per_endurance_charge - /// - DamagePctPerEnduranceCharge = 3412, - - /// - /// warcry_duration_+% - /// - WarcryDurationPct = 3413, - - /// - /// restore_life_and_mana_on_warcry_% - /// - RestoreLifeAndManaOnWarcryPct = 3414, - - /// - /// attack_speed_+%_when_hit - /// - AttackSpeedPctWhenHit = 3415, - - /// - /// movement_velocity_while_not_hit_+% - /// - MovementVelocityWhileNotHitPct = 3416, - - /// - /// is_warcry - /// - IsWarcry = 3417, - - /// - /// map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack - /// - MapPlayerCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 3418, - - /// - /// damage_+%_when_not_on_low_life - /// - DamagePctWhenNotOnLowLife = 3419, - - /// - /// gain_life_and_mana_leech_on_kill_permyriad - /// - GainLifeAndManaLeechOnKillPermyriad = 3420, - - /// - /// number_of_active_minions - /// - NumberOfActiveMinions = 3421, - - /// - /// number_of_active_totems - /// - NumberOfActiveTotems = 3422, - - /// - /// damage_+%_while_totem_active - /// - DamagePctWhileTotemActive = 3423, - - /// - /// physical_damage_%_added_as_fire_damage_on_kill - /// - PhysicalDamagePctAddedAsFireDamageOnKill = 3424, - - /// - /// totems_gain_%_of_players_armour - /// - TotemsGainPctOfPlayersArmour = 3425, - - /// - /// attack_and_cast_speed_+%_on_placing_totem - /// - AttackAndCastSpeedPctOnPlacingTotem = 3426, - - /// - /// damage_+%_to_rare_and_unique_enemies - /// - DamagePctToRareAndUniqueEnemies = 3427, - - /// - /// life_leech_on_overkill_damage_% - /// - LifeLeechOnOverkillDamagePct = 3428, - - /// - /// attack_speed_+%_while_leeching - /// - AttackSpeedPctWhileLeeching = 3429, - - /// - /// life_leech_does_not_stop_at_full_life - /// - LifeLeechDoesNotStopAtFullLife = 3430, - - /// - /// cannot_be_stunned_while_leeching - /// - CannotBeStunnedWhileLeeching = 3431, - - /// - /// attacks_use_life_in_place_of_mana - /// - AttacksUseLifeInPlaceOfMana = 3432, - - /// - /// chance_to_taunt_on_hit_% - /// - ChanceToTauntOnHitPct = 3433, - - /// - /// bleeding_enemies_explode_for_%_life_as_physical_damage - /// - BleedingEnemiesExplodeForPctLifeAsPhysicalDamage = 3434, - - /// - /// attack_and_cast_speed_when_hit_+% - /// - AttackAndCastSpeedWhenHitPct = 3435, - - /// - /// physical_damage_on_block_+% - /// - PhysicalDamageOnBlockPct = 3436, - - /// - /// block_chance_on_damage_taken_% - /// - BlockChanceOnDamageTakenPct = 3437, - - /// - /// damage_while_no_damage_taken_+% - /// - DamageWhileNoDamageTakenPct = 3438, - - /// - /// attack_speed_while_fortified_+% - /// - AttackSpeedWhileFortifiedPct = 3439, - - /// - /// taunted_enemies_damage_taken_+% - /// - TauntedEnemiesDamageTakenPct = 3440, - - /// - /// taunted_enemies_chance_to_be_stunned_+% - /// - TauntedEnemiesChanceToBeStunnedPct = 3441, - - /// - /// armour_and_evasion_on_low_life_+% - /// - ArmourAndEvasionOnLowLifePct = 3442, - - /// - /// is_taunted - /// - IsTaunted = 3443, - - /// - /// summoned_monsters_set_monster_mortar_parent - /// - SummonedMonstersSetMonsterMortarParent = 3444, - - /// - /// storm_cloud_charged_damage_+%_final - /// - StormCloudChargedDamagePctFinal = 3445, - - /// - /// chaos_damage_taken_+% - /// - ChaosDamageTakenPct = 3446, - - /// - /// number_of_melee_skeletons_to_summon_as_mage_skeletons - /// - NumberOfMeleeSkeletonsToSummonAsMageSkeletons = 3447, - - /// - /// local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons - /// - LocalUniqueJewelWith50IntInRadiusSummonXMeleeSkeletonsAsMageSkeletons = 3448, - - /// - /// local_display_socketed_trap_skills_create_smoke_cloud - /// - LocalDisplaySocketedTrapSkillsCreateSmokeCloud = 3449, - - /// - /// glacial_hammer_item_rarity_on_shattering_enemy_+% - /// - GlacialHammerItemRarityOnShatteringEnemyPct = 3450, - - /// - /// spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+% - /// - SpectralThrowDamageForEachEnemyHitWithSpectralWeaponPct = 3451, - - /// - /// double_strike_chance_to_trigger_on_kill_effects_an_additional_time_% - /// - DoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePct = 3452, - - /// - /// viper_strike_attack_damage_per_poison_on_enemy_+% - /// - ViperStrikeAttackDamagePerPoisonOnEnemyPct = 3453, - - /// - /// heavy_strike_chance_to_deal_double_damage_% - /// - HeavyStrikeChanceToDealDoubleDamagePct = 3454, - - /// - /// local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius - /// - LocalUniqueJewelVigilantStrikeFortifiesNearbyAlliesForXSecondsWith50StrInRadius = 3455, - - /// - /// local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius - /// - LocalUniqueJewelFireballRadiusUpToPctAtLongerRangesWith50IntInRadius = 3456, - - /// - /// fireball_radius_up_to_+%_at_longer_ranges - /// - FireballRadiusUpToPctAtLongerRanges = 3457, - - /// - /// local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius - /// - LocalUniqueJewelAnimateWeaponCanAnimateUpToXAdditionalRangedWeaponsWith50DexInRadius = 3458, - - /// - /// animate_weapon_can_animate_up_to_x_additional_ranged_weapons - /// - AnimateWeaponCanAnimateUpToXAdditionalRangedWeapons = 3459, - - /// - /// local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius - /// - LocalUniqueJewelGroundSlamAnglePctWith50StrInRadius = 3460, - - /// - /// ground_slam_angle_+% - /// - GroundSlamAnglePct = 3461, - - /// - /// local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius - /// - LocalUniqueJewelColdSnapGainPowerChargeOnKillPctWith50IntInRadius = 3462, - - /// - /// cold_snap_gain_power_charge_on_kill_% - /// - ColdSnapGainPowerChargeOnKillPct = 3463, - - /// - /// local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius - /// - LocalUniqueJewelRallyingCryDamageTakenGoesToManaPctWith50IntInRadius = 3464, - - /// - /// rallying_cry_damage_taken_goes_to_mana_% - /// - RallyingCryDamageTakenGoesToManaPct = 3465, - - /// - /// local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius - /// - LocalUniqueJewelBarrageFinalVolleyFiresXAdditionalProjectilesSimultaneouslyWith50DexInRadius = 3466, - - /// - /// barrage_final_volley_fires_x_additional_projectiles_simultaneously - /// - BarrageFinalVolleyFiresXAdditionalProjectilesSimultaneously = 3467, - - /// - /// never_block - /// - NeverBlock = 3468, - - /// - /// mana_cost_-%_per_endurance_charge - /// - ManaCostPctPerEnduranceCharge = 3469, - - /// - /// gain_rampage_while_at_maximum_endurance_charges - /// - GainRampageWhileAtMaximumEnduranceCharges = 3470, - - /// - /// lose_endurance_charges_on_rampage_end - /// - LoseEnduranceChargesOnRampageEnd = 3471, - - /// - /// physical_attack_damage_+%_while_holding_a_shield - /// - PhysicalAttackDamagePctWhileHoldingAShield = 3472, - - /// - /// cold_attack_damage_+%_while_holding_a_shield - /// - ColdAttackDamagePctWhileHoldingAShield = 3473, - - /// - /// fire_attack_damage_+%_while_holding_a_shield - /// - FireAttackDamagePctWhileHoldingAShield = 3474, - - /// - /// base_number_of_ranged_animated_weapons_allowed - /// - BaseNumberOfRangedAnimatedWeaponsAllowed = 3475, - - /// - /// virtual_number_of_ranged_animated_weapons_allowed - /// - VirtualNumberOfRangedAnimatedWeaponsAllowed = 3476, - - /// - /// virtual_player_gain_rampage_stacks - /// - VirtualPlayerGainRampageStacks = 3477, - - /// - /// minion_does_not_equip_quiver - /// - MinionDoesNotEquipQuiver = 3478, - - /// - /// number_of_grasping_ornaments - /// - NumberOfGraspingOrnaments = 3479, - - /// - /// grasping_ornament_placement_radius - /// - GraspingOrnamentPlacementRadius = 3480, - - /// - /// local_no_block_chance - /// - LocalNoBlockChance = 3481, - - /// - /// support_controlled_destruction_spell_damage_+%_final - /// - SupportControlledDestructionSpellDamagePctFinal = 3482, - - /// - /// support_void_manipulation_chaos_damage_+%_final - /// - SupportVoidManipulationChaosDamagePctFinal = 3483, - - /// - /// support_rapid_decay_damage_over_time_+%_final - /// - SupportRapidDecayDamageOverTimePctFinal = 3484, - - /// - /// cast_on_any_damage_taken_% - /// - CastOnAnyDamageTakenPct = 3485, - - /// - /// stun_threshold_+% - /// - StunThresholdPct = 3486, - - /// - /// number_of_active_spectres - /// - NumberOfActiveSpectres = 3487, - - /// - /// number_of_active_skeletons - /// - NumberOfActiveSkeletons = 3488, - - /// - /// number_of_active_raging_spirits - /// - NumberOfActiveRagingSpirits = 3489, - - /// - /// number_of_active_zombies - /// - NumberOfActiveZombies = 3490, - - /// - /// minion_attack_and_cast_speed_+%_per_active_skeleton - /// - MinionAttackAndCastSpeedPctPerActiveSkeleton = 3491, - - /// - /// minion_duration_+%_per_active_zombie - /// - MinionDurationPctPerActiveZombie = 3492, - - /// - /// minion_damage_+%_per_active_spectre - /// - MinionDamagePctPerActiveSpectre = 3493, - - /// - /// minion_life_regeneration_per_minute_per_active_raging_spirit - /// - MinionLifeRegenerationPerMinutePerActiveRagingSpirit = 3494, - - /// - /// virtual_skill_effect_duration_pluspercent_final - /// - VirtualSkillEffectDurationPluspercentFinal = 3495, - - /// - /// virtual_additional_skill_effect_duration - /// - VirtualAdditionalSkillEffectDuration = 3496, - - /// - /// offering_of_judgement_counter - /// - OfferingOfJudgementCounter = 3497, - - /// - /// gain_her_blessing_for_3_seconds_on_ignite_% - /// - GainHerBlessingFor3SecondsOnIgnitePct = 3498, - - /// - /// blind_nearby_enemies_when_gaining_her_blessing_% - /// - BlindNearbyEnemiesWhenGainingHerBlessingPct = 3499, - - /// - /// have_her_blessing - /// - HaveHerBlessing = 3500, - - /// - /// avoid_freeze_chill_ignite_%_with_her_blessing - /// - AvoidFreezeChillIgnitePctWithHerBlessing = 3501, - - /// - /// attack_and_movement_speed_+%_with_her_blessing - /// - AttackAndMovementSpeedPctWithHerBlessing = 3502, - - /// - /// warcry_speed_+% - /// - WarcrySpeedPct = 3503, - - /// - /// gain_power_charge_on_non_critical_strike_% - /// - GainPowerChargeOnNonCriticalStrikePct = 3504, - - /// - /// critical_strike_multiplier_+_per_power_charge - /// - CriticalStrikeMultiplierPerPowerCharge = 3505, - - /// - /// apply_poison_on_hit_vs_bleeding_enemies_% - /// - ApplyPoisonOnHitVsBleedingEnemiesPct = 3506, - - /// - /// avoid_blind_% - /// - AvoidBlindPct = 3507, - - /// - /// damage_taken_+%_from_blinded_enemies - /// - DamageTakenPctFromBlindedEnemies = 3508, - - /// - /// attack_damage_+%_per_frenzy_charge - /// - AttackDamagePctPerFrenzyCharge = 3509, - - /// - /// attack_damage_+%_while_onslaught_active - /// - AttackDamagePctWhileOnslaughtActive = 3510, - - /// - /// onslaught_effect_+% - /// - OnslaughtEffectPct = 3511, - - /// - /// critical_strike_multiplier_+_vs_bleeding_enemies - /// - CriticalStrikeMultiplierVsBleedingEnemies = 3512, - - /// - /// critical_strike_chance_+%_vs_poisoned_enemies - /// - CriticalStrikeChancePctVsPoisonedEnemies = 3513, - - /// - /// elemental_damage_taken_+% - /// - ElementalDamageTakenPct = 3514, - - /// - /// damage_taken_from_traps_and_mines_+% - /// - DamageTakenFromTrapsAndMinesPct = 3515, - - /// - /// maim_on_hit_%_vs_poisoned_enemies - /// - MaimOnHitPctVsPoisonedEnemies = 3516, - - /// - /// raider_passive_evade_melee_attacks_while_onslaughted_+%_final - /// - RaiderPassiveEvadeMeleeAttacksWhileOnslaughtedPctFinal = 3517, - - /// - /// raider_passive_evade_projectile_attacks_while_onslaughted_+%_final - /// - RaiderPassiveEvadeProjectileAttacksWhileOnslaughtedPctFinal = 3518, - - /// - /// dispel_status_ailments_on_flask_use - /// - DispelStatusAilmentsOnFlaskUse = 3519, - - /// - /// avoid_status_ailments_%_during_flask_effect - /// - AvoidStatusAilmentsPctDuringFlaskEffect = 3520, - - /// - /// attack_speed_+%_during_flask_effect - /// - AttackSpeedPctDuringFlaskEffect = 3521, - - /// - /// poison_on_hit_during_flask_effect_% - /// - PoisonOnHitDuringFlaskEffectPct = 3522, - - /// - /// cyclone_places_ground_lightning - /// - CyclonePlacesGroundLightning = 3523, - - /// - /// cyclone_lightning_path_radius - /// - CycloneLightningPathRadius = 3524, - - /// - /// local_unique_flask_shock_nearby_enemies_during_flask_effect - /// - LocalUniqueFlaskShockNearbyEnemiesDuringFlaskEffect = 3525, - - /// - /// local_unique_flask_shocked_during_flask_effect - /// - LocalUniqueFlaskShockedDuringFlaskEffect = 3526, - - /// - /// local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect - /// - LocalUniqueFlaskLeechLightningDamagePctAsLifeDuringFlaskEffect = 3527, - - /// - /// local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect - /// - LocalUniqueFlaskLeechLightningDamagePctAsManaDuringFlaskEffect = 3528, - - /// - /// local_unique_flask_leech_is_instant_during_flask_effect - /// - LocalUniqueFlaskLeechIsInstantDuringFlaskEffect = 3529, - - /// - /// local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect - /// - LocalUniqueFlaskMinimumAddedLightningDamageToAttacksDuringFlaskEffect = 3530, - - /// - /// local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect - /// - LocalUniqueFlaskMaximumAddedLightningDamageToAttacksDuringFlaskEffect = 3531, - - /// - /// local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect - /// - LocalUniqueFlaskMinimumAddedLightningDamageToSpellsDuringFlaskEffect = 3532, - - /// - /// local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect - /// - LocalUniqueFlaskMaximumAddedLightningDamageToSpellsDuringFlaskEffect = 3533, - - /// - /// local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect - /// - LocalUniqueFlaskPhysicalDamagePctConvertedToLightningDuringFlaskEffect = 3534, - - /// - /// local_unique_flask_lightning_resistance_penetration_%_during_flask_effect - /// - LocalUniqueFlaskLightningResistancePenetrationPctDuringFlaskEffect = 3535, - - /// - /// leech_is_instant - /// - LeechIsInstant = 3536, - - /// - /// mana_leech_is_instant - /// - ManaLeechIsInstant = 3537, - - /// - /// projectiles_drop_ground_fire - /// - ProjectilesDropGroundFire = 3538, - - /// - /// projectiles_drop_ground_lightning - /// - ProjectilesDropGroundLightning = 3539, - - /// - /// projectiles_drop_ground_ice - /// - ProjectilesDropGroundIce = 3540, - - /// - /// projectiles_drop_ground_effects_on_client - /// - ProjectilesDropGroundEffectsOnClient = 3541, - - /// - /// base_projectile_ground_effect_duration - /// - BaseProjectileGroundEffectDuration = 3542, - - /// - /// base_projectile_skill_dot_ground_fire_area_damage_per_minute - /// - BaseProjectileSkillDotGroundFireAreaDamagePerMinute = 3543, - - /// - /// projectile_ground_effect_duration - /// - ProjectileGroundEffectDuration = 3544, - - /// - /// projectile_skill_dot_ground_fire_area_damage_per_minute - /// - ProjectileSkillDotGroundFireAreaDamagePerMinute = 3545, - - /// - /// chaos_damage_can_chill - /// - ChaosDamageCanChill = 3546, - - /// - /// explode_on_kill_%_chaos_damage_to_deal - /// - ExplodeOnKillPctChaosDamageToDeal = 3547, - - /// - /// enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds - /// - EnchantmentBootsDamagePenetratesElementalResistancePctWhileYouHaventKilledFor4Seconds = 3548, - - /// - /// enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds - /// - EnchantmentBootsPhysicalDamagePctAddedAsElementsInSpellsThatHitYouInPast4Seconds = 3549, - - /// - /// enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s - /// - EnchantmentBootsMinimumAddedChaosDamageFor4SecondsWhenCrit4S = 3550, - - /// - /// enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s - /// - EnchantmentBootsMaximumAddedChaosDamageFor4SecondsWhenCrit4S = 3551, - - /// - /// life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments - /// - LifeLeechPermyriadFromElementalDamageAgainstEnemiesWithElementalStatusAilments = 3552, - - /// - /// movement_speed_+%_while_not_affected_by_status_ailments - /// - MovementSpeedPctWhileNotAffectedByStatusAilments = 3553, - - /// - /// stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds - /// - StackingSpellDamagePctWhenYouOrYourTotemsKillAnEnemyFor2Seconds = 3554, - - /// - /// give_parent_stacking_spell_damage_+%_for_2_seconds_on_kill - /// - GiveParentStackingSpellDamagePctFor2SecondsOnKill = 3555, - - /// - /// totems_explode_for_%_of_max_life_as_fire_damage_on_low_life - /// - TotemsExplodeForPctOfMaxLifeAsFireDamageOnLowLife = 3556, - - /// - /// chance_to_avoid_stun_%_aura_while_wielding_a_staff - /// - ChanceToAvoidStunPctAuraWhileWieldingAStaff = 3557, - - /// - /// map_monsters_have_onslaught - /// - MapMonstersHaveOnslaught = 3558, - - /// - /// monster_is_invasion_boss - /// - MonsterIsInvasionBoss = 3559, - - /// - /// virtual_minion_attack_speed_+% - /// - VirtualMinionAttackSpeedPct = 3560, - - /// - /// virtual_minion_cast_speed_+% - /// - VirtualMinionCastSpeedPct = 3561, - - /// - /// virtual_minion_life_regeneration_per_minute - /// - VirtualMinionLifeRegenerationPerMinute = 3562, - - /// - /// dropbear_desecration_area_of_effect_+% - /// - DropbearDesecrationAreaOfEffectPct = 3563, - - /// - /// Physical Damage To Return To Melee Attacker - /// - PhysicalDamageToReturnToMeleeAttacker = 3564, - - /// - /// cold_damage_to_return_to_melee_attacker - /// - ColdDamageToReturnToMeleeAttacker = 3565, - - /// - /// fire_damage_to_return_to_melee_attacker - /// - FireDamageToReturnToMeleeAttacker = 3566, - - /// - /// lightning_damage_to_return_to_melee_attacker - /// - LightningDamageToReturnToMeleeAttacker = 3567, - - /// - /// chaos_damage_to_return_to_melee_attacker - /// - ChaosDamageToReturnToMeleeAttacker = 3568, - - /// - /// physical_damage_to_return_when_hit - /// - PhysicalDamageToReturnWhenHit = 3569, - - /// - /// cold_damage_to_return_when_hit - /// - ColdDamageToReturnWhenHit = 3570, - - /// - /// fire_damage_to_return_when_hit - /// - FireDamageToReturnWhenHit = 3571, - - /// - /// lightning_damage_to_return_when_hit - /// - LightningDamageToReturnWhenHit = 3572, - - /// - /// chaos_damage_to_return_when_hit - /// - ChaosDamageToReturnWhenHit = 3573, - - /// - /// trap_idle_duration - /// - TrapIdleDuration = 3574, - - /// - /// trap_retracts - /// - TrapRetracts = 3575, - - /// - /// physical_damage_taken_+%_while_frozen - /// - PhysicalDamageTakenPctWhileFrozen = 3576, - - /// - /// damage_+%_for_4_seconds_on_crit - /// - DamagePctFor4SecondsOnCrit = 3577, - - /// - /// damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse - /// - DamageAndMinionDamagePctFor4SecondsOnConsumeCorpse = 3578, - - /// - /// enemies_damage_taken_+%_while_cursed - /// - EnemiesDamageTakenPctWhileCursed = 3579, - - /// - /// spectre_damage_+% - /// - SpectreDamagePct = 3580, - - /// - /// critical_strike_chance_+%_for_4_seconds_on_kill - /// - CriticalStrikeChancePctFor4SecondsOnKill = 3581, - - /// - /// ignite_effect_+% - /// - IgniteEffectPct = 3582, - - /// - /// chill_effect_+% - /// - ChillEffectPct = 3583, - - /// - /// shock_effect_+% - /// - ShockEffectPct = 3584, - - /// - /// frozen_effect_+% - /// - FrozenEffectPct = 3585, - - /// - /// critical_strikes_ignore_elemental_resistances - /// - CriticalStrikesIgnoreElementalResistances = 3586, - - /// - /// physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie - /// - PhysicalDamageReductionAndMinionPhysicalDamageReductionPctPerRaisedZombie = 3587, - - /// - /// damage_taken_+%_from_bleeding_enemies - /// - DamageTakenPctFromBleedingEnemies = 3588, - - /// - /// maim_bleeding_enemies_on_hit_% - /// - MaimBleedingEnemiesOnHitPct = 3589, - - /// - /// one_handed_attack_speed_+% - /// - OneHandedAttackSpeedPct = 3590, - - /// - /// movement_speed_+%_for_4_seconds_on_block - /// - MovementSpeedPctFor4SecondsOnBlock = 3591, - - /// - /// movement_speed_+%_while_fortified - /// - MovementSpeedPctWhileFortified = 3592, - - /// - /// elemental_damage_taken_+%_at_maximum_endurance_charges - /// - ElementalDamageTakenPctAtMaximumEnduranceCharges = 3593, - - /// - /// status_ailments_removed_at_low_life - /// - StatusAilmentsRemovedAtLowLife = 3594, - - /// - /// gain_frenzy_charge_on_main_hand_kill_% - /// - GainFrenzyChargeOnMainHandKillPct = 3595, - - /// - /// gain_endurance_charge_on_main_hand_kill_% - /// - GainEnduranceChargeOnMainHandKillPct = 3596, - - /// - /// damage_taken_+%_for_4_seconds_on_kill - /// - DamageTakenPctFor4SecondsOnKill = 3597, - - /// - /// avoid_stun_%_for_4_seconds_on_kill - /// - AvoidStunPctFor4SecondsOnKill = 3598, - - /// - /// damage_taken_+%_for_4_seconds_on_killing_taunted_enemy - /// - DamageTakenPctFor4SecondsOnKillingTauntedEnemy = 3599, - - /// - /// warcry_cooldown_speed_+% - /// - WarcryCooldownSpeedPct = 3600, - - /// - /// always_stun_enemies_that_are_on_full_life - /// - AlwaysStunEnemiesThatAreOnFullLife = 3601, - - /// - /// stun_duration_+%_vs_enemies_that_are_on_full_life - /// - StunDurationPctVsEnemiesThatAreOnFullLife = 3602, - - /// - /// stun_duration_+%_vs_enemies_that_are_on_low_life - /// - StunDurationPctVsEnemiesThatAreOnLowLife = 3603, - - /// - /// damage_+%_with_one_handed_weapons - /// - DamagePctWithOneHandedWeapons = 3604, - - /// - /// damage_+%_with_two_handed_weapons - /// - DamagePctWithTwoHandedWeapons = 3605, - - /// - /// damage_reduction_rating_from_body_armour_doubled - /// - DamageReductionRatingFromBodyArmourDoubled = 3606, - - /// - /// damage_reduction_rating_%_with_active_totem - /// - DamageReductionRatingPctWithActiveTotem = 3607, - - /// - /// virtual_physical_damage_taken_+% - /// - VirtualPhysicalDamageTakenPct = 3608, - - /// - /// virtual_elemental_damage_taken_+% - /// - VirtualElementalDamageTakenPct = 3609, - - /// - /// is_burning - /// - IsBurning = 3610, - - /// - /// ignite_effect_on_self_+% - /// - IgniteEffectOnSelfPct = 3611, - - /// - /// shocked_effect_on_self_+% - /// - ShockedEffectOnSelfPct = 3612, - - /// - /// ancestor_totem_parent_activiation_range - /// - AncestorTotemParentActiviationRange = 3613, - - /// - /// support_clustertrap_damage_+%_final - /// - SupportClustertrapDamagePctFinal = 3614, - - /// - /// local_display_cast_level_x_manifest_rageblade - /// - LocalDisplayCastLevelXManifestRageblade = 3615, - - /// - /// local_display_manifest_rageblade_disables_weapons - /// - LocalDisplayManifestRagebladeDisablesWeapons = 3616, - - /// - /// local_display_manifest_rageblade_destroy_on_end_rampage - /// - LocalDisplayManifestRagebladeDestroyOnEndRampage = 3617, - - /// - /// minions_grant_onslaught - /// - MinionsGrantOnslaught = 3618, - - /// - /// ground_fire_art_variation - /// - GroundFireArtVariation = 3619, - - /// - /// frost_blades_damage_+% - /// - FrostBladesDamagePct = 3620, - - /// - /// frost_blades_projectile_speed_+% - /// - FrostBladesProjectileSpeedPct = 3621, - - /// - /// frost_blades_number_of_additional_projectiles_in_chain - /// - FrostBladesNumberOfAdditionalProjectilesInChain = 3622, - - /// - /// summoned_raging_spirit_duration_+% - /// - SummonedRagingSpiritDurationPct = 3623, - - /// - /// summoned_raging_spirit_chance_to_spawn_additional_minion_% - /// - SummonedRagingSpiritChanceToSpawnAdditionalMinionPct = 3624, - - /// - /// discharge_damage_+% - /// - DischargeDamagePct = 3625, - - /// - /// discharge_radius_+% - /// - DischargeRadiusPct = 3626, - - /// - /// discharge_chance_not_to_consume_charges_% - /// - DischargeChanceNotToConsumeChargesPct = 3627, - - /// - /// anger_mana_reservation_+% - /// - AngerManaReservationPct = 3628, - - /// - /// anger_aura_effect_+% - /// - AngerAuraEffectPct = 3629, - - /// - /// lightning_trap_damage_+% - /// - LightningTrapDamagePct = 3630, - - /// - /// lightning_trap_number_of_additional_projectiles - /// - LightningTrapNumberOfAdditionalProjectiles = 3631, - - /// - /// lightning_trap_cooldown_speed_+% - /// - LightningTrapCooldownSpeedPct = 3632, - - /// - /// virtual_number_of_chains - /// - VirtualNumberOfChains = 3633, - - /// - /// ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final - /// - AmbushPassiveCriticalStrikeChanceVsEnemiesOnFullLifePctFinal = 3634, - - /// - /// critical_strike_multiplier_vs_enemies_on_full_life_+ - /// - CriticalStrikeMultiplierVsEnemiesOnFullLife = 3635, - - /// - /// assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final - /// - AssassinatePassiveCriticalStrikeChanceVsEnemiesOnLowLifePctFinal = 3636, - - /// - /// ambush_passive_critical_strike_chance_+%_final - /// - AmbushPassiveCriticalStrikeChancePctFinal = 3637, - - /// - /// assassinate_passive_critical_strike_chance_+%_final - /// - AssassinatePassiveCriticalStrikeChancePctFinal = 3638, - - /// - /// immune_to_lava_damage - /// - ImmuneToLavaDamage = 3639, - - /// - /// number_of_additional_storm_clouds_allowed - /// - NumberOfAdditionalStormCloudsAllowed = 3640, - - /// - /// local_flask_consumes_x_frenzy_charges_on_use - /// - LocalFlaskConsumesXFrenzyChargesOnUse = 3641, - - /// - /// local_flask_consumes_x_endurance_charges_on_use - /// - LocalFlaskConsumesXEnduranceChargesOnUse = 3642, - - /// - /// local_flask_consumes_x_power_charges_on_use - /// - LocalFlaskConsumesXPowerChargesOnUse = 3643, - - /// - /// map_shrines_are_darkshrines - /// - MapShrinesAreDarkshrines = 3644, - - /// - /// physical_damage_+%_while_frozen - /// - PhysicalDamagePctWhileFrozen = 3645, - - /// - /// local_recharge_on_crit_% - /// - LocalRechargeOnCritPct = 3646, - - /// - /// mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy - /// - ManaAndEsRegenerationPerMinutePctWhenYouFreezeShockOrIgniteAnEnemy = 3647, - - /// - /// damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element - /// - DamageTakenPctToAnElementFor4SecondsWhenHitByDamageFromAnElement = 3648, - - /// - /// cold_damage_taken_+% - /// - ColdDamageTakenPct = 3649, - - /// - /// lightning_damage_taken_+% - /// - LightningDamageTakenPct = 3650, - - /// - /// burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_% - /// - BurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3651, - - /// - /// burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_% - /// - BurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3652, - - /// - /// local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius - /// - LocalUniqueJewelBurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPctWith50DexterityInRadius = 3653, - - /// - /// local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius - /// - LocalUniqueJewelBurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPctWith50DexterityInRadius = 3654, - - /// - /// bleed_on_hit_with_attacks_% - /// - BleedOnHitWithAttacksPct = 3655, - - /// - /// gain_flask_chance_on_crit_% - /// - GainFlaskChanceOnCritPct = 3656, - - /// - /// player_far_shot - /// - PlayerFarShot = 3657, - - /// - /// fire_elemental_meteor_landing_range - /// - FireElementalMeteorLandingRange = 3658, - - /// - /// virtual_aura_effect_pluspercent - /// - VirtualAuraEffectPluspercent = 3659, - - /// - /// cannot_be_poisoned - /// - CannotBePoisoned = 3660, - - /// - /// avoid_fire_damage_% - /// - AvoidFireDamagePct = 3661, - - /// - /// avoid_cold_damage_% - /// - AvoidColdDamagePct = 3662, - - /// - /// avoid_lightning_damage_% - /// - AvoidLightningDamagePct = 3663, - - /// - /// avoid_chaos_damage_% - /// - AvoidChaosDamagePct = 3664, - - /// - /// avoid_physical_damage_% - /// - AvoidPhysicalDamagePct = 3665, - - /// - /// remove_bleed_on_flask_use - /// - RemoveBleedOnFlaskUse = 3666, - - /// - /// slayer_ascendancy_melee_splash_damage_+%_final - /// - SlayerAscendancyMeleeSplashDamagePctFinal = 3667, - - /// - /// slayer_ascendancy_melee_splash_damage_+%_final_for_splash - /// - SlayerAscendancyMeleeSplashDamagePctFinalForSplash = 3668, - - /// - /// guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield - /// - GuardianReservedManaPctGivenToYouAndNearbyAlliesAsBaseMaximumEnergyShield = 3669, - - /// - /// virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies - /// - VirtualBaseMaximumEnergyShieldToGrantToYouAndNearbyAllies = 3670, - - /// - /// virtual_armour_to_grant_to_you_and_nearby_allies - /// - VirtualArmourToGrantToYouAndNearbyAllies = 3671, - - /// - /// number_of_additional_siege_ballistae_per_200_dexterity - /// - NumberOfAdditionalSiegeBallistaePer200Dexterity = 3672, - - /// - /// attack_minimum_added_physical_damage_per_25_dexterity - /// - AttackMinimumAddedPhysicalDamagePer25Dexterity = 3673, - - /// - /// attack_maximum_added_physical_damage_per_25_dexterity - /// - AttackMaximumAddedPhysicalDamagePer25Dexterity = 3674, - - /// - /// local_display_nearby_enemies_are_blinded - /// - LocalDisplayNearbyEnemiesAreBlinded = 3675, - - /// - /// local_display_nearby_enemies_movement_speed_+% - /// - LocalDisplayNearbyEnemiesMovementSpeedPct = 3676, - - /// - /// local_display_socketed_gems_supported_by_x_hypothermia - /// - LocalDisplaySocketedGemsSupportedByXHypothermia = 3677, - - /// - /// local_display_socketed_gems_supported_by_x_ice_bite - /// - LocalDisplaySocketedGemsSupportedByXIceBite = 3678, - - /// - /// local_display_socketed_gems_supported_by_x_cold_penetration - /// - LocalDisplaySocketedGemsSupportedByXColdPenetration = 3679, - - /// - /// local_display_socketed_gems_supported_by_x_mana_leech - /// - LocalDisplaySocketedGemsSupportedByXManaLeech = 3680, - - /// - /// local_display_socketed_gems_supported_by_x_added_cold_damage - /// - LocalDisplaySocketedGemsSupportedByXAddedColdDamage = 3681, - - /// - /// local_display_socketed_gems_supported_by_x_reduced_mana_cost - /// - LocalDisplaySocketedGemsSupportedByXReducedManaCost = 3682, - - /// - /// projectile_nova_extend_projectiles_forward_by_x_units - /// - ProjectileNovaExtendProjectilesForwardByXUnits = 3683, - - /// - /// storm_cloud_destroy_when_caster_dies - /// - StormCloudDestroyWhenCasterDies = 3684, - - /// - /// chance_to_gain_onslaught_on_kill_for_4_seconds_% - /// - ChanceToGainOnslaughtOnKillFor4SecondsPct = 3685, - - /// - /// chance_to_cast_on_rampage_tier_% - /// - ChanceToCastOnRampageTierPct = 3686, - - /// - /// local_display_minions_grant_onslaught - /// - LocalDisplayMinionsGrantOnslaught = 3687, - - /// - /// %_of_life_and_energy_shield_to_deal_as_damage - /// - PctOfLifeAndEnergyShieldToDealAsDamage = 3688, - - /// - /// critical_strike_chance_+%_vs_blinded_enemies - /// - CriticalStrikeChancePctVsBlindedEnemies = 3689, - - /// - /// is_in_singularity - /// - IsInSingularity = 3690, - - /// - /// chilled_ground_on_freeze_%_chance_for_3_seconds - /// - ChilledGroundOnFreezePctChanceFor3Seconds = 3691, - - /// - /// consecrate_ground_on_kill_%_for_3_seconds - /// - ConsecrateGroundOnKillPctFor3Seconds = 3692, - - /// - /// in_symbol - /// - InSymbol = 3693, - - /// - /// damage_taken_+%_from_enemies_in_symbols - /// - DamageTakenPctFromEnemiesInSymbols = 3694, - - /// - /// local_display_socketed_aura_gems_reserve_no_mana - /// - LocalDisplaySocketedAuraGemsReserveNoMana = 3695, - - /// - /// no_mana_reserved - /// - NoManaReserved = 3696, - - /// - /// piercing_attacks_cause_bleeding - /// - PiercingAttacksCauseBleeding = 3697, - - /// - /// spell_damage_modifiers_apply_to_skill_dot - /// - SpellDamageModifiersApplyToSkillDot = 3698, - - /// - /// shadow_blades_projectile_spread - /// - ShadowBladesProjectileSpread = 3699, - - /// - /// map_disable_bloodlines - /// - MapDisableBloodlines = 3700, - - /// - /// map_disable_nemesis - /// - MapDisableNemesis = 3701, - - /// - /// is_poisoned - /// - IsPoisoned = 3702, - - /// - /// is_vinktar_lightning_bond_source - /// - IsVinktarLightningBondSource = 3703, - - /// - /// is_vinktar_lightning_bond_target - /// - IsVinktarLightningBondTarget = 3704, - - /// - /// energy_shield_recharges_on_block_% - /// - EnergyShieldRechargesOnBlockPct = 3705, - - /// - /// dropped_weapons_have_20_quality - /// - DroppedWeaponsHave20Quality = 3706, - - /// - /// drop_additional_20_quality_gems - /// - DropAdditional20QualityGems = 3707, - - /// - /// killed_rare_monsters_drop_additional_unique_items - /// - KilledRareMonstersDropAdditionalUniqueItems = 3708, - - /// - /// poison_duration_is_skill_duration - /// - PoisonDurationIsSkillDuration = 3709, - - /// - /// map_players_gain_rare_monster_mods_on_kill_ms - /// - MapPlayersGainRareMonsterModsOnKillMs = 3710, - - /// - /// soul_eater_on_rare_kill_ms - /// - SoulEaterOnRareKillMs = 3711, - - /// - /// map_players_gain_soul_eater_on_rare_kill_ms - /// - MapPlayersGainSoulEaterOnRareKillMs = 3712, - - /// - /// gain_soul_eater_during_flask_effect - /// - GainSoulEaterDuringFlaskEffect = 3713, - - /// - /// lose_soul_eater_souls_on_flask_use - /// - LoseSoulEaterSoulsOnFlaskUse = 3714, - - /// - /// totemified_skills_taunt_on_hit_% - /// - TotemifiedSkillsTauntOnHitPct = 3715, - - /// - /// virtual_chance_to_taunt_on_hit_% - /// - VirtualChanceToTauntOnHitPct = 3716, - - /// - /// offerings_also_buff_you - /// - OfferingsAlsoBuffYou = 3717, - - /// - /// caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% - /// - CausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3718, - - /// - /// minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% - /// - MinionCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3719, - - /// - /// storm_cloud_charge_count - /// - StormCloudChargeCount = 3720, - - /// - /// monster_is_duplicated - /// - MonsterIsDuplicated = 3721, - - /// - /// gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit - /// - GainLifeLeechFromAnyDamagePermyriadAsLifeFor4SecondsIfTakenSavageHit = 3722, - - /// - /// gain_damage_+%_for_4_seconds_if_taken_savage_hit - /// - GainDamagePctFor4SecondsIfTakenSavageHit = 3723, - - /// - /// gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit - /// - GainAttackSpeedPctFor4SecondsIfTakenSavageHit = 3724, - - /// - /// damage_+%_vs_burning_enemies - /// - DamagePctVsBurningEnemies = 3725, - - /// - /// endurance_charge_on_off_hand_kill_% - /// - EnduranceChargeOnOffHandKillPct = 3726, - - /// - /// aura_melee_physical_damage_+%_per_10_strength - /// - AuraMeleePhysicalDamagePctPer10Strength = 3727, - - /// - /// attack_on_death_% - /// - AttackOnDeathPct = 3728, - - /// - /// siphon_life_leech_from_damage_permyriad - /// - SiphonLifeLeechFromDamagePermyriad = 3729, - - /// - /// total_base_maximum_mana - /// - TotalBaseMaximumMana = 3730, - - /// - /// combined_mana_+% - /// - CombinedManaPct = 3731, - - /// - /// combined_mana_+%_final - /// - CombinedManaPctFinal = 3732, - - /// - /// you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_% - /// - YouAndYourTotemsGainAnEnduranceChargeOnBurningEnemyKillPct = 3733, - - /// - /// minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_% - /// - MinionsGrantOwnerAndOwnersTotemsGainsEnduranceChargeOnBurningEnemyKillPct = 3734, - - /// - /// grant_owner_and_owners_totems_an_endurance_charge_on_burning_enemy_kill_% - /// - GrantOwnerAndOwnersTotemsAnEnduranceChargeOnBurningEnemyKillPct = 3735, - - /// - /// auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies - /// - AurasGrantAdditionalPhysicalDamageReductionPctToYouAndYourAllies = 3736, - - /// - /// auras_grant_damage_+%_to_you_and_your_allies - /// - AurasGrantDamagePctToYouAndYourAllies = 3737, - - /// - /// auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies - /// - AurasGrantAttackAndCastSpeedPctToYouAndYourAllies = 3738, - - /// - /// placing_traps_cooldown_recovery_+% - /// - PlacingTrapsCooldownRecoveryPct = 3739, - - /// - /// damage_+%_vs_enemies_affected_by_status_ailments - /// - DamagePctVsEnemiesAffectedByStatusAilments = 3740, - - /// - /// warcries_are_instant - /// - WarcriesAreInstant = 3741, - - /// - /// aura_grant_shield_defences_to_nearby_allies - /// - AuraGrantShieldDefencesToNearbyAllies = 3742, - - /// - /// minion_additional_physical_damage_reduction_% - /// - MinionAdditionalPhysicalDamageReductionPct = 3743, - - /// - /// phasing_for_4_seconds_on_kill_% - /// - PhasingFor4SecondsOnKillPct = 3744, - - /// - /// skill_area_of_effect_+%_per_active_mine - /// - SkillAreaOfEffectPctPerActiveMine = 3745, - - /// - /// damage_+%_per_active_trap - /// - DamagePctPerActiveTrap = 3746, - - /// - /// immune_to_status_ailments_while_phased - /// - ImmuneToStatusAilmentsWhilePhased = 3747, - - /// - /// chance_to_dodge_spells_%_while_phased - /// - ChanceToDodgeSpellsPctWhilePhased = 3748, - - /// - /// additional_critical_strike_chance_per_power_charge_permyriad - /// - AdditionalCriticalStrikeChancePerPowerChargePermyriad = 3749, - - /// - /// movement_skills_cost_no_mana - /// - MovementSkillsCostNoMana = 3750, - - /// - /// attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use - /// - AttackAndCastSpeedPctFor4SecondsOnMovementSkillUse = 3751, - - /// - /// recover_10%_of_maximum_mana_on_skill_use_% - /// - Recover10PctOfMaximumManaOnSkillUsePct = 3752, - - /// - /// mine_laying_speed_+%_for_4_seconds_on_detonation - /// - MineLayingSpeedPctFor4SecondsOnDetonation = 3753, - - /// - /// damage_+%_for_4_seconds_on_detonation - /// - DamagePctFor4SecondsOnDetonation = 3754, - - /// - /// flask_charges_recovered_per_3_seconds - /// - FlaskChargesRecoveredPer3Seconds = 3755, - - /// - /// trap_skill_area_of_effect_+% - /// - TrapSkillAreaOfEffectPct = 3756, - - /// - /// number_of_active_mines - /// - NumberOfActiveMines = 3757, - - /// - /// number_of_active_traps - /// - NumberOfActiveTraps = 3758, - - /// - /// is_spike_trap - /// - IsSpikeTrap = 3759, - - /// - /// is_arrow_trap - /// - IsArrowTrap = 3760, - - /// - /// damage_taken_+%_from_spike_traps_final - /// - DamageTakenPctFromSpikeTrapsFinal = 3761, - - /// - /// damage_taken_+%_from_arrow_traps_final - /// - DamageTakenPctFromArrowTrapsFinal = 3762, - - /// - /// minion_damage_taken_+%_from_spike_traps_final - /// - MinionDamageTakenPctFromSpikeTrapsFinal = 3763, - - /// - /// minion_damage_taken_+%_from_arrow_traps_final - /// - MinionDamageTakenPctFromArrowTrapsFinal = 3764, - - /// - /// labyrinth_trap_degen_effect_on_self_+% - /// - LabyrinthTrapDegenEffectOnSelfPct = 3765, - - /// - /// minions_have_labyrinth_trap_degen_effect_+% - /// - MinionsHaveLabyrinthTrapDegenEffectPct = 3766, - - /// - /// immune_to_labyrinth_degen_effect - /// - ImmuneToLabyrinthDegenEffect = 3767, - - /// - /// minions_are_immune_to_labyrinth_degen_effect - /// - MinionsAreImmuneToLabyrinthDegenEffect = 3768, - - /// - /// nearby_traps_within_x_units_also_trigger_on_triggering_trap - /// - NearbyTrapsWithinXUnitsAlsoTriggerOnTriggeringTrap = 3769, - - /// - /// number_of_additional_mines_to_place - /// - NumberOfAdditionalMinesToPlace = 3770, - - /// - /// chance_to_place_an_additional_mine_% - /// - ChanceToPlaceAnAdditionalMinePct = 3771, - - /// - /// immune_to_shunt_geal - /// - ImmuneToShuntGeal = 3772, - - /// - /// chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_% - /// - ChanceForElementalDamageToBeAddedAsAdditionalChaosDamagePct = 3773, - - /// - /// critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments - /// - CriticalStrikeChancePctVsEnemiesWithoutElementalStatusAilments = 3774, - - /// - /// spell_damage_+%_for_4_seconds_on_cast - /// - SpellDamagePctFor4SecondsOnCast = 3775, - - /// - /// attack_damage_+%_for_4_seconds_on_cast - /// - AttackDamagePctFor4SecondsOnCast = 3776, - - /// - /// attack_speed_+%_for_4_seconds_on_attack - /// - AttackSpeedPctFor4SecondsOnAttack = 3777, - - /// - /// cast_speed_+%_for_4_seconds_on_attack - /// - CastSpeedPctFor4SecondsOnAttack = 3778, - - /// - /// attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge - /// - AttackAndCastSpeedPctFor4SecondsOnBeginEsRecharge = 3779, - - /// - /// display_attack_with_commandment_of_force_on_hit_% - /// - DisplayAttackWithCommandmentOfForceOnHitPct = 3780, - - /// - /// display_attack_with_commandment_of_fury_on_hit_% - /// - DisplayAttackWithCommandmentOfFuryOnHitPct = 3781, - - /// - /// display_attack_with_commandment_of_light_when_critically_hit_% - /// - DisplayAttackWithCommandmentOfLightWhenCriticallyHitPct = 3782, - - /// - /// display_attack_with_commandment_of_spite_when_hit_% - /// - DisplayAttackWithCommandmentOfSpiteWhenHitPct = 3783, - - /// - /// display_attack_with_decree_of_force_on_hit_% - /// - DisplayAttackWithDecreeOfForceOnHitPct = 3784, - - /// - /// display_attack_with_decree_of_fury_on_hit_% - /// - DisplayAttackWithDecreeOfFuryOnHitPct = 3785, - - /// - /// display_attack_with_decree_of_light_when_critically_hit_% - /// - DisplayAttackWithDecreeOfLightWhenCriticallyHitPct = 3786, - - /// - /// display_attack_with_decree_of_spite_when_hit_% - /// - DisplayAttackWithDecreeOfSpiteWhenHitPct = 3787, - - /// - /// display_attack_with_edict_of_force_on_hit_% - /// - DisplayAttackWithEdictOfForceOnHitPct = 3788, - - /// - /// display_attack_with_edict_of_fury_on_hit_% - /// - DisplayAttackWithEdictOfFuryOnHitPct = 3789, - - /// - /// display_attack_with_edict_of_ire_when_hit_% - /// - DisplayAttackWithEdictOfIreWhenHitPct = 3790, - - /// - /// display_attack_with_edict_of_light_when_critically_hit_% - /// - DisplayAttackWithEdictOfLightWhenCriticallyHitPct = 3791, - - /// - /// display_attack_with_edict_of_spite_when_hit_% - /// - DisplayAttackWithEdictOfSpiteWhenHitPct = 3792, - - /// - /// display_attack_with_word_of_force_on_hit_% - /// - DisplayAttackWithWordOfForceOnHitPct = 3793, - - /// - /// display_attack_with_word_of_fury_on_hit_% - /// - DisplayAttackWithWordOfFuryOnHitPct = 3794, - - /// - /// display_attack_with_word_of_light_when_critically_hit_% - /// - DisplayAttackWithWordOfLightWhenCriticallyHitPct = 3795, - - /// - /// display_attack_with_word_of_ire_when_hit_% - /// - DisplayAttackWithWordOfIreWhenHitPct = 3796, - - /// - /// display_attack_with_word_of_spite_when_hit_% - /// - DisplayAttackWithWordOfSpiteWhenHitPct = 3797, - - /// - /// display_cast_commandment_of_blades_on_hit_%_ - /// - DisplayCastCommandmentOfBladesOnHitPct = 3798, - - /// - /// display_cast_commandment_of_inferno_on_kill_% - /// - DisplayCastCommandmentOfInfernoOnKillPct = 3799, - - /// - /// display_cast_commandment_of_reflection_when_hit_% - /// - DisplayCastCommandmentOfReflectionWhenHitPct = 3800, - - /// - /// display_cast_commandment_of_tempest_on_hit_% - /// - DisplayCastCommandmentOfTempestOnHitPct = 3801, - - /// - /// display_cast_commandment_of_the_grave_on_kill_% - /// - DisplayCastCommandmentOfTheGraveOnKillPct = 3802, - - /// - /// display_cast_commandment_of_war_on_kill_% - /// - DisplayCastCommandmentOfWarOnKillPct = 3803, - - /// - /// display_cast_commandment_of_winter_when_hit_% - /// - DisplayCastCommandmentOfWinterWhenHitPct = 3804, - - /// - /// display_cast_decree_of_blades_on_hit_%__ - /// - DisplayCastDecreeOfBladesOnHitPct = 3805, - - /// - /// display_cast_decree_of_inferno_on_kill_% - /// - DisplayCastDecreeOfInfernoOnKillPct = 3806, - - /// - /// display_cast_decree_of_reflection_when_hit_% - /// - DisplayCastDecreeOfReflectionWhenHitPct = 3807, - - /// - /// display_cast_decree_of_tempest_on_hit_% - /// - DisplayCastDecreeOfTempestOnHitPct = 3808, - - /// - /// display_cast_decree_of_the_grave_on_kill_% - /// - DisplayCastDecreeOfTheGraveOnKillPct = 3809, - - /// - /// display_cast_decree_of_war_on_kill_% - /// - DisplayCastDecreeOfWarOnKillPct = 3810, - - /// - /// display_cast_decree_of_winter_when_hit_% - /// - DisplayCastDecreeOfWinterWhenHitPct = 3811, - - /// - /// display_cast_edict_of_blades_on_hit_%_ - /// - DisplayCastEdictOfBladesOnHitPct = 3812, - - /// - /// display_cast_edict_of_inferno_on_kill_% - /// - DisplayCastEdictOfInfernoOnKillPct = 3813, - - /// - /// display_cast_edict_of_reflection_when_hit_% - /// - DisplayCastEdictOfReflectionWhenHitPct = 3814, - - /// - /// display_cast_edict_of_tempest_on_hit_% - /// - DisplayCastEdictOfTempestOnHitPct = 3815, - - /// - /// display_cast_edict_of_the_grave_on_kill_% - /// - DisplayCastEdictOfTheGraveOnKillPct = 3816, - - /// - /// display_cast_edict_of_war_on_kill_% - /// - DisplayCastEdictOfWarOnKillPct = 3817, - - /// - /// display_cast_edict_of_winter_when_hit_% - /// - DisplayCastEdictOfWinterWhenHitPct = 3818, - - /// - /// display_cast_word_of_blades_on_hit_% - /// - DisplayCastWordOfBladesOnHitPct = 3819, - - /// - /// display_cast_word_of_inferno_on_kill_% - /// - DisplayCastWordOfInfernoOnKillPct = 3820, - - /// - /// display_cast_word_of_reflection_when_hit_% - /// - DisplayCastWordOfReflectionWhenHitPct = 3821, - - /// - /// display_cast_word_of_tempest_on_hit_% - /// - DisplayCastWordOfTempestOnHitPct = 3822, - - /// - /// display_cast_word_of_winter_when_hit_% - /// - DisplayCastWordOfWinterWhenHitPct = 3823, - - /// - /// life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen - /// - LifeEsAndManaRecoveryPctFor4SecondsOnKillingEnemiesAffectedByYourDegen = 3824, - - /// - /// trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final - /// - TricksterPassiveChanceToEvadeAttacksWhileNotOnFullEnergyShieldPctFinal = 3825, - - /// - /// display_cast_word_of_flames_on_hit_% - /// - DisplayCastWordOfFlamesOnHitPct = 3826, - - /// - /// display_cast_edict_of_flames_on_hit_% - /// - DisplayCastEdictOfFlamesOnHitPct = 3827, - - /// - /// display_cast_decree_of_flames_on_hit_% - /// - DisplayCastDecreeOfFlamesOnHitPct = 3828, - - /// - /// display_cast_commandment_of_flames_on_hit_% - /// - DisplayCastCommandmentOfFlamesOnHitPct = 3829, - - /// - /// display_cast_word_of_frost_on_kill_% - /// - DisplayCastWordOfFrostOnKillPct = 3830, - - /// - /// display_cast_edict_of_frost_on_kill_% - /// - DisplayCastEdictOfFrostOnKillPct = 3831, - - /// - /// display_cast_decree_of_frost_on_kill_% - /// - DisplayCastDecreeOfFrostOnKillPct = 3832, - - /// - /// display_cast_commandment_of_frost_on_kill_% - /// - DisplayCastCommandmentOfFrostOnKillPct = 3833, - - /// - /// display_cast_word_of_thunder_on_kill_% - /// - DisplayCastWordOfThunderOnKillPct = 3834, - - /// - /// display_cast_edict_of_thunder_on_kill_% - /// - DisplayCastEdictOfThunderOnKillPct = 3835, - - /// - /// display_cast_decree_of_thunder_on_kill_% - /// - DisplayCastDecreeOfThunderOnKillPct = 3836, - - /// - /// display_cast_commandment_of_thunder_on_kill_% - /// - DisplayCastCommandmentOfThunderOnKillPct = 3837, - - /// - /// display_cast_fire_burst_on_kill - /// - DisplayCastFireBurstOnKill = 3838, - - /// - /// local_stat_monsters_pick_up_item - /// - LocalStatMonstersPickUpItem = 3839, - - /// - /// stone_golem_grants_base_life_regeneration_rate_per_minute - /// - StoneGolemGrantsBaseLifeRegenerationRatePerMinute = 3840, - - /// - /// bladefall_damage_per_stage_+%_final - /// - BladefallDamagePerStagePctFinal = 3841, - - /// - /// global_maim_on_hit - /// - GlobalMaimOnHit = 3842, - - /// - /// consecrate_ground_for_3_seconds_when_hit_% - /// - ConsecrateGroundFor3SecondsWhenHitPct = 3843, - - /// - /// damage_+%_on_consecrated_ground - /// - DamagePctOnConsecratedGround = 3844, - - /// - /// mana_cost_+%_on_consecrated_ground - /// - ManaCostPctOnConsecratedGround = 3845, - - /// - /// avoid_ailments_%_on_consecrated_ground - /// - AvoidAilmentsPctOnConsecratedGround = 3846, - - /// - /// on_consecrated_ground - /// - OnConsecratedGround = 3847, - - /// - /// inquisitor_aura_elemental_damage_+%_final - /// - InquisitorAuraElementalDamagePctFinal = 3848, - - /// - /// critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment - /// - CriticalStrikeMultiplierVsEnemiesAffectedByElementalStatusAilment = 3849, - - /// - /// non_critical_strikes_penetrate_elemental_resistances_% - /// - NonCriticalStrikesPenetrateElementalResistancesPct = 3850, - - /// - /// virtual_penetrate_elemental_resistances_% - /// - VirtualPenetrateElementalResistancesPct = 3851, - - /// - /// base_penetrate_elemental_resistances_% - /// - BasePenetrateElementalResistancesPct = 3852, - - /// - /// virtual_minion_additional_physical_damage_reduction_percent - /// - VirtualMinionAdditionalPhysicalDamageReductionPercent = 3853, - - /// - /// chance_to_poison_on_hit_with_attacks_% - /// - ChanceToPoisonOnHitWithAttacksPct = 3854, - - /// - /// chance_to_double_stun_duration_% - /// - ChanceToDoubleStunDurationPct = 3855, - - /// - /// is_guillotine_trap - /// - IsGuillotineTrap = 3856, - - /// - /// damage_taken_+%_from_guillotine_traps_final - /// - DamageTakenPctFromGuillotineTrapsFinal = 3857, - - /// - /// minion_damage_taken_+%_from_guillotine_traps_final - /// - MinionDamageTakenPctFromGuillotineTrapsFinal = 3858, - - /// - /// labyrinth_arrow_movement_speed_+%_final - /// - LabyrinthArrowMovementSpeedPctFinal = 3859, - - /// - /// map_disable_portal_use - /// - MapDisablePortalUse = 3860, - - /// - /// jorrhasts_blacksteel_animate_weapon_duration_+%_final - /// - JorrhastsBlacksteelAnimateWeaponDurationPctFinal = 3861, - - /// - /// shockwave_slam_explosion_damage_+%_final - /// - ShockwaveSlamExplosionDamagePctFinal = 3862, - - /// - /// display_monster_casts_wither - /// - DisplayMonsterCastsWither = 3863, - - /// - /// display_monster_causes_ground_desecration - /// - DisplayMonsterCausesGroundDesecration = 3864, - - /// - /// spread_tar_ground_when_not_igniting_enemy_on_hit_% - /// - SpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3865, - - /// - /// spread_burning_ground_when_igniting_enemy_on_hit_% - /// - SpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3866, - - /// - /// non_curse_aura_effect_+% - /// - NonCurseAuraEffectPct = 3867, - - /// - /// max_talisman_degen_stacks - /// - MaxTalismanDegenStacks = 3868, - - /// - /// current_talisman_degen_stacks - /// - CurrentTalismanDegenStacks = 3869, - - /// - /// base_physical_damage_taken_per_minute_per_talisman_degen_stack - /// - BasePhysicalDamageTakenPerMinutePerTalismanDegenStack = 3870, - - /// - /// melee_splash_area_of_effect_+%_final - /// - MeleeSplashAreaOfEffectPctFinal = 3871, - - /// - /// unarmed_damage_+%_vs_bleeding_enemies - /// - UnarmedDamagePctVsBleedingEnemies = 3872, - - /// - /// life_gained_on_bleeding_enemy_hit - /// - LifeGainedOnBleedingEnemyHit = 3873, - - /// - /// base_critical_strike_chance_while_unarmed_% - /// - BaseCriticalStrikeChanceWhileUnarmedPct = 3874, - - /// - /// modifiers_to_claw_damage_also_affect_unarmed_damage - /// - ModifiersToClawDamageAlsoAffectUnarmedDamage = 3875, - - /// - /// damage_+%_while_unarmed - /// - DamagePctWhileUnarmed = 3876, - - /// - /// bloodworm_on_damage_taken_% - /// - BloodwormOnDamageTakenPct = 3877, - - /// - /// map_sidearea_level_override - /// - MapSideareaLevelOverride = 3878, - - /// - /// map_boss_talisman_tier - /// - MapBossTalismanTier = 3879, - - /// - /// map_boss_talisman_rarity - /// - MapBossTalismanRarity = 3880, - - /// - /// local_display_illusory_warp_level - /// - LocalDisplayIllusoryWarpLevel = 3881, - - /// - /// fortify_effect_on_self_+% - /// - FortifyEffectOnSelfPct = 3882, - - /// - /// local_implicit_stat_magnitude_+% - /// - LocalImplicitStatMagnitudePct = 3883, - - /// - /// using_flask - /// - UsingFlask = 3884, - - /// - /// chance_to_poison_on_hit_% - /// - ChanceToPoisonOnHitPct = 3885, - - /// - /// flask_charges_gained_+% - /// - FlaskChargesGainedPct = 3886, - - /// - /// soul_eater_from_stat - /// - SoulEaterFromStat = 3887, - - /// - /// gain_power_charge_on_kill_with_hit_% - /// - GainPowerChargeOnKillWithHitPct = 3888, - - /// - /// killed_monster_dropped_item_rarity_+%_when_shattered - /// - KilledMonsterDroppedItemRarityPctWhenShattered = 3889, - - /// - /// Energy Shield Delay Recovery Increase - /// - EnergyShieldDelayDuringFlaskEffectPct = 3890, - - /// - /// Energy Shield Delay Recovery Increase - /// - VirtualEnergyShieldDelayPct = 3891, - - /// - /// energy_shield_recharge_rate_during_flask_effect_+% - /// - EnergyShieldRechargeRateDuringFlaskEffectPct = 3892, - - /// - /// virtual_energy_shield_recharge_rate_+% - /// - VirtualEnergyShieldRechargeRatePct = 3893, - - /// - /// base_cold_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute - /// - BaseColdDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3894, - - /// - /// base_lightning_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute - /// - BaseLightningDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3895, - - /// - /// modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed - /// - ModifiersToClawAttackSpeedAlsoAffectUnarmedAttackSpeed = 3896, - - /// - /// modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance - /// - ModifiersToClawCriticalStrikeChanceAlsoAffectUnarmedCriticalStrikeChance = 3897, - - /// - /// main_hand_chance_to_poison_on_critical_strike_% - /// - MainHandChanceToPoisonOnCriticalStrikePct = 3898, - - /// - /// off_hand_chance_to_poison_on_critical_strike_% - /// - OffHandChanceToPoisonOnCriticalStrikePct = 3899, - - /// - /// chance_to_poison_on_critical_strike_with_dagger_% - /// - ChanceToPoisonOnCriticalStrikeWithDaggerPct = 3900, - - /// - /// minion_duration - /// - MinionDuration = 3901, - - /// - /// number_of_wolves_allowed - /// - NumberOfWolvesAllowed = 3902, - - /// - /// whirling_leap_bloodworms_to_spawn - /// - WhirlingLeapBloodwormsToSpawn = 3903, - - /// - /// map_display_unique_boss_drops_X_maps - /// - MapDisplayUniqueBossDropsXMaps = 3904, - - /// - /// endurance_charge_on_kill_% - /// - EnduranceChargeOnKillPct = 3905, - - /// - /// fishing_bite_sensitivity_+% - /// - FishingBiteSensitivityPct = 3906, - - /// - /// local_display_summon_wolf_on_kill_% - /// - LocalDisplaySummonWolfOnKillPct = 3907, - - /// - /// corrupted_blood_on_hit_%_average_damage_to_deal_per_minute_per_stack - /// - CorruptedBloodOnHitPctAverageDamageToDealPerMinutePerStack = 3908, - - /// - /// maim_on_hit_%_with_at_least_3_stacks_of_corrupted_blood - /// - MaimOnHitPctWithAtLeast3StacksOfCorruptedBlood = 3909, - - /// - /// monster_can_spawn_with_talisman - /// - MonsterCanSpawnWithTalisman = 3910, - - /// - /// monster_explodes_on_death_text - /// - MonsterExplodesOnDeathText = 3911, - - /// - /// number_of_active_wolves - /// - NumberOfActiveWolves = 3912, - - /// - /// active_skill_area_of_effect_+%_final - /// - ActiveSkillAreaOfEffectPctFinal = 3913, - - /// - /// cold_damage_+%_per_1%_block_chance - /// - ColdDamagePctPer1PctBlockChance = 3914, - - /// - /// maximum_mana_+%_per_2%_spell_block_chance - /// - MaximumManaPctPer2PctSpellBlockChance = 3915, - - /// - /// physical_damage_reduction_rating_+%_while_chilled_or_frozen - /// - PhysicalDamageReductionRatingPctWhileChilledOrFrozen = 3916, - - /// - /// support_reduced_duration_damage_+%_final - /// - SupportReducedDurationDamagePctFinal = 3917, - - /// - /// map_players_action_speed_+%_while_chilled - /// - MapPlayersActionSpeedPctWhileChilled = 3918, - - /// - /// action_speed_+%_while_chilled - /// - ActionSpeedPctWhileChilled = 3919, - - /// - /// extra_gore_chance_override_% - /// - ExtraGoreChanceOverridePct = 3920, - - /// - /// siphon_base_chaos_damage_to_deal_per_minute - /// - SiphonBaseChaosDamageToDealPerMinute = 3921, - - /// - /// blade_vortex_buff_range - /// - BladeVortexBuffRange = 3922, - - /// - /// spell_and_attack_minimum_added_cold_damage - /// - SpellAndAttackMinimumAddedColdDamage = 3923, - - /// - /// spell_and_attack_maximum_added_cold_damage - /// - SpellAndAttackMaximumAddedColdDamage = 3924, - - /// - /// reduce_enemy_cold_resistance_with_weapons_% - /// - ReduceEnemyColdResistanceWithWeaponsPct = 3925, - - /// - /// reduce_enemy_fire_resistance_with_weapons_% - /// - ReduceEnemyFireResistanceWithWeaponsPct = 3926, - - /// - /// reduce_enemy_lightning_resistance_with_weapons_% - /// - ReduceEnemyLightningResistanceWithWeaponsPct = 3927, - - /// - /// reduce_enemy_chaos_resistance_with_weapons_% - /// - ReduceEnemyChaosResistanceWithWeaponsPct = 3928, - - /// - /// support_minefield_mine_damage_+%_final - /// - SupportMinefieldMineDamagePctFinal = 3929, - - /// - /// modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity - /// - ModifiersToMapItemDropQuantityAlsoApplyToMapItemDropRarity = 3930, - - /// - /// map_monster_drop_higher_level_gear - /// - MapMonsterDropHigherLevelGear = 3931, - - /// - /// support_gem_elemental_damage_+%_final - /// - SupportGemElementalDamagePctFinal = 3932, - - /// - /// keystone_elemental_overload_damage_+%_final - /// - KeystoneElementalOverloadDamagePctFinal = 3933, - - /// - /// keystone_elemental_overload - /// - KeystoneElementalOverload = 3934, - - /// - /// local_smoke_ground_on_flask_use_radius - /// - LocalSmokeGroundOnFlaskUseRadius = 3935, - - /// - /// local_consecrate_ground_on_flask_use_radius - /// - LocalConsecrateGroundOnFlaskUseRadius = 3936, - - /// - /// gain_onslaught_during_flask_effect - /// - GainOnslaughtDuringFlaskEffect = 3937, - - /// - /// cast_linked_curses_on_curse - /// - CastLinkedCursesOnCurse = 3938, - - /// - /// reduce_enemy_elemental_resistance_with_weapons_% - /// - ReduceEnemyElementalResistanceWithWeaponsPct = 3939, - - /// - /// %_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy - /// - PctChanceToGainFrenzyChargeOnTrapTriggeredByAnEnemy = 3940, - - /// - /// %_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy - /// - PctChanceToGainEnduranceChargeOnTrapTriggeredByAnEnemy = 3941, - - /// - /// local_number_of_bloodworms_to_spawn_on_flask_use - /// - LocalNumberOfBloodwormsToSpawnOnFlaskUse = 3942, - - /// - /// add_power_charge_on_hit_% - /// - AddPowerChargeOnHitPct = 3943, - - /// - /// lose_all_power_charges_on_reaching_maximum_power_charges - /// - LoseAllPowerChargesOnReachingMaximumPowerCharges = 3944, - - /// - /// shocked_for_4_seconds_on_reaching_maximum_power_charges - /// - ShockedFor4SecondsOnReachingMaximumPowerCharges = 3945, - - /// - /// local_display_molten_burst_on_melee_hit_% - /// - LocalDisplayMoltenBurstOnMeleeHitPct = 3946, - - /// - /// max_frost_nova_stacks - /// - MaxFrostNovaStacks = 3947, - - /// - /// current_frost_nova_stacks - /// - CurrentFrostNovaStacks = 3948, - - /// - /// reverse_projectile_spread - /// - ReverseProjectileSpread = 3949, - - /// - /// base_cold_damage_+%_per_frost_nova_stack - /// - BaseColdDamagePctPerFrostNovaStack = 3950, - - /// - /// frost_nova_cold_damage_+%_per_frost_nova_stack - /// - FrostNovaColdDamagePctPerFrostNovaStack = 3951, - - /// - /// is_petrified - /// - IsPetrified = 3952, - - /// - /// cast_on_melee_hit_% - /// - CastOnMeleeHitPct = 3953, - - /// - /// izaro_curse_on_hit_level_temporal_chains - /// - IzaroCurseOnHitLevelTemporalChains = 3954, - - /// - /// izaro_curse_on_hit_level_elemental_weakness - /// - IzaroCurseOnHitLevelElementalWeakness = 3955, - - /// - /// izaro_curse_on_hit_level_vulnerability - /// - IzaroCurseOnHitLevelVulnerability = 3956, - - /// - /// labyrinth_trinket_instantly_kill_next_pylon - /// - LabyrinthTrinketInstantlyKillNextPylon = 3957, - - /// - /// labyrinth_trinket_instantly_kill_next_lieutenant - /// - LabyrinthTrinketInstantlyKillNextLieutenant = 3958, - - /// - /// labyrinth_trinket_instantly_kill_next_elemental - /// - LabyrinthTrinketInstantlyKillNextElemental = 3959, - - /// - /// labyrinth_trinket_instantly_kill_next_gargoyle - /// - LabyrinthTrinketInstantlyKillNextGargoyle = 3960, - - /// - /// labyrinth_trinket_permanently_disable_next_statue - /// - LabyrinthTrinketPermanentlyDisableNextStatue = 3961, - - /// - /// labyrinth_trinket_permanently_disable_next_symbol - /// - LabyrinthTrinketPermanentlyDisableNextSymbol = 3962, - - /// - /// labyrinth_trinket_reactivate_next_charge_disruptor_after_5_seconds - /// - LabyrinthTrinketReactivateNextChargeDisruptorAfter5Seconds = 3963, - - /// - /// add_endurance_charge_on_gain_power_charge_% - /// - AddEnduranceChargeOnGainPowerChargePct = 3964, - - /// - /// stacking_damage_+%_on_kill_for_4_seconds - /// - StackingDamagePctOnKillFor4Seconds = 3965, - - /// - /// grant_owner_stacking_damage_+%_on_kill_for_4_seconds - /// - GrantOwnerStackingDamagePctOnKillFor4Seconds = 3966, - - /// - /// attack_and_cast_speed_+%_while_totem_active - /// - AttackAndCastSpeedPctWhileTotemActive = 3967, - - /// - /// number_of_additional_totems_allowed_on_kill_for_8_seconds - /// - NumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3968, - - /// - /// owner_number_of_additional_totems_allowed_on_kill_for_8_seconds - /// - OwnerNumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3969, - - /// - /// map_monsters_base_self_critical_strike_multiplier_-% - /// - MapMonstersBaseSelfCriticalStrikeMultiplierPct = 3970, - - /// - /// local_flask_is_petrified - /// - LocalFlaskIsPetrified = 3971, - - /// - /// hierophant_helmet_supported_by_elemental_penetration - /// - HierophantHelmetSupportedByElementalPenetration = 3972, - - /// - /// hierophant_gloves_supported_by_increased_area_of_effect - /// - HierophantGlovesSupportedByIncreasedAreaOfEffect = 3973, - - /// - /// hierophant_boots_supported_by_life_leech - /// - HierophantBootsSupportedByLifeLeech = 3974, - - /// - /// power_frenzy_or_endurance_charge_on_kill_% - /// - PowerFrenzyOrEnduranceChargeOnKillPct = 3975, - - /// - /// local_flask_effect_+% - /// - LocalFlaskEffectPct = 3976, - - /// - /// local_flask_poison_immunity_during_flask_effect - /// - LocalFlaskPoisonImmunityDuringFlaskEffect = 3977, - - /// - /// immune_to_poison - /// - ImmuneToPoison = 3978, - - /// - /// local_flask_additional_physical_damage_reduction_% - /// - LocalFlaskAdditionalPhysicalDamageReductionPct = 3979, - - /// - /// unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill - /// - UniqueSpreadPoisonToNearbyAlliesAs200LifeRegenerationPerSecondOnKill = 3980, - - /// - /// support_pierce_projectile_damage_+%_final - /// - SupportPierceProjectileDamagePctFinal = 3981, - - /// - /// elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element - /// - ElementalistDamageWithAnElementPctFor4SecondsAfterBeingHitByAnElement = 3982, - - /// - /// elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds - /// - ElementalistElementalDamagePctFor4SecondsEvery10Seconds = 3983, - - /// - /// elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill - /// - ElementalistColdPenetrationPctFor4SecondsOnUsingFireSkill = 3984, - - /// - /// elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill - /// - ElementalistLightningPenetrationPctFor4SecondsOnUsingColdSkill = 3985, - - /// - /// elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill - /// - ElementalistFirePenetrationPctFor4SecondsOnUsingLightningSkill = 3986, - - /// - /// elementalist_summon_elemental_golem_on_killing_enemy_with_element_% - /// - ElementalistSummonElementalGolemOnKillingEnemyWithElementPct = 3987, - - /// - /// elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_% - /// - ElementalistAllDamageCausesChillShockAndIgniteFor4SecondsOnKillPct = 3988, - - /// - /// elementalist_elemental_status_effect_aura_radius - /// - ElementalistElementalStatusEffectAuraRadius = 3989, - - /// - /// elementalist_elemental_damage_rotation - /// - ElementalistElementalDamageRotation = 3990, - - /// - /// virtual_elemental_status_effect_aura_radius - /// - VirtualElementalStatusEffectAuraRadius = 3991, - - /// - /// all_damage_can_chill_ignite_shock - /// - AllDamageCanChillIgniteShock = 3992, - - /// - /// is_blighted - /// - IsBlighted = 3993, - - /// - /// virtual_life_leech_permyriad_on_crit - /// - VirtualLifeLeechPermyriadOnCrit = 3994, - - /// - /// occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds - /// - OccultistGainPctOfNonChaosDamageAsChaosDamagePerCurseOnTargetOnKillFor4Seconds = 3995, - - /// - /// occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery - /// - OccultistEnergyShieldAlwaysRecoversFor4SecondsAfterStartingRecovery = 3996, - - /// - /// occultist_stun_threshold_is_based_on_energy_shield_instead_of_life - /// - OccultistStunThresholdIsBasedOnEnergyShieldInsteadOfLife = 3997, - - /// - /// is_counterattack - /// - IsCounterattack = 3998, - - /// - /// knockback_on_counterattack_% - /// - KnockbackOnCounterattackPct = 3999, - - /// - /// local_flask_chilled_ground_on_flask_use_radius - /// - LocalFlaskChilledGroundOnFlaskUseRadius = 4000, - - /// - /// local_flask_duration_+% - /// - LocalFlaskDurationPct = 4001, - - /// - /// max_charged_attack_stacks - /// - MaxChargedAttackStacks = 4002, - - /// - /// current_charged_attack_stacks - /// - CurrentChargedAttackStacks = 4003, - - /// - /// local_display_socketed_curse_gems_supported_by_level_x_blasphemy - /// - LocalDisplaySocketedCurseGemsSupportedByLevelXBlasphemy = 4004, - - /// - /// chill_on_you_proliferates_to_nearby_enemies_within_x_radius - /// - ChillOnYouProliferatesToNearbyEnemiesWithinXRadius = 4005, - - /// - /// freeze_on_you_proliferates_to_nearby_enemies_within_x_radius - /// - FreezeOnYouProliferatesToNearbyEnemiesWithinXRadius = 4006, - - /// - /// animate_weapon_damage_+% - /// - AnimateWeaponDamagePct = 4007, - - /// - /// burning_arrow_damage_+% - /// - BurningArrowDamagePct = 4008, - - /// - /// cleave_damage_+% - /// - CleaveDamagePct = 4009, - - /// - /// double_strike_damage_+% - /// - DoubleStrikeDamagePct = 4010, - - /// - /// dual_strike_damage_+% - /// - DualStrikeDamagePct = 4011, - - /// - /// fire_trap_damage_+% - /// - FireTrapDamagePct = 4012, - - /// - /// fireball_damage_+% - /// - FireballDamagePct = 4013, - - /// - /// freezing_pulse_damage_+% - /// - FreezingPulseDamagePct = 4014, - - /// - /// glacial_hammer_damage_+% - /// - GlacialHammerDamagePct = 4015, - - /// - /// ground_slam_damage_+% - /// - GroundSlamDamagePct = 4016, - - /// - /// heavy_strike_damage_+% - /// - HeavyStrikeDamagePct = 4017, - - /// - /// infernal_blow_damage_+% - /// - InfernalBlowDamagePct = 4018, - - /// - /// lightning_strike_damage_+% - /// - LightningStrikeDamagePct = 4019, - - /// - /// lightning_tendrils_damage_+% - /// - LightningTendrilsDamagePct = 4020, - - /// - /// magma_orb_damage_+% - /// - MagmaOrbDamagePct = 4021, - - /// - /// molten_strike_damage_+% - /// - MoltenStrikeDamagePct = 4022, - - /// - /// zombie_damage_+% - /// - ZombieDamagePct = 4023, - - /// - /// reave_damage_+% - /// - ReaveDamagePct = 4024, - - /// - /// spark_damage_+% - /// - SparkDamagePct = 4025, - - /// - /// spectral_throw_damage_+% - /// - SpectralThrowDamagePct = 4026, - - /// - /// split_arrow_damage_+% - /// - SplitArrowDamagePct = 4027, - - /// - /// ethereal_knives_damage_+% - /// - EtherealKnivesDamagePct = 4028, - - /// - /// ice_shot_damage_+% - /// - IceShotDamagePct = 4029, - - /// - /// rain_of_arrows_damage_+% - /// - RainOfArrowsDamagePct = 4030, - - /// - /// raging_spirit_damage_+% - /// - RagingSpiritDamagePct = 4031, - - /// - /// viper_strike_damage_+% - /// - ViperStrikeDamagePct = 4032, - - /// - /// flicker_strike_damage_+% - /// - FlickerStrikeDamagePct = 4033, - - /// - /// leap_slam_damage_+% - /// - LeapSlamDamagePct = 4034, - - /// - /// lightning_arrow_damage_+% - /// - LightningArrowDamagePct = 4035, - - /// - /// lightning_warp_damage_+% - /// - LightningWarpDamagePct = 4036, - - /// - /// puncture_damage_+% - /// - PunctureDamagePct = 4037, - - /// - /// shield_charge_damage_+% - /// - ShieldChargeDamagePct = 4038, - - /// - /// skeletons_damage_+% - /// - SkeletonsDamagePct = 4039, - - /// - /// arc_damage_+% - /// - ArcDamagePct = 4040, - - /// - /// barrage_damage_+% - /// - BarrageDamagePct = 4041, - - /// - /// fire_nova_mine_damage_+% - /// - FireNovaMineDamagePct = 4042, - - /// - /// fire_storm_damage_+% - /// - FireStormDamagePct = 4043, - - /// - /// flame_surge_damage_+% - /// - FlameSurgeDamagePct = 4044, - - /// - /// ice_nova_damage_+% - /// - IceNovaDamagePct = 4045, - - /// - /// ice_spear_damage_+% - /// - IceSpearDamagePct = 4046, - - /// - /// incinerate_damage_+% - /// - IncinerateDamagePct = 4047, - - /// - /// power_siphon_damage_+% - /// - PowerSiphonDamagePct = 4048, - - /// - /// searing_bond_damage_+% - /// - SearingBondDamagePct = 4049, - - /// - /// static_strike_damage_+% - /// - StaticStrikeDamagePct = 4050, - - /// - /// storm_call_damage_+% - /// - StormCallDamagePct = 4051, - - /// - /// sweep_damage_+% - /// - SweepDamagePct = 4052, - - /// - /// frenzy_damage_+% - /// - FrenzyDamagePct = 4053, - - /// - /// righteous_fire_damage_+% - /// - RighteousFireDamagePct = 4054, - - /// - /// elemental_hit_damage_+% - /// - ElementalHitDamagePct = 4055, - - /// - /// cyclone_damage_+% - /// - CycloneDamagePct = 4056, - - /// - /// tornado_shot_damage_+% - /// - TornadoShotDamagePct = 4057, - - /// - /// arctic_breath_damage_+% - /// - ArcticBreathDamagePct = 4058, - - /// - /// explosive_arrow_damage_+% - /// - ExplosiveArrowDamagePct = 4059, - - /// - /// flameblast_damage_+% - /// - FlameblastDamagePct = 4060, - - /// - /// glacial_cascade_damage_+% - /// - GlacialCascadeDamagePct = 4061, - - /// - /// ice_crash_damage_+% - /// - IceCrashDamagePct = 4062, - - /// - /// kinetic_blast_damage_+% - /// - KineticBlastDamagePct = 4063, - - /// - /// shock_nova_damage_+% - /// - ShockNovaDamagePct = 4064, - - /// - /// shockwave_totem_damage_+% - /// - ShockwaveTotemDamagePct = 4065, - - /// - /// wild_strike_damage_+% - /// - WildStrikeDamagePct = 4066, - - /// - /// detonate_dead_damage_+% - /// - DetonateDeadDamagePct = 4067, - - /// - /// caustic_arrow_damage_+% - /// - CausticArrowDamagePct = 4068, - - /// - /// chaos_golem_damage_+% - /// - ChaosGolemDamagePct = 4069, - - /// - /// flame_golem_damage_+% - /// - FlameGolemDamagePct = 4070, - - /// - /// ice_golem_damage_+% - /// - IceGolemDamagePct = 4071, - - /// - /// cold_snap_damage_+% - /// - ColdSnapDamagePct = 4072, - - /// - /// flame_totem_damage_+% - /// - FlameTotemDamagePct = 4073, - - /// - /// animate_guardian_damage_+% - /// - AnimateGuardianDamagePct = 4074, - - /// - /// bear_trap_damage_+% - /// - BearTrapDamagePct = 4075, - - /// - /// frost_wall_damage_+% - /// - FrostWallDamagePct = 4076, - - /// - /// molten_shell_damage_+% - /// - MoltenShellDamagePct = 4077, - - /// - /// reckoning_damage_+% - /// - ReckoningDamagePct = 4078, - - /// - /// vigilant_strike_damage_+% - /// - VigilantStrikeDamagePct = 4079, - - /// - /// whirling_blades_damage_+% - /// - WhirlingBladesDamagePct = 4080, - - /// - /// flame_dash_damage_+% - /// - FlameDashDamagePct = 4081, - - /// - /// freeze_mine_damage_+% - /// - FreezeMineDamagePct = 4082, - - /// - /// herald_of_ash_damage_+% - /// - HeraldOfAshDamagePct = 4083, - - /// - /// herald_of_ice_damage_+% - /// - HeraldOfIceDamagePct = 4084, - - /// - /// herald_of_thunder_damage_+% - /// - HeraldOfThunderDamagePct = 4085, - - /// - /// tempest_shield_damage_+% - /// - TempestShieldDamagePct = 4086, - - /// - /// desecrate_damage_+% - /// - DesecrateDamagePct = 4087, - - /// - /// blink_arrow_and_blink_arrow_clone_damage_+% - /// - BlinkArrowAndBlinkArrowCloneDamagePct = 4088, - - /// - /// mirror_arrow_and_mirror_arrow_clone_damage_+% - /// - MirrorArrowAndMirrorArrowCloneDamagePct = 4089, - - /// - /// riposte_damage_+% - /// - RiposteDamagePct = 4090, - - /// - /// vengeance_damage_+% - /// - VengeanceDamagePct = 4091, - - /// - /// converted_enemies_damage_+% - /// - ConvertedEnemiesDamagePct = 4092, - - /// - /// abyssal_cry_damage_+% - /// - AbyssalCryDamagePct = 4093, - - /// - /// shrapnel_shot_damage_+% - /// - ShrapnelShotDamagePct = 4094, - - /// - /// blast_rain_damage_+% - /// - BlastRainDamagePct = 4095, - - /// - /// essence_drain_damage_+% - /// - EssenceDrainDamagePct = 4096, - - /// - /// contagion_damage_+% - /// - ContagionDamagePct = 4097, - - /// - /// blade_vortex_damage_+% - /// - BladeVortexDamagePct = 4098, - - /// - /// bladefall_damage_+% - /// - BladefallDamagePct = 4099, - - /// - /// ice_trap_damage_+% - /// - IceTrapDamagePct = 4100, - - /// - /// earthquake_damage_+% - /// - EarthquakeDamagePct = 4101, - - /// - /// stone_golem_damage_+% - /// - StoneGolemDamagePct = 4102, - - /// - /// frost_bomb_damage_+% - /// - FrostBombDamagePct = 4103, - - /// - /// orb_of_storms_damage_+% - /// - OrbOfStormsDamagePct = 4104, - - /// - /// siege_ballista_damage_+% - /// - SiegeBallistaDamagePct = 4105, - - /// - /// blight_damage_+% - /// - BlightDamagePct = 4106, - - /// - /// shockwave_slam_damage_+% - /// - ShockwaveSlamDamagePct = 4107, - - /// - /// fire_beam_damage_+% - /// - FireBeamDamagePct = 4108, - - /// - /// life_regeneration_per_minute_%_while_frozen - /// - LifeRegenerationPerMinutePctWhileFrozen = 4109, - - /// - /// occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds - /// - OccultistStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 4110, - - /// - /// occultist_immune_to_stun_while_has_energy_shield - /// - OccultistImmuneToStunWhileHasEnergyShield = 4111, - - /// - /// totem_damage_+%_final_per_active_totem - /// - TotemDamagePctFinalPerActiveTotem = 4112, - - /// - /// totem_damage_+%_final - /// - TotemDamagePctFinal = 4113, - - /// - /// cannot_be_affected_by_flasks - /// - CannotBeAffectedByFlasks = 4114, - - /// - /// flasks_apply_to_your_zombies_and_spectres - /// - FlasksApplyToYourZombiesAndSpectres = 4115, - - /// - /// modifiers_to_minion_damage_also_affect_you - /// - ModifiersToMinionDamageAlsoAffectYou = 4116, - - /// - /// additive_modifiers_to_minion_attack_speed_also_affect_you - /// - AdditiveModifiersToMinionAttackSpeedAlsoAffectYou = 4117, - - /// - /// modifiers_to_minion_cast_speed_also_affect_you - /// - ModifiersToMinionCastSpeedAlsoAffectYou = 4118, - - /// - /// modifiers_to_minion_life_regeneration_also_affect_you - /// - ModifiersToMinionLifeRegenerationAlsoAffectYou = 4119, - - /// - /// modifiers_to_minion_movement_speed_also_affect_you - /// - ModifiersToMinionMovementSpeedAlsoAffectYou = 4120, - - /// - /// modifiers_to_minion_resistances_also_affect_you - /// - ModifiersToMinionResistancesAlsoAffectYou = 4121, - - /// - /// cast_on_gain_skill - /// - CastOnGainSkill = 4122, - - /// - /// base_lightning_damage_taken_per_second - /// - BaseLightningDamageTakenPerSecond = 4123, - - /// - /// Super Endurance Charges - /// - CurrentIzaroCharges = 4124, - - /// - /// attack_speed_+%_per_izaro_charge - /// - AttackSpeedPctPerIzaroCharge = 4125, - - /// - /// cast_speed_+%_per_izaro_charge - /// - CastSpeedPctPerIzaroCharge = 4126, - - /// - /// damage_+%_per_izaro_charge_final - /// - DamagePctPerIzaroChargeFinal = 4127, - - /// - /// physical_damage_reduction_%_per_izaro_charge - /// - PhysicalDamageReductionPctPerIzaroCharge = 4128, - - /// - /// resist_all_elements_%_per_izaro_charge - /// - ResistAllElementsPctPerIzaroCharge = 4129, - - /// - /// critical_strike_chance_+%_per_izaro_charge - /// - CriticalStrikeChancePctPerIzaroCharge = 4130, - - /// - /// shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range - /// - ShieldChargeScalingStunThresholdReductionPctAtMaximumRange = 4131, - - /// - /// map_spawn_perandus_chests - /// - MapSpawnPerandusChests = 4132, - - /// - /// set_user_life_to_1_on_skill_use - /// - SetUserLifeTo1OnSkillUse = 4133, - - /// - /// grant_izaro_buff_on_skill_use - /// - GrantIzaroBuffOnSkillUse = 4134, - - /// - /// local_double_damage_to_chilled_enemies - /// - LocalDoubleDamageToChilledEnemies = 4135, - - /// - /// main_hand_double_damage_to_chilled_enemies - /// - MainHandDoubleDamageToChilledEnemies = 4136, - - /// - /// off_hand_double_damage_to_chilled_enemies - /// - OffHandDoubleDamageToChilledEnemies = 4137, - - /// - /// global_number_of_times_damage_is_doubled - /// - GlobalNumberOfTimesDamageIsDoubled = 4138, - - /// - /// main_hand_number_of_times_damage_is_doubled - /// - MainHandNumberOfTimesDamageIsDoubled = 4139, - - /// - /// off_hand_number_of_times_damage_is_doubled - /// - OffHandNumberOfTimesDamageIsDoubled = 4140, - - /// - /// base_main_hand_number_of_times_damage_is_doubled - /// - BaseMainHandNumberOfTimesDamageIsDoubled = 4141, - - /// - /// base_off_hand_number_of_times_damage_is_doubled - /// - BaseOffHandNumberOfTimesDamageIsDoubled = 4142, - - /// - /// local_elemental_penetration_% - /// - LocalElementalPenetrationPct = 4143, - - /// - /// main_hand_elemental_penetration_% - /// - MainHandElementalPenetrationPct = 4144, - - /// - /// off_hand_elemental_penetration_% - /// - OffHandElementalPenetrationPct = 4145, - - /// - /// damage_while_no_frenzy_charges_+% - /// - DamageWhileNoFrenzyChargesPct = 4146, - - /// - /// local_flask_ghost_reaver - /// - LocalFlaskGhostReaver = 4147, - - /// - /// local_flask_zealots_oath - /// - LocalFlaskZealotsOath = 4148, - - /// - /// critical_strike_chance_against_enemies_on_full_life_+% - /// - CriticalStrikeChanceAgainstEnemiesOnFullLifePct = 4149, - - /// - /// spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed - /// - SpiritOfferingLifePctAddedAsBaseMaximumEnergyShieldPerCorpseConsumed = 4150, - - /// - /// minions_deal_%_of_physical_damage_as_additional_chaos_damage - /// - MinionsDealPctOfPhysicalDamageAsAdditionalChaosDamage = 4151, - - /// - /// attack_critical_strike_damage_life_leech_permyriad - /// - AttackCriticalStrikeDamageLifeLeechPermyriad = 4152, - - /// - /// minion_attack_minimum_added_physical_damage - /// - MinionAttackMinimumAddedPhysicalDamage = 4153, - - /// - /// minion_attack_maximum_added_physical_damage - /// - MinionAttackMaximumAddedPhysicalDamage = 4154, - - /// - /// attack_physical_damage_%_to_add_as_lightning - /// - AttackPhysicalDamagePctToAddAsLightning = 4155, - - /// - /// attack_physical_damage_%_to_add_as_fire - /// - AttackPhysicalDamagePctToAddAsFire = 4156, - - /// - /// maximum_energy_shield_+_per_5_strength - /// - MaximumEnergyShieldPer5Strength = 4157, - - /// - /// attack_always_crit - /// - AttackAlwaysCrit = 4158, - - /// - /// totem_aura_enemy_damage_+%_final - /// - TotemAuraEnemyDamagePctFinal = 4159, - - /// - /// totem_aura_enemy_fire_and_physical_damage_taken_+% - /// - TotemAuraEnemyFireAndPhysicalDamageTakenPct = 4160, - - /// - /// local_varunastra_weapon_counts_as_all_1h_melee_weapon_types - /// - LocalVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4161, - - /// - /// main_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types - /// - MainHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4162, - - /// - /// off_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types - /// - OffHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4163, - - /// - /// guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+% - /// - GuardianWarcryGrantAttackCastAndMovementSpeedToYouAndNearbyAlliesPct = 4164, - - /// - /// guardian_auras_grant_life_regeneration_per_minute_% - /// - GuardianAurasGrantLifeRegenerationPerMinutePct = 4165, - - /// - /// guardian_nearby_enemies_cannot_gain_charges - /// - GuardianNearbyEnemiesCannotGainCharges = 4166, - - /// - /// guardian_reserved_life_granted_to_you_and_allies_as_armour_% - /// - GuardianReservedLifeGrantedToYouAndAlliesAsArmourPct = 4167, - - /// - /// guardian_remove_curses_and_status_ailments_every_10_seconds - /// - GuardianRemoveCursesAndStatusAilmentsEvery10Seconds = 4168, - - /// - /// guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds - /// - GuardianGainLifeRegenerationPerMinutePctFor1SecondEvery10Seconds = 4169, - - /// - /// life_reserved - /// - LifeReserved = 4170, - - /// - /// cannot_gain_charges - /// - CannotGainCharges = 4171, - - /// - /// max_izaro_charges - /// - MaxIzaroCharges = 4172, - - /// - /// local_display_socketed_gems_supported_by_level_x_fortify - /// - LocalDisplaySocketedGemsSupportedByLevelXFortify = 4173, - - /// - /// base_fire_immunity - /// - BaseFireImmunity = 4174, - - /// - /// totem_fire_immunity - /// - TotemFireImmunity = 4175, - - /// - /// base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit - /// - BasePctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4176, - - /// - /// totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit - /// - TotemPctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4177, - - /// - /// active_skill_attack_speed_+%_final_per_frenzy_charge - /// - ActiveSkillAttackSpeedPctFinalPerFrenzyCharge = 4178, - - /// - /// trap_damage_buildup_damage_+%_final - /// - TrapDamageBuildupDamagePctFinal = 4179, - - /// - /// trap_damage_buildup_damage_+%_final_when_first_set - /// - TrapDamageBuildupDamagePctFinalWhenFirstSet = 4180, - - /// - /// trap_damage_buildup_damage_+%_final_after_4_seconds - /// - TrapDamageBuildupDamagePctFinalAfter4Seconds = 4181, - - /// - /// local_display_grants_level_x_summon_stone_golem - /// - LocalDisplayGrantsLevelXSummonStoneGolem = 4182, - - /// - /// global_total_minimum_added_physical_damage - /// - GlobalTotalMinimumAddedPhysicalDamage = 4183, - - /// - /// global_total_maximum_added_physical_damage - /// - GlobalTotalMaximumAddedPhysicalDamage = 4184, - - /// - /// local_flask_immune_to_damage - /// - LocalFlaskImmuneToDamage = 4185, - - /// - /// local_weapon_always_crit - /// - LocalWeaponAlwaysCrit = 4186, - - /// - /// main_hand_weapon_always_crit - /// - MainHandWeaponAlwaysCrit = 4187, - - /// - /// off_hand_weapon_always_crit - /// - OffHandWeaponAlwaysCrit = 4188, - - /// - /// trap_and_mine_minimum_added_physical_damage - /// - TrapAndMineMinimumAddedPhysicalDamage = 4189, - - /// - /// trap_and_mine_maximum_added_physical_damage - /// - TrapAndMineMaximumAddedPhysicalDamage = 4190, - - /// - /// trap_%_chance_to_trigger_twice - /// - TrapPctChanceToTriggerTwice = 4191, - - /// - /// trap_has_triggered - /// - TrapHasTriggered = 4192, - - /// - /// physical_damage_over_time_per_10_dexterity_+% - /// - PhysicalDamageOverTimePer10DexterityPct = 4193, - - /// - /// bleed_duration_per_12_intelligence_+% - /// - BleedDurationPer12IntelligencePct = 4194, - - /// - /// %_chance_to_cause_bleeding_enemies_to_flee_on_hit - /// - PctChanceToCauseBleedingEnemiesToFleeOnHit = 4195, - - /// - /// labyrinth_trinket_permanently_disable_statue_healing - /// - LabyrinthTrinketPermanentlyDisableStatueHealing = 4196, - - /// - /// labyrinth_trinket_instantly_kill_next_pedestal - /// - LabyrinthTrinketInstantlyKillNextPedestal = 4197, - - /// - /// labyrinth_trinket_instantly_kill_next_portal - /// - LabyrinthTrinketInstantlyKillNextPortal = 4198, - - /// - /// number_of_perandus_coin_stacks_to_drop - /// - NumberOfPerandusCoinStacksToDrop = 4199, - - /// - /// melee_ancestor_totem_grant_owner_attack_speed_+%_final - /// - MeleeAncestorTotemGrantOwnerAttackSpeedPctFinal = 4200, - - /// - /// gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius - /// - GainCannotBeStunnedAuraFor4SecondsOnBlockRadius = 4201, - - /// - /// cleave_radius_+% - /// - CleaveRadiusPct = 4202, - - /// - /// ground_slam_radius_+% - /// - GroundSlamRadiusPct = 4203, - - /// - /// infernal_blow_radius_+% - /// - InfernalBlowRadiusPct = 4204, - - /// - /// lightning_tendrils_radius_+% - /// - LightningTendrilsRadiusPct = 4205, - - /// - /// magma_orb_radius_+% - /// - MagmaOrbRadiusPct = 4206, - - /// - /// reave_radius_+% - /// - ReaveRadiusPct = 4207, - - /// - /// molten_strike_radius_+% - /// - MoltenStrikeRadiusPct = 4208, - - /// - /// ice_shot_radius_+% - /// - IceShotRadiusPct = 4209, - - /// - /// rain_of_arrows_radius_+% - /// - RainOfArrowsRadiusPct = 4210, - - /// - /// leap_slam_radius_+% - /// - LeapSlamRadiusPct = 4211, - - /// - /// lightning_arrow_radius_+% - /// - LightningArrowRadiusPct = 4212, - - /// - /// ice_nova_radius_+% - /// - IceNovaRadiusPct = 4213, - - /// - /// static_strike_radius_+% - /// - StaticStrikeRadiusPct = 4214, - - /// - /// storm_call_radius_+% - /// - StormCallRadiusPct = 4215, - - /// - /// sweep_radius_+% - /// - SweepRadiusPct = 4216, - - /// - /// righteous_fire_radius_+% - /// - RighteousFireRadiusPct = 4217, - - /// - /// arctic_breath_radius_+% - /// - ArcticBreathRadiusPct = 4218, - - /// - /// ball_lightning_radius_+% - /// - BallLightningRadiusPct = 4219, - - /// - /// explosive_arrow_radius_+% - /// - ExplosiveArrowRadiusPct = 4220, - - /// - /// flameblast_radius_+% - /// - FlameblastRadiusPct = 4221, - - /// - /// glacial_cascade_radius_+% - /// - GlacialCascadeRadiusPct = 4222, - - /// - /// wild_strike_radius_+% - /// - WildStrikeRadiusPct = 4223, - - /// - /// detonate_dead_radius_+% - /// - DetonateDeadRadiusPct = 4224, - - /// - /// ice_crash_radius_+% - /// - IceCrashRadiusPct = 4225, - - /// - /// kinetic_blast_radius_+% - /// - KineticBlastRadiusPct = 4226, - - /// - /// caustic_arrow_radius_+% - /// - CausticArrowRadiusPct = 4227, - - /// - /// cold_snap_radius_+% - /// - ColdSnapRadiusPct = 4228, - - /// - /// decoy_totem_radius_+% - /// - DecoyTotemRadiusPct = 4229, - - /// - /// shock_nova_radius_+% - /// - ShockNovaRadiusPct = 4230, - - /// - /// shockwave_totem_radius_+% - /// - ShockwaveTotemRadiusPct = 4231, - - /// - /// cleave_attack_speed_+% - /// - CleaveAttackSpeedPct = 4232, - - /// - /// double_strike_attack_speed_+% - /// - DoubleStrikeAttackSpeedPct = 4233, - - /// - /// dual_strike_attack_speed_+% - /// - DualStrikeAttackSpeedPct = 4234, - - /// - /// heavy_strike_attack_speed_+% - /// - HeavyStrikeAttackSpeedPct = 4235, - - /// - /// zombie_attack_speed_+% - /// - ZombieAttackSpeedPct = 4236, - - /// - /// rain_of_arrows_attack_speed_+% - /// - RainOfArrowsAttackSpeedPct = 4237, - - /// - /// leap_slam_attack_speed_+% - /// - LeapSlamAttackSpeedPct = 4238, - - /// - /// shield_charge_attack_speed_+% - /// - ShieldChargeAttackSpeedPct = 4239, - - /// - /// barrage_attack_speed_+% - /// - BarrageAttackSpeedPct = 4240, - - /// - /// elemental_hit_attack_speed_+% - /// - ElementalHitAttackSpeedPct = 4241, - - /// - /// cyclone_attack_speed_+% - /// - CycloneAttackSpeedPct = 4242, - - /// - /// power_siphon_attack_speed_+% - /// - PowerSiphonAttackSpeedPct = 4243, - - /// - /// spectre_attack_and_cast_speed_+% - /// - SpectreAttackAndCastSpeedPct = 4244, - - /// - /// freezing_pulse_cast_speed_+% - /// - FreezingPulseCastSpeedPct = 4245, - - /// - /// fireball_cast_speed_+% - /// - FireballCastSpeedPct = 4246, - - /// - /// fire_nova_mine_cast_speed_+% - /// - FireNovaMineCastSpeedPct = 4247, - - /// - /// lightning_warp_cast_speed_+% - /// - LightningWarpCastSpeedPct = 4248, - - /// - /// fire_trap_cooldown_speed_+% - /// - FireTrapCooldownSpeedPct = 4249, - - /// - /// flicker_strike_cooldown_speed_+% - /// - FlickerStrikeCooldownSpeedPct = 4250, - - /// - /// cold_snap_cooldown_speed_+% - /// - ColdSnapCooldownSpeedPct = 4251, - - /// - /// ball_lightning_projectile_speed_+% - /// - BallLightningProjectileSpeedPct = 4252, - - /// - /// freezing_pulse_projectile_speed_+% - /// - FreezingPulseProjectileSpeedPct = 4253, - - /// - /// spark_projectile_speed_+% - /// - SparkProjectileSpeedPct = 4254, - - /// - /// spectral_throw_projectile_speed_+% - /// - SpectralThrowProjectileSpeedPct = 4255, - - /// - /// ethereal_knives_projectile_speed_+% - /// - EtherealKnivesProjectileSpeedPct = 4256, - - /// - /// flame_totem_projectile_speed_+% - /// - FlameTotemProjectileSpeedPct = 4257, - - /// - /// incinerate_projectile_speed_+% - /// - IncinerateProjectileSpeedPct = 4258, - - /// - /// dominating_blow_duration_+% - /// - DominatingBlowDurationPct = 4259, - - /// - /// puncture_duration_+% - /// - PunctureDurationPct = 4260, - - /// - /// viper_strike_poison_duration_+% - /// - ViperStrikePoisonDurationPct = 4261, - - /// - /// firestorm_duration_+% - /// - FirestormDurationPct = 4262, - - /// - /// static_strike_duration_+% - /// - StaticStrikeDurationPct = 4263, - - /// - /// storm_call_duration_+% - /// - StormCallDurationPct = 4264, - - /// - /// arctic_breath_duration_+% - /// - ArcticBreathDurationPct = 4265, - - /// - /// lightning_warp_duration_+% - /// - LightningWarpDurationPct = 4266, - - /// - /// ice_shot_duration_+% - /// - IceShotDurationPct = 4267, - - /// - /// caustic_arrow_duration_+% - /// - CausticArrowDurationPct = 4268, - - /// - /// double_strike_critical_strike_chance_+% - /// - DoubleStrikeCriticalStrikeChancePct = 4269, - - /// - /// dual_strike_critical_strike_chance_+% - /// - DualStrikeCriticalStrikeChancePct = 4270, - - /// - /// split_arrow_critical_strike_chance_+% - /// - SplitArrowCriticalStrikeChancePct = 4271, - - /// - /// viper_strike_critical_strike_chance_+% - /// - ViperStrikeCriticalStrikeChancePct = 4272, - - /// - /// flameblast_critical_strike_chance_+% - /// - FlameblastCriticalStrikeChancePct = 4273, - - /// - /// flame_surge_critical_strike_chance_+% - /// - FlameSurgeCriticalStrikeChancePct = 4274, - - /// - /// tornado_shot_critical_strike_chance_+% - /// - TornadoShotCriticalStrikeChancePct = 4275, - - /// - /// lightning_strike_num_of_additional_projectiles - /// - LightningStrikeNumOfAdditionalProjectiles = 4276, - - /// - /// molten_strike_num_of_additional_projectiles - /// - MoltenStrikeNumOfAdditionalProjectiles = 4277, - - /// - /// spark_num_of_additional_projectiles - /// - SparkNumOfAdditionalProjectiles = 4278, - - /// - /// split_arrow_num_of_additional_projectiles - /// - SplitArrowNumOfAdditionalProjectiles = 4279, - - /// - /// barrage_num_of_additional_projectiles - /// - BarrageNumOfAdditionalProjectiles = 4280, - - /// - /// tornado_shot_num_of_secondary_projectiles - /// - TornadoShotNumOfSecondaryProjectiles = 4281, - - /// - /// magma_orb_num_of_additional_projectiles_in_chain - /// - MagmaOrbNumOfAdditionalProjectilesInChain = 4282, - - /// - /// arc_num_of_additional_projectiles_in_chain - /// - ArcNumOfAdditionalProjectilesInChain = 4283, - - /// - /// flame_totem_num_of_additional_projectiles - /// - FlameTotemNumOfAdditionalProjectiles = 4284, - - /// - /// burning_arrow_ignite_chance_% - /// - BurningArrowIgniteChancePct = 4285, - - /// - /// burning_arrow_physical_damage_%_to_add_as_fire_damage - /// - BurningArrowPhysicalDamagePctToAddAsFireDamage = 4286, - - /// - /// infernal_blow_physical_damage_%_to_add_as_fire_damage - /// - InfernalBlowPhysicalDamagePctToAddAsFireDamage = 4287, - - /// - /// fire_trap_burning_damage_+% - /// - FireTrapBurningDamagePct = 4288, - - /// - /// fireball_ignite_chance_% - /// - FireballIgniteChancePct = 4289, - - /// - /// glacial_hammer_freeze_chance_% - /// - GlacialHammerFreezeChancePct = 4290, - - /// - /// ice_nova_freeze_chance_% - /// - IceNovaFreezeChancePct = 4291, - - /// - /// reave_attack_speed_per_reave_stack_+% - /// - ReaveAttackSpeedPerReaveStackPct = 4292, - - /// - /// spectral_throw_projectile_deceleration_+% - /// - SpectralThrowProjectileDecelerationPct = 4293, - - /// - /// flicker_strike_damage_+%_per_frenzy_charge - /// - FlickerStrikeDamagePctPerFrenzyCharge = 4294, - - /// - /// puncture_maim_on_hit_%_chance - /// - PunctureMaimOnHitPctChance = 4295, - - /// - /// arc_shock_chance_% - /// - ArcShockChancePct = 4296, - - /// - /// fire_nova_mine_num_of_additional_repeats - /// - FireNovaMineNumOfAdditionalRepeats = 4297, - - /// - /// firestorm_explosion_area_of_effect_+% - /// - FirestormExplosionAreaOfEffectPct = 4298, - - /// - /// flame_surge_damage_+%_vs_burning_enemies - /// - FlameSurgeDamagePctVsBurningEnemies = 4299, - - /// - /// ice_spear_%_chance_to_gain_power_charge_on_critical_strike - /// - IceSpearPctChanceToGainPowerChargeOnCriticalStrike = 4300, - - /// - /// power_siphon_%_chance_to_gain_power_charge_on_kill - /// - PowerSiphonPctChanceToGainPowerChargeOnKill = 4301, - - /// - /// searing_bond_totem_placement_speed_+% - /// - SearingBondTotemPlacementSpeedPct = 4302, - - /// - /// sweep_knockback_chance_% - /// - SweepKnockbackChancePct = 4303, - - /// - /// frenzy_damage_+%_per_frenzy_charge - /// - FrenzyDamagePctPerFrenzyCharge = 4304, - - /// - /// frenzy_%_chance_to_gain_additional_frenzy_charge - /// - FrenzyPctChanceToGainAdditionalFrenzyCharge = 4305, - - /// - /// elemental_hit_chance_to_freeze_shock_ignite_% - /// - ElementalHitChanceToFreezeShockIgnitePct = 4306, - - /// - /// glacial_cascade_physical_damage_%_to_convert_to_cold - /// - GlacialCascadePhysicalDamagePctToConvertToCold = 4307, - - /// - /// glacial_hammer_physical_damage_%_to_add_as_cold_damage - /// - GlacialHammerPhysicalDamagePctToAddAsColdDamage = 4308, - - /// - /// ice_crash_physical_damage_%_to_add_as_cold_damage - /// - IceCrashPhysicalDamagePctToAddAsColdDamage = 4309, - - /// - /// spectre_elemental_resistances_% - /// - SpectreElementalResistancesPct = 4310, - - /// - /// zombie_elemental_resistances_% - /// - ZombieElementalResistancesPct = 4311, - - /// - /// flame_golem_elemental_resistances_% - /// - FlameGolemElementalResistancesPct = 4312, - - /// - /// chaos_golem_elemental_resistances_% - /// - ChaosGolemElementalResistancesPct = 4313, - - /// - /// ice_golem_elemental_resistances_% - /// - IceGolemElementalResistancesPct = 4314, - - /// - /// shock_nova_ring_damage_+% - /// - ShockNovaRingDamagePct = 4315, - - /// - /// detonate_dead_%_chance_to_detonate_additional_corpse - /// - DetonateDeadPctChanceToDetonateAdditionalCorpse = 4316, - - /// - /// animate_weapon_chance_to_create_additional_copy_% - /// - AnimateWeaponChanceToCreateAdditionalCopyPct = 4317, - - /// - /// decoy_totem_life_+% - /// - DecoyTotemLifePct = 4318, - - /// - /// devouring_totem_leech_per_second_+% - /// - DevouringTotemLeechPerSecondPct = 4319, - - /// - /// rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration - /// - RejuvenationTotemPctLifeRegenerationAddedAsManaRegeneration = 4320, - - /// - /// rejuvenation_totem_aura_effect_+% - /// - RejuvenationTotemAuraEffectPct = 4321, - - /// - /// summon_skeletons_num_additional_warrior_skeletons - /// - SummonSkeletonsNumAdditionalWarriorSkeletons = 4322, - - /// - /// wild_strike_num_of_additional_projectiles_in_chain - /// - WildStrikeNumOfAdditionalProjectilesInChain = 4323, - - /// - /// shockwave_totem_cast_speed_+% - /// - ShockwaveTotemCastSpeedPct = 4324, - - /// - /// devouring_totem_%_chance_to_consume_additional_corpse - /// - DevouringTotemPctChanceToConsumeAdditionalCorpse = 4325, - - /// - /// incinerate_damage_+%_per_stage - /// - IncinerateDamagePctPerStage = 4326, - - /// - /// siege_ballista_totem_placement_speed_+% - /// - SiegeBallistaTotemPlacementSpeedPct = 4327, - - /// - /// virtual_curse_effect_+% - /// - VirtualCurseEffectPct = 4328, - - /// - /// poachers_mark_curse_effect_+% - /// - PoachersMarkCurseEffectPct = 4329, - - /// - /// projectile_weakness_curse_effect_+% - /// - ProjectileWeaknessCurseEffectPct = 4330, - - /// - /// temporal_chains_curse_effect_+% - /// - TemporalChainsCurseEffectPct = 4331, - - /// - /// assassins_mark_curse_effect_+% - /// - AssassinsMarkCurseEffectPct = 4332, - - /// - /// conductivity_curse_effect_+% - /// - ConductivityCurseEffectPct = 4333, - - /// - /// elemental_weakness_curse_effect_+% - /// - ElementalWeaknessCurseEffectPct = 4334, - - /// - /// enfeeble_curse_effect_+% - /// - EnfeebleCurseEffectPct = 4335, - - /// - /// flammability_curse_effect_+% - /// - FlammabilityCurseEffectPct = 4336, - - /// - /// frostbite_curse_effect_+% - /// - FrostbiteCurseEffectPct = 4337, - - /// - /// punishment_curse_effect_+% - /// - PunishmentCurseEffectPct = 4338, - - /// - /// vulnerability_curse_effect_+% - /// - VulnerabilityCurseEffectPct = 4339, - - /// - /// warlords_mark_curse_effect_+% - /// - WarlordsMarkCurseEffectPct = 4340, - - /// - /// lightning_golem_grants_attack_and_cast_speed_+% - /// - LightningGolemGrantsAttackAndCastSpeedPct = 4341, - - /// - /// lightning_golem_grants_added_lightning_damage - /// - LightningGolemGrantsAddedLightningDamage = 4342, - - /// - /// arctic_armour_mana_reservation_+% - /// - ArcticArmourManaReservationPct = 4343, - - /// - /// herald_of_ash_mana_reservation_+% - /// - HeraldOfAshManaReservationPct = 4344, - - /// - /// herald_of_ice_mana_reservation_+% - /// - HeraldOfIceManaReservationPct = 4345, - - /// - /// herald_of_thunder_mana_reservation_+% - /// - HeraldOfThunderManaReservationPct = 4346, - - /// - /// clarity_mana_reservation_+% - /// - ClarityManaReservationPct = 4347, - - /// - /// hatred_mana_reservation_+% - /// - HatredManaReservationPct = 4348, - - /// - /// purity_of_ice_mana_reservation_+% - /// - PurityOfIceManaReservationPct = 4349, - - /// - /// determination_mana_reservation_+% - /// - DeterminationManaReservationPct = 4350, - - /// - /// discipline_mana_reservation_+% - /// - DisciplineManaReservationPct = 4351, - - /// - /// purity_of_elements_mana_reservation_+% - /// - PurityOfElementsManaReservationPct = 4352, - - /// - /// purity_of_fire_mana_reservation_+% - /// - PurityOfFireManaReservationPct = 4353, - - /// - /// purity_of_lightning_mana_reservation_+% - /// - PurityOfLightningManaReservationPct = 4354, - - /// - /// vitality_mana_reservation_+% - /// - VitalityManaReservationPct = 4355, - - /// - /// wrath_mana_reservation_+% - /// - WrathManaReservationPct = 4356, - - /// - /// grace_mana_reservation_+% - /// - GraceManaReservationPct = 4357, - - /// - /// haste_mana_reservation_+% - /// - HasteManaReservationPct = 4358, - - /// - /// immortal_call_duration_+% - /// - ImmortalCallDurationPct = 4359, - - /// - /// bone_offering_duration_+% - /// - BoneOfferingDurationPct = 4360, - - /// - /// flesh_offering_duration_+% - /// - FleshOfferingDurationPct = 4361, - - /// - /// smoke_mine_duration_+% - /// - SmokeMineDurationPct = 4362, - - /// - /// frost_wall_duration_+% - /// - FrostWallDurationPct = 4363, - - /// - /// vigilant_strike_fortify_duration_+% - /// - VigilantStrikeFortifyDurationPct = 4364, - - /// - /// poachers_mark_duration_+% - /// - PoachersMarkDurationPct = 4365, - - /// - /// projectile_weakness_duration_+% - /// - ProjectileWeaknessDurationPct = 4366, - - /// - /// temporal_chains_duration_+% - /// - TemporalChainsDurationPct = 4367, - - /// - /// warlords_mark_duration_+% - /// - WarlordsMarkDurationPct = 4368, - - /// - /// vulnerability_duration_+% - /// - VulnerabilityDurationPct = 4369, - - /// - /// punishment_duration_+% - /// - PunishmentDurationPct = 4370, - - /// - /// frostbite_duration_+% - /// - FrostbiteDurationPct = 4371, - - /// - /// flammability_duration_+% - /// - FlammabilityDurationPct = 4372, - - /// - /// enfeeble_duration_+% - /// - EnfeebleDurationPct = 4373, - - /// - /// elemental_weakness_duration_+% - /// - ElementalWeaknessDurationPct = 4374, - - /// - /// conductivity_duration_+% - /// - ConductivityDurationPct = 4375, - - /// - /// assassins_mark_duration_+% - /// - AssassinsMarkDurationPct = 4376, - - /// - /// rallying_cry_duration_+% - /// - RallyingCryDurationPct = 4377, - - /// - /// abyssal_cry_duration_+% - /// - AbyssalCryDurationPct = 4378, - - /// - /// contagion_duration_+% - /// - ContagionDurationPct = 4379, - - /// - /// siphon_duration_+% - /// - SiphonDurationPct = 4380, - - /// - /// wither_duration_+% - /// - WitherDurationPct = 4381, - - /// - /// blade_vortex_duration_+% - /// - BladeVortexDurationPct = 4382, - - /// - /// earthquake_duration_+% - /// - EarthquakeDurationPct = 4383, - - /// - /// blight_duration_+% - /// - BlightDurationPct = 4384, - - /// - /// blight_secondary_skill_effect_duration_+% - /// - BlightSecondarySkillEffectDurationPct = 4385, - - /// - /// convocation_cooldown_speed_+% - /// - ConvocationCooldownSpeedPct = 4386, - - /// - /// bear_trap_cooldown_speed_+% - /// - BearTrapCooldownSpeedPct = 4387, - - /// - /// frost_wall_cooldown_speed_+% - /// - FrostWallCooldownSpeedPct = 4388, - - /// - /// reckoning_cooldown_speed_+% - /// - ReckoningCooldownSpeedPct = 4389, - - /// - /// flame_dash_cooldown_speed_+% - /// - FlameDashCooldownSpeedPct = 4390, - - /// - /// desecrate_cooldown_speed_+% - /// - DesecrateCooldownSpeedPct = 4391, - - /// - /// blink_arrow_cooldown_speed_+% - /// - BlinkArrowCooldownSpeedPct = 4392, - - /// - /// mirror_arrow_cooldown_speed_+% - /// - MirrorArrowCooldownSpeedPct = 4393, - - /// - /// riposte_cooldown_speed_+% - /// - RiposteCooldownSpeedPct = 4394, - - /// - /// vengeance_cooldown_speed_+% - /// - VengeanceCooldownSpeedPct = 4395, - - /// - /// enduring_cry_cooldown_speed_+% - /// - EnduringCryCooldownSpeedPct = 4396, - - /// - /// frost_bomb_cooldown_speed_+% - /// - FrostBombCooldownSpeedPct = 4397, - - /// - /// conversion_trap_cooldown_speed_+% - /// - ConversionTrapCooldownSpeedPct = 4398, - - /// - /// ice_trap_cooldown_speed_+% - /// - IceTrapCooldownSpeedPct = 4399, - - /// - /// siege_ballista_attack_speed_+% - /// - SiegeBallistaAttackSpeedPct = 4400, - - /// - /// shockwave_slam_attack_speed_+% - /// - ShockwaveSlamAttackSpeedPct = 4401, - - /// - /// mirror_arrow_and_mirror_arrow_clone_attack_speed_+% - /// - MirrorArrowAndMirrorArrowCloneAttackSpeedPct = 4402, - - /// - /// freeze_mine_radius_+% - /// - FreezeMineRadiusPct = 4403, - - /// - /// shrapnel_shot_radius_+% - /// - ShrapnelShotRadiusPct = 4404, - - /// - /// blast_rain_radius_+% - /// - BlastRainRadiusPct = 4405, - - /// - /// contagion_radius_+% - /// - ContagionRadiusPct = 4406, - - /// - /// wither_radius_+% - /// - WitherRadiusPct = 4407, - - /// - /// blade_vortex_radius_+% - /// - BladeVortexRadiusPct = 4408, - - /// - /// bladefall_radius_+% - /// - BladefallRadiusPct = 4409, - - /// - /// ice_trap_radius_+% - /// - IceTrapRadiusPct = 4410, - - /// - /// earthquake_radius_+% - /// - EarthquakeRadiusPct = 4411, - - /// - /// frost_bomb_radius_+% - /// - FrostBombRadiusPct = 4412, - - /// - /// storm_cloud_radius_+% - /// - StormCloudRadiusPct = 4413, - - /// - /// blight_radius_+% - /// - BlightRadiusPct = 4414, - - /// - /// shockwave_slam_radius_+% - /// - ShockwaveSlamRadiusPct = 4415, - - /// - /// display_attack_with_decree_of_ire_when_hit_% - /// - DisplayAttackWithDecreeOfIreWhenHitPct = 4416, - - /// - /// display_attack_with_commandment_of_ire_when_hit_% - /// - DisplayAttackWithCommandmentOfIreWhenHitPct = 4417, - - /// - /// blink_arrow_and_blink_arrow_clone_attack_speed_+% - /// - BlinkArrowAndBlinkArrowCloneAttackSpeedPct = 4418, - - /// - /// whirling_blades_attack_speed_+% - /// - WhirlingBladesAttackSpeedPct = 4419, - - /// - /// arctic_armour_buff_effect_+% - /// - ArcticArmourBuffEffectPct = 4420, - - /// - /// immortal_call_%_chance_to_not_consume_endurance_charges - /// - ImmortalCallPctChanceToNotConsumeEnduranceCharges = 4421, - - /// - /// phase_run_%_chance_to_not_consume_frenzy_charges - /// - PhaseRunPctChanceToNotConsumeFrenzyCharges = 4422, - - /// - /// animate_guardian_elemental_resistances_% - /// - AnimateGuardianElementalResistancesPct = 4423, - - /// - /// shrapnel_shot_physical_damage_%_to_add_as_lightning_damage - /// - ShrapnelShotPhysicalDamagePctToAddAsLightningDamage = 4424, - - /// - /// bladefall_critical_strike_chance_+% - /// - BladefallCriticalStrikeChancePct = 4425, - - /// - /// storm_cloud_critical_strike_chance_+% - /// - StormCloudCriticalStrikeChancePct = 4426, - - /// - /// tempest_shield_num_of_additional_projectiles_in_chain - /// - TempestShieldNumOfAdditionalProjectilesInChain = 4427, - - /// - /// map_labyrinth_secret1_override - /// - MapLabyrinthSecret1Override = 4428, - - /// - /// map_labyrinth_secret2_override - /// - MapLabyrinthSecret2Override = 4429, - - /// - /// melee_ancestor_totem_granted_attack_speed_+%_final - /// - MeleeAncestorTotemGrantedAttackSpeedPctFinal = 4430, - - /// - /// cannot_be_stunned_while_at_max_endurance_charges - /// - CannotBeStunnedWhileAtMaxEnduranceCharges = 4431, - - /// - /// life_regenerate_rate_per_second_%_while_totem_active - /// - LifeRegenerateRatePerSecondPctWhileTotemActive = 4432, - - /// - /// gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit - /// - GainAttackAndCastSpeedPctFor4SecondsIfTakenSavageHit = 4433, - - /// - /// berserker_damage_+%_final - /// - BerserkerDamagePctFinal = 4434, - - /// - /// elemental_damage_taken_+%_while_on_consecrated_ground - /// - ElementalDamageTakenPctWhileOnConsecratedGround = 4435, - - /// - /// critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments - /// - CriticalStrikeChancePctVsEnemiesWithElementalStatusAilments = 4436, - - /// - /// scion_helmet_skill_maximum_totems_+ - /// - ScionHelmetSkillMaximumTotems = 4437, - - /// - /// %_chance_to_gain_power_charge_on_placing_a_totem - /// - PctChanceToGainPowerChargeOnPlacingATotem = 4438, - - /// - /// attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras - /// - AttackAndCastSpeedPctForYouAndAlliesAffectedByYourAuras = 4439, - - /// - /// gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy - /// - GainElementalConfluxForXMsWhenYouKillARareOrUniqueEnemy = 4440, - - /// - /// enemies_chaos_resistance_%_while_cursed - /// - EnemiesChaosResistancePctWhileCursed = 4441, - - /// - /// damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy - /// - DamagePctFor4SecondsWhenYouKillACursedEnemy = 4442, - - /// - /// physical_damage_reduction_and_minion_physical_damage_reduction_% - /// - PhysicalDamageReductionAndMinionPhysicalDamageReductionPct = 4443, - - /// - /// offering_spells_effect_+% - /// - OfferingSpellsEffectPct = 4444, - - /// - /// damage_+%_for_you_and_allies_affected_by_your_auras - /// - DamagePctForYouAndAlliesAffectedByYourAuras = 4445, - - /// - /// you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed - /// - YouAndMinionAttackAndCastSpeedPctFor4SecondsWhenCorpseDestroyed = 4446, - - /// - /// %_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life - /// - PctChanceToGainPowerChargeOnHitAgainstEnemiesOnFullLife = 4447, - - /// - /// cause_maim_on_critical_strike_attack - /// - CauseMaimOnCriticalStrikeAttack = 4448, - - /// - /// %_chance_to_create_smoke_cloud_on_mine_or_trap_creation - /// - PctChanceToCreateSmokeCloudOnMineOrTrapCreation = 4449, - - /// - /// damage_+%_for_each_trap_and_mine_active - /// - DamagePctForEachTrapAndMineActive = 4450, - - /// - /// evasion_rating_while_es_full_+%_final - /// - EvasionRatingWhileEsFullPctFinal = 4451, - - /// - /// damage_+%_while_es_not_full - /// - DamagePctWhileEsNotFull = 4452, - - /// - /// mana_regeneration_+%_for_4_seconds_on_movement_skill_use - /// - ManaRegenerationPctFor4SecondsOnMovementSkillUse = 4453, - - /// - /// gain_onslaught_while_frenzy_charges_full - /// - GainOnslaughtWhileFrenzyChargesFull = 4454, - - /// - /// projectile_damage_+%_max_as_distance_travelled_increases - /// - ProjectileDamagePctMaxAsDistanceTravelledIncreases = 4455, - - /// - /// damage_+%_during_flask_effect - /// - DamagePctDuringFlaskEffect = 4456, - - /// - /// avoid_freeze_shock_ignite_bleed_%_during_flask_effect - /// - AvoidFreezeShockIgniteBleedPctDuringFlaskEffect = 4457, - - /// - /// elemental_damage_taken_+%_during_flask_effect - /// - ElementalDamageTakenPctDuringFlaskEffect = 4458, - - /// - /// damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy - /// - DamagePctFor4SecondsWhenYouKillABleedingEnemy = 4459, - - /// - /// damage_+%_to_you_and_nearby_allies_while_you_have_fortify - /// - DamagePctToYouAndNearbyAlliesWhileYouHaveFortify = 4460, - - /// - /// damage_taken_+%_from_taunted_enemies - /// - DamageTakenPctFromTauntedEnemies = 4461, - - /// - /// attack_and_cast_speed_+%_while_leeching - /// - AttackAndCastSpeedPctWhileLeeching = 4462, - - /// - /// base_avoid_bleed_% - /// - BaseAvoidBleedPct = 4463, - - /// - /// avoid_bleed_% - /// - AvoidBleedPct = 4464, - - /// - /// virtual_phase_through_objects - /// - VirtualPhaseThroughObjects = 4465, - - /// - /// virtual_has_onslaught - /// - VirtualHasOnslaught = 4466, - - /// - /// shield_charge_damage_per_target_hit_+% - /// - ShieldChargeDamagePerTargetHitPct = 4467, - - /// - /// number_of_mines_to_place - /// - NumberOfMinesToPlace = 4468, - - /// - /// local_flask_life_gain_on_skill_use_%_mana_cost - /// - LocalFlaskLifeGainOnSkillUsePctManaCost = 4469, - - /// - /// life_gain_on_skill_use_percent_mana_cost - /// - LifeGainOnSkillUsePercentManaCost = 4470, - - /// - /// traps_and_mines_%_chance_to_poison - /// - TrapsAndMinesPctChanceToPoison = 4471, - - /// - /// damage_+%_of_each_type_that_you_have_an_active_golem_of - /// - DamagePctOfEachTypeThatYouHaveAnActiveGolemOf = 4472, - - /// - /// elemental_golem_immunity_to_elemental_damage - /// - ElementalGolemImmunityToElementalDamage = 4473, - - /// - /// elemental_golem_granted_buff_effect_+% - /// - ElementalGolemGrantedBuffEffectPct = 4474, - - /// - /// current_number_of_fire_golems - /// - CurrentNumberOfFireGolems = 4475, - - /// - /// current_number_of_ice_golems - /// - CurrentNumberOfIceGolems = 4476, - - /// - /// current_number_of_lightning_golems - /// - CurrentNumberOfLightningGolems = 4477, - - /// - /// current_number_of_stone_golems - /// - CurrentNumberOfStoneGolems = 4478, - - /// - /// current_number_of_chaos_golems - /// - CurrentNumberOfChaosGolems = 4479, - - /// - /// base_cold_immunity - /// - BaseColdImmunity = 4480, - - /// - /// base_lightning_immunity - /// - BaseLightningImmunity = 4481, - - /// - /// gain_elemental_penetration_for_4_seconds_on_mine_detonation - /// - GainElementalPenetrationFor4SecondsOnMineDetonation = 4482, - - /// - /// display_can_take_character_start_point - /// - DisplayCanTakeCharacterStartPoint = 4483, - - /// - /// fire_damage_immunity - /// - FireDamageImmunity = 4484, - - /// - /// cold_damage_immunity - /// - ColdDamageImmunity = 4485, - - /// - /// lightning_damage_immunity - /// - LightningDamageImmunity = 4486, - - /// - /// chaos_damage_immunity - /// - ChaosDamageImmunity = 4487, - - /// - /// elemental_damage_immunity - /// - ElementalDamageImmunity = 4488, - - /// - /// global_total_minimum_added_lightning_damage - /// - GlobalTotalMinimumAddedLightningDamage = 4489, - - /// - /// global_total_maximum_added_lightning_damage - /// - GlobalTotalMaximumAddedLightningDamage = 4490, - - /// - /// have_killed_recently - /// - HaveKilledRecently = 4491, - - /// - /// track_have_killed_recently - /// - TrackHaveKilledRecently = 4492, - - /// - /// number_of_times_have_been_hit_recently - /// - NumberOfTimesHaveBeenHitRecently = 4493, - - /// - /// track_have_been_hit_recently - /// - TrackHaveBeenHitRecently = 4494, - - /// - /// have_crit_recently - /// - HaveCritRecently = 4495, - - /// - /// track_have_crit_recently - /// - TrackHaveCritRecently = 4496, - - /// - /// base_body_armour_physical_damage_reduction_rating - /// - BaseBodyArmourPhysicalDamageReductionRating = 4497, - - /// - /// chance_to_grant_power_charge_to_nearby_allies_on_kill_% - /// - ChanceToGrantPowerChargeToNearbyAlliesOnKillPct = 4498, - - /// - /// chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_% - /// - ChanceToGrantFrenzyChargeToNearbyAlliesOnHitPct = 4499, - - /// - /// blood_rage_grants_additional_attack_speed_+% - /// - BloodRageGrantsAdditionalAttackSpeedPct = 4500, - - /// - /// blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill - /// - BloodRageGrantsAdditionalPctChanceToGainFrenzyOnKill = 4501, - - /// - /// play_tempestuous_steel_sounds - /// - PlayTempestuousSteelSounds = 4502, - - /// - /// from_totem_aura_damage_+%_final - /// - FromTotemAuraDamagePctFinal = 4503, - - /// - /// explode_enemies_for_25%_life_as_chaos_on_kill_chance_% - /// - ExplodeEnemiesFor25PctLifeAsChaosOnKillChancePct = 4504, - - /// - /// explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_% - /// - ExplodeCursedEnemiesFor25PctLifeAsChaosOnKillChancePct = 4505, - - /// - /// base_minion_duration_+% - /// - BaseMinionDurationPct = 4506, - - /// - /// skill_specific_minion_duration_+%_final - /// - SkillSpecificMinionDurationPctFinal = 4507, - - /// - /// base_chaos_golem_granted_buff_effect_+% - /// - BaseChaosGolemGrantedBuffEffectPct = 4508, - - /// - /// base_stone_golem_granted_buff_effect_+% - /// - BaseStoneGolemGrantedBuffEffectPct = 4509, - - /// - /// base_fire_golem_granted_buff_effect_+% - /// - BaseFireGolemGrantedBuffEffectPct = 4510, - - /// - /// base_ice_golem_granted_buff_effect_+% - /// - BaseIceGolemGrantedBuffEffectPct = 4511, - - /// - /// base_lightning_golem_granted_buff_effect_+% - /// - BaseLightningGolemGrantedBuffEffectPct = 4512, - - /// - /// stone_golem_elemental_resistances_% - /// - StoneGolemElementalResistancesPct = 4513, - - /// - /// dominating_blow_minion_damage_+% - /// - DominatingBlowMinionDamagePct = 4514, - - /// - /// dominating_blow_skill_attack_damage_+% - /// - DominatingBlowSkillAttackDamagePct = 4515, - - /// - /// lightning_golem_elemental_resistances_% - /// - LightningGolemElementalResistancesPct = 4516, - - /// - /// lightning_golem_damage_+% - /// - LightningGolemDamagePct = 4517, - - /// - /// is_hindered - /// - IsHindered = 4518, - - /// - /// damage_+%_vs_hindered_enemies - /// - DamagePctVsHinderedEnemies = 4519, - - /// - /// blast_rain_number_of_blasts - /// - BlastRainNumberOfBlasts = 4520, - - /// - /// local_display_socketed_curse_gems_have_mana_reservation_+% - /// - LocalDisplaySocketedCurseGemsHaveManaReservationPct = 4521, - - /// - /// bone_offering_block_chance_+% - /// - BoneOfferingBlockChancePct = 4522, - - /// - /// map_number_of_explicit_mods - /// - MapNumberOfExplicitMods = 4523, - - /// - /// curse_orb_additional_height - /// - CurseOrbAdditionalHeight = 4524, - - /// - /// curse_orb_additional_radius - /// - CurseOrbAdditionalRadius = 4525, - - /// - /// phase_run_skill_effect_duration_+% - /// - PhaseRunSkillEffectDurationPct = 4526, - - /// - /// lightning_tendrils_critical_strike_chance_+% - /// - LightningTendrilsCriticalStrikeChancePct = 4527, - - /// - /// searing_totem_elemental_resistance_+% - /// - SearingTotemElementalResistancePct = 4528, - - /// - /// flesh_offering_attack_speed_+% - /// - FleshOfferingAttackSpeedPct = 4529, - - /// - /// smoke_mine_base_movement_velocity_+% - /// - SmokeMineBaseMovementVelocityPct = 4530, - - /// - /// convocation_buff_effect_+% - /// - ConvocationBuffEffectPct = 4531, - - /// - /// molten_shell_buff_effect_+% - /// - MoltenShellBuffEffectPct = 4532, - - /// - /// enduring_cry_buff_effect_+% - /// - EnduringCryBuffEffectPct = 4533, - - /// - /// righteous_fire_spell_damage_+% - /// - RighteousFireSpellDamagePct = 4534, - - /// - /// rallying_cry_buff_effect_+% - /// - RallyingCryBuffEffectPct = 4535, - - /// - /// attack_trigger_when_critically_hit_% - /// - AttackTriggerWhenCriticallyHitPct = 4536, - - /// - /// cast_when_hit_% - /// - CastWhenHitPct = 4537, - - /// - /// attack_trigger_when_hit_% - /// - AttackTriggerWhenHitPct = 4538, - - /// - /// attack_trigger_on_kill_% - /// - AttackTriggerOnKillPct = 4539, - - /// - /// decrement_parent_counter_on_death - /// - DecrementParentCounterOnDeath = 4540, - - /// - /// minions_explode_on_death_for_%_max_life_at_end_of_duration - /// - MinionsExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4541, - - /// - /// explode_on_death_for_%_max_life_at_end_of_duration - /// - ExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4542, - - /// - /// melee_ancestor_totem_damage_+% - /// - MeleeAncestorTotemDamagePct = 4543, - - /// - /// melee_ancestor_totem_placement_speed_+% - /// - MeleeAncestorTotemPlacementSpeedPct = 4544, - - /// - /// melee_ancestor_totem_elemental_resistance_% - /// - MeleeAncestorTotemElementalResistancePct = 4545, - - /// - /// blast_rain_%_chance_for_additional_blast - /// - BlastRainPctChanceForAdditionalBlast = 4546, - - /// - /// perandus_chest_revive_targeted_monster - /// - PerandusChestReviveTargetedMonster = 4547, - - /// - /// current_difficulty - /// - CurrentDifficulty = 4548, - - /// - /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_cruel - /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInCruel = 4549, - - /// - /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_merciless - /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInMerciless = 4550, - - /// - /// kinetic_blast_%_chance_for_additional_blast - /// - KineticBlastPctChanceForAdditionalBlast = 4551, - - /// - /// share_charges_with_party_members_in_aura - /// - ShareChargesWithPartyMembersInAura = 4552, - - /// - /// guardian_nearby_allies_share_charges - /// - GuardianNearbyAlliesShareCharges = 4553, - - /// - /// bleed_duration_+% - /// - BleedDurationPct = 4554, - - /// - /// summoned_monsters_are_parented_to_my_parent - /// - SummonedMonstersAreParentedToMyParent = 4555, - - /// - /// monster_grants_no_experience_after_x_revives - /// - MonsterGrantsNoExperienceAfterXRevives = 4556, - - /// - /// consecrate_ground_on_shatter_%_chance_for_3_seconds - /// - ConsecrateGroundOnShatterPctChanceFor3Seconds = 4557, - - /// - /// summoned_monsters_decrement_parent_counter - /// - SummonedMonstersDecrementParentCounter = 4558, - - /// - /// skill_buff_effect_+% - /// - SkillBuffEffectPct = 4559, - - /// - /// glows_in_area_with_unique_fish - /// - GlowsInAreaWithUniqueFish = 4560, - - /// - /// local_display_summon_raging_spirit_on_kill_% - /// - LocalDisplaySummonRagingSpiritOnKillPct = 4561, - - /// - /// attacks_num_of_additional_chains - /// - AttacksNumOfAdditionalChains = 4562, - - /// - /// monster_do_not_give_soul_to_soul_eater - /// - MonsterDoNotGiveSoulToSoulEater = 4563, - - /// - /// monster_grants_no_flask_charges - /// - MonsterGrantsNoFlaskCharges = 4564, - - /// - /// used_teleports - /// - UsedTeleports = 4565, - - /// - /// explosive_arrow_attack_speed_+% - /// - ExplosiveArrowAttackSpeedPct = 4566, - - /// - /// slam_ancestor_totem_grant_owner_melee_damage_+%_final - /// - SlamAncestorTotemGrantOwnerMeleeDamagePctFinal = 4567, - - /// - /// slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+% - /// - SlashAncestorTotemGrantOwnerPhysicalDamageAddedAsFirePct = 4568, - - /// - /// slam_ancestor_totem_granted_melee_damage_+%_final - /// - SlamAncestorTotemGrantedMeleeDamagePctFinal = 4569, - - /// - /// perandus_chest_spawned_bosses - /// - PerandusChestSpawnedBosses = 4570, - - /// - /// lightning_damage_+%_per_10_intelligence - /// - LightningDamagePctPer10Intelligence = 4571, - - /// - /// shield_charge_range_+% - /// - ShieldChargeRangePct = 4572, - - /// - /// local_maim_on_hit - /// - LocalMaimOnHit = 4573, - - /// - /// main_hand_maim_on_hit - /// - MainHandMaimOnHit = 4574, - - /// - /// off_hand_maim_on_hit - /// - OffHandMaimOnHit = 4575, - - /// - /// warcries_cost_no_mana - /// - WarcriesCostNoMana = 4576, - - /// - /// is_on_ground_maelstrom - /// - IsOnGroundMaelstrom = 4577, - - /// - /// gain_a_power_charge_when_you_or_your_totems_kill_%_chance - /// - GainAPowerChargeWhenYouOrYourTotemsKillPctChance = 4578, - - /// - /// give_parent_power_charge_on_kill_%_chance - /// - GiveParentPowerChargeOnKillPctChance = 4579, - - /// - /// buff_visuals_show_while_hidden_override - /// - BuffVisualsShowWhileHiddenOverride = 4580, - - /// - /// always_pierce - /// - AlwaysPierce = 4581, - - /// - /// always_crit_shocked_enemies - /// - AlwaysCritShockedEnemies = 4582, - - /// - /// cannot_crit_non_shocked_enemies - /// - CannotCritNonShockedEnemies = 4583, - - /// - /// map_prophecy - /// - MapProphecy = 4584, - - /// - /// frost_bolt_damage_+% - /// - FrostBoltDamagePct = 4585, - - /// - /// frost_bolt_nova_damage_+% - /// - FrostBoltNovaDamagePct = 4586, - - /// - /// double_slash_damage_+% - /// - DoubleSlashDamagePct = 4587, - - /// - /// charged_attack_damage_+% - /// - ChargedAttackDamagePct = 4588, - - /// - /// slam_ancestor_totem_damage_+% - /// - SlamAncestorTotemDamagePct = 4589, - - /// - /// slash_ancestor_totem_damage_+% - /// - SlashAncestorTotemDamagePct = 4590, - - /// - /// slash_ancestor_totem_radius_+% - /// - SlashAncestorTotemRadiusPct = 4591, - - /// - /// slam_ancestor_totem_radius_+% - /// - SlamAncestorTotemRadiusPct = 4592, - - /// - /// frost_bolt_nova_radius_+% - /// - FrostBoltNovaRadiusPct = 4593, - - /// - /// double_slash_critical_strike_chance_+% - /// - DoubleSlashCriticalStrikeChancePct = 4594, - - /// - /// charged_attack_radius_+% - /// - ChargedAttackRadiusPct = 4595, - - /// - /// double_slash_radius_+% - /// - DoubleSlashRadiusPct = 4596, - - /// - /// charged_attack_damage_per_stack_+%_final - /// - ChargedAttackDamagePerStackPctFinal = 4597, - - /// - /// %_of_life_and_energy_shield_to_take_as_damage_on_using_a_movement_skill - /// - PctOfLifeAndEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4598, - - /// - /// remove_%_of_targets_current_flask_charges_on_hit - /// - RemovePctOfTargetsCurrentFlaskChargesOnHit = 4599, - - /// - /// virtual_reduce_enemy_cold_resistance_with_weapons_% - /// - VirtualReduceEnemyColdResistanceWithWeaponsPct = 4600, - - /// - /// virtual_reduce_enemy_fire_resistance_with_weapons_% - /// - VirtualReduceEnemyFireResistanceWithWeaponsPct = 4601, - - /// - /// virtual_reduce_enemy_lightning_resistance_with_weapons_% - /// - VirtualReduceEnemyLightningResistanceWithWeaponsPct = 4602, - - /// - /// minions_%_chance_to_blind_on_hit - /// - MinionsPctChanceToBlindOnHit = 4603, - - /// - /// minions_cannot_be_blinded - /// - MinionsCannotBeBlinded = 4604, - - /// - /// display_socketed_minion_gems_supported_by_level_X_life_leech - /// - DisplaySocketedMinionGemsSupportedByLevelXLifeLeech = 4605, - - /// - /// magic_items_drop_identified - /// - MagicItemsDropIdentified = 4606, - - /// - /// number_of_stackable_unique_jewels - /// - NumberOfStackableUniqueJewels = 4607, - - /// - /// X_mana_per_stackable_unique_jewel - /// - XManaPerStackableUniqueJewel = 4608, - - /// - /// X_armour_per_stackable_unique_jewel - /// - XArmourPerStackableUniqueJewel = 4609, - - /// - /// elemental_damage_+%_per_stackable_unique_jewel - /// - ElementalDamagePctPerStackableUniqueJewel = 4610, - - /// - /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_normal - /// - BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInNormal = 4611, - - /// - /// projectile_uses_contact_position - /// - ProjectileUsesContactPosition = 4612, - - /// - /// skeletal_chains_aoe_%_health_dealt_as_chaos_damage - /// - SkeletalChainsAoePctHealthDealtAsChaosDamage = 4613, - - /// - /// virtual_number_of_inca_minions_allowed - /// - VirtualNumberOfIncaMinionsAllowed = 4614, - - /// - /// virtual_number_of_insects_allowed - /// - VirtualNumberOfInsectsAllowed = 4615, - - /// - /// virtual_number_of_taniwha_tails_allowed - /// - VirtualNumberOfTaniwhaTailsAllowed = 4616, - - /// - /// virtual_number_of_wolves_allowed - /// - VirtualNumberOfWolvesAllowed = 4617, - - /// - /// you_cannot_have_non_golem_minions - /// - YouCannotHaveNonGolemMinions = 4618, - - /// - /// lightning_damage_%_taken_from_mana_before_life - /// - LightningDamagePctTakenFromManaBeforeLife = 4619, - - /// - /// recover_%_maximum_mana_when_enemy_shocked - /// - RecoverPctMaximumManaWhenEnemyShocked = 4620, - - /// - /// ground_caustic_art_variation - /// - GroundCausticArtVariation = 4621, - - /// - /// global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad - /// - GlobalLifeLeechFromPhysicalAttackDamagePerRedSocketOnItemPermyriad = 4622, - - /// - /// spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently - /// - SpellDodgeChancePctIfYouHaveTakenAttackDamageRecently = 4623, - - /// - /// dodge_chance_+%_if_you_have_taken_spell_damage_recently - /// - DodgeChancePctIfYouHaveTakenSpellDamageRecently = 4624, - - /// - /// quantity_of_items_dropped_by_maimed_enemies_+% - /// - QuantityOfItemsDroppedByMaimedEnemiesPct = 4625, - - /// - /// rarity_of_items_dropped_by_maimed_enemies_+% - /// - RarityOfItemsDroppedByMaimedEnemiesPct = 4626, - - /// - /// damage_taken_+%_if_you_have_taken_a_savage_hit_recently - /// - DamageTakenPctIfYouHaveTakenASavageHitRecently = 4627, - - /// - /// is_maimed - /// - IsMaimed = 4628, - - /// - /// track_have_been_savage_hit_recently - /// - TrackHaveBeenSavageHitRecently = 4629, - - /// - /// have_been_savage_hit_recently - /// - HaveBeenSavageHitRecently = 4630, - - /// - /// track_have_taken_attack_damage_recently - /// - TrackHaveTakenAttackDamageRecently = 4631, - - /// - /// have_taken_attack_damage_recently - /// - HaveTakenAttackDamageRecently = 4632, - - /// - /// track_have_taken_spell_damage_recently - /// - TrackHaveTakenSpellDamageRecently = 4633, - - /// - /// have_taken_spell_damage_recently - /// - HaveTakenSpellDamageRecently = 4634, - - /// - /// stun_duration_on_self_+% - /// - StunDurationOnSelfPct = 4635, - - /// - /// melee_damage_+%_per_endurance_charge - /// - MeleeDamagePctPerEnduranceCharge = 4636, - - /// - /// totems_resist_all_elements_+%_per_active_totem - /// - TotemsResistAllElementsPctPerActiveTotem = 4637, - - /// - /// summon_your_maximum_number_of_totems_in_formation - /// - SummonYourMaximumNumberOfTotemsInFormation = 4638, - - /// - /// gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit - /// - GainLifeRegenerationPctPerSecondFor1SecondIfTakenSavageHit = 4639, - - /// - /// maximum_life_%_to_add_as_maximum_energy_shield - /// - MaximumLifePctToAddAsMaximumEnergyShield = 4640, - - /// - /// total_base_maximum_life - /// - TotalBaseMaximumLife = 4641, - - /// - /// combined_life_+% - /// - CombinedLifePct = 4642, - - /// - /// combined_life_+%_final - /// - CombinedLifePctFinal = 4643, - - /// - /// cannot_be_shocked_while_at_maximum_endurance_charges - /// - CannotBeShockedWhileAtMaximumEnduranceCharges = 4644, - - /// - /// movement_speed_+%_if_used_a_warcry_recently - /// - MovementSpeedPctIfUsedAWarcryRecently = 4645, - - /// - /// mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies - /// - ManaLeechFromAttackDamagePermyriadVsPoisonedEnemies = 4646, - - /// - /// have_used_a_warcry_recently - /// - HaveUsedAWarcryRecently = 4647, - - /// - /// track_have_used_a_warcry_recently - /// - TrackHaveUsedAWarcryRecently = 4648, - - /// - /// totems_spells_cast_speed_+%_per_active_totem - /// - TotemsSpellsCastSpeedPctPerActiveTotem = 4649, - - /// - /// movement_skills_mana_cost_+% - /// - MovementSkillsManaCostPct = 4650, - - /// - /// global_critical_strike_mulitplier_+_per_green_socket_on_item - /// - GlobalCriticalStrikeMulitplierPerGreenSocketOnItem = 4651, - - /// - /// additional_block_chance_%_when_in_off_hand - /// - AdditionalBlockChancePctWhenInOffHand = 4652, - - /// - /// critical_strike_chance_+%_when_in_main_hand - /// - CriticalStrikeChancePctWhenInMainHand = 4653, - - /// - /// spirit_offering_duration_+% - /// - SpiritOfferingDurationPct = 4654, - - /// - /// spirit_offering_physical_damage_%_to_add_as_chaos - /// - SpiritOfferingPhysicalDamagePctToAddAsChaos = 4655, - - /// - /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_normal - /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInNormal = 4656, - - /// - /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_normal - /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInNormal = 4657, - - /// - /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_cruel - /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInCruel = 4658, - - /// - /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_cruel - /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInCruel = 4659, - - /// - /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_merciless - /// - BaseFireDamagePctOfMaximumLifeTakenPerMinuteInMerciless = 4660, - - /// - /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_merciless - /// - BaseFireDamagePctOfMaximumEsTakenPerMinuteInMerciless = 4661, - - /// - /// %_of_life_to_deal_as_damage - /// - PctOfLifeToDealAsDamage = 4662, - - /// - /// %_of_es_to_deal_as_damage - /// - PctOfEsToDealAsDamage = 4663, - - /// - /// %_of_life_to_take_as_damage_on_using_a_movement_skill - /// - PctOfLifeToTakeAsDamageOnUsingAMovementSkill = 4664, - - /// - /// %_of_energy_shield_to_take_as_damage_on_using_a_movement_skill - /// - PctOfEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4665, - - /// - /// %_of_life_to_deal_as_damage_on_using_a_movement_skill - /// - PctOfLifeToDealAsDamageOnUsingAMovementSkill = 4666, - - /// - /// %_of_energy_shield_to_deal_as_damage_on_using_a_movement_skill - /// - PctOfEnergyShieldToDealAsDamageOnUsingAMovementSkill = 4667, - - /// - /// local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect - /// - LocalUniqueOverflowingChaliceFlaskCannotGainFlaskChargesDuringFlaskEffect = 4668, - - /// - /// using_flask_overflowing_chalice - /// - UsingFlaskOverflowingChalice = 4669, - - /// - /// cannot_be_chained_from - /// - CannotBeChainedFrom = 4670, - - /// - /// damage_taken_+%_if_not_hit_recently_final - /// - DamageTakenPctIfNotHitRecentlyFinal = 4671, - - /// - /// evasion_+%_if_hit_recently - /// - EvasionPctIfHitRecently = 4672, - - /// - /// cast_socketed_spells_on_X_mana_spent - /// - CastSocketedSpellsOnXManaSpent = 4673, - - /// - /// cast_socketed_spells_on_mana_spent_%_chance - /// - CastSocketedSpellsOnManaSpentPctChance = 4674, - - /// - /// block_chance_%_vs_taunted_enemies - /// - BlockChancePctVsTauntedEnemies = 4675, - - /// - /// minion_cold_damage_resistance_% - /// - MinionColdDamageResistancePct = 4676, - - /// - /// minion_physical_damage_%_to_add_as_cold - /// - MinionPhysicalDamagePctToAddAsCold = 4677, - - /// - /// armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently - /// - ArmourAndEvasionRatingPctIfKilledATauntedEnemyRecently = 4678, - - /// - /// have_killed_a_taunted_enemy_recently - /// - HaveKilledATauntedEnemyRecently = 4679, - - /// - /// map_owner_master_exp_favour_+% - /// - MapOwnerMasterExpFavourPct = 4680, - - /// - /// support_cast_on_mana_spent - /// - SupportCastOnManaSpent = 4681, - - /// - /// num_of_additional_chains_at_max_frenzy_charges - /// - NumOfAdditionalChainsAtMaxFrenzyCharges = 4682, - - /// - /// critical_strikes_do_not_always_freeze - /// - CriticalStrikesDoNotAlwaysFreeze = 4683, - - /// - /// damage_+%_for_each_level_the_enemy_is_higher_than_you - /// - DamagePctForEachLevelTheEnemyIsHigherThanYou = 4684, - - /// - /// local_unique_flask_charges_gained_+%_during_flask_effect - /// - LocalUniqueFlaskChargesGainedPctDuringFlaskEffect = 4685, - - /// - /// gain_phasing_for_4_seconds_on_begin_es_recharge - /// - GainPhasingFor4SecondsOnBeginEsRecharge = 4686, - - /// - /// chance_to_dodge_attacks_%_while_phasing - /// - ChanceToDodgeAttacksPctWhilePhasing = 4687, - - /// - /// item_found_rarity_+%_while_phasing - /// - ItemFoundRarityPctWhilePhasing = 4688, - - /// - /// hexproof - /// - Hexproof = 4689, - - /// - /// map_monsters_are_hexproof - /// - MapMonstersAreHexproof = 4690, - - /// - /// ignore_hexproof - /// - IgnoreHexproof = 4691, - - /// - /// totems_attack_speed_+%_per_active_totem - /// - TotemsAttackSpeedPctPerActiveTotem = 4692, - - /// - /// attacks_num_of_additional_chains_when_in_main_hand - /// - AttacksNumOfAdditionalChainsWhenInMainHand = 4693, - - /// - /// attacks_number_of_additional_projectiles - /// - AttacksNumberOfAdditionalProjectiles = 4694, - - /// - /// attacks_number_of_additional_projectiles_when_in_off_hand - /// - AttacksNumberOfAdditionalProjectilesWhenInOffHand = 4695, - - /// - /// counter_attacks_minimum_added_physical_damage - /// - CounterAttacksMinimumAddedPhysicalDamage = 4696, - - /// - /// counter_attacks_maximum_added_physical_damage - /// - CounterAttacksMaximumAddedPhysicalDamage = 4697, - - /// - /// golem_damage_+%_per_active_golem_type - /// - GolemDamagePctPerActiveGolemType = 4698, - - /// - /// life_+%_with_no_corrupted_equipped_items - /// - LifePctWithNoCorruptedEquippedItems = 4699, - - /// - /// life_regeneration_per_minute_with_no_corrupted_equipped_items - /// - LifeRegenerationPerMinuteWithNoCorruptedEquippedItems = 4700, - - /// - /// energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items - /// - EnergyShieldRechargeRatePerMinuteWithAllCorruptedEquippedItems = 4701, - - /// - /// local_display_nearby_enemies_take_X_chaos_damage_per_minute - /// - LocalDisplayNearbyEnemiesTakeXChaosDamagePerMinute = 4702, - - /// - /// number_of_equipped_items - /// - NumberOfEquippedItems = 4703, - - /// - /// virtual_mana_leech_from_any_damage_permyriad - /// - VirtualManaLeechFromAnyDamagePermyriad = 4704, - - /// - /// virtual_current_number_of_golem_types - /// - VirtualCurrentNumberOfGolemTypes = 4705, - - /// - /// local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation - /// - LocalDisplaySocketedSkillsSummonYourMaximumNumberOfTotemsInFormation = 4706, - - /// - /// energy_shield_regeneration_rate_per_minute_%_while_on_low_life - /// - EnergyShieldRegenerationRatePerMinutePctWhileOnLowLife = 4707, - - /// - /// counter_attacks_minimum_added_cold_damage - /// - CounterAttacksMinimumAddedColdDamage = 4708, - - /// - /// counter_attacks_maximum_added_cold_damage - /// - CounterAttacksMaximumAddedColdDamage = 4709, - - /// - /// movement_speed_+%_if_pierced_recently - /// - MovementSpeedPctIfPiercedRecently = 4710, - - /// - /// have_pierced_recently - /// - HavePiercedRecently = 4711, - - /// - /// track_have_pierced_recently - /// - TrackHavePiercedRecently = 4712, - - /// - /// item_found_quantity_+%_if_wearing_a_magic_item - /// - ItemFoundQuantityPctIfWearingAMagicItem = 4713, - - /// - /// item_found_rarity_+%_if_wearing_a_normal_item - /// - ItemFoundRarityPctIfWearingANormalItem = 4714, - - /// - /// number_of_equipped_normal_items - /// - NumberOfEquippedNormalItems = 4715, - - /// - /// poison_cursed_enemies_on_hit - /// - PoisonCursedEnemiesOnHit = 4716, - - /// - /// base_fire_damage_%_to_convert_to_chaos_60%_value - /// - BaseFireDamagePctToConvertToChaos60PctValue = 4717, - - /// - /// base_lightning_damage_%_to_convert_to_chaos_60%_value - /// - BaseLightningDamagePctToConvertToChaos60PctValue = 4718, - - /// - /// gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster - /// - GainOnslaughtForXMsOnKillingRareOrUniqueMonster = 4719, - - /// - /// kill_enemy_on_hit_if_under_20%_life - /// - KillEnemyOnHitIfUnder20PctLife = 4720, - - /// - /// immune_to_bleeding_while_leeching - /// - ImmuneToBleedingWhileLeeching = 4721, - - /// - /// damage_+%_if_enemy_killed_recently_final - /// - DamagePctIfEnemyKilledRecentlyFinal = 4722, - - /// - /// skill_area_of_effect_+%_if_enemy_killed_recently - /// - SkillAreaOfEffectPctIfEnemyKilledRecently = 4723, - - /// - /// virtual_immune_to_bleeding - /// - VirtualImmuneToBleeding = 4724, - - /// - /// have_killed_a_maimed_enemy_recently - /// - HaveKilledAMaimedEnemyRecently = 4725, - - /// - /// track_have_killed_a_maimed_enemy_recently - /// - TrackHaveKilledAMaimedEnemyRecently = 4726, - - /// - /// skill_effect_duration_+%_if_killed_maimed_enemy_recently - /// - SkillEffectDurationPctIfKilledMaimedEnemyRecently = 4727, - - /// - /// have_taunted_an_enemy_recently - /// - HaveTauntedAnEnemyRecently = 4728, - - /// - /// track_have_taunted_an_enemy_recently - /// - TrackHaveTauntedAnEnemyRecently = 4729, - - /// - /// damage_taken_+%_if_taunted_an_enemy_recently - /// - DamageTakenPctIfTauntedAnEnemyRecently = 4730, - - /// - /// life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently - /// - LifeRegenerationRatePerMinutePctIfTauntedAnEnemyRecently = 4731, - - /// - /// immune_to_elemental_status_ailments_during_flask_effect - /// - ImmuneToElementalStatusAilmentsDuringFlaskEffect = 4732, - - /// - /// elemental_damage_+%_during_flask_effect - /// - ElementalDamagePctDuringFlaskEffect = 4733, - - /// - /// chance_to_freeze_shock_ignite_%_during_flask_effect - /// - ChanceToFreezeShockIgnitePctDuringFlaskEffect = 4734, - - /// - /// summoned_monster_types_arent_duplicated - /// - SummonedMonsterTypesArentDuplicated = 4735, - - /// - /// slash_ancestor_totem_elemental_resistance_% - /// - SlashAncestorTotemElementalResistancePct = 4736, - - /// - /// melee_ancestor_totem_grant_owner_attack_speed_+% - /// - MeleeAncestorTotemGrantOwnerAttackSpeedPct = 4737, - - /// - /// slam_ancestor_totem_grant_owner_melee_damage_+% - /// - SlamAncestorTotemGrantOwnerMeleeDamagePct = 4738, - - /// - /// frost_bolt_cast_speed_+% - /// - FrostBoltCastSpeedPct = 4739, - - /// - /// frost_bolt_freeze_chance_% - /// - FrostBoltFreezeChancePct = 4740, - - /// - /// frost_bolt_nova_duration_+% - /// - FrostBoltNovaDurationPct = 4741, - - /// - /// chest_drop_additional_fire_warband_uniques - /// - ChestDropAdditionalFireWarbandUniques = 4742, - - /// - /// chest_drop_additional_cold_warband_uniques - /// - ChestDropAdditionalColdWarbandUniques = 4743, - - /// - /// chest_drop_additional_lightning_warband_uniques - /// - ChestDropAdditionalLightningWarbandUniques = 4744, - - /// - /// chest_drop_additional_chaos_warband_uniques - /// - ChestDropAdditionalChaosWarbandUniques = 4745, - - /// - /// weapons_drop_animated - /// - WeaponsDropAnimated = 4746, - - /// - /// es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground - /// - EsAndManaRegenerationRatePerMinutePctWhileOnConsecratedGround = 4747, - - /// - /// attack_and_cast_speed_+%_while_on_consecrated_ground - /// - AttackAndCastSpeedPctWhileOnConsecratedGround = 4748, - - /// - /// chest_display_summons_fire_warband - /// - ChestDisplaySummonsFireWarband = 4749, - - /// - /// chest_display_summons_cold_warband - /// - ChestDisplaySummonsColdWarband = 4750, - - /// - /// chest_display_summons_lightning_warband - /// - ChestDisplaySummonsLightningWarband = 4751, - - /// - /// chest_display_summons_chaos_warband - /// - ChestDisplaySummonsChaosWarband = 4752, - - /// - /// is_dominated - /// - IsDominated = 4753, - - /// - /// blast_rain_arrow_delay_ms - /// - BlastRainArrowDelayMs = 4754, - - /// - /// additional_block_chance_%_for_1_second_every_5_seconds - /// - AdditionalBlockChancePctFor1SecondEvery5Seconds = 4755, - - /// - /// mine_arming_speed_+% - /// - MineArmingSpeedPct = 4756, - - /// - /// flasks_%_chance_to_not_consume_charges - /// - FlasksPctChanceToNotConsumeCharges = 4757, - - /// - /// critical_strike_chance_+%_vs_bleeding_enemies - /// - CriticalStrikeChancePctVsBleedingEnemies = 4758, - - /// - /// physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit - /// - PhysicalDamagePctFor4SecondsWhenYouBlockAUniqueEnemyHit = 4759, - - /// - /// your_consecrated_ground_grants_damage_+% - /// - YourConsecratedGroundGrantsDamagePct = 4760, - - /// - /// attack_speed_+%_if_enemy_not_killed_recently - /// - AttackSpeedPctIfEnemyNotKilledRecently = 4761, - - /// - /// physical_damage_+%_while_at_maximum_frenzy_charges_final - /// - PhysicalDamagePctWhileAtMaximumFrenzyChargesFinal = 4762, - - /// - /// physical_damage_taken_+%_while_at_maximum_endurance_charges - /// - PhysicalDamageTakenPctWhileAtMaximumEnduranceCharges = 4763, - - /// - /// totem_damage_leeched_as_life_to_you_permyriad - /// - TotemDamageLeechedAsLifeToYouPermyriad = 4764, - - /// - /// damage_leeched_as_life_to_parent_permyriad - /// - DamageLeechedAsLifeToParentPermyriad = 4765, - - /// - /// attack_speed_+%_per_200_accuracy_rating - /// - AttackSpeedPctPer200AccuracyRating = 4766, - - /// - /// gain_phasing_while_at_maximum_frenzy_charges - /// - GainPhasingWhileAtMaximumFrenzyCharges = 4767, - - /// - /// gain_phasing_while_you_have_onslaught - /// - GainPhasingWhileYouHaveOnslaught = 4768, - - /// - /// gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance - /// - GainMaximumEnduranceChargesOnEnduranceChargeGainedPctChance = 4769, - - /// - /// elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds - /// - ElementalistSkillAreaOfEffectPctFor4SecondsEvery10Seconds = 4770, - - /// - /// physical_damage_%_to_add_as_chaos_vs_bleeding_enemies - /// - PhysicalDamagePctToAddAsChaosVsBleedingEnemies = 4771, - - /// - /// elemental_resistances_+%_for_you_and_allies_affected_by_your_auras - /// - ElementalResistancesPctForYouAndAlliesAffectedByYourAuras = 4772, - - /// - /// gain_x_life_on_trap_triggered_by_an_enemy - /// - GainXLifeOnTrapTriggeredByAnEnemy = 4773, - - /// - /// gain_x_es_on_trap_triggered_by_an_enemy - /// - GainXEsOnTrapTriggeredByAnEnemy = 4774, - - /// - /// phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy - /// - PhasingPctFor3SecondsOnTrapTriggeredByAnEnemy = 4775, - - /// - /// visual_always_use_smallest_blood_effect - /// - VisualAlwaysUseSmallestBloodEffect = 4776, - - /// - /// attack_skills_additional_totems_allowed - /// - AttackSkillsAdditionalTotemsAllowed = 4777, - - /// - /// global_defences_+%_per_white_socket_on_item - /// - GlobalDefencesPctPerWhiteSocketOnItem = 4778, - - /// - /// global_total_minimum_added_cold_damage - /// - GlobalTotalMinimumAddedColdDamage = 4779, - - /// - /// global_total_maximum_added_cold_damage - /// - GlobalTotalMaximumAddedColdDamage = 4780, - - /// - /// poison_from_critical_strikes_damage_+%_final - /// - PoisonFromCriticalStrikesDamagePctFinal = 4781, - - /// - /// bleed_damage_+%_vs_maimed_enemies_final - /// - BleedDamagePctVsMaimedEnemiesFinal = 4782, - - /// - /// flask_charges_+%_from_enemies_with_status_ailments - /// - FlaskChargesPctFromEnemiesWithStatusAilments = 4783, - - /// - /// mana_cost_+%_while_on_full_energy_shield - /// - ManaCostPctWhileOnFullEnergyShield = 4784, - - /// - /// permanently_intimidate_enemies_you_hit_on_full_life - /// - PermanentlyIntimidateEnemiesYouHitOnFullLife = 4785, - - /// - /// number_of_corpses_consumed_recently - /// - NumberOfCorpsesConsumedRecently = 4786, - - /// - /// track_number_of_corpses_consumed_recently - /// - TrackNumberOfCorpsesConsumedRecently = 4787, - - /// - /// damage_+%_if_you_have_consumed_a_corpse_recently - /// - DamagePctIfYouHaveConsumedACorpseRecently = 4788, - - /// - /// attack_and_cast_speed_+%_per_corpse_consumed_recently - /// - AttackAndCastSpeedPctPerCorpseConsumedRecently = 4789, - - /// - /// armour_and_evasion_+%_while_fortified - /// - ArmourAndEvasionPctWhileFortified = 4790, - - /// - /// melee_damage_+%_while_fortified - /// - MeleeDamagePctWhileFortified = 4791, - - /// - /// desecrate_creates_X_additional_corpses - /// - DesecrateCreatesXAdditionalCorpses = 4792, - - /// - /// mana_regeneration_rate_+%_while_phasing - /// - ManaRegenerationRatePctWhilePhasing = 4793, - - /// - /// chaos_skill_effect_duration_+% - /// - ChaosSkillEffectDurationPct = 4794, - - /// - /// damage_+%_final_vs_non_taunt_target_from_ot - /// - DamagePctFinalVsNonTauntTargetFromOt = 4795, - - /// - /// damage_+%_final_vs_non_taunt_target_from_passive - /// - DamagePctFinalVsNonTauntTargetFromPassive = 4796, - - /// - /// damage_+%_final_from_damaging_non_taunt_target - /// - DamagePctFinalFromDamagingNonTauntTarget = 4797, - - /// - /// taunted_enemies_damage_+%_final_vs_non_taunt_target - /// - TauntedEnemiesDamagePctFinalVsNonTauntTarget = 4798, - - /// - /// chest_drop_additional_deshret_uniques - /// - ChestDropAdditionalDeshretUniques = 4799, - - /// - /// chest_drop_additional_rare_maraketh_weapons - /// - ChestDropAdditionalRareMarakethWeapons = 4800, - - /// - /// chest_display_spawns_torment_spirits_continuously - /// - ChestDisplaySpawnsTormentSpiritsContinuously = 4801, - - /// - /// chance_to_cast_on_owned_kill_% - /// - ChanceToCastOnOwnedKillPct = 4802, - - /// - /// local_flask_cannot_be_stunned_during_flask_effect - /// - LocalFlaskCannotBeStunnedDuringFlaskEffect = 4803, - - /// - /// local_flask_lose_all_charges_on_entering_new_area - /// - LocalFlaskLoseAllChargesOnEnteringNewArea = 4804, - - /// - /// summon_specific_monsters_radius_+% - /// - SummonSpecificMonstersRadiusPct = 4805, - - /// - /// monster_drop_additional_currency_items_with_quality - /// - MonsterDropAdditionalCurrencyItemsWithQuality = 4806, - - /// - /// prophecy_spawned_monster_magic_minimum_rarity - /// - ProphecySpawnedMonsterMagicMinimumRarity = 4807, - - /// - /// gain_life_leech_on_kill_permyriad - /// - GainLifeLeechOnKillPermyriad = 4808, - - /// - /// immune_to_shock - /// - ImmuneToShock = 4809, - - /// - /// poison_on_melee_hit - /// - PoisonOnMeleeHit = 4810, - - /// - /// life_leech_permyriad_vs_cursed_enemies - /// - LifeLeechPermyriadVsCursedEnemies = 4811, - - /// - /// movement_speed_+%_if_enemy_killed_recently - /// - MovementSpeedPctIfEnemyKilledRecently = 4812, - - /// - /// local_display_socketed_gems_supported_by_x_controlled_destruction - /// - LocalDisplaySocketedGemsSupportedByXControlledDestruction = 4813, - - /// - /// local_unique_flask_kiaras_determination - /// - LocalUniqueFlaskKiarasDetermination = 4814, - - /// - /// map_items_dropped_are_mirrored - /// - MapItemsDroppedAreMirrored = 4815, - - /// - /// monster_is_corrupted_display - /// - MonsterIsCorruptedDisplay = 4816, - - /// - /// monster_casts_fire_nova_text - /// - MonsterCastsFireNovaText = 4817, - - /// - /// monster_casts_flask_charge_nova_text - /// - MonsterCastsFlaskChargeNovaText = 4818, - - /// - /// monster_has_damage_taken_aura_text - /// - MonsterHasDamageTakenAuraText = 4819, - - /// - /// monster_has_temporal_chains_aura_text - /// - MonsterHasTemporalChainsAuraText = 4820, - - /// - /// monster_has_movement_skill_damage_aura_text - /// - MonsterHasMovementSkillDamageAuraText = 4821, - - /// - /// monster_casts_bleed_nova_text - /// - MonsterCastsBleedNovaText = 4822, - - /// - /// weapon_physical_damage_%_to_add_as_each_element - /// - WeaponPhysicalDamagePctToAddAsEachElement = 4823, - - /// - /// map_force_labyrinth_trial - /// - MapForceLabyrinthTrial = 4824, - - /// - /// unique_cold_damage_can_also_ignite - /// - UniqueColdDamageCanAlsoIgnite = 4825, - - /// - /// monster_throws_chaos_bombs_text - /// - MonsterThrowsChaosBombsText = 4826, - - /// - /// attack_trigger_on_melee_hit_% - /// - AttackTriggerOnMeleeHitPct = 4827, - - /// - /// physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems - /// - PhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecentlyByYouOrYourTotems = 4828, - - /// - /// give_parent_physical_damage_%_added_as_fire_damage_if_enemy_killed_recently - /// - GiveParentPhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecently = 4829, - - /// - /// unique_boss_curse_effect_on_self_+%_final - /// - UniqueBossCurseEffectOnSelfPctFinal = 4830, - - /// - /// chest_drop_additional_unique_item_divination_cards - /// - ChestDropAdditionalUniqueItemDivinationCards = 4831, - - /// - /// chest_drop_additional_corrupted_item_divination_cards - /// - ChestDropAdditionalCorruptedItemDivinationCards = 4832, - - /// - /// chest_drop_additional_currency_item_divination_cards - /// - ChestDropAdditionalCurrencyItemDivinationCards = 4833, - - /// - /// chest_drop_additional_divination_cards_from_current_world_area - /// - ChestDropAdditionalDivinationCardsFromCurrentWorldArea = 4834, - - /// - /// chest_drop_additional_divination_cards_from_same_set - /// - ChestDropAdditionalDivinationCardsFromSameSet = 4835, - - /// - /// global_critical_strike_chance_while_dual_wielding_+% - /// - GlobalCriticalStrikeChanceWhileDualWieldingPct = 4836, - - /// - /// global_critical_strike_multiplier_while_dual_wielding_+ - /// - GlobalCriticalStrikeMultiplierWhileDualWielding = 4837, - - /// - /// doom_arrow_number_of_arrows - /// - DoomArrowNumberOfArrows = 4838, - - /// - /// stance_movement_speed_+%_final - /// - StanceMovementSpeedPctFinal = 4839, - - /// - /// Base Physical Damage Reduction and Evasion Rating - /// - BasePhysicalDamageReductionAndEvasionRating = 4840, - - /// - /// first_blood_extra_gore - /// - FirstBloodExtraGore = 4841, - - /// - /// cast_when_triggered_by_other_skill_% - /// - CastWhenTriggeredByOtherSkillPct = 4842, - - /// - /// local_display_socketed_gems_minimum_added_fire_damage - /// - LocalDisplaySocketedGemsMinimumAddedFireDamage = 4843, - - /// - /// local_display_socketed_gems_maximum_added_fire_damage - /// - LocalDisplaySocketedGemsMaximumAddedFireDamage = 4844, - - /// - /// local_display_socketed_gems_attack_and_cast_speed_+%_final - /// - LocalDisplaySocketedGemsAttackAndCastSpeedPctFinal = 4845, - - /// - /// local_display_socketed_gems_physical_damage_%_to_add_as_lightning - /// - LocalDisplaySocketedGemsPhysicalDamagePctToAddAsLightning = 4846, - - /// - /// local_display_socketed_gems_elemental_damage_+%_final - /// - LocalDisplaySocketedGemsElementalDamagePctFinal = 4847, - - /// - /// curse_nova_damage_+%_final_per_curse_removed - /// - CurseNovaDamagePctFinalPerCurseRemoved = 4848, - - /// - /// elemental_penetration_%_during_flask_effect - /// - ElementalPenetrationPctDuringFlaskEffect = 4849, - - /// - /// additional_physical_damage_reduction_%_during_flask_effect - /// - AdditionalPhysicalDamageReductionPctDuringFlaskEffect = 4850, - - /// - /// reflect_damage_taken_+% - /// - ReflectDamageTakenPct = 4851, - - /// - /// power_charge_on_block_%_chance - /// - PowerChargeOnBlockPctChance = 4852, - - /// - /// nearby_enemies_chilled_on_block - /// - NearbyEnemiesChilledOnBlock = 4853, - - /// - /// arrow_projectile_variation - /// - ArrowProjectileVariation = 4854, - - /// - /// essence_buff_elemental_damage_taken_+% - /// - EssenceBuffElementalDamageTakenPct = 4855, - - /// - /// essence_buff_ground_fire_damage_to_deal_per_second - /// - EssenceBuffGroundFireDamageToDealPerSecond = 4856, - - /// - /// essence_buff_ground_fire_duration_ms - /// - EssenceBuffGroundFireDurationMs = 4857, - - /// - /// trigger_spawners_override_row - /// - TriggerSpawnersOverrideRow = 4858, - - /// - /// trigger_spawners_max_count - /// - TriggerSpawnersMaxCount = 4859, - - /// - /// map_race_data - /// - MapRaceData = 4860, - - /// - /// map_packs_have_pop_up_traps - /// - MapPacksHavePopUpTraps = 4861, - - /// - /// permanent_damage_taken_+%_on_minion_death - /// - PermanentDamageTakenPctOnMinionDeath = 4862, - - /// - /// permanent_actor_scale_+%_on_minion_death - /// - PermanentActorScalePctOnMinionDeath = 4863, - - /// - /// permanent_item_quantity_+%_on_minion_death - /// - PermanentItemQuantityPctOnMinionDeath = 4864, - - /// - /// permanent_item_rarity_+%_on_minion_death - /// - PermanentItemRarityPctOnMinionDeath = 4865, - - /// - /// ground_maelstrom_art_variation - /// - GroundMaelstromArtVariation = 4866, - - /// - /// do_not_revive_after_time - /// - DoNotReviveAfterTime = 4867, - - /// - /// chaos_damage_taken_over_time_+% - /// - ChaosDamageTakenOverTimePct = 4868, - - /// - /// local_display_socketed_gems_additional_critical_strike_chance_% - /// - LocalDisplaySocketedGemsAdditionalCriticalStrikeChancePct = 4869, - - /// - /// attack_and_cast_speed_+%_during_flask_effect - /// - AttackAndCastSpeedPctDuringFlaskEffect = 4870, - - /// - /// minimum_added_cold_damage_per_frenzy_charge - /// - MinimumAddedColdDamagePerFrenzyCharge = 4871, - - /// - /// maximum_added_cold_damage_per_frenzy_charge - /// - MaximumAddedColdDamagePerFrenzyCharge = 4872, - - /// - /// minimum_added_fire_damage_if_blocked_recently - /// - MinimumAddedFireDamageIfBlockedRecently = 4873, - - /// - /// maximum_added_fire_damage_if_blocked_recently - /// - MaximumAddedFireDamageIfBlockedRecently = 4874, - - /// - /// track_have_blocked_attack_recently - /// - TrackHaveBlockedAttackRecently = 4875, - - /// - /// have_blocked_attack_recently - /// - HaveBlockedAttackRecently = 4876, - - /// - /// global_total_minimum_added_fire_damage - /// - GlobalTotalMinimumAddedFireDamage = 4877, - - /// - /// global_total_maximum_added_fire_damage - /// - GlobalTotalMaximumAddedFireDamage = 4878, - - /// - /// stun_threshold_based_on_energy_shield_instead_of_life - /// - StunThresholdBasedOnEnergyShieldInsteadOfLife = 4879, - - /// - /// cannot_leech_life_from_critical_strikes - /// - CannotLeechLifeFromCriticalStrikes = 4880, - - /// - /// %_chance_to_blind_on_critical_strike - /// - PctChanceToBlindOnCriticalStrike = 4881, - - /// - /// bleed_on_melee_critical_strike - /// - BleedOnMeleeCriticalStrike = 4882, - - /// - /// map_has_monoliths - /// - MapHasMonoliths = 4883, - - /// - /// in_lava - /// - InLava = 4884, - - /// - /// base_life_regeneration_per_minute_%_while_in_lava - /// - BaseLifeRegenerationPerMinutePctWhileInLava = 4885, - - /// - /// lava_buff_effect_on_self_+% - /// - LavaBuffEffectOnSelfPct = 4886, - - /// - /// current_fire_beam_stacks - /// - CurrentFireBeamStacks = 4887, - - /// - /// max_fire_beam_stacks - /// - MaxFireBeamStacks = 4888, - - /// - /// marker_warp_marker_variation - /// - MarkerWarpMarkerVariation = 4889, - - /// - /// self_take_no_extra_damage_from_critical_strikes - /// - SelfTakeNoExtraDamageFromCriticalStrikes = 4890, - - /// - /// enemies_you_shock_cast_speed_+% - /// - EnemiesYouShockCastSpeedPct = 4891, - - /// - /// enemies_you_shock_movement_speed_+% - /// - EnemiesYouShockMovementSpeedPct = 4892, - - /// - /// burning_damage_+%_if_ignited_an_enemy_recently - /// - BurningDamagePctIfIgnitedAnEnemyRecently = 4893, - - /// - /// recover_%_maximum_life_on_enemy_ignited - /// - RecoverPctMaximumLifeOnEnemyIgnited = 4894, - - /// - /// melee_physical_damage_+%_vs_ignited_enemies - /// - MeleePhysicalDamagePctVsIgnitedEnemies = 4895, - - /// - /// critical_strike_chance_+%_for_forking_arrows - /// - CriticalStrikeChancePctForForkingArrows = 4896, - - /// - /// arrows_always_pierce_after_chaining - /// - ArrowsAlwaysPierceAfterChaining = 4897, - - /// - /// arrows_that_pierce_cause_bleeding - /// - ArrowsThatPierceCauseBleeding = 4898, - - /// - /// spells_number_of_additional_projectiles - /// - SpellsNumberOfAdditionalProjectiles = 4899, - - /// - /// minion_damage_+%_if_enemy_hit_recently - /// - MinionDamagePctIfEnemyHitRecently = 4900, - - /// - /// have_hit_an_enemy_recently - /// - HaveHitAnEnemyRecently = 4901, - - /// - /// track_have_hit_an_enemy_recently - /// - TrackHaveHitAnEnemyRecently = 4902, - - /// - /// minion_damage_increases_and_reductions_also_affects_you - /// - MinionDamageIncreasesAndReductionsAlsoAffectsYou = 4903, - - /// - /// projectile_attack_damage_+%_per_200_accuracy - /// - ProjectileAttackDamagePctPer200Accuracy = 4904, - - /// - /// map_bosses_have_union_of_souls - /// - MapBossesHaveUnionOfSouls = 4905, - - /// - /// map_extra_monoliths - /// - MapExtraMonoliths = 4906, - - /// - /// minion_dies_when_parent_deleted - /// - MinionDiesWhenParentDeleted = 4907, - - /// - /// spectral_throw_projectile_scale_+% - /// - SpectralThrowProjectileScalePct = 4908, - - /// - /// gain_onslaught_for_3_seconds_%_chance_when_hit - /// - GainOnslaughtFor3SecondsPctChanceWhenHit = 4909, - - /// - /// local_display_socketed_gems_damage_over_time_+%_final - /// - LocalDisplaySocketedGemsDamageOverTimePctFinal = 4910, - - /// - /// deal_chaos_damage_per_second_for_10_seconds_on_hit - /// - DealChaosDamagePerSecondFor10SecondsOnHit = 4911, - - /// - /// movement_speed_+%_while_on_burning_chilled_shocked_ground - /// - MovementSpeedPctWhileOnBurningChilledShockedGround = 4912, - - /// - /// mana_%_gained_on_block - /// - ManaPctGainedOnBlock = 4913, - - /// - /// projectiles_drop_caustic_cloud - /// - ProjectilesDropCausticCloud = 4914, - - /// - /// base_projectile_ground_caustic_cloud_damage_per_minute - /// - BaseProjectileGroundCausticCloudDamagePerMinute = 4915, - - /// - /// local_display_socketed_non_curse_aura_gems_effect_+% - /// - LocalDisplaySocketedNonCurseAuraGemsEffectPct = 4916, - - /// - /// local_display_fire_burst_on_hit_% - /// - LocalDisplayFireBurstOnHitPct = 4917, - - /// - /// essence_support_attack_and_cast_speed_+%_final - /// - EssenceSupportAttackAndCastSpeedPctFinal = 4918, - - /// - /// essence_support_elemental_damage_+%_final - /// - EssenceSupportElementalDamagePctFinal = 4919, - - /// - /// base_number_of_essence_spirits_allowed - /// - BaseNumberOfEssenceSpiritsAllowed = 4920, - - /// - /// number_of_essence_spirits_allowed - /// - NumberOfEssenceSpiritsAllowed = 4921, - - /// - /// number_of_active_essence_spirits - /// - NumberOfActiveEssenceSpirits = 4922, - - /// - /// chest_drop_additional_prophecy_coins - /// - ChestDropAdditionalProphecyCoins = 4923, - - /// - /// ground_effect_variation - /// - GroundEffectVariation = 4924, - - /// - /// essence_support_damage_over_time_+%_final - /// - EssenceSupportDamageOverTimePctFinal = 4925, - - /// - /// local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius - /// - LocalUniqueJewelSpectresGainSoulEaterOnKillPctChanceWith50IntInRadius = 4926, - - /// - /// spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance - /// - SpectresGainSoulEaterFor20SecondsOnKillPctChance = 4927, - - /// - /// gain_soul_eater_for_20_seconds_on_kill_%_chance - /// - GainSoulEaterFor20SecondsOnKillPctChance = 4928, - - /// - /// local_unique_cast_socketed_cold_skills_on_melee_critical_strike - /// - LocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4929, - - /// - /// main_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike - /// - MainHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4930, - - /// - /// off_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike - /// - OffHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4931, - - /// - /// global_critical_strike_chance_+%_vs_chilled_enemies - /// - GlobalCriticalStrikeChancePctVsChilledEnemies = 4932, - - /// - /// unique_cospris_malice_cold_spells_triggered - /// - UniqueCosprisMaliceColdSpellsTriggered = 4933, - - /// - /// projectile_ground_caustic_cloud_radius - /// - ProjectileGroundCausticCloudRadius = 4934, - - /// - /// gain_phasing_if_enemy_killed_recently - /// - GainPhasingIfEnemyKilledRecently = 4935, - - /// - /// movement_skills_deal_no_physical_damage - /// - MovementSkillsDealNoPhysicalDamage = 4936, - - /// - /// X_mana_per_4_strength - /// - XManaPer4Strength = 4937, - - /// - /// energy_shield_+%_per_10_strength - /// - EnergyShieldPctPer10Strength = 4938, - - /// - /// X_life_per_4_dexterity - /// - XLifePer4Dexterity = 4939, - - /// - /// melee_physical_damage_+%_per_10_dexterity - /// - MeleePhysicalDamagePctPer10Dexterity = 4940, - - /// - /// X_accuracy_per_2_intelligence - /// - XAccuracyPer2Intelligence = 4941, - - /// - /// evasion_+%_per_10_intelligence - /// - EvasionPctPer10Intelligence = 4942, - - /// - /// maximum_life_%_to_add_as_maximum_armour - /// - MaximumLifePctToAddAsMaximumArmour = 4943, - - /// - /// monster_no_drops_if_death_timer_expired - /// - MonsterNoDropsIfDeathTimerExpired = 4944, - - /// - /// attack_area_of_effect_+% - /// - AttackAreaOfEffectPct = 4945, - - /// - /// physical_damage_can_shock - /// - PhysicalDamageCanShock = 4946, - - /// - /// deal_no_elemental_damage - /// - DealNoElementalDamage = 4947, - - /// - /// immune_to_freeze - /// - ImmuneToFreeze = 4948, - - /// - /// immune_to_ignite - /// - ImmuneToIgnite = 4949, - - /// - /// immune_to_chill - /// - ImmuneToChill = 4950, - - /// - /// monster_drop_no_essences - /// - MonsterDropNoEssences = 4951, - - /// - /// base_immune_to_freeze - /// - BaseImmuneToFreeze = 4952, - - /// - /// base_immune_to_chill - /// - BaseImmuneToChill = 4953, - - /// - /// base_immune_to_ignite - /// - BaseImmuneToIgnite = 4954, - - /// - /// base_immune_to_shock - /// - BaseImmuneToShock = 4955, - - /// - /// base_cannot_gain_bleeding - /// - BaseCannotGainBleeding = 4956, - - /// - /// map_boss_dropped_unique_items_+ - /// - MapBossDroppedUniqueItems = 4957, - - /// - /// map_boss_drops_corrupted_items - /// - MapBossDropsCorruptedItems = 4958, - - /// - /// map_players_and_monsters_damage_+%_per_curse - /// - MapPlayersAndMonstersDamagePctPerCurse = 4959, - - /// - /// map_players_and_monsters_critical_strike_chance_+% - /// - MapPlayersAndMonstersCriticalStrikeChancePct = 4960, - - /// - /// map_monsters_steal_charges - /// - MapMonstersStealCharges = 4961, - - /// - /// map_unidentified_maps_item_quantity_+% - /// - MapUnidentifiedMapsItemQuantityPct = 4962, - - /// - /// map_boss_dropped_item_quantity_+% - /// - MapBossDroppedItemQuantityPct = 4963, - - /// - /// map_number_of_additional_mods - /// - MapNumberOfAdditionalMods = 4964, - - /// - /// map_nemesis_dropped_items_+ - /// - MapNemesisDroppedItems = 4965, - - /// - /// map_contains_master - /// - MapContainsMaster = 4966, - - /// - /// buff_impl_stat - /// - BuffImplStat = 4967, - - /// - /// cannot_be_shocked - /// - CannotBeShocked = 4968, - - /// - /// restore_skill_life_% - /// - RestoreSkillLifePct = 4969, - - /// - /// restore_skill_mana_% - /// - RestoreSkillManaPct = 4970, - - /// - /// restore_skill_es_% - /// - RestoreSkillEsPct = 4971, - - /// - /// ground_tar_art_variation - /// - GroundTarArtVariation = 4972, - - /// - /// fire_damage_taken_when_enemy_ignited - /// - FireDamageTakenWhenEnemyIgnited = 4973, - - /// - /// life_leech_from_fire_damage_while_ignited_permyriad - /// - LifeLeechFromFireDamageWhileIgnitedPermyriad = 4974, - - /// - /// action_ignores_crit_tracking - /// - ActionIgnoresCritTracking = 4975, - - /// - /// movement_velocity_while_spider_+% - /// - MovementVelocityWhileSpiderPct = 4976, - - /// - /// is_spider - /// - IsSpider = 4977, - - /// - /// Projectile Attack Damage +% - /// - ProjectileAttackDamagePct = 4978, - - /// - /// covered_in_spiders_damage_+%_final - /// - CoveredInSpidersDamagePctFinal = 4979, - - /// - /// covered_in_spiders_attack_and_cast_speed_+%_final - /// - CoveredInSpidersAttackAndCastSpeedPctFinal = 4980, - - /// - /// map_create_instance_terrain_plugin - /// - MapCreateInstanceTerrainPlugin = 4981, - - /// - /// map_create_subarea - /// - MapCreateSubarea = 4982, - - /// - /// monster_map_boss_take_critical_strike_chance_+%_final - /// - MonsterMapBossTakeCriticalStrikeChancePctFinal = 4983, - - /// - /// monster_map_boss_extra_damage_taken_from_crit_+%_final - /// - MonsterMapBossExtraDamageTakenFromCritPctFinal = 4984, - - /// - /// extra_damage_taken_from_crit_+% - /// - ExtraDamageTakenFromCritPct = 4985, - - /// - /// chance_to_gain_frenzy_charge_on_stun_% - /// - ChanceToGainFrenzyChargeOnStunPct = 4986, - - /// - /// local_unique_flask_damage_over_time_+%_during_flask_effect - /// - LocalUniqueFlaskDamageOverTimePctDuringFlaskEffect = 4987, - - /// - /// local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect - /// - LocalUniqueFlaskNearbyEnemiesCursedWithLevelXDespairDuringFlaskEffect = 4988, - - /// - /// restore_skill_life_regeneration_rate_per_minute_% - /// - RestoreSkillLifeRegenerationRatePerMinutePct = 4989, - - /// - /// restore_skill_mana_regeneration_rate_per_minute_% - /// - RestoreSkillManaRegenerationRatePerMinutePct = 4990, - - /// - /// restore_skill_es_regeneration_rate_per_minute_% - /// - RestoreSkillEsRegenerationRatePerMinutePct = 4991, - - /// - /// projectiles_pierce_while_phasing - /// - ProjectilesPierceWhilePhasing = 4992, - - /// - /// avoid_projectiles_while_phasing_%_chance - /// - AvoidProjectilesWhilePhasingPctChance = 4993, - - /// - /// essence_display_drop_burning_ground_while_moving_fire_damage_per_second - /// - EssenceDisplayDropBurningGroundWhileMovingFireDamagePerSecond = 4994, - - /// - /// essence_display_elemental_damage_taken_while_not_moving_+% - /// - EssenceDisplayElementalDamageTakenWhileNotMovingPct = 4995, - - /// - /// local_flask_area_of_effect_+%_during_flask_effect - /// - LocalFlaskAreaOfEffectPctDuringFlaskEffect = 4996, - - /// - /// local_flask_number_of_additional_projectiles_during_flask_effect - /// - LocalFlaskNumberOfAdditionalProjectilesDuringFlaskEffect = 4997, - - /// - /// corrupted_blood_on_hit_duration - /// - CorruptedBloodOnHitDuration = 4998, - - /// - /// corrupted_blood_on_hit_num_stacks - /// - CorruptedBloodOnHitNumStacks = 4999, - - /// - /// take_no_actions_while_parent_dead - /// - TakeNoActionsWhileParentDead = 5000, - - /// - /// cast_on_hide_% - /// - CastOnHidePct = 5001, - - /// - /// map_item_level_override - /// - MapItemLevelOverride = 5002, - - /// - /// hallowed_ground_boss_use_clone_attack - /// - HallowedGroundBossUseCloneAttack = 5003, - - /// - /// hallowed_ground_boss_drop_tar_on_ground_slam - /// - HallowedGroundBossDropTarOnGroundSlam = 5004, - - /// - /// drop_ground_tar_on_hit_% - /// - DropGroundTarOnHitPct = 5005, - - /// - /// map_drop_stacked_deck_on_death_permyriad - /// - MapDropStackedDeckOnDeathPermyriad = 5006, - - /// - /// magic_monster_dropped_item_rarity_+% - /// - MagicMonsterDroppedItemRarityPct = 5007, - - /// - /// normal_monster_dropped_item_quantity_+% - /// - NormalMonsterDroppedItemQuantityPct = 5008, - - /// - /// map_player_has_level_X_projectile_weakness - /// - MapPlayerHasLevelXProjectileWeakness = 5009, - - /// - /// map_player_has_level_X_conductivity - /// - MapPlayerHasLevelXConductivity = 5010, - - /// - /// map_player_has_level_X_flammability - /// - MapPlayerHasLevelXFlammability = 5011, - - /// - /// map_player_has_level_X_frostbite - /// - MapPlayerHasLevelXFrostbite = 5012, - - /// - /// support_cast_on_crit_spell_damage_+%_final - /// - SupportCastOnCritSpellDamagePctFinal = 5013, - - /// - /// support_cast_on_melee_kill_spell_damage_+%_final - /// - SupportCastOnMeleeKillSpellDamagePctFinal = 5014, - - /// - /// avoid_projectiles_%_chance - /// - AvoidProjectilesPctChance = 5015, - - /// - /// monster_inside_monolith - /// - MonsterInsideMonolith = 5016, - - /// - /// map_spawn_extra_perandus_chests - /// - MapSpawnExtraPerandusChests = 5017, - - /// - /// map_spawn_cadiro_%_chance - /// - MapSpawnCadiroPctChance = 5018, - - /// - /// cast_on_unhide_% - /// - CastOnUnhidePct = 5019, - - /// - /// map_players_and_monsters_have_resolute_technique - /// - MapPlayersAndMonstersHaveResoluteTechnique = 5020, - - /// - /// map_resolute_technique - /// - MapResoluteTechnique = 5021, - - /// - /// map_unique_boss_drops_divination_cards - /// - MapUniqueBossDropsDivinationCards = 5022, - - /// - /// all_damage_can_chill - /// - AllDamageCanChill = 5023, - - /// - /// all_damage_can_shock - /// - AllDamageCanShock = 5024, - - /// - /// all_damage_can_ignite - /// - AllDamageCanIgnite = 5025, - - /// - /// elementalist_gain_shaper_of_desolation_every_10_seconds - /// - ElementalistGainShaperOfDesolationEvery10Seconds = 5026, - - /// - /// monster_delay_item_drops_millis - /// - MonsterDelayItemDropsMillis = 5027, - - /// - /// map_area_contains_grandmaster_ally - /// - MapAreaContainsGrandmasterAlly = 5028, - - /// - /// map_contains_creeping_agony - /// - MapContainsCreepingAgony = 5029, - - /// - /// map_portals_do_not_expire - /// - MapPortalsDoNotExpire = 5030, - - /// - /// map_monsters_are_converted_on_kill - /// - MapMonstersAreConvertedOnKill = 5031, - - /// - /// map_contains_x_fewer_portals - /// - MapContainsXFewerPortals = 5032, - - /// - /// monsters_are_converted_on_kill - /// - MonstersAreConvertedOnKill = 5033, - - /// - /// map_no_uniques_drop_randomly - /// - MapNoUniquesDropRandomly = 5034, - - /// - /// map_players_additional_number_of_projectiles - /// - MapPlayersAdditionalNumberOfProjectiles = 5035, - - /// - /// map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on - /// - MapDamagePctOfTypeInflictedByCurrentGroundEffectYouAreOn = 5036, - - /// - /// on_desecrated_ground - /// - OnDesecratedGround = 5037, - - /// - /// map_players_and_monsters_curses_are_reflected - /// - MapPlayersAndMonstersCursesAreReflected = 5038, - - /// - /// map_player_has_level_X_silence - /// - MapPlayerHasLevelXSilence = 5039, - - /// - /// map_strongbox_items_dropped_are_mirrored - /// - MapStrongboxItemsDroppedAreMirrored = 5040, - - /// - /// map_players_are_poisoned_while_moving_chaos_damage_per_second - /// - MapPlayersArePoisonedWhileMovingChaosDamagePerSecond = 5041, - - /// - /// discharge_triggered_damage_+%_final - /// - DischargeTriggeredDamagePctFinal = 5042, - - /// - /// map_normal_items_drop_as_magic - /// - MapNormalItemsDropAsMagic = 5043, - - /// - /// monster_no_additional_player_scaling - /// - MonsterNoAdditionalPlayerScaling = 5044, - - /// - /// phase_through_objects_while_spider - /// - PhaseThroughObjectsWhileSpider = 5045, - - /// - /// map_flask_charges_recovered_per_3_seconds_% - /// - MapFlaskChargesRecoveredPer3SecondsPct = 5046, - - /// - /// virtual_flask_charges_recovered_per_3_seconds_% - /// - VirtualFlaskChargesRecoveredPer3SecondsPct = 5047, - - /// - /// combined_hit_all_damage_+%_final - /// - CombinedHitAllDamagePctFinal = 5048, - - /// - /// support_remote_mine_hit_damage_+%_final - /// - SupportRemoteMineHitDamagePctFinal = 5049, - - /// - /// map_magic_items_drop_as_normal - /// - MapMagicItemsDropAsNormal = 5050, - - /// - /// flask_charges_recovered_per_3_seconds_% - /// - FlaskChargesRecoveredPer3SecondsPct = 5051, - - /// - /// support_trap_hit_damage_+%_final - /// - SupportTrapHitDamagePctFinal = 5052, - - /// - /// damage_vs_tiki_totems_+% - /// - DamageVsTikiTotemsPct = 5053, - - /// - /// is_tiki_totem - /// - IsTikiTotem = 5054, - - /// - /// self_ignite_duration_+%_final - /// - SelfIgniteDurationPctFinal = 5055, - - /// - /// self_bleed_duration_+%_final - /// - SelfBleedDurationPctFinal = 5056, - - /// - /// self_poison_duration_+%_final - /// - SelfPoisonDurationPctFinal = 5057, - - /// - /// treasure_pile_damage_+%_final - /// - TreasurePileDamagePctFinal = 5058, - - /// - /// map_contains_additional_packs_of_fire_monsters - /// - MapContainsAdditionalPacksOfFireMonsters = 5059, - - /// - /// map_contains_additional_packs_of_chaos_monsters - /// - MapContainsAdditionalPacksOfChaosMonsters = 5060, - - /// - /// map_contains_additional_packs_of_physical_monsters - /// - MapContainsAdditionalPacksOfPhysicalMonsters = 5061, - - /// - /// map_contains_additional_packs_of_lightning_monsters - /// - MapContainsAdditionalPacksOfLightningMonsters = 5062, - - /// - /// map_contains_additional_packs_of_cold_monsters - /// - MapContainsAdditionalPacksOfColdMonsters = 5063, - - /// - /// map_players_and_monsters_fire_damage_taken_+% - /// - MapPlayersAndMonstersFireDamageTakenPct = 5064, - - /// - /// map_players_and_monsters_chaos_damage_taken_+% - /// - MapPlayersAndMonstersChaosDamageTakenPct = 5065, - - /// - /// map_players_and_monsters_physical_damage_taken_+% - /// - MapPlayersAndMonstersPhysicalDamageTakenPct = 5066, - - /// - /// map_players_and_monsters_lightning_damage_taken_+% - /// - MapPlayersAndMonstersLightningDamageTakenPct = 5067, - - /// - /// map_players_and_monsters_cold_damage_taken_+% - /// - MapPlayersAndMonstersColdDamageTakenPct = 5068, - - /// - /// map_players_and_monsters_have_onslaught_if_hit_recently - /// - MapPlayersAndMonstersHaveOnslaughtIfHitRecently = 5069, - - /// - /// map_players_and_monsters_damage_taken_+%_while_stationary - /// - MapPlayersAndMonstersDamageTakenPctWhileStationary = 5070, - - /// - /// chance_to_poison_on_melee_hit_% - /// - ChanceToPoisonOnMeleeHitPct = 5071, - - /// - /// chilled_ground_effect_+% - /// - ChilledGroundEffectPct = 5072, - - /// - /// damage_vs_spiders_while_spider_+% - /// - DamageVsSpidersWhileSpiderPct = 5073, - - /// - /// damage_taken_from_spiders_while_spider_+% - /// - DamageTakenFromSpidersWhileSpiderPct = 5074, - - /// - /// map_players_and_monsters_movement_speed_+% - /// - MapPlayersAndMonstersMovementSpeedPct = 5075, - - /// - /// damage_taken_+%_for_4_seconds_after_spending_200_mana - /// - DamageTakenPctFor4SecondsAfterSpending200Mana = 5076, - - /// - /// life_regeneration_per_minute_per_active_buff - /// - LifeRegenerationPerMinutePerActiveBuff = 5077, - - /// - /// buff_effect_+%_on_low_energy_shield - /// - BuffEffectPctOnLowEnergyShield = 5078, - - /// - /// on_low_energy_shield - /// - OnLowEnergyShield = 5079, - - /// - /// map_ground_haste_action_speed_+% - /// - MapGroundHasteActionSpeedPct = 5080, - - /// - /// map_drops_all_maps - /// - MapDropsAllMaps = 5081, - - /// - /// essence_delirium_spawn_monster_on_death_variation - /// - EssenceDeliriumSpawnMonsterOnDeathVariation = 5082, - - /// - /// essence_anguish_spawn_monster_on_death_variation - /// - EssenceAnguishSpawnMonsterOnDeathVariation = 5083, - - /// - /// essence_suffering_spawn_monster_on_death_variation - /// - EssenceSufferingSpawnMonsterOnDeathVariation = 5084, - - /// - /// essence_corrupt_spawn_monster_on_death_variation - /// - EssenceCorruptSpawnMonsterOnDeathVariation = 5085, - - /// - /// map_ground_haste_effect_patches_per_100_tiles - /// - MapGroundHasteEffectPatchesPer100Tiles = 5086, - - /// - /// map_ground_haste_effect_radius - /// - MapGroundHasteEffectRadius = 5087, - - /// - /// map_breach_rules - /// - MapBreachRules = 5088, - - /// - /// cannot_regenerate_energy_shield - /// - CannotRegenerateEnergyShield = 5089, - - /// - /// cannot_recharge_energy_shield - /// - CannotRechargeEnergyShield = 5090, - - /// - /// energy_shield_lost_per_minute_% - /// - EnergyShieldLostPerMinutePct = 5091, - - /// - /// life_leech_applies_to_energy_shield_on_full_life - /// - LifeLeechAppliesToEnergyShieldOnFullLife = 5092, - - /// - /// virtual_leech_energy_shield_instead_of_life - /// - VirtualLeechEnergyShieldInsteadOfLife = 5093, - - /// - /// current_number_of_spinning_blades - /// - CurrentNumberOfSpinningBlades = 5094, - - /// - /// virtual_current_number_of_spinning_blades - /// - VirtualCurrentNumberOfSpinningBlades = 5095, - - /// - /// vaal_blade_vortex_has_10_spinning_blades - /// - VaalBladeVortexHas10SpinningBlades = 5096, - - /// - /// fire_beam_additional_stack_damage_+%_final - /// - FireBeamAdditionalStackDamagePctFinal = 5097, - - /// - /// number_of_blood_ravens_to_summon - /// - NumberOfBloodRavensToSummon = 5098, - - /// - /// map_fishy_effect_0 - /// - MapFishyEffect0 = 5099, - - /// - /// map_hidden_players_have_insanity - /// - MapHiddenPlayersHaveInsanity = 5100, - - /// - /// map_monster_and_player_onslaught_effect_+% - /// - MapMonsterAndPlayerOnslaughtEffectPct = 5101, - - /// - /// map_damage_while_stationary_+% - /// - MapDamageWhileStationaryPct = 5102, - - /// - /// map_damage_taken_while_stationary_+% - /// - MapDamageTakenWhileStationaryPct = 5103, - - /// - /// map_item_drop_quality_also_applies_to_map_item_drop_rarity - /// - MapItemDropQualityAlsoAppliesToMapItemDropRarity = 5104, - - /// - /// map_has_x%_quality - /// - MapHasXpctQuality = 5105, - - /// - /// map_unique_monsters_drop_corrupted_items - /// - MapUniqueMonstersDropCorruptedItems = 5106, - - /// - /// fire_beam_degen_spread_to_enemies_in_radius_on_kill - /// - FireBeamDegenSpreadToEnemiesInRadiusOnKill = 5107, - - /// - /// fire_beam_enemy_fire_resistance_%_per_stack - /// - FireBeamEnemyFireResistancePctPerStack = 5108, - - /// - /// fire_beam_cast_speed_+% - /// - FireBeamCastSpeedPct = 5109, - - /// - /// map_corrupted_bosses_drop_x_additional_vaal_items - /// - MapCorruptedBossesDropXAdditionalVaalItems = 5110, - - /// - /// map_strongboxes_are_corrupted - /// - MapStrongboxesAreCorrupted = 5111, - - /// - /// map_players_cannot_take_reflected_damage - /// - MapPlayersCannotTakeReflectedDamage = 5112, - - /// - /// map_player_flask_recovery_is_instant - /// - MapPlayerFlaskRecoveryIsInstant = 5113, - - /// - /// map_contains_x_additional_packs_with_mirrored_rare_monsters - /// - MapContainsXAdditionalPacksWithMirroredRareMonsters = 5114, - - /// - /// map_contains_x_additional_healing_packs - /// - MapContainsXAdditionalHealingPacks = 5115, - - /// - /// map_contains_x_additional_normal_packs - /// - MapContainsXAdditionalNormalPacks = 5116, - - /// - /// map_contains_x_additional_magic_packs - /// - MapContainsXAdditionalMagicPacks = 5117, - - /// - /// map_contains_x_additional_rare_packs - /// - MapContainsXAdditionalRarePacks = 5118, - - /// - /// map_contains_x_additional_packs_that_convert_on_death - /// - MapContainsXAdditionalPacksThatConvertOnDeath = 5119, - - /// - /// map_contains_x_additional_packs_on_their_own_team - /// - MapContainsXAdditionalPacksOnTheirOwnTeam = 5120, - - /// - /// map_on_complete_drop_x_additional_maps - /// - MapOnCompleteDropXAdditionalMaps = 5121, - - /// - /// monster_converts_on_death - /// - MonsterConvertsOnDeath = 5122, - - /// - /// flask_recovery_is_instant - /// - FlaskRecoveryIsInstant = 5123, - - /// - /// map_fishy_effect_1 - /// - MapFishyEffect1 = 5124, - - /// - /// map_fishy_effect_2 - /// - MapFishyEffect2 = 5125, - - /// - /// map_fishy_effect_3 - /// - MapFishyEffect3 = 5126, - - /// - /// map_magic_pack_size_+% - /// - MapMagicPackSizePct = 5127, - - /// - /// map_rogue_exiles_damage_+% - /// - MapRogueExilesDamagePct = 5128, - - /// - /// map_rogue_exiles_maximum_life_+% - /// - MapRogueExilesMaximumLifePct = 5129, - - /// - /// map_rogue_exiles_drop_x_additional_jewels - /// - MapRogueExilesDropXAdditionalJewels = 5130, - - /// - /// monster_drop_additional_jewels - /// - MonsterDropAdditionalJewels = 5131, - - /// - /// map_strongbox_monsters_item_quantity_+% - /// - MapStrongboxMonstersItemQuantityPct = 5132, - - /// - /// map_strongbox_monsters_actor_scale_+% - /// - MapStrongboxMonstersActorScalePct = 5133, - - /// - /// map_strongbox_monsters_attack_speed_+% - /// - MapStrongboxMonstersAttackSpeedPct = 5134, - - /// - /// map_strongbox_monsters_movement_velocity_+% - /// - MapStrongboxMonstersMovementVelocityPct = 5135, - - /// - /// strongbox_monsters_item_quantity_+% - /// - StrongboxMonstersItemQuantityPct = 5136, - - /// - /// strongbox_monsters_actor_scale_+% - /// - StrongboxMonstersActorScalePct = 5137, - - /// - /// strongbox_monsters_attack_speed_+% - /// - StrongboxMonstersAttackSpeedPct = 5138, - - /// - /// strongbox_monsters_movement_velocity_+% - /// - StrongboxMonstersMovementVelocityPct = 5139, - - /// - /// damage_+%_per_poison_stack - /// - DamagePctPerPoisonStack = 5140, - - /// - /// movement_velocity_+%_per_poison_stack - /// - MovementVelocityPctPerPoisonStack = 5141, - - /// - /// map_damage_+%_per_poison_stack - /// - MapDamagePctPerPoisonStack = 5142, - - /// - /// map_movement_velocity_+%_per_poison_stack - /// - MapMovementVelocityPctPerPoisonStack = 5143, - - /// - /// map_contains_x_additional_poison_packs - /// - MapContainsXAdditionalPoisonPacks = 5144, - - /// - /// inspiring_cry_enemy_count_override - /// - InspiringCryEnemyCountOverride = 5145, - - /// - /// map_area_contains_x_additional_clusters_of_explosive_barrels - /// - MapAreaContainsXAdditionalClustersOfExplosiveBarrels = 5146, - - /// - /// map_bonus_barrel_% - /// - MapBonusBarrelPct = 5147, - - /// - /// empowering_cry_physical_damage_added_as_fire_damage_% - /// - EmpoweringCryPhysicalDamageAddedAsFireDamagePct = 5148, - - /// - /// map_boss_accompanied_by_bodyguards - /// - MapBossAccompaniedByBodyguards = 5149, - - /// - /// blade_vortex_hit_rate_+%_per_blade - /// - BladeVortexHitRatePctPerBlade = 5150, - - /// - /// blade_vortex_damage_+%_per_blade_final - /// - BladeVortexDamagePctPerBladeFinal = 5151, - - /// - /// golem_maximum_life_+% - /// - GolemMaximumLifePct = 5152, - - /// - /// golem_life_regeneration_per_minute_% - /// - GolemLifeRegenerationPerMinutePct = 5153, - - /// - /// have_summoned_a_golem_in_past_8_seconds - /// - HaveSummonedAGolemInPast8Seconds = 5154, - - /// - /// damage_+%_if_golem_summoned_in_past_8_seconds - /// - DamagePctIfGolemSummonedInPast8Seconds = 5155, - - /// - /// golem_damage_+%_if_summoned_in_past_8_seconds - /// - GolemDamagePctIfSummonedInPast8Seconds = 5156, - - /// - /// golem_skill_cooldown_recovery_+% - /// - GolemSkillCooldownRecoveryPct = 5157, - - /// - /// golem_cooldown_recovery_+% - /// - GolemCooldownRecoveryPct = 5158, - - /// - /// golem_buff_effect_+% - /// - GolemBuffEffectPct = 5159, - - /// - /// golem_attack_and_cast_speed_+% - /// - GolemAttackAndCastSpeedPct = 5160, - - /// - /// golem_physical_damage_reduction_rating - /// - GolemPhysicalDamageReductionRating = 5161, - - /// - /// primordial_jewel_count - /// - PrimordialJewelCount = 5162, - - /// - /// number_of_golems_allowed_with_3_primordial_jewels - /// - NumberOfGolemsAllowedWith3PrimordialJewels = 5163, - - /// - /// map_monster_curse_effect_on_self_+% - /// - MapMonsterCurseEffectOnSelfPct = 5164, - - /// - /// map_player_curse_effect_on_self_+% - /// - MapPlayerCurseEffectOnSelfPct = 5165, - - /// - /// thrown_shield_num_additional_projectiles - /// - ThrownShieldNumAdditionalProjectiles = 5166, - - /// - /// buff_damage_while_stationery_+% - /// - BuffDamageWhileStationeryPct = 5167, - - /// - /// buff_damage_taken_while_stationery_+% - /// - BuffDamageTakenWhileStationeryPct = 5168, - - /// - /// map_display_strongbox_monsters_are_enraged - /// - MapDisplayStrongboxMonstersAreEnraged = 5169, - - /// - /// celestial_footprints_from_item - /// - CelestialFootprintsFromItem = 5170, - - /// - /// deal_1000_chaos_damage_per_second_for_10_seconds_on_hit - /// - Deal1000ChaosDamagePerSecondFor10SecondsOnHit = 5171, - - /// - /// map_strongboxes_minimum_rarity - /// - MapStrongboxesMinimumRarity = 5172, - - /// - /// map_area_contains_x_additional_clusters_of_wealthy_barrels - /// - MapAreaContainsXAdditionalClustersOfWealthyBarrels = 5173, - - /// - /// map_area_contains_x_additional_clusters_of_volatile_barrels - /// - MapAreaContainsXAdditionalClustersOfVolatileBarrels = 5174, - - /// - /// map_area_contains_x_additional_clusters_of_bloodworm_barrels - /// - MapAreaContainsXAdditionalClustersOfBloodwormBarrels = 5175, - - /// - /// map_area_contains_x_additional_clusters_of_parasite_barrels - /// - MapAreaContainsXAdditionalClustersOfParasiteBarrels = 5176, - - /// - /// map_area_contains_x_additional_clusters_of_beacon_barrels - /// - MapAreaContainsXAdditionalClustersOfBeaconBarrels = 5177, - - /// - /// map_contains_x_additional_rare_packs_if_rare - /// - MapContainsXAdditionalRarePacksIfRare = 5178, - - /// - /// map_contains_x_additional_magic_packs_if_magic - /// - MapContainsXAdditionalMagicPacksIfMagic = 5179, - - /// - /// map_contains_x_additional_normal_packs_if_normal - /// - MapContainsXAdditionalNormalPacksIfNormal = 5180, - - /// - /// map_boss_drops_x_additional_vaal_items - /// - MapBossDropsXAdditionalVaalItems = 5181, - - /// - /// fire_beam_length_+% - /// - FireBeamLengthPct = 5182, - - /// - /// is_breach_monster - /// - IsBreachMonster = 5183, - - /// - /// cast_linked_spells_on_shocked_enemy_kill_% - /// - CastLinkedSpellsOnShockedEnemyKillPct = 5184, - - /// - /// map_equipment_drops_identified_in_identified_areas - /// - MapEquipmentDropsIdentifiedInIdentifiedAreas = 5185, - - /// - /// map_items_drop_corrupted_% - /// - MapItemsDropCorruptedPct = 5186, - - /// - /// doom_arrow_area_of_effect_+%_final_per_frenzy_charge - /// - DoomArrowAreaOfEffectPctFinalPerFrenzyCharge = 5187, - - /// - /// bonespire_number_of_bone_piles_to_spawn - /// - BonespireNumberOfBonePilesToSpawn = 5188, - - /// - /// mortar_cone_angle - /// - MortarConeAngle = 5189, - - /// - /// current_consume_charges - /// - CurrentConsumeCharges = 5190, - - /// - /// maximum_consume_charges - /// - MaximumConsumeCharges = 5191, - - /// - /// expend_consume_charges_on_skill_use - /// - ExpendConsumeChargesOnSkillUse = 5192, - - /// - /// gain_consume_charges_on_skill_use - /// - GainConsumeChargesOnSkillUse = 5193, - - /// - /// secondary_skill_effect_duration_+% - /// - SecondarySkillEffectDurationPct = 5194, - - /// - /// X_armour_per_active_totem - /// - XArmourPerActiveTotem = 5195, - - /// - /// map_pack_size_+%_in_unidentified_areas - /// - MapPackSizePctInUnidentifiedAreas = 5196, - - /// - /// chance_to_dodge_%_at_max_charged_attack_stacks - /// - ChanceToDodgePctAtMaxChargedAttackStacks = 5197, - - /// - /// critical_strikes_deal_no_damage - /// - CriticalStrikesDealNoDamage = 5198, - - /// - /// spell_damage_+%_if_have_crit_recently - /// - SpellDamagePctIfHaveCritRecently = 5199, - - /// - /// critical_strike_multiplier_+_if_have_dealt_non_crit_recently - /// - CriticalStrikeMultiplierIfHaveDealtNonCritRecently = 5200, - - /// - /// track_have_dealt_non_crit_recently - /// - TrackHaveDealtNonCritRecently = 5201, - - /// - /// have_dealt_non_crit_recently - /// - HaveDealtNonCritRecently = 5202, - - /// - /// total_base_armour_rating - /// - TotalBaseArmourRating = 5203, - - /// - /// combined_only_armour_+% - /// - CombinedOnlyArmourPct = 5204, - - /// - /// combined_armour_+% - /// - CombinedArmourPct = 5205, - - /// - /// combined_only_armour_+%_final - /// - CombinedOnlyArmourPctFinal = 5206, - - /// - /// combined_evasion_rating_+%_final - /// - CombinedEvasionRatingPctFinal = 5207, - - /// - /// combined_only_armour_from_shield_+% - /// - CombinedOnlyArmourFromShieldPct = 5208, - - /// - /// combined_armour_from_shield_+% - /// - CombinedArmourFromShieldPct = 5209, - - /// - /// armour_differs_against_projectiles - /// - ArmourDiffersAgainstProjectiles = 5210, - - /// - /// armour_while_stationary - /// - ArmourWhileStationary = 5211, - - /// - /// mana_regeneration_rate_+%_while_stationary - /// - ManaRegenerationRatePctWhileStationary = 5212, - - /// - /// non_critical_strikes_deal_no_damage - /// - NonCriticalStrikesDealNoDamage = 5213, - - /// - /// chilled_ground_when_hit_with_attack_% - /// - ChilledGroundWhenHitWithAttackPct = 5214, - - /// - /// critical_strike_multiplier_+_per_1%_block_chance - /// - CriticalStrikeMultiplierPer1PctBlockChance = 5215, - - /// - /// local_flask_unholy_might_during_flask_effect - /// - LocalFlaskUnholyMightDuringFlaskEffect = 5216, - - /// - /// spell_minimum_added_cold_damage_per_power_charge - /// - SpellMinimumAddedColdDamagePerPowerCharge = 5217, - - /// - /// spell_maximum_added_cold_damage_per_power_charge - /// - SpellMaximumAddedColdDamagePerPowerCharge = 5218, - - /// - /// recover_X_mana_on_killing_frozen_enemy - /// - RecoverXManaOnKillingFrozenEnemy = 5219, - - /// - /// chance_to_gain_power_charge_on_killing_frozen_enemy_% - /// - ChanceToGainPowerChargeOnKillingFrozenEnemyPct = 5220, - - /// - /// damage_+%_if_you_have_frozen_enemy_recently - /// - DamagePctIfYouHaveFrozenEnemyRecently = 5221, - - /// - /// track_have_frozen_enemy_recently - /// - TrackHaveFrozenEnemyRecently = 5222, - - /// - /// have_frozen_enemy_recently - /// - HaveFrozenEnemyRecently = 5223, - - /// - /// maximum_added_lightning_damage_per_10_int - /// - MaximumAddedLightningDamagePer10Int = 5224, - - /// - /// attack_speed_+%_per_25_dex - /// - AttackSpeedPctPer25Dex = 5225, - - /// - /// number_of_shocked_enemies_killed_recently - /// - NumberOfShockedEnemiesKilledRecently = 5226, - - /// - /// minimum_added_lightning_damage_per_shocked_enemy_killed_recently - /// - MinimumAddedLightningDamagePerShockedEnemyKilledRecently = 5227, - - /// - /// maximum_added_lightning_damage_per_shocked_enemy_killed_recently - /// - MaximumAddedLightningDamagePerShockedEnemyKilledRecently = 5228, - - /// - /// reflect_shocks - /// - ReflectShocks = 5229, - - /// - /// movement_speed_+%_while_bleeding - /// - MovementSpeedPctWhileBleeding = 5230, - - /// - /// physical_damage_taken_+%_while_moving - /// - PhysicalDamageTakenPctWhileMoving = 5231, - - /// - /// physical_damage_reduction_rating_%_while_not_moving - /// - PhysicalDamageReductionRatingPctWhileNotMoving = 5232, - - /// - /// display_max_fire_beam_stacks - /// - DisplayMaxFireBeamStacks = 5233, - - /// - /// display_max_blight_stacks - /// - DisplayMaxBlightStacks = 5234, - - /// - /// virtual_track_movement - /// - VirtualTrackMovement = 5235, - - /// - /// is_moving - /// - IsMoving = 5236, - - /// - /// mass_flicker_strike_number_of_teleports - /// - MassFlickerStrikeNumberOfTeleports = 5237, - - /// - /// blind_chilled_enemies_on_hit_% - /// - BlindChilledEnemiesOnHitPct = 5238, - - /// - /// cold_damage_+%_per_frenzy_charge - /// - ColdDamagePctPerFrenzyCharge = 5239, - - /// - /// gain_frenzy_charge_on_reaching_maximum_power_charges - /// - GainFrenzyChargeOnReachingMaximumPowerCharges = 5240, - - /// - /// gain_frenzy_charge_on_hit_while_bleeding - /// - GainFrenzyChargeOnHitWhileBleeding = 5241, - - /// - /// virtual_chaos_damage_does_not_bypass_energy_shield - /// - VirtualChaosDamageDoesNotBypassEnergyShield = 5242, - - /// - /// chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana - /// - ChaosDamageDoesNotBypassEnergyShieldWhileNotLowLifeOrMana = 5243, - - /// - /// local_display_grants_level_X_reckoning - /// - LocalDisplayGrantsLevelXReckoning = 5244, - - /// - /// reflect_shocks_to_enemies_in_radius - /// - ReflectShocksToEnemiesInRadius = 5245, - - /// - /// recover_%_maximum_life_on_killing_poisoned_enemy - /// - RecoverPctMaximumLifeOnKillingPoisonedEnemy = 5246, - - /// - /// minions_recover_%_maximum_life_on_killing_poisoned_enemy - /// - MinionsRecoverPctMaximumLifeOnKillingPoisonedEnemy = 5247, - - /// - /// recover_X_life_on_enemy_ignited - /// - RecoverXLifeOnEnemyIgnited = 5248, - - /// - /// cold_penetration_%_vs_chilled_enemies - /// - ColdPenetrationPctVsChilledEnemies = 5249, - - /// - /// local_display_grants_level_X_envy - /// - LocalDisplayGrantsLevelXEnvy = 5250, - - /// - /// cast_on_cyclone_contact_% - /// - CastOnCycloneContactPct = 5251, - - /// - /// cyclone_has_triggered_skill - /// - CycloneHasTriggeredSkill = 5252, - - /// - /// minions_chance_to_poison_on_hit_% - /// - MinionsChanceToPoisonOnHitPct = 5253, - - /// - /// X_armour_if_you_have_blocked_recently - /// - XArmourIfYouHaveBlockedRecently = 5254, - - /// - /// enemies_explode_on_kill - /// - EnemiesExplodeOnKill = 5255, - - /// - /// local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill - /// - LocalDisplayAttackWithLevelXBoneNovaOnBleedingEnemyKill = 5256, - - /// - /// attack_trigger_on_killing_bleeding_enemy_% - /// - AttackTriggerOnKillingBleedingEnemyPct = 5257, - - /// - /// permanently_intimidate_enemy_on_block - /// - PermanentlyIntimidateEnemyOnBlock = 5258, - - /// - /// receive_bleeding_chance_%_when_hit_by_attack - /// - ReceiveBleedingChancePctWhenHitByAttack = 5259, - - /// - /// attacks_cause_bleeding_vs_cursed_enemies - /// - AttacksCauseBleedingVsCursedEnemies = 5260, - - /// - /// armour_increased_by_uncapped_fire_resistance - /// - ArmourIncreasedByUncappedFireResistance = 5261, - - /// - /// evasion_rating_increased_by_uncapped_cold_resistance - /// - EvasionRatingIncreasedByUncappedColdResistance = 5262, - - /// - /// critical_strike_chance_increased_by_uncapped_lightning_resistance - /// - CriticalStrikeChanceIncreasedByUncappedLightningResistance = 5263, - - /// - /// combined_critical_strike_chance_+% - /// - CombinedCriticalStrikeChancePct = 5264, - - /// - /// combined_critical_strike_chance_+%_final - /// - CombinedCriticalStrikeChancePctFinal = 5265, - - /// - /// totems_cannot_evade - /// - TotemsCannotEvade = 5266, - - /// - /// disable_seek_seal_prophecies - /// - DisableSeekSealProphecies = 5267, - - /// - /// mortar_distance_in_front_of_target - /// - MortarDistanceInFrontOfTarget = 5268, - - /// - /// apply_covered_in_ash_to_attacker_when_hit_% - /// - ApplyCoveredInAshToAttackerWhenHitPct = 5269, - - /// - /// covered_in_ash_movement_speed_+%_final - /// - CoveredInAshMovementSpeedPctFinal = 5270, - - /// - /// secondary_total_minimum_base_physical_damage - /// - SecondaryTotalMinimumBasePhysicalDamage = 5271, - - /// - /// secondary_total_maximum_base_physical_damage - /// - SecondaryTotalMaximumBasePhysicalDamage = 5272, - - /// - /// minimum_secondary_physical_damage_per_15_strength - /// - MinimumSecondaryPhysicalDamagePer15Strength = 5273, - - /// - /// maximum_secondary_physical_damage_per_15_strength - /// - MaximumSecondaryPhysicalDamagePer15Strength = 5274, - - /// - /// flame_geyser_number_of_splits - /// - FlameGeyserNumberOfSplits = 5275, - - /// - /// keystone_avatar_of_fire - /// - KeystoneAvatarOfFire = 5276, - - /// - /// keystone_eldritch_battery - /// - KeystoneEldritchBattery = 5277, - - /// - /// keystone_ancestral_bond - /// - KeystoneAncestralBond = 5278, - - /// - /// skeletal_chains_no_minions_damage_+%_final - /// - SkeletalChainsNoMinionsDamagePctFinal = 5279, - - /// - /// virtual_energy_shield_protects_mana - /// - VirtualEnergyShieldProtectsMana = 5280, - - /// - /// virtual_spend_energy_shield_for_costs_before_mana - /// - VirtualSpendEnergyShieldForCostsBeforeMana = 5281, - - /// - /// shock_nova_skill_area_of_effect_+%_per_contact_point - /// - ShockNovaSkillAreaOfEffectPctPerContactPoint = 5282, - - /// - /// spell_skills_deal_no_damage - /// - SpellSkillsDealNoDamage = 5283, - - /// - /// ignite_proliferation_radius - /// - IgniteProliferationRadius = 5284, - - /// - /// base_ignite_proliferation_radius - /// - BaseIgniteProliferationRadius = 5285, - - /// - /// transition_objects_at_state - /// - TransitionObjectsAtState = 5286, - - /// - /// fire_beam_enemy_fire_resistance_%_at_max_stacks - /// - FireBeamEnemyFireResistancePctAtMaxStacks = 5287, - - /// - /// attack_damage_+1%_per_300_of_min_of_armour_or_evasion - /// - AttackDamage1PctPer300OfMinOfArmourOrEvasion = 5288, - - /// - /// chance_to_fortify_on_melee_stun_% - /// - ChanceToFortifyOnMeleeStunPct = 5289, - - /// - /// gain_onslaught_while_you_have_fortify - /// - GainOnslaughtWhileYouHaveFortify = 5290, - - /// - /// local_six_linked_random_sockets - /// - LocalSixLinkedRandomSockets = 5291, - - /// - /// local_can_only_socket_corrupted_gems - /// - LocalCanOnlySocketCorruptedGems = 5292, - - /// - /// fire_beam_enemy_fire_resistance_%_maximum - /// - FireBeamEnemyFireResistancePctMaximum = 5293, - - /// - /// proximity_shield_ground_lightning_duration_ms - /// - ProximityShieldGroundLightningDurationMs = 5294, - - /// - /// map_player_charges_gained_+% - /// - MapPlayerChargesGainedPct = 5295, - - /// - /// curse_effect_on_self_+%_final - /// - CurseEffectOnSelfPctFinal = 5296, - - /// - /// map_monsters_curse_effect_on_self_+%_final - /// - MapMonstersCurseEffectOnSelfPctFinal = 5297, - - /// - /// map_monsters_%_chance_to_inflict_status_ailments - /// - MapMonstersPctChanceToInflictStatusAilments = 5298, - - /// - /// map_monsters_movement_speed_cannot_be_reduced_below_base - /// - MapMonstersMovementSpeedCannotBeReducedBelowBase = 5299, - - /// - /// map_monsters_cannot_be_taunted - /// - MapMonstersCannotBeTaunted = 5300, - - /// - /// map_monsters_always_ignite - /// - MapMonstersAlwaysIgnite = 5301, - - /// - /// map_monsters_additional_chaos_resistance - /// - MapMonstersAdditionalChaosResistance = 5302, - - /// - /// map_monsters_avoid_poison_blind_bleed_% - /// - MapMonstersAvoidPoisonBlindBleedPct = 5303, - - /// - /// base_avoid_poison_% - /// - BaseAvoidPoisonPct = 5304, - - /// - /// map_players_have_point_blank - /// - MapPlayersHavePointBlank = 5305, - - /// - /// map_players_block_chance_+% - /// - MapPlayersBlockChancePct = 5306, - - /// - /// map_players_armour_+%_final - /// - MapPlayersArmourPctFinal = 5307, - - /// - /// map_monsters_accuracy_rating_+% - /// - MapMonstersAccuracyRatingPct = 5308, - - /// - /// map_players_extra_dodge_rolls - /// - MapPlayersExtraDodgeRolls = 5309, - - /// - /// extra_dodge_rolls - /// - ExtraDodgeRolls = 5310, - - /// - /// map_players_skill_area_of_effect_+%_final - /// - MapPlayersSkillAreaOfEffectPctFinal = 5311, - - /// - /// cannot_gain_frenzy_charges - /// - CannotGainFrenzyCharges = 5312, - - /// - /// cannot_gain_power_charges - /// - CannotGainPowerCharges = 5313, - - /// - /// map_players_cannot_gain_power_charges - /// - MapPlayersCannotGainPowerCharges = 5314, - - /// - /// map_players_cannot_gain_frenzy_charges - /// - MapPlayersCannotGainFrenzyCharges = 5315, - - /// - /// map_players_cannot_gain_endurance_charges - /// - MapPlayersCannotGainEnduranceCharges = 5316, - - /// - /// map_players_no_regeneration_including_es - /// - MapPlayersNoRegenerationIncludingEs = 5317, - - /// - /// map_player_life_and_es_recovery_speed_+%_final - /// - MapPlayerLifeAndEsRecoverySpeedPctFinal = 5318, - - /// - /// armour_+%_final - /// - ArmourPctFinal = 5319, - - /// - /// map_packs_are_abomination_monsters - /// - MapPacksAreAbominationMonsters = 5320, - - /// - /// gain_frenzy_charge_on_hitting_rare_or_unique_enemy_% - /// - GainFrenzyChargeOnHittingRareOrUniqueEnemyPct = 5321, - - /// - /// onslaught_duration_+% - /// - OnslaughtDurationPct = 5322, - - /// - /// curse_on_hit_level_10_vulnerability_% - /// - CurseOnHitLevel10VulnerabilityPct = 5323, - - /// - /// local_item_stats_are_doubled_in_breach - /// - LocalItemStatsAreDoubledInBreach = 5324, - - /// - /// cast_on_crit_% - /// - CastOnCritPct = 5325, - - /// - /// local_unique_jewel_cold_and_lightning_resistance_to_melee_damage - /// - LocalUniqueJewelColdAndLightningResistanceToMeleeDamage = 5326, - - /// - /// local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage - /// - LocalUniqueJewelFireAndLightningResistanceToProjectileAttackDamage = 5327, - - /// - /// local_unique_jewel_fire_and_cold_resistance_to_spell_damage - /// - LocalUniqueJewelFireAndColdResistanceToSpellDamage = 5328, - - /// - /// local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_% - /// - LocalUniqueJewelFireResistanceAlsoGrantsBlockChanceScaledPct = 5329, - - /// - /// local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_% - /// - LocalUniqueJewelColdResistanceAlsoGrantsDodgeChanceScaledPct = 5330, - - /// - /// local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_% - /// - LocalUniqueJewelLightningResistanceAlsoGrantsBlockSpellsChanceScaledPct = 5331, - - /// - /// local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance - /// - LocalUniqueJewelFireResistanceAlsoGrantsEnduranceChargeOnKillChance = 5332, - - /// - /// local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance - /// - LocalUniqueJewelColdResistanceAlsoGrantsFrenzyChargeOnKillChance = 5333, - - /// - /// local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance - /// - LocalUniqueJewelLightningResistanceAlsoGrantsPowerChargeOnKillChance = 5334, - - /// - /// cast_while_channelling_time_ms - /// - CastWhileChannellingTimeMs = 5335, - - /// - /// support_cast_while_channelling_triggered_skill_damage_+%_final - /// - SupportCastWhileChannellingTriggeredSkillDamagePctFinal = 5336, - - /// - /// number_of_spider_minions_allowed - /// - NumberOfSpiderMinionsAllowed = 5337, - - /// - /// number_of_active_spider_minions - /// - NumberOfActiveSpiderMinions = 5338, - - /// - /// local_display_raise_spider_on_kill_%_chance - /// - LocalDisplayRaiseSpiderOnKillPctChance = 5339, - - /// - /// local_display_cast_lightning_on_critical_strike - /// - LocalDisplayCastLightningOnCriticalStrike = 5340, - - /// - /// your_spells_are_disabled - /// - YourSpellsAreDisabled = 5341, - - /// - /// monster_ruleset_id - /// - MonsterRulesetId = 5342, - - /// - /// map_monsters_additional_elemental_resistance - /// - MapMonstersAdditionalElementalResistance = 5343, - - /// - /// support_minion_totem_resistance_elemental_damage_+%_final - /// - SupportMinionTotemResistanceElementalDamagePctFinal = 5344, - - /// - /// elemental_damage_+%_final_on_minion_from_resistance_support - /// - ElementalDamagePctFinalOnMinionFromResistanceSupport = 5345, - - /// - /// goat_footprints_from_item - /// - GoatFootprintsFromItem = 5346, - - /// - /// totem_ignores_cooldown - /// - TotemIgnoresCooldown = 5347, - - /// - /// totem_ignores_vaal_skill_cost - /// - TotemIgnoresVaalSkillCost = 5348, - - /// - /// attack_minimum_added_lightning_damage_per_10_int - /// - AttackMinimumAddedLightningDamagePer10Int = 5349, - - /// - /// attack_maximum_added_lightning_damage_per_10_int - /// - AttackMaximumAddedLightningDamagePer10Int = 5350, - - /// - /// fire_damage_+%_per_20_strength - /// - FireDamagePctPer20Strength = 5351, - - /// - /// mana_recharge_rate_per_minute_with_all_corrupted_equipped_items - /// - ManaRechargeRatePerMinuteWithAllCorruptedEquippedItems = 5352, - - /// - /// life_leech_permyriad_vs_poisoned_enemies - /// - LifeLeechPermyriadVsPoisonedEnemies = 5353, - - /// - /// minion_life_leech_permyriad_vs_poisoned_enemies - /// - MinionLifeLeechPermyriadVsPoisonedEnemies = 5354, - - /// - /// display_vaal_breach_no_drops_xp - /// - DisplayVaalBreachNoDropsXp = 5355, - - /// - /// golems_larger_aggro_radius - /// - GolemsLargerAggroRadius = 5356, - - /// - /// maximum_life_%_to_convert_to_maximum_energy_shield - /// - MaximumLifePctToConvertToMaximumEnergyShield = 5357, - - /// - /// display_abberaths_hooves_skill_level - /// - DisplayAbberathsHoovesSkillLevel = 5358, - - /// - /// cannot_be_used_as_minion - /// - CannotBeUsedAsMinion = 5359, - - /// - /// breach_map_time_to_portal_ms - /// - BreachMapTimeToPortalMs = 5360, - - /// - /// breach_map_initial_time_ms - /// - BreachMapInitialTimeMs = 5361, - - /// - /// breach_team_warp_buff_damage_taken_+% - /// - BreachTeamWarpBuffDamageTakenPct = 5362, - - /// - /// local_poison_on_hit_% - /// - LocalPoisonOnHitPct = 5363, - - /// - /// main_hand_local_poison_on_hit_% - /// - MainHandLocalPoisonOnHitPct = 5364, - - /// - /// off_hand_local_poison_on_hit_% - /// - OffHandLocalPoisonOnHitPct = 5365, - - /// - /// breach_team_warp_buff_movement_velocity_+% - /// - BreachTeamWarpBuffMovementVelocityPct = 5366, - - /// - /// breach_team_warp_buff_lightning_damage_+% - /// - BreachTeamWarpBuffLightningDamagePct = 5367, - - /// - /// base_blade_vortex_hit_rate_ms - /// - BaseBladeVortexHitRateMs = 5368, - - /// - /// blade_vortex_hit_rate_ms - /// - BladeVortexHitRateMs = 5369, - - /// - /// additional_maximum_all_resistances_%_with_no_endurance_charges - /// - AdditionalMaximumAllResistancesPctWithNoEnduranceCharges = 5370, - - /// - /// spell_damage_+%_while_shocked - /// - SpellDamagePctWhileShocked = 5371, - - /// - /// monster_beyond_portal_chance_+% - /// - MonsterBeyondPortalChancePct = 5372, - - /// - /// life_leech_uses_chaos_damage - /// - LifeLeechUsesChaosDamage = 5373, - - /// - /// base_cannot_gain_endurance_charges - /// - BaseCannotGainEnduranceCharges = 5374, - - /// - /// gain_onslaught_while_at_maximum_endurance_charges - /// - GainOnslaughtWhileAtMaximumEnduranceCharges = 5375, - - /// - /// number_of_zombies_allowed_+1_per_X_strength - /// - NumberOfZombiesAllowed1PerXStrength = 5376, - - /// - /// minions_gain_your_strength - /// - MinionsGainYourStrength = 5377, - - /// - /// avarius_cast_on_charge_contact - /// - AvariusCastOnChargeContact = 5378, - - /// - /// zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength - /// - ZombieDamageLeechedAsLifeToYouPermyriadIfOver1000Strength = 5379, - - /// - /// virtual_minion_additional_strength - /// - VirtualMinionAdditionalStrength = 5380, - - /// - /// virtual_zombie_damage_leeched_as_life_to_you_permyriad - /// - VirtualZombieDamageLeechedAsLifeToYouPermyriad = 5381, - - /// - /// base_bleed_duration_+% - /// - BaseBleedDurationPct = 5382, - - /// - /// item_found_rarity_+1%_per_X_rampage_stacks - /// - ItemFoundRarity1PctPerXRampageStacks = 5383, - - /// - /// is_channelling - /// - IsChannelling = 5384, - - /// - /// warcries_knock_back_enemies - /// - WarcriesKnockBackEnemies = 5385, - - /// - /// map_monsters_no_drops_or_experience - /// - MapMonstersNoDropsOrExperience = 5386, - - /// - /// off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating - /// - OffHandMinimumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5387, - - /// - /// off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating - /// - OffHandMaximumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5388, - - /// - /// off_hand_minimum_added_physical_damage_per_5_shield_armour - /// - OffHandMinimumAddedPhysicalDamagePer5ShieldArmour = 5389, - - /// - /// off_hand_maximum_added_physical_damage_per_5_shield_armour - /// - OffHandMaximumAddedPhysicalDamagePer5ShieldArmour = 5390, - - /// - /// off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating - /// - OffHandMinimumAddedPhysicalDamagePer5ShieldEvasionRating = 5391, - - /// - /// off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating - /// - OffHandMaximumAddedPhysicalDamagePer5ShieldEvasionRating = 5392, - - /// - /// gain_vaal_soul_on_hit_cooldown_ms - /// - GainVaalSoulOnHitCooldownMs = 5393, - - /// - /// unique_spells_triggered_on_shocked_kill - /// - UniqueSpellsTriggeredOnShockedKill = 5394, - - /// - /// maximum_life_per_2%_increased_item_found_rarity - /// - MaximumLifePer2PctIncreasedItemFoundRarity = 5395, - - /// - /// damage_+%_per_1%_increased_item_found_quantity - /// - DamagePctPer1PctIncreasedItemFoundQuantity = 5396, - - /// - /// item_found_quantity_+%_per_chest_opened_recently - /// - ItemFoundQuantityPctPerChestOpenedRecently = 5397, - - /// - /// number_of_chests_opened_recently - /// - NumberOfChestsOpenedRecently = 5398, - - /// - /// track_number_of_chests_opened_recently - /// - TrackNumberOfChestsOpenedRecently = 5399, - - /// - /// movement_speed_+%_per_chest_opened_recently - /// - MovementSpeedPctPerChestOpenedRecently = 5400, - - /// - /// immune_to_burning_shocks_and_chilled_ground - /// - ImmuneToBurningShocksAndChilledGround = 5401, - - /// - /// maximum_life_per_10_dexterity - /// - MaximumLifePer10Dexterity = 5402, - - /// - /// life_regeneration_per_minute_while_moving - /// - LifeRegenerationPerMinuteWhileMoving = 5403, - - /// - /// chest_number_of_additional_pirate_uniques_to_drop - /// - ChestNumberOfAdditionalPirateUniquesToDrop = 5404, - - /// - /// shrapnel_shot_number_of_additional_cones - /// - ShrapnelShotNumberOfAdditionalCones = 5405, - - /// - /// local_unique_jewel_shrapnel_shot_number_of_additional_cones_with_50_dex_in_radius - /// - LocalUniqueJewelShrapnelShotNumberOfAdditionalConesWith50DexInRadius = 5406, - - /// - /// burning_arrow_additional_ignite_stacks - /// - BurningArrowAdditionalIgniteStacks = 5407, - - /// - /// local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius - /// - LocalUniqueJewelBurningArrowAdditionalIgniteStacksWith50DexInRadius = 5408, - - /// - /// cleave_fortify_on_hit - /// - CleaveFortifyOnHit = 5409, - - /// - /// local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius - /// - LocalUniqueJewelCleaveFortifyOnHitWith50StrInRadius = 5410, - - /// - /// cleave_+1_base_radius_per_nearby_enemy_up_to_10 - /// - Cleave1BaseRadiusPerNearbyEnemyUpTo10 = 5411, - - /// - /// local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius - /// - LocalUniqueJewelCleave1BaseRadiusPerNearbyEnemyUpTo10With40StrInRadius = 5412, - - /// - /// freezing_pulse_number_of_additional_projectiles - /// - FreezingPulseNumberOfAdditionalProjectiles = 5413, - - /// - /// local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius - /// - LocalUniqueJewelFreezingPulseNumberOfAdditionalProjectilesWith50IntInRadius = 5414, - - /// - /// freezing_pulse_damage_+%_if_enemy_shattered_recently - /// - FreezingPulseDamagePctIfEnemyShatteredRecently = 5415, - - /// - /// local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius - /// - LocalUniqueJewelFreezingPulseDamagePctIfEnemyShatteredRecentlyWith50IntInRadius = 5416, - - /// - /// local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius - /// - LocalUniqueJewelIceShotExplosionSkillAreaOfEffectPctWith50DexInRadius = 5417, - - /// - /// ice_shot_damage_+%_to_chilled_enemies - /// - IceShotDamagePctToChilledEnemies = 5418, - - /// - /// local_unique_jewel_ice_shot_damage_+%_to_chilled_enemies_with_50_dex_in_radius - /// - LocalUniqueJewelIceShotDamagePctToChilledEnemiesWith50DexInRadius = 5419, - - /// - /// local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius - /// - LocalUniqueJewelMoltenStrikeNumberOfAdditionalProjectilesWith50StrInRadius = 5420, - - /// - /// local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius - /// - LocalUniqueJewelMoltenStrikeSkillAreaOfEffectPctWith50StrInRadius = 5421, - - /// - /// frost_blades_melee_cold_damage_+%_per_frenzy_charge - /// - FrostBladesMeleeColdDamagePctPerFrenzyCharge = 5422, - - /// - /// local_unique_jewel_frost_blades_melee_cold_damage_+%_per_frenzy_charge_with_50_dex_in_radius - /// - LocalUniqueJewelFrostBladesMeleeColdDamagePctPerFrenzyChargeWith50DexInRadius = 5423, - - /// - /// dual_strike_melee_splash_with_off_hand_weapon - /// - DualStrikeMeleeSplashWithOffHandWeapon = 5424, - - /// - /// local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius - /// - LocalUniqueJewelDualStrikeMeleeSplashWithOffHandWeaponWith50DexInRadius = 5425, - - /// - /// frostbolt_projectile_acceleration - /// - FrostboltProjectileAcceleration = 5426, - - /// - /// local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius - /// - LocalUniqueJewelFrostboltProjectileAccelerationWith50IntInRadius = 5427, - - /// - /// ethereal_knives_projectiles_nova - /// - EtherealKnivesProjectilesNova = 5428, - - /// - /// local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius - /// - LocalUniqueJewelEtherealKnivesProjectilesNovaWith50DexInRadius = 5429, - - /// - /// ethereal_knives_number_of_additional_projectiles - /// - EtherealKnivesNumberOfAdditionalProjectiles = 5430, - - /// - /// local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius - /// - LocalUniqueJewelEtherealKnivesNumberOfAdditionalProjectilesWith50DexInRadius = 5431, - - /// - /// ethereal_knives_projectile_speed_+%_per_frenzy_charge - /// - EtherealKnivesProjectileSpeedPctPerFrenzyCharge = 5432, - - /// - /// local_unique_jewel_ethereal_knives_projectile_speed_+%_per_frenzy_charge_with_50_dex_in_radius - /// - LocalUniqueJewelEtherealKnivesProjectileSpeedPctPerFrenzyChargeWith50DexInRadius = 5433, - - /// - /// ethereal_knives_grant_frenzy_charge_on_kill - /// - EtherealKnivesGrantFrenzyChargeOnKill = 5434, - - /// - /// local_unique_jewel_ethereal_knives_grant_frenzy_charge_on_kill_with_50_dex_in_radius - /// - LocalUniqueJewelEtherealKnivesGrantFrenzyChargeOnKillWith50DexInRadius = 5435, - - /// - /// lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit - /// - LightningTendrilsSkillAreaOfEffectPctPerEnemyHit = 5436, - - /// - /// local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius - /// - LocalUniqueJewelLightningTendrilsSkillAreaOfEffectPctPerEnemyHitWith50IntInRadius = 5437, - - /// - /// magma_orb_skill_area_of_effect_+%_per_bounce - /// - MagmaOrbSkillAreaOfEffectPctPerBounce = 5438, - - /// - /// local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius - /// - LocalUniqueJewelMagmaOrbSkillAreaOfEffectPctPerBounceWith50IntInRadius = 5439, - - /// - /// glacial_hammer_melee_splash_with_cold_damage - /// - GlacialHammerMeleeSplashWithColdDamage = 5440, - - /// - /// local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius - /// - LocalUniqueJewelGlacialHammerMeleeSplashWithColdDamageWith50StrInRadius = 5441, - - /// - /// glacial_hammer_physical_damage_%_to_convert_to_cold - /// - GlacialHammerPhysicalDamagePctToConvertToCold = 5442, - - /// - /// local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius - /// - LocalUniqueJewelGlacialHammerPhysicalDamagePctToConvertToColdWith50StrInRadius = 5443, - - /// - /// blight_skill_area_of_effect_+%_after_1_second_channelling - /// - BlightSkillAreaOfEffectPctAfter1SecondChannelling = 5444, - - /// - /// local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius - /// - LocalUniqueJewelBlightSkillAreaOfEffectPctAfter1SecondChannellingWith50IntInRadius = 5445, - - /// - /// fortify_on_hit - /// - FortifyOnHit = 5446, - - /// - /// melee_splash_cold_damage_only - /// - MeleeSplashColdDamageOnly = 5447, - - /// - /// track_have_shattered_recently - /// - TrackHaveShatteredRecently = 5448, - - /// - /// have_shattered_recently - /// - HaveShatteredRecently = 5449, - - /// - /// can_gain_vaal_souls_from_no_experience_monsters - /// - CanGainVaalSoulsFromNoExperienceMonsters = 5450, - - /// - /// maim_on_hit_% - /// - MaimOnHitPct = 5451, - - /// - /// total_skill_area_of_effect_radius_+%_including_final - /// - TotalSkillAreaOfEffectRadiusPctIncludingFinal = 5452, - - /// - /// melee_splash_off_hand_only - /// - MeleeSplashOffHandOnly = 5453, - - /// - /// classic_remaining_areas_to_apply_leaguestone - /// - ClassicRemainingAreasToApplyLeaguestone = 5454, - - /// - /// map_spawn_leaguestones - /// - MapSpawnLeaguestones = 5455, - - /// - /// monster_can_spawn_with_leaguestone - /// - MonsterCanSpawnWithLeaguestone = 5456, - - /// - /// monster_no_leaguestone - /// - MonsterNoLeaguestone = 5457, - - /// - /// local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius - /// - LocalUniqueJewelGalvanicArrowAreaDamagePctWith40DexInRadius = 5458, - - /// - /// galvanic_arrow_area_damage_+% - /// - GalvanicArrowAreaDamagePct = 5459, - - /// - /// local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius - /// - LocalUniqueJewelShrapnelShotRadiusPctWith50DexInRadius = 5460, - - /// - /// endurance_charge_on_kill_percent_chance_while_holding_shield - /// - EnduranceChargeOnKillPercentChanceWhileHoldingShield = 5461, - - /// - /// frenzy_charge_on_kill_percent_chance_while_holding_shield - /// - FrenzyChargeOnKillPercentChanceWhileHoldingShield = 5462, - - /// - /// power_charge_on_kill_percent_chance_while_holding_shield - /// - PowerChargeOnKillPercentChanceWhileHoldingShield = 5463, - - /// - /// block_chance_%_while_holding_shield - /// - BlockChancePctWhileHoldingShield = 5464, - - /// - /// dodge_chance_%_while_holding_shield - /// - DodgeChancePctWhileHoldingShield = 5465, - - /// - /// block_spells_chance_%_while_holding_shield - /// - BlockSpellsChancePctWhileHoldingShield = 5466, - - /// - /// local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type - /// - LocalUniqueFlaskElementalDamageTakenPctOfLowestUncappedResistanceType = 5467, - - /// - /// local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type - /// - LocalUniqueFlaskElementalPenetrationPctOfHighestUncappedResistanceType = 5468, - - /// - /// elemental_damage_taken_+%_of_lowest_uncapped_resistance_type - /// - ElementalDamageTakenPctOfLowestUncappedResistanceType = 5469, - - /// - /// elemental_penetration_%_of_highest_uncapped_resistance_type - /// - ElementalPenetrationPctOfHighestUncappedResistanceType = 5470, - - /// - /// virtual_fire_damage_taken_+%_from_lowest_uncapped_resistance_type - /// - VirtualFireDamageTakenPctFromLowestUncappedResistanceType = 5471, - - /// - /// virtual_cold_damage_taken_+%_from_lowest_uncapped_resistance_type - /// - VirtualColdDamageTakenPctFromLowestUncappedResistanceType = 5472, - - /// - /// virtual_lightning_damage_taken_+%_from_lowest_uncapped_resistance_type - /// - VirtualLightningDamageTakenPctFromLowestUncappedResistanceType = 5473, - - /// - /// virtual_fire_penetration_%_from_highest_uncapped_resistance_type - /// - VirtualFirePenetrationPctFromHighestUncappedResistanceType = 5474, - - /// - /// virtual_cold_penetration_%_from_highest_uncapped_resistance_type - /// - VirtualColdPenetrationPctFromHighestUncappedResistanceType = 5475, - - /// - /// virtual_lightning_penetration_%_from_highest_uncapped_resistance_type - /// - VirtualLightningPenetrationPctFromHighestUncappedResistanceType = 5476, - - /// - /// start_at_zero_energy_shield - /// - StartAtZeroEnergyShield = 5477, - - /// - /// map_number_of_additional_silver_coin_drops - /// - MapNumberOfAdditionalSilverCoinDrops = 5478, - - /// - /// map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins - /// - MapMonstersThatDropSilverCoinDropXAdditionalSilverCoins = 5479, - - /// - /// map_item_quantity_from_monsters_that_drop_silver_coin_+% - /// - MapItemQuantityFromMonstersThatDropSilverCoinPct = 5480, - - /// - /// local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius - /// - LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith50IntInRadius = 5481, - - /// - /// spark_num_of_additional_projectiles_in_chain - /// - SparkNumOfAdditionalProjectilesInChain = 5482, - - /// - /// local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius - /// - LocalUniqueJewelSparkNumberOfAdditionalChainsWith50IntInRadius = 5483, - - /// - /// monster_slam_cooldown_speed_+% - /// - MonsterSlamCooldownSpeedPct = 5484, - - /// - /// zombie_slam_cooldown_speed_+% - /// - ZombieSlamCooldownSpeedPct = 5485, - - /// - /// local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius - /// - LocalUniqueJewelZombieSlamCooldownSpeedPctWith50IntInRadius = 5486, - - /// - /// monster_slam_damage_+% - /// - MonsterSlamDamagePct = 5487, - - /// - /// zombie_slam_damage_+% - /// - ZombieSlamDamagePct = 5488, - - /// - /// local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius - /// - LocalUniqueJewelZombieSlamDamagePctWith50IntInRadius = 5489, - - /// - /// map_leaguestone_override_base_num_rogue_exiles - /// - MapLeaguestoneOverrideBaseNumRogueExiles = 5490, - - /// - /// map_rogue_exiles_are_doubled - /// - MapRogueExilesAreDoubled = 5491, - - /// - /// map_rogue_exile_drop_skill_gem_with_quality - /// - MapRogueExileDropSkillGemWithQuality = 5492, - - /// - /// map_rogue_exile_attack_cast_and_movement_speed_+% - /// - MapRogueExileAttackCastAndMovementSpeedPct = 5493, - - /// - /// map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final - /// - MapLeaguestoneRogueExilesDroppedItemRarityPctFinal = 5494, - - /// - /// monster_drop_skill_gem_with_quality - /// - MonsterDropSkillGemWithQuality = 5495, - - /// - /// map_leaguestone_override_base_num_breaches - /// - MapLeaguestoneOverrideBaseNumBreaches = 5496, - - /// - /// map_contains_additional_breaches - /// - MapContainsAdditionalBreaches = 5497, - - /// - /// map_rare_breach_monsters_drop_additional_shards - /// - MapRareBreachMonstersDropAdditionalShards = 5498, - - /// - /// map_breach_has_boss - /// - MapBreachHasBoss = 5499, - - /// - /// map_breach_has_large_chest - /// - MapBreachHasLargeChest = 5500, - - /// - /// map_breach_monster_quantity_+% - /// - MapBreachMonsterQuantityPct = 5501, - - /// - /// map_leaguestone_override_base_num_monoliths - /// - MapLeaguestoneOverrideBaseNumMonoliths = 5502, - - /// - /// map_essence_monsters_have_additional_essences - /// - MapEssenceMonstersHaveAdditionalEssences = 5503, - - /// - /// map_essence_monsters_are_corrupted - /// - MapEssenceMonstersAreCorrupted = 5504, - - /// - /// map_essence_monsters_higher_tier - /// - MapEssenceMonstersHigherTier = 5505, - - /// - /// fire_beam_rotation_speed_+% - /// - FireBeamRotationSpeedPct = 5506, - - /// - /// fire_beam_charge_up_time_ms - /// - FireBeamChargeUpTimeMs = 5507, - - /// - /// map_leaguestone_override_base_num_talismans - /// - MapLeaguestoneOverrideBaseNumTalismans = 5508, - - /// - /// map_talismans_higher_tier - /// - MapTalismansHigherTier = 5509, - - /// - /// map_talismans_dropped_as_rare - /// - MapTalismansDroppedAsRare = 5510, - - /// - /// map_contains_talisman_boss_with_higher_tier - /// - MapContainsTalismanBossWithHigherTier = 5511, - - /// - /// virtual_fire_damage_taken_+% - /// - VirtualFireDamageTakenPct = 5512, - - /// - /// virtual_chaos_damage_taken_+% - /// - VirtualChaosDamageTakenPct = 5513, - - /// - /// virtual_lightning_damage_taken_+% - /// - VirtualLightningDamageTakenPct = 5514, - - /// - /// virtual_cold_damage_taken_+% - /// - VirtualColdDamageTakenPct = 5515, - - /// - /// local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun - /// - LocalDisplaySocketedGemsSupportedByLevelXEnduranceChargeOnStun = 5516, - - /// - /// number_of_generic_limited_minions_allowed - /// - NumberOfGenericLimitedMinionsAllowed = 5517, - - /// - /// number_of_active_generic_limited_minions - /// - NumberOfActiveGenericLimitedMinions = 5518, - - /// - /// local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius - /// - LocalUniqueJewelViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemyWith50DexInRadius = 5519, - - /// - /// local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius - /// - LocalUniqueJewelGroundSlamChanceToGainEnduranceChargePctOnStunWith50StrInRadius = 5520, - - /// - /// viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy - /// - ViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemy = 5521, - - /// - /// ground_slam_chance_to_gain_endurance_charge_%_on_stun - /// - GroundSlamChanceToGainEnduranceChargePctOnStun = 5522, - - /// - /// classic_next_area_contains_talisman - /// - ClassicNextAreaContainsTalisman = 5523, - - /// - /// classic_next_area_contains_anarchy - /// - ClassicNextAreaContainsAnarchy = 5524, - - /// - /// map_area_contains_avatar_of_prophecy - /// - MapAreaContainsAvatarOfProphecy = 5525, - - /// - /// map_area_contains_avatar_of_breach - /// - MapAreaContainsAvatarOfBreach = 5526, - - /// - /// map_area_contains_avatar_of_essence - /// - MapAreaContainsAvatarOfEssence = 5527, - - /// - /// map_area_contains_avatar_of_perandus - /// - MapAreaContainsAvatarOfPerandus = 5528, - - /// - /// map_area_contains_avatar_of_anarchy - /// - MapAreaContainsAvatarOfAnarchy = 5529, - - /// - /// map_area_contains_avatar_of_talisman - /// - MapAreaContainsAvatarOfTalisman = 5530, - - /// - /// map_area_contains_avatar_of_tempest - /// - MapAreaContainsAvatarOfTempest = 5531, - - /// - /// map_random_area_prophecy - /// - MapRandomAreaProphecy = 5532, - - /// - /// map_contains_nevalis_monkey - /// - MapContainsNevalisMonkey = 5533, - - /// - /// armour_+%_while_no_energy_shield - /// - ArmourPctWhileNoEnergyShield = 5534, - - /// - /// life_leech_from_attack_damage_permyriad_vs_taunted_enemies - /// - LifeLeechFromAttackDamagePermyriadVsTauntedEnemies = 5535, - - /// - /// random_curse_on_hit_%_against_uncursed_enemies - /// - RandomCurseOnHitPctAgainstUncursedEnemies = 5536, - - /// - /// mana_leech_from_attack_damage_permyriad_per_power_charge - /// - ManaLeechFromAttackDamagePermyriadPerPowerCharge = 5537, - - /// - /// virtual_life_leech_from_attack_damage_permyriad - /// - VirtualLifeLeechFromAttackDamagePermyriad = 5538, - - /// - /// virtual_mana_leech_from_attack_damage_permyriad - /// - VirtualManaLeechFromAttackDamagePermyriad = 5539, - - /// - /// gain_X_life_on_stun - /// - GainXLifeOnStun = 5540, - - /// - /// blood_offering_%_of_life_to_lose - /// - BloodOfferingPctOfLifeToLose = 5541, - - /// - /// blood_offering_%_of_lost_life_to_regenerate_as_life_per_second - /// - BloodOfferingPctOfLostLifeToRegenerateAsLifePerSecond = 5542, - - /// - /// blood_offering_life_regenerated_+%_final_per_corpse - /// - BloodOfferingLifeRegeneratedPctFinalPerCorpse = 5543, - - /// - /// damage_+%_vs_chilled_enemies - /// - DamagePctVsChilledEnemies = 5544, - - /// - /// additional_block_%_while_on_consecrated_ground - /// - AdditionalBlockPctWhileOnConsecratedGround = 5545, - - /// - /// warcry_buff_effect_+% - /// - WarcryBuffEffectPct = 5546, - - /// - /// spell_and_attack_minimum_added_fire_damage - /// - SpellAndAttackMinimumAddedFireDamage = 5547, - - /// - /// spell_and_attack_maximum_added_fire_damage - /// - SpellAndAttackMaximumAddedFireDamage = 5548, - - /// - /// resist_all_elements_%_with_200_or_more_strength - /// - ResistAllElementsPctWith200OrMoreStrength = 5549, - - /// - /// spell_block_%_if_blocked_an_attack_recently - /// - SpellBlockPctIfBlockedAnAttackRecently = 5550, - - /// - /// track_have_blocked_spell_recently - /// - TrackHaveBlockedSpellRecently = 5551, - - /// - /// have_blocked_spell_recently - /// - HaveBlockedSpellRecently = 5552, - - /// - /// attack_block_%_if_blocked_a_spell_recently - /// - AttackBlockPctIfBlockedASpellRecently = 5553, - - /// - /// life_regeneration_rate_per_minute_%_if_have_been_hit_recently - /// - LifeRegenerationRatePerMinutePctIfHaveBeenHitRecently = 5554, - - /// - /// life_regeneration_rate_per_minute_%_with_400_or_more_strength - /// - LifeRegenerationRatePerMinutePctWith400OrMoreStrength = 5555, - - /// - /// ground_tar_when_hit_%_chance - /// - GroundTarWhenHitPctChance = 5556, - - /// - /// spell_and_attack_minimum_added_chaos_damage_during_flask_effect - /// - SpellAndAttackMinimumAddedChaosDamageDuringFlaskEffect = 5557, - - /// - /// spell_and_attack_maximum_added_chaos_damage_during_flask_effect - /// - SpellAndAttackMaximumAddedChaosDamageDuringFlaskEffect = 5558, - - /// - /// fire_damage_+%_if_you_have_been_hit_recently - /// - FireDamagePctIfYouHaveBeenHitRecently = 5559, - - /// - /// immune_to_freeze_and_chill_while_ignited - /// - ImmuneToFreezeAndChillWhileIgnited = 5560, - - /// - /// fire_penetration_%_if_you_have_blocked_recently - /// - FirePenetrationPctIfYouHaveBlockedRecently = 5561, - - /// - /// local_display_grants_level_X_vengeance - /// - LocalDisplayGrantsLevelXVengeance = 5562, - - /// - /// gain_X_power_charges_on_using_a_warcry - /// - GainXPowerChargesOnUsingAWarcry = 5563, - - /// - /// gain_onslaught_ms_on_using_a_warcry - /// - GainOnslaughtMsOnUsingAWarcry = 5564, - - /// - /// local_display_socketed_golem_buff_effect_+% - /// - LocalDisplaySocketedGolemBuffEffectPct = 5565, - - /// - /// local_display_socketed_golem_chance_to_taunt_% - /// - LocalDisplaySocketedGolemChanceToTauntPct = 5566, - - /// - /// local_display_socketed_golem_life_regeneration_rate_per_minute_% - /// - LocalDisplaySocketedGolemLifeRegenerationRatePerMinutePct = 5567, - - /// - /// minimum_added_cold_damage_vs_chilled_enemies - /// - MinimumAddedColdDamageVsChilledEnemies = 5568, - - /// - /// maximum_added_cold_damage_vs_chilled_enemies - /// - MaximumAddedColdDamageVsChilledEnemies = 5569, - - /// - /// map_area_contains_avatar_of_rampage - /// - MapAreaContainsAvatarOfRampage = 5570, - - /// - /// map_area_contains_avatar_of_beyond - /// - MapAreaContainsAvatarOfBeyond = 5571, - - /// - /// map_area_contains_avatar_of_onslaught - /// - MapAreaContainsAvatarOfOnslaught = 5572, - - /// - /// map_area_contains_avatar_of_ambush - /// - MapAreaContainsAvatarOfAmbush = 5573, - - /// - /// map_area_contains_avatar_of_bloodlines - /// - MapAreaContainsAvatarOfBloodlines = 5574, - - /// - /// map_area_contains_avatar_of_nemesis - /// - MapAreaContainsAvatarOfNemesis = 5575, - - /// - /// map_area_contains_avatar_of_torment - /// - MapAreaContainsAvatarOfTorment = 5576, - - /// - /// map_area_contains_avatar_of_domination - /// - MapAreaContainsAvatarOfDomination = 5577, - - /// - /// map_area_contains_avatar_of_invasion - /// - MapAreaContainsAvatarOfInvasion = 5578, - - /// - /// map_area_contains_avatar_of_warbands - /// - MapAreaContainsAvatarOfWarbands = 5579, - - /// - /// avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently - /// - AvoidFreezeAndChillPctIfYouHaveUsedAFireSkillRecently = 5580, - - /// - /// track_have_used_a_fire_skill_recently - /// - TrackHaveUsedAFireSkillRecently = 5581, - - /// - /// have_used_a_fire_skill_recently - /// - HaveUsedAFireSkillRecently = 5582, - - /// - /// avoid_shock_%_while_chilled - /// - AvoidShockPctWhileChilled = 5583, - - /// - /// local_display_nearby_enemies_are_intimidated - /// - LocalDisplayNearbyEnemiesAreIntimidated = 5584, - - /// - /// chance_to_shock_chilled_enemies_% - /// - ChanceToShockChilledEnemiesPct = 5585, - - /// - /// map_area_contains_map_chest - /// - MapAreaContainsMapChest = 5586, - - /// - /// map_area_contains_unique_item_chest - /// - MapAreaContainsUniqueItemChest = 5587, - - /// - /// map_area_contains_currency_chest - /// - MapAreaContainsCurrencyChest = 5588, - - /// - /// map_area_contains_perandus_coin_chest - /// - MapAreaContainsPerandusCoinChest = 5589, - - /// - /// map_area_contains_jewellery_chest - /// - MapAreaContainsJewelleryChest = 5590, - - /// - /// perandus_double_number_of_coins_found - /// - PerandusDoubleNumberOfCoinsFound = 5591, - - /// - /// local_chill_on_hit_ms_if_in_off_hand - /// - LocalChillOnHitMsIfInOffHand = 5592, - - /// - /// off_hand_local_chill_on_hit_ms - /// - OffHandLocalChillOnHitMs = 5593, - - /// - /// movement_speed_+%_on_throwing_trap - /// - MovementSpeedPctOnThrowingTrap = 5594, - - /// - /// herald_of_thunder_buff_effect_+% - /// - HeraldOfThunderBuffEffectPct = 5595, - - /// - /// local_display_movement_speed_+%_for_you_and_nearby_allies - /// - LocalDisplayMovementSpeedPctForYouAndNearbyAllies = 5596, - - /// - /// curse_on_hit_level_flammability - /// - CurseOnHitLevelFlammability = 5597, - - /// - /// phasing_on_trap_triggered_by_an_enemy_ms - /// - PhasingOnTrapTriggeredByAnEnemyMs = 5598, - - /// - /// global_attack_speed_+%_per_level - /// - GlobalAttackSpeedPctPerLevel = 5599, - - /// - /// physical_damage_+%_final_for_minion - /// - PhysicalDamagePctFinalForMinion = 5600, - - /// - /// zombie_physical_damage_+%_final - /// - ZombiePhysicalDamagePctFinal = 5601, - - /// - /// ground_tar_when_hit_base_area_of_effect_radius - /// - GroundTarWhenHitBaseAreaOfEffectRadius = 5602, - - /// - /// ground_tar_when_hit_duration_ms - /// - GroundTarWhenHitDurationMs = 5603, - - /// - /// ground_tar_when_hit_movement_speed_+% - /// - GroundTarWhenHitMovementSpeedPct = 5604, - - /// - /// chance_to_gain_unholy_might_on_block_ms - /// - ChanceToGainUnholyMightOnBlockMs = 5605, - - /// - /// old_dagger_implicit_critical_strike_chance_+30% - /// - OldDaggerImplicitCriticalStrikeChance30Pct = 5606, - - /// - /// old_dagger_implicit_critical_strike_chance_+40% - /// - OldDaggerImplicitCriticalStrikeChance40Pct = 5607, - - /// - /// old_dagger_implicit_critical_strike_chance_+50% - /// - OldDaggerImplicitCriticalStrikeChance50Pct = 5608, - - /// - /// old_dagger_implicit_critical_strike_chance_+30%_from_main_hand - /// - OldDaggerImplicitCriticalStrikeChance30PctFromMainHand = 5609, - - /// - /// old_dagger_implicit_critical_strike_chance_+40%_from_main_hand - /// - OldDaggerImplicitCriticalStrikeChance40PctFromMainHand = 5610, - - /// - /// old_dagger_implicit_critical_strike_chance_+50%_from_main_hand - /// - OldDaggerImplicitCriticalStrikeChance50PctFromMainHand = 5611, - - /// - /// old_dagger_implicit_critical_strike_chance_+30%_from_off_hand - /// - OldDaggerImplicitCriticalStrikeChance30PctFromOffHand = 5612, - - /// - /// old_dagger_implicit_critical_strike_chance_+40%_from_off_hand - /// - OldDaggerImplicitCriticalStrikeChance40PctFromOffHand = 5613, - - /// - /// old_dagger_implicit_critical_strike_chance_+50%_from_off_hand - /// - OldDaggerImplicitCriticalStrikeChance50PctFromOffHand = 5614, - - /// - /// has_defender_conditional_damage_stats - /// - HasDefenderConditionalDamageStats = 5615, - - /// - /// area_transition_animation_index - /// - AreaTransitionAnimationIndex = 5616, - - /// - /// map_leaguestone_override_base_num_tormented_spirits - /// - MapLeaguestoneOverrideBaseNumTormentedSpirits = 5617, - - /// - /// map_leaguestone_additional_tormented_spirits - /// - MapLeaguestoneAdditionalTormentedSpirits = 5618, - - /// - /// map_random_unique_monster_is_possessed - /// - MapRandomUniqueMonsterIsPossessed = 5619, - - /// - /// map_tormented_spirits_drop_x_additional_rare_items - /// - MapTormentedSpiritsDropXAdditionalRareItems = 5620, - - /// - /// map_area_contains_tormented_vaal_cultist - /// - MapAreaContainsTormentedVaalCultist = 5621, - - /// - /// map_area_contains_tormented_seditionist - /// - MapAreaContainsTormentedSeditionist = 5622, - - /// - /// map_area_contains_tormented_embezzler - /// - MapAreaContainsTormentedEmbezzler = 5623, - - /// - /// map_leaguestone_override_base_num_perandus_chests - /// - MapLeaguestoneOverrideBaseNumPerandusChests = 5624, - - /// - /// display_monster_uses_vaal_burning_arrow - /// - DisplayMonsterUsesVaalBurningArrow = 5625, - - /// - /// remove_parent_life_on_death_permyriad - /// - RemoveParentLifeOnDeathPermyriad = 5626, - - /// - /// curse_on_hit_level_projectile_weakness - /// - CurseOnHitLevelProjectileWeakness = 5627, - - /// - /// local_left_ring_slot_maximum_mana - /// - LocalLeftRingSlotMaximumMana = 5628, - - /// - /// local_right_ring_slot_energy_shield - /// - LocalRightRingSlotEnergyShield = 5629, - - /// - /// map_leaguestone_additional_breaches - /// - MapLeaguestoneAdditionalBreaches = 5630, - - /// - /// map_leaguestone_additional_monoliths - /// - MapLeaguestoneAdditionalMonoliths = 5631, - - /// - /// map_leaguestone_additional_talismans - /// - MapLeaguestoneAdditionalTalismans = 5632, - - /// - /// map_leaguestone_additional_rogue_exiles - /// - MapLeaguestoneAdditionalRogueExiles = 5633, - - /// - /// map_leaguestone_additional_perandus_chests - /// - MapLeaguestoneAdditionalPerandusChests = 5634, - - /// - /// local_left_ring_slot_mana_regeneration_rate_per_minute - /// - LocalLeftRingSlotManaRegenerationRatePerMinute = 5635, - - /// - /// local_right_ring_slot_maximum_mana - /// - LocalRightRingSlotMaximumMana = 5636, - - /// - /// local_left_ring_slot_energy_shield - /// - LocalLeftRingSlotEnergyShield = 5637, - - /// - /// local_display_cast_level_X_consecrate_on_crit - /// - LocalDisplayCastLevelXConsecrateOnCrit = 5638, - - /// - /// is_tormented_spirit - /// - IsTormentedSpirit = 5639, - - /// - /// shavronne_teleport_number_of_markers - /// - ShavronneTeleportNumberOfMarkers = 5640, - - /// - /// map_packs_are_spiders - /// - MapPacksAreSpiders = 5641, - - /// - /// map_packs_are_blackguards - /// - MapPacksAreBlackguards = 5642, - - /// - /// local_display_cast_level_1_summon_lesser_shrine_on_kill_% - /// - LocalDisplayCastLevel1SummonLesserShrineOnKillPct = 5643, - - /// - /// shavronne_teleport_no_teleport - /// - ShavronneTeleportNoTeleport = 5644, - - /// - /// debug_projectile_index_override - /// - DebugProjectileIndexOverride = 5645, - - /// - /// ground_slam_retarget_after_contact_point - /// - GroundSlamRetargetAfterContactPoint = 5646, - - /// - /// map_leaguestone_override_base_num_warband_packs - /// - MapLeaguestoneOverrideBaseNumWarbandPacks = 5647, - - /// - /// map_leaguestone_additional_warband_packs - /// - MapLeaguestoneAdditionalWarbandPacks = 5648, - - /// - /// map_leaguestone_explicit_warband_type_override - /// - MapLeaguestoneExplicitWarbandTypeOverride = 5649, - - /// - /// map_leaguestone_contains_warband_leader - /// - MapLeaguestoneContainsWarbandLeader = 5650, - - /// - /// map_leaguestone_override_base_num_shrines - /// - MapLeaguestoneOverrideBaseNumShrines = 5651, - - /// - /// map_leaguestone_shrine_monster_rarity_override - /// - MapLeaguestoneShrineMonsterRarityOverride = 5652, - - /// - /// map_leaguestone_shrine_override_type - /// - MapLeaguestoneShrineOverrideType = 5653, - - /// - /// map_rampage_time_+% - /// - MapRampageTimePct = 5654, - - /// - /// map_contains_x_additional_animated_weapon_packs - /// - MapContainsXAdditionalAnimatedWeaponPacks = 5655, - - /// - /// map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks - /// - MapLeaguestonesCurrencyItemsDropWhenFirstReachingXRampageStacks = 5656, - - /// - /// map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks - /// - MapLeaguestonesSpawnPowerfulMonsterWhenReachingXRampageStacks = 5657, - - /// - /// map_contains_keepers_of_the_trove_bloodline_pack - /// - MapContainsKeepersOfTheTroveBloodlinePack = 5658, - - /// - /// map_contains_wealthy_pack - /// - MapContainsWealthyPack = 5659, - - /// - /// map_leaguestone_implicit_tempest_random - /// - MapLeaguestoneImplicitTempestRandom = 5660, - - /// - /// map_leaguestone_explicit_tempest_type_override - /// - MapLeaguestoneExplicitTempestTypeOverride = 5661, - - /// - /// local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius - /// - LocalUniqueJewelFrostboltAdditionalProjectilesWith40IntInRadius = 5662, - - /// - /// frostbolt_number_of_additional_projectiles - /// - FrostboltNumberOfAdditionalProjectiles = 5663, - - /// - /// skill_area_of_effect_+%_final - /// - SkillAreaOfEffectPctFinal = 5664, - - /// - /// total_skill_area_of_effect_+%_including_final - /// - TotalSkillAreaOfEffectPctIncludingFinal = 5665, - - /// - /// local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius - /// - LocalUniqueJewelMagmaOrbAdditionalProjectilesWith40IntInRadius = 5666, - - /// - /// magma_orb_number_of_additional_projectiles - /// - MagmaOrbNumberOfAdditionalProjectiles = 5667, - - /// - /// curse_on_hit_level_cold_weakness - /// - CurseOnHitLevelColdWeakness = 5668, - - /// - /// elemental_damage_+%_if_used_a_warcry_recently - /// - ElementalDamagePctIfUsedAWarcryRecently = 5669, - - /// - /// local_display_socketed_golem_attack_and_cast_speed_+% - /// - LocalDisplaySocketedGolemAttackAndCastSpeedPct = 5670, - - /// - /// local_display_cast_animate_weapon_on_kill_%_chance - /// - LocalDisplayCastAnimateWeaponOnKillPctChance = 5671, - - /// - /// gain_onslaught_ms_on_skill_use - /// - GainOnslaughtMsOnSkillUse = 5672, - - /// - /// local_display_socketed_golem_skill_grants_onslaught_when_summoned - /// - LocalDisplaySocketedGolemSkillGrantsOnslaughtWhenSummoned = 5673, - - /// - /// has_unholy_might - /// - HasUnholyMight = 5674, - - /// - /// chest_drop_reliquary_items - /// - ChestDropReliquaryItems = 5675, - - /// - /// deal_no_skill_dot_damage_over_time - /// - DealNoSkillDotDamageOverTime = 5676, - - /// - /// combined_all_projectile_damage_+% - /// - CombinedAllProjectileDamagePct = 5677, - - /// - /// combined_all_projectile_damage_+%_final - /// - CombinedAllProjectileDamagePctFinal = 5678, - - /// - /// combined_all_area_damage_+% - /// - CombinedAllAreaDamagePct = 5679, - - /// - /// combined_all_area_damage_+%_final - /// - CombinedAllAreaDamagePctFinal = 5680, - - /// - /// combined_all_added_damage_+%_final - /// - CombinedAllAddedDamagePctFinal = 5681, - - /// - /// combined_hit_all_damage_+% - /// - CombinedHitAllDamagePct = 5682, - - /// - /// combined_skill_dot_all_damage_over_time_+% - /// - CombinedSkillDotAllDamageOverTimePct = 5683, - - /// - /// combined_skill_dot_all_damage_over_time_+%_final - /// - CombinedSkillDotAllDamageOverTimePctFinal = 5684, - - /// - /// projectile_damage_modifiers_apply_to_skill_dot - /// - ProjectileDamageModifiersApplyToSkillDot = 5685, - - /// - /// fire_beam_max_rotation_speed_+% - /// - FireBeamMaxRotationSpeedPct = 5686, - - /// - /// map_player_onslaught_on_kill_% - /// - MapPlayerOnslaughtOnKillPct = 5687, - - /// - /// map_monster_attack_cast_and_movement_speed_+% - /// - MapMonsterAttackCastAndMovementSpeedPct = 5688, - - /// - /// map_rare_monsters_drop_x_additional_rare_items - /// - MapRareMonstersDropXAdditionalRareItems = 5689, - - /// - /// map_area_contains_x_rare_monsters_with_inner_treasure - /// - MapAreaContainsXRareMonstersWithInnerTreasure = 5690, - - /// - /// map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final - /// - MapLeaguestoneInvasionBossItemQuantityAndRarityPctFinal = 5691, - - /// - /// map_first_invasion_boss_killed_drops_x_additional_currency - /// - MapFirstInvasionBossKilledDropsXAdditionalCurrency = 5692, - - /// - /// map_invasion_monsters_guarded_by_x_magic_packs - /// - MapInvasionMonstersGuardedByXMagicPacks = 5693, - - /// - /// map_leaguestone_override_base_num_strongboxes - /// - MapLeaguestoneOverrideBaseNumStrongboxes = 5694, - - /// - /// map_leaguestone_additional_strongboxes - /// - MapLeaguestoneAdditionalStrongboxes = 5695, - - /// - /// map_first_strongbox_contains_x_additional_rare_monsters - /// - MapFirstStrongboxContainsXAdditionalRareMonsters = 5696, - - /// - /// map_area_contains_gemcutters_strongbox - /// - MapAreaContainsGemcuttersStrongbox = 5697, - - /// - /// map_area_contains_cartographers_strongbox - /// - MapAreaContainsCartographersStrongbox = 5698, - - /// - /// map_area_contains_unique_strongbox - /// - MapAreaContainsUniqueStrongbox = 5699, - - /// - /// map_area_contains_arcanists_strongbox - /// - MapAreaContainsArcanistsStrongbox = 5700, - - /// - /// map_strongboxes_drop_x_additional_rare_items - /// - MapStrongboxesDropXAdditionalRareItems = 5701, - - /// - /// map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final - /// - MapLeaguestoneBeyondMonsterItemQuantityAndRarityPctFinal = 5702, - - /// - /// map_first_unique_beyond_boss_slain_drops_x_beyond_uniques - /// - MapFirstUniqueBeyondBossSlainDropsXBeyondUniques = 5703, - - /// - /// map_leaguestone_x_monsters_spawn_random_beyond_boss - /// - MapLeaguestoneXMonstersSpawnRandomBeyondBoss = 5704, - - /// - /// map_leaguestone_x_monsters_spawn_abaxoth - /// - MapLeaguestoneXMonstersSpawnAbaxoth = 5705, - - /// - /// map_item_found_rarity_+%_per_15_rampage_stacks - /// - MapItemFoundRarityPctPer15RampageStacks = 5706, - - /// - /// item_found_rarity_+%_per_15_rampage_stacks - /// - ItemFoundRarityPctPer15RampageStacks = 5707, - - /// - /// leaguestone_spawn_beyond_monster_on_death_index - /// - LeaguestoneSpawnBeyondMonsterOnDeathIndex = 5708, - - /// - /// map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+% - /// - MapContainsThreeMagicPacksWithAttackCastAndMovementSpeedPct = 5709, - - /// - /// map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final - /// - MapContainsThreeMagicPacksWithItemQuantityOfDroppedItemsPctFinal = 5710, - - /// - /// leaguestone_maximum_area_level - /// - LeaguestoneMaximumAreaLevel = 5711, - - /// - /// attack_minimum_added_physical_damage_per_level - /// - AttackMinimumAddedPhysicalDamagePerLevel = 5712, - - /// - /// attack_maximum_added_physical_damage_per_level - /// - AttackMaximumAddedPhysicalDamagePerLevel = 5713, - - /// - /// attack_minimum_added_fire_damage_per_10_strength - /// - AttackMinimumAddedFireDamagePer10Strength = 5714, - - /// - /// attack_maximum_added_fire_damage_per_10_strength - /// - AttackMaximumAddedFireDamagePer10Strength = 5715, - - /// - /// unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final - /// - UniqueRyuslathasClutchesMinimumPhysicalAttackDamagePctFinal = 5716, - - /// - /// unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final - /// - UniqueRyuslathasClutchesMaximumPhysicalAttackDamagePctFinal = 5717, - - /// - /// is_intimidated - /// - IsIntimidated = 5718, - - /// - /// local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius - /// - LocalUniqueJewelFrostBladesMeleeDamagePenetratesPctColdResistanceWith40DexInRadius = 5719, - - /// - /// frost_blades_melee_damage_penetrates_%_cold_resistance - /// - FrostBladesMeleeDamagePenetratesPctColdResistance = 5720, - - /// - /// melee_damage_penetrates_%_cold_resistance - /// - MeleeDamagePenetratesPctColdResistance = 5721, - - /// - /// local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield - /// - LocalDisplaySocketedGolemSkillsMinionsLifePctToAddAsEnergyShield = 5722, - - /// - /// mana_leech_permyriad_vs_frozen_enemies - /// - ManaLeechPermyriadVsFrozenEnemies = 5723, - - /// - /// map_mini_monolith_monsters_are_magic - /// - MapMiniMonolithMonstersAreMagic = 5724, - - /// - /// map_shrines_grant_a_random_additional_effect - /// - MapShrinesGrantARandomAdditionalEffect = 5725, - - /// - /// map_shrines_drop_x_currency_items_on_activation - /// - MapShrinesDropXCurrencyItemsOnActivation = 5726, - - /// - /// map_monsters_spawned_with_talisman_drop_additional_rare_items - /// - MapMonstersSpawnedWithTalismanDropAdditionalRareItems = 5727, - - /// - /// chance_to_cast_on_kill_% - /// - ChanceToCastOnKillPct = 5728, - - /// - /// map_warbands_packs_have_additional_grunts - /// - MapWarbandsPacksHaveAdditionalGrunts = 5729, - - /// - /// map_warbands_packs_have_additional_supports - /// - MapWarbandsPacksHaveAdditionalSupports = 5730, - - /// - /// map_warbands_packs_have_additional_elites - /// - MapWarbandsPacksHaveAdditionalElites = 5731, - - /// - /// map_leaguestone_warbands_packs_have_item_rarity_+%_final - /// - MapLeaguestoneWarbandsPacksHaveItemRarityPctFinal = 5732, - - /// - /// map_leaguestone_warbands_packs_have_item_quantity_+%_final - /// - MapLeaguestoneWarbandsPacksHaveItemQuantityPctFinal = 5733, - - /// - /// map_monsters_near_shrines_are_chilled - /// - MapMonstersNearShrinesAreChilled = 5734, - - /// - /// map_imprisoned_monsters_damage_taken_+% - /// - MapImprisonedMonstersDamageTakenPct = 5735, - - /// - /// map_imprisoned_monsters_damage_+% - /// - MapImprisonedMonstersDamagePct = 5736, - - /// - /// map_leaguestone_imprisoned_monsters_item_rarity_+%_final - /// - MapLeaguestoneImprisonedMonstersItemRarityPctFinal = 5737, - - /// - /// map_leaguestone_imprisoned_monsters_item_quantity_+%_final - /// - MapLeaguestoneImprisonedMonstersItemQuantityPctFinal = 5738, - - /// - /// map_leaguestone_strongboxes_rarity_override - /// - MapLeaguestoneStrongboxesRarityOverride = 5739, - - /// - /// has_shrine_effect - /// - HasShrineEffect = 5740, - - /// - /// map_player_dodge_chance_%_during_shrine_effect - /// - MapPlayerDodgeChancePctDuringShrineEffect = 5741, - - /// - /// dodge_chance_%_during_shrine_effect - /// - DodgeChancePctDuringShrineEffect = 5742, - - /// - /// map_player_damage_+%_vs_breach_monsters - /// - MapPlayerDamagePctVsBreachMonsters = 5743, - - /// - /// map_player_damage_taken_+%_vs_breach_monsters - /// - MapPlayerDamageTakenPctVsBreachMonsters = 5744, - - /// - /// damage_+%_vs_breach_monsters - /// - DamagePctVsBreachMonsters = 5745, - - /// - /// damage_taken_+%_vs_breach_monsters - /// - DamageTakenPctVsBreachMonsters = 5746, - - /// - /// map_rare_breach_monster_additional_breach_ring_drop_chance_% - /// - MapRareBreachMonsterAdditionalBreachRingDropChancePct = 5747, - - /// - /// map_strongboxes_vaal_orb_drop_chance_% - /// - MapStrongboxesVaalOrbDropChancePct = 5748, - - /// - /// map_player_shrine_effect_duration_+% - /// - MapPlayerShrineEffectDurationPct = 5749, - - /// - /// monster_is_beyond_boss - /// - MonsterIsBeyondBoss = 5750, - - /// - /// active_skill_base_radius_+ - /// - ActiveSkillBaseRadius = 5751, - - /// - /// map_leaguestone_area_contains_x_additional_leaguestones - /// - MapLeaguestoneAreaContainsXAdditionalLeaguestones = 5752, - - /// - /// map_leaguestone_monolith_contains_essence_type - /// - MapLeaguestoneMonolithContainsEssenceType = 5753, - - /// - /// map_contains_uul_netol_breach - /// - MapContainsUulNetolBreach = 5754, - - /// - /// map_contains_chayula_breach - /// - MapContainsChayulaBreach = 5755, - - /// - /// number_of_animated_weapons_allowed - /// - NumberOfAnimatedWeaponsAllowed = 5756, - - /// - /// number_of_active_animated_weapons - /// - NumberOfActiveAnimatedWeapons = 5757, - - /// - /// map_leaguestone_perandus_chests_have_item_rarity_+%_final - /// - MapLeaguestonePerandusChestsHaveItemRarityPctFinal = 5758, - - /// - /// map_leaguestone_perandus_chests_have_item_quantity_+%_final - /// - MapLeaguestonePerandusChestsHaveItemQuantityPctFinal = 5759, - - /// - /// map_perandus_monsters_drop_perandus_coin_stack_% - /// - MapPerandusMonstersDropPerandusCoinStackPct = 5760, - - /// - /// map_perandus_guards_are_rare - /// - MapPerandusGuardsAreRare = 5761, - - /// - /// map_contains_perandus_boss - /// - MapContainsPerandusBoss = 5762, - - /// - /// drop_perandus_coin_stack_% - /// - DropPerandusCoinStackPct = 5763, - - /// - /// kills_count_twice_for_rampage_% - /// - KillsCountTwiceForRampagePct = 5764, - - /// - /// map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs - /// - MapNextAreaContainsXAdditionalVoidspawnOfAbaxothPacks = 5765, - - /// - /// map_next_area_contains_x_additional_bearers_of_the_guardian_packs - /// - MapNextAreaContainsXAdditionalBearersOfTheGuardianPacks = 5766, - - /// - /// map_gain_onslaught_for_x_ms_on_killing_rare_monster - /// - MapGainOnslaughtForXMsOnKillingRareMonster = 5767, - - /// - /// gain_onslaught_for_x_ms_on_killing_rare_monster - /// - GainOnslaughtForXMsOnKillingRareMonster = 5768, - - /// - /// monster_held_item_force_no_drop_penalty - /// - MonsterHeldItemForceNoDropPenalty = 5769, - - /// - /// leaguestone_prefix_minimum_area_level - /// - LeaguestonePrefixMinimumAreaLevel = 5770, - - /// - /// leaguestone_suffix_minimum_area_level - /// - LeaguestoneSuffixMinimumAreaLevel = 5771, - - /// - /// map_rare_monsters_drop_rare_prismatic_ring_on_death_% - /// - MapRareMonstersDropRarePrismaticRingOnDeathPct = 5772, - - /// - /// drop_rare_prismatic_ring_on_death_% - /// - DropRarePrismaticRingOnDeathPct = 5773, - - /// - /// map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_% - /// - MapPlayersGain1RareMonsterModsOnKillFor20SecondsPct = 5774, - - /// - /// gain_1_rare_monster_mods_on_kill_for_20_seconds_% - /// - Gain1RareMonsterModsOnKillFor20SecondsPct = 5775, - - /// - /// monster_is_beyond_monster - /// - MonsterIsBeyondMonster = 5776, - - /// - /// map_spawn_beyond_boss_when_beyond_boss_slain_% - /// - MapSpawnBeyondBossWhenBeyondBossSlainPct = 5777, - - /// - /// map_damage_taken_+%_from_beyond_monsters - /// - MapDamageTakenPctFromBeyondMonsters = 5778, - - /// - /// damage_taken_+%_from_beyond_monsters - /// - DamageTakenPctFromBeyondMonsters = 5779, - - /// - /// map_monster_damage_taken_+%_while_possessed - /// - MapMonsterDamageTakenPctWhilePossessed = 5780, - - /// - /// monster_damage_taken_+%_while_possessed - /// - MonsterDamageTakenPctWhilePossessed = 5781, - - /// - /// map_invasion_bosses_drop_x_additional_vaal_orbs - /// - MapInvasionBossesDropXAdditionalVaalOrbs = 5782, - - /// - /// map_invasion_bosses_dropped_items_are_fully_linked - /// - MapInvasionBossesDroppedItemsAreFullyLinked = 5783, - - /// - /// map_invasion_bosses_dropped_items_have_x_additional_sockets - /// - MapInvasionBossesDroppedItemsHaveXAdditionalSockets = 5784, - - /// - /// is_holding_silver_coin - /// - IsHoldingSilverCoin = 5785, - - /// - /// map_monsters_with_silver_coins_drop_x_additional_rare_items - /// - MapMonstersWithSilverCoinsDropXAdditionalRareItems = 5786, - - /// - /// map_monsters_with_silver_coins_drop_x_additional_currency_items - /// - MapMonstersWithSilverCoinsDropXAdditionalCurrencyItems = 5787, - - /// - /// map_bloodline_packs_drop_x_additional_rare_items - /// - MapBloodlinePacksDropXAdditionalRareItems = 5788, - - /// - /// map_bloodline_packs_drop_x_additional_currency_items - /// - MapBloodlinePacksDropXAdditionalCurrencyItems = 5789, - - /// - /// map_player_attack_cast_and_movement_speed_+%_during_onslaught - /// - MapPlayerAttackCastAndMovementSpeedPctDuringOnslaught = 5790, - - /// - /// attack_cast_and_movement_speed_+%_during_onslaught - /// - AttackCastAndMovementSpeedPctDuringOnslaught = 5791, - - /// - /// map_leaguestone_additional_shrines - /// - MapLeaguestoneAdditionalShrines = 5792, - - /// - /// active_skill_area_of_effect_radius_+%_final - /// - ActiveSkillAreaOfEffectRadiusPctFinal = 5793, - - /// - /// map_rare_monsters_are_hindered - /// - MapRareMonstersAreHindered = 5794, - - /// - /// map_players_movement_speed_+% - /// - MapPlayersMovementSpeedPct = 5795, - - /// - /// map_magic_monsters_damage_taken_+% - /// - MapMagicMonstersDamageTakenPct = 5796, - - /// - /// map_magic_monsters_are_maimed - /// - MapMagicMonstersAreMaimed = 5797, - - /// - /// map_players_gain_onslaught_during_flask_effect - /// - MapPlayersGainOnslaughtDuringFlaskEffect = 5798, - - /// - /// map_players_gain_rare_monster_mods_on_kill_%_chance - /// - MapPlayersGainRareMonsterModsOnKillPctChance = 5799, - - /// - /// gain_rare_monster_mods_on_kill_%_chance - /// - GainRareMonsterModsOnKillPctChance = 5800, - - /// - /// map_invasion_bosses_are_twinned - /// - MapInvasionBossesAreTwinned = 5801, - - /// - /// map_tormented_spirits_movement_speed_+% - /// - MapTormentedSpiritsMovementSpeedPct = 5802, - - /// - /// map_tormented_spirits_duration_+% - /// - MapTormentedSpiritsDurationPct = 5803, - - /// - /// map_players_gain_onslaught_after_opening_a_strongbox_ms - /// - MapPlayersGainOnslaughtAfterOpeningAStrongboxMs = 5804, - - /// - /// gain_onslaught_after_opening_a_strongbox_ms - /// - GainOnslaughtAfterOpeningAStrongboxMs = 5805, - - /// - /// map_players_additional_spell_dodge_% - /// - MapPlayersAdditionalSpellDodgePct = 5806, - - /// - /// map_rare_monsters_have_inner_treasure - /// - MapRareMonstersHaveInnerTreasure = 5807, - - /// - /// map_leaguestone_override_base_num_prophecy_coins - /// - MapLeaguestoneOverrideBaseNumProphecyCoins = 5808, - - /// - /// map_leaguestone_additional_prophecy_coins - /// - MapLeaguestoneAdditionalProphecyCoins = 5809, - - /// - /// map_leaguestone_override_base_num_invasion_bosses - /// - MapLeaguestoneOverrideBaseNumInvasionBosses = 5810, - - /// - /// map_leaguestone_additional_invasion_bosses - /// - MapLeaguestoneAdditionalInvasionBosses = 5811, - - /// - /// map_monster_beyond_portal_chance_+% - /// - MapMonsterBeyondPortalChancePct = 5812, - - /// - /// local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius - /// - LocalUniqueJewelFireballBaseRadiusUpToAtLongerRangesWith40IntInRadius = 5813, - - /// - /// fireball_base_radius_up_to_+_at_longer_ranges - /// - FireballBaseRadiusUpToAtLongerRanges = 5814, - - /// - /// local_display_cast_level_x_shock_ground_when_hit - /// - LocalDisplayCastLevelXShockGroundWhenHit = 5815, - - /// - /// curse_with_enfeeble_on_hit_%_against_uncursed_enemies - /// - CurseWithEnfeebleOnHitPctAgainstUncursedEnemies = 5816, - - /// - /// map_rogue_exiles_drop_additional_currency_items_with_quality - /// - MapRogueExilesDropAdditionalCurrencyItemsWithQuality = 5817, - - /// - /// map_rogue_exiles_dropped_items_are_duplicated - /// - MapRogueExilesDroppedItemsAreDuplicated = 5818, - - /// - /// map_rogue_exiles_dropped_items_are_corrupted - /// - MapRogueExilesDroppedItemsAreCorrupted = 5819, - - /// - /// map_rogue_exiles_dropped_items_are_fully_linked - /// - MapRogueExilesDroppedItemsAreFullyLinked = 5820, - - /// - /// drop_additional_vaal_orbs - /// - DropAdditionalVaalOrbs = 5821, - - /// - /// map_contains_additional_mandible_talisman - /// - MapContainsAdditionalMandibleTalisman = 5822, - - /// - /// map_contains_additional_chrysalis_talisman - /// - MapContainsAdditionalChrysalisTalisman = 5823, - - /// - /// map_contains_additional_writhing_talisman - /// - MapContainsAdditionalWrithingTalisman = 5824, - - /// - /// map_contains_additional_fangjaw_talisman - /// - MapContainsAdditionalFangjawTalisman = 5825, - - /// - /// map_contains_additional_clutching_talisman - /// - MapContainsAdditionalClutchingTalisman = 5826, - - /// - /// map_contains_additional_three_rat_talisman - /// - MapContainsAdditionalThreeRatTalisman = 5827, - - /// - /// map_contains_additional_unique_talisman - /// - MapContainsAdditionalUniqueTalisman = 5828, - - /// - /// map_tempest_frequency_+% - /// - MapTempestFrequencyPct = 5829, - - /// - /// map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks - /// - MapPlayerLifeRegenerationRatePerMinutePctPer25RampageStacks = 5830, - - /// - /// life_regeneration_rate_per_minute_%_per_25_rampage_stacks - /// - LifeRegenerationRatePerMinutePctPer25RampageStacks = 5831, - - /// - /// map_player_damage_taken_+%_while_rampaging - /// - MapPlayerDamageTakenPctWhileRampaging = 5832, - - /// - /// damage_taken_+%_while_rampaging - /// - DamageTakenPctWhileRampaging = 5833, - - /// - /// map_contains_corrupted_strongbox - /// - MapContainsCorruptedStrongbox = 5834, - - /// - /// number_of_monsters_to_summon_override - /// - NumberOfMonstersToSummonOverride = 5835, - - /// - /// monster_beyond_portal_chance_+%_final - /// - MonsterBeyondPortalChancePctFinal = 5836, - - /// - /// map_num_leaguestones_active - /// - MapNumLeaguestonesActive = 5837, - - /// - /// virtual_monster_dropped_item_rarity_+% - /// - VirtualMonsterDroppedItemRarityPct = 5838, - - /// - /// virtual_monster_dropped_item_quantity_+% - /// - VirtualMonsterDroppedItemQuantityPct = 5839, - - /// - /// virtual_chest_item_quantity_+% - /// - VirtualChestItemQuantityPct = 5840, - - /// - /// virtual_chest_item_rarity_+% - /// - VirtualChestItemRarityPct = 5841, - - /// - /// leaguestone_monster_dropped_item_rarity_+%_final - /// - LeaguestoneMonsterDroppedItemRarityPctFinal = 5842, - - /// - /// leaguestone_monster_dropped_item_quantity_+%_final - /// - LeaguestoneMonsterDroppedItemQuantityPctFinal = 5843, - - /// - /// leaguestone_chest_item_quantity_+%_final - /// - LeaguestoneChestItemQuantityPctFinal = 5844, - - /// - /// leaguestone_chest_item_rarity_+%_final - /// - LeaguestoneChestItemRarityPctFinal = 5845, - - /// - /// map_leaguestone_stone_circle_%_chance - /// - MapLeaguestoneStoneCirclePctChance = 5846, - - /// - /// local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius - /// - LocalUniqueJewelFrostBladesProjectileSpeedPctWith40DexInRadius = 5847, - - /// - /// local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius - /// - LocalUniqueJewelDualStrikeMainHandDealsDoubleDamagePctWith40DexInRadius = 5848, - - /// - /// dual_strike_main_hand_deals_double_damage_% - /// - DualStrikeMainHandDealsDoubleDamagePct = 5849, - - /// - /// chance_to_deal_double_damage_% - /// - ChanceToDealDoubleDamagePct = 5850, - - /// - /// always_ignite_while_burning - /// - AlwaysIgniteWhileBurning = 5851, - - /// - /// full_life_threshold - /// - FullLifeThreshold = 5852, - - /// - /// unique_rat_cage_chance_to_squeak_when_hit_by_fire_damage - /// - UniqueRatCageChanceToSqueakWhenHitByFireDamage = 5853, - - /// - /// map_monster_slain_experience_+% - /// - MapMonsterSlainExperiencePct = 5854, - - /// - /// map_imprisoned_monsters_action_speed_+% - /// - MapImprisonedMonstersActionSpeedPct = 5855, - - /// - /// is_beyond_monster_daemon - /// - IsBeyondMonsterDaemon = 5856, - - /// - /// map_tempest_area_of_effect_+%_visible - /// - MapTempestAreaOfEffectPctVisible = 5857, - - /// - /// fortify_applies_to_nearby_allies_for_X_seconds - /// - FortifyAppliesToNearbyAlliesForXSeconds = 5858, - - /// - /// suppress_phasing_visual - /// - SuppressPhasingVisual = 5859, - - /// - /// show_phasing_visual - /// - ShowPhasingVisual = 5860, - - /// - /// energy_shield_has_started_recharging_recently - /// - EnergyShieldHasStartedRechargingRecently = 5861, - - /// - /// track_energy_shield_has_started_recharging_recently - /// - TrackEnergyShieldHasStartedRechargingRecently = 5862, - - /// - /// not_affected_by_action_speed_modifiers - /// - NotAffectedByActionSpeedModifiers = 5863, - - /// - /// map_player_movement_velocity_+% - /// - MapPlayerMovementVelocityPct = 5864, - - /// - /// lunaris_glaive_angle - /// - LunarisGlaiveAngle = 5865, - - /// - /// lunaris_glaive_acceleration_x - /// - LunarisGlaiveAccelerationX = 5866, - - /// - /// lunaris_glaive_acceleration_y - /// - LunarisGlaiveAccelerationY = 5867, - - /// - /// maintain_projectile_direction_when_using_contact_position - /// - MaintainProjectileDirectionWhenUsingContactPosition = 5868, - - /// - /// map_force_side_area - /// - MapForceSideArea = 5869, - - /// - /// map_num_sextant_mods - /// - MapNumSextantMods = 5870, - - /// - /// cannot_be_stunned_if_you_have_been_stunned_recently - /// - CannotBeStunnedIfYouHaveBeenStunnedRecently = 5871, - - /// - /// track_have_been_stunned_recently - /// - TrackHaveBeenStunnedRecently = 5872, - - /// - /// have_been_stunned_recently - /// - HaveBeenStunnedRecently = 5873, - - /// - /// cannot_be_frozen_if_you_have_been_frozen_recently - /// - CannotBeFrozenIfYouHaveBeenFrozenRecently = 5874, - - /// - /// track_have_been_frozen_recently - /// - TrackHaveBeenFrozenRecently = 5875, - - /// - /// have_been_frozen_recently - /// - HaveBeenFrozenRecently = 5876, - - /// - /// life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently - /// - LifeAndEnergyShieldRecoveryRatePctIfStoppedTakingDamageOverTimeRecently = 5877, - - /// - /// movement_speed_+%_while_on_burning_ground - /// - MovementSpeedPctWhileOnBurningGround = 5878, - - /// - /// chaos_damage_over_time_resistance_% - /// - ChaosDamageOverTimeResistancePct = 5879, - - /// - /// while_stationary_gain_additional_physical_damage_reduction_% - /// - WhileStationaryGainAdditionalPhysicalDamageReductionPct = 5880, - - /// - /// while_stationary_gain_life_regeneration_rate_per_minute_% - /// - WhileStationaryGainLifeRegenerationRatePerMinutePct = 5881, - - /// - /// fire_damage_taken_+%_while_moving - /// - FireDamageTakenPctWhileMoving = 5882, - - /// - /// life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently - /// - LifeFlasksGainXChargesEvery3SecondsIfYouHaveNotUsedALifeFlaskRecently = 5883, - - /// - /// life_recovery_+%_from_flasks_while_on_low_life - /// - LifeRecoveryPctFromFlasksWhileOnLowLife = 5884, - - /// - /// virtual_flask_life_to_recover_+% - /// - VirtualFlaskLifeToRecoverPct = 5885, - - /// - /// additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently - /// - AdditionalPctChanceToEvadeAttacksIfYouHaveTakenASavageHitRecently = 5886, - - /// - /// physical_damage_reduction_%_per_hit_you_have_taken_recently - /// - PhysicalDamageReductionPctPerHitYouHaveTakenRecently = 5887, - - /// - /// curses_have_no_effect_on_you_for_4_seconds_every_10_seconds - /// - CursesHaveNoEffectOnYouFor4SecondsEvery10Seconds = 5888, - - /// - /// hinder_effect_on_self_+% - /// - HinderEffectOnSelfPct = 5889, - - /// - /// avoid_corrupted_blood_%_chance - /// - AvoidCorruptedBloodPctChance = 5890, - - /// - /// avoid_maim_%_chance - /// - AvoidMaimPctChance = 5891, - - /// - /// monster_ground_fire_on_death_variation - /// - MonsterGroundFireOnDeathVariation = 5892, - - /// - /// traps_explode_on_timeout - /// - TrapsExplodeOnTimeout = 5893, - - /// - /// physical_skill_dot_damage_to_deal_per_minute - /// - PhysicalSkillDotDamageToDealPerMinute = 5894, - - /// - /// fire_skill_dot_damage_to_deal_per_minute - /// - FireSkillDotDamageToDealPerMinute = 5895, - - /// - /// cold_skill_dot_damage_to_deal_per_minute - /// - ColdSkillDotDamageToDealPerMinute = 5896, - - /// - /// lightning_skill_dot_damage_to_deal_per_minute - /// - LightningSkillDotDamageToDealPerMinute = 5897, - - /// - /// chaos_skill_dot_damage_to_deal_per_minute - /// - ChaosSkillDotDamageToDealPerMinute = 5898, - - /// - /// physical_area_damage_to_deal_per_minute - /// - PhysicalAreaDamageToDealPerMinute = 5899, - - /// - /// fire_area_damage_to_deal_per_minute - /// - FireAreaDamageToDealPerMinute = 5900, - - /// - /// cold_area_damage_to_deal_per_minute - /// - ColdAreaDamageToDealPerMinute = 5901, - - /// - /// lightning_area_damage_to_deal_per_minute - /// - LightningAreaDamageToDealPerMinute = 5902, - - /// - /// chaos_area_damage_to_deal_per_minute - /// - ChaosAreaDamageToDealPerMinute = 5903, - - /// - /// physical_skill_dot_area_damage_to_deal_per_minute - /// - PhysicalSkillDotAreaDamageToDealPerMinute = 5904, - - /// - /// fire_skill_dot_area_damage_to_deal_per_minute - /// - FireSkillDotAreaDamageToDealPerMinute = 5905, - - /// - /// cold_skill_dot_area_damage_to_deal_per_minute - /// - ColdSkillDotAreaDamageToDealPerMinute = 5906, - - /// - /// lightning_skill_dot_area_damage_to_deal_per_minute - /// - LightningSkillDotAreaDamageToDealPerMinute = 5907, - - /// - /// chaos_skill_dot_area_damage_to_deal_per_minute - /// - ChaosSkillDotAreaDamageToDealPerMinute = 5908, - - /// - /// combined_attack_elemental_damage_pluspercent - /// - CombinedAttackElementalDamagePluspercent = 5909, - - /// - /// combined_attack_lightning_damage_pluspercent - /// - CombinedAttackLightningDamagePluspercent = 5910, - - /// - /// combined_attack_lightning_damage_pluspercent_final - /// - CombinedAttackLightningDamagePluspercentFinal = 5911, - - /// - /// combined_skill_dot_elemental_damage_over_time_+% - /// - CombinedSkillDotElementalDamageOverTimePct = 5912, - - /// - /// combined_skill_dot_fire_damage_over_time_+% - /// - CombinedSkillDotFireDamageOverTimePct = 5913, - - /// - /// combined_skill_dot_cold_damage_over_time_+% - /// - CombinedSkillDotColdDamageOverTimePct = 5914, - - /// - /// combined_skill_dot_lightning_damage_over_time_+% - /// - CombinedSkillDotLightningDamageOverTimePct = 5915, - - /// - /// combined_skill_dot_lightning_damage_over_time_+%_final - /// - CombinedSkillDotLightningDamageOverTimePctFinal = 5916, - - /// - /// ignite_damage_+% - /// - IgniteDamagePct = 5917, - - /// - /// combined_ignite_damage_over_time_+% - /// - CombinedIgniteDamageOverTimePct = 5918, - - /// - /// bleed_is_skill_dot - /// - BleedIsSkillDot = 5919, - - /// - /// ignite_is_skill_dot - /// - IgniteIsSkillDot = 5920, - - /// - /// poison_is_skill_dot - /// - PoisonIsSkillDot = 5921, - - /// - /// deal_no_bleed_damage_over_time - /// - DealNoBleedDamageOverTime = 5922, - - /// - /// deal_no_ignite_damage_over_time - /// - DealNoIgniteDamageOverTime = 5923, - - /// - /// deal_no_poison_damage_over_time - /// - DealNoPoisonDamageOverTime = 5924, - - /// - /// minimum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MinimumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5925, - - /// - /// maximum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MaximumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5926, - - /// - /// keystone_ghost_reaver - /// - KeystoneGhostReaver = 5927, - - /// - /// infest_on_hit_chance_% - /// - InfestOnHitChancePct = 5928, - - /// - /// infest_on_hit_duration_ms - /// - InfestOnHitDurationMs = 5929, - - /// - /// energy_shield_per_level - /// - EnergyShieldPerLevel = 5930, - - /// - /// minimum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MinimumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5931, - - /// - /// maximum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MaximumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5932, - - /// - /// virtual_physical_damage_can_ignite - /// - VirtualPhysicalDamageCanIgnite = 5933, - - /// - /// virtual_fire_damage_cannot_ignite - /// - VirtualFireDamageCannotIgnite = 5934, - - /// - /// virtual_cold_damage_can_ignite - /// - VirtualColdDamageCanIgnite = 5935, - - /// - /// virtual_lightning_damage_can_ignite - /// - VirtualLightningDamageCanIgnite = 5936, - - /// - /// virtual_chaos_damage_can_ignite - /// - VirtualChaosDamageCanIgnite = 5937, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MinimumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5938, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MaximumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5939, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage - /// - MinimumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5940, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage - /// - MaximumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5941, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage - /// - MinimumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5942, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage - /// - MaximumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5943, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage - /// - MinimumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5944, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage - /// - MaximumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5945, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage - /// - MinimumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5946, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage - /// - MaximumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5947, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MinimumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5948, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MaximumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5949, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage - /// - MinimumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5950, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage - /// - MaximumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5951, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage - /// - MinimumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5952, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage - /// - MaximumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5953, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage - /// - MinimumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5954, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage - /// - MaximumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5955, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage - /// - MinimumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5956, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage - /// - MaximumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5957, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_spell_physical_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5958, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_spell_physical_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5959, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_spell_fire_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5960, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_spell_fire_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5961, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_spell_cold_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5962, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_spell_cold_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5963, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5964, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5965, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5966, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5967, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5968, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5969, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5970, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5971, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5972, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5973, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5974, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5975, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage - /// - MinimumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5976, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage - /// - MaximumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5977, - - /// - /// global_total_minimum_added_chaos_damage - /// - GlobalTotalMinimumAddedChaosDamage = 5978, - - /// - /// global_total_maximum_added_chaos_damage - /// - GlobalTotalMaximumAddedChaosDamage = 5979, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5980, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5981, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5982, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5983, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage - /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5984, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage - /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5985, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage - /// - MinimumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5986, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage - /// - MaximumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5987, - - /// - /// virtual_always_ignite - /// - VirtualAlwaysIgnite = 5988, - - /// - /// trap_additional_random_duration_ms - /// - TrapAdditionalRandomDurationMs = 5989, - - /// - /// minions_hits_can_only_kill_ignited_enemies - /// - MinionsHitsCanOnlyKillIgnitedEnemies = 5990, - - /// - /// hits_can_only_kill_ignited_enemies - /// - HitsCanOnlyKillIgnitedEnemies = 5991, - - /// - /// additional_spell_block_%_while_cursed - /// - AdditionalSpellBlockPctWhileCursed = 5992, - - /// - /// additional_block_%_while_not_cursed - /// - AdditionalBlockPctWhileNotCursed = 5993, - - /// - /// ignite_damage_from_attack_skills_+% - /// - IgniteDamageFromAttackSkillsPct = 5994, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MinimumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5995, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage - /// - MaximumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5996, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage - /// - MinimumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5997, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage - /// - MaximumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5998, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage - /// - MinimumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5999, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage - /// - MaximumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 6000, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage - /// - MinimumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 6001, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage - /// - MaximumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 6002, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage - /// - MinimumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6003, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage - /// - MaximumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 6004, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MinimumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6005, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage - /// - MaximumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6006, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage - /// - MinimumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6007, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage - /// - MaximumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6008, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage - /// - MinimumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6009, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage - /// - MaximumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6010, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage - /// - MinimumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6011, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage - /// - MaximumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6012, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage - /// - MinimumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6013, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage - /// - MaximumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6014, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_spell_physical_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6015, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_spell_physical_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6016, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_spell_fire_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6017, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_spell_fire_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6018, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_spell_cold_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6019, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_spell_cold_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6020, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_spell_lightning_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6021, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_spell_lightning_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6022, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_spell_chaos_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6023, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_spell_chaos_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6024, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_secondary_physical_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6025, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_secondary_physical_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6026, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_secondary_fire_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6027, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_secondary_fire_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6028, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_secondary_cold_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6029, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_secondary_cold_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6030, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6031, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6032, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage - /// - MinimumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6033, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage - /// - MaximumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6034, - - /// - /// combined_poison_damage_over_time_+% - /// - CombinedPoisonDamageOverTimePct = 6035, - - /// - /// poison_damage_from_attack_skills_+% - /// - PoisonDamageFromAttackSkillsPct = 6036, - - /// - /// virtual_physical_damage_cannot_poison - /// - VirtualPhysicalDamageCannotPoison = 6037, - - /// - /// virtual_fire_damage_can_poison - /// - VirtualFireDamageCanPoison = 6038, - - /// - /// virtual_cold_damage_can_poison - /// - VirtualColdDamageCanPoison = 6039, - - /// - /// virtual_lightning_damage_can_poison - /// - VirtualLightningDamageCanPoison = 6040, - - /// - /// virtual_chaos_damage_cannot_poison - /// - VirtualChaosDamageCannotPoison = 6041, - - /// - /// non_chaos_damage_cannot_poison - /// - NonChaosDamageCannotPoison = 6042, - - /// - /// all_damage_can_poison - /// - AllDamageCanPoison = 6043, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6044, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6045, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6046, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6047, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage - /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6048, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage - /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6049, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage - /// - MinimumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6050, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage - /// - MaximumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6051, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6052, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6053, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6054, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6055, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6056, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6057, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6058, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6059, - - /// - /// ice_spear_second_form_damage_+% - /// - IceSpearSecondFormDamagePct = 6060, - - /// - /// extra_damage_taken_from_crit_while_no_power_charges_+% - /// - ExtraDamageTakenFromCritWhileNoPowerChargesPct = 6061, - - /// - /// chest_display_weylams_war - /// - ChestDisplayWeylamsWar = 6062, - - /// - /// minion_movement_speed_+%_per_50_dex - /// - MinionMovementSpeedPctPer50Dex = 6063, - - /// - /// minion_attack_speed_+%_per_50_dex - /// - MinionAttackSpeedPctPer50Dex = 6064, - - /// - /// main_hand_attack_minimum_added_lightning_damage_per_10_int - /// - MainHandAttackMinimumAddedLightningDamagePer10Int = 6065, - - /// - /// main_hand_attack_maximum_added_lightning_damage_per_10_int - /// - MainHandAttackMaximumAddedLightningDamagePer10Int = 6066, - - /// - /// off_hand_attack_minimum_added_lightning_damage_per_10_int - /// - OffHandAttackMinimumAddedLightningDamagePer10Int = 6067, - - /// - /// off_hand_attack_maximum_added_lightning_damage_per_10_int - /// - OffHandAttackMaximumAddedLightningDamagePer10Int = 6068, - - /// - /// main_hand_attack_minimum_added_fire_damage_per_10_strength - /// - MainHandAttackMinimumAddedFireDamagePer10Strength = 6069, - - /// - /// main_hand_attack_maximum_added_fire_damage_per_10_strength - /// - MainHandAttackMaximumAddedFireDamagePer10Strength = 6070, - - /// - /// off_hand_attack_minimum_added_fire_damage_per_10_strength - /// - OffHandAttackMinimumAddedFireDamagePer10Strength = 6071, - - /// - /// off_hand_attack_maximum_added_fire_damage_per_10_strength - /// - OffHandAttackMaximumAddedFireDamagePer10Strength = 6072, - - /// - /// fire_beam_start_angle_offset_variance - /// - FireBeamStartAngleOffsetVariance = 6073, - - /// - /// display_monster_may_inflict_bleeding - /// - DisplayMonsterMayInflictBleeding = 6074, - - /// - /// combined_bleeding_damage_over_time_+% - /// - CombinedBleedingDamageOverTimePct = 6075, - - /// - /// combined_bleeding_damage_over_time_+%_final - /// - CombinedBleedingDamageOverTimePctFinal = 6076, - - /// - /// bleeding_damage_+% - /// - BleedingDamagePct = 6077, - - /// - /// active_skill_bleeding_damage_+%_final - /// - ActiveSkillBleedingDamagePctFinal = 6078, - - /// - /// frog_god_number_of_orbs_to_summon - /// - FrogGodNumberOfOrbsToSummon = 6079, - - /// - /// combined_ignite_damage_over_time_+%_final - /// - CombinedIgniteDamageOverTimePctFinal = 6080, - - /// - /// physical_damage_with_attack_skills_+% - /// - PhysicalDamageWithAttackSkillsPct = 6081, - - /// - /// Elemental Damage With Attack Skills +% - /// - ElementalDamageWithAttackSkillsPct = 6082, - - /// - /// fire_damage_with_attack_skills_+% - /// - FireDamageWithAttackSkillsPct = 6083, - - /// - /// cold_damage_with_attack_skills_+% - /// - ColdDamageWithAttackSkillsPct = 6084, - - /// - /// lightning_damage_with_attack_skills_+% - /// - LightningDamageWithAttackSkillsPct = 6085, - - /// - /// chaos_damage_with_attack_skills_+% - /// - ChaosDamageWithAttackSkillsPct = 6086, - - /// - /// doedre_aura_damage_+%_final - /// - DoedreAuraDamagePctFinal = 6087, - - /// - /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_to_deal_per_minute - /// - BaseFireDamagePctOfMaximumLifePlusMaximumESToDealPerMinute = 6088, - - /// - /// cast_at_teleport_start_% - /// - CastAtTeleportStartPct = 6089, - - /// - /// cast_at_teleport_end_% - /// - CastAtTeleportEndPct = 6090, - - /// - /// summoned_monsters_are_parented_to_my_target - /// - SummonedMonstersAreParentedToMyTarget = 6091, - - /// - /// cast_at_mortar_impact_% - /// - CastAtMortarImpactPct = 6092, - - /// - /// mortar_has_triggered_skills - /// - MortarHasTriggeredSkills = 6093, - - /// - /// active_skill_base_attack_damage_final_+permyriad - /// - ActiveSkillBaseAttackDamageFinalPermyriad = 6094, - - /// - /// map_bosses_have_summon_zombie_giant - /// - MapBossesHaveSummonZombieGiant = 6095, - - /// - /// monster_spawn_bloodlines_zombie_giant - /// - MonsterSpawnBloodlinesZombieGiant = 6096, - - /// - /// critical_ailment_dot_multiplier_+ - /// - CriticalAilmentDotMultiplier = 6097, - - /// - /// monster_ignite_damage_+%_final - /// - MonsterIgniteDamagePctFinal = 6098, - - /// - /// monster_bleeding_damage_+%_final - /// - MonsterBleedingDamagePctFinal = 6099, - - /// - /// monster_poison_damage_+%_final - /// - MonsterPoisonDamagePctFinal = 6100, - - /// - /// combined_poison_damage_over_time_+%_final - /// - CombinedPoisonDamageOverTimePctFinal = 6101, - - /// - /// bleeding_moving_damage_%_of_base_override - /// - BleedingMovingDamagePctOfBaseOverride = 6102, - - /// - /// active_skill_if_used_through_frostbolt_damage_+%_final - /// - ActiveSkillIfUsedThroughFrostboltDamagePctFinal = 6103, - - /// - /// used_through_frostbolt - /// - UsedThroughFrostbolt = 6104, - - /// - /// display_monster_may_inflict_maim - /// - DisplayMonsterMayInflictMaim = 6105, - - /// - /// support_attack_skills_elemental_damage_+%_final - /// - SupportAttackSkillsElementalDamagePctFinal = 6106, - - /// - /// elemental_damage_with_attack_skills_+%_while_using_flask - /// - ElementalDamageWithAttackSkillsPctWhileUsingFlask = 6107, - - /// - /// support_burning_damage_+%_final - /// - SupportBurningDamagePctFinal = 6108, - - /// - /// bleeding_skill_effect_duration - /// - BleedingSkillEffectDuration = 6109, - - /// - /// bleed_duration_is_skill_duration - /// - BleedDurationIsSkillDuration = 6110, - - /// - /// base_all_ailment_duration_+% - /// - BaseAllAilmentDurationPct = 6111, - - /// - /// shocked_enemies_explode_for_%_life_as_lightning_damage - /// - ShockedEnemiesExplodeForPctLifeAsLightningDamage = 6112, - - /// - /// track_number_of_enemies_shocked_recently - /// - TrackNumberOfEnemiesShockedRecently = 6113, - - /// - /// number_of_enemies_shocked_recently - /// - NumberOfEnemiesShockedRecently = 6114, - - /// - /// damage_+%_if_you_have_shocked_recently - /// - DamagePctIfYouHaveShockedRecently = 6115, - - /// - /// herald_mana_reservation_override_45% - /// - HeraldManaReservationOverride45Pct = 6116, - - /// - /// avoid_stun_35%_per_active_herald - /// - AvoidStun35PctPerActiveHerald = 6117, - - /// - /// number_of_active_heralds - /// - NumberOfActiveHeralds = 6118, - - /// - /// base_avoid_stun_% - /// - BaseAvoidStunPct = 6119, - - /// - /// herald_of_ash_burning_damage_+%_final - /// - HeraldOfAshBurningDamagePctFinal = 6120, - - /// - /// depair_bear_upheaval_movement_speed_+% - /// - DepairBearUpheavalMovementSpeedPct = 6121, - - /// - /// virtual_ignite_faster_burn_% - /// - VirtualIgniteFasterBurnPct = 6122, - - /// - /// kill_traps_mines_and_totems_on_death - /// - KillTrapsMinesAndTotemsOnDeath = 6123, - - /// - /// chest_drop_X_divination_cards - /// - ChestDropXDivinationCards = 6124, - - /// - /// chest_drop_divination_cards_with_full_stack_number_X - /// - ChestDropDivinationCardsWithFullStackNumberX = 6125, - - /// - /// keystone_ailment_crit - /// - KeystoneAilmentCrit = 6126, - - /// - /// fire_beam_prioritise_players_for_targeting - /// - FireBeamPrioritisePlayersForTargeting = 6127, - - /// - /// support_ignite_proliferation_radius - /// - SupportIgniteProliferationRadius = 6128, - - /// - /// support_maimed_enemies_physical_damage_taken_+% - /// - SupportMaimedEnemiesPhysicalDamageTakenPct = 6129, - - /// - /// support_chance_to_ignite_fire_damage_+%_final - /// - SupportChanceToIgniteFireDamagePctFinal = 6130, - - /// - /// support_better_ailments_ailment_damage_+%_final - /// - SupportBetterAilmentsAilmentDamagePctFinal = 6131, - - /// - /// support_better_ailments_hit_damage_+%_final - /// - SupportBetterAilmentsHitDamagePctFinal = 6132, - - /// - /// additional_chaos_resistance_against_damage_over_time_% - /// - AdditionalChaosResistanceAgainstDamageOverTimePct = 6133, - - /// - /// from_code_active_skill_hit_damage_+%_final - /// - FromCodeActiveSkillHitDamagePctFinal = 6134, - - /// - /// hit_damage_+% - /// - HitDamagePct = 6135, - - /// - /// uncapped_chaos_damage_over_time_resistance_% - /// - UncappedChaosDamageOverTimeResistancePct = 6136, - - /// - /// attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently - /// - AttackCastMovementSpeedPctIfTakenASavageHitRecently = 6137, - - /// - /// chaos_resistance_%_for_you_and_allies_affected_by_your_auras - /// - ChaosResistancePctForYouAndAlliesAffectedByYourAuras = 6138, - - /// - /// additional_block_chance_%_for_you_and_allies_affected_by_your_auras - /// - AdditionalBlockChancePctForYouAndAlliesAffectedByYourAuras = 6139, - - /// - /// attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras - /// - AttackCastMovementSpeedPctForYouAndAlliesAffectedByYourAuras = 6140, - - /// - /// mana_regeneration_rate_per_minute_if_used_movement_skill_recently - /// - ManaRegenerationRatePerMinuteIfUsedMovementSkillRecently = 6141, - - /// - /// movement_speed_+%_if_placed_trap_or_mine_recently - /// - MovementSpeedPctIfPlacedTrapOrMineRecently = 6142, - - /// - /// trap_and_mine_damage_+%_if_armed_for_4_seconds - /// - TrapAndMineDamagePctIfArmedFor4Seconds = 6143, - - /// - /// skill_effect_and_damaging_ailment_duration_+% - /// - SkillEffectAndDamagingAilmentDurationPct = 6144, - - /// - /// active_skill_damage_over_time_from_projectile_hits_+%_final - /// - ActiveSkillDamageOverTimeFromProjectileHitsPctFinal = 6145, - - /// - /// trigger_spawners_time_between_min_ms - /// - TriggerSpawnersTimeBetweenMinMs = 6146, - - /// - /// trigger_spawners_time_between_max_ms - /// - TriggerSpawnersTimeBetweenMaxMs = 6147, - - /// - /// cast_on_delayed_skill_trigger_% - /// - CastOnDelayedSkillTriggerPct = 6148, - - /// - /// track_have_used_movement_skill_recently - /// - TrackHaveUsedMovementSkillRecently = 6149, - - /// - /// have_used_movement_skill_recently - /// - HaveUsedMovementSkillRecently = 6150, - - /// - /// track_have_placed_trap_or_mine_recently - /// - TrackHavePlacedTrapOrMineRecently = 6151, - - /// - /// have_placed_trap_or_mine_recently - /// - HavePlacedTrapOrMineRecently = 6152, - - /// - /// blast_rain_no_los_required - /// - BlastRainNoLosRequired = 6153, - - /// - /// despair_bear_upheaval_physical_damage_to_deal_per_minute - /// - DespairBearUpheavalPhysicalDamageToDealPerMinute = 6154, - - /// - /// number_of_additional_ignites_allowed - /// - NumberOfAdditionalIgnitesAllowed = 6155, - - /// - /// cast_on_trigger_charge_event_% - /// - CastOnTriggerChargeEventPct = 6156, - - /// - /// support_efficacy_spell_damage_+%_final - /// - SupportEfficacySpellDamagePctFinal = 6157, - - /// - /// support_efficacy_damage_over_time_+%_final - /// - SupportEfficacyDamageOverTimePctFinal = 6158, - - /// - /// support_debilitate_poison_damage_+%_final - /// - SupportDebilitatePoisonDamagePctFinal = 6159, - - /// - /// support_debilitate_hit_damage_+%_final - /// - SupportDebilitateHitDamagePctFinal = 6160, - - /// - /// support_debilitate_hit_damage_+%_final_per_poison_stack - /// - SupportDebilitateHitDamagePctFinalPerPoisonStack = 6161, - - /// - /// support_debilitate_hit_damage_max_poison_stacks - /// - SupportDebilitateHitDamageMaxPoisonStacks = 6162, - - /// - /// global_minimum_added_fire_damage_vs_burning_enemies - /// - GlobalMinimumAddedFireDamageVsBurningEnemies = 6163, - - /// - /// global_maximum_added_fire_damage_vs_burning_enemies - /// - GlobalMaximumAddedFireDamageVsBurningEnemies = 6164, - - /// - /// support_unbound_ailments_ailment_damage_+%_final - /// - SupportUnboundAilmentsAilmentDamagePctFinal = 6165, - - /// - /// trigger_charge_additional_block_chance_against_projectiles_% - /// - TriggerChargeAdditionalBlockChanceAgainstProjectilesPct = 6166, - - /// - /// chaos_damage_resistance_is_doubled - /// - ChaosDamageResistanceIsDoubled = 6167, - - /// - /// skill_area_of_effect_+%_while_no_frenzy_charges - /// - SkillAreaOfEffectPctWhileNoFrenzyCharges = 6168, - - /// - /// global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges - /// - GlobalCriticalStrikeMultiplierWhileYouHaveNoFrenzyCharges = 6169, - - /// - /// gain_maximum_power_charges_on_power_charge_gained_%_chance - /// - GainMaximumPowerChargesOnPowerChargeGainedPctChance = 6170, - - /// - /// damage_+%_per_power_charge - /// - DamagePctPerPowerCharge = 6171, - - /// - /// base_fire_damage_can_poison - /// - BaseFireDamageCanPoison = 6172, - - /// - /// base_cold_damage_can_poison - /// - BaseColdDamageCanPoison = 6173, - - /// - /// base_lightning_damage_can_poison - /// - BaseLightningDamageCanPoison = 6174, - - /// - /// fire_skills_chance_to_poison_on_hit_% - /// - FireSkillsChanceToPoisonOnHitPct = 6175, - - /// - /// cold_skills_chance_to_poison_on_hit_% - /// - ColdSkillsChanceToPoisonOnHitPct = 6176, - - /// - /// lightning_skills_chance_to_poison_on_hit_% - /// - LightningSkillsChanceToPoisonOnHitPct = 6177, - - /// - /// movement_attack_skills_attack_speed_+% - /// - MovementAttackSkillsAttackSpeedPct = 6178, - - /// - /// local_socketed_herald_gem_level_+ - /// - LocalSocketedHeraldGemLevel = 6179, - - /// - /// cold_damage_+%_if_you_have_used_a_fire_skill_recently - /// - ColdDamagePctIfYouHaveUsedAFireSkillRecently = 6180, - - /// - /// fire_damage_+%_if_you_have_used_a_cold_skill_recently - /// - FireDamagePctIfYouHaveUsedAColdSkillRecently = 6181, - - /// - /// track_have_used_a_cold_skill_recently - /// - TrackHaveUsedAColdSkillRecently = 6182, - - /// - /// have_used_a_cold_skill_recently - /// - HaveUsedAColdSkillRecently = 6183, - - /// - /// support_maim_chance_physical_damage_+%_final - /// - SupportMaimChancePhysicalDamagePctFinal = 6184, - - /// - /// support_brutality_physical_damage_+%_final - /// - SupportBrutalityPhysicalDamagePctFinal = 6185, - - /// - /// summon_specific_monsters_in_front_offset - /// - SummonSpecificMonstersInFrontOffset = 6186, - - /// - /// trap_and_mine_damage_penetrates_%_elemental_resistance - /// - TrapAndMineDamagePenetratesPctElementalResistance = 6187, - - /// - /// cooldown_speed_+%_per_additional_player - /// - CooldownSpeedPctPerAdditionalPlayer = 6188, - - /// - /// total_damage_taken_per_minute_to_mana - /// - TotalDamageTakenPerMinuteToMana = 6189, - - /// - /// enemies_that_hit_you_with_attack_recently_attack_speed_+% - /// - EnemiesThatHitYouWithAttackRecentlyAttackSpeedPct = 6190, - - /// - /// vaal_skill_soul_cost_+% - /// - VaalSkillSoulCostPct = 6191, - - /// - /// has_attacker_projectile_attack_conditional_damage_stats - /// - HasAttackerProjectileAttackConditionalDamageStats = 6192, - - /// - /// has_attacker_conditional_damage_stats - /// - HasAttackerConditionalDamageStats = 6193, - - /// - /// has_attacker_projectile_spell_conditional_damage_stats - /// - HasAttackerProjectileSpellConditionalDamageStats = 6194, - - /// - /// number_of_projectiles_override - /// - NumberOfProjectilesOverride = 6195, - - /// - /// map_pantheon_flask_capture_boss_soul - /// - MapPantheonFlaskCaptureBossSoul = 6196, - - /// - /// physical_damage_over_time_taken_+%_while_moving - /// - PhysicalDamageOverTimeTakenPctWhileMoving = 6197, - - /// - /// physical_damage_reduction_%_if_only_one_enemy_nearby - /// - PhysicalDamageReductionPctIfOnlyOneEnemyNearby = 6198, - - /// - /// take_half_area_damage_from_hit_%_chance - /// - TakeHalfAreaDamageFromHitPctChance = 6199, - - /// - /// elemental_damage_taken_+%_if_not_hit_recently - /// - ElementalDamageTakenPctIfNotHitRecently = 6200, - - /// - /// self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently - /// - SelfTakeNoExtraDamageFromCriticalStrikesIfHaveBeenCritRecently = 6201, - - /// - /// have_been_crit_recently - /// - HaveBeenCritRecently = 6202, - - /// - /// track_have_been_crit_recently - /// - TrackHaveBeenCritRecently = 6203, - - /// - /// avoid_ailments_%_from_crit - /// - AvoidAilmentsPctFromCrit = 6204, - - /// - /// physical_damage_reduction_%_per_nearby_enemy - /// - PhysicalDamageReductionPctPerNearbyEnemy = 6205, - - /// - /// movement_speed_+%_per_nearby_enemy - /// - MovementSpeedPctPerNearbyEnemy = 6206, - - /// - /// base_avoid_projectiles_%_chance - /// - BaseAvoidProjectilesPctChance = 6207, - - /// - /// dodge_attacks_and_spells_%_chance_if_have_been_hit_recently - /// - DodgeAttacksAndSpellsPctChanceIfHaveBeenHitRecently = 6208, - - /// - /// prevent_projectile_chaining_%_chance - /// - PreventProjectileChainingPctChance = 6209, - - /// - /// avoid_chained_projectile_%_chance - /// - AvoidChainedProjectilePctChance = 6210, - - /// - /// cold_damage_taken_+%_if_have_been_hit_recently - /// - ColdDamageTakenPctIfHaveBeenHitRecently = 6211, - - /// - /// reflect_chill_and_freeze_%_chance - /// - ReflectChillAndFreezePctChance = 6212, - - /// - /// virtual_self_take_no_extra_damage_from_critical_strikes - /// - VirtualSelfTakeNoExtraDamageFromCriticalStrikes = 6213, - - /// - /// projectile_spread_radius_per_additional_projectile - /// - ProjectileSpreadRadiusPerAdditionalProjectile = 6214, - - /// - /// trigger_cascade_number_of_spikes - /// - TriggerCascadeNumberOfSpikes = 6215, - - /// - /// trigger_cascade_ms_between_spikes - /// - TriggerCascadeMsBetweenSpikes = 6216, - - /// - /// cast_on_trigger_cascade_event_% - /// - CastOnTriggerCascadeEventPct = 6217, - - /// - /// trigger_cascade_behaviour_variation - /// - TriggerCascadeBehaviourVariation = 6218, - - /// - /// garukhan_number_of_tornadoes - /// - GarukhanNumberOfTornadoes = 6219, - - /// - /// map_pack_subindex_override - /// - MapPackSubindexOverride = 6220, - - /// - /// map_boss_override - /// - MapBossOverride = 6221, - - /// - /// map_daily_mission_master_level - /// - MapDailyMissionMasterLevel = 6222, - - /// - /// number_of_nearby_enemies - /// - NumberOfNearbyEnemies = 6223, - - /// - /// track_number_of_nearby_enemies - /// - TrackNumberOfNearbyEnemies = 6224, - - /// - /// volatile_flameblood_spawn_monster_on_death_variation - /// - VolatileFlamebloodSpawnMonsterOnDeathVariation = 6225, - - /// - /// hit_and_poison_damage_+% - /// - HitAndPoisonDamagePct = 6226, - - /// - /// hit_and_poison_damage_+%_per_poison_on_enemy - /// - HitAndPoisonDamagePctPerPoisonOnEnemy = 6227, - - /// - /// attack_minimum_added_physical_damage_with_weapons - /// - AttackMinimumAddedPhysicalDamageWithWeapons = 6228, - - /// - /// attack_maximum_added_physical_damage_with_weapons - /// - AttackMaximumAddedPhysicalDamageWithWeapons = 6229, - - /// - /// trigger_on_projectile_loop_count - /// - TriggerOnProjectileLoopCount = 6230, - - /// - /// trigger_on_projectile_death - /// - TriggerOnProjectileDeath = 6231, - - /// - /// base_number_of_beast_minions_allowed - /// - BaseNumberOfBeastMinionsAllowed = 6232, - - /// - /// number_of_beast_minions_allowed - /// - NumberOfBeastMinionsAllowed = 6233, - - /// - /// local_display_grants_summon_beast_companion - /// - LocalDisplayGrantsSummonBeastCompanion = 6234, - - /// - /// molten_shell_explosion_cooldown_ms - /// - MoltenShellExplosionCooldownMs = 6235, - - /// - /// from_code_active_skill_hit_and_ailment_damage_+%_final - /// - FromCodeActiveSkillHitAndAilmentDamagePctFinal = 6236, - - /// - /// tornado_movement_velocity_+% - /// - TornadoMovementVelocityPct = 6237, - - /// - /// monster_aggro_radius_+% - /// - MonsterAggroRadiusPct = 6238, - - /// - /// ground_ice_art_variation - /// - GroundIceArtVariation = 6239, - - /// - /// virtual_additional_projectiles_fire_parallel_x_dist - /// - VirtualAdditionalProjectilesFireParallelXDist = 6240, - - /// - /// additional_projectiles_fire_parallel_y_dist - /// - AdditionalProjectilesFireParallelYDist = 6241, - - /// - /// from_code_active_skill_ailment_damage_+%_final - /// - FromCodeActiveSkillAilmentDamagePctFinal = 6242, - - /// - /// flameblast_ailment_damage_+%_final_per_stack - /// - FlameblastAilmentDamagePctFinalPerStack = 6243, - - /// - /// trigger_cascade_A - /// - TriggerCascadeA = 6244, - - /// - /// trigger_cascade_B - /// - TriggerCascadeB = 6245, - - /// - /// trigger_cascade_C - /// - TriggerCascadeC = 6246, - - /// - /// trigger_cascade_D - /// - TriggerCascadeD = 6247, - - /// - /// trigger_cascade_angle - /// - TriggerCascadeAngle = 6248, - - /// - /// local_use_skill_on_hit_% - /// - LocalUseSkillOnHitPct = 6249, - - /// - /// main_hand_use_skill_on_hit_% - /// - MainHandUseSkillOnHitPct = 6250, - - /// - /// off_hand_use_skill_on_hit_% - /// - OffHandUseSkillOnHitPct = 6251, - - /// - /// skill_has_trigger_from_unique_item - /// - SkillHasTriggerFromUniqueItem = 6252, - - /// - /// local_display_use_level_X_abyssal_cry_on_hit - /// - LocalDisplayUseLevelXAbyssalCryOnHit = 6253, - - /// - /// accelerate_min - /// - AccelerateMin = 6254, - - /// - /// accelerate_max - /// - AccelerateMax = 6255, - - /// - /// accelerate_time - /// - AccelerateTime = 6256, - - /// - /// skill_is_minion_skill - /// - SkillIsMinionSkill = 6257, - - /// - /// minion_skill_mana_cost_+% - /// - MinionSkillManaCostPct = 6258, - - /// - /// local_display_grants_skill_doryanis_touch_level - /// - LocalDisplayGrantsSkillDoryanisTouchLevel = 6259, - - /// - /// trigger_cascade_target_variation - /// - TriggerCascadeTargetVariation = 6260, - - /// - /// trigger_cascade_number_of_arms - /// - TriggerCascadeNumberOfArms = 6261, - - /// - /// trigger_cascade_angle_between_arms - /// - TriggerCascadeAngleBetweenArms = 6262, - - /// - /// support_ruthless_big_hit_max_count - /// - SupportRuthlessBigHitMaxCount = 6263, - - /// - /// melee_damage_+%_final_from_ruthless_blow - /// - MeleeDamagePctFinalFromRuthlessBlow = 6264, - - /// - /// stun_base_duration_override_ms - /// - StunBaseDurationOverrideMs = 6265, - - /// - /// support_ruthless_big_hit_stun_base_duration_override_ms - /// - SupportRuthlessBigHitStunBaseDurationOverrideMs = 6266, - - /// - /// support_ruthless_big_hit_damage_+%_final - /// - SupportRuthlessBigHitDamagePctFinal = 6267, - - /// - /// support_scion_onslaught_on_killing_blow_%_chance - /// - SupportScionOnslaughtOnKillingBlowPctChance = 6268, - - /// - /// support_scion_onslaught_on_killing_blow_duration_ms - /// - SupportScionOnslaughtOnKillingBlowDurationMs = 6269, - - /// - /// support_arcane_surge_gain_buff_on_mana_use_threshold - /// - SupportArcaneSurgeGainBuffOnManaUseThreshold = 6270, - - /// - /// support_arcane_surge_spell_damage_+%_final - /// - SupportArcaneSurgeSpellDamagePctFinal = 6271, - - /// - /// spell_damage_+%_final_from_arcane_surge - /// - SpellDamagePctFinalFromArcaneSurge = 6272, - - /// - /// support_arcane_surge_duration_ms - /// - SupportArcaneSurgeDurationMs = 6273, - - /// - /// support_arcane_surge_base_duration_ms - /// - SupportArcaneSurgeBaseDurationMs = 6274, - - /// - /// support_arcane_surge_cast_speed_+% - /// - SupportArcaneSurgeCastSpeedPct = 6275, - - /// - /// support_arcane_surge_mana_regeneration_rate_per_minute_% - /// - SupportArcaneSurgeManaRegenerationRatePerMinutePct = 6276, - - /// - /// hidden_monster_can_have_auras - /// - HiddenMonsterCanHaveAuras = 6277, - - /// - /// projectile_number_of_targets_to_pierce - /// - ProjectileNumberOfTargetsToPierce = 6278, - - /// - /// arrow_number_of_targets_to_pierce - /// - ArrowNumberOfTargetsToPierce = 6279, - - /// - /// projectile_base_number_of_targets_to_pierce - /// - ProjectileBaseNumberOfTargetsToPierce = 6280, - - /// - /// arrow_base_number_of_targets_to_pierce - /// - ArrowBaseNumberOfTargetsToPierce = 6281, - - /// - /// arrows_always_pierce - /// - ArrowsAlwaysPierce = 6282, - - /// - /// base_arrows_always_pierce - /// - BaseArrowsAlwaysPierce = 6283, - - /// - /// virtual_always_pierce - /// - VirtualAlwaysPierce = 6284, - - /// - /// support_ignite_prolif_ignite_damage_+%_final - /// - SupportIgniteProlifIgniteDamagePctFinal = 6285, - - /// - /// combined_ailment_all_damage_over_time_+%_final - /// - CombinedAilmentAllDamageOverTimePctFinal = 6286, - - /// - /// projectiles_always_pierce_you - /// - ProjectilesAlwaysPierceYou = 6287, - - /// - /// arrow_damage_+%_vs_pierced_targets - /// - ArrowDamagePctVsPiercedTargets = 6288, - - /// - /// projectiles_pierce_x_additional_targets_while_you_have_phasing - /// - ProjectilesPierceXAdditionalTargetsWhileYouHavePhasing = 6289, - - /// - /// quiver_projectiles_pierce_1_additional_target - /// - QuiverProjectilesPierce1AdditionalTarget = 6290, - - /// - /// quiver_projectiles_pierce_2_additional_targets - /// - QuiverProjectilesPierce2AdditionalTargets = 6291, - - /// - /// quiver_projectiles_pierce_3_additional_targets - /// - QuiverProjectilesPierce3AdditionalTargets = 6292, - - /// - /// projectiles_pierce_all_nearby_targets - /// - ProjectilesPierceAllNearbyTargets = 6293, - - /// - /// projectiles_pierce_1_additional_target_per_10_stat_value - /// - ProjectilesPierce1AdditionalTargetPer10StatValue = 6294, - - /// - /// projectiles_pierce_1_additional_target_per_15_stat_value - /// - ProjectilesPierce1AdditionalTargetPer15StatValue = 6295, - - /// - /// talisman_implicit_projectiles_pierce_1_additional_target_per_10 - /// - TalismanImplicitProjectilesPierce1AdditionalTargetPer10 = 6296, - - /// - /// blade_vortex_ailment_damage_+%_per_blade_final - /// - BladeVortexAilmentDamagePctPerBladeFinal = 6297, - - /// - /// bladefall_width_+% - /// - BladefallWidthPct = 6298, - - /// - /// lightning_strike_additional_pierce_per_10_old - /// - LightningStrikeAdditionalPiercePer10Old = 6299, - - /// - /// lightning_strike_additional_pierce - /// - LightningStrikeAdditionalPierce = 6300, - - /// - /// lightning_trap_additional_pierce_per_10_old - /// - LightningTrapAdditionalPiercePer10Old = 6301, - - /// - /// lightning_trap_additional_pierce - /// - LightningTrapAdditionalPierce = 6302, - - /// - /// support_poison_poison_damage_+%_final - /// - SupportPoisonPoisonDamagePctFinal = 6303, - - /// - /// attacks_chance_to_poison_%_on_max_frenzy_charges - /// - AttacksChanceToPoisonPctOnMaxFrenzyCharges = 6304, - - /// - /// chance_to_poison_%_vs_cursed_enemies - /// - ChanceToPoisonPctVsCursedEnemies = 6305, - - /// - /// chaos_damage_chance_to_poison_% - /// - ChaosDamageChanceToPoisonPct = 6306, - - /// - /// virtual_chance_to_poison_on_hit_with_attacks_% - /// - VirtualChanceToPoisonOnHitWithAttacksPct = 6307, - - /// - /// support_innervate_minimum_added_lightning_damage - /// - SupportInnervateMinimumAddedLightningDamage = 6308, - - /// - /// support_innervate_maximum_added_lightning_damage - /// - SupportInnervateMaximumAddedLightningDamage = 6309, - - /// - /// support_innervate_buff_duration_ms - /// - SupportInnervateBuffDurationMs = 6310, - - /// - /// support_innervate_buff_base_duration_ms - /// - SupportInnervateBuffBaseDurationMs = 6311, - - /// - /// local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius - /// - LocalUniqueJewelSparkProjectilesNovaWith40IntInRadius = 6312, - - /// - /// spark_projectiles_nova - /// - SparkProjectilesNova = 6313, - - /// - /// local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius - /// - LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith40IntInRadius = 6314, - - /// - /// spark_number_of_additional_projectiles - /// - SparkNumberOfAdditionalProjectiles = 6315, - - /// - /// local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius - /// - LocalUniqueJewelBlightHinderEnemyChaosDamageTakenPctWith40IntInRadius = 6316, - - /// - /// blight_hinder_enemy_chaos_damage_taken_+% - /// - BlightHinderEnemyChaosDamageTakenPct = 6317, - - /// - /// local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius - /// - LocalUniqueJewelBlightHinderDurationPctWith40IntInRadius = 6318, - - /// - /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius - /// - LocalUniqueJewelSplitArrowProjectilesFireInParallelXDistWith40DexInRadius = 6319, - - /// - /// split_arrow_projectiles_fire_in_parallel_x_dist - /// - SplitArrowProjectilesFireInParallelXDist = 6320, - - /// - /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_y_dist_with_40_dex_in_radius - /// - LocalUniqueJewelSplitArrowProjectilesFireInParallelYDistWith40DexInRadius = 6321, - - /// - /// split_arrow_projectiles_fire_in_parallel_y_dist - /// - SplitArrowProjectilesFireInParallelYDist = 6322, - - /// - /// local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius - /// - LocalUniqueJewelFireTrapNumberOfAdditionalTrapsToThrowWith40DexInRadius = 6323, - - /// - /// fire_trap_number_of_additional_traps_to_throw - /// - FireTrapNumberOfAdditionalTrapsToThrow = 6324, - - /// - /// piercing_projectiles_critical_strike_chance_+% - /// - PiercingProjectilesCriticalStrikeChancePct = 6325, - - /// - /// arrow_damage_+50%_vs_pierced_targets - /// - ArrowDamage50PctVsPiercedTargets = 6326, - - /// - /// arrows_pierce_additional_target - /// - ArrowsPierceAdditionalTarget = 6327, - - /// - /// ice_shot_additional_pierce_per_10_old - /// - IceShotAdditionalPiercePer10Old = 6328, - - /// - /// local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius - /// - LocalUniqueJewelIceShotAdditionalPiercePer10OldWith40DexInRadius = 6329, - - /// - /// virtual_cooldown_modifier_ms - /// - VirtualCooldownModifierMs = 6330, - - /// - /// base_cooldown_modifier_ms - /// - BaseCooldownModifierMs = 6331, - - /// - /// summon_skeletons_cooldown_modifier_ms - /// - SummonSkeletonsCooldownModifierMs = 6332, - - /// - /// trigger_cascade_use_contact_points - /// - TriggerCascadeUseContactPoints = 6333, - - /// - /// arrows_pierce_1_additional_target_per_10_stat_value - /// - ArrowsPierce1AdditionalTargetPer10StatValue = 6334, - - /// - /// summon_skeletons_additional_warrior_skeleton_%_chance - /// - SummonSkeletonsAdditionalWarriorSkeletonPctChance = 6335, - - /// - /// map_spawn_harbingers - /// - MapSpawnHarbingers = 6336, - - /// - /// map_num_extra_harbingers - /// - MapNumExtraHarbingers = 6337, - - /// - /// map_packs_are_lunaris - /// - MapPacksAreLunaris = 6338, - - /// - /// map_packs_are_solaris - /// - MapPacksAreSolaris = 6339, - - /// - /// map_packs_are_ghosts - /// - MapPacksAreGhosts = 6340, - - /// - /// skeletal_chains_no_minions_radius_+ - /// - SkeletalChainsNoMinionsRadius = 6341, - - /// - /// skeletal_chains_no_minions_targets_self - /// - SkeletalChainsNoMinionsTargetsSelf = 6342, - - /// - /// ice_shot_pierce_+ - /// - IceShotPierce = 6343, - - /// - /// local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius - /// - LocalUniqueJewelIceShotPierceWith40DexInRadius = 6344, - - /// - /// non_damaging_ailment_effect_+% - /// - NonDamagingAilmentEffectPct = 6345, - - /// - /// bleeding_stacks_up_to_x_times - /// - BleedingStacksUpToXTimes = 6346, - - /// - /// energy_shield_recharge_start_when_stunned - /// - EnergyShieldRechargeStartWhenStunned = 6347, - - /// - /// no_extra_bleed_damage_while_target_is_moving - /// - NoExtraBleedDamageWhileTargetIsMoving = 6348, - - /// - /// track_which_enemies_hit_index - /// - TrackWhichEnemiesHitIndex = 6349, - - /// - /// track_skill_used_index - /// - TrackSkillUsedIndex = 6350, - - /// - /// skill_behaviour_variation - /// - SkillBehaviourVariation = 6351, - - /// - /// trigger_skill_restriction - /// - TriggerSkillRestriction = 6352, - - /// - /// prophecy_monster_spawn_level - /// - ProphecyMonsterSpawnLevel = 6353, - - /// - /// number_of_skeletons_allowed_per_2_old - /// - NumberOfSkeletonsAllowedPer2Old = 6354, - - /// - /// cast_on_trigger_cascade_event - /// - CastOnTriggerCascadeEvent = 6355, - - /// - /// spark_skill_effect_duration_+% - /// - SparkSkillEffectDurationPct = 6356, - - /// - /// support_innervate_gain_buff_on_killing_shocked_enemy - /// - SupportInnervateGainBuffOnKillingShockedEnemy = 6357, - - /// - /// additional_critical_strike_chance_permyriad_while_at_maximum_power_charges - /// - AdditionalCriticalStrikeChancePermyriadWhileAtMaximumPowerCharges = 6358, - - /// - /// object_inherent_spell_damage_+%_final_per_power_charge - /// - ObjectInherentSpellDamagePctFinalPerPowerCharge = 6359, - - /// - /// damage_over_time_+%_per_frenzy_charge - /// - DamageOverTimePctPerFrenzyCharge = 6360, - - /// - /// damage_over_time_+%_per_power_charge - /// - DamageOverTimePctPerPowerCharge = 6361, - - /// - /// gain_frenzy_and_power_charge_on_kill_% - /// - GainFrenzyAndPowerChargeOnKillPct = 6362, - - /// - /// maximum_power_and_frenzy_charges_+ - /// - MaximumPowerAndFrenzyCharges = 6363, - - /// - /// labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+% - /// - LabyrinthDarkshrinePlayersDamageTakenFromLabyrinthTrapsPct = 6364, - - /// - /// labyrinth_darkshrine_boss_room_traps_are_disabled - /// - LabyrinthDarkshrineBossRoomTrapsAreDisabled = 6365, - - /// - /// labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth - /// - LabyrinthDarkshrinePlayersHaveShrineRowXEffectForThisLabyrinth = 6366, - - /// - /// labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x - /// - LabyrinthDarkshrineDivineFontGrantsOneAdditionalEnchantmentUseToPlayerX = 6367, - - /// - /// labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys - /// - LabyrinthDarkshrineIzaroDropsXAdditionalTreasureKeys = 6368, - - /// - /// damage_taken_from_labyrinth_traps_+% - /// - DamageTakenFromLabyrinthTrapsPct = 6369, - - /// - /// labyrinth_darkshrine_izaro_dropped_unique_items_+ - /// - LabyrinthDarkshrineIzaroDroppedUniqueItems = 6370, - - /// - /// convocation_max_number_of_minions_to_teleport - /// - ConvocationMaxNumberOfMinionsToTeleport = 6371, - - /// - /// local_chance_to_bleed_on_hit_25% - /// - LocalChanceToBleedOnHit25Pct = 6372, - - /// - /// main_hand_local_chance_to_bleed_on_hit_25% - /// - MainHandLocalChanceToBleedOnHit25Pct = 6373, - - /// - /// off_hand_local_chance_to_bleed_on_hit_25% - /// - OffHandLocalChanceToBleedOnHit25Pct = 6374, - - /// - /// recover_%_maximum_mana_on_kill - /// - RecoverPctMaximumManaOnKill = 6375, - - /// - /// arctic_armour_chill_when_hit_duration - /// - ArcticArmourChillWhenHitDuration = 6376, - - /// - /// debuff_time_passed_+% - /// - DebuffTimePassedPct = 6377, - - /// - /// skill_is_channelled - /// - SkillIsChannelled = 6378, - - /// - /// channelled_skill_damage_+% - /// - ChannelledSkillDamagePct = 6379, - - /// - /// local_display_socketed_gems_supported_by_x_innervate_level - /// - LocalDisplaySocketedGemsSupportedByXInnervateLevel = 6380, - - /// - /// local_display_summon_harbinger_x_on_equip - /// - LocalDisplaySummonHarbingerXOnEquip = 6381, - - /// - /// skeleton_movement_speed_+% - /// - SkeletonMovementSpeedPct = 6382, - - /// - /// skeleton_attack_speed_+% - /// - SkeletonAttackSpeedPct = 6383, - - /// - /// skeleton_cast_speed_+% - /// - SkeletonCastSpeedPct = 6384, - - /// - /// physical_damage_over_time_taken_+% - /// - PhysicalDamageOverTimeTakenPct = 6385, - - /// - /// summon_skeletons_additional_warrior_skeleton_one_twentieth_chance - /// - SummonSkeletonsAdditionalWarriorSkeletonOneTwentiethChance = 6386, - - /// - /// leapslam_overshoot_distance - /// - LeapslamOvershootDistance = 6387, - - /// - /// skill_is_projectile_skill - /// - SkillIsProjectileSkill = 6388, - - /// - /// projectile_attack_skill_critical_strike_chance_+% - /// - ProjectileAttackSkillCriticalStrikeChancePct = 6389, - - /// - /// storm_burst_avoid_interruption_while_casting_% - /// - StormBurstAvoidInterruptionWhileCastingPct = 6390, - - /// - /// storm_burst_area_of_effect_+% - /// - StormBurstAreaOfEffectPct = 6391, - - /// - /// skeletal_chains_cast_speed_+% - /// - SkeletalChainsCastSpeedPct = 6392, - - /// - /// skeletal_chains_area_of_effect_+% - /// - SkeletalChainsAreaOfEffectPct = 6393, - - /// - /// unique_volkuurs_clutch_poison_duration_+%_final - /// - UniqueVolkuursClutchPoisonDurationPctFinal = 6394, - - /// - /// combined_poison_duration_+%_final - /// - CombinedPoisonDurationPctFinal = 6395, - - /// - /// local_display_trigger_level_X_darktongue_kiss_on_curse - /// - LocalDisplayTriggerLevelXDarktongueKissOnCurse = 6396, - - /// - /// cast_when_cast_curse_% - /// - CastWhenCastCursePct = 6397, - - /// - /// move_daemon_number_of_daemons_to_spawn - /// - MoveDaemonNumberOfDaemonsToSpawn = 6398, - - /// - /// move_daemon_movement_speed - /// - MoveDaemonMovementSpeed = 6399, - - /// - /// move_daemon_distance_to_travel - /// - MoveDaemonDistanceToTravel = 6400, - - /// - /// move_daemon_delay_between_daemons_ms - /// - MoveDaemonDelayBetweenDaemonsMs = 6401, - - /// - /// move_daemon_rotation - /// - MoveDaemonRotation = 6402, - - /// - /// move_daemon_rotation_per_daemon - /// - MoveDaemonRotationPerDaemon = 6403, - - /// - /// move_daemon_end_rotation - /// - MoveDaemonEndRotation = 6404, - - /// - /// move_daemon_end_rotation_per_daemon - /// - MoveDaemonEndRotationPerDaemon = 6405, - - /// - /// move_daemon_x_offset - /// - MoveDaemonXOffset = 6406, - - /// - /// move_daemon_y_offset - /// - MoveDaemonYOffset = 6407, - - /// - /// move_daemon_x_offset_per_daemon - /// - MoveDaemonXOffsetPerDaemon = 6408, - - /// - /// move_daemon_y_offset_per_daemon - /// - MoveDaemonYOffsetPerDaemon = 6409, - - /// - /// move_daemon_pivot_variation - /// - MoveDaemonPivotVariation = 6410, - - /// - /// harbinger_minion_damage_taken_+%_final_min - /// - HarbingerMinionDamageTakenPctFinalMin = 6411, - - /// - /// harbinger_minion_damage_taken_+%_final_max - /// - HarbingerMinionDamageTakenPctFinalMax = 6412, - - /// - /// harbinger_minion_damage_taken_+%_final_time - /// - HarbingerMinionDamageTakenPctFinalTime = 6413, - - /// - /// harbinger_minion_rare_chance_% - /// - HarbingerMinionRareChancePct = 6414, - - /// - /// harbinger_minion_magic_chance_% - /// - HarbingerMinionMagicChancePct = 6415, - - /// - /// harbinger_minion_remove_parent_life_on_death_permyriad - /// - HarbingerMinionRemoveParentLifeOnDeathPermyriad = 6416, - - /// - /// critical_strike_chance_increased_by_lightning_resistance - /// - CriticalStrikeChanceIncreasedByLightningResistance = 6417, - - /// - /// piercing_projectiles_critical_strike_chance_+100% - /// - PiercingProjectilesCriticalStrikeChance100Pct = 6418, - - /// - /// cast_on_skill_use_% - /// - CastOnSkillUsePct = 6419, - - /// - /// local_display_trigger_level_X_void_gaze_on_skill_use - /// - LocalDisplayTriggerLevelXVoidGazeOnSkillUse = 6420, - - /// - /// cannot_be_stunned_if_you_have_blocked_a_stun_recently - /// - CannotBeStunnedIfYouHaveBlockedAStunRecently = 6421, - - /// - /// track_have_blocked_a_stun_recently - /// - TrackHaveBlockedAStunRecently = 6422, - - /// - /// have_blocked_a_stun_recently - /// - HaveBlockedAStunRecently = 6423, - - /// - /// local_display_trigger_level_x_storm_cascade_on_attack - /// - LocalDisplayTriggerLevelXStormCascadeOnAttack = 6424, - - /// - /// empty_action_state_value - /// - EmptyActionStateValue = 6425, - - /// - /// minimum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - MinimumAddedChaosDamageVsEnemiesWith5Poisons = 6426, - - /// - /// maximum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - MaximumAddedChaosDamageVsEnemiesWith5Poisons = 6427, - - /// - /// main_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - MainHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6428, - - /// - /// main_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - MainHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6429, - - /// - /// off_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - OffHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6430, - - /// - /// off_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons - /// - OffHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6431, - - /// - /// life_leech_from_attack_damage_permyriad_vs_poisoned_enemies - /// - LifeLeechFromAttackDamagePermyriadVsPoisonedEnemies = 6432, - - /// - /// poison_duration_+%_per_power_charge - /// - PoisonDurationPctPerPowerCharge = 6433, - - /// - /// poison_damage_+%_per_frenzy_charge - /// - PoisonDamagePctPerFrenzyCharge = 6434, - - /// - /// gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_% - /// - GainFrenzyChargeOnKillVsEnemiesWith5PoisonsPct = 6435, - - /// - /// gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_% - /// - GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsPct = 6436, - - /// - /// local_display_socketed_gems_supported_by_X_lesser_poison - /// - LocalDisplaySocketedGemsSupportedByXLesserPoison = 6437, - - /// - /// poison_duration_+%_with_over_150_intelligence - /// - PoisonDurationPctWithOver150Intelligence = 6438, - - /// - /// poison_damage_+%_with_over_300_dexterity - /// - PoisonDamagePctWithOver300Dexterity = 6439, - - /// - /// local_display_socketed_gems_supported_by_X_vile_toxins - /// - LocalDisplaySocketedGemsSupportedByXVileToxins = 6440, - - /// - /// local_display_grants_skill_blight_level - /// - LocalDisplayGrantsSkillBlightLevel = 6441, - - /// - /// you_cannot_be_hindered - /// - YouCannotBeHindered = 6442, - - /// - /// support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits - /// - SupportMeleePhysicalDamagePoisonAndBleedingDamagePctFinalFromMeleeHits = 6443, - - /// - /// support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits - /// - SupportPhysProjAttackDamageBleeingAndPoisonDamagePctFinalFromProjectileHits = 6444, - - /// - /// support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final - /// - SupportRuthlessBlowBleedingDamageFromMeleeHitsPctFinal = 6445, - - /// - /// melee_hit_bleeding_damage_+%_final_from_ruthless_blow - /// - MeleeHitBleedingDamagePctFinalFromRuthlessBlow = 6446, - - /// - /// support_chance_to_bleed_bleeding_damage_+%_final - /// - SupportChanceToBleedBleedingDamagePctFinal = 6447, - - /// - /// charged_dash_chance_to_dodge_%_if_finished_channelling_recently - /// - ChargedDashChanceToDodgePctIfFinishedChannellingRecently = 6448, - - /// - /// charged_dash_area_of_effect_radius_+_of_final_explosion - /// - ChargedDashAreaOfEffectRadiusOfFinalExplosion = 6449, - - /// - /// additional_physical_damage_reduction_%_if_not_player - /// - AdditionalPhysicalDamageReductionPctIfNotPlayer = 6450, - - /// - /// resist_all_elements_%_if_not_player - /// - ResistAllElementsPctIfNotPlayer = 6451, - - /// - /// physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges - /// - PhysicalDamagePctToGainAsChaosWhileAtMaximumPowerCharges = 6452, - - /// - /// attack_ailment_damage_+%_while_wielding_dagger - /// - AttackAilmentDamagePctWhileWieldingDagger = 6453, - - /// - /// attack_ailment_damage_+%_while_wielding_claw - /// - AttackAilmentDamagePctWhileWieldingClaw = 6454, - - /// - /// attack_ailment_damage_+%_while_wielding_sword - /// - AttackAilmentDamagePctWhileWieldingSword = 6455, - - /// - /// attack_ailment_damage_+%_while_wielding_bow - /// - AttackAilmentDamagePctWhileWieldingBow = 6456, - - /// - /// attack_ailment_damage_+%_while_wielding_axe - /// - AttackAilmentDamagePctWhileWieldingAxe = 6457, - - /// - /// attack_ailment_damage_+%_while_wielding_mace - /// - AttackAilmentDamagePctWhileWieldingMace = 6458, - - /// - /// attack_ailment_damage_+%_while_wielding_one_handed_weapon - /// - AttackAilmentDamagePctWhileWieldingOneHandedWeapon = 6459, - - /// - /// attack_ailment_damage_+%_while_wielding_two_handed_weapon - /// - AttackAilmentDamagePctWhileWieldingTwoHandedWeapon = 6460, - - /// - /// attack_ailment_damage_+%_while_dual_wielding - /// - AttackAilmentDamagePctWhileDualWielding = 6461, - - /// - /// attack_ailment_damage_+%_while_holding_shield - /// - AttackAilmentDamagePctWhileHoldingShield = 6462, - - /// - /// attack_ailment_damage_+%_while_wielding_melee_weapon - /// - AttackAilmentDamagePctWhileWieldingMeleeWeapon = 6463, - - /// - /// combined_ailment_damage_+%_from_wielding_weapon_types - /// - CombinedAilmentDamagePctFromWieldingWeaponTypes = 6464, - - /// - /// immune_to_status_ailments - /// - ImmuneToStatusAilments = 6465, - - /// - /// chance_to_hit_while_blinded_+%_final - /// - ChanceToHitWhileBlindedPctFinal = 6466, - - /// - /// chance_to_hit_+%_final - /// - ChanceToHitPctFinal = 6467, - - /// - /// is_summoned_harbinger_monster - /// - IsSummonedHarbingerMonster = 6468, - - /// - /// ignored_by_enemy_target_selection - /// - IgnoredByEnemyTargetSelection = 6469, - - /// - /// base_ignored_by_enemy_target_selection - /// - BaseIgnoredByEnemyTargetSelection = 6470, - - /// - /// map_packs_have_belly_totems - /// - MapPacksHaveBellyTotems = 6471, - - /// - /// harbinger_minion_max_magic_count - /// - HarbingerMinionMaxMagicCount = 6472, - - /// - /// harbinger_minion_max_rare_count - /// - HarbingerMinionMaxRareCount = 6473, - - /// - /// cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds - /// - CannotBeStunnedIfHaveBeenStunnedOrBlockedStunningHitInPast2Seconds = 6474, - - /// - /// glacial_cascade_number_of_additional_bursts - /// - GlacialCascadeNumberOfAdditionalBursts = 6475, - - /// - /// local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius - /// - LocalUniqueJewelGlacialCascadeNumberOfAdditionalBurstsWith40IntInRadius = 6476, - - /// - /// number_of_active_beast_minions - /// - NumberOfActiveBeastMinions = 6477, - - /// - /// projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion - /// - ProjectileAttacksChanceToBleedOnHitPctIfYouHaveBeastMinion = 6478, - - /// - /// attack_minimum_added_physical_damage_if_you_have_beast_minion - /// - AttackMinimumAddedPhysicalDamageIfYouHaveBeastMinion = 6479, - - /// - /// attack_maximum_added_physical_damage_if_you_have_beast_minion - /// - AttackMaximumAddedPhysicalDamageIfYouHaveBeastMinion = 6480, - - /// - /// projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion - /// - ProjectileAttacksChanceToMaimOnHitPctIfYouHaveBeastMinion = 6481, - - /// - /// attack_and_movement_speed_+%_if_you_have_beast_minion - /// - AttackAndMovementSpeedPctIfYouHaveBeastMinion = 6482, - - /// - /// projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion - /// - ProjectileAttacksChanceToPoisonOnHitPctIfYouHaveBeastMinion = 6483, - - /// - /// attack_minimum_added_chaos_damage_if_you_have_beast_minion - /// - AttackMinimumAddedChaosDamageIfYouHaveBeastMinion = 6484, - - /// - /// attack_maximum_added_chaos_damage_if_you_have_beast_minion - /// - AttackMaximumAddedChaosDamageIfYouHaveBeastMinion = 6485, - - /// - /// local_bleed_on_critical_strike_chance_% - /// - LocalBleedOnCriticalStrikeChancePct = 6486, - - /// - /// main_hand_local_bleed_on_critical_strike_chance_% - /// - MainHandLocalBleedOnCriticalStrikeChancePct = 6487, - - /// - /// off_hand_local_bleed_on_critical_strike_chance_% - /// - OffHandLocalBleedOnCriticalStrikeChancePct = 6488, - - /// - /// local_poison_on_critical_strike_chance_% - /// - LocalPoisonOnCriticalStrikeChancePct = 6489, - - /// - /// main_hand_local_poison_on_critical_strike_chance_% - /// - MainHandLocalPoisonOnCriticalStrikeChancePct = 6490, - - /// - /// off_hand_local_poison_on_critical_strike_chance_% - /// - OffHandLocalPoisonOnCriticalStrikeChancePct = 6491, - - /// - /// virtual_main_hand_chance_to_bleed_on_critical_strike_% - /// - VirtualMainHandChanceToBleedOnCriticalStrikePct = 6492, - - /// - /// virtual_off_hand_chance_to_bleed_on_critical_strike_% - /// - VirtualOffHandChanceToBleedOnCriticalStrikePct = 6493, - - /// - /// local_chance_to_bleed_on_crit_50% - /// - LocalChanceToBleedOnCrit50Pct = 6494, - - /// - /// main_hand_local_chance_to_bleed_on_crit_50% - /// - MainHandLocalChanceToBleedOnCrit50Pct = 6495, - - /// - /// off_hand_local_chance_to_bleed_on_crit_50% - /// - OffHandLocalChanceToBleedOnCrit50Pct = 6496, - - /// - /// cast_on_attack_use_% - /// - CastOnAttackUsePct = 6497, - - /// - /// ignite_slower_burn_% - /// - IgniteSlowerBurnPct = 6498, - - /// - /// virtual_ignite_duration_+%_final - /// - VirtualIgniteDurationPctFinal = 6499, - - /// - /// object_inherent_damage_+%_final_per_frenzy_charge - /// - ObjectInherentDamagePctFinalPerFrenzyCharge = 6500, - - /// - /// local_maim_on_hit_% - /// - LocalMaimOnHitPct = 6501, - - /// - /// main_hand_local_maim_on_hit_% - /// - MainHandLocalMaimOnHitPct = 6502, - - /// - /// off_hand_local_maim_on_hit_% - /// - OffHandLocalMaimOnHitPct = 6503, - - /// - /// life_leech_from_attack_damage_permyriad_vs_maimed_enemies - /// - LifeLeechFromAttackDamagePermyriadVsMaimedEnemies = 6504, - - /// - /// local_display_grants_skill_death_aura_level - /// - LocalDisplayGrantsSkillDeathAuraLevel = 6505, - - /// - /// chilled_ground_base_magnitude_override - /// - ChilledGroundBaseMagnitudeOverride = 6506, - - /// - /// shocked_ground_base_magnitude_override - /// - ShockedGroundBaseMagnitudeOverride = 6507, - - /// - /// harbinger_base_currency_shard_stack_tenths_to_drop - /// - HarbingerBaseCurrencyShardStackTenthsToDrop = 6508, - - /// - /// charged_dash_damage_+% - /// - ChargedDashDamagePct = 6509, - - /// - /// storm_burst_damage_+% - /// - StormBurstDamagePct = 6510, - - /// - /// skeletal_chains_damage_+% - /// - SkeletalChainsDamagePct = 6511, - - /// - /// whirling_blades_base_ground_chaos_damage_to_deal_per_minute - /// - WhirlingBladesBaseGroundChaosDamageToDealPerMinute = 6512, - - /// - /// chill_and_freeze_duration_+% - /// - ChillAndFreezeDurationPct = 6513, - - /// - /// local_chance_to_bleed_on_hit_50% - /// - LocalChanceToBleedOnHit50Pct = 6514, - - /// - /// main_hand_local_chance_to_bleed_on_hit_50% - /// - MainHandLocalChanceToBleedOnHit50Pct = 6515, - - /// - /// off_hand_local_chance_to_bleed_on_hit_50% - /// - OffHandLocalChanceToBleedOnHit50Pct = 6516, - - /// - /// arrows_that_pierce_chance_to_bleed_25% - /// - ArrowsThatPierceChanceToBleed25Pct = 6517, - - /// - /// attacks_chance_to_bleed_25%_vs_cursed_enemies - /// - AttacksChanceToBleed25PctVsCursedEnemies = 6518, - - /// - /// damage_taken_+%_final - /// - DamageTakenPctFinal = 6519, - - /// - /// display_one_harbinger_allowed - /// - DisplayOneHarbingerAllowed = 6520, - - /// - /// action_speed_+%_minimum_value - /// - ActionSpeedPctMinimumValue = 6521, - - /// - /// shavronne_ball_lightning_held_projectile_damage_+%_final - /// - ShavronneBallLightningHeldProjectileDamagePctFinal = 6522, - - /// - /// grant_rampage_kill_to_parent_on_hitting_unique_enemy_% - /// - GrantRampageKillToParentOnHittingUniqueEnemyPct = 6523, - - /// - /// minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_% - /// - MinionGrantsRampageKillToParentOnHittingUniqueEnemyPct = 6524, - - /// - /// monster_inherent_experience_granted_+%_final_because_deleted_on_death - /// - MonsterInherentExperienceGrantedPctFinalBecauseDeletedOnDeath = 6525, - - /// - /// monster_inherent_experience_granted_+%_final_if_deleted_on_death - /// - MonsterInherentExperienceGrantedPctFinalIfDeletedOnDeath = 6526, - - /// - /// harbinger_minion_extra_monster_chance_% - /// - HarbingerMinionExtraMonsterChancePct = 6527, - - /// - /// harbinger_minion_max_extra_monsters_count - /// - HarbingerMinionMaxExtraMonstersCount = 6528, - - /// - /// harbinger_minion_damage_taken_+%_final - /// - HarbingerMinionDamageTakenPctFinal = 6529, - - /// - /// virtual_total_main_hand_chance_to_bleed_on_hit_% - /// - VirtualTotalMainHandChanceToBleedOnHitPct = 6530, - - /// - /// virtual_total_off_hand_chance_to_bleed_on_hit_% - /// - VirtualTotalOffHandChanceToBleedOnHitPct = 6531, - - /// - /// virtual_total_main_hand_chance_to_ignite_on_hit_% - /// - VirtualTotalMainHandChanceToIgniteOnHitPct = 6532, - - /// - /// virtual_total_off_hand_chance_to_ignite_on_hit_% - /// - VirtualTotalOffHandChanceToIgniteOnHitPct = 6533, - - /// - /// virtual_total_spell_chance_to_ignite_on_hit_% - /// - VirtualTotalSpellChanceToIgniteOnHitPct = 6534, - - /// - /// virtual_total_secondary_chance_to_ignite_on_hit_% - /// - VirtualTotalSecondaryChanceToIgniteOnHitPct = 6535, - - /// - /// virtual_total_main_hand_chance_to_poison_on_hit_% - /// - VirtualTotalMainHandChanceToPoisonOnHitPct = 6536, - - /// - /// virtual_total_off_hand_chance_to_poison_on_hit_% - /// - VirtualTotalOffHandChanceToPoisonOnHitPct = 6537, - - /// - /// virtual_total_spell_chance_to_poison_on_hit_% - /// - VirtualTotalSpellChanceToPoisonOnHitPct = 6538, - - /// - /// virtual_total_secondary_chance_to_poison_on_hit_% - /// - VirtualTotalSecondaryChanceToPoisonOnHitPct = 6539, - - /// - /// total_number_of_map_mods - /// - TotalNumberOfMapMods = 6540, - - /// - /// harbinger_currency_shard_stack_size_+% - /// - HarbingerCurrencyShardStackSizePct = 6541, - - /// - /// map_force_monster_pack_index - /// - MapForceMonsterPackIndex = 6542, - - /// - /// volatile_dead_base_number_of_corpses_to_consume - /// - VolatileDeadBaseNumberOfCorpsesToConsume = 6543, - - /// - /// chance_to_cast_when_your_trap_is_triggered_% - /// - ChanceToCastWhenYourTrapIsTriggeredPct = 6544, - - /// - /// local_display_gain_power_charge_on_spending_mana - /// - LocalDisplayGainPowerChargeOnSpendingMana = 6545, - - /// - /// is_untethered_pet - /// - IsUntetheredPet = 6546, - - /// - /// walk_emerge_distance - /// - WalkEmergeDistance = 6547, - - /// - /// walk_emerge_extra_distance - /// - WalkEmergeExtraDistance = 6548, - - /// - /// walk_emerge_height_offset - /// - WalkEmergeHeightOffset = 6549, - - /// - /// walk_emerge_tilt - /// - WalkEmergeTilt = 6550, - - /// - /// combined_armour_and_evasion_rating_+% - /// - CombinedArmourAndEvasionRatingPct = 6551, - - /// - /// herald_of_ash_burning_%_overkill_damage_per_minute - /// - HeraldOfAshBurningPctOverkillDamagePerMinute = 6552, - - /// - /// local_display_grants_skill_scorching_ray_level - /// - LocalDisplayGrantsSkillScorchingRayLevel = 6553, - - /// - /// support_minion_maximum_life_+%_final - /// - SupportMinionMaximumLifePctFinal = 6554, - - /// - /// max_life_+%_final_for_minion_from_support - /// - MaxLifePctFinalForMinionFromSupport = 6555, - - /// - /// lightning_tendrils_channelled_larger_pulse_radius_+ - /// - LightningTendrilsChannelledLargerPulseRadius = 6556, - - /// - /// lightning_tendrils_channelled_larger_pulse_damage_+%_final - /// - LightningTendrilsChannelledLargerPulseDamagePctFinal = 6557, - - /// - /// discorectangle_slam_damage_with_endurance_charge_+%_final - /// - DiscorectangleSlamDamageWithEnduranceChargePctFinal = 6558, - - /// - /// discorectangle_slam_radius_with_endurance_charge_+ - /// - DiscorectangleSlamRadiusWithEnduranceCharge = 6559, - - /// - /// unearth_base_corpse_level - /// - UnearthBaseCorpseLevel = 6560, - - /// - /// map_tencent_event_shards_drop_rate - /// - MapTencentEventShardsDropRate = 6561, - - /// - /// map_tencent_event_coins_drop_rate - /// - MapTencentEventCoinsDropRate = 6562, - - /// - /// is_in_caustic_cloud - /// - IsInCausticCloud = 6563, - - /// - /// chaos_damage_taken_over_time_+%_while_in_caustic_cloud - /// - ChaosDamageTakenOverTimePctWhileInCausticCloud = 6564, - - /// - /// local_can_socket_gems_ignoring_colour - /// - LocalCanSocketGemsIgnoringColour = 6565, - - /// - /// local_no_attribute_requirements - /// - LocalNoAttributeRequirements = 6566, - - /// - /// local_socketed_gems_in_red_sockets_get_level_+ - /// - LocalSocketedGemsInRedSocketsGetLevel = 6567, - - /// - /// local_socketed_gems_in_green_sockets_get_quality_% - /// - LocalSocketedGemsInGreenSocketsGetQualityPct = 6568, - - /// - /// local_socketed_gems_in_blue_sockets_experience_gained_+% - /// - LocalSocketedGemsInBlueSocketsExperienceGainedPct = 6569, - - /// - /// local_socketed_gems_in_white_sockets_get_nothing - /// - LocalSocketedGemsInWhiteSocketsGetNothing = 6570, - - /// - /// corpse_erruption_base_maximum_number_of_geyers - /// - CorpseErruptionBaseMaximumNumberOfGeyers = 6571, - - /// - /// thaumaturgy_rotation_active - /// - ThaumaturgyRotationActive = 6572, - - /// - /// thaumaturgy_rotation_buff_exists - /// - ThaumaturgyRotationBuffExists = 6573, - - /// - /// trigger_on_delayed_blast - /// - TriggerOnDelayedBlast = 6574, - - /// - /// trigger_on_delayed_blast_% - /// - TriggerOnDelayedBlastPct = 6575, - - /// - /// delayed_blast_has_trigger - /// - DelayedBlastHasTrigger = 6576, - - /// - /// spirit_charge_tier - /// - SpiritChargeTier = 6577, - - /// - /// current_spirit_charges - /// - CurrentSpiritCharges = 6578, - - /// - /// maximum_spirit_charges - /// - MaximumSpiritCharges = 6579, - - /// - /// recover_%_of_maximum_life_on_gaining_a_spirit_charge - /// - RecoverPctOfMaximumLifeOnGainingASpiritCharge = 6580, - - /// - /// corpse_skill_has_triggers - /// - CorpseSkillHasTriggers = 6581, - - /// - /// cast_on_corpse_consume - /// - CastOnCorpseConsume = 6582, - - /// - /// cast_on_corpse_consume_% - /// - CastOnCorpseConsumePct = 6583, - - /// - /// cast_on_damage_taken_also_tracks_dot - /// - CastOnDamageTakenAlsoTracksDot = 6584, - - /// - /// thrown_shield_projectile_max_distance - /// - ThrownShieldProjectileMaxDistance = 6585, - - /// - /// thrown_shield_projectile_fire_random_directions - /// - ThrownShieldProjectileFireRandomDirections = 6586, - - /// - /// thrown_shield_secondary_projectile_damage_+%_final - /// - ThrownShieldSecondaryProjectileDamagePctFinal = 6587, - - /// - /// cast_on_corpse_consume_id - /// - CastOnCorpseConsumeId = 6588, - - /// - /// gain_random_charge_per_second_while_stationary - /// - GainRandomChargePerSecondWhileStationary = 6589, - - /// - /// lose_all_charges_on_starting_movement - /// - LoseAllChargesOnStartingMovement = 6590, - - /// - /// mana_regeneration_rate_per_minute_per_power_charge - /// - ManaRegenerationRatePerMinutePerPowerCharge = 6591, - - /// - /// spectre_maximum_life_+ - /// - SpectreMaximumLife = 6592, - - /// - /// accuracy_rating_while_at_maximum_frenzy_charges - /// - AccuracyRatingWhileAtMaximumFrenzyCharges = 6593, - - /// - /// display_map_inhabited_by_solaris_fanatics - /// - DisplayMapInhabitedBySolarisFanatics = 6594, - - /// - /// display_map_inhabited_by_lunaris_fanatics - /// - DisplayMapInhabitedByLunarisFanatics = 6595, - - /// - /// map_elder_boss_variation - /// - MapElderBossVariation = 6596, - - /// - /// ignite_triggered_ground_fire_base_damage_per_minute - /// - IgniteTriggeredGroundFireBaseDamagePerMinute = 6597, - - /// - /// virtual_shock_effect_+% - /// - VirtualShockEffectPct = 6598, - - /// - /// virtual_chill_effect_+% - /// - VirtualChillEffectPct = 6599, - - /// - /// local_unique_jewel_non_keystone_passive_in_radius_effect_+% - /// - LocalUniqueJewelNonKeystonePassiveInRadiusEffectPct = 6600, - - /// - /// local_unique_jewel_notable_passive_in_radius_does_nothing - /// - LocalUniqueJewelNotablePassiveInRadiusDoesNothing = 6601, - - /// - /// passive_skill_does_nothing - /// - PassiveSkillDoesNothing = 6602, - - /// - /// local_unique_hungry_loop_number_of_gems_to_consume - /// - LocalUniqueHungryLoopNumberOfGemsToConsume = 6603, - - /// - /// local_unique_hungry_loop_has_consumed_gem - /// - LocalUniqueHungryLoopHasConsumedGem = 6604, - - /// - /// local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles - /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterMultipleProjectiles = 6605, - - /// - /// local_display_socketed_gems_supported_by_level_x_increased_critical_strikes - /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedCriticalStrikes = 6606, - - /// - /// local_display_socketed_gems_supported_by_level_x_item_quantity - /// - LocalDisplaySocketedGemsSupportedByLevelXItemQuantity = 6607, - - /// - /// local_display_socketed_gems_supported_by_level_x_item_rarity - /// - LocalDisplaySocketedGemsSupportedByLevelXItemRarity = 6608, - - /// - /// local_display_socketed_gems_supported_by_level_x_increased_duration - /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedDuration = 6609, - - /// - /// local_display_socketed_gems_supported_by_level_x_chance_to_ignite - /// - LocalDisplaySocketedGemsSupportedByLevelXChanceToIgnite = 6610, - - /// - /// local_display_socketed_gems_supported_by_level_x_bloodlust - /// - LocalDisplaySocketedGemsSupportedByLevelXBloodlust = 6611, - - /// - /// local_display_socketed_gems_supported_by_level_x_life_gain_on_hit - /// - LocalDisplaySocketedGemsSupportedByLevelXLifeGainOnHit = 6612, - - /// - /// local_display_socketed_gems_supported_by_level_x_culling_strike - /// - LocalDisplaySocketedGemsSupportedByLevelXCullingStrike = 6613, - - /// - /// local_display_socketed_gems_supported_by_level_x_point_blank - /// - LocalDisplaySocketedGemsSupportedByLevelXPointBlank = 6614, - - /// - /// local_display_socketed_gems_supported_by_level_x_iron_grip - /// - LocalDisplaySocketedGemsSupportedByLevelXIronGrip = 6615, - - /// - /// local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life - /// - LocalDisplaySocketedGemsSupportedByLevelXMeleeDamageOnFullLife = 6616, - - /// - /// local_display_socketed_gems_supported_by_level_x_ranged_attack_totem - /// - LocalDisplaySocketedGemsSupportedByLevelXRangedAttackTotem = 6617, - - /// - /// local_display_socketed_gems_supported_by_level_x_fire_penetration - /// - LocalDisplaySocketedGemsSupportedByLevelXFirePenetration = 6618, - - /// - /// local_display_socketed_gems_supported_by_level_x_lightning_penetration - /// - LocalDisplaySocketedGemsSupportedByLevelXLightningPenetration = 6619, - - /// - /// local_display_socketed_gems_supported_by_level_x_chain - /// - LocalDisplaySocketedGemsSupportedByLevelXChain = 6620, - - /// - /// local_display_socketed_gems_supported_by_level_x_multicast - /// - LocalDisplaySocketedGemsSupportedByLevelXMulticast = 6621, - - /// - /// local_display_socketed_gems_supported_by_level_x_power_charge_on_crit - /// - LocalDisplaySocketedGemsSupportedByLevelXPowerChargeOnCrit = 6622, - - /// - /// local_display_socketed_gems_supported_by_level_x_increased_burning_damage - /// - LocalDisplaySocketedGemsSupportedByLevelXIncreasedBurningDamage = 6623, - - /// - /// local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance - /// - LocalDisplaySocketedGemsSupportedByLevelXSummonElementalResistance = 6624, - - /// - /// local_display_socketed_gems_supported_by_level_x_curse_on_hit - /// - LocalDisplaySocketedGemsSupportedByLevelXCurseOnHit = 6625, - - /// - /// local_display_socketed_gems_supported_by_level_x_cast_on_kill - /// - LocalDisplaySocketedGemsSupportedByLevelXCastOnKill = 6626, - - /// - /// local_display_socketed_gems_supported_by_level_x_multi_trap - /// - LocalDisplaySocketedGemsSupportedByLevelXMultiTrap = 6627, - - /// - /// local_display_socketed_gems_supported_by_level_x_empower - /// - LocalDisplaySocketedGemsSupportedByLevelXEmpower = 6628, - - /// - /// local_display_socketed_gems_supported_by_level_x_slower_projectiles - /// - LocalDisplaySocketedGemsSupportedByLevelXSlowerProjectiles = 6629, - - /// - /// local_display_socketed_gems_supported_by_level_x_reduced_duration - /// - LocalDisplaySocketedGemsSupportedByLevelXReducedDuration = 6630, - - /// - /// local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken - /// - LocalDisplaySocketedGemsSupportedByLevelXCastOnDamageTaken = 6631, - - /// - /// local_display_socketed_gems_supported_by_level_x_enhance - /// - LocalDisplaySocketedGemsSupportedByLevelXEnhance = 6632, - - /// - /// local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage - /// - LocalDisplaySocketedGemsSupportedByLevelXPhysicalProjectileAttackDamage = 6633, - - /// - /// local_display_socketed_gems_supported_by_level_x_enlighten - /// - LocalDisplaySocketedGemsSupportedByLevelXEnlighten = 6634, - - /// - /// local_display_socketed_gems_supported_by_level_x_physical_to_lightning - /// - LocalDisplaySocketedGemsSupportedByLevelXPhysicalToLightning = 6635, - - /// - /// local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage - /// - LocalDisplaySocketedGemsSupportedByLevelXTrapAndMineDamage = 6636, - - /// - /// local_display_socketed_gems_supported_by_level_x_poison - /// - LocalDisplaySocketedGemsSupportedByLevelXPoison = 6637, - - /// - /// local_display_socketed_gems_supported_by_level_x_void_manipulation - /// - LocalDisplaySocketedGemsSupportedByLevelXVoidManipulation = 6638, - - /// - /// local_display_socketed_gems_supported_by_level_x_rapid_decay - /// - LocalDisplaySocketedGemsSupportedByLevelXRapidDecay = 6639, - - /// - /// local_display_socketed_gems_supported_by_level_x_cluster_trap - /// - LocalDisplaySocketedGemsSupportedByLevelXClusterTrap = 6640, - - /// - /// local_display_socketed_gems_supported_by_level_x_elemental_focus - /// - LocalDisplaySocketedGemsSupportedByLevelXElementalFocus = 6641, - - /// - /// local_display_socketed_gems_supported_by_level_x_minefield - /// - LocalDisplaySocketedGemsSupportedByLevelXMinefield = 6642, - - /// - /// local_display_socketed_gems_supported_by_level_x_trap_cooldown - /// - LocalDisplaySocketedGemsSupportedByLevelXTrapCooldown = 6643, - - /// - /// local_display_socketed_gems_supported_by_level_x_cast_while_channelling - /// - LocalDisplaySocketedGemsSupportedByLevelXCastWhileChannelling = 6644, - - /// - /// local_display_socketed_gems_supported_by_level_x_ignite_proliferation - /// - LocalDisplaySocketedGemsSupportedByLevelXIgniteProliferation = 6645, - - /// - /// local_display_socketed_gems_supported_by_level_x_chance_to_bleed - /// - LocalDisplaySocketedGemsSupportedByLevelXChanceToBleed = 6646, - - /// - /// local_display_socketed_gems_supported_by_level_x_deadly_ailments - /// - LocalDisplaySocketedGemsSupportedByLevelXDeadlyAilments = 6647, - - /// - /// local_display_socketed_gems_supported_by_level_x_decay - /// - LocalDisplaySocketedGemsSupportedByLevelXDecay = 6648, - - /// - /// local_display_socketed_gems_supported_by_level_x_efficacy - /// - LocalDisplaySocketedGemsSupportedByLevelXEfficacy = 6649, - - /// - /// local_display_socketed_gems_supported_by_level_x_maim - /// - LocalDisplaySocketedGemsSupportedByLevelXMaim = 6650, - - /// - /// local_display_socketed_gems_supported_by_level_x_immolate - /// - LocalDisplaySocketedGemsSupportedByLevelXImmolate = 6651, - - /// - /// local_display_socketed_gems_supported_by_level_x_unbound_ailments - /// - LocalDisplaySocketedGemsSupportedByLevelXUnboundAilments = 6652, - - /// - /// local_display_socketed_gems_supported_by_level_x_brutality - /// - LocalDisplaySocketedGemsSupportedByLevelXBrutality = 6653, - - /// - /// local_display_socketed_gems_supported_by_level_x_ruthless - /// - LocalDisplaySocketedGemsSupportedByLevelXRuthless = 6654, - - /// - /// local_display_socketed_gems_supported_by_level_x_onslaught - /// - LocalDisplaySocketedGemsSupportedByLevelXOnslaught = 6655, - - /// - /// local_display_socketed_gems_supported_by_level_x_arcane_surge - /// - LocalDisplaySocketedGemsSupportedByLevelXArcaneSurge = 6656, - - /// - /// local_display_socketed_gems_supported_by_level_x_reduced_block_chance - /// - LocalDisplaySocketedGemsSupportedByLevelXReducedBlockChance = 6657, - - /// - /// local_display_socketed_gems_supported_by_level_x_bonechill - /// - LocalDisplaySocketedGemsSupportedByLevelXBonechill = 6658, - - /// - /// local_display_socketed_gems_supported_by_level_x_multi_totem - /// - LocalDisplaySocketedGemsSupportedByLevelXMultiTotem = 6659, - - /// - /// local_display_socketed_gems_supported_by_level_x_barrage - /// - LocalDisplaySocketedGemsSupportedByLevelXBarrage = 6660, - - /// - /// local_display_socketed_gems_supported_by_level_x_rain - /// - LocalDisplaySocketedGemsSupportedByLevelXRain = 6661, - - /// - /// spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_% - /// - SpectralThrowGainVaalSoulForVaalSpectralThrowOnHitPct = 6662, - - /// - /// local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius - /// - LocalUniqueJewelSpectralThrowGainVaalSoulForVaalStOnHitPctWith40DexInRadius = 6663, - - /// - /// trigger_socketed_spell_on_attack_% - /// - TriggerSocketedSpellOnAttackPct = 6664, - - /// - /// main_hand_trigger_socketed_spell_on_attack_% - /// - MainHandTriggerSocketedSpellOnAttackPct = 6665, - - /// - /// off_hand_trigger_socketed_spell_on_attack_% - /// - OffHandTriggerSocketedSpellOnAttackPct = 6666, - - /// - /// local_attack_minimum_added_physical_damage_per_3_levels - /// - LocalAttackMinimumAddedPhysicalDamagePer3Levels = 6667, - - /// - /// local_attack_maximum_added_physical_damage_per_3_levels - /// - LocalAttackMaximumAddedPhysicalDamagePer3Levels = 6668, - - /// - /// main_hand_attack_minimum_added_physical_damage_per_3_levels - /// - MainHandAttackMinimumAddedPhysicalDamagePer3Levels = 6669, - - /// - /// main_hand_attack_maximum_added_physical_damage_per_3_levels - /// - MainHandAttackMaximumAddedPhysicalDamagePer3Levels = 6670, - - /// - /// off_hand_attack_minimum_added_physical_damage_per_3_levels - /// - OffHandAttackMinimumAddedPhysicalDamagePer3Levels = 6671, - - /// - /// off_hand_attack_maximum_added_physical_damage_per_3_levels - /// - OffHandAttackMaximumAddedPhysicalDamagePer3Levels = 6672, - - /// - /// local_poison_duration_+%_during_flask_effect - /// - LocalPoisonDurationPctDuringFlaskEffect = 6673, - - /// - /// local_grant_perfect_agony_during_flask_effect - /// - LocalGrantPerfectAgonyDuringFlaskEffect = 6674, - - /// - /// local_chance_to_poison_on_hit_%_during_flask_effect - /// - LocalChanceToPoisonOnHitPctDuringFlaskEffect = 6675, - - /// - /// local_no_critical_strike_multiplier_during_flask_effect - /// - LocalNoCriticalStrikeMultiplierDuringFlaskEffect = 6676, - - /// - /// local_socketed_skill_gem_level_+1_per_x_player_levels - /// - LocalSocketedSkillGemLevel1PerXPlayerLevels = 6677, - - /// - /// map_spawn_abysses - /// - MapSpawnAbysses = 6678, - - /// - /// map_num_extra_abysses - /// - MapNumExtraAbysses = 6679, - - /// - /// lightning_tendrils_channelled_larger_pulse_interval - /// - LightningTendrilsChannelledLargerPulseInterval = 6680, - - /// - /// local_has_X_abyss_sockets - /// - LocalHasXAbyssSockets = 6681, - - /// - /// melee_skills_area_of_effect_+% - /// - MeleeSkillsAreaOfEffectPct = 6682, - - /// - /// skill_is_melee_skill - /// - SkillIsMeleeSkill = 6683, - - /// - /// local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start - /// - LocalUniqueJewelMeleeSkillsAreaOfEffectPctWithPassiveTreeConnectedToMarauderStart = 6684, - - /// - /// local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start - /// - LocalUniqueJewelLifeLeechFromAttackDamagePermyriadWithPassiveTreeConnectedToDuelistStart = 6685, - - /// - /// local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start - /// - LocalUniqueJewelMovementSpeedPctWithPassiveTreeConnectedToRangerStart = 6686, - - /// - /// local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start - /// - LocalUniqueJewelAdditionalCriticalStrikeChancePermyriadWithPassiveTreeConnectedToShadowStart = 6687, - - /// - /// local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start - /// - LocalUniqueJewelManaRegenerationRatePerMinutePctWithPassiveTreeConnectedToWitchStart = 6688, - - /// - /// local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start - /// - LocalUniqueJewelElementalPenetrationPctWithPassiveTreeConnectedToTemplarStart = 6689, - - /// - /// local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start - /// - LocalUniqueJewelAdditionalAllAttributesWithPassiveTreeConnectedToScionStart = 6690, - - /// - /// local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius - /// - LocalUniqueJewelGlacialCascadePhysicalDamagePctToConvertToColdWith40IntInRadius = 6691, - - /// - /// attack_critical_strike_chance_+%_per_200_accuracy_rating - /// - AttackCriticalStrikeChancePctPer200AccuracyRating = 6692, - - /// - /// attack_minimum_added_physical_damage_with_wands - /// - AttackMinimumAddedPhysicalDamageWithWands = 6693, - - /// - /// attack_maximum_added_physical_damage_with_wands - /// - AttackMaximumAddedPhysicalDamageWithWands = 6694, - - /// - /// attack_minimum_added_physical_damage_with_daggers - /// - AttackMinimumAddedPhysicalDamageWithDaggers = 6695, - - /// - /// attack_maximum_added_physical_damage_with_daggers - /// - AttackMaximumAddedPhysicalDamageWithDaggers = 6696, - - /// - /// attack_minimum_added_physical_damage_with_claws - /// - AttackMinimumAddedPhysicalDamageWithClaws = 6697, - - /// - /// attack_maximum_added_physical_damage_with_claws - /// - AttackMaximumAddedPhysicalDamageWithClaws = 6698, - - /// - /// attack_minimum_added_physical_damage_with_swords - /// - AttackMinimumAddedPhysicalDamageWithSwords = 6699, - - /// - /// attack_maximum_added_physical_damage_with_swords - /// - AttackMaximumAddedPhysicalDamageWithSwords = 6700, - - /// - /// attack_minimum_added_physical_damage_with_axes - /// - AttackMinimumAddedPhysicalDamageWithAxes = 6701, - - /// - /// attack_maximum_added_physical_damage_with_axes - /// - AttackMaximumAddedPhysicalDamageWithAxes = 6702, - - /// - /// attack_minimum_added_physical_damage_with_maces - /// - AttackMinimumAddedPhysicalDamageWithMaces = 6703, - - /// - /// attack_maximum_added_physical_damage_with_maces - /// - AttackMaximumAddedPhysicalDamageWithMaces = 6704, - - /// - /// attack_minimum_added_physical_damage_with_staves - /// - AttackMinimumAddedPhysicalDamageWithStaves = 6705, - - /// - /// attack_maximum_added_physical_damage_with_staves - /// - AttackMaximumAddedPhysicalDamageWithStaves = 6706, - - /// - /// attack_minimum_added_lightning_damage_with_daggers - /// - AttackMinimumAddedLightningDamageWithDaggers = 6707, - - /// - /// attack_maximum_added_lightning_damage_with_daggers - /// - AttackMaximumAddedLightningDamageWithDaggers = 6708, - - /// - /// attack_minimum_added_lightning_damage_with_claws - /// - AttackMinimumAddedLightningDamageWithClaws = 6709, - - /// - /// attack_maximum_added_lightning_damage_with_claws - /// - AttackMaximumAddedLightningDamageWithClaws = 6710, - - /// - /// attack_minimum_added_lightning_damage_with_bows - /// - AttackMinimumAddedLightningDamageWithBows = 6711, - - /// - /// attack_maximum_added_lightning_damage_with_bows - /// - AttackMaximumAddedLightningDamageWithBows = 6712, - - /// - /// attack_minimum_added_lightning_damage_with_swords - /// - AttackMinimumAddedLightningDamageWithSwords = 6713, - - /// - /// attack_maximum_added_lightning_damage_with_swords - /// - AttackMaximumAddedLightningDamageWithSwords = 6714, - - /// - /// attack_minimum_added_lightning_damage_with_axes - /// - AttackMinimumAddedLightningDamageWithAxes = 6715, - - /// - /// attack_maximum_added_lightning_damage_with_axes - /// - AttackMaximumAddedLightningDamageWithAxes = 6716, - - /// - /// attack_minimum_added_lightning_damage_with_maces - /// - AttackMinimumAddedLightningDamageWithMaces = 6717, - - /// - /// attack_maximum_added_lightning_damage_with_maces - /// - AttackMaximumAddedLightningDamageWithMaces = 6718, - - /// - /// attack_minimum_added_lightning_damage_with_staves - /// - AttackMinimumAddedLightningDamageWithStaves = 6719, - - /// - /// attack_maximum_added_lightning_damage_with_staves - /// - AttackMaximumAddedLightningDamageWithStaves = 6720, - - /// - /// attack_minimum_added_fire_damage_with_daggers - /// - AttackMinimumAddedFireDamageWithDaggers = 6721, - - /// - /// attack_maximum_added_fire_damage_with_daggers - /// - AttackMaximumAddedFireDamageWithDaggers = 6722, - - /// - /// attack_minimum_added_fire_damage_with_claws - /// - AttackMinimumAddedFireDamageWithClaws = 6723, - - /// - /// attack_maximum_added_fire_damage_with_claws - /// - AttackMaximumAddedFireDamageWithClaws = 6724, - - /// - /// attack_minimum_added_fire_damage_with_swords - /// - AttackMinimumAddedFireDamageWithSwords = 6725, - - /// - /// attack_maximum_added_fire_damage_with_swords - /// - AttackMaximumAddedFireDamageWithSwords = 6726, - - /// - /// attack_minimum_added_fire_damage_with_axes - /// - AttackMinimumAddedFireDamageWithAxes = 6727, - - /// - /// attack_maximum_added_fire_damage_with_axes - /// - AttackMaximumAddedFireDamageWithAxes = 6728, - - /// - /// attack_minimum_added_fire_damage_with_maces - /// - AttackMinimumAddedFireDamageWithMaces = 6729, - - /// - /// attack_maximum_added_fire_damage_with_maces - /// - AttackMaximumAddedFireDamageWithMaces = 6730, - - /// - /// attack_minimum_added_fire_damage_with_staves - /// - AttackMinimumAddedFireDamageWithStaves = 6731, - - /// - /// attack_maximum_added_fire_damage_with_staves - /// - AttackMaximumAddedFireDamageWithStaves = 6732, - - /// - /// attack_minimum_added_cold_damage_with_daggers - /// - AttackMinimumAddedColdDamageWithDaggers = 6733, - - /// - /// attack_maximum_added_cold_damage_with_daggers - /// - AttackMaximumAddedColdDamageWithDaggers = 6734, - - /// - /// attack_minimum_added_cold_damage_with_claws - /// - AttackMinimumAddedColdDamageWithClaws = 6735, - - /// - /// attack_maximum_added_cold_damage_with_claws - /// - AttackMaximumAddedColdDamageWithClaws = 6736, - - /// - /// attack_minimum_added_cold_damage_with_bows - /// - AttackMinimumAddedColdDamageWithBows = 6737, - - /// - /// attack_maximum_added_cold_damage_with_bows - /// - AttackMaximumAddedColdDamageWithBows = 6738, - - /// - /// attack_minimum_added_cold_damage_with_swords - /// - AttackMinimumAddedColdDamageWithSwords = 6739, - - /// - /// attack_maximum_added_cold_damage_with_swords - /// - AttackMaximumAddedColdDamageWithSwords = 6740, - - /// - /// attack_minimum_added_cold_damage_with_axes - /// - AttackMinimumAddedColdDamageWithAxes = 6741, - - /// - /// attack_maximum_added_cold_damage_with_axes - /// - AttackMaximumAddedColdDamageWithAxes = 6742, - - /// - /// attack_minimum_added_cold_damage_with_maces - /// - AttackMinimumAddedColdDamageWithMaces = 6743, - - /// - /// attack_maximum_added_cold_damage_with_maces - /// - AttackMaximumAddedColdDamageWithMaces = 6744, - - /// - /// attack_minimum_added_cold_damage_with_staves - /// - AttackMinimumAddedColdDamageWithStaves = 6745, - - /// - /// attack_maximum_added_cold_damage_with_staves - /// - AttackMaximumAddedColdDamageWithStaves = 6746, - - /// - /// attack_minimum_added_physical_damage_while_unarmed - /// - AttackMinimumAddedPhysicalDamageWhileUnarmed = 6747, - - /// - /// attack_maximum_added_physical_damage_while_unarmed - /// - AttackMaximumAddedPhysicalDamageWhileUnarmed = 6748, - - /// - /// attack_minimum_added_physical_damage_while_holding_a_shield - /// - AttackMinimumAddedPhysicalDamageWhileHoldingAShield = 6749, - - /// - /// attack_maximum_added_physical_damage_while_holding_a_shield - /// - AttackMaximumAddedPhysicalDamageWhileHoldingAShield = 6750, - - /// - /// spell_minimum_added_fire_damage_while_dual_wielding - /// - SpellMinimumAddedFireDamageWhileDualWielding = 6751, - - /// - /// spell_maximum_added_fire_damage_while_dual_wielding - /// - SpellMaximumAddedFireDamageWhileDualWielding = 6752, - - /// - /// spell_minimum_added_cold_damage_while_dual_wielding - /// - SpellMinimumAddedColdDamageWhileDualWielding = 6753, - - /// - /// spell_maximum_added_cold_damage_while_dual_wielding - /// - SpellMaximumAddedColdDamageWhileDualWielding = 6754, - - /// - /// spell_minimum_added_lightning_damage_while_dual_wielding - /// - SpellMinimumAddedLightningDamageWhileDualWielding = 6755, - - /// - /// spell_maximum_added_lightning_damage_while_dual_wielding - /// - SpellMaximumAddedLightningDamageWhileDualWielding = 6756, - - /// - /// spell_minimum_added_physical_damage_while_dual_wielding - /// - SpellMinimumAddedPhysicalDamageWhileDualWielding = 6757, - - /// - /// spell_maximum_added_physical_damage_while_dual_wielding - /// - SpellMaximumAddedPhysicalDamageWhileDualWielding = 6758, - - /// - /// spell_minimum_added_chaos_damage_while_dual_wielding - /// - SpellMinimumAddedChaosDamageWhileDualWielding = 6759, - - /// - /// spell_maximum_added_chaos_damage_while_dual_wielding - /// - SpellMaximumAddedChaosDamageWhileDualWielding = 6760, - - /// - /// spell_minimum_added_fire_damage_while_wielding_two_handed_weapon - /// - SpellMinimumAddedFireDamageWhileWieldingTwoHandedWeapon = 6761, - - /// - /// spell_maximum_added_fire_damage_while_wielding_two_handed_weapon - /// - SpellMaximumAddedFireDamageWhileWieldingTwoHandedWeapon = 6762, - - /// - /// spell_minimum_added_cold_damage_while_wielding_two_handed_weapon - /// - SpellMinimumAddedColdDamageWhileWieldingTwoHandedWeapon = 6763, - - /// - /// spell_maximum_added_cold_damage_while_wielding_two_handed_weapon - /// - SpellMaximumAddedColdDamageWhileWieldingTwoHandedWeapon = 6764, - - /// - /// spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon - /// - SpellMinimumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6765, - - /// - /// spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon - /// - SpellMaximumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6766, - - /// - /// spell_minimum_added_physical_damage_while_wielding_two_handed_weapon - /// - SpellMinimumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6767, - - /// - /// spell_maximum_added_physical_damage_while_wielding_two_handed_weapon - /// - SpellMaximumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6768, - - /// - /// spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon - /// - SpellMinimumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6769, - - /// - /// spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon - /// - SpellMaximumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6770, - - /// - /// spell_minimum_added_fire_damage_while_holding_a_shield - /// - SpellMinimumAddedFireDamageWhileHoldingAShield = 6771, - - /// - /// spell_maximum_added_fire_damage_while_holding_a_shield - /// - SpellMaximumAddedFireDamageWhileHoldingAShield = 6772, - - /// - /// spell_minimum_added_cold_damage_while_holding_a_shield - /// - SpellMinimumAddedColdDamageWhileHoldingAShield = 6773, - - /// - /// spell_maximum_added_cold_damage_while_holding_a_shield - /// - SpellMaximumAddedColdDamageWhileHoldingAShield = 6774, - - /// - /// spell_minimum_added_lightning_damage_while_holding_a_shield - /// - SpellMinimumAddedLightningDamageWhileHoldingAShield = 6775, - - /// - /// spell_maximum_added_lightning_damage_while_holding_a_shield - /// - SpellMaximumAddedLightningDamageWhileHoldingAShield = 6776, - - /// - /// spell_minimum_added_physical_damage_while_holding_a_shield - /// - SpellMinimumAddedPhysicalDamageWhileHoldingAShield = 6777, - - /// - /// spell_maximum_added_physical_damage_while_holding_a_shield - /// - SpellMaximumAddedPhysicalDamageWhileHoldingAShield = 6778, - - /// - /// spell_minimum_added_chaos_damage_while_holding_a_shield - /// - SpellMinimumAddedChaosDamageWhileHoldingAShield = 6779, - - /// - /// spell_maximum_added_chaos_damage_while_holding_a_shield - /// - SpellMaximumAddedChaosDamageWhileHoldingAShield = 6780, - - /// - /// damage_over_time_+%_while_dual_wielding - /// - DamageOverTimePctWhileDualWielding = 6781, - - /// - /// damage_over_time_+%_while_wielding_two_handed_weapon - /// - DamageOverTimePctWhileWieldingTwoHandedWeapon = 6782, - - /// - /// damage_over_time_+%_while_holding_a_shield - /// - DamageOverTimePctWhileHoldingAShield = 6783, - - /// - /// minion_global_minimum_added_fire_damage - /// - MinionGlobalMinimumAddedFireDamage = 6784, - - /// - /// minion_global_maximum_added_fire_damage - /// - MinionGlobalMaximumAddedFireDamage = 6785, - - /// - /// minion_global_minimum_added_cold_damage - /// - MinionGlobalMinimumAddedColdDamage = 6786, - - /// - /// minion_global_maximum_added_cold_damage - /// - MinionGlobalMaximumAddedColdDamage = 6787, - - /// - /// minion_global_minimum_added_lightning_damage - /// - MinionGlobalMinimumAddedLightningDamage = 6788, - - /// - /// minion_global_maximum_added_lightning_damage - /// - MinionGlobalMaximumAddedLightningDamage = 6789, - - /// - /// minion_global_minimum_added_physical_damage - /// - MinionGlobalMinimumAddedPhysicalDamage = 6790, - - /// - /// minion_global_maximum_added_physical_damage - /// - MinionGlobalMaximumAddedPhysicalDamage = 6791, - - /// - /// minion_global_minimum_added_chaos_damage - /// - MinionGlobalMinimumAddedChaosDamage = 6792, - - /// - /// minion_global_maximum_added_chaos_damage - /// - MinionGlobalMaximumAddedChaosDamage = 6793, - - /// - /// minion_life_regeneration_rate_per_second - /// - MinionLifeRegenerationRatePerSecond = 6794, - - /// - /// energy_shield_regeneration_rate_per_second - /// - EnergyShieldRegenerationRatePerSecond = 6795, - - /// - /// local_attack_cast_movement_speed_+%_during_flask_effect - /// - LocalAttackCastMovementSpeedPctDuringFlaskEffect = 6796, - - /// - /// local_attack_cast_movement_speed_+%_per_second_during_flask_effect - /// - LocalAttackCastMovementSpeedPctPerSecondDuringFlaskEffect = 6797, - - /// - /// damage_+%_vs_abyssal_monsters - /// - DamagePctVsAbyssalMonsters = 6798, - - /// - /// minion_damage_+%_vs_abyssal_monsters - /// - MinionDamagePctVsAbyssalMonsters = 6799, - - /// - /// additional_physical_damage_reduction_%_vs_abyssal_monsters - /// - AdditionalPhysicalDamageReductionPctVsAbyssalMonsters = 6800, - - /// - /// attacker_conditional_damage_stats_requires_tags - /// - AttackerConditionalDamageStatsRequiresTags = 6801, - - /// - /// defender_conditional_damage_stats_requires_tags - /// - DefenderConditionalDamageStatsRequiresTags = 6802, - - /// - /// chance_to_block_spells_%_if_damaged_by_a_hit_recently - /// - ChanceToBlockSpellsPctIfDamagedByAHitRecently = 6803, - - /// - /// track_have_been_damaged_by_a_hit_recently - /// - TrackHaveBeenDamagedByAHitRecently = 6804, - - /// - /// have_been_damaged_by_a_hit_recently - /// - HaveBeenDamagedByAHitRecently = 6805, - - /// - /// movement_speed_+%_if_have_not_taken_damage_recently - /// - MovementSpeedPctIfHaveNotTakenDamageRecently = 6806, - - /// - /// track_have_stopped_taking_damage_over_time_recently - /// - TrackHaveStoppedTakingDamageOverTimeRecently = 6807, - - /// - /// have_stopped_taking_damage_over_time_recently - /// - HaveStoppedTakingDamageOverTimeRecently = 6808, - - /// - /// is_currently_taking_damage_over_time - /// - IsCurrentlyTakingDamageOverTime = 6809, - - /// - /// damage_+%_if_enemy_killed_recently - /// - DamagePctIfEnemyKilledRecently = 6810, - - /// - /// critical_strike_multiplier_+_if_enemy_killed_recently - /// - CriticalStrikeMultiplierIfEnemyKilledRecently = 6811, - - /// - /// armour_+%_if_enemy_not_killed_recently - /// - ArmourPctIfEnemyNotKilledRecently = 6812, - - /// - /// accuracy_rating_+%_if_enemy_not_killed_recently - /// - AccuracyRatingPctIfEnemyNotKilledRecently = 6813, - - /// - /// damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently - /// - DamagePenetratesPctElementalResistanceIfEnemyNotKilledRecently = 6814, - - /// - /// cast_speed_+%_if_player_minion_has_been_killed_recently - /// - CastSpeedPctIfPlayerMinionHasBeenKilledRecently = 6815, - - /// - /// track_has_player_minion_been_killed_recently - /// - TrackHasPlayerMinionBeenKilledRecently = 6816, - - /// - /// has_player_minion_been_killed_recently - /// - HasPlayerMinionBeenKilledRecently = 6817, - - /// - /// minion_damage_+%_if_have_used_a_minion_skill_recently - /// - MinionDamagePctIfHaveUsedAMinionSkillRecently = 6818, - - /// - /// track_have_used_a_minion_skill_recently - /// - TrackHaveUsedAMinionSkillRecently = 6819, - - /// - /// have_used_a_minion_skill_recently - /// - HaveUsedAMinionSkillRecently = 6820, - - /// - /// evasion_rating_+%_while_moving - /// - EvasionRatingPctWhileMoving = 6821, - - /// - /// mana_regeneration_rate_+%_while_moving - /// - ManaRegenerationRatePctWhileMoving = 6822, - - /// - /// life_regeneration_rate_per_minute_%_while_moving - /// - LifeRegenerationRatePerMinutePctWhileMoving = 6823, - - /// - /// physical_damage_%_to_add_as_fire_if_have_crit_recently - /// - PhysicalDamagePctToAddAsFireIfHaveCritRecently = 6824, - - /// - /// attack_speed_+%_if_have_crit_recently - /// - AttackSpeedPctIfHaveCritRecently = 6825, - - /// - /// cast_speed_+%_if_have_crit_recently - /// - CastSpeedPctIfHaveCritRecently = 6826, - - /// - /// critical_strike_chance_+%_if_have_not_crit_recently - /// - CriticalStrikeChancePctIfHaveNotCritRecently = 6827, - - /// - /// minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently - /// - MinionAttackAndCastSpeedPctIfYouOrMinionsHaveKilledEnemyRecently = 6828, - - /// - /// notify_parent_have_killed_enemy_recently - /// - NotifyParentHaveKilledEnemyRecently = 6829, - - /// - /// minion_has_killed_enemy_recently - /// - MinionHasKilledEnemyRecently = 6830, - - /// - /// attacks_chance_to_blind_on_hit_% - /// - AttacksChanceToBlindOnHitPct = 6831, - - /// - /// attacks_chance_to_taunt_on_hit_% - /// - AttacksChanceToTauntOnHitPct = 6832, - - /// - /// spells_chance_to_hinder_on_hit_% - /// - SpellsChanceToHinderOnHitPct = 6833, - - /// - /// minion_attacks_chance_to_blind_on_hit_% - /// - MinionAttacksChanceToBlindOnHitPct = 6834, - - /// - /// minion_attacks_chance_to_taunt_on_hit_% - /// - MinionAttacksChanceToTauntOnHitPct = 6835, - - /// - /// minion_spells_chance_to_hinder_on_hit_% - /// - MinionSpellsChanceToHinderOnHitPct = 6836, - - /// - /// desecrate_maximum_number_of_corpses - /// - DesecrateMaximumNumberOfCorpses = 6837, - - /// - /// additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently - /// - AdditionalPhysicalDamageReductionPctIfNotDamagedByAHitRecently = 6838, - - /// - /// has_aegis_shield_type - /// - HasAegisShieldType = 6839, - - /// - /// local_display_cast_fire_aegis_on_gain_skill - /// - LocalDisplayCastFireAegisOnGainSkill = 6840, - - /// - /// local_display_cast_cold_aegis_on_gain_skill - /// - LocalDisplayCastColdAegisOnGainSkill = 6841, - - /// - /// local_display_cast_elemental_aegis_on_gain_skill - /// - LocalDisplayCastElementalAegisOnGainSkill = 6842, - - /// - /// poison_reflected_to_self - /// - PoisonReflectedToSelf = 6843, - - /// - /// bleeding_reflected_to_self - /// - BleedingReflectedToSelf = 6844, - - /// - /// chaos_damage_resistance_%_per_poison_stack - /// - ChaosDamageResistancePctPerPoisonStack = 6845, - - /// - /// armour_+%_while_bleeding - /// - ArmourPctWhileBleeding = 6846, - - /// - /// avoid_poison_% - /// - AvoidPoisonPct = 6847, - - /// - /// cannot_be_frozen - /// - CannotBeFrozen = 6848, - - /// - /// local_display_grants_level_x_curse_pillar_skill - /// - LocalDisplayGrantsLevelXCursePillarSkill = 6849, - - /// - /// local_socketed_active_skill_gem_level_+ - /// - LocalSocketedActiveSkillGemLevel = 6850, - - /// - /// local_socketed_active_skill_gem_quality_+ - /// - LocalSocketedActiveSkillGemQuality = 6851, - - /// - /// aegis_unique_shield_max_value - /// - AegisUniqueShieldMaxValue = 6852, - - /// - /// move_daemon_rotation_per_repeat - /// - MoveDaemonRotationPerRepeat = 6853, - - /// - /// move_daemon_end_rotation_per_repeat - /// - MoveDaemonEndRotationPerRepeat = 6854, - - /// - /// move_daemon_x_offset_per_repeat - /// - MoveDaemonXOffsetPerRepeat = 6855, - - /// - /// move_daemon_y_offset_per_repeat - /// - MoveDaemonYOffsetPerRepeat = 6856, - - /// - /// map_tier_+5 - /// - MapTier5 = 6857, - - /// - /// map_tier_16 - /// - MapTier16 = 6858, - - /// - /// raised_spectre_level - /// - RaisedSpectreLevel = 6859, - - /// - /// summon_specific_monsters_in_front_angle_offset - /// - SummonSpecificMonstersInFrontAngleOffset = 6860, - - /// - /// move_daemon_random_xy_offset - /// - MoveDaemonRandomXyOffset = 6861, - - /// - /// move_daemon_random_x_offset - /// - MoveDaemonRandomXOffset = 6862, - - /// - /// move_daemon_random_y_offset - /// - MoveDaemonRandomYOffset = 6863, - - /// - /// endurance_charge_slam_damage_+%_final_with_endurance_charge - /// - EnduranceChargeSlamDamagePctFinalWithEnduranceCharge = 6864, - - /// - /// generic_skill_trigger_skills_with_id - /// - GenericSkillTriggerSkillsWithId = 6865, - - /// - /// generic_skill_trigger_id - /// - GenericSkillTriggerId = 6866, - - /// - /// generic_skill_trigger_% - /// - GenericSkillTriggerPct = 6867, - - /// - /// projectile_swap_from_to_locations - /// - ProjectileSwapFromToLocations = 6868, - - /// - /// projectile_angle_variance - /// - ProjectileAngleVariance = 6869, - - /// - /// maligaro_combo_attack_third_hit_damage_+%_final - /// - MaligaroComboAttackThirdHitDamagePctFinal = 6870, - - /// - /// minions_cannot_be_damaged - /// - MinionsCannotBeDamaged = 6871, - - /// - /// minions_deal_no_damage - /// - MinionsDealNoDamage = 6872, - - /// - /// curse_on_hit_level_assassins_mark - /// - CurseOnHitLevelAssassinsMark = 6873, - - /// - /// projectile_distance_override - /// - ProjectileDistanceOverride = 6874, - - /// - /// mortar_projectile_distance_override - /// - MortarProjectileDistanceOverride = 6875, - - /// - /// triggered_skill_use_animation_event - /// - TriggeredSkillUseAnimationEvent = 6876, - - /// - /// map_atlas_influence_type - /// - MapAtlasInfluenceType = 6877, - - /// - /// combo_attack_first_hit_damage_+%_final - /// - ComboAttackFirstHitDamagePctFinal = 6878, - - /// - /// support_storm_barrier_physical_damage_taken_when_hit_+%_final - /// - SupportStormBarrierPhysicalDamageTakenWhenHitPctFinal = 6879, - - /// - /// support_storm_barrier_lightning_damage_taken_when_hit_+%_final - /// - SupportStormBarrierLightningDamageTakenWhenHitPctFinal = 6880, - - /// - /// support_storm_barrier_gain_power_charge_when_hit_% - /// - SupportStormBarrierGainPowerChargeWhenHitPct = 6881, - - /// - /// gain_power_charge_when_hit_% - /// - GainPowerChargeWhenHitPct = 6882, - - /// - /// local_display_socketed_gems_supported_by_level_x_storm_barrier - /// - LocalDisplaySocketedGemsSupportedByLevelXStormBarrier = 6883, - - /// - /// gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana - /// - GainCriticalStrikeChancePctFor2SecondsWhenYouSpend800Mana = 6884, - - /// - /// virtual_maximum_life_leech_rate_permyriad_per_minute - /// - VirtualMaximumLifeLeechRatePermyriadPerMinute = 6885, - - /// - /// keystone_vaal_pact - /// - KeystoneVaalPact = 6886, - - /// - /// life_leech_speed_is_doubled - /// - LifeLeechSpeedIsDoubled = 6887, - - /// - /// maximum_life_leech_rate_%_per_minute_is_doubled - /// - MaximumLifeLeechRatePctPerMinuteIsDoubled = 6888, - - /// - /// spectres_have_base_duration_ms - /// - SpectresHaveBaseDurationMs = 6889, - - /// - /// spectres_critical_strike_chance_+% - /// - SpectresCriticalStrikeChancePct = 6890, - - /// - /// gain_her_embrace_for_x_ms_on_enemy_ignited - /// - GainHerEmbraceForXMsOnEnemyIgnited = 6891, - - /// - /// has_her_embrace - /// - HasHerEmbrace = 6892, - - /// - /// %_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace - /// - PctMaximumEsAndLifeTakenAsFireDamagePerMinutePerLevelWhileInHerEmbrace = 6893, - - /// - /// projectile_uses_contact_direction - /// - ProjectileUsesContactDirection = 6894, - - /// - /// spell_base_fire_damage_%_maximum_life - /// - SpellBaseFireDamagePctMaximumLife = 6895, - - /// - /// additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad - /// - AdditionalCriticalStrikeChancePer10ShieldMaximumEnergyShieldPermyriad = 6896, - - /// - /// bone_lance_skill_behaviour_variation - /// - BoneLanceSkillBehaviourVariation = 6897, - - /// - /// gain_armour_equal_to_mana_reserved - /// - GainArmourEqualToManaReserved = 6898, - - /// - /// gain_vaal_pact_if_you_have_crit_recently - /// - GainVaalPactIfYouHaveCritRecently = 6899, - - /// - /// virtual_keystone_vaal_pact - /// - VirtualKeystoneVaalPact = 6900, - - /// - /// support_parallel_projectile_number_of_points_per_side - /// - SupportParallelProjectileNumberOfPointsPerSide = 6901, - - /// - /// support_spell_cascade_number_of_cascades_per_side - /// - SupportSpellCascadeNumberOfCascadesPerSide = 6902, - - /// - /// support_spell_cascade_area_of_effect_+%_per_cascade - /// - SupportSpellCascadeAreaOfEffectPctPerCascade = 6903, - - /// - /// support_spell_cascade_area_of_effect_+%_final - /// - SupportSpellCascadeAreaOfEffectPctFinal = 6904, - - /// - /// local_display_socketed_gems_supported_by_level_x_parallel_projectiles - /// - LocalDisplaySocketedGemsSupportedByLevelXParallelProjectiles = 6905, - - /// - /// local_display_socketed_gems_supported_by_level_x_spell_cascade - /// - LocalDisplaySocketedGemsSupportedByLevelXSpellCascade = 6906, - - /// - /// map_display_area_contains_unbridged_gaps_to_cross - /// - MapDisplayAreaContainsUnbridgedGapsToCross = 6907, - - /// - /// map_players_movement_skills_cooldown_speed_+% - /// - MapPlayersMovementSkillsCooldownSpeedPct = 6908, - - /// - /// movement_skills_cooldown_speed_+% - /// - MovementSkillsCooldownSpeedPct = 6909, - - /// - /// map_packs_are_kitava - /// - MapPacksAreKitava = 6910, - - /// - /// map_packs_have_anomalies - /// - MapPacksHaveAnomalies = 6911, - - /// - /// map_shaper_influence_spawn_shaper_clone - /// - MapShaperInfluenceSpawnShaperClone = 6912, - - /// - /// map_shaper_influence_additional_packs_of_space_monsters - /// - MapShaperInfluenceAdditionalPacksOfSpaceMonsters = 6913, - - /// - /// map_shaper_influence_spawn_boss_pack - /// - MapShaperInfluenceSpawnBossPack = 6914, - - /// - /// map_shaper_influence_spawn_maelstrom_cell - /// - MapShaperInfluenceSpawnMaelstromCell = 6915, - - /// - /// grasping_vines_movement_speed_+%_final - /// - GraspingVinesMovementSpeedPctFinal = 6916, - - /// - /// support_parallel_projectiles_damage_+%_final - /// - SupportParallelProjectilesDamagePctFinal = 6917, - - /// - /// is_trigger_daemon_when_hit_triggered_skill - /// - IsTriggerDaemonWhenHitTriggeredSkill = 6918, - - /// - /// trigger_daemon_when_hit_triggered_skill_chance_% - /// - TriggerDaemonWhenHitTriggeredSkillChancePct = 6919, - - /// - /// cannot_be_ignited_with_strength_higher_than_dex - /// - CannotBeIgnitedWithStrengthHigherThanDex = 6920, - - /// - /// cannot_be_frozen_with_dex_higher_than_int - /// - CannotBeFrozenWithDexHigherThanInt = 6921, - - /// - /// cannot_be_shocked_with_int_higher_than_strength - /// - CannotBeShockedWithIntHigherThanStrength = 6922, - - /// - /// damage_+%_per_5_of_your_lowest_attribute - /// - DamagePctPer5OfYourLowestAttribute = 6923, - - /// - /// cannot_be_ignited - /// - CannotBeIgnited = 6924, - - /// - /// attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity - /// - AttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6925, - - /// - /// attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity - /// - AttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6926, - - /// - /// main_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity - /// - MainHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6927, - - /// - /// main_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity - /// - MainHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6928, - - /// - /// off_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity - /// - OffHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6929, - - /// - /// off_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity - /// - OffHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6930, - - /// - /// local_chaos_damage_taken_per_minute_during_flask_effect - /// - LocalChaosDamageTakenPerMinuteDuringFlaskEffect = 6931, - - /// - /// melee_attack_number_of_spirit_strikes - /// - MeleeAttackNumberOfSpiritStrikes = 6932, - - /// - /// cannot_taunt_enemies - /// - CannotTauntEnemies = 6933, - - /// - /// minions_cannot_taunt_enemies - /// - MinionsCannotTauntEnemies = 6934, - - /// - /// base_number_of_support_ghosts_allowed - /// - BaseNumberOfSupportGhostsAllowed = 6935, - - /// - /// chance_to_summon_support_ghost_on_killing_blow_% - /// - ChanceToSummonSupportGhostOnKillingBlowPct = 6936, - - /// - /// support_ghost_base_duration - /// - SupportGhostBaseDuration = 6937, - - /// - /// support_ghost_duration - /// - SupportGhostDuration = 6938, - - /// - /// skill_can_own_support_ghosts - /// - SkillCanOwnSupportGhosts = 6939, - - /// - /// local_display_socketed_gems_supported_by_level_x_spirit_strike - /// - LocalDisplaySocketedGemsSupportedByLevelXSpiritStrike = 6940, - - /// - /// local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill - /// - LocalDisplaySocketedGemsSupportedByLevelXSummonGhostOnKill = 6941, - - /// - /// support_spirit_strike_damage_+%_final - /// - SupportSpiritStrikeDamagePctFinal = 6942, - - /// - /// local_display_socketed_attacks_additional_critical_strike_chance - /// - LocalDisplaySocketedAttacksAdditionalCriticalStrikeChance = 6943, - - /// - /// local_display_socketed_attacks_critical_strike_multiplier_+ - /// - LocalDisplaySocketedAttacksCriticalStrikeMultiplier = 6944, - - /// - /// local_display_socketed_spells_additional_critical_strike_chance - /// - LocalDisplaySocketedSpellsAdditionalCriticalStrikeChance = 6945, - - /// - /// local_display_socketed_spells_critical_strike_multiplier_+ - /// - LocalDisplaySocketedSpellsCriticalStrikeMultiplier = 6946, - - /// - /// keystone_shared_suffering - /// - KeystoneSharedSuffering = 6947, - - /// - /// all_damage_can_cause_elemental_ailments_you_are_suffering_from - /// - AllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6948, - - /// - /// base_all_damage_can_cause_elemental_ailments_you_are_suffering_from - /// - BaseAllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6949, - - /// - /// always_inflict_elemental_ailments_you_are_suffering_from - /// - AlwaysInflictElementalAilmentsYouAreSufferingFrom = 6950, - - /// - /// base_always_inflict_elemental_ailments_you_are_suffering_from - /// - BaseAlwaysInflictElementalAilmentsYouAreSufferingFrom = 6951, - - /// - /// remove_elemental_ailments_from_you_when_you_inflict_them - /// - RemoveElementalAilmentsFromYouWhenYouInflictThem = 6952, - - /// - /// base_remove_elemental_ailments_from_you_when_you_inflict_them - /// - BaseRemoveElementalAilmentsFromYouWhenYouInflictThem = 6953, - - /// - /// geometry_attack_shape - /// - GeometryAttackShape = 6954, - - /// - /// geometry_attack_length - /// - GeometryAttackLength = 6955, - - /// - /// geometry_attack_width - /// - GeometryAttackWidth = 6956, - - /// - /// geometry_attack_arc_angle - /// - GeometryAttackArcAngle = 6957, - - /// - /// map_packs_have_tentacle_fiends - /// - MapPacksHaveTentacleFiends = 6958, - - /// - /// no_movement_speed - /// - NoMovementSpeed = 6959, - - /// - /// unaffected_by_shock - /// - UnaffectedByShock = 6960, - - /// - /// unaffected_by_shocked_ground - /// - UnaffectedByShockedGround = 6961, - - /// - /// unaffected_by_burning_ground - /// - UnaffectedByBurningGround = 6962, - - /// - /// unaffected_by_chilled_ground - /// - UnaffectedByChilledGround = 6963, - - /// - /// unaffected_by_desecrated_ground - /// - UnaffectedByDesecratedGround = 6964, - - /// - /// flammability_mana_reservation_+% - /// - FlammabilityManaReservationPct = 6965, - - /// - /// frostbite_mana_reservation_+% - /// - FrostbiteManaReservationPct = 6966, - - /// - /// conductivity_mana_reservation_+% - /// - ConductivityManaReservationPct = 6967, - - /// - /// vulnerability_mana_reservation_+% - /// - VulnerabilityManaReservationPct = 6968, - - /// - /// chaos_weakness_mana_reservation_+% - /// - ChaosWeaknessManaReservationPct = 6969, - - /// - /// local_display_grants_skill_decoy_totem_level - /// - LocalDisplayGrantsSkillDecoyTotemLevel = 6970, - - /// - /// local_display_grants_skill_enduring_cry_level - /// - LocalDisplayGrantsSkillEnduringCryLevel = 6971, - - /// - /// local_display_grants_skill_rallying_cry_level - /// - LocalDisplayGrantsSkillRallyingCryLevel = 6972, - - /// - /// local_display_grants_skill_abyssal_cry_level - /// - LocalDisplayGrantsSkillAbyssalCryLevel = 6973, - - /// - /// local_display_grants_skill_herald_of_ash_level - /// - LocalDisplayGrantsSkillHeraldOfAshLevel = 6974, - - /// - /// local_display_grants_skill_herald_of_ice_level - /// - LocalDisplayGrantsSkillHeraldOfIceLevel = 6975, - - /// - /// local_display_grants_skill_herald_of_thunder_level - /// - LocalDisplayGrantsSkillHeraldOfThunderLevel = 6976, - - /// - /// curse_on_hit_level_poachers_mark - /// - CurseOnHitLevelPoachersMark = 6977, - - /// - /// curse_on_hit_level_warlords_mark - /// - CurseOnHitLevelWarlordsMark = 6978, - - /// - /// elemental_damage_can_shock - /// - ElementalDamageCanShock = 6979, - - /// - /// ailment_types_apply_damage_taken_+% - /// - AilmentTypesApplyDamageTakenPct = 6980, - - /// - /// evasion_rating_+%_while_leeching - /// - EvasionRatingPctWhileLeeching = 6981, - - /// - /// blind_enemies_when_hit_%_chance - /// - BlindEnemiesWhenHitPctChance = 6982, - - /// - /// evasion_rating_+%_if_you_have_hit_an_enemy_recently - /// - EvasionRatingPctIfYouHaveHitAnEnemyRecently = 6983, - - /// - /// gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance - /// - Gain1RareMonsterModOnKillFor10SecondsPctChance = 6984, - - /// - /// enemy_evasion_+%_if_you_have_hit_them_recently - /// - EnemyEvasionPctIfYouHaveHitThemRecently = 6985, - - /// - /// critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently - /// - CriticalStrikeMultiplierIfHaveNotDealtCriticalStrikeRecently = 6986, - - /// - /// number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more - /// - NumberOfAdditionalArrowsWhileMainHandAccuracyIs3000OrMore = 6987, - - /// - /// accuracy_rating_is_doubled - /// - AccuracyRatingIsDoubled = 6988, - - /// - /// melee_physical_damage_+%_per_10_strength_while_fortified - /// - MeleePhysicalDamagePctPer10StrengthWhileFortified = 6989, - - /// - /// chance_to_dodge_attacks_%_while_off_hand_is_empty - /// - ChanceToDodgeAttacksPctWhileOffHandIsEmpty = 6990, - - /// - /// cold_damage_+%_while_off_hand_is_empty - /// - ColdDamagePctWhileOffHandIsEmpty = 6991, - - /// - /// iron_reflexes_rotation_active - /// - IronReflexesRotationActive = 6992, - - /// - /// unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes - /// - UniqueBowArborixCloseRangeBowDamagePctFinalWhileHaveIronReflexes = 6993, - - /// - /// unique_bow_arborix_close_range_bow_damage_+%_final - /// - UniqueBowArborixCloseRangeBowDamagePctFinal = 6994, - - /// - /// virtual_player_far_shot - /// - VirtualPlayerFarShot = 6995, - - /// - /// gain_player_far_shot_while_do_not_have_iron_reflexes - /// - GainPlayerFarShotWhileDoNotHaveIronReflexes = 6996, - - /// - /// attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes - /// - AttackCastAndMovementSpeedPctWhileDoNotHaveIronReflexes = 6997, - - /// - /// local_display_trigger_death_walk_on_equip_level - /// - LocalDisplayTriggerDeathWalkOnEquipLevel = 6998, - - /// - /// number_of_melee_abyss_jewels - /// - NumberOfMeleeAbyssJewels = 6999, - - /// - /// number_of_ranged_abyss_jewels - /// - NumberOfRangedAbyssJewels = 7000, - - /// - /// number_of_caster_abyss_jewels - /// - NumberOfCasterAbyssJewels = 7001, - - /// - /// number_of_minion_abyss_jewels - /// - NumberOfMinionAbyssJewels = 7002, - - /// - /// number_of_abyss_jewels - /// - NumberOfAbyssJewels = 7003, - - /// - /// number_of_abyss_jewel_types - /// - NumberOfAbyssJewelTypes = 7004, - - /// - /// damage_+%_per_abyss_jewel_type - /// - DamagePctPerAbyssJewelType = 7005, - - /// - /// support_spell_cascade_damage_+%_final - /// - SupportSpellCascadeDamagePctFinal = 7006, - - /// - /// virtual_physical_damage_can_chill - /// - VirtualPhysicalDamageCanChill = 7007, - - /// - /// virtual_fire_damage_can_chill - /// - VirtualFireDamageCanChill = 7008, - - /// - /// virtual_cold_damage_cannot_chill - /// - VirtualColdDamageCannotChill = 7009, - - /// - /// virtual_lightning_damage_can_chill - /// - VirtualLightningDamageCanChill = 7010, - - /// - /// virtual_chaos_damage_can_chill - /// - VirtualChaosDamageCanChill = 7011, - - /// - /// fire_damage_can_chill - /// - FireDamageCanChill = 7012, - - /// - /// lightning_damage_can_chill - /// - LightningDamageCanChill = 7013, - - /// - /// virtual_physical_damage_can_freeze - /// - VirtualPhysicalDamageCanFreeze = 7014, - - /// - /// virtual_fire_damage_can_freeze - /// - VirtualFireDamageCanFreeze = 7015, - - /// - /// virtual_cold_damage_cannot_freeze - /// - VirtualColdDamageCannotFreeze = 7016, - - /// - /// virtual_lightning_damage_can_freeze - /// - VirtualLightningDamageCanFreeze = 7017, - - /// - /// virtual_chaos_damage_can_freeze - /// - VirtualChaosDamageCanFreeze = 7018, - - /// - /// physical_damage_can_freeze - /// - PhysicalDamageCanFreeze = 7019, - - /// - /// fire_damage_can_freeze - /// - FireDamageCanFreeze = 7020, - - /// - /// chaos_damage_can_freeze - /// - ChaosDamageCanFreeze = 7021, - - /// - /// all_damage_can_freeze - /// - AllDamageCanFreeze = 7022, - - /// - /// virtual_physical_damage_can_shock - /// - VirtualPhysicalDamageCanShock = 7023, - - /// - /// virtual_fire_damage_can_shock - /// - VirtualFireDamageCanShock = 7024, - - /// - /// virtual_cold_damage_can_shock - /// - VirtualColdDamageCanShock = 7025, - - /// - /// virtual_lightning_damage_cannot_shock - /// - VirtualLightningDamageCannotShock = 7026, - - /// - /// virtual_chaos_damage_can_shock - /// - VirtualChaosDamageCanShock = 7027, - - /// - /// cold_damage_can_shock - /// - ColdDamageCanShock = 7028, - - /// - /// chaos_damage_cannot_poison - /// - ChaosDamageCannotPoison = 7029, - - /// - /// physical_damage_cannot_poison - /// - PhysicalDamageCannotPoison = 7030, - - /// - /// area_of_effect_+%_with_500_or_more_strength - /// - AreaOfEffectPctWith500OrMoreStrength = 7031, - - /// - /// area_of_effect_+%_if_have_stunned_an_enemy_recently - /// - AreaOfEffectPctIfHaveStunnedAnEnemyRecently = 7032, - - /// - /// track_have_stunned_an_enemy_recently - /// - TrackHaveStunnedAnEnemyRecently = 7033, - - /// - /// have_stunned_an_enemy_recently - /// - HaveStunnedAnEnemyRecently = 7034, - - /// - /// chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy - /// - ChanceToGainEnduranceChargeOnHitPctVsBleedingEnemy = 7035, - - /// - /// local_display_socketed_movement_skills_have_no_mana_cost - /// - LocalDisplaySocketedMovementSkillsHaveNoManaCost = 7036, - - /// - /// local_hits_with_this_weapon_always_hit_if_have_blocked_recently - /// - LocalHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7037, - - /// - /// main_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently - /// - MainHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7038, - - /// - /// off_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently - /// - OffHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7039, - - /// - /// additional_block_%_per_endurance_charge - /// - AdditionalBlockPctPerEnduranceCharge = 7040, - - /// - /// attack_speed_+%_if_have_blocked_recently - /// - AttackSpeedPctIfHaveBlockedRecently = 7041, - - /// - /// local_display_trigger_level_x_smoke_cloud_on_trap_triggered - /// - LocalDisplayTriggerLevelXSmokeCloudOnTrapTriggered = 7042, - - /// - /// area_of_effect_+%_while_fortified - /// - AreaOfEffectPctWhileFortified = 7043, - - /// - /// melee_weapon_range_+_if_you_have_killed_recently - /// - MeleeWeaponRangeIfYouHaveKilledRecently = 7044, - - /// - /// melee_weapon_range_+_while_fortified - /// - MeleeWeaponRangeWhileFortified = 7045, - - /// - /// stun_duration_+%_per_15_strength - /// - StunDurationPctPer15Strength = 7046, - - /// - /// stun_threshold_reduction_+%_with_500_or_more_strength - /// - StunThresholdReductionPctWith500OrMoreStrength = 7047, - - /// - /// area_of_effect_+%_per_endurance_charge - /// - AreaOfEffectPctPerEnduranceCharge = 7048, - - /// - /// area_damage_+%_per_12_strength - /// - AreaDamagePctPer12Strength = 7049, - - /// - /// damage_+%_vs_taunted_enemies - /// - DamagePctVsTauntedEnemies = 7050, - - /// - /// chance_to_gain_endurance_charge_when_you_taunt_enemy_% - /// - ChanceToGainEnduranceChargeWhenYouTauntEnemyPct = 7051, - - /// - /// attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies - /// - AttacksChanceToBleedOnHitPctVsTauntedEnemies = 7052, - - /// - /// bleed_damage_+%_per_endurance_charge - /// - BleedDamagePctPerEnduranceCharge = 7053, - - /// - /// melee_movement_skill_chance_to_fortify_on_hit_% - /// - MeleeMovementSkillChanceToFortifyOnHitPct = 7054, - - /// - /// melee_weapon_range_+_while_at_maximum_frenzy_charges - /// - MeleeWeaponRangeWhileAtMaximumFrenzyCharges = 7055, - - /// - /// poison_damage_+%_vs_bleeding_enemies - /// - PoisonDamagePctVsBleedingEnemies = 7056, - - /// - /// additional_physical_damage_reduction_%_while_moving - /// - AdditionalPhysicalDamageReductionPctWhileMoving = 7057, - - /// - /// elemental_damage_taken_+%_while_stationary - /// - ElementalDamageTakenPctWhileStationary = 7058, - - /// - /// map_monsters_avoid_ailments_% - /// - MapMonstersAvoidAilmentsPct = 7059, - - /// - /// number_of_endurance_charges_to_gain_every_4_seconds_while_stationary - /// - NumberOfEnduranceChargesToGainEvery4SecondsWhileStationary = 7060, - - /// - /// maximum_life_+%_per_abyssal_jewel_affecting_you - /// - MaximumLifePctPerAbyssalJewelAffectingYou = 7061, - - /// - /// maximum_mana_+%_per_abyssal_jewel_affecting_you - /// - MaximumManaPctPerAbyssalJewelAffectingYou = 7062, - - /// - /// cast_speed_+%_during_flask_effect - /// - CastSpeedPctDuringFlaskEffect = 7063, - - /// - /// melee_damage_+%_during_flask_effect - /// - MeleeDamagePctDuringFlaskEffect = 7064, - - /// - /// projectile_attack_damage_+%_during_flask_effect - /// - ProjectileAttackDamagePctDuringFlaskEffect = 7065, - - /// - /// spell_damage_+%_during_flask_effect - /// - SpellDamagePctDuringFlaskEffect = 7066, - - /// - /// local_crits_have_culling_strike - /// - LocalCritsHaveCullingStrike = 7067, - - /// - /// main_hand_local_crits_have_culling_strike - /// - MainHandLocalCritsHaveCullingStrike = 7068, - - /// - /// off_hand_local_crits_have_culling_strike - /// - OffHandLocalCritsHaveCullingStrike = 7069, - - /// - /// global_minimum_added_fire_damage_vs_ignited_enemies - /// - GlobalMinimumAddedFireDamageVsIgnitedEnemies = 7070, - - /// - /// global_maximum_added_fire_damage_vs_ignited_enemies - /// - GlobalMaximumAddedFireDamageVsIgnitedEnemies = 7071, - - /// - /// global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies - /// - GlobalMinimumAddedColdDamageVsChilledOrFrozenEnemies = 7072, - - /// - /// global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies - /// - GlobalMaximumAddedColdDamageVsChilledOrFrozenEnemies = 7073, - - /// - /// global_minimum_added_lightning_damage_vs_shocked_enemies - /// - GlobalMinimumAddedLightningDamageVsShockedEnemies = 7074, - - /// - /// global_maximum_added_lightning_damage_vs_shocked_enemies - /// - GlobalMaximumAddedLightningDamageVsShockedEnemies = 7075, - - /// - /// chill_attackers_for_4_seconds_on_block_%_chance - /// - ChillAttackersFor4SecondsOnBlockPctChance = 7076, - - /// - /// shock_attackers_for_4_seconds_on_block_%_chance - /// - ShockAttackersFor4SecondsOnBlockPctChance = 7077, - - /// - /// damage_+%_per_1%_block_chance - /// - DamagePctPer1PctBlockChance = 7078, - - /// - /// dodge_attacks_chance_%_if_you_have_blocked_recently - /// - DodgeAttacksChancePctIfYouHaveBlockedRecently = 7079, - - /// - /// damage_+%_per_15_strength - /// - DamagePctPer15Strength = 7080, - - /// - /// damage_+%_per_15_dex - /// - DamagePctPer15Dex = 7081, - - /// - /// damage_+%_per_15_int - /// - DamagePctPer15Int = 7082, - - /// - /// additional_block_%_with_5_or_more_nearby_enemies - /// - AdditionalBlockPctWith5OrMoreNearbyEnemies = 7083, - - /// - /// gain_random_charge_on_block - /// - GainRandomChargeOnBlock = 7084, - - /// - /// chance_to_evade_attacks_% - /// - ChanceToEvadeAttacksPct = 7085, - - /// - /// mana_gained_on_spell_hit - /// - ManaGainedOnSpellHit = 7086, - - /// - /// remove_ignite_and_burning_on_flask_use - /// - RemoveIgniteAndBurningOnFlaskUse = 7087, - - /// - /// remove_chill_and_freeze_on_flask_use - /// - RemoveChillAndFreezeOnFlaskUse = 7088, - - /// - /// remove_shock_on_flask_use - /// - RemoveShockOnFlaskUse = 7089, - - /// - /// number_of_equipped_elder_items - /// - NumberOfEquippedElderItems = 7090, - - /// - /// maximum_life_per_equipped_elder_item - /// - MaximumLifePerEquippedElderItem = 7091, - - /// - /// non_damaging_ailment_effect_+%_per_equipped_elder_item - /// - NonDamagingAilmentEffectPctPerEquippedElderItem = 7092, - - /// - /// ailment_damage_+%_per_equipped_elder_item - /// - AilmentDamagePctPerEquippedElderItem = 7093, - - /// - /// remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder - /// - RemoveRandomAilmentOnFlaskUseIfAllEquippedItemsAreElder = 7094, - - /// - /// virtual_freeze_effect_+% - /// - VirtualFreezeEffectPct = 7095, - - /// - /// virtual_ignite_effect_+% - /// - VirtualIgniteEffectPct = 7096, - - /// - /// virtual_poison_effect_+% - /// - VirtualPoisonEffectPct = 7097, - - /// - /// virtual_bleed_effect_+% - /// - VirtualBleedEffectPct = 7098, - - /// - /// virtual_minion_elemental_resistance_% - /// - VirtualMinionElementalResistancePct = 7099, - - /// - /// minion_elemental_resistance_30% - /// - MinionElementalResistance30Pct = 7100, - - /// - /// strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead - /// - StrengthDamageBonusGrantsMeleePhysicalDamage3PctPer10StrengthInstead = 7101, - - /// - /// fortify_duration_+%_per_10_strength - /// - FortifyDurationPctPer10Strength = 7102, - - /// - /// attack_additional_critical_strike_chance_permyriad - /// - AttackAdditionalCriticalStrikeChancePermyriad = 7103, - - /// - /// spell_additional_critical_strike_chance_permyriad - /// - SpellAdditionalCriticalStrikeChancePermyriad = 7104, - - /// - /// virtual_fortify_duration_+% - /// - VirtualFortifyDurationPct = 7105, - - /// - /// virtual_fortify_effect_on_self_+% - /// - VirtualFortifyEffectOnSelfPct = 7106, - - /// - /// fortify_effect_on_self_+%_while_stationary - /// - FortifyEffectOnSelfPctWhileStationary = 7107, - - /// - /// remove_bleeding_on_warcry - /// - RemoveBleedingOnWarcry = 7108, - - /// - /// chance_to_gain_endurance_charge_when_you_stun_enemy_% - /// - ChanceToGainEnduranceChargeWhenYouStunEnemyPct = 7109, - - /// - /// critical_strike_multiplier_+_if_you_have_blocked_recently - /// - CriticalStrikeMultiplierIfYouHaveBlockedRecently = 7110, - - /// - /// bleeding_damage_+%_vs_poisoned_enemies - /// - BleedingDamagePctVsPoisonedEnemies = 7111, - - /// - /// area_of_effect_+%_if_you_have_blocked_recently - /// - AreaOfEffectPctIfYouHaveBlockedRecently = 7112, - - /// - /// elemental_damage_+%_per_power_charge - /// - ElementalDamagePctPerPowerCharge = 7113, - - /// - /// elemental_damage_+%_per_12_int - /// - ElementalDamagePctPer12Int = 7114, - - /// - /// elemental_damage_+%_per_12_strength - /// - ElementalDamagePctPer12Strength = 7115, - - /// - /// elemental_damage_taken_+%_per_endurance_charge - /// - ElementalDamageTakenPctPerEnduranceCharge = 7116, - - /// - /// additional_block_%_if_you_have_crit_recently - /// - AdditionalBlockPctIfYouHaveCritRecently = 7117, - - /// - /// area_of_effect_+%_per_50_strength - /// - AreaOfEffectPctPer50Strength = 7118, - - /// - /// local_life_gain_per_target_vs_blinded_enemies - /// - LocalLifeGainPerTargetVsBlindedEnemies = 7119, - - /// - /// main_hand_local_life_gain_per_target_vs_blinded_enemies - /// - MainHandLocalLifeGainPerTargetVsBlindedEnemies = 7120, - - /// - /// off_hand_local_life_gain_per_target_vs_blinded_enemies - /// - OffHandLocalLifeGainPerTargetVsBlindedEnemies = 7121, - - /// - /// local_culling_strike_if_crit_recently - /// - LocalCullingStrikeIfCritRecently = 7122, - - /// - /// main_hand_culling_strike_if_crit_recently - /// - MainHandCullingStrikeIfCritRecently = 7123, - - /// - /// off_hand_culling_strike_if_crit_recently - /// - OffHandCullingStrikeIfCritRecently = 7124, - - /// - /// support_mirage_archer_base_duration - /// - SupportMirageArcherBaseDuration = 7125, - - /// - /// support_mirage_archer_duration - /// - SupportMirageArcherDuration = 7126, - - /// - /// summon_mirage_archer_on_hit - /// - SummonMirageArcherOnHit = 7127, - - /// - /// skill_can_own_mirage_archers - /// - SkillCanOwnMirageArchers = 7128, - - /// - /// number_of_mirage_archers_allowed - /// - NumberOfMirageArchersAllowed = 7129, - - /// - /// support_mirage_archer_damage_+%_final - /// - SupportMirageArcherDamagePctFinal = 7130, - - /// - /// use_scaled_contact_offset - /// - UseScaledContactOffset = 7131, - - /// - /// local_culling_strike_vs_bleeding_enemies - /// - LocalCullingStrikeVsBleedingEnemies = 7132, - - /// - /// main_hand_culling_strike_vs_bleeding_enemies - /// - MainHandCullingStrikeVsBleedingEnemies = 7133, - - /// - /// off_hand_culling_strike_vs_bleeding_enemies - /// - OffHandCullingStrikeVsBleedingEnemies = 7134, - - /// - /// local_display_grants_level_x_blood_offering_skill - /// - LocalDisplayGrantsLevelXBloodOfferingSkill = 7135, - - /// - /// active_skill_projectile_speed_+%_variation_final - /// - ActiveSkillProjectileSpeedPctVariationFinal = 7136, - - /// - /// local_socketed_abyss_jewel_effect_+% - /// - LocalSocketedAbyssJewelEffectPct = 7137, - - /// - /// non_piercing_projectiles_critical_strike_chance_+% - /// - NonPiercingProjectilesCriticalStrikeChancePct = 7138, - - /// - /// local_evasion_rating_and_energy_shield - /// - LocalEvasionRatingAndEnergyShield = 7139, - - /// - /// number_of_additional_projectiles_if_you_have_been_hit_recently - /// - NumberOfAdditionalProjectilesIfYouHaveBeenHitRecently = 7140, - - /// - /// gain_iron_reflexes_while_stationary - /// - GainIronReflexesWhileStationary = 7141, - - /// - /// armour_+%_while_stationary - /// - ArmourPctWhileStationary = 7142, - - /// - /// number_of_additional_projectiles_if_you_have_used_movement_skill_recently - /// - NumberOfAdditionalProjectilesIfYouHaveUsedMovementSkillRecently = 7143, - - /// - /// virtual_keystone_iron_reflexes - /// - VirtualKeystoneIronReflexes = 7144, - - /// - /// attacks_intimidate_on_hit_% - /// - AttacksIntimidateOnHitPct = 7145, - - /// - /// local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed - /// - LocalAttacksIntimidateOnHitFor4SecondsWithMeleeAbyssJewelSocketed = 7146, - - /// - /// local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed - /// - LocalAttacksMaimOnHitFor4SecondsWithRangedAbyssJewelSocketed = 7147, - - /// - /// elemental_overload_rotation_active - /// - ElementalOverloadRotationActive = 7148, - - /// - /// gain_resolute_technique_while_do_not_have_elemental_overload - /// - GainResoluteTechniqueWhileDoNotHaveElementalOverload = 7149, - - /// - /// virtual_keystone_resolute_technique - /// - VirtualKeystoneResoluteTechnique = 7150, - - /// - /// local_minimum_added_physical_damage_vs_ignited_enemies - /// - LocalMinimumAddedPhysicalDamageVsIgnitedEnemies = 7151, - - /// - /// local_maximum_added_physical_damage_vs_ignited_enemies - /// - LocalMaximumAddedPhysicalDamageVsIgnitedEnemies = 7152, - - /// - /// local_minimum_added_fire_damage_vs_bleeding_enemies - /// - LocalMinimumAddedFireDamageVsBleedingEnemies = 7153, - - /// - /// local_maximum_added_fire_damage_vs_bleeding_enemies - /// - LocalMaximumAddedFireDamageVsBleedingEnemies = 7154, - - /// - /// main_hand_minimum_added_physical_damage_vs_ignited_enemies - /// - MainHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7155, - - /// - /// main_hand_maximum_added_physical_damage_vs_ignited_enemies - /// - MainHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7156, - - /// - /// main_hand_minimum_added_fire_damage_vs_bleeding_enemies - /// - MainHandMinimumAddedFireDamageVsBleedingEnemies = 7157, - - /// - /// main_hand_maximum_added_fire_damage_vs_bleeding_enemies - /// - MainHandMaximumAddedFireDamageVsBleedingEnemies = 7158, - - /// - /// off_hand_minimum_added_physical_damage_vs_ignited_enemies - /// - OffHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7159, - - /// - /// off_hand_maximum_added_physical_damage_vs_ignited_enemies - /// - OffHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7160, - - /// - /// off_hand_minimum_added_fire_damage_vs_bleeding_enemies - /// - OffHandMinimumAddedFireDamageVsBleedingEnemies = 7161, - - /// - /// off_hand_maximum_added_fire_damage_vs_bleeding_enemies - /// - OffHandMaximumAddedFireDamageVsBleedingEnemies = 7162, - - /// - /// local_chance_bleed_on_hit_%_vs_ignited_enemies - /// - LocalChanceBleedOnHitPctVsIgnitedEnemies = 7163, - - /// - /// main_hand_chance_bleed_on_hit_%_vs_ignited_enemies - /// - MainHandChanceBleedOnHitPctVsIgnitedEnemies = 7164, - - /// - /// off_hand_chance_bleed_on_hit_%_vs_ignited_enemies - /// - OffHandChanceBleedOnHitPctVsIgnitedEnemies = 7165, - - /// - /// avatar_of_fire_rotation_active - /// - AvatarOfFireRotationActive = 7166, - - /// - /// critical_strike_chance_+%_while_you_have_avatar_of_fire - /// - CriticalStrikeChancePctWhileYouHaveAvatarOfFire = 7167, - - /// - /// physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire - /// - PhysicalDamagePctToConvertToFireWhileYouHaveAvatarOfFire = 7168, - - /// - /// armour_while_you_do_not_have_avatar_of_fire - /// - ArmourWhileYouDoNotHaveAvatarOfFire = 7169, - - /// - /// non_chaos_damage_to_add_as_chaos_damage_% - /// - NonChaosDamageToAddAsChaosDamagePct = 7170, - - /// - /// projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain - /// - ProjectileNonChaosDamageToAddAsChaosDamagePctPerChain = 7171, - - /// - /// attack_speed_+%_if_enemy_killed_recently - /// - AttackSpeedPctIfEnemyKilledRecently = 7172, - - /// - /// critical_strike_chance_+%_if_enemy_killed_recently - /// - CriticalStrikeChancePctIfEnemyKilledRecently = 7173, - - /// - /// projectile_damage_+%_per_pierced_enemy - /// - ProjectileDamagePctPerPiercedEnemy = 7174, - - /// - /// recover_energy_shield_%_on_kill - /// - RecoverEnergyShieldPctOnKill = 7175, - - /// - /// map_monsters_add_power_charge_on_hit_% - /// - MapMonstersAddPowerChargeOnHitPct = 7176, - - /// - /// map_monsters_add_frenzy_charge_on_hit_% - /// - MapMonstersAddFrenzyChargeOnHitPct = 7177, - - /// - /// map_monsters_add_endurance_charge_on_hit_% - /// - MapMonstersAddEnduranceChargeOnHitPct = 7178, - - /// - /// local_life_gain_per_target_while_leeching - /// - LocalLifeGainPerTargetWhileLeeching = 7179, - - /// - /// main_hand_life_gain_per_target_while_leeching - /// - MainHandLifeGainPerTargetWhileLeeching = 7180, - - /// - /// off_hand_life_gain_per_target_while_leeching - /// - OffHandLifeGainPerTargetWhileLeeching = 7181, - - /// - /// local_display_socketed_gems_supported_by_level_x_mirage_archer - /// - LocalDisplaySocketedGemsSupportedByLevelXMirageArcher = 7182, - - /// - /// spectre_duration - /// - SpectreDuration = 7183, - - /// - /// arrows_that_pierce_also_return - /// - ArrowsThatPierceAlsoReturn = 7184, - - /// - /// predict_totem_maximum_life - /// - PredictTotemMaximumLife = 7185, - - /// - /// unique_monster_dropped_item_rarity_+% - /// - UniqueMonsterDroppedItemRarityPct = 7186, - - /// - /// cannot_block_spells - /// - CannotBlockSpells = 7187, - - /// - /// gain_endurance_charge_%_chance_when_you_lose_fortify - /// - GainEnduranceChargePctChanceWhenYouLoseFortify = 7188, - - /// - /// affected_by_determination - /// - AffectedByDetermination = 7189, - - /// - /// affected_by_grace - /// - AffectedByGrace = 7190, - - /// - /// affected_by_discipline - /// - AffectedByDiscipline = 7191, - - /// - /// affected_by_wrath - /// - AffectedByWrath = 7192, - - /// - /// affected_by_anger - /// - AffectedByAnger = 7193, - - /// - /// affected_by_hatred - /// - AffectedByHatred = 7194, - - /// - /// affected_by_vitality - /// - AffectedByVitality = 7195, - - /// - /// affected_by_clarity - /// - AffectedByClarity = 7196, - - /// - /// affected_by_haste - /// - AffectedByHaste = 7197, - - /// - /// affected_by_purity_of_fire - /// - AffectedByPurityOfFire = 7198, - - /// - /// affected_by_purity_of_ice - /// - AffectedByPurityOfIce = 7199, - - /// - /// affected_by_purity_of_lightning - /// - AffectedByPurityOfLightning = 7200, - - /// - /// affected_by_purity_of_elements - /// - AffectedByPurityOfElements = 7201, - - /// - /// additional_physical_damage_reduction_%_while_affected_by_determination - /// - AdditionalPhysicalDamageReductionPctWhileAffectedByDetermination = 7202, - - /// - /// block_%_while_affected_by_determination - /// - BlockPctWhileAffectedByDetermination = 7203, - - /// - /// extra_damage_taken_from_crit_+%_while_affected_by_determination - /// - ExtraDamageTakenFromCritPctWhileAffectedByDetermination = 7204, - - /// - /// chance_to_evade_attacks_%_while_affected_by_grace - /// - ChanceToEvadeAttacksPctWhileAffectedByGrace = 7205, - - /// - /// chance_to_dodge_attacks_%_while_affected_by_grace - /// - ChanceToDodgeAttacksPctWhileAffectedByGrace = 7206, - - /// - /// movement_speed_+%_while_affected_by_grace - /// - MovementSpeedPctWhileAffectedByGrace = 7207, - - /// - /// unaffected_by_vulnerability_while_affected_by_determination - /// - UnaffectedByVulnerabilityWhileAffectedByDetermination = 7208, - - /// - /// unaffected_by_enfeeble_while_affected_by_grace - /// - UnaffectedByEnfeebleWhileAffectedByGrace = 7209, - - /// - /// unaffected_by_temporal_chains_while_affected_by_haste - /// - UnaffectedByTemporalChainsWhileAffectedByHaste = 7210, - - /// - /// unaffected_by_burning_ground_while_affected_by_purity_of_fire - /// - UnaffectedByBurningGroundWhileAffectedByPurityOfFire = 7211, - - /// - /// unaffected_by_flammability_while_affected_by_purity_of_fire - /// - UnaffectedByFlammabilityWhileAffectedByPurityOfFire = 7212, - - /// - /// unaffected_by_chilled_ground_while_affected_by_purity_of_ice - /// - UnaffectedByChilledGroundWhileAffectedByPurityOfIce = 7213, - - /// - /// unaffected_by_frostbite_while_affected_by_purity_of_ice - /// - UnaffectedByFrostbiteWhileAffectedByPurityOfIce = 7214, - - /// - /// unaffected_by_shocked_ground_while_affected_by_purity_of_lightning - /// - UnaffectedByShockedGroundWhileAffectedByPurityOfLightning = 7215, - - /// - /// unaffected_by_conductivity_while_affected_by_purity_of_lightning - /// - UnaffectedByConductivityWhileAffectedByPurityOfLightning = 7216, - - /// - /// unaffected_by_elemental_weakness_while_affected_by_purity_of_elements - /// - UnaffectedByElementalWeaknessWhileAffectedByPurityOfElements = 7217, - - /// - /// reduce_enemy_cold_resistance_%_while_affected_by_hatred - /// - ReduceEnemyColdResistancePctWhileAffectedByHatred = 7218, - - /// - /// reduce_enemy_fire_resistance_%_while_affected_by_anger - /// - ReduceEnemyFireResistancePctWhileAffectedByAnger = 7219, - - /// - /// reduce_enemy_lightning_resistance_%_while_affected_by_wrath - /// - ReduceEnemyLightningResistancePctWhileAffectedByWrath = 7220, - - /// - /// energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline - /// - EnergyShieldRegenerationRatePerMinutePctWhileAffectedByDiscipline = 7221, - - /// - /// chance_to_block_spells_%_while_affected_by_discipline - /// - ChanceToBlockSpellsPctWhileAffectedByDiscipline = 7222, - - /// - /// energy_shield_delay_-%_while_affected_by_discipline - /// - EnergyShieldDelayPctWhileAffectedByDiscipline = 7223, - - /// - /// energy_shield_gain_per_target_hit_while_affected_by_discipline - /// - EnergyShieldGainPerTargetHitWhileAffectedByDiscipline = 7224, - - /// - /// mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath - /// - ManaLeechFromLightningDamagePermyriadWhileAffectedByWrath = 7225, - - /// - /// physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath - /// - PhysicalDamagePctToAddAsLightningDamageWhileAffectedByWrath = 7226, - - /// - /// base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath - /// - BasePhysicalDamagePctToConvertToLightningWhileAffectedByWrath = 7227, - - /// - /// virtual_non_skill_physical_damage_%_to_convert_to_fire - /// - VirtualNonSkillPhysicalDamagePctToConvertToFire = 7228, - - /// - /// virtual_non_skill_physical_damage_%_to_convert_to_cold - /// - VirtualNonSkillPhysicalDamagePctToConvertToCold = 7229, - - /// - /// virtual_non_skill_physical_damage_%_to_convert_to_lightning - /// - VirtualNonSkillPhysicalDamagePctToConvertToLightning = 7230, - - /// - /// virtual_non_skill_physical_damage_%_to_convert_to_chaos - /// - VirtualNonSkillPhysicalDamagePctToConvertToChaos = 7231, - - /// - /// virtual_non_skill_lightning_damage_%_to_convert_to_fire - /// - VirtualNonSkillLightningDamagePctToConvertToFire = 7232, - - /// - /// virtual_non_skill_lightning_damage_%_to_convert_to_cold - /// - VirtualNonSkillLightningDamagePctToConvertToCold = 7233, - - /// - /// virtual_non_skill_lightning_damage_%_to_convert_to_chaos - /// - VirtualNonSkillLightningDamagePctToConvertToChaos = 7234, - - /// - /// virtual_non_skill_cold_damage_%_to_convert_to_fire - /// - VirtualNonSkillColdDamagePctToConvertToFire = 7235, - - /// - /// virtual_non_skill_cold_damage_%_to_convert_to_chaos - /// - VirtualNonSkillColdDamagePctToConvertToChaos = 7236, - - /// - /// virtual_non_skill_fire_damage_%_to_convert_to_chaos - /// - VirtualNonSkillFireDamagePctToConvertToChaos = 7237, - - /// - /// base_physical_damage_%_to_convert_to_fire_while_affected_by_anger - /// - BasePhysicalDamagePctToConvertToFireWhileAffectedByAnger = 7238, - - /// - /// physical_damage_%_to_add_as_fire_damage_while_affected_by_anger - /// - PhysicalDamagePctToAddAsFireDamageWhileAffectedByAnger = 7239, - - /// - /// life_leech_from_fire_damage_permyriad_while_affected_by_anger - /// - LifeLeechFromFireDamagePermyriadWhileAffectedByAnger = 7240, - - /// - /// minimum_added_cold_damage_while_affected_by_hatred - /// - MinimumAddedColdDamageWhileAffectedByHatred = 7241, - - /// - /// maximum_added_cold_damage_while_affected_by_hatred - /// - MaximumAddedColdDamageWhileAffectedByHatred = 7242, - - /// - /// base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred - /// - BasePhysicalDamagePctToConvertToColdWhileAffectedByHatred = 7243, - - /// - /// additional_critical_strike_chance_permyriad_while_affected_by_hatred - /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByHatred = 7244, - - /// - /// life_leech_from_any_damage_permyriad_while_affected_by_vitality - /// - LifeLeechFromAnyDamagePermyriadWhileAffectedByVitality = 7245, - - /// - /// life_regeneration_per_minute_while_affected_by_vitality - /// - LifeRegenerationPerMinuteWhileAffectedByVitality = 7246, - - /// - /// life_recovery_rate_+%_while_affected_by_vitality - /// - LifeRecoveryRatePctWhileAffectedByVitality = 7247, - - /// - /// life_gain_per_target_hit_while_affected_by_vitality - /// - LifeGainPerTargetHitWhileAffectedByVitality = 7248, - - /// - /// virtual_skill_mana_cost_+ - /// - VirtualSkillManaCost = 7249, - - /// - /// skill_mana_cost_+_while_affected_by_clarity - /// - SkillManaCostWhileAffectedByClarity = 7250, - - /// - /// damage_removed_from_mana_before_life_%_while_affected_by_clarity - /// - DamageRemovedFromManaBeforeLifePctWhileAffectedByClarity = 7251, - - /// - /// recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity - /// - Recover10PctManaOnSkillUsePctChanceWhileAffectedByClarity = 7252, - - /// - /// maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity - /// - MaximumManaPctToAddToEnergyShieldWhileAffectedByClarity = 7253, - - /// - /// chance_to_dodge_spells_%_while_affected_by_haste - /// - ChanceToDodgeSpellsPctWhileAffectedByHaste = 7254, - - /// - /// gain_onslaught_on_kill_ms_while_affected_by_haste - /// - GainOnslaughtOnKillMsWhileAffectedByHaste = 7255, - - /// - /// gain_phasing_while_affected_by_haste - /// - GainPhasingWhileAffectedByHaste = 7256, - - /// - /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire - /// - PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfFire = 7257, - - /// - /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice - /// - PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfIce = 7258, - - /// - /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning - /// - PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfLightning = 7259, - - /// - /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements - /// - PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfElements = 7260, - - /// - /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements - /// - PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfElements = 7261, - - /// - /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements - /// - PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfElements = 7262, - - /// - /// immune_to_ignite_while_affected_by_purity_of_fire - /// - ImmuneToIgniteWhileAffectedByPurityOfFire = 7263, - - /// - /// immune_to_freeze_while_affected_by_purity_of_ice - /// - ImmuneToFreezeWhileAffectedByPurityOfIce = 7264, - - /// - /// immune_to_shock_while_affected_by_purity_of_lightning - /// - ImmuneToShockWhileAffectedByPurityOfLightning = 7265, - - /// - /// virtual_physical_damage_taken_%_as_fire - /// - VirtualPhysicalDamageTakenPctAsFire = 7266, - - /// - /// virtual_physical_damage_taken_%_as_cold - /// - VirtualPhysicalDamageTakenPctAsCold = 7267, - - /// - /// virtual_physical_damage_taken_%_as_lightning - /// - VirtualPhysicalDamageTakenPctAsLightning = 7268, - - /// - /// disable_rarity_epk - /// - DisableRarityEpk = 7269, - - /// - /// cannot_spawn_support_ghosts - /// - CannotSpawnSupportGhosts = 7270, - - /// - /// chance_to_gain_frenzy_charge_on_block_% - /// - ChanceToGainFrenzyChargeOnBlockPct = 7271, - - /// - /// spell_damage_+%_per_10_strength - /// - SpellDamagePctPer10Strength = 7272, - - /// - /// spell_damage_+%_per_16_dex - /// - SpellDamagePctPer16Dex = 7273, - - /// - /// spell_damage_+%_per_16_strength - /// - SpellDamagePctPer16Strength = 7274, - - /// - /// spell_damage_+%_per_16_int - /// - SpellDamagePctPer16Int = 7275, - - /// - /// deal_no_non_elemental_damage - /// - DealNoNonElementalDamage = 7276, - - /// - /// cast_speed_+%_if_enemy_killed_recently - /// - CastSpeedPctIfEnemyKilledRecently = 7277, - - /// - /// trigger_on_skill_use_%_if_you_have_a_spirit_charge - /// - TriggerOnSkillUsePctIfYouHaveASpiritCharge = 7278, - - /// - /// map_force_private_seed_debug - /// - MapForcePrivateSeedDebug = 7279, - - /// - /// active_skill_display_aegis_variation - /// - ActiveSkillDisplayAegisVariation = 7280, - - /// - /// volatile_dead_number_of_corpses_to_consume - /// - VolatileDeadNumberOfCorpsesToConsume = 7281, - - /// - /// unearth_additional_corpse_level - /// - UnearthAdditionalCorpseLevel = 7282, - - /// - /// unearth_corpse_level - /// - UnearthCorpseLevel = 7283, - - /// - /// corpse_erruption_maximum_number_of_geyers - /// - CorpseErruptionMaximumNumberOfGeyers = 7284, - - /// - /// base_number_of_effigies_allowed - /// - BaseNumberOfEffigiesAllowed = 7285, - - /// - /// visual_attached_elder_tentacles - /// - VisualAttachedElderTentacles = 7286, - - /// - /// map_elder_influence_additional_packs_of_elder_monsters - /// - MapElderInfluenceAdditionalPacksOfElderMonsters = 7287, - - /// - /// bone_lance_damage_+% - /// - BoneLanceDamagePct = 7288, - - /// - /// corpse_eruption_damage_+% - /// - CorpseEruptionDamagePct = 7289, - - /// - /// volatile_dead_damage_+% - /// - VolatileDeadDamagePct = 7290, - - /// - /// corpse_warp_damage_+% - /// - CorpseWarpDamagePct = 7291, - - /// - /// bone_lance_cast_speed_+% - /// - BoneLanceCastSpeedPct = 7292, - - /// - /// corpse_eruption_cast_speed_+% - /// - CorpseEruptionCastSpeedPct = 7293, - - /// - /// volatile_dead_cast_speed_+% - /// - VolatileDeadCastSpeedPct = 7294, - - /// - /// corpse_warp_cast_speed_+% - /// - CorpseWarpCastSpeedPct = 7295, - - /// - /// display_attack_block_chance - /// - DisplayAttackBlockChance = 7296, - - /// - /// display_spell_block_chance - /// - DisplaySpellBlockChance = 7297, - - /// - /// minimum_added_chaos_damage_taken - /// - MinimumAddedChaosDamageTaken = 7298, - - /// - /// maximum_added_chaos_damage_taken - /// - MaximumAddedChaosDamageTaken = 7299, - - /// - /// chance_to_be_maimed_when_hit_% - /// - ChanceToBeMaimedWhenHitPct = 7300, - - /// - /// energy_shield_gained_on_spell_hit - /// - EnergyShieldGainedOnSpellHit = 7301, - - /// - /// monster_spirit_charges_are_infinite - /// - MonsterSpiritChargesAreInfinite = 7302, - - /// - /// gain_spirit_charge_on_kill_%_chance - /// - GainSpiritChargeOnKillPctChance = 7303, - - /// - /// gain_%_life_when_spirit_charge_expires_or_consumed - /// - GainPctLifeWhenSpiritChargeExpiresOrConsumed = 7304, - - /// - /// local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge - /// - LocalDisplayTriggerLevelXSpiritBurstOnSkillUseIfHaveSpiritCharge = 7305, - - /// - /// maximum_spirit_charges_per_abyss_jewel_equipped - /// - MaximumSpiritChargesPerAbyssJewelEquipped = 7306, - - /// - /// local_display_socketed_gems_supported_by_level_x_elemental_penetration - /// - LocalDisplaySocketedGemsSupportedByLevelXElementalPenetration = 7307, - - /// - /// skill_used_by_mirage_archer - /// - SkillUsedByMirageArcher = 7308, - - /// - /// support_mirage_archer_attack_speed_+%_final - /// - SupportMirageArcherAttackSpeedPctFinal = 7309, - - /// - /// virtual_maximum_spirit_charges - /// - VirtualMaximumSpiritCharges = 7310, - - /// - /// gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy - /// - GainDebilitatingPresenceMsOnKillVsRareOrUniqueEnemy = 7311, - - /// - /// cast_speed_+%_from_grasping_tentacles - /// - CastSpeedPctFromGraspingTentacles = 7312, - - /// - /// charge_elder_art_variation - /// - ChargeElderArtVariation = 7313, - - /// - /// virtual_projectile_additional_height_offset - /// - VirtualProjectileAdditionalHeightOffset = 7314, - - /// - /// local_display_trigger_level_20_shade_form_on_skill_use_% - /// - LocalDisplayTriggerLevel20ShadeFormOnSkillUsePct = 7315, - - /// - /// mirage_archer_projectile_additional_height_offset - /// - MirageArcherProjectileAdditionalHeightOffset = 7316, - - /// - /// minimum_added_physical_damage_per_endurance_charge - /// - MinimumAddedPhysicalDamagePerEnduranceCharge = 7317, - - /// - /// maximum_added_physical_damage_per_endurance_charge - /// - MaximumAddedPhysicalDamagePerEnduranceCharge = 7318, - - /// - /// chaos_damage_resistance_%_per_endurance_charge - /// - ChaosDamageResistancePctPerEnduranceCharge = 7319, - - /// - /// elemental_damage_taken_from_hits_+%_per_endurance_charge - /// - ElementalDamageTakenFromHitsPctPerEnduranceCharge = 7320, - - /// - /// physical_damage_reduction_rating_per_endurance_charge - /// - PhysicalDamageReductionRatingPerEnduranceCharge = 7321, - - /// - /// fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently - /// - FireDamageTakenPerMinutePerEnduranceChargeIfYouHaveBeenHitRecently = 7322, - - /// - /// minimum_added_lightning_damage_to_spells_per_power_charge - /// - MinimumAddedLightningDamageToSpellsPerPowerCharge = 7323, - - /// - /// maximum_added_lightning_damage_to_spells_per_power_charge - /// - MaximumAddedLightningDamageToSpellsPerPowerCharge = 7324, - - /// - /// additional_spell_block_%_per_power_charge - /// - AdditionalSpellBlockPctPerPowerCharge = 7325, - - /// - /// lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently - /// - LightningDamageTakenPerMinutePerPowerChargeIfHaveCritRecently = 7326, - - /// - /// avoid_elemental_damage_%_per_frenzy_charge - /// - AvoidElementalDamagePctPerFrenzyCharge = 7327, - - /// - /// life_leech_from_attack_damage_permyriad_per_frenzy_charge - /// - LifeLeechFromAttackDamagePermyriadPerFrenzyCharge = 7328, - - /// - /// cold_damage_taken_per_minute_per_frenzy_charge_while_moving - /// - ColdDamageTakenPerMinutePerFrenzyChargeWhileMoving = 7329, - - /// - /// raise_spectre_mana_cost_+% - /// - RaiseSpectreManaCostPct = 7330, - - /// - /// map_packs_have_tentacle_minions - /// - MapPacksHaveTentacleMinions = 7331, - - /// - /// map_elder_influence_spawn_daemon - /// - MapElderInfluenceSpawnDaemon = 7332, - - /// - /// monster_has_oni_goroshi - /// - MonsterHasOniGoroshi = 7333, - - /// - /// skill_user_maximum_life - /// - SkillUserMaximumLife = 7334, - - /// - /// local_display_grant_level_x_petrification_statue - /// - LocalDisplayGrantLevelXPetrificationStatue = 7335, - - /// - /// chest_display_guarded_by_dario - /// - ChestDisplayGuardedByDario = 7336, - - /// - /// base_physical_damage_over_time_taken_+% - /// - BasePhysicalDamageOverTimeTakenPct = 7337, - - /// - /// ground_spores_art_variation - /// - GroundSporesArtVariation = 7338, - - /// - /// move_daemon_use_random_direction - /// - MoveDaemonUseRandomDirection = 7339, - - /// - /// disable_skill_if_weapon_not_bow - /// - DisableSkillIfWeaponNotBow = 7340, - - /// - /// trigger_on_skill_use_from_chest_% - /// - TriggerOnSkillUseFromChestPct = 7341, - - /// - /// thrown_weapon_on_return_trigger_skills_with_id - /// - ThrownWeaponOnReturnTriggerSkillsWithId = 7342, - - /// - /// thrown_weapon_on_return_trigger_id - /// - ThrownWeaponOnReturnTriggerId = 7343, - - /// - /// thrown_weapon_on_return_trigger_% - /// - ThrownWeaponOnReturnTriggerPct = 7344, - - /// - /// skill_cannot_be_interrupted - /// - SkillCannotBeInterrupted = 7345, - - /// - /// skill_cannot_be_stunned - /// - SkillCannotBeStunned = 7346, - - /// - /// skill_cannot_be_knocked_back - /// - SkillCannotBeKnockedBack = 7347, - - /// - /// immobilised_by_elder_% - /// - ImmobilisedByElderPct = 7348, - - /// - /// recover_%_maximum_life_on_mana_flask_use - /// - RecoverPctMaximumLifeOnManaFlaskUse = 7349, - - /// - /// non_instant_mana_recovery_from_flasks_also_recovers_life - /// - NonInstantManaRecoveryFromFlasksAlsoRecoversLife = 7350, - - /// - /// spell_damage_+%_per_200_mana_spent_recently - /// - SpellDamagePctPer200ManaSpentRecently = 7351, - - /// - /// mana_cost_+%_per_200_mana_spent_recently - /// - ManaCostPctPer200ManaSpentRecently = 7352, - - /// - /// virtual_track_mana_spent_recently - /// - VirtualTrackManaSpentRecently = 7353, - - /// - /// total_mana_spent_recently - /// - TotalManaSpentRecently = 7354, - - /// - /// left_ring_is_shaper_item - /// - LeftRingIsShaperItem = 7355, - - /// - /// left_ring_is_elder_item - /// - LeftRingIsElderItem = 7356, - - /// - /// right_ring_is_shaper_item - /// - RightRingIsShaperItem = 7357, - - /// - /// right_ring_is_elder_item - /// - RightRingIsElderItem = 7358, - - /// - /// cannot_be_stunned_by_attacks_if_other_ring_is_elder_item - /// - CannotBeStunnedByAttacksIfOtherRingIsElderItem = 7359, - - /// - /// cannot_be_stunned_by_attacks_if_left_ring_is_elder_item - /// - CannotBeStunnedByAttacksIfLeftRingIsElderItem = 7360, - - /// - /// cannot_be_stunned_by_attacks_if_right_ring_is_elder_item - /// - CannotBeStunnedByAttacksIfRightRingIsElderItem = 7361, - - /// - /// attack_damage_+%_if_other_ring_is_shaper_item - /// - AttackDamagePctIfOtherRingIsShaperItem = 7362, - - /// - /// attack_damage_+%_if_left_ring_is_shaper_item - /// - AttackDamagePctIfLeftRingIsShaperItem = 7363, - - /// - /// attack_damage_+%_if_right_ring_is_shaper_item - /// - AttackDamagePctIfRightRingIsShaperItem = 7364, - - /// - /// spell_damage_+%_if_other_ring_is_elder_item - /// - SpellDamagePctIfOtherRingIsElderItem = 7365, - - /// - /// spell_damage_+%_if_left_ring_is_elder_item - /// - SpellDamagePctIfLeftRingIsElderItem = 7366, - - /// - /// spell_damage_+%_if_right_ring_is_elder_item - /// - SpellDamagePctIfRightRingIsElderItem = 7367, - - /// - /// cannot_be_stunned_by_spells_if_other_ring_is_shaper_item - /// - CannotBeStunnedBySpellsIfOtherRingIsShaperItem = 7368, - - /// - /// cannot_be_stunned_by_spells_if_left_ring_is_shaper_item - /// - CannotBeStunnedBySpellsIfLeftRingIsShaperItem = 7369, - - /// - /// cannot_be_stunned_by_spells_if_right_ring_is_shaper_item - /// - CannotBeStunnedBySpellsIfRightRingIsShaperItem = 7370, - - /// - /// current_siphoning_charges - /// - CurrentSiphoningCharges = 7371, - - /// - /// virtual_maximum_siphoning_charges - /// - VirtualMaximumSiphoningCharges = 7372, - - /// - /// gain_siphoning_charge_on_skill_use_%_chance - /// - GainSiphoningChargeOnSkillUsePctChance = 7373, - - /// - /// maximum_siphoning_charges_per_elder_or_shaper_item_equipped - /// - MaximumSiphoningChargesPerElderOrShaperItemEquipped = 7374, - - /// - /// attack_and_spell_minimum_added_physical_damage_per_siphoning_charge - /// - AttackAndSpellMinimumAddedPhysicalDamagePerSiphoningCharge = 7375, - - /// - /// attack_and_spell_maximum_added_physical_damage_per_siphoning_charge - /// - AttackAndSpellMaximumAddedPhysicalDamagePerSiphoningCharge = 7376, - - /// - /// life_leech_from_any_damage_permyriad_per_siphoning_charge - /// - LifeLeechFromAnyDamagePermyriadPerSiphoningCharge = 7377, - - /// - /// non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge - /// - NonChaosDamagePctToAddAsChaosDamagePerSiphoningCharge = 7378, - - /// - /// additional_physical_damage_reduction_against_hits_%_per_siphoning_charge - /// - AdditionalPhysicalDamageReductionAgainstHitsPctPerSiphoningCharge = 7379, - - /// - /// additional_physical_damage_reduction_%_against_hits - /// - AdditionalPhysicalDamageReductionPctAgainstHits = 7380, - - /// - /// armour_differs_against_hits - /// - ArmourDiffersAgainstHits = 7381, - - /// - /// display_estimated_physical_damage_reduction_against_hits_% - /// - DisplayEstimatedPhysicalDamageReductionAgainstHitsPct = 7382, - - /// - /// physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently - /// - PhysicalDamageTakenPerMinutePerSiphoningChargeIfHaveUsedASkillRecently = 7383, - - /// - /// track_have_used_a_skill_recently - /// - TrackHaveUsedASkillRecently = 7384, - - /// - /// have_used_a_skill_recently - /// - HaveUsedASkillRecently = 7385, - - /// - /// number_of_equipped_shaper_items - /// - NumberOfEquippedShaperItems = 7386, - - /// - /// virtual_physical_damage_taken_per_minute_per_siphoning_charge - /// - VirtualPhysicalDamageTakenPerMinutePerSiphoningCharge = 7387, - - /// - /// map_force_terrain_feature - /// - MapForceTerrainFeature = 7388, - - /// - /// local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow - /// - LocalDisplayTriggerLevelXVoidShotOnArrowFireWhileYouHaveVoidArrow = 7389, - - /// - /// trigger_on_skill_use_%_if_you_have_a_void_arrow - /// - TriggerOnSkillUsePctIfYouHaveAVoidArrow = 7390, - - /// - /// current_void_arrows - /// - CurrentVoidArrows = 7391, - - /// - /// maximum_void_arrows - /// - MaximumVoidArrows = 7392, - - /// - /// local_display_grant_void_arrow_every_x_ms - /// - LocalDisplayGrantVoidArrowEveryXMs = 7393, - - /// - /// local_display_trigger_tentacle_smash_on_kill_%_chance - /// - LocalDisplayTriggerTentacleSmashOnKillPctChance = 7394, - - /// - /// local_display_trigger_temporal_anomaly_when_hit_%_chance - /// - LocalDisplayTriggerTemporalAnomalyWhenHitPctChance = 7395, - - /// - /// local_display_trigger_void_sphere_on_kill_%_chance - /// - LocalDisplayTriggerVoidSphereOnKillPctChance = 7396, - - /// - /// despair_duration_+% - /// - DespairDurationPct = 7397, - - /// - /// despair_curse_effect_+% - /// - DespairCurseEffectPct = 7398, - - /// - /// inca_rock_spawn_chance_% - /// - IncaRockSpawnChancePct = 7399, - - /// - /// inca_rock_spawn_limit - /// - IncaRockSpawnLimit = 7400, - - /// - /// volatile_dead_consume_additional_corpse - /// - VolatileDeadConsumeAdditionalCorpse = 7401, - - /// - /// virtual_chance_to_evade_attacks_% - /// - VirtualChanceToEvadeAttacksPct = 7402, - - /// - /// projectile_skill_dot_ground_caustic_area_damage_per_minute - /// - ProjectileSkillDotGroundCausticAreaDamagePerMinute = 7403, - - /// - /// cannot_be_stunned_by_spells - /// - CannotBeStunnedBySpells = 7404, - - /// - /// cannot_be_stunned_by_attacks - /// - CannotBeStunnedByAttacks = 7405, - - /// - /// reflected_physical_damage_taken_+%_while_affected_by_determination - /// - ReflectedPhysicalDamageTakenPctWhileAffectedByDetermination = 7406, - - /// - /// virtual_physical_reflect_damage_taken_+% - /// - VirtualPhysicalReflectDamageTakenPct = 7407, - - /// - /// armour_+_while_affected_by_determination - /// - ArmourWhileAffectedByDetermination = 7408, - - /// - /// virtual_blind_enemies_when_hit_%_chance - /// - VirtualBlindEnemiesWhenHitPctChance = 7409, - - /// - /// blind_enemies_when_hit_while_affected_by_grace_%_chance - /// - BlindEnemiesWhenHitWhileAffectedByGracePctChance = 7410, - - /// - /// energy_shield_recovery_rate_while_affected_by_discipline_+% - /// - EnergyShieldRecoveryRateWhileAffectedByDisciplinePct = 7411, - - /// - /// fire_damage_+%_while_affected_by_anger - /// - FireDamagePctWhileAffectedByAnger = 7412, - - /// - /// critical_strike_multiplier_+_while_affected_by_anger - /// - CriticalStrikeMultiplierWhileAffectedByAnger = 7413, - - /// - /// lightning_damage_+%_while_affected_by_wrath - /// - LightningDamagePctWhileAffectedByWrath = 7414, - - /// - /// critical_strike_chance_+%_while_affected_by_wrath - /// - CriticalStrikeChancePctWhileAffectedByWrath = 7415, - - /// - /// cold_damage_+%_while_affected_by_hatred - /// - ColdDamagePctWhileAffectedByHatred = 7416, - - /// - /// flask_life_recovery_+%_while_affected_by_vitality - /// - FlaskLifeRecoveryPctWhileAffectedByVitality = 7417, - - /// - /// mana_recovery_rate_+%_while_affected_by_clarity - /// - ManaRecoveryRatePctWhileAffectedByClarity = 7418, - - /// - /// virtual_damage_taken_goes_to_mana_over_4_seconds_% - /// - VirtualDamageTakenGoesToManaOver4SecondsPct = 7419, - - /// - /// damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity - /// - DamageTakenGoesToManaOver4SecondsPctWhileAffectedByClarity = 7420, - - /// - /// virtual_debuff_time_passed_+% - /// - VirtualDebuffTimePassedPct = 7421, - - /// - /// debuff_time_passed_-%_while_affected_by_haste - /// - DebuffTimePassedPctWhileAffectedByHaste = 7422, - - /// - /// movement_skills_cooldown_speed_+%_while_affected_by_haste - /// - MovementSkillsCooldownSpeedPctWhileAffectedByHaste = 7423, - - /// - /// virtual_fire_reflect_damage_taken_+% - /// - VirtualFireReflectDamageTakenPct = 7424, - - /// - /// virtual_lightning_reflect_damage_taken_+% - /// - VirtualLightningReflectDamageTakenPct = 7425, - - /// - /// virtual_cold_reflect_damage_taken_+% - /// - VirtualColdReflectDamageTakenPct = 7426, - - /// - /// fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire - /// - FireReflectDamageTakenPctWhileAffectedByPurityOfFire = 7427, - - /// - /// lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning - /// - LightningReflectDamageTakenPctWhileAffectedByPurityOfLightning = 7428, - - /// - /// cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice - /// - ColdReflectDamageTakenPctWhileAffectedByPurityOfIce = 7429, - - /// - /// elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements - /// - ElementalReflectDamageTakenPctWhileAffectedByPurityOfElements = 7430, - - /// - /// chaos_damage_resistance_%_while_affected_by_purity_of_elements - /// - ChaosDamageResistancePctWhileAffectedByPurityOfElements = 7431, - - /// - /// intimidating_cry_attack_speed_+%_per_100_enemies - /// - IntimidatingCryAttackSpeedPctPer100Enemies = 7432, - - /// - /// local_display_grants_skill_intimidating_cry_level - /// - LocalDisplayGrantsSkillIntimidatingCryLevel = 7433, - - /// - /// map_spawn_bestiary_encounters - /// - MapSpawnBestiaryEncounters = 7434, - - /// - /// map_force_bestiary_encounter - /// - MapForceBestiaryEncounter = 7435, - - /// - /// local_display_grants_skill_cat_aspect_level - /// - LocalDisplayGrantsSkillCatAspectLevel = 7436, - - /// - /// local_display_grants_skill_bird_aspect_level - /// - LocalDisplayGrantsSkillBirdAspectLevel = 7437, - - /// - /// avoid_damage_% - /// - AvoidDamagePct = 7438, - - /// - /// minion_chance_to_deal_double_damage_% - /// - MinionChanceToDealDoubleDamagePct = 7439, - - /// - /// local_display_grants_skill_spider_aspect_level - /// - LocalDisplayGrantsSkillSpiderAspectLevel = 7440, - - /// - /// damage_+%_per_10_dex - /// - DamagePctPer10Dex = 7441, - - /// - /// life_regeneration_per_minute_while_ignited - /// - LifeRegenerationPerMinuteWhileIgnited = 7442, - - /// - /// chance_to_deal_double_damage_%_per_500_strength - /// - ChanceToDealDoubleDamagePctPer500Strength = 7443, - - /// - /// virtual_chance_to_deal_double_damage_% - /// - VirtualChanceToDealDoubleDamagePct = 7444, - - /// - /// track_have_killed_cursed_enemy_recently - /// - TrackHaveKilledCursedEnemyRecently = 7445, - - /// - /// have_killed_cursed_enemy_recently - /// - HaveKilledCursedEnemyRecently = 7446, - - /// - /// elemental_damage_+%_if_cursed_enemy_killed_recently - /// - ElementalDamagePctIfCursedEnemyKilledRecently = 7447, - - /// - /// local_display_grants_skill_crab_aspect_level - /// - LocalDisplayGrantsSkillCrabAspectLevel = 7448, - - /// - /// current_crab_aspect_stacks - /// - CurrentCrabAspectStacks = 7449, - - /// - /// max_crab_aspect_stacks - /// - MaxCrabAspectStacks = 7450, - - /// - /// physical_damage_reduction_%_per_crab_aspect_stack - /// - PhysicalDamageReductionPctPerCrabAspectStack = 7451, - - /// - /// raging_spirits_refresh_duration_when_they_kill_ignited_enemy - /// - RagingSpiritsRefreshDurationWhenTheyKillIgnitedEnemy = 7452, - - /// - /// add_frenzy_charge_every_50_rampage_stacks - /// - AddFrenzyChargeEvery50RampageStacks = 7453, - - /// - /// area_of_effect_+%_per_25_rampage_stacks - /// - AreaOfEffectPctPer25RampageStacks = 7454, - - /// - /// traps_do_not_explode_on_timeout - /// - TrapsDoNotExplodeOnTimeout = 7455, - - /// - /// cannot_be_ignited_while_flame_golem_summoned - /// - CannotBeIgnitedWhileFlameGolemSummoned = 7456, - - /// - /// cannot_be_shocked_while_lightning_golem_summoned - /// - CannotBeShockedWhileLightningGolemSummoned = 7457, - - /// - /// cannot_be_chilled_or_frozen_while_ice_golem_summoned - /// - CannotBeChilledOrFrozenWhileIceGolemSummoned = 7458, - - /// - /// cannot_be_chilled - /// - CannotBeChilled = 7459, - - /// - /// attach_vines_to_defender_on_hit_%_chance - /// - AttachVinesToDefenderOnHitPctChance = 7460, - - /// - /// unaffected_by_curses - /// - UnaffectedByCurses = 7461, - - /// - /// chill_minimum_slow_% - /// - ChillMinimumSlowPct = 7462, - - /// - /// shock_minimum_damage_taken_increase_% - /// - ShockMinimumDamageTakenIncreasePct = 7463, - - /// - /// has_avians_flight - /// - HasAviansFlight = 7464, - - /// - /// has_avians_might - /// - HasAviansMight = 7465, - - /// - /// life_regeneration_per_minute_while_you_have_avians_flight - /// - LifeRegenerationPerMinuteWhileYouHaveAviansFlight = 7466, - - /// - /// mana_regeneration_rate_per_minute_while_you_have_avians_flight - /// - ManaRegenerationRatePerMinuteWhileYouHaveAviansFlight = 7467, - - /// - /// avians_flight_duration_ms_+ - /// - AviansFlightDurationMs = 7468, - - /// - /// avians_might_duration_ms_+ - /// - AviansMightDurationMs = 7469, - - /// - /// minimum_added_cold_damage_while_you_have_avians_might - /// - MinimumAddedColdDamageWhileYouHaveAviansMight = 7470, - - /// - /// maximum_added_cold_damage_while_you_have_avians_might - /// - MaximumAddedColdDamageWhileYouHaveAviansMight = 7471, - - /// - /// minimum_added_lightning_damage_while_you_have_avians_might - /// - MinimumAddedLightningDamageWhileYouHaveAviansMight = 7472, - - /// - /// maximum_added_lightning_damage_while_you_have_avians_might - /// - MaximumAddedLightningDamageWhileYouHaveAviansMight = 7473, - - /// - /// aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies - /// - AspectOfTheAvianGrantsAviansMightAndAviansFlightToNearbyAllies = 7474, - - /// - /// aspect_of_the_avian_buff_effect_+% - /// - AspectOfTheAvianBuffEffectPct = 7475, - - /// - /// retaliation_godmode_ghost_duration_ms - /// - RetaliationGodmodeGhostDurationMs = 7476, - - /// - /// has_cats_stealth - /// - HasCatsStealth = 7477, - - /// - /// local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_% - /// - LocalDisplayTriggerLevel20TornadoWhenYouGainAviansFlightOrAviansMightPct = 7478, - - /// - /// cast_on_gain_avians_flight_or_avians_might_% - /// - CastOnGainAviansFlightOrAviansMightPct = 7479, - - /// - /// gain_phasing_while_you_have_cats_stealth - /// - GainPhasingWhileYouHaveCatsStealth = 7480, - - /// - /// cats_stealth_duration_ms_+ - /// - CatsStealthDurationMs = 7481, - - /// - /// cat_aspect_reserves_no_mana - /// - CatAspectReservesNoMana = 7482, - - /// - /// gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth - /// - GainMaximumFrenzyAndPowerChargesWhenYouGainCatsStealth = 7483, - - /// - /// override_off_hand_base_critical_strike_chance_to_5% - /// - OverrideOffHandBaseCriticalStrikeChanceTo5Pct = 7484, - - /// - /// cannot_be_stunned_if_you_have_10_or_more_crab_charges - /// - CannotBeStunnedIfYouHave10OrMoreCrabCharges = 7485, - - /// - /// number_of_crab_charges_lost_recently - /// - NumberOfCrabChargesLostRecently = 7486, - - /// - /// cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently - /// - CannotLoseCrabChargesIfYouHaveLostCrabChargesRecently = 7487, - - /// - /// do_not_lose_crab_charges_when_hit - /// - DoNotLoseCrabChargesWhenHit = 7488, - - /// - /// damage_+%_per_crab_charge - /// - DamagePctPerCrabCharge = 7489, - - /// - /// chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_% - /// - ChanceToGainMaxCrabStacksWhenYouWouldGainACrabStackPct = 7490, - - /// - /// additional_block_%_while_you_have_at_least_5_crab_charges - /// - AdditionalBlockPctWhileYouHaveAtLeast5CrabCharges = 7491, - - /// - /// additional_block_%_while_you_have_at_least_10_crab_charges - /// - AdditionalBlockPctWhileYouHaveAtLeast10CrabCharges = 7492, - - /// - /// number_of_crab_charges_lost_when_hit - /// - NumberOfCrabChargesLostWhenHit = 7493, - - /// - /// life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently - /// - LifeAndManaLeechFromAttackDamagePermyriadIfKilledRecently = 7494, - - /// - /// monster_mortar_number_of_forks - /// - MonsterMortarNumberOfForks = 7495, - - /// - /// local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth - /// - LocalDisplayTriggerLevelXIntimidatingCryWhenYouLoseCatsStealth = 7496, - - /// - /// cast_on_lose_cats_stealth - /// - CastOnLoseCatsStealth = 7497, - - /// - /// movement_speed_+%_while_you_have_cats_stealth - /// - MovementSpeedPctWhileYouHaveCatsStealth = 7498, - - /// - /// minimum_added_fire_damage_to_attacks_per_10_strength - /// - MinimumAddedFireDamageToAttacksPer10Strength = 7499, - - /// - /// maximum_added_fire_damage_to_attacks_per_10_strength - /// - MaximumAddedFireDamageToAttacksPer10Strength = 7500, - - /// - /// minimum_added_cold_damage_to_attacks_per_10_dexterity - /// - MinimumAddedColdDamageToAttacksPer10Dexterity = 7501, - - /// - /// maximum_added_cold_damage_to_attacks_per_10_dexterity - /// - MaximumAddedColdDamageToAttacksPer10Dexterity = 7502, - - /// - /// minimum_added_lightning_damage_to_attacks_per_10_intelligence - /// - MinimumAddedLightningDamageToAttacksPer10Intelligence = 7503, - - /// - /// maximum_added_lightning_damage_to_attacks_per_10_intelligence - /// - MaximumAddedLightningDamageToAttacksPer10Intelligence = 7504, - - /// - /// gain_rage_on_kill - /// - GainRageOnKill = 7505, - - /// - /// maximum_rage - /// - MaximumRage = 7506, - - /// - /// current_rage - /// - CurrentRage = 7507, - - /// - /// attack_damage_+%_from_rage - /// - AttackDamagePctFromRage = 7508, - - /// - /// attack_speed_+%_from_rage - /// - AttackSpeedPctFromRage = 7509, - - /// - /// movement_speed_+%_from_rage - /// - MovementSpeedPctFromRage = 7510, - - /// - /// life_loss_%_per_minute_from_rage - /// - LifeLossPctPerMinuteFromRage = 7511, - - /// - /// gain_rage_when_you_use_a_warcry - /// - GainRageWhenYouUseAWarcry = 7512, - - /// - /// rage_effects_doubled - /// - RageEffectsDoubled = 7513, - - /// - /// virtual_life_degeneration_per_minute - /// - VirtualLifeDegenerationPerMinute = 7514, - - /// - /// gain_rage_on_hitting_rare_unique_enemy_% - /// - GainRageOnHittingRareUniqueEnemyPct = 7515, - - /// - /// spectral_shield_throw_secondary_projectiles_pierce - /// - SpectralShieldThrowSecondaryProjectilesPierce = 7516, - - /// - /// herald_skills_mana_reservation_+% - /// - HeraldSkillsManaReservationPct = 7517, - - /// - /// herald_effect_on_self_+% - /// - HeraldEffectOnSelfPct = 7518, - - /// - /// affected_by_herald_of_ash - /// - AffectedByHeraldOfAsh = 7519, - - /// - /// affected_by_herald_of_ice - /// - AffectedByHeraldOfIce = 7520, - - /// - /// affected_by_herald_of_thunder - /// - AffectedByHeraldOfThunder = 7521, - - /// - /// damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash - /// - DamagePenetratesPctFireResistanceWhileAffectedByHeraldOfAsh = 7522, - - /// - /// damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice - /// - DamagePenetratesPctColdResistanceWhileAffectedByHeraldOfIce = 7523, - - /// - /// damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder - /// - DamagePenetratesPctLightningResistanceWhileAffectedByHeraldOfThunder = 7524, - - /// - /// cannot_be_stunned_with_25_rage - /// - CannotBeStunnedWith25Rage = 7525, - - /// - /// monster_rarity_damage_+%_final - /// - MonsterRarityDamagePctFinal = 7526, - - /// - /// counterattacks_deal_double_damage - /// - CounterattacksDealDoubleDamage = 7527, - - /// - /// owner_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds - /// - OwnerStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 7528, - - /// - /// chance_to_gain_random_standard_charge_on_hit_% - /// - ChanceToGainRandomStandardChargeOnHitPct = 7529, - - /// - /// blink_and_mirror_arrow_cooldown_speed_+% - /// - BlinkAndMirrorArrowCooldownSpeedPct = 7530, - - /// - /// elementalist_elemental_damage_+%_for_5_seconds - /// - ElementalistElementalDamagePctFor5Seconds = 7531, - - /// - /// elementalist_area_of_effect_+%_for_5_seconds - /// - ElementalistAreaOfEffectPctFor5Seconds = 7532, - - /// - /// immune_to_elemental_ailments_while_on_consecrated_ground - /// - ImmuneToElementalAilmentsWhileOnConsecratedGround = 7533, - - /// - /// create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy - /// - CreateConsecratedGroundOnHitPctVsRareOrUniqueEnemy = 7534, - - /// - /// cannot_be_stunned_while_fortified - /// - CannotBeStunnedWhileFortified = 7535, - - /// - /// armour_and_evasion_rating_+_while_fortified - /// - ArmourAndEvasionRatingWhileFortified = 7536, - - /// - /// global_chance_to_blind_on_hit_%_vs_bleeding_enemies - /// - GlobalChanceToBlindOnHitPctVsBleedingEnemies = 7537, - - /// - /// cannot_be_stunned_by_blocked_hits - /// - CannotBeStunnedByBlockedHits = 7538, - - /// - /// gratuitous_violence_bleeding_damage_+%_final - /// - GratuitousViolenceBleedingDamagePctFinal = 7539, - - /// - /// chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy - /// - ChanceToGainOnslaughtOnHitPctVsRareOrUniqueEnemy = 7540, - - /// - /// unaffected_by_temporal_chains - /// - UnaffectedByTemporalChains = 7541, - - /// - /// apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy - /// - ApplyCoveredInAshToAttackerOnHitPctVsRareOrUniqueEnemy = 7542, - - /// - /// gain_endurance_charge_per_second_if_have_been_hit_recently - /// - GainEnduranceChargePerSecondIfHaveBeenHitRecently = 7543, - - /// - /// stun_duration_+%_per_endurance_charge - /// - StunDurationPctPerEnduranceCharge = 7544, - - /// - /// chance_to_gain_endurance_charge_on_stun_% - /// - ChanceToGainEnduranceChargeOnStunPct = 7545, - - /// - /// totem_maximum_energy_shield - /// - TotemMaximumEnergyShield = 7546, - - /// - /// you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem - /// - YouAndTotemLifeRegenerationRatePerMinutePctPerActiveTotem = 7547, - - /// - /// mana_regeneration_rate_per_minute_%_per_active_totem - /// - ManaRegenerationRatePerMinutePctPerActiveTotem = 7548, - - /// - /// fire_damage_+%_per_endurance_charge - /// - FireDamagePctPerEnduranceCharge = 7549, - - /// - /// track_have_taken_fire_damage_from_an_enemy_hit_recently - /// - TrackHaveTakenFireDamageFromAnEnemyHitRecently = 7550, - - /// - /// have_taken_fire_damage_from_an_enemy_hit_recently - /// - HaveTakenFireDamageFromAnEnemyHitRecently = 7551, - - /// - /// life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently - /// - LifeRegenerationRatePerMinutePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 7552, - - /// - /// local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds - /// - LocalDisplayEvery10SecondsPhysicalDamagePctToAddAsFireFor3Seconds = 7553, - - /// - /// critical_strike_damage_cannot_be_reflected - /// - CriticalStrikeDamageCannotBeReflected = 7554, - - /// - /// damage_+%_if_only_one_enemy_nearby - /// - DamagePctIfOnlyOneEnemyNearby = 7555, - - /// - /// self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy - /// - SelfTakeNoExtraDamageFromCriticalStrikesIfOnlyOneNearbyEnemy = 7556, - - /// - /// poison_duration_+%_per_poison_applied_recently - /// - PoisonDurationPctPerPoisonAppliedRecently = 7557, - - /// - /// additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2% - /// - AdditionalCriticalStrikeChancePermyriadPerPoisonOnEnemyUpTo2Pct = 7558, - - /// - /// physical_damage_%_to_add_as_chaos_vs_poisoned_enemies - /// - PhysicalDamagePctToAddAsChaosVsPoisonedEnemies = 7559, - - /// - /// recover_permyriad_maximum_life_per_poison_on_enemy_on_kill - /// - RecoverPermyriadMaximumLifePerPoisonOnEnemyOnKill = 7560, - - /// - /// zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% - /// - ZombieCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 7561, - - /// - /// self_offering_effect_+% - /// - SelfOfferingEffectPct = 7562, - - /// - /// %_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage - /// - PctChanceToGain25PctNonChaosDamageToAddAsChaosDamage = 7563, - - /// - /// %_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage - /// - PctChanceToGain50PctNonChaosDamageToAddAsChaosDamage = 7564, - - /// - /// %_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage - /// - PctChanceToGain100PctNonChaosDamageToAddAsChaosDamage = 7565, - - /// - /// damage_+%_per_active_golem - /// - DamagePctPerActiveGolem = 7566, - - /// - /// virtual_total_number_of_active_golems - /// - VirtualTotalNumberOfActiveGolems = 7567, - - /// - /// unaffected_by_ignite - /// - UnaffectedByIgnite = 7568, - - /// - /// gain_accuracy_rating_equal_to_strength - /// - GainAccuracyRatingEqualToStrength = 7569, - - /// - /// accuracy_rating_+%_if_have_crit_in_past_8_seconds - /// - AccuracyRatingPctIfHaveCritInPast8Seconds = 7570, - - /// - /// damage_+%_if_have_crit_in_past_8_seconds - /// - DamagePctIfHaveCritInPast8Seconds = 7571, - - /// - /// track_have_crit_in_past_8_seconds - /// - TrackHaveCritInPast8Seconds = 7572, - - /// - /// have_crit_in_past_8_seconds - /// - HaveCritInPast8Seconds = 7573, - - /// - /// virtual_accuracy_rating_+% - /// - VirtualAccuracyRatingPct = 7574, - - /// - /// hierophant_mana_reservation_+%_final - /// - HierophantManaReservationPctFinal = 7575, - - /// - /// elemental_penetration_%_if_you_have_a_power_charge - /// - ElementalPenetrationPctIfYouHaveAPowerCharge = 7576, - - /// - /// elemental_damage_taken_+%_if_you_have_an_endurance_charge - /// - ElementalDamageTakenPctIfYouHaveAnEnduranceCharge = 7577, - - /// - /// track_number_of_traps_triggered_recently - /// - TrackNumberOfTrapsTriggeredRecently = 7578, - - /// - /// number_of_traps_triggered_recently - /// - NumberOfTrapsTriggeredRecently = 7579, - - /// - /// track_number_of_mines_detonated_recently - /// - TrackNumberOfMinesDetonatedRecently = 7580, - - /// - /// number_of_mines_detonated_recently - /// - NumberOfMinesDetonatedRecently = 7581, - - /// - /// life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20% - /// - LifeRegenerationRatePerMinutePctPerTrapTriggeredRecentlyUpTo20Pct = 7582, - - /// - /// life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20% - /// - LifeRegenerationRatePerMinutePctPerMineDetonatedRecentlyUpTo20Pct = 7583, - - /// - /// you_and_allies_additional_block_%_if_have_attacked_recently - /// - YouAndAlliesAdditionalBlockPctIfHaveAttackedRecently = 7584, - - /// - /// you_and_allies_additional_spell_block_%_if_cast_spell_recently - /// - YouAndAlliesAdditionalSpellBlockPctIfCastSpellRecently = 7585, - - /// - /// movement_speed_+%_while_you_have_energy_shield - /// - MovementSpeedPctWhileYouHaveEnergyShield = 7586, - - /// - /// chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield - /// - ChanceToDodgeAttacksAndSpellsPctWhileYouHaveEnergyShield = 7587, - - /// - /// trickster_damage_over_time_+%_final - /// - TricksterDamageOverTimePctFinal = 7588, - - /// - /// object_cannot_taunt_enemies - /// - ObjectCannotTauntEnemies = 7589, - - /// - /// cold_beam_retaliation_chilled_ground_in_beam_duration_ms - /// - ColdBeamRetaliationChilledGroundInBeamDurationMs = 7590, - - /// - /// cold_beam_retaliation_chilled_ground_in_area_duration_ms - /// - ColdBeamRetaliationChilledGroundInAreaDurationMs = 7591, - - /// - /// enemy_extra_damage_rolls_when_on_full_life - /// - EnemyExtraDamageRollsWhenOnFullLife = 7592, - - /// - /// burning_damage_+%_per_non_shocked_enemy_shocked_recently - /// - BurningDamagePctPerNonShockedEnemyShockedRecently = 7593, - - /// - /// global_minimum_added_lightning_damage_vs_ignited_enemies - /// - GlobalMinimumAddedLightningDamageVsIgnitedEnemies = 7594, - - /// - /// global_maximum_added_lightning_damage_vs_ignited_enemies - /// - GlobalMaximumAddedLightningDamageVsIgnitedEnemies = 7595, - - /// - /// lightning_damage_can_ignite - /// - LightningDamageCanIgnite = 7596, - - /// - /// minimum_added_spell_fire_damage_while_no_life_is_reserved - /// - MinimumAddedSpellFireDamageWhileNoLifeIsReserved = 7597, - - /// - /// maximum_added_spell_fire_damage_while_no_life_is_reserved - /// - MaximumAddedSpellFireDamageWhileNoLifeIsReserved = 7598, - - /// - /// minimum_added_spell_cold_damage_while_no_life_is_reserved - /// - MinimumAddedSpellColdDamageWhileNoLifeIsReserved = 7599, - - /// - /// maximum_added_spell_cold_damage_while_no_life_is_reserved - /// - MaximumAddedSpellColdDamageWhileNoLifeIsReserved = 7600, - - /// - /// minimum_added_spell_lightning_damage_while_no_life_is_reserved - /// - MinimumAddedSpellLightningDamageWhileNoLifeIsReserved = 7601, - - /// - /// maximum_added_spell_lightning_damage_while_no_life_is_reserved - /// - MaximumAddedSpellLightningDamageWhileNoLifeIsReserved = 7602, - - /// - /// projectile_attack_damage_+%_with_at_least_200_dex - /// - ProjectileAttackDamagePctWithAtLeast200Dex = 7603, - - /// - /// critical_strike_chance_+%_with_at_least_200_int - /// - CriticalStrikeChancePctWithAtLeast200Int = 7604, - - /// - /// virtual_keystone_crimson_dance - /// - VirtualKeystoneCrimsonDance = 7605, - - /// - /// keystone_crimson_dance - /// - KeystoneCrimsonDance = 7606, - - /// - /// gain_crimson_dance_if_have_dealt_critical_strike_recently - /// - GainCrimsonDanceIfHaveDealtCriticalStrikeRecently = 7607, - - /// - /// gain_crimson_dance_while_you_have_cat_stealth - /// - GainCrimsonDanceWhileYouHaveCatStealth = 7608, - - /// - /// virtual_bleeding_stacks_up_to_x_times - /// - VirtualBleedingStacksUpToXTimes = 7609, - - /// - /// gain_onslaught_while_on_low_life - /// - GainOnslaughtWhileOnLowLife = 7610, - - /// - /// hits_ignore_enemy_fire_resistance_while_you_are_ignited - /// - HitsIgnoreEnemyFireResistanceWhileYouAreIgnited = 7611, - - /// - /// virtual_hits_ignore_enemy_fire_resistance - /// - VirtualHitsIgnoreEnemyFireResistance = 7612, - - /// - /// override_maximum_damage_resistance_% - /// - OverrideMaximumDamageResistancePct = 7613, - - /// - /// local_display_trigger_commandment_of_inferno_on_crit_% - /// - LocalDisplayTriggerCommandmentOfInfernoOnCritPct = 7614, - - /// - /// local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy - /// - LocalDisplayTriggerLevelXIcicleNovaOnKillVsFrozenEnemy = 7615, - - /// - /// trigger_on_kill_vs_frozen_enemy_% - /// - TriggerOnKillVsFrozenEnemyPct = 7616, - - /// - /// attacks_bleed_on_hit_while_you_have_cat_stealth - /// - AttacksBleedOnHitWhileYouHaveCatStealth = 7617, - - /// - /// hit_and_ailment_damage_+%_vs_bleeding_enemies - /// - HitAndAilmentDamagePctVsBleedingEnemies = 7618, - - /// - /// base_ailment_damage_+% - /// - BaseAilmentDamagePct = 7619, - - /// - /// accuracy_rating_vs_bleeding_enemies - /// - AccuracyRatingVsBleedingEnemies = 7620, - - /// - /// gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec - /// - GainPctTotalPhysDamagePreventedInThePast10SecAsLifeRegenPerSec = 7621, - - /// - /// total_armour_of_animated_guardians_items - /// - TotalArmourOfAnimatedGuardiansItems = 7622, - - /// - /// total_evasion_rating_of_animated_guardians_items - /// - TotalEvasionRatingOfAnimatedGuardiansItems = 7623, - - /// - /// total_maximum_energy_shield_of_animated_guardians_items - /// - TotalMaximumEnergyShieldOfAnimatedGuardiansItems = 7624, - - /// - /// animated_weapon_armour - /// - AnimatedWeaponArmour = 7625, - - /// - /// animated_weapon_evasion_rating - /// - AnimatedWeaponEvasionRating = 7626, - - /// - /// aniamted_weapon_maximum_energy_shield - /// - AniamtedWeaponMaximumEnergyShield = 7627, - - /// - /// defences_from_animated_guardians_items_apply_to_animated_weapon - /// - DefencesFromAnimatedGuardiansItemsApplyToAnimatedWeapon = 7628, - - /// - /// fire_projectile_retaliation_skill_visual_scale_+%_when_hit_while_charging - /// - FireProjectileRetaliationSkillVisualScalePctWhenHitWhileCharging = 7629, - - /// - /// fire_projectile_retaliation_area_of_effect_+%_when_hit_while_charging - /// - FireProjectileRetaliationAreaOfEffectPctWhenHitWhileCharging = 7630, - - /// - /// fire_projectile_retaliation_projectile_speed_and_damage_+%_when_hit_while_charging - /// - FireProjectileRetaliationProjectileSpeedAndDamagePctWhenHitWhileCharging = 7631, - - /// - /// gained_rage_recently - /// - GainedRageRecently = 7632, - - /// - /// local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance - /// - LocalDisplayTriggerLevel20AnimateGuardianWeaponOnGuardianKillPctChance = 7633, - - /// - /// chance_to_trigger_on_animate_guardian_kill_% - /// - ChanceToTriggerOnAnimateGuardianKillPct = 7634, - - /// - /// animate_guardian_and_weapon_track_on_kill - /// - AnimateGuardianAndWeaponTrackOnKill = 7635, - - /// - /// local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance - /// - LocalDisplayTriggerLevel20AnimateGuardianWeaponOnWeaponKillPctChance = 7636, - - /// - /// chance_to_trigger_on_animate_weapon_kill_% - /// - ChanceToTriggerOnAnimateWeaponKillPct = 7637, - - /// - /// you_cannot_have_non_animated_minions - /// - YouCannotHaveNonAnimatedMinions = 7638, - - /// - /// animate_guardian_damage_+%_per_animated_weapon - /// - AnimateGuardianDamagePctPerAnimatedWeapon = 7639, - - /// - /// animated_minions_melee_splash - /// - AnimatedMinionsMeleeSplash = 7640, - - /// - /// grant_animated_minion_melee_splash_damage_+%_final_for_splash - /// - GrantAnimatedMinionMeleeSplashDamagePctFinalForSplash = 7641, - - /// - /// animated_minion_melee_splash_damage_+%_final_for_splash - /// - AnimatedMinionMeleeSplashDamagePctFinalForSplash = 7642, - - /// - /// animated_minion_melee_splash_damage_+%_final - /// - AnimatedMinionMeleeSplashDamagePctFinal = 7643, - - /// - /// number_of_active_animated_armour - /// - NumberOfActiveAnimatedArmour = 7644, - - /// - /// geometry_attack_use_orientation_direction - /// - GeometryAttackUseOrientationDirection = 7645, - - /// - /// virtual_elemental_reflect_damage_taken_+% - /// - VirtualElementalReflectDamageTakenPct = 7646, - - /// - /// additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect - /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByCatAspect = 7647, - - /// - /// virtual_%_chance_to_blind_on_critical_strike - /// - VirtualPctChanceToBlindOnCriticalStrike = 7648, - - /// - /// %_chance_to_blind_on_critical_strike_while_you_have_cats_stealth - /// - PctChanceToBlindOnCriticalStrikeWhileYouHaveCatsStealth = 7649, - - /// - /// has_cat_aspect - /// - HasCatAspect = 7650, - - /// - /// hit_and_ailment_damage_+%_vs_blinded_enemies - /// - HitAndAilmentDamagePctVsBlindedEnemies = 7651, - - /// - /// has_adrenaline - /// - HasAdrenaline = 7652, - - /// - /// gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline - /// - GainAdrenalineForXSecondsOnLowLifeUnlessYouHaveAdrenaline = 7653, - - /// - /// remove_ailments_and_burning_on_gaining_adrenaline - /// - RemoveAilmentsAndBurningOnGainingAdrenaline = 7654, - - /// - /// attack_ailment_damage_+%_while_wielding_staff - /// - AttackAilmentDamagePctWhileWieldingStaff = 7655, - - /// - /// attack_ailment_damage_+%_while_wielding_wand - /// - AttackAilmentDamagePctWhileWieldingWand = 7656, - - /// - /// enemies_taunted_by_you_cannot_evade_attacks - /// - EnemiesTauntedByYouCannotEvadeAttacks = 7657, - - /// - /// spider_aspect_web_interval_ms - /// - SpiderAspectWebIntervalMs = 7658, - - /// - /// spider_aspect_max_web_count - /// - SpiderAspectMaxWebCount = 7659, - - /// - /// spider_aspect_debuff_duration_+% - /// - SpiderAspectDebuffDurationPct = 7660, - - /// - /// energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web - /// - EnergyShieldGainWhenYouHitEnemyAffectedBySpidersWeb = 7661, - - /// - /// chill_effect_is_reversed - /// - ChillEffectIsReversed = 7662, - - /// - /// virtual_on_low_life - /// - VirtualOnLowLife = 7663, - - /// - /// you_count_as_low_life_while_not_on_full_life - /// - YouCountAsLowLifeWhileNotOnFullLife = 7664, - - /// - /// mana_cost_+%_for_trap_and_mine_skills - /// - ManaCostPctForTrapAndMineSkills = 7665, - - /// - /// gain_arcane_surge_on_spell_hit_by_you_or_your_totems - /// - GainArcaneSurgeOnSpellHitByYouOrYourTotems = 7666, - - /// - /// spell_damage_+%_while_you_have_arcane_surge - /// - SpellDamagePctWhileYouHaveArcaneSurge = 7667, - - /// - /// area_of_effect_+%_while_you_have_arcane_surge - /// - AreaOfEffectPctWhileYouHaveArcaneSurge = 7668, - - /// - /// immune_to_elemental_ailments_while_you_have_arcane_surge - /// - ImmuneToElementalAilmentsWhileYouHaveArcaneSurge = 7669, - - /// - /// chance_to_gain_onslaught_on_kill_for_10_seconds_% - /// - ChanceToGainOnslaughtOnKillFor10SecondsPct = 7670, - - /// - /// curse_on_hit_level_poachers_mark_bypass_hexproof - /// - CurseOnHitLevelPoachersMarkBypassHexproof = 7671, - - /// - /// you_have_no_armour_or_energy_shield - /// - YouHaveNoArmourOrEnergyShield = 7672, - - /// - /// chance_to_trigger_socketed_spell_on_bow_attack_% - /// - ChanceToTriggerSocketedSpellOnBowAttackPct = 7673, - - /// - /// culling_strike_on_enemies_affected_by_poachers_mark - /// - CullingStrikeOnEnemiesAffectedByPoachersMark = 7674, - - /// - /// self_physical_damage_on_movement_skill_use - /// - SelfPhysicalDamageOnMovementSkillUse = 7675, - - /// - /// grant_tailwind_to_nearby_allies_if_used_skill_recently - /// - GrantTailwindToNearbyAlliesIfUsedSkillRecently = 7676, - - /// - /// evasion_rating_+_while_you_have_tailwind - /// - EvasionRatingWhileYouHaveTailwind = 7677, - - /// - /// tailwind_effect_on_self_+% - /// - TailwindEffectOnSelfPct = 7678, - - /// - /// enemies_you_curse_have_malediction - /// - EnemiesYouCurseHaveMalediction = 7679, - - /// - /// has_arcane_surge - /// - HasArcaneSurge = 7680, - - /// - /// virtual_light_radius_+% - /// - VirtualLightRadiusPct = 7681, - - /// - /// light_radius_increases_apply_to_area_of_effect - /// - LightRadiusIncreasesApplyToAreaOfEffect = 7682, - - /// - /// local_display_trigger_level_X_blinding_aura_skill_on_equip - /// - LocalDisplayTriggerLevelXBlindingAuraSkillOnEquip = 7683, - - /// - /// minimum_added_chaos_damage_per_spiders_web_on_enemy - /// - MinimumAddedChaosDamagePerSpidersWebOnEnemy = 7684, - - /// - /// maximum_added_chaos_damage_per_spiders_web_on_enemy - /// - MaximumAddedChaosDamagePerSpidersWebOnEnemy = 7685, - - /// - /// hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs - /// - HitAndAilmentDamagePctVsEnemiesAffectedByAtLeast3SpidersWebs = 7686, - - /// - /// damage_+%_for_enemies_you_inflict_spiders_web_upon - /// - DamagePctForEnemiesYouInflictSpidersWebUpon = 7687, - - /// - /// spider_aspect_skill_area_of_effect_+% - /// - SpiderAspectSkillAreaOfEffectPct = 7688, - - /// - /// resist_all_%_for_enemies_you_inflict_spiders_web_upon - /// - ResistAllPctForEnemiesYouInflictSpidersWebUpon = 7689, - - /// - /// resist_all_% - /// - ResistAllPct = 7690, - - /// - /// chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_% - /// - ChanceToGainPowerChargeOnHittingEnemyAffectedBySpidersWebPct = 7691, - - /// - /// chance_to_poison_on_hit_%_per_power_charge - /// - ChanceToPoisonOnHitPctPerPowerCharge = 7692, - - /// - /// poison_damage_+%_per_power_charge - /// - PoisonDamagePctPerPowerCharge = 7693, - - /// - /// spider_aspect_web_interval_ms_override - /// - SpiderAspectWebIntervalMsOverride = 7694, - - /// - /// bestiary_net_variation - /// - BestiaryNetVariation = 7695, - - /// - /// virtual_golem_buff_effect_+% - /// - VirtualGolemBuffEffectPct = 7696, - - /// - /// golem_buff_effect_+%_per_summoned_golem - /// - GolemBuffEffectPctPerSummonedGolem = 7697, - - /// - /// has_tailwind - /// - HasTailwind = 7698, - - /// - /// summoned_skeletons_hits_cant_be_evaded - /// - SummonedSkeletonsHitsCantBeEvaded = 7699, - - /// - /// zombie_slam_area_of_effect_+% - /// - ZombieSlamAreaOfEffectPct = 7700, - - /// - /// monster_slam_area_of_effect_+% - /// - MonsterSlamAreaOfEffectPct = 7701, - - /// - /// additional_block_%_per_hit_you_have_blocked_in_past_10_seconds - /// - AdditionalBlockPctPerHitYouHaveBlockedInPast10Seconds = 7702, - - /// - /// herald_of_ash_spell_fire_damage_+%_final - /// - HeraldOfAshSpellFireDamagePctFinal = 7703, - - /// - /// skill_uses_main_hand - /// - SkillUsesMainHand = 7704, - - /// - /// skill_uses_off_hand - /// - SkillUsesOffHand = 7705, - - /// - /// hundred_times_average_damage_per_spell_hit - /// - HundredTimesAverageDamagePerSpellHit = 7706, - - /// - /// hundred_times_average_damage_per_secondary_hit - /// - HundredTimesAverageDamagePerSecondaryHit = 7707, - - /// - /// hundred_times_average_damage_per_main_hand_hit - /// - HundredTimesAverageDamagePerMainHandHit = 7708, - - /// - /// hundred_times_average_damage_per_off_hand_hit - /// - HundredTimesAverageDamagePerOffHandHit = 7709, - - /// - /// life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge - /// - LifeLeechFromSpellDamagePermyriadWhileYouHaveArcaneSurge = 7710, - - /// - /// additional_spell_block_% - /// - AdditionalSpellBlockPct = 7711, - - /// - /// cannot_pierce - /// - CannotPierce = 7712, - - /// - /// deadeye_projectile_damage_+%_final_for_each_remaining_chain - /// - DeadeyeProjectileDamagePctFinalForEachRemainingChain = 7713, - - /// - /// raging_spirits_always_ignite - /// - RagingSpiritsAlwaysIgnite = 7714, - - /// - /// reduce_enemy_fire_resistance_%_vs_blinded_enemies - /// - ReduceEnemyFireResistancePctVsBlindedEnemies = 7715, - - /// - /// hits_cannot_be_evaded_vs_blinded_enemies - /// - HitsCannotBeEvadedVsBlindedEnemies = 7716, - - /// - /// base_body_armour_evasion_rating - /// - BaseBodyArmourEvasionRating = 7717, - - /// - /// base_helmet_maximum_energy_shield - /// - BaseHelmetMaximumEnergyShield = 7718, - - /// - /// evasion_rating_+_per_1_helmet_energy_shield - /// - EvasionRatingPer1HelmetEnergyShield = 7719, - - /// - /// maximum_energy_shield_+_per_6_body_armour_evasion_rating - /// - MaximumEnergyShieldPer6BodyArmourEvasionRating = 7720, - - /// - /// damage_taken_+%_if_have_not_been_hit_recently - /// - DamageTakenPctIfHaveNotBeenHitRecently = 7721, - - /// - /// cannot_be_stunned_if_have_not_been_hit_recently - /// - CannotBeStunnedIfHaveNotBeenHitRecently = 7722, - - /// - /// map_num_grandmasters - /// - MapNumGrandmasters = 7723, - - /// - /// map_grandmaster_seed - /// - MapGrandmasterSeed = 7724, - - /// - /// minimum_added_fire_damage_to_hits_vs_blinded_enemies - /// - MinimumAddedFireDamageToHitsVsBlindedEnemies = 7725, - - /// - /// maximum_added_fire_damage_to_hits_vs_blinded_enemies - /// - MaximumAddedFireDamageToHitsVsBlindedEnemies = 7726, - - /// - /// main_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies - /// - MainHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7727, - - /// - /// main_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies - /// - MainHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7728, - - /// - /// off_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies - /// - OffHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7729, - - /// - /// off_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies - /// - OffHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7730, - - /// - /// light_radius_increases_apply_to_accuracy - /// - LightRadiusIncreasesApplyToAccuracy = 7731, - - /// - /// endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge - /// - EnduranceChargeOnMeleeStunDamagePctFinalPerEnduranceCharge = 7732, - - /// - /// tectonic_slam_chance_to_use_endurance_charge_% - /// - TectonicSlamChanceToUseEnduranceChargePct = 7733, - - /// - /// tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value - /// - TectonicSlam1PctChanceToDoChargedSlamPer2StatValue = 7734, - - /// - /// tectonic_slam_%_chance_to_do_charged_slam - /// - TectonicSlamPctChanceToDoChargedSlam = 7735, - - /// - /// virtual_tectonic_slam_%_chance_to_do_charged_slam - /// - VirtualTectonicSlamPctChanceToDoChargedSlam = 7736, - - /// - /// %_number_of_raging_spirits_allowed - /// - PctNumberOfRagingSpiritsAllowed = 7737, - - /// - /// manifest_dancing_dervish_number_of_additional_copies - /// - ManifestDancingDervishNumberOfAdditionalCopies = 7738, - - /// - /// map_is_zana_map - /// - MapIsZanaMap = 7739, - - /// - /// map_num_zana_mods - /// - MapNumZanaMods = 7740, - - /// - /// local_display_trigger_level_x_curse_nova_on_hit_while_cursed - /// - LocalDisplayTriggerLevelXCurseNovaOnHitWhileCursed = 7741, - - /// - /// cast_on_hit_if_cursed_% - /// - CastOnHitIfCursedPct = 7742, - - /// - /// base_life_recovery_per_minute_from_flask - /// - BaseLifeRecoveryPerMinuteFromFlask = 7743, - - /// - /// base_mana_recovery_per_minute_from_flask - /// - BaseManaRecoveryPerMinuteFromFlask = 7744, - - /// - /// tectonic_slam_damage_+% - /// - TectonicSlamDamagePct = 7745, - - /// - /// tectonic_slam_area_of_effect_+% - /// - TectonicSlamAreaOfEffectPct = 7746, - - /// - /// spectral_shield_throw_damage_+% - /// - SpectralShieldThrowDamagePct = 7747, - - /// - /// spectral_shield_throw_projectile_speed_+% - /// - SpectralShieldThrowProjectileSpeedPct = 7748, - - /// - /// spectral_shield_throw_num_of_additional_projectiles - /// - SpectralShieldThrowNumOfAdditionalProjectiles = 7749, - - /// - /// cannot_take_reflected_elemental_damage - /// - CannotTakeReflectedElementalDamage = 7750, - - /// - /// cannot_take_reflected_physical_damage - /// - CannotTakeReflectedPhysicalDamage = 7751, - - /// - /// golem_damage_+%_per_active_golem - /// - GolemDamagePctPerActiveGolem = 7752, - - /// - /// tailwind_effect_on_self_+%_for_each_skill_used_recently - /// - TailwindEffectOnSelfPctForEachSkillUsedRecently = 7753, - - /// - /// virtual_spider_aspect_web_interval_ms - /// - VirtualSpiderAspectWebIntervalMs = 7754, - - /// - /// aspect_of_the_spider_web_count_+ - /// - AspectOfTheSpiderWebCount = 7755, - - /// - /// crab_aspect_crab_barrier_max_+ - /// - CrabAspectCrabBarrierMax = 7756, - - /// - /// combined_skill_dot_fire_damage_over_time_+%_final - /// - CombinedSkillDotFireDamageOverTimePctFinal = 7757, - - /// - /// shrapnel_trap_number_of_secondary_explosions - /// - ShrapnelTrapNumberOfSecondaryExplosions = 7758, - - /// - /// shrapnel_trap_number_of_additional_secondary_explosions - /// - ShrapnelTrapNumberOfAdditionalSecondaryExplosions = 7759, - - /// - /// virtual_no_mana_cost - /// - VirtualNoManaCost = 7760, - - /// - /// life_loss_%_per_minute - /// - LifeLossPctPerMinute = 7761, - - /// - /// map_spawn_incursion_encounters - /// - MapSpawnIncursionEncounters = 7762, - - /// - /// prevent_vaal_souls_on_hit - /// - PreventVaalSoulsOnHit = 7763, - - /// - /// ignores_enemy_fire_resistance - /// - IgnoresEnemyFireResistance = 7764, - - /// - /// ignores_enemy_cold_resistance - /// - IgnoresEnemyColdResistance = 7765, - - /// - /// ignores_enemy_lightning_resistance - /// - IgnoresEnemyLightningResistance = 7766, - - /// - /// groundslam_damage_to_close_targets_+%_final - /// - GroundslamDamageToCloseTargetsPctFinal = 7767, - - /// - /// keystone_vaal_attacks - /// - KeystoneVaalAttacks = 7768, - - /// - /// grant_vaal_attack_soul_on_hitting_rare_or_unique_with_non_vaal_skill_every_x_ms - /// - GrantVaalAttackSoulOnHittingRareOrUniqueWithNonVaalSkillEveryXMs = 7769, - - /// - /// grant_vaal_skill_use_on_kill_%_with_non_vaal_skill - /// - GrantVaalSkillUseOnKillPctWithNonVaalSkill = 7770, - - /// - /// keystone_vaal_spells - /// - KeystoneVaalSpells = 7771, - - /// - /// non_vaal_skills_damage_+%_final - /// - NonVaalSkillsDamagePctFinal = 7772, - - /// - /// gain_soul_regeneration_for_x_seconds_on_hit_every_500_ms - /// - GainSoulRegenerationForXSecondsOnHitEvery500Ms = 7773, - - /// - /// shrapnel_trap_damage_+% - /// - ShrapnelTrapDamagePct = 7774, - - /// - /// shrapnel_trap_area_of_effect_+% - /// - ShrapnelTrapAreaOfEffectPct = 7775, - - /// - /// lightning_tower_trap_damage_+% - /// - LightningTowerTrapDamagePct = 7776, - - /// - /// lightning_tower_trap_duration_+% - /// - LightningTowerTrapDurationPct = 7777, - - /// - /// lightning_tower_trap_cooldown_speed_+% - /// - LightningTowerTrapCooldownSpeedPct = 7778, - - /// - /// lightning_tower_trap_base_interval_duration_ms - /// - LightningTowerTrapBaseIntervalDurationMs = 7779, - - /// - /// lightning_tower_trap_interval_duration_ms - /// - LightningTowerTrapIntervalDurationMs = 7780, - - /// - /// lightning_tower_trap_number_of_beams - /// - LightningTowerTrapNumberOfBeams = 7781, - - /// - /// lightning_tower_trap_additional_number_of_beams - /// - LightningTowerTrapAdditionalNumberOfBeams = 7782, - - /// - /// flamethrower_tower_trap_damage_+% - /// - FlamethrowerTowerTrapDamagePct = 7783, - - /// - /// flamethrower_tower_trap_cooldown_speed_+% - /// - FlamethrowerTowerTrapCooldownSpeedPct = 7784, - - /// - /// flamethrower_tower_trap_duration_+% - /// - FlamethrowerTowerTrapDurationPct = 7785, - - /// - /// flamethrower_tower_trap_number_of_flamethrowers - /// - FlamethrowerTowerTrapNumberOfFlamethrowers = 7786, - - /// - /// flamethrower_tower_trap_number_of_additional_flamethrowers - /// - FlamethrowerTowerTrapNumberOfAdditionalFlamethrowers = 7787, - - /// - /// flamethrower_tower_trap_display_cast_speed_affects_rotation - /// - FlamethrowerTowerTrapDisplayCastSpeedAffectsRotation = 7788, - - /// - /// phys_cascade_trap_damage_+% - /// - PhysCascadeTrapDamagePct = 7789, - - /// - /// phys_cascade_trap_cooldown_speed_+% - /// - PhysCascadeTrapCooldownSpeedPct = 7790, - - /// - /// phys_cascade_trap_duration_+% - /// - PhysCascadeTrapDurationPct = 7791, - - /// - /// phys_cascade_trap_number_of_cascades - /// - PhysCascadeTrapNumberOfCascades = 7792, - - /// - /// phys_cascade_trap_number_of_additional_cascades - /// - PhysCascadeTrapNumberOfAdditionalCascades = 7793, - - /// - /// phys_cascade_trap_base_interval_duration_ms - /// - PhysCascadeTrapBaseIntervalDurationMs = 7794, - - /// - /// phys_cascade_trap_interval_duration_ms - /// - PhysCascadeTrapIntervalDurationMs = 7795, - - /// - /// ice_siphon_trap_damage_+% - /// - IceSiphonTrapDamagePct = 7796, - - /// - /// ice_siphon_trap_duration_+% - /// - IceSiphonTrapDurationPct = 7797, - - /// - /// ice_siphon_trap_damage_taken_+%_per_beam - /// - IceSiphonTrapDamageTakenPctPerBeam = 7798, - - /// - /// ice_siphon_trap_chill_effect_+% - /// - IceSiphonTrapChillEffectPct = 7799, - - /// - /// ice_siphon_trap_max_beam_targets - /// - IceSiphonTrapMaxBeamTargets = 7800, - - /// - /// bear_trap_damage_taken_+%_from_traps_and_mines - /// - BearTrapDamageTakenPctFromTrapsAndMines = 7801, - - /// - /// bear_trap_additional_damage_taken_+%_from_traps_and_mines - /// - BearTrapAdditionalDamageTakenPctFromTrapsAndMines = 7802, - - /// - /// lightning_trap_lightning_resistance_penetration_% - /// - LightningTrapLightningResistancePenetrationPct = 7803, - - /// - /// lightning_trap_shock_effect_+% - /// - LightningTrapShockEffectPct = 7804, - - /// - /// fire_trap_burning_ground_duration_+% - /// - FireTrapBurningGroundDurationPct = 7805, - - /// - /// charged_dash_damage_+%_final - /// - ChargedDashDamagePctFinal = 7806, - - /// - /// charged_dash_damage_+%_final_per_stack - /// - ChargedDashDamagePctFinalPerStack = 7807, - - /// - /// vaal_earthquake_number_of_aftershocks - /// - VaalEarthquakeNumberOfAftershocks = 7808, - - /// - /// vaal_earthquake_aftershock_delay_ms - /// - VaalEarthquakeAftershockDelayMs = 7809, - - /// - /// maim_effect_+% - /// - MaimEffectPct = 7810, - - /// - /// hits_ignore_my_fire_resistance - /// - HitsIgnoreMyFireResistance = 7811, - - /// - /// hits_ignore_my_cold_resistance - /// - HitsIgnoreMyColdResistance = 7812, - - /// - /// hits_ignore_my_lightning_resistance - /// - HitsIgnoreMyLightningResistance = 7813, - - /// - /// spectating - /// - Spectating = 7814, - - /// - /// bear_trap_movement_speed_+%_final - /// - BearTrapMovementSpeedPctFinal = 7815, - - /// - /// map_incursion_temple_room_state - /// - MapIncursionTempleRoomState = 7816, - - /// - /// map_incursion_temple_room_state2 - /// - MapIncursionTempleRoomState2 = 7817, - - /// - /// map_incursion_temple_room_state3 - /// - MapIncursionTempleRoomState3 = 7818, - - /// - /// skill_hide_user_buff_effects - /// - SkillHideUserBuffEffects = 7819, - - /// - /// critical_strike_chance_+%_vs_shocked_enemies - /// - CriticalStrikeChancePctVsShockedEnemies = 7820, - - /// - /// flamethrower_trap_damage_+%_final_vs_burning_enemies - /// - FlamethrowerTrapDamagePctFinalVsBurningEnemies = 7821, - - /// - /// flamethrower_trap_damage_+%_final - /// - FlamethrowerTrapDamagePctFinal = 7822, - - /// - /// local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger - /// - LocalDisplaySocketedGemsSupportedByLevelXFrenzyPowerOnTrapTrigger = 7823, - - /// - /// trap_throwing_speed_+%_per_frenzy_charge - /// - TrapThrowingSpeedPctPerFrenzyCharge = 7824, - - /// - /// virtual_trap_throwing_speed_+% - /// - VirtualTrapThrowingSpeedPct = 7825, - - /// - /// ancestral_call_art_variation - /// - AncestralCallArtVariation = 7826, - - /// - /// expanding_fire_cone_maximum_number_of_stages - /// - ExpandingFireConeMaximumNumberOfStages = 7827, - - /// - /// grant_expanding_fire_cone_release_ignite_damage_+%_final - /// - GrantExpandingFireConeReleaseIgniteDamagePctFinal = 7828, - - /// - /// expanding_fire_cone_release_ignite_damage_+%_final - /// - ExpandingFireConeReleaseIgniteDamagePctFinal = 7829, - - /// - /// expanding_fire_cone_release_hit_damage_+%_final - /// - ExpandingFireConeReleaseHitDamagePctFinal = 7830, - - /// - /// trigger_on_corpse_consume_%_chance - /// - TriggerOnCorpseConsumePctChance = 7831, - - /// - /// local_display_trigger_level_x_summon_phantasm_on_corpse_consume - /// - LocalDisplayTriggerLevelXSummonPhantasmOnCorpseConsume = 7832, - - /// - /// cast_speed_+%_per_corpse_consumed_recently - /// - CastSpeedPctPerCorpseConsumedRecently = 7833, - - /// - /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently - /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfCorpseConsumedRecently = 7834, - - /// - /// infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack - /// - InfernalBlowInfernalBlowExplosionDamagePctOfTotalPerStack = 7835, - - /// - /// infernal_blow_explosion_damage_%_of_total_per_stack - /// - InfernalBlowExplosionDamagePctOfTotalPerStack = 7836, - - /// - /// doubles_have_movement_speed_+% - /// - DoublesHaveMovementSpeedPct = 7837, - - /// - /// lightning_tower_trap_cast_speed_+% - /// - LightningTowerTrapCastSpeedPct = 7838, - - /// - /// flamethrower_tower_trap_cast_speed_+% - /// - FlamethrowerTowerTrapCastSpeedPct = 7839, - - /// - /// vaal_righteous_fire_life_and_es_%_to_lose_on_use - /// - VaalRighteousFireLifeAndEsPctToLoseOnUse = 7840, - - /// - /// rain_of_arrows_additional_sequences - /// - RainOfArrowsAdditionalSequences = 7841, - - /// - /// cannot_gain_souls - /// - CannotGainSouls = 7842, - - /// - /// local_flask_gain_x_vaal_souls_on_use - /// - LocalFlaskGainXVaalSoulsOnUse = 7843, - - /// - /// local_flask_no_mana_recovery_during_effect - /// - LocalFlaskNoManaRecoveryDuringEffect = 7844, - - /// - /// local_flask_vaal_souls_gained_per_minute_during_effect - /// - LocalFlaskVaalSoulsGainedPerMinuteDuringEffect = 7845, - - /// - /// ignites_apply_fire_resistance_+ - /// - IgnitesApplyFireResistance = 7846, - - /// - /// ignite_damage_+%_vs_chilled_enemies - /// - IgniteDamagePctVsChilledEnemies = 7847, - - /// - /// flameblast_ignite_chance_+%_per_stage - /// - FlameblastIgniteChancePctPerStage = 7848, - - /// - /// gain_x_vaal_souls_at_2%_life_thresholds - /// - GainXVaalSoulsAt2PctLifeThresholds = 7849, - - /// - /// disable_vaal_soul_gain_at_2%_life_thresholds - /// - DisableVaalSoulGainAt2PctLifeThresholds = 7850, - - /// - /// local_physical_damage_%_to_convert_to_a_random_element - /// - LocalPhysicalDamagePctToConvertToARandomElement = 7851, - - /// - /// main_hand_physical_damage_%_to_convert_to_a_random_element - /// - MainHandPhysicalDamagePctToConvertToARandomElement = 7852, - - /// - /// off_hand_physical_damage_%_to_convert_to_a_random_element - /// - OffHandPhysicalDamagePctToConvertToARandomElement = 7853, - - /// - /// local_hits_always_inflict_elemental_ailments - /// - LocalHitsAlwaysInflictElementalAilments = 7854, - - /// - /// main_hand_hits_always_inflict_elemental_ailments - /// - MainHandHitsAlwaysInflictElementalAilments = 7855, - - /// - /// off_hand_hits_always_inflict_elemental_ailments - /// - OffHandHitsAlwaysInflictElementalAilments = 7856, - - /// - /// no_mana_recovery - /// - NoManaRecovery = 7857, - - /// - /// active_skill_ignite_damage_+%_final - /// - ActiveSkillIgniteDamagePctFinal = 7858, - - /// - /// chance_to_be_poisoned_% - /// - ChanceToBePoisonedPct = 7859, - - /// - /// poison_time_passed_+% - /// - PoisonTimePassedPct = 7860, - - /// - /// additional_maximum_all_resistances_%_while_poisoned - /// - AdditionalMaximumAllResistancesPctWhilePoisoned = 7861, - - /// - /// energy_shield_regeneration_rate_per_minute_per_poison_stack - /// - EnergyShieldRegenerationRatePerMinutePerPoisonStack = 7862, - - /// - /// bleeding_damage_on_self_converted_to_chaos - /// - BleedingDamageOnSelfConvertedToChaos = 7863, - - /// - /// maximum_life_+%_per_equipped_corrupted_item - /// - MaximumLifePctPerEquippedCorruptedItem = 7864, - - /// - /// maximum_es_+%_per_equipped_corrupted_item - /// - MaximumEsPctPerEquippedCorruptedItem = 7865, - - /// - /// all_resistances_%_per_equipped_corrupted_item - /// - AllResistancesPctPerEquippedCorruptedItem = 7866, - - /// - /// bleeding_damage_taken_per_minute - /// - BleedingDamageTakenPerMinute = 7867, - - /// - /// area_of_effect_+%_per_enemy_killed_recently - /// - AreaOfEffectPctPerEnemyKilledRecently = 7868, - - /// - /// you_have_zealots_oath_if_you_havent_been_hit_recently - /// - YouHaveZealotsOathIfYouHaventBeenHitRecently = 7869, - - /// - /// no_energy_shield_recovery - /// - NoEnergyShieldRecovery = 7870, - - /// - /// life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield - /// - LifeRegenerationPerMinuteIfYouHaveAtLeast500MaximumEnergyShield = 7871, - - /// - /// life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield - /// - LifeRegenerationPerMinuteIfYouHaveAtLeast1000MaximumEnergyShield = 7872, - - /// - /// life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield - /// - LifeRegenerationPerMinuteIfYouHaveAtLeast1500MaximumEnergyShield = 7873, - - /// - /// x_to_maximum_life_per_2_intelligence - /// - XToMaximumLifePer2Intelligence = 7874, - - /// - /// gain_no_maximum_life_from_strength - /// - GainNoMaximumLifeFromStrength = 7875, - - /// - /// gain_no_maximum_mana_from_intelligence - /// - GainNoMaximumManaFromIntelligence = 7876, - - /// - /// life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield - /// - LifeRegenerationRatePerMinutePctPer500MaximumEnergyShield = 7877, - - /// - /// keystone_zealots_oath - /// - KeystoneZealotsOath = 7878, - - /// - /// number_of_enemies_killed_recently - /// - NumberOfEnemiesKilledRecently = 7879, - - /// - /// combined_cast_speed_+% - /// - CombinedCastSpeedPct = 7880, - - /// - /// combined_cast_speed_+%_final - /// - CombinedCastSpeedPctFinal = 7881, - - /// - /// additive_cast_speed_modifiers_apply_to_trap_throwing_speed - /// - AdditiveCastSpeedModifiersApplyToTrapThrowingSpeed = 7882, - - /// - /// %_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy - /// - PctChanceToGainRandomChargeOnTrapTriggeredByAnEnemy = 7883, - - /// - /// trap_throw_skills_have_blood_magic - /// - TrapThrowSkillsHaveBloodMagic = 7884, - - /// - /// affected_by_vulnerability - /// - AffectedByVulnerability = 7885, - - /// - /// enemy_extra_damage_rolls_while_affected_by_vulnerability - /// - EnemyExtraDamageRollsWhileAffectedByVulnerability = 7886, - - /// - /// you_count_as_low_life_while_affected_by_vulnerability - /// - YouCountAsLowLifeWhileAffectedByVulnerability = 7887, - - /// - /// self_cursed_with_level_x_vulnerability - /// - SelfCursedWithLevelXVulnerability = 7888, - - /// - /// ice_trap_cold_resistance_penetration_% - /// - IceTrapColdResistancePenetrationPct = 7889, - - /// - /// life_gain_per_target_if_have_used_a_vaal_skill_recently - /// - LifeGainPerTargetIfHaveUsedAVaalSkillRecently = 7890, - - /// - /// movement_speed_+%_if_have_used_a_vaal_skill_recently - /// - MovementSpeedPctIfHaveUsedAVaalSkillRecently = 7891, - - /// - /// have_used_a_vaal_skill_recently - /// - HaveUsedAVaalSkillRecently = 7892, - - /// - /// track_have_used_a_vaal_skill_recently - /// - TrackHaveUsedAVaalSkillRecently = 7893, - - /// - /// gain_power_charge_on_vaal_skill_use_% - /// - GainPowerChargeOnVaalSkillUsePct = 7894, - - /// - /// chaos_damage_can_ignite_chill_and_shock - /// - ChaosDamageCanIgniteChillAndShock = 7895, - - /// - /// gain_soul_eater_for_x_ms_on_vaal_skill_use - /// - GainSoulEaterForXMsOnVaalSkillUse = 7896, - - /// - /// local_hit_damage_+%_vs_ignited_enemies - /// - LocalHitDamagePctVsIgnitedEnemies = 7897, - - /// - /// main_hand_hit_damage_+%_vs_ignited_enemies - /// - MainHandHitDamagePctVsIgnitedEnemies = 7898, - - /// - /// off_hand_hit_damage_+%_vs_ignited_enemies - /// - OffHandHitDamagePctVsIgnitedEnemies = 7899, - - /// - /// local_hit_damage_+%_vs_frozen_enemies - /// - LocalHitDamagePctVsFrozenEnemies = 7900, - - /// - /// main_hand_hit_damage_+%_vs_frozen_enemies - /// - MainHandHitDamagePctVsFrozenEnemies = 7901, - - /// - /// off_hand_hit_damage_+%_vs_frozen_enemies - /// - OffHandHitDamagePctVsFrozenEnemies = 7902, - - /// - /// local_hit_damage_+%_vs_shocked_enemies - /// - LocalHitDamagePctVsShockedEnemies = 7903, - - /// - /// main_hand_hit_damage_+%_vs_shocked_enemies - /// - MainHandHitDamagePctVsShockedEnemies = 7904, - - /// - /// off_hand_hit_damage_+%_vs_shocked_enemies - /// - OffHandHitDamagePctVsShockedEnemies = 7905, - - /// - /// summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute - /// - SummonedSkeletonsFireDamagePctOfMaximumLifeTakenPerMinute = 7906, - - /// - /// summoned_skeletons_cover_in_ash_on_hit_% - /// - SummonedSkeletonsCoverInAshOnHitPct = 7907, - - /// - /// summoned_skeletons_have_avatar_of_fire - /// - SummonedSkeletonsHaveAvatarOfFire = 7908, - - /// - /// cover_in_ash_on_hit_% - /// - CoverInAshOnHitPct = 7909, - - /// - /// Local Socketed Trap or Mine Gem Level + - /// - LocalSocketedTrapAndMineGemLevel = 7910, - - /// - /// wrath_aura_effect_+% - /// - WrathAuraEffectPct = 7911, - - /// - /// hatred_aura_effect_+% - /// - HatredAuraEffectPct = 7912, - - /// - /// determination_aura_effect_+% - /// - DeterminationAuraEffectPct = 7913, - - /// - /// discipline_aura_effect_+% - /// - DisciplineAuraEffectPct = 7914, - - /// - /// grace_aura_effect_+% - /// - GraceAuraEffectPct = 7915, - - /// - /// local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius - /// - LocalUniqueJewelCriticalStrikeMultiplierPer10StrUnallocatedInRadius = 7916, - - /// - /// local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius - /// - LocalUniqueJewelAdditionalPhysicalDamageReductionPctPer10StrAllocatedInRadius = 7917, - - /// - /// local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius - /// - LocalUniqueJewelMaximumManaPer10DexUnallocatedInRadius = 7918, - - /// - /// local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius - /// - LocalUniqueJewelMovementSpeedPctPer10DexAllocatedInRadius = 7919, - - /// - /// local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius - /// - LocalUniqueJewelAccuracyRatingPer10IntUnallocatedInRadius = 7920, - - /// - /// local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius - /// - LocalUniqueJewelEnergyShieldRegenerationRatePerMinutePctPer10IntAllocatedInRadius = 7921, - - /// - /// local_unique_jewel_X_strength_per_1_strength_allocated_in_radius - /// - LocalUniqueJewelXStrengthPer1StrengthAllocatedInRadius = 7922, - - /// - /// local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius - /// - LocalUniqueJewelXDexterityPer1DexterityAllocatedInRadius = 7923, - - /// - /// local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius - /// - LocalUniqueJewelXIntelligencePer1IntelligenceAllocatedInRadius = 7924, - - /// - /// ground_vaal_cold_snap_art_variation - /// - GroundVaalColdSnapArtVariation = 7925, - - /// - /// elementalist_ignite_damage_+%_final - /// - ElementalistIgniteDamagePctFinal = 7926, - - /// - /// ancestor_totem_ignores_stances - /// - AncestorTotemIgnoresStances = 7927, - - /// - /// skill_life_regeneration_per_minute_per_affected_enemy - /// - SkillLifeRegenerationPerMinutePerAffectedEnemy = 7928, - - /// - /// skill_mana_regeneration_per_minute_per_affected_enemy - /// - SkillManaRegenerationPerMinutePerAffectedEnemy = 7929, - - /// - /// skill_life_regeneration_per_minute_with_at_least_1_affected_enemy - /// - SkillLifeRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7930, - - /// - /// skill_mana_regeneration_per_minute_with_at_least_1_affected_enemy - /// - SkillManaRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7931, - - /// - /// skill_damage_taken_+%_per_affected_enemy - /// - SkillDamageTakenPctPerAffectedEnemy = 7932, - - /// - /// blade_vortex_critical_strike_chance_+%_per_blade - /// - BladeVortexCriticalStrikeChancePctPerBlade = 7933, - - /// - /// bladefall_critical_strike_chance_+%_per_stage - /// - BladefallCriticalStrikeChancePctPerStage = 7934, - - /// - /// global_minimum_added_physical_damage_vs_bleeding_enemies - /// - GlobalMinimumAddedPhysicalDamageVsBleedingEnemies = 7935, - - /// - /// global_maximum_added_physical_damage_vs_bleeding_enemies - /// - GlobalMaximumAddedPhysicalDamageVsBleedingEnemies = 7936, - - /// - /// lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies - /// - LacerateHitAndAilmentDamagePctFinalVsBleedingEnemies = 7937, - - /// - /// cast_speed_+%_final_per_frostbolt_destroyed_recently - /// - CastSpeedPctFinalPerFrostboltDestroyedRecently = 7938, - - /// - /// mana_cost_+%_final_per_frostbolt_destroyed_recently - /// - ManaCostPctFinalPerFrostboltDestroyedRecently = 7939, - - /// - /// number_of_frostbolts_destroyed_recently - /// - NumberOfFrostboltsDestroyedRecently = 7940, - - /// - /// lacerate_hit_and_ailment_damage_+%_final - /// - LacerateHitAndAilmentDamagePctFinal = 7941, - - /// - /// dodge_attacks_chance_%_while_moving - /// - DodgeAttacksChancePctWhileMoving = 7942, - - /// - /// dodge_spells_chance_%_while_moving - /// - DodgeSpellsChancePctWhileMoving = 7943, - - /// - /// global_evasion_rating_+_while_moving - /// - GlobalEvasionRatingWhileMoving = 7944, - - /// - /// global_physical_damage_reduction_rating_while_moving - /// - GlobalPhysicalDamageReductionRatingWhileMoving = 7945, - - /// - /// curse_on_hit_level_despair - /// - CurseOnHitLevelDespair = 7946, - - /// - /// curse_on_hit_level_enfeeble - /// - CurseOnHitLevelEnfeeble = 7947, - - /// - /// area_damage_taken_from_hits_+% - /// - AreaDamageTakenFromHitsPct = 7948, - - /// - /// projectile_damage_+%_per_chain - /// - ProjectileDamagePctPerChain = 7949, - - /// - /// local_display_grants_level_x_despair - /// - LocalDisplayGrantsLevelXDespair = 7950, - - /// - /// critical_strike_chance_+%_during_any_flask_effect - /// - CriticalStrikeChancePctDuringAnyFlaskEffect = 7951, - - /// - /// critical_strike_multiplier_+_during_any_flask_effect - /// - CriticalStrikeMultiplierDuringAnyFlaskEffect = 7952, - - /// - /// cannot_be_inflicted_by_corrupted_blood - /// - CannotBeInflictedByCorruptedBlood = 7953, - - /// - /// gain_X_frenzy_charges_after_spending_200_mana - /// - GainXFrenzyChargesAfterSpending200Mana = 7954, - - /// - /// Local Socketed Duration Gem Level + - /// - LocalSocketedDurationGemLevel = 7955, - - /// - /// Local Socketed AoE Gem Level + - /// - LocalSocketedAreaOfEffectGemLevel = 7956, - - /// - /// map_incursion_monster_data - /// - MapIncursionMonsterData = 7957, - - /// - /// local_display_has_additional_implicit_mod - /// - LocalDisplayHasAdditionalImplicitMod = 7958, - - /// - /// spark_chance_to_force_alternate_angle_side_% - /// - SparkChanceToForceAlternateAngleSidePct = 7959, - - /// - /// gain_onslaught_while_not_on_low_mana - /// - GainOnslaughtWhileNotOnLowMana = 7960, - - /// - /// dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20 - /// - DodgeAttacksAndSpellChancePctPer500MaximumManaUpTo20 = 7961, - - /// - /// ball_lightning_projectile_speed_and_hit_frequency_+%_final - /// - BallLightningProjectileSpeedAndHitFrequencyPctFinal = 7962, - - /// - /// arc_damage_+%_final_per_chain - /// - ArcDamagePctFinalPerChain = 7963, - - /// - /// arc_damage_+%_final_for_each_remaining_chain - /// - ArcDamagePctFinalForEachRemainingChain = 7964, - - /// - /// chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_% - /// - ChanceToGainPowerChargeOnRareOrUniqueEnemyHitPct = 7965, - - /// - /// expanding_fire_cone_additional_maximum_number_of_stages - /// - ExpandingFireConeAdditionalMaximumNumberOfStages = 7966, - - /// - /// expanding_fire_cone_area_of_effect_+% - /// - ExpandingFireConeAreaOfEffectPct = 7967, - - /// - /// elemental_hit_cannot_roll_fire_damage - /// - ElementalHitCannotRollFireDamage = 7968, - - /// - /// elemental_hit_cannot_roll_cold_damage - /// - ElementalHitCannotRollColdDamage = 7969, - - /// - /// elemental_hit_cannot_roll_lightning_damage - /// - ElementalHitCannotRollLightningDamage = 7970, - - /// - /// expanding_fire_cone_radius_+_per_stage - /// - ExpandingFireConeRadiusPerStage = 7971, - - /// - /// expanding_fire_cone_angle_+%_per_stage - /// - ExpandingFireConeAnglePctPerStage = 7972, - - /// - /// expanding_fire_cone_final_wave_always_ignite - /// - ExpandingFireConeFinalWaveAlwaysIgnite = 7973, - - /// - /// kill_and_delete_on_hit - /// - KillAndDeleteOnHit = 7974, - - /// - /// elemental_hit_damage_+10%_final_per_enemy_elemental_ailment - /// - ElementalHitDamage10PctFinalPerEnemyElementalAilment = 7975, - - /// - /// elemental_hit_damage_+%_final - /// - ElementalHitDamagePctFinal = 7976, - - /// - /// elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment - /// - ElementalHitAreaOfEffect100PctFinalVsEnemyWithAssociatedAilment = 7977, - - /// - /// support_power_charge_on_crit_damage_+%_final_per_power_charge - /// - SupportPowerChargeOnCritDamagePctFinalPerPowerCharge = 7978, - - /// - /// hinder_enemy_chaos_damage_taken_+% - /// - HinderEnemyChaosDamageTakenPct = 7979, - - /// - /// local_display_grants_skill_vaal_impurity_of_fire_level - /// - LocalDisplayGrantsSkillVaalImpurityOfFireLevel = 7980, - - /// - /// local_display_grants_skill_vaal_impurity_of_ice_level - /// - LocalDisplayGrantsSkillVaalImpurityOfIceLevel = 7981, - - /// - /// local_display_grants_skill_vaal_impurity_of_lightning_level - /// - LocalDisplayGrantsSkillVaalImpurityOfLightningLevel = 7982, - - /// - /// support_hypothermia_cold_damage_over_time_+%_final - /// - SupportHypothermiaColdDamageOverTimePctFinal = 7983, - - /// - /// ground_quicksand_art_variation - /// - GroundQuicksandArtVariation = 7984, - - /// - /// map_area_contains_x_additional_clusters_of_explosive_eggs - /// - MapAreaContainsXAdditionalClustersOfExplosiveEggs = 7985, - - /// - /// trap_critical_strike_multiplier_+_per_power_charge - /// - TrapCriticalStrikeMultiplierPerPowerCharge = 7986, - - /// - /// ignores_trap_and_mine_cooldown_limit - /// - IgnoresTrapAndMineCooldownLimit = 7987, - - /// - /// vaal_righteous_fire_life_and_es_%_as_damage_per_second - /// - VaalRighteousFireLifeAndEsPctAsDamagePerSecond = 7988, - - /// - /// molten_strike_projectile_animation_speed_+% - /// - MoltenStrikeProjectileAnimationSpeedPct = 7989, - - /// - /// orb_of_storms_base_bolt_frequency_ms - /// - OrbOfStormsBaseBoltFrequencyMs = 7990, - - /// - /// orb_of_storms_bolt_frequency_ms - /// - OrbOfStormsBoltFrequencyMs = 7991, - - /// - /// orb_of_storms_cast_speed_+% - /// - OrbOfStormsCastSpeedPct = 7992, - - /// - /// area_of_effect_+%_when_cast_on_frostbolt - /// - AreaOfEffectPctWhenCastOnFrostbolt = 7993, - - /// - /// vortex_area_of_effect_+%_when_cast_on_frostbolt - /// - VortexAreaOfEffectPctWhenCastOnFrostbolt = 7994, - - /// - /// skill_code_movement_speed_+%_final - /// - SkillCodeMovementSpeedPctFinal = 7995, - - /// - /// charged_dash_movement_speed_+%_final - /// - ChargedDashMovementSpeedPctFinal = 7996, - - /// - /// virtual_bladefall_number_of_volleys - /// - VirtualBladefallNumberOfVolleys = 7997, - - /// - /// bladefall_number_of_volleys - /// - BladefallNumberOfVolleys = 7998, - - /// - /// blade_vortex_critical_strike_multiplier_+_per_blade - /// - BladeVortexCriticalStrikeMultiplierPerBlade = 7999, - - /// - /// critical_strike_multiplier_+_per_blade - /// - CriticalStrikeMultiplierPerBlade = 8000, - - /// - /// double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies - /// - DoubleStrikeChanceToDealDoubleDamagePctVsBleedingEnemies = 8001, - - /// - /// chance_to_deal_double_damage_%_vs_bleeding_enemies - /// - ChanceToDealDoubleDamagePctVsBleedingEnemies = 8002, - - /// - /// arc_damage_+%_per_chain - /// - ArcDamagePctPerChain = 8003, - - /// - /// damage_+%_per_chain - /// - DamagePctPerChain = 8004, - - /// - /// petrification_statue_target_action_speed_-% - /// - PetrificationStatueTargetActionSpeedPct = 8005, - - /// - /// petrification_statue_pertrify_duration_ms - /// - PetrificationStatuePertrifyDurationMs = 8006, - - /// - /// arc_enhanced_behaviour - /// - ArcEnhancedBehaviour = 8007, - - /// - /// storm_burst_number_of_additional_projectiles - /// - StormBurstNumberOfAdditionalProjectiles = 8008, - - /// - /// ball_lightning_number_of_additional_projectiles - /// - BallLightningNumberOfAdditionalProjectiles = 8009, - - /// - /// power_siphon_number_of_additional_projectiles - /// - PowerSiphonNumberOfAdditionalProjectiles = 8010, - - /// - /// ethereal_knives_projectile_base_number_of_targets_to_pierce - /// - EtherealKnivesProjectileBaseNumberOfTargetsToPierce = 8011, - - /// - /// frost_bomb_buff_duration_+% - /// - FrostBombBuffDurationPct = 8012, - - /// - /// chest_drop_additional_weapon_item_divination_cards - /// - ChestDropAdditionalWeaponItemDivinationCards = 8013, - - /// - /// chest_drop_additional_armour_item_divination_cards - /// - ChestDropAdditionalArmourItemDivinationCards = 8014, - - /// - /// map_non_unique_monster_life_regeneration_rate_per_minute_% - /// - MapNonUniqueMonsterLifeRegenerationRatePerMinutePct = 8015, - - /// - /// map_packs_are_vaal - /// - MapPacksAreVaal = 8016, - - /// - /// translate_rotate_translate_speed_+% - /// - TranslateRotateTranslateSpeedPct = 8017, - - /// - /// translate_rotate_rotation_angle_rate - /// - TranslateRotateRotationAngleRate = 8018, - - /// - /// chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_% - /// - ChanceToGainFrenzyChargeOnKillingEnemyAffectedByColdSnapGroundPct = 8019, - - /// - /// is_on_ground_cold_snap - /// - IsOnGroundColdSnap = 8020, - - /// - /// translate_rotate_curvature_scale - /// - TranslateRotateCurvatureScale = 8021, - - /// - /// translate_rotate_curvature_path_distance - /// - TranslateRotateCurvaturePathDistance = 8022, - - /// - /// monster_uses_map_boss_difficulty_scaling - /// - MonsterUsesMapBossDifficultyScaling = 8023, - - /// - /// double_slash_minimum_added_physical_damage_vs_bleeding_enemies - /// - DoubleSlashMinimumAddedPhysicalDamageVsBleedingEnemies = 8024, - - /// - /// double_slash_maximum_added_physical_damage_vs_bleeding_enemies - /// - DoubleSlashMaximumAddedPhysicalDamageVsBleedingEnemies = 8025, - - /// - /// arc_extra_damage_rolls - /// - ArcExtraDamageRolls = 8026, - - /// - /// base_enemy_extra_damage_rolls - /// - BaseEnemyExtraDamageRolls = 8027, - - /// - /// charged_dash_channelling_damage_at_full_stacks_+%_final - /// - ChargedDashChannellingDamageAtFullStacksPctFinal = 8028, - - /// - /// map_tempest_massive_storm_weight - /// - MapTempestMassiveStormWeight = 8029, - - /// - /// map_tempest_tiny_storm_weight - /// - MapTempestTinyStormWeight = 8030, - - /// - /// map_tempest_crit_storm_weight - /// - MapTempestCritStormWeight = 8031, - - /// - /// map_tempest_replenishing_storm_weight - /// - MapTempestReplenishingStormWeight = 8032, - - /// - /// map_tempest_status_immunity_storm_weight - /// - MapTempestStatusImmunityStormWeight = 8033, - - /// - /// map_tempest_corrupted_drops_weight - /// - MapTempestCorruptedDropsWeight = 8034, - - /// - /// map_tempest_uber_rarity_storm_weight - /// - MapTempestUberRarityStormWeight = 8035, - - /// - /// local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius - /// - LocalUniqueJewelElementalHitCannotRollColdDamageWith40IntStrInRadius = 8036, - - /// - /// local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius - /// - LocalUniqueJewelElementalHitCannotRollFireDamageWith40IntDexInRadius = 8037, - - /// - /// local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius - /// - LocalUniqueJewelElementalHitCannotRollLightningDamageWith40DexStrInRadius = 8038, - - /// - /// minion_do_not_remove_skill_specific_stats - /// - MinionDoNotRemoveSkillSpecificStats = 8039, - - /// - /// map_packs_are_mechanical_totems - /// - MapPacksAreMechanicalTotems = 8040, - - /// - /// vaal_earthquake_maximum_aftershocks - /// - VaalEarthquakeMaximumAftershocks = 8041, - - /// - /// rain_of_arrows_rain_of_arrows_additional_sequence_chance_% - /// - RainOfArrowsRainOfArrowsAdditionalSequenceChancePct = 8042, - - /// - /// rain_of_arrows_additional_sequence_chance_% - /// - RainOfArrowsAdditionalSequenceChancePct = 8043, - - /// - /// rain_of_arrows_sequences_to_fire - /// - RainOfArrowsSequencesToFire = 8044, - - /// - /// local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius - /// - LocalUniqueJewelColdSnapUsesGainsPowerChargesInsteadOfFrenzyWith40IntInRadius = 8045, - - /// - /// cold_snap_uses_and_gains_power_charges_instead_of_frenzy - /// - ColdSnapUsesAndGainsPowerChargesInsteadOfFrenzy = 8046, - - /// - /// active_skill_cooldown_bypass_type_override_to_power_charge - /// - ActiveSkillCooldownBypassTypeOverrideToPowerCharge = 8047, - - /// - /// Local Socketed Trap Gem Level + - /// - LocalSocketedTrapGemLevel = 8048, - - /// - /// elemental_hit_no_physical_chaos_damage - /// - ElementalHitNoPhysicalChaosDamage = 8049, - - /// - /// elemental_hit_number_of_options - /// - ElementalHitNumberOfOptions = 8050, - - /// - /// local_unique_flask_vaal_skill_damage_+%_during_flask_effect - /// - LocalUniqueFlaskVaalSkillDamagePctDuringFlaskEffect = 8051, - - /// - /// local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect - /// - LocalUniqueFlaskVaalSkillSoulCostPctDuringFlaskEffect = 8052, - - /// - /// local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect - /// - LocalUniqueFlaskVaalSkillSoulGainPreventationDurationPctDuringFlaskEffect = 8053, - - /// - /// vaal_skill_soul_gain_preventation_duration_+% - /// - VaalSkillSoulGainPreventationDurationPct = 8054, - - /// - /// vaal_skill_does_not_apply_soul_gain_prevention - /// - VaalSkillDoesNotApplySoulGainPrevention = 8055, - - /// - /// local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect - /// - LocalUniqueFlaskVaalSkillDoesNotApplySoulGainPreventionDuringFlaskEffect = 8056, - - /// - /// local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect - /// - LocalUniqueSoulRipperFlaskCannotGainFlaskChargesDuringFlaskEffect = 8057, - - /// - /// using_flask_soul_ripper - /// - UsingFlaskSoulRipper = 8058, - - /// - /// additional_life_scaling_index - /// - AdditionalLifeScalingIndex = 8059, - - /// - /// summon_specific_monsters_cannot_fail - /// - SummonSpecificMonstersCannotFail = 8060, - - /// - /// vaal_flameblast_radius_+_per_stage - /// - VaalFlameblastRadiusPerStage = 8061, - - /// - /// vaal_righteous_fire_spell_damage_+%_final - /// - VaalRighteousFireSpellDamagePctFinal = 8062, - - /// - /// vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura - /// - VaalColdSnapGainFrenzyChargeEverySecondIfEnemyInAura = 8063, - - /// - /// trigger_cascade_arm_angle_offset - /// - TriggerCascadeArmAngleOffset = 8064, - - /// - /// geometry_attack_%_target_life_to_deal_as_additional_damage - /// - GeometryAttackPctTargetLifeToDealAsAdditionalDamage = 8065, - - /// - /// firestorm_target_radius_affected_only_by_self - /// - FirestormTargetRadiusAffectedOnlyBySelf = 8066, - - /// - /// firestorm_explosion_radius_affected_only_by_self - /// - FirestormExplosionRadiusAffectedOnlyBySelf = 8067, - - /// - /// omnitect_thruster_damage_+%_final - /// - OmnitectThrusterDamagePctFinal = 8068, - - /// - /// skill_granted_omnitect_thruster_damage_+%_final - /// - SkillGrantedOmnitectThrusterDamagePctFinal = 8069, - - /// - /// charged_dash_skill_inherent_movement_speed_+%_final - /// - ChargedDashSkillInherentMovementSpeedPctFinal = 8070, - - /// - /// local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect - /// - LocalUniqueFlaskVaalSkillDamagePctFinalDuringFlaskEffect = 8071, - - /// - /// soul_ripper_vaal_skill_damage_+%_final - /// - SoulRipperVaalSkillDamagePctFinal = 8072, - - /// - /// vaal_storm_call_base_delay_ms - /// - VaalStormCallBaseDelayMs = 8073, - - /// - /// vaal_storm_call_delay_ms - /// - VaalStormCallDelayMs = 8074, - - /// - /// modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration - /// - ModifiersToSkillEffectDurationAlsoAffectSoulPreventionDuration = 8075, - - /// - /// modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration - /// - ModifiersToBuffEffectDurationAlsoAffectSoulPreventionDuration = 8076, - - /// - /// base_soul_prevention_time_ms - /// - BaseSoulPreventionTimeMs = 8077, - - /// - /// virtual_soul_prevention_time_ms - /// - VirtualSoulPreventionTimeMs = 8078, - - /// - /// map_atlas_influence_hash - /// - MapAtlasInfluenceHash = 8079, - - /// - /// effective_level - /// - EffectiveLevel = 8080, - - /// - /// effective_level_override - /// - EffectiveLevelOverride = 8081, - - /// - /// virtual_damage_+%_final_from_effective_level_permyriad - /// - VirtualDamagePctFinalFromEffectiveLevelPermyriad = 8082, - - /// - /// virtual_damage_taken_+%_final_from_effective_level - /// - VirtualDamageTakenPctFinalFromEffectiveLevel = 8083, - - /// - /// virtual_accuracy_rating_+%_final_from_effective_level - /// - VirtualAccuracyRatingPctFinalFromEffectiveLevel = 8084, - - /// - /// virtual_evasion_rating_+%_final_from_effective_level - /// - VirtualEvasionRatingPctFinalFromEffectiveLevel = 8085, - - /// - /// virtual_curse_effect_+%_final_from_effective_level - /// - VirtualCurseEffectPctFinalFromEffectiveLevel = 8086, - - /// - /// ignore_attacker_effective_level_modifiers - /// - IgnoreAttackerEffectiveLevelModifiers = 8087, - - /// - /// ignore_defender_effective_level_modifiers - /// - IgnoreDefenderEffectiveLevelModifiers = 8088, - - /// - /// Taking DoT based on a % of max life should not be scaled by this stat. - /// - PhysicalDamageTakenPerMinuteUnaffectedByLevelScaling = 8089, - - /// - /// Taking DoT based on a % of max life should not be scaled by this stat. - /// - FireDamageTakenPerMinuteUnaffectedByLevelScaling = 8090, - - /// - /// Taking DoT based on a % of max life should not be scaled by this stat. - /// - ColdDamageTakenPerMinuteUnaffectedByLevelScaling = 8091, - - /// - /// Taking DoT based on a % of max life should not be scaled by this stat. - /// - LightningDamageTakenPerMinuteUnaffectedByLevelScaling = 8092, - - /// - /// Taking DoT based on a % of max life should not be scaled by this stat. - /// - ChaosDamageTakenPerMinuteUnaffectedByLevelScaling = 8093, - - /// - /// minion_owner_actual_level - /// - MinionOwnerActualLevel = 8094, - - /// - /// minion_owner_effective_level_override - /// - MinionOwnerEffectiveLevelOverride = 8095, - - /// - /// minion_owner_effective_level - /// - MinionOwnerEffectiveLevel = 8096, - - /// - /// map_delve_%_degeneration_per_minute - /// - MapDelvePctDegenerationPerMinute = 8097, - - /// - /// base_unaffected_by_delve_degeneration - /// - BaseUnaffectedByDelveDegeneration = 8098, - - /// - /// map_delve_rules - /// - MapDelveRules = 8099, - - /// - /// gain_endurance_charge_on_melee_stun_% - /// - GainEnduranceChargeOnMeleeStunPct = 8100, - - /// - /// intermediary_physical_damage_to_deal_per_minute - /// - IntermediaryPhysicalDamageToDealPerMinute = 8101, - - /// - /// intermediary_physical_skill_dot_damage_to_deal_per_minute - /// - IntermediaryPhysicalSkillDotDamageToDealPerMinute = 8102, - - /// - /// intermediary_physical_area_damage_to_deal_per_minute - /// - IntermediaryPhysicalAreaDamageToDealPerMinute = 8103, - - /// - /// intermediary_physical_skill_dot_area_damage_to_deal_per_minute - /// - IntermediaryPhysicalSkillDotAreaDamageToDealPerMinute = 8104, - - /// - /// intermediary_fire_damage_to_deal_per_minute - /// - IntermediaryFireDamageToDealPerMinute = 8105, - - /// - /// intermediary_fire_skill_dot_damage_to_deal_per_minute - /// - IntermediaryFireSkillDotDamageToDealPerMinute = 8106, - - /// - /// intermediary_fire_area_damage_to_deal_per_minute - /// - IntermediaryFireAreaDamageToDealPerMinute = 8107, - - /// - /// intermediary_fire_skill_dot_area_damage_to_deal_per_minute - /// - IntermediaryFireSkillDotAreaDamageToDealPerMinute = 8108, - - /// - /// intermediary_projectile_skill_dot_ground_fire_area_damage_per_minute - /// - IntermediaryProjectileSkillDotGroundFireAreaDamagePerMinute = 8109, - - /// - /// intermediary_cold_damage_to_deal_per_minute - /// - IntermediaryColdDamageToDealPerMinute = 8110, - - /// - /// intermediary_cold_skill_dot_damage_to_deal_per_minute - /// - IntermediaryColdSkillDotDamageToDealPerMinute = 8111, - - /// - /// intermediary_cold_area_damage_to_deal_per_minute - /// - IntermediaryColdAreaDamageToDealPerMinute = 8112, - - /// - /// intermediary_cold_skill_dot_area_damage_to_deal_per_minute - /// - IntermediaryColdSkillDotAreaDamageToDealPerMinute = 8113, - - /// - /// intermediary_lightning_damage_to_deal_per_minute - /// - IntermediaryLightningDamageToDealPerMinute = 8114, - - /// - /// intermediary_lightning_skill_dot_damage_to_deal_per_minute - /// - IntermediaryLightningSkillDotDamageToDealPerMinute = 8115, - - /// - /// intermediary_lightning_area_damage_to_deal_per_minute - /// - IntermediaryLightningAreaDamageToDealPerMinute = 8116, - - /// - /// intermediary_lightning_skill_dot_area_damage_to_deal_per_minute - /// - IntermediaryLightningSkillDotAreaDamageToDealPerMinute = 8117, - - /// - /// intermediary_chaos_damage_to_deal_per_minute - /// - IntermediaryChaosDamageToDealPerMinute = 8118, - - /// - /// intermediary_chaos_skill_dot_damage_to_deal_per_minute - /// - IntermediaryChaosSkillDotDamageToDealPerMinute = 8119, - - /// - /// intermediary_chaos_area_damage_to_deal_per_minute - /// - IntermediaryChaosAreaDamageToDealPerMinute = 8120, - - /// - /// intermediary_chaos_skill_dot_area_damage_to_deal_per_minute - /// - IntermediaryChaosSkillDotAreaDamageToDealPerMinute = 8121, - - /// - /// intermediary_projectile_skill_dot_ground_caustic_area_damage_per_minute - /// - IntermediaryProjectileSkillDotGroundCausticAreaDamagePerMinute = 8122, - - /// - /// map_area_underlevelled - /// - MapAreaUnderlevelled = 8123, - - /// - /// delve_monster_damage_taken_+%_final - /// - DelveMonsterDamageTakenPctFinal = 8124, - - /// - /// base_ignite_damage_taken_per_minute - /// - BaseIgniteDamageTakenPerMinute = 8125, - - /// - /// base_poison_damage_taken_per_minute - /// - BasePoisonDamageTakenPerMinute = 8126, - - /// - /// base_self_chaos_damage_taken_per_minute - /// - BaseSelfChaosDamageTakenPerMinute = 8127, - - /// - /// base_number_of_clones_allowed - /// - BaseNumberOfClonesAllowed = 8128, - - /// - /// max_number_of_dominated_normal_monsters - /// - MaxNumberOfDominatedNormalMonsters = 8129, - - /// - /// max_number_of_dominated_magic_monsters - /// - MaxNumberOfDominatedMagicMonsters = 8130, - - /// - /// max_number_of_dominated_rare_monsters - /// - MaxNumberOfDominatedRareMonsters = 8131, - - /// - /// additional_max_number_of_dominated_magic_monsters - /// - AdditionalMaxNumberOfDominatedMagicMonsters = 8132, - - /// - /// additional_max_number_of_dominated_rare_monsters - /// - AdditionalMaxNumberOfDominatedRareMonsters = 8133, - - /// - /// number_of_dominated_monsters - /// - NumberOfDominatedMonsters = 8134, - - /// - /// number_of_dominated_normal_monsters - /// - NumberOfDominatedNormalMonsters = 8135, - - /// - /// number_of_dominated_magic_monsters - /// - NumberOfDominatedMagicMonsters = 8136, - - /// - /// number_of_dominated_rare_monsters - /// - NumberOfDominatedRareMonsters = 8137, - - /// - /// geometry_attack_%_target_es_to_deal_as_additional_damage - /// - GeometryAttackPctTargetEsToDealAsAdditionalDamage = 8138, - - /// - /// minimum_added_lightning_damage_from_skill - /// - MinimumAddedLightningDamageFromSkill = 8139, - - /// - /// maximum_added_lightning_damage_from_skill - /// - MaximumAddedLightningDamageFromSkill = 8140, - - /// - /// base_chance_to_shock_%_from_skill - /// - BaseChanceToShockPctFromSkill = 8141, - - /// - /// static_strike_number_of_beam_targets - /// - StaticStrikeNumberOfBeamTargets = 8142, - - /// - /// static_strike_additional_number_of_beam_targets - /// - StaticStrikeAdditionalNumberOfBeamTargets = 8143, - - /// - /// static_strike_base_zap_frequency_ms - /// - StaticStrikeBaseZapFrequencyMs = 8144, - - /// - /// static_strike_zap_speed_+%_per_stack - /// - StaticStrikeZapSpeedPctPerStack = 8145, - - /// - /// local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius - /// - LocalJewelCopyStatsFromUnallocatedNonNotablePassivesInRadius = 8146, - - /// - /// local_jewel_allocated_non_notable_passives_in_radius_grant_nothing - /// - LocalJewelAllocatedNonNotablePassivesInRadiusGrantNothing = 8147, - - /// - /// caustic_arrow_explode_on_hit_base_area_of_effect_radius - /// - CausticArrowExplodeOnHitBaseAreaOfEffectRadius = 8148, - - /// - /// damage_over_time_+%_with_bow_skills - /// - DamageOverTimePctWithBowSkills = 8149, - - /// - /// damage_over_time_+%_with_attack_skills - /// - DamageOverTimePctWithAttackSkills = 8150, - - /// - /// skill_is_bow_skill - /// - SkillIsBowSkill = 8151, - - /// - /// map_players_cannot_gain_flask_charges - /// - MapPlayersCannotGainFlaskCharges = 8152, - - /// - /// cannot_gain_flask_charges - /// - CannotGainFlaskCharges = 8153, - - /// - /// trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance - /// - TriggerSocketedWarcryWhenEnduranceChargeExpiresOrConsumedPctChance = 8154, - - /// - /// unique_socketed_warcry_triggered - /// - UniqueSocketedWarcryTriggered = 8155, - - /// - /// sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast - /// - SacrificePctMaximumLifeToGainAsEsOnSpellCast = 8156, - - /// - /// unique_primordial_tether_golem_life_+%_final - /// - UniquePrimordialTetherGolemLifePctFinal = 8157, - - /// - /// unique_primordial_tether_golem_damage_+%_final - /// - UniquePrimordialTetherGolemDamagePctFinal = 8158, - - /// - /// golem_life_+%_final_from_unique_primordial_tether - /// - GolemLifePctFinalFromUniquePrimordialTether = 8159, - - /// - /// golem_damage_+%_final_from_unique_primordial_tether - /// - GolemDamagePctFinalFromUniquePrimordialTether = 8160, - - /// - /// golem_scale_+% - /// - GolemScalePct = 8161, - - /// - /// virtual_current_number_of_keystones - /// - VirtualCurrentNumberOfKeystones = 8162, - - /// - /// additional_physical_damage_reduction_%_per_keystone - /// - AdditionalPhysicalDamageReductionPctPerKeystone = 8163, - - /// - /// local_display_curse_enemies_with_socketed_curse_on_hit_%_chance - /// - LocalDisplayCurseEnemiesWithSocketedCurseOnHitPctChance = 8164, - - /// - /// unique_curse_enemies_with_socketed_curse_on_hit_%_chance - /// - UniqueCurseEnemiesWithSocketedCurseOnHitPctChance = 8165, - - /// - /// local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed - /// - LocalSpellsGainArcaneSurgeOnHitWithCasterAbyssJewelSocketed = 8166, - - /// - /// gain_arcane_surge_on_hit_%_chance - /// - GainArcaneSurgeOnHitPctChance = 8167, - - /// - /// local_minion_accuracy_rating_with_minion_abyss_jewel_socketed - /// - LocalMinionAccuracyRatingWithMinionAbyssJewelSocketed = 8168, - - /// - /// minion_accuracy_rating - /// - MinionAccuracyRating = 8169, - - /// - /// cannot_gain_bleeding - /// - CannotGainBleeding = 8170, - - /// - /// local_display_nearby_allies_extra_damage_rolls - /// - LocalDisplayNearbyAlliesExtraDamageRolls = 8171, - - /// - /// enemies_extra_damage_rolls_with_lightning_damage - /// - EnemiesExtraDamageRollsWithLightningDamage = 8172, - - /// - /// number_of_additional_mines_to_place_with_at_least_500_int - /// - NumberOfAdditionalMinesToPlaceWithAtLeast500Int = 8173, - - /// - /// number_of_additional_mines_to_place_with_at_least_500_dex - /// - NumberOfAdditionalMinesToPlaceWithAtLeast500Dex = 8174, - - /// - /// delve_in_antilight - /// - DelveInAntilight = 8175, - - /// - /// virtual_unaffected_by_delve_degeneration - /// - VirtualUnaffectedByDelveDegeneration = 8176, - - /// - /// base_extra_damage_rolls - /// - BaseExtraDamageRolls = 8177, - - /// - /// delve_depth - /// - DelveDepth = 8178, - - /// - /// static_strike_beam_damage_+%_final - /// - StaticStrikeBeamDamagePctFinal = 8179, - - /// - /// static_strike_beam_damage_+%_final_while_moving - /// - StaticStrikeBeamDamagePctFinalWhileMoving = 8180, - - /// - /// herald_of_agony_poison_damage_+%_final - /// - HeraldOfAgonyPoisonDamagePctFinal = 8181, - - /// - /// herald_of_agony_add_stack_on_poison - /// - HeraldOfAgonyAddStackOnPoison = 8182, - - /// - /// scorpion_minion_physical_damage_+% - /// - ScorpionMinionPhysicalDamagePct = 8183, - - /// - /// scorpion_minion_attack_speed_+% - /// - ScorpionMinionAttackSpeedPct = 8184, - - /// - /// scorpion_minion_minimum_added_physical_damage - /// - ScorpionMinionMinimumAddedPhysicalDamage = 8185, - - /// - /// scorpion_minion_maximum_added_physical_damage - /// - ScorpionMinionMaximumAddedPhysicalDamage = 8186, - - /// - /// base_number_of_herald_scorpions_allowed - /// - BaseNumberOfHeraldScorpionsAllowed = 8187, - - /// - /// number_of_herald_scorpions_allowed - /// - NumberOfHeraldScorpionsAllowed = 8188, - - /// - /// immune_to_cheats - /// - ImmuneToCheats = 8189, - - /// - /// virulent_arrow_maximum_number_of_stacks - /// - VirulentArrowMaximumNumberOfStacks = 8190, - - /// - /// energy_shield_regeneration_rate_+% - /// - EnergyShieldRegenerationRatePct = 8191, - - /// - /// is_dynamite_wall - /// - IsDynamiteWall = 8192, - - /// - /// dynamite_damage_+% - /// - DynamiteDamagePct = 8193, - - /// - /// base_dynamite_damage_resistance_% - /// - BaseDynamiteDamageResistancePct = 8194, - - /// - /// virtual_dynamite_damage_resistance_% - /// - VirtualDynamiteDamageResistancePct = 8195, - - /// - /// base_skill_is_instant - /// - BaseSkillIsInstant = 8196, - - /// - /// skill_is_instant - /// - SkillIsInstant = 8197, - - /// - /// golem_movement_speed_+% - /// - GolemMovementSpeedPct = 8198, - - /// - /// base_number_of_champions_of_light_allowed - /// - BaseNumberOfChampionsOfLightAllowed = 8199, - - /// - /// number_of_champions_of_light_allowed - /// - NumberOfChampionsOfLightAllowed = 8200, - - /// - /// herald_of_light_spell_minimum_added_physical_damage - /// - HeraldOfLightSpellMinimumAddedPhysicalDamage = 8201, - - /// - /// herald_of_light_spell_maximum_added_physical_damage - /// - HeraldOfLightSpellMaximumAddedPhysicalDamage = 8202, - - /// - /// herald_of_light_attack_minimum_added_physical_damage - /// - HeraldOfLightAttackMinimumAddedPhysicalDamage = 8203, - - /// - /// herald_of_light_attack_maximum_added_physical_damage - /// - HeraldOfLightAttackMaximumAddedPhysicalDamage = 8204, - - /// - /// herald_of_light_summon_champion_on_kill - /// - HeraldOfLightSummonChampionOnKill = 8205, - - /// - /// herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_% - /// - HeraldOfLightSummonChampionOnUniqueOrRareEnemyHitPct = 8206, - - /// - /// rain_of_spores_vines_movement_speed_+%_final - /// - RainOfSporesVinesMovementSpeedPctFinal = 8207, - - /// - /// dominating_blow_chance_to_summon_on_hitting_unqiue_% - /// - DominatingBlowChanceToSummonOnHittingUnqiuePct = 8208, - - /// - /// virulent_arrow_pod_projectile_damage_+%_final - /// - VirulentArrowPodProjectileDamagePctFinal = 8209, - - /// - /// virulent_arrow_damage_+%_final_per_stage - /// - VirulentArrowDamagePctFinalPerStage = 8210, - - /// - /// virulent_arrow_number_of_pod_projectiles - /// - VirulentArrowNumberOfPodProjectiles = 8211, - - /// - /// delve_flare_id - /// - DelveFlareId = 8212, - - /// - /// delve_dynamite_id - /// - DelveDynamiteId = 8213, - - /// - /// maximum_spell_block_% - /// - MaximumSpellBlockPct = 8214, - - /// - /// minion_accuracy_rating_+% - /// - MinionAccuracyRatingPct = 8215, - - /// - /// modifiers_to_totem_duration_also_affect_soul_prevention_duration - /// - ModifiersToTotemDurationAlsoAffectSoulPreventionDuration = 8216, - - /// - /// in_grace_period - /// - InGracePeriod = 8217, - - /// - /// combined_base_spell_block_% - /// - CombinedBaseSpellBlockPct = 8218, - - /// - /// spell_block_equals_attack_block - /// - SpellBlockEqualsAttackBlock = 8219, - - /// - /// local_item_sell_price_doubled - /// - LocalItemSellPriceDoubled = 8220, - - /// - /// base_number_of_relics_allowed - /// - BaseNumberOfRelicsAllowed = 8221, - - /// - /// number_of_relics_allowed - /// - NumberOfRelicsAllowed = 8222, - - /// - /// number_of_active_relics - /// - NumberOfActiveRelics = 8223, - - /// - /// holy_relic_trigger_on_parent_attack_% - /// - HolyRelicTriggerOnParentAttackPct = 8224, - - /// - /// local_display_nearby_enemy_fire_damage_resistance_% - /// - LocalDisplayNearbyEnemyFireDamageResistancePct = 8225, - - /// - /// local_display_nearby_enemy_cold_damage_resistance_% - /// - LocalDisplayNearbyEnemyColdDamageResistancePct = 8226, - - /// - /// local_display_nearby_enemy_lightning_damage_resistance_% - /// - LocalDisplayNearbyEnemyLightningDamageResistancePct = 8227, - - /// - /// local_display_nearby_enemy_chaos_damage_resistance_% - /// - LocalDisplayNearbyEnemyChaosDamageResistancePct = 8228, - - /// - /// local_display_nearby_enemy_physical_damage_taken_+% - /// - LocalDisplayNearbyEnemyPhysicalDamageTakenPct = 8229, - - /// - /// chance_to_intimidate_on_hit_% - /// - ChanceToIntimidateOnHitPct = 8230, - - /// - /// physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently - /// - PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently = 8231, - - /// - /// evasion_rating_+_if_you_have_hit_an_enemy_recently - /// - EvasionRatingIfYouHaveHitAnEnemyRecently = 8232, - - /// - /// energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently - /// - EnergyShieldRegenerationRatePerMinutePctIfYouHaveHitAnEnemyRecently = 8233, - - /// - /// maximum_energy_shield_from_body_armour_+% - /// - MaximumEnergyShieldFromBodyArmourPct = 8234, - - /// - /// base_body_armour_maximum_energy_shield - /// - BaseBodyArmourMaximumEnergyShield = 8235, - - /// - /// local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon - /// - LocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 8236, - - /// - /// local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon - /// - LocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 8237, - - /// - /// local_display_socketed_spell_damage_+%_final - /// - LocalDisplaySocketedSpellDamagePctFinal = 8238, - - /// - /// local_display_socketed_attack_damage_+%_final - /// - LocalDisplaySocketedAttackDamagePctFinal = 8239, - - /// - /// minimum_added_physical_damage_vs_poisoned_enemies - /// - MinimumAddedPhysicalDamageVsPoisonedEnemies = 8240, - - /// - /// maximum_added_physical_damage_vs_poisoned_enemies - /// - MaximumAddedPhysicalDamageVsPoisonedEnemies = 8241, - - /// - /// minimum_added_physical_damage_vs_bleeding_enemies - /// - MinimumAddedPhysicalDamageVsBleedingEnemies = 8242, - - /// - /// maximum_added_physical_damage_vs_bleeding_enemies - /// - MaximumAddedPhysicalDamageVsBleedingEnemies = 8243, - - /// - /// local_display_socketed_skills_cast_speed_+% - /// - LocalDisplaySocketedSkillsCastSpeedPct = 8244, - - /// - /// local_display_socketed_spells_mana_cost_+% - /// - LocalDisplaySocketedSpellsManaCostPct = 8245, - - /// - /// local_display_socketed_skills_attack_speed_+% - /// - LocalDisplaySocketedSkillsAttackSpeedPct = 8246, - - /// - /// local_display_socketed_attacks_mana_cost_+ - /// - LocalDisplaySocketedAttacksManaCost = 8247, - - /// - /// maximum_spell_block_chance_per_50_strength - /// - MaximumSpellBlockChancePer50Strength = 8248, - - /// - /// block_chance_%_per_50_strength - /// - BlockChancePctPer50Strength = 8249, - - /// - /// base_maximum_spell_block_% - /// - BaseMaximumSpellBlockPct = 8250, - - /// - /// local_display_nearby_enemies_stun_and_block_recovery_+% - /// - LocalDisplayNearbyEnemiesStunAndBlockRecoveryPct = 8251, - - /// - /// local_display_nearby_enemies_flask_charges_granted_+% - /// - LocalDisplayNearbyEnemiesFlaskChargesGrantedPct = 8252, - - /// - /// local_display_hits_against_nearby_enemies_critical_strike_chance_+50% - /// - LocalDisplayHitsAgainstNearbyEnemiesCriticalStrikeChance50Pct = 8253, - - /// - /// virtual_gain_flask_charge_on_crit_chance_% - /// - VirtualGainFlaskChargeOnCritChancePct = 8254, - - /// - /// gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges - /// - GainFlaskChargeOnCritChancePctWhileAtMaximumFrenzyCharges = 8255, - - /// - /// movement_speed_+%_per_endurance_charge - /// - MovementSpeedPctPerEnduranceCharge = 8256, - - /// - /// movement_speed_+%_per_power_charge - /// - MovementSpeedPctPerPowerCharge = 8257, - - /// - /// life_regeneration_rate_per_minute_%_per_power_charge - /// - LifeRegenerationRatePerMinutePctPerPowerCharge = 8258, - - /// - /// minimum_added_fire_damage_per_endurance_charge - /// - MinimumAddedFireDamagePerEnduranceCharge = 8259, - - /// - /// maximum_added_fire_damage_per_endurance_charge - /// - MaximumAddedFireDamagePerEnduranceCharge = 8260, - - /// - /// minimum_added_lightning_damage_per_power_charge - /// - MinimumAddedLightningDamagePerPowerCharge = 8261, - - /// - /// maximum_added_lightning_damage_per_power_charge - /// - MaximumAddedLightningDamagePerPowerCharge = 8262, - - /// - /// additional_attack_block_%_per_endurance_charge - /// - AdditionalAttackBlockPctPerEnduranceCharge = 8263, - - /// - /// additional_attack_block_%_per_frenzy_charge - /// - AdditionalAttackBlockPctPerFrenzyCharge = 8264, - - /// - /// additional_attack_block_%_per_power_charge - /// - AdditionalAttackBlockPctPerPowerCharge = 8265, - - /// - /// chance_to_dodge_attacks_%_per_endurance_charge - /// - ChanceToDodgeAttacksPctPerEnduranceCharge = 8266, - - /// - /// chance_to_dodge_attacks_%_per_power_charge - /// - ChanceToDodgeAttacksPctPerPowerCharge = 8267, - - /// - /// fire_damage_%_to_add_as_chaos_per_endurance_charge - /// - FireDamagePctToAddAsChaosPerEnduranceCharge = 8268, - - /// - /// cold_damage_%_to_add_as_chaos_per_frenzy_charge - /// - ColdDamagePctToAddAsChaosPerFrenzyCharge = 8269, - - /// - /// lightning_damage_%_to_add_as_chaos_per_power_charge - /// - LightningDamagePctToAddAsChaosPerPowerCharge = 8270, - - /// - /// physical_damage_reduction_rating_+%_per_endurance_charge - /// - PhysicalDamageReductionRatingPctPerEnduranceCharge = 8271, - - /// - /// energy_shield_+%_per_power_charge - /// - EnergyShieldPctPerPowerCharge = 8272, - - /// - /// gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance - /// - GainMaximumFrenzyChargesOnFrenzyChargeGainedPctChance = 8273, - - /// - /// attack_and_cast_speed_+%_per_endurance_charge - /// - AttackAndCastSpeedPctPerEnduranceCharge = 8274, - - /// - /// attack_and_cast_speed_+%_per_power_charge - /// - AttackAndCastSpeedPctPerPowerCharge = 8275, - - /// - /// critical_strike_chance_+%_per_endurance_charge - /// - CriticalStrikeChancePctPerEnduranceCharge = 8276, - - /// - /// critical_strike_chance_+%_per_frenzy_charge - /// - CriticalStrikeChancePctPerFrenzyCharge = 8277, - - /// - /// physical_damage_reduction_percent_per_frenzy_charge - /// - PhysicalDamageReductionPercentPerFrenzyCharge = 8278, - - /// - /// physical_damage_reduction_percent_per_power_charge - /// - PhysicalDamageReductionPercentPerPowerCharge = 8279, - - /// - /// gain_vaal_pact_while_at_maximum_endurance_charges - /// - GainVaalPactWhileAtMaximumEnduranceCharges = 8280, - - /// - /// gain_iron_reflexes_while_at_maximum_frenzy_charges - /// - GainIronReflexesWhileAtMaximumFrenzyCharges = 8281, - - /// - /// gain_mind_over_matter_while_at_maximum_power_charges - /// - GainMindOverMatterWhileAtMaximumPowerCharges = 8282, - - /// - /// local_grants_aura_minimum_added_fire_damage_per_red_socket - /// - LocalGrantsAuraMinimumAddedFireDamagePerRedSocket = 8283, - - /// - /// local_grants_aura_maximum_added_fire_damage_per_red_socket - /// - LocalGrantsAuraMaximumAddedFireDamagePerRedSocket = 8284, - - /// - /// local_grants_aura_minimum_added_cold_damage_per_green_socket - /// - LocalGrantsAuraMinimumAddedColdDamagePerGreenSocket = 8285, - - /// - /// local_grants_aura_maximum_added_cold_damage_per_green_socket - /// - LocalGrantsAuraMaximumAddedColdDamagePerGreenSocket = 8286, - - /// - /// local_grants_aura_minimum_added_lightning_damage_per_blue_socket - /// - LocalGrantsAuraMinimumAddedLightningDamagePerBlueSocket = 8287, - - /// - /// local_grants_aura_maximum_added_lightning_damage_per_blue_socket - /// - LocalGrantsAuraMaximumAddedLightningDamagePerBlueSocket = 8288, - - /// - /// local_grants_aura_minimum_added_chaos_damage_per_white_socket - /// - LocalGrantsAuraMinimumAddedChaosDamagePerWhiteSocket = 8289, - - /// - /// local_grants_aura_maximum_added_chaos_damage_per_white_socket - /// - LocalGrantsAuraMaximumAddedChaosDamagePerWhiteSocket = 8290, - - /// - /// virtual_keystone_mind_over_matter - /// - VirtualKeystoneMindOverMatter = 8291, - - /// - /// delve_mod_spell_damage_+%_final - /// - DelveModSpellDamagePctFinal = 8292, - - /// - /// delve_mod_attack_damage_+%_final - /// - DelveModAttackDamagePctFinal = 8293, - - /// - /// delve_sulphite_capacity - /// - DelveSulphiteCapacity = 8294, - - /// - /// delve_flare_capacity - /// - DelveFlareCapacity = 8295, - - /// - /// delve_dynamite_capacity - /// - DelveDynamiteCapacity = 8296, - - /// - /// delve_light_radius_+% - /// - DelveLightRadiusPct = 8297, - - /// - /// delve_flare_radius_+% - /// - DelveFlareRadiusPct = 8298, - - /// - /// delve_dynamite_radius_+% - /// - DelveDynamiteRadiusPct = 8299, - - /// - /// delve_dynamite_damage_+% - /// - DelveDynamiteDamagePct = 8300, - - /// - /// delve_darkness_resistance_% - /// - DelveDarknessResistancePct = 8301, - - /// - /// delve_flare_duration_+% - /// - DelveFlareDurationPct = 8302, - - /// - /// physical_damage_reduction_rating_per_5_evasion_on_shield - /// - PhysicalDamageReductionRatingPer5EvasionOnShield = 8303, - - /// - /// evasion_rating_+_per_5_maximum_energy_shield_on_shield - /// - EvasionRatingPer5MaximumEnergyShieldOnShield = 8304, - - /// - /// maximum_energy_shield_+_per_5_armour_on_shield - /// - MaximumEnergyShieldPer5ArmourOnShield = 8305, - - /// - /// life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance - /// - LifeLeechFromSpellDamagePermyriadIfShieldHas30PctBlockChance = 8306, - - /// - /// local_display_nearby_enemies_all_resistances_% - /// - LocalDisplayNearbyEnemiesAllResistancesPct = 8307, - - /// - /// support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final - /// - SupportPhysChaosProjectileSpellPhysicalProjectileDamagePctFinal = 8308, - - /// - /// support_phys_chaos_projectile_physical_damage_over_time_+%_final - /// - SupportPhysChaosProjectilePhysicalDamageOverTimePctFinal = 8309, - - /// - /// support_phys_chaos_projectile_chaos_damage_over_time_+%_final - /// - SupportPhysChaosProjectileChaosDamageOverTimePctFinal = 8310, - - /// - /// combined_spell_physical_damage_pluspercent_final - /// - CombinedSpellPhysicalDamagePluspercentFinal = 8311, - - /// - /// chance_to_double_armour_effect_on_hit_% - /// - ChanceToDoubleArmourEffectOnHitPct = 8312, - - /// - /// minion_targeting_use_parent_location - /// - MinionTargetingUseParentLocation = 8313, - - /// - /// minion_aggro_range_scaled_by_distance_to_parent_target - /// - MinionAggroRangeScaledByDistanceToParentTarget = 8314, - - /// - /// support_chaos_attacks_damage_+%_final - /// - SupportChaosAttacksDamagePctFinal = 8315, - - /// - /// intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_% - /// - IntimidateOnHitChanceWithAttacksWhileAtMaximumEnduranceChargesPct = 8316, - - /// - /// gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_% - /// - GainOnslaughtOnHitChanceWhileAtMaximumFrenzyChargesPct = 8317, - - /// - /// gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_% - /// - GainArcaneSurgeOnHitChanceWithSpellsWhileAtMaximumPowerChargesPct = 8318, - - /// - /// number_of_additional_curses_allowed_while_at_maximum_power_charges - /// - NumberOfAdditionalCursesAllowedWhileAtMaximumPowerCharges = 8319, - - /// - /// virtual_number_of_additional_curses_allowed - /// - VirtualNumberOfAdditionalCursesAllowed = 8320, - - /// - /// on_weapon_global_damage_+% - /// - OnWeaponGlobalDamagePct = 8321, - - /// - /// anger_reserves_no_mana - /// - AngerReservesNoMana = 8322, - - /// - /// clarity_reserves_no_mana - /// - ClarityReservesNoMana = 8323, - - /// - /// determination_reserves_no_mana - /// - DeterminationReservesNoMana = 8324, - - /// - /// discipline_reserves_no_mana - /// - DisciplineReservesNoMana = 8325, - - /// - /// grace_reserves_no_mana - /// - GraceReservesNoMana = 8326, - - /// - /// haste_reserves_no_mana - /// - HasteReservesNoMana = 8327, - - /// - /// hatred_reserves_no_mana - /// - HatredReservesNoMana = 8328, - - /// - /// purity_of_elements_reserves_no_mana - /// - PurityOfElementsReservesNoMana = 8329, - - /// - /// purity_of_fire_reserves_no_mana - /// - PurityOfFireReservesNoMana = 8330, - - /// - /// purity_of_ice_reserves_no_mana - /// - PurityOfIceReservesNoMana = 8331, - - /// - /// purity_of_lightning_reserves_no_mana - /// - PurityOfLightningReservesNoMana = 8332, - - /// - /// vitality_reserves_no_mana - /// - VitalityReservesNoMana = 8333, - - /// - /// wrath_reserves_no_mana - /// - WrathReservesNoMana = 8334, - - /// - /// envy_reserves_no_mana - /// - EnvyReservesNoMana = 8335, - - /// - /// local_display_socketed_gems_supported_by_level_x_chaos_attacks - /// - LocalDisplaySocketedGemsSupportedByLevelXChaosAttacks = 8336, - - /// - /// have_your_skills_crit_recently - /// - HaveYourSkillsCritRecently = 8337, - - /// - /// track_have_your_skills_crit_recently - /// - TrackHaveYourSkillsCritRecently = 8338, - - /// - /// delve_flare_duration_ms_+ - /// - DelveFlareDurationMs = 8339, - - /// - /// display_map_augmentable_boss - /// - DisplayMapAugmentableBoss = 8340, - - /// - /// virtual_poison_damage_+100%_final_chance - /// - VirtualPoisonDamage100PctFinalChance = 8341, - - /// - /// pathfinder_poison_damage_+100%_final_chance_during_flask_effect - /// - PathfinderPoisonDamage100PctFinalChanceDuringFlaskEffect = 8342, - - /// - /// chaos_skills_area_of_effect_+% - /// - ChaosSkillsAreaOfEffectPct = 8343, - - /// - /// minions_chance_to_intimidate_on_hit_% - /// - MinionsChanceToIntimidateOnHitPct = 8344, - - /// - /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently - /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfYouHitAnEnemyRecently = 8345, - - /// - /// herald_of_light_buff_effect_+% - /// - HeraldOfLightBuffEffectPct = 8346, - - /// - /// herald_of_light_minion_area_of_effect_+% - /// - HeraldOfLightMinionAreaOfEffectPct = 8347, - - /// - /// area_of_effect_+%_per_active_herald_of_light_minion - /// - AreaOfEffectPctPerActiveHeraldOfLightMinion = 8348, - - /// - /// herald_of_light_and_dominating_blow_minions_use_holy_slam - /// - HeraldOfLightAndDominatingBlowMinionsUseHolySlam = 8349, - - /// - /// herald_of_agony_buff_drop_off_speed_+% - /// - HeraldOfAgonyBuffDropOffSpeedPct = 8350, - - /// - /// damage_+%_final_with_at_least_1_nearby_ally - /// - DamagePctFinalWithAtLeast1NearbyAlly = 8351, - - /// - /// number_of_nearby_allies - /// - NumberOfNearbyAllies = 8352, - - /// - /// track_number_of_nearby_allies - /// - TrackNumberOfNearbyAllies = 8353, - - /// - /// override_turn_duration_ms - /// - OverrideTurnDurationMs = 8354, - - /// - /// minimum_rain_of_spores_movement_speed_+%_final_cap - /// - MinimumRainOfSporesMovementSpeedPctFinalCap = 8355, - - /// - /// number_of_active_herald_of_light_minions - /// - NumberOfActiveHeraldOfLightMinions = 8356, - - /// - /// uses_holy_slam_skill - /// - UsesHolySlamSkill = 8357, - - /// - /// secondary_minion_duration - /// - SecondaryMinionDuration = 8358, - - /// - /// apply_azurite_debuff_on_hit_ms - /// - ApplyAzuriteDebuffOnHitMs = 8359, - - /// - /// delve_monster_life_+%_final - /// - DelveMonsterLifePctFinal = 8360, - - /// - /// delve_monster_damage_+%_final - /// - DelveMonsterDamagePctFinal = 8361, - - /// - /// additive_modifiers_to_bow_damage_also_apply_to_minions - /// - AdditiveModifiersToBowDamageAlsoApplyToMinions = 8362, - - /// - /// minion_bow_damage_+% - /// - MinionBowDamagePct = 8363, - - /// - /// minion_physical_bow_damage_+% - /// - MinionPhysicalBowDamagePct = 8364, - - /// - /// minion_fire_bow_damage_+% - /// - MinionFireBowDamagePct = 8365, - - /// - /// minion_cold_bow_damage_+% - /// - MinionColdBowDamagePct = 8366, - - /// - /// minion_lightning_bow_damage_+% - /// - MinionLightningBowDamagePct = 8367, - - /// - /// minion_chaos_bow_damage_+% - /// - MinionChaosBowDamagePct = 8368, - - /// - /// minion_elemental_bow_damage_+% - /// - MinionElementalBowDamagePct = 8369, - - /// - /// lightning_bow_damage_+% - /// - LightningBowDamagePct = 8370, - - /// - /// chaos_bow_damage_+% - /// - ChaosBowDamagePct = 8371, - - /// - /// current_delve_degen_stacks - /// - CurrentDelveDegenStacks = 8372, - - /// - /// max_delve_degen_stacks - /// - MaxDelveDegenStacks = 8373, - - /// - /// spell_block_luck - /// - SpellBlockLuck = 8374, - - /// - /// base_spell_block_luck - /// - BaseSpellBlockLuck = 8375, - - /// - /// current_azurite_debuff_stacks - /// - CurrentAzuriteDebuffStacks = 8376, - - /// - /// max_azurite_debuff_stacks - /// - MaxAzuriteDebuffStacks = 8377, - - /// - /// ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final - /// - AscendancyPathfinderChaosDamageWithAttackSkillsPctFinal = 8378, - - /// - /// monster_ignores_delve_darkness_mechanic - /// - MonsterIgnoresDelveDarknessMechanic = 8379, - - /// - /// skill_withered_duration_ms - /// - SkillWitheredDurationMs = 8380, - - /// - /// support_withered_base_duration_ms - /// - SupportWitheredBaseDurationMs = 8381, - - /// - /// withered_on_hit_chance_% - /// - WitheredOnHitChancePct = 8382, - - /// - /// combined_attack_speed_+% - /// - CombinedAttackSpeedPct = 8383, - - /// - /// combined_main_hand_attack_speed_+% - /// - CombinedMainHandAttackSpeedPct = 8384, - - /// - /// combined_off_hand_attack_speed_+% - /// - CombinedOffHandAttackSpeedPct = 8385, - - /// - /// combined_attack_speed_+%_final - /// - CombinedAttackSpeedPctFinal = 8386, - - /// - /// distribute_additional_projectiles_over_contact_points - /// - DistributeAdditionalProjectilesOverContactPoints = 8387, - - /// - /// number_of_blood_meteors_to_create - /// - NumberOfBloodMeteorsToCreate = 8388, - - /// - /// number_of_blood_meteors_to_fire - /// - NumberOfBloodMeteorsToFire = 8389, - - /// - /// no_experience_gain - /// - NoExperienceGain = 8390, - - /// - /// delve_darkness_damage_taken_per_minute - /// - DelveDarknessDamageTakenPerMinute = 8391, - - /// - /// delve_base_darkness_damage_percent_of_maximum_life_taken_per_minute - /// - DelveBaseDarknessDamagePercentOfMaximumLifeTakenPerMinute = 8392, - - /// - /// delve_base_darkness_damage_percent_of_maximum_energy_shield_taken_per_minute - /// - DelveBaseDarknessDamagePercentOfMaximumEnergyShieldTakenPerMinute = 8393, - - /// - /// delve_total_darkness_damage_taken_per_minute - /// - DelveTotalDarknessDamageTakenPerMinute = 8394, - - /// - /// holy_relic_cooldown_recovery_+% - /// - HolyRelicCooldownRecoveryPct = 8395, - - /// - /// smite_chance_for_lighting_to_strike_extra_target_% - /// - SmiteChanceForLightingToStrikeExtraTargetPct = 8396, - - /// - /// smite_aura_effect_+% - /// - SmiteAuraEffectPct = 8397, - - /// - /// holy_path_teleport_range_+% - /// - HolyPathTeleportRangePct = 8398, - - /// - /// holy_relic_area_of_effect_+% - /// - HolyRelicAreaOfEffectPct = 8399, - - /// - /// holy_relic_damage_+% - /// - HolyRelicDamagePct = 8400, - - /// - /// holy_relic_buff_effect_+% - /// - HolyRelicBuffEffectPct = 8401, - - /// - /// mana_regeneration_rate_per_minute_%_if_enemy_hit_recently - /// - ManaRegenerationRatePerMinutePctIfEnemyHitRecently = 8402, - - /// - /// movement_speed_+%_if_enemy_hit_recently - /// - MovementSpeedPctIfEnemyHitRecently = 8403, - - /// - /// attack_and_cast_speed_+%_if_enemy_hit_recently - /// - AttackAndCastSpeedPctIfEnemyHitRecently = 8404, - - /// - /// cannot_be_shocked_or_ignited_while_moving - /// - CannotBeShockedOrIgnitedWhileMoving = 8405, - - /// - /// cannot_be_chilled_or_frozen_while_moving - /// - CannotBeChilledOrFrozenWhileMoving = 8406, - - /// - /// chance_to_gain_onslaught_on_flask_use_% - /// - ChanceToGainOnslaughtOnFlaskUsePct = 8407, - - /// - /// add_frenzy_charge_when_hit_% - /// - AddFrenzyChargeWhenHitPct = 8408, - - /// - /// mana_regeneration_rate_per_minute_if_enemy_hit_recently - /// - ManaRegenerationRatePerMinuteIfEnemyHitRecently = 8409, - - /// - /// curse_on_hit_level_frostbite - /// - CurseOnHitLevelFrostbite = 8410, - - /// - /// curse_on_hit_level_conductivity - /// - CurseOnHitLevelConductivity = 8411, - - /// - /// gain_spirit_charge_every_x_ms - /// - GainSpiritChargeEveryXMs = 8412, - - /// - /// lose_spirit_charges_on_savage_hit_taken - /// - LoseSpiritChargesOnSavageHitTaken = 8413, - - /// - /// gain_%_es_when_spirit_charge_expires_or_consumed - /// - GainPctEsWhenSpiritChargeExpiresOrConsumed = 8414, - - /// - /// skill_buff_grants_chance_to_poison_% - /// - SkillBuffGrantsChanceToPoisonPct = 8415, - - /// - /// active_skill_withered_base_duration_ms - /// - ActiveSkillWitheredBaseDurationMs = 8416, - - /// - /// caustic_arrow_withered_base_duration_ms - /// - CausticArrowWitheredBaseDurationMs = 8417, - - /// - /// caustic_arrow_withered_on_hit_% - /// - CausticArrowWitheredOnHitPct = 8418, - - /// - /// herald_scorpion_number_of_additional_projectiles - /// - HeraldScorpionNumberOfAdditionalProjectiles = 8419, - - /// - /// virulent_arrow_chance_to_poison_%_per_stage - /// - VirulentArrowChanceToPoisonPctPerStage = 8420, - - /// - /// virulent_arrow_additional_spores_at_max_stages - /// - VirulentArrowAdditionalSporesAtMaxStages = 8421, - - /// - /// smite_damage_+% - /// - SmiteDamagePct = 8422, - - /// - /// consecrated_path_damage_+% - /// - ConsecratedPathDamagePct = 8423, - - /// - /// consecrated_path_area_of_effect_+% - /// - ConsecratedPathAreaOfEffectPct = 8424, - - /// - /// herald_of_purity_mana_reservation_+% - /// - HeraldOfPurityManaReservationPct = 8425, - - /// - /// herald_of_agony_mana_reservation_+% - /// - HeraldOfAgonyManaReservationPct = 8426, - - /// - /// scourge_arrow_damage_+% - /// - ScourgeArrowDamagePct = 8427, - - /// - /// toxic_rain_damage_+% - /// - ToxicRainDamagePct = 8428, - - /// - /// toxic_rain_num_of_additional_projectiles - /// - ToxicRainNumOfAdditionalProjectiles = 8429, - - /// - /// toxic_rain_physical_damage_%_to_add_as_chaos - /// - ToxicRainPhysicalDamagePctToAddAsChaos = 8430, - - /// - /// number_of_support_ghosts_allowed - /// - NumberOfSupportGhostsAllowed = 8431, - - /// - /// player_in_breach - /// - PlayerInBreach = 8432, - - /// - /// virtual_spread_poison_to_nearby_enemies_on_kill - /// - VirtualSpreadPoisonToNearbyEnemiesOnKill = 8433, - - /// - /// unique_spread_poison_to_nearby_enemies_during_flask_effect - /// - UniqueSpreadPoisonToNearbyEnemiesDuringFlaskEffect = 8434, - - /// - /// elemental_hit_deals_50%_less_fire_damage - /// - ElementalHitDeals50PctLessFireDamage = 8435, - - /// - /// elemental_hit_deals_50%_less_cold_damage - /// - ElementalHitDeals50PctLessColdDamage = 8436, - - /// - /// elemental_hit_deals_50%_less_lightning_damage - /// - ElementalHitDeals50PctLessLightningDamage = 8437, - - /// - /// local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex - /// - LocalUniqueJewelElementalHit50PctLessFireDamagePer40IntAndDex = 8438, - - /// - /// local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int - /// - LocalUniqueJewelElementalHit50PctLessColdDamagePer40StrAndInt = 8439, - - /// - /// local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex - /// - LocalUniqueJewelElementalHit50PctLessLightningDamagePer40StrAndDex = 8440, - - /// - /// active_skill_fire_damage_+%_final_from_skill_specific_stat - /// - ActiveSkillFireDamagePctFinalFromSkillSpecificStat = 8441, - - /// - /// active_skill_cold_damage_+%_final_from_skill_specific_stat - /// - ActiveSkillColdDamagePctFinalFromSkillSpecificStat = 8442, - - /// - /// active_skill_lightning_damage_+%_final_from_skill_specific_stat - /// - ActiveSkillLightningDamagePctFinalFromSkillSpecificStat = 8443, - - /// - /// spell_block_%_while_on_low_life - /// - SpellBlockPctWhileOnLowLife = 8444, - - /// - /// base_block_chance_%_from_shield - /// - BaseBlockChancePctFromShield = 8445, - - /// - /// skill_deals_50%_less_fire_damage - /// - SkillDeals50PctLessFireDamage = 8446, - - /// - /// skill_deals_50%_less_cold_damage - /// - SkillDeals50PctLessColdDamage = 8447, - - /// - /// skill_deals_50%_less_lightning_damage - /// - SkillDeals50PctLessLightningDamage = 8448, - - /// - /// melee_variation - /// - MeleeVariation = 8449, - - /// - /// map_monsters_penetrate_elemental_resistances_% - /// - MapMonstersPenetrateElementalResistancesPct = 8450, - - /// - /// map_monsters_remove_charges_on_hit_% - /// - MapMonstersRemoveChargesOnHitPct = 8451, - - /// - /// boss_maximum_life_+%_final - /// - BossMaximumLifePctFinal = 8452, - - /// - /// spell_block_with_bow_% - /// - SpellBlockWithBowPct = 8453, - - /// - /// gain_1_random_rare_monster_mod_on_kill_ms - /// - Gain1RandomRareMonsterModOnKillMs = 8454, - - /// - /// map_players_gain_1_random_rare_monster_mod_on_kill_ms - /// - MapPlayersGain1RandomRareMonsterModOnKillMs = 8455, - - /// - /// map_non_unique_items_drop_normal - /// - MapNonUniqueItemsDropNormal = 8456, - - /// - /// skill_socketed_item_inventory_id - /// - SkillSocketedItemInventoryId = 8457, - - /// - /// socketed_triggered_skills_use_weapon_attack_time_for_pvp_scaling - /// - SocketedTriggeredSkillsUseWeaponAttackTimeForPvpScaling = 8458, - - /// - /// from_self_minimum_added_chaos_damage_taken - /// - FromSelfMinimumAddedChaosDamageTaken = 8459, - - /// - /// from_self_maximum_added_chaos_damage_taken - /// - FromSelfMaximumAddedChaosDamageTaken = 8460, - - /// - /// frost_bolt_nova_number_of_frost_bolts_to_detonate - /// - FrostBoltNovaNumberOfFrostBoltsToDetonate = 8461, - - /// - /// ice_nova_number_of_frost_bolts_to_cast_on - /// - IceNovaNumberOfFrostBoltsToCastOn = 8462, - - /// - /// affected_by_herald_of_agony - /// - AffectedByHeraldOfAgony = 8463, - - /// - /// affected_by_herald_of_purity - /// - AffectedByHeraldOfPurity = 8464, - - /// - /// support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount - /// - SupportChillsAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8465, - - /// - /// support_chills_also_grant_cold_damage_taken_per_minute_+% - /// - SupportChillsAlsoGrantColdDamageTakenPerMinutePct = 8466, - - /// - /// cold_damage_taken_per_minute_+% - /// - ColdDamageTakenPerMinutePct = 8467, - - /// - /// map_uses_beast_catcher_rules - /// - MapUsesBeastCatcherRules = 8468, - - /// - /// action_speed_-%_from_chill - /// - ActionSpeedPctFromChill = 8469, - - /// - /// map_spawn_betrayals - /// - MapSpawnBetrayals = 8470, - - /// - /// frost_fury_base_fire_interval_ms - /// - FrostFuryBaseFireIntervalMs = 8471, - - /// - /// frost_fury_fire_speed_+%_per_stage - /// - FrostFuryFireSpeedPctPerStage = 8472, - - /// - /// frost_fury_current_number_of_stages - /// - FrostFuryCurrentNumberOfStages = 8473, - - /// - /// frost_fury_max_number_of_stages - /// - FrostFuryMaxNumberOfStages = 8474, - - /// - /// frost_fury_added_duration_per_stage_ms - /// - FrostFuryAddedDurationPerStageMs = 8475, - - /// - /// impaled_debuff_unmodified_phys_damage_to_deal - /// - ImpaledDebuffUnmodifiedPhysDamageToDeal = 8476, - - /// - /// impaled_debuff_base_duration_ms - /// - ImpaledDebuffBaseDurationMs = 8477, - - /// - /// attacks_impale_on_hit_%_chance - /// - AttacksImpaleOnHitPctChance = 8478, - - /// - /// impaled_debuff_number_of_reflected_hits - /// - ImpaledDebuffNumberOfReflectedHits = 8479, - - /// - /// delve_monster_curse_effect_+%_final - /// - DelveMonsterCurseEffectPctFinal = 8480, - - /// - /// intermediary_maximum_life_for_ailments - /// - IntermediaryMaximumLifeForAilments = 8481, - - /// - /// flicker_thrust_number_of_teleports - /// - FlickerThrustNumberOfTeleports = 8482, - - /// - /// local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius - /// - LocalUniqueJewelCausticArrowHitDamagePctWith40DexInRadius = 8483, - - /// - /// caustic_arrow_hit_damage_+% - /// - CausticArrowHitDamagePct = 8484, - - /// - /// local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius - /// - LocalUniqueJewelCausticArrowDamageOverTimePctWith40DexInRadius = 8485, - - /// - /// caustic_arrow_damage_over_time_+% - /// - CausticArrowDamageOverTimePct = 8486, - - /// - /// local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius - /// - LocalUniqueJewelCausticArrowChanceToPoisonPctVsEnemiesOnCausticGroundWith40DexInRadius = 8487, - - /// - /// caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground - /// - CausticArrowChanceToPoisonPctVsEnemiesOnCausticGround = 8488, - - /// - /// chance_to_poison_%_vs_enemies_on_caustic_ground - /// - ChanceToPoisonPctVsEnemiesOnCausticGround = 8489, - - /// - /// additional_projectiles_fired_with_distance_offset - /// - AdditionalProjectilesFiredWithDistanceOffset = 8490, - - /// - /// projectile_remove_default_spread - /// - ProjectileRemoveDefaultSpread = 8491, - - /// - /// base_sigil_repeat_frequency_ms - /// - BaseSigilRepeatFrequencyMs = 8492, - - /// - /// sigil_repeat_frequency_ms - /// - SigilRepeatFrequencyMs = 8493, - - /// - /// additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency - /// - AdditiveCastSpeedModifiersApplyToSigilRepeatFrequency = 8494, - - /// - /// sigil_repeat_frequency_+% - /// - SigilRepeatFrequencyPct = 8495, - - /// - /// base_total_number_of_sigils_allowed - /// - BaseTotalNumberOfSigilsAllowed = 8496, - - /// - /// base_number_of_sigils_allowed_per_target - /// - BaseNumberOfSigilsAllowedPerTarget = 8497, - - /// - /// conduit_sigil_number_of_beam_targets - /// - ConduitSigilNumberOfBeamTargets = 8498, - - /// - /// unaffected_by_life_modifiers - /// - UnaffectedByLifeModifiers = 8499, - - /// - /// impale_debuff_effect_+% - /// - ImpaleDebuffEffectPct = 8500, - - /// - /// attack_speed_+%_granted_from_skill - /// - AttackSpeedPctGrantedFromSkill = 8501, - - /// - /// physical_damage_from_hits_%_taken_as_random_element - /// - PhysicalDamageFromHitsPctTakenAsRandomElement = 8502, - - /// - /// local_display_socketed_gems_supported_by_level_x_greater_volley - /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterVolley = 8503, - - /// - /// support_greater_volley_projectile_damage_+%_final - /// - SupportGreaterVolleyProjectileDamagePctFinal = 8504, - - /// - /// arrows_always_pierce_after_forking - /// - ArrowsAlwaysPierceAfterForking = 8505, - - /// - /// critical_strike_multiplier_for_arrows_that_pierce_+ - /// - CriticalStrikeMultiplierForArrowsThatPierce = 8506, - - /// - /// physical_damage_+%_while_you_have_resolute_technique - /// - PhysicalDamagePctWhileYouHaveResoluteTechnique = 8507, - - /// - /// chance_to_gain_unholy_might_on_kill_for_10_seconds_% - /// - ChanceToGainUnholyMightOnKillFor10SecondsPct = 8508, - - /// - /// Elemental Damage With Attack Skills +% - /// - ElementalDamageWithAttackSkillsPctPerPowerCharge = 8509, - - /// - /// local_display_nearby_allies_critical_strike_multiplier_+ - /// - LocalDisplayNearbyAlliesCriticalStrikeMultiplier = 8510, - - /// - /// local_display_nearby_allies_have_fortify - /// - LocalDisplayNearbyAlliesHaveFortify = 8511, - - /// - /// base_minimum_endurance_charges - /// - BaseMinimumEnduranceCharges = 8512, - - /// - /// minimum_endurance_charges - /// - MinimumEnduranceCharges = 8513, - - /// - /// base_minimum_frenzy_charges - /// - BaseMinimumFrenzyCharges = 8514, - - /// - /// minimum_frenzy_charges - /// - MinimumFrenzyCharges = 8515, - - /// - /// base_minimum_power_charges - /// - BaseMinimumPowerCharges = 8516, - - /// - /// minimum_power_charges - /// - MinimumPowerCharges = 8517, - - /// - /// betrayal_job_index - /// - BetrayalJobIndex = 8518, - - /// - /// veiled_mod_type - /// - VeiledModType = 8519, - - /// - /// has_focus - /// - HasFocus = 8520, - - /// - /// extra_critical_rolls_during_focus - /// - ExtraCriticalRollsDuringFocus = 8521, - - /// - /// virtual_extra_critical_rolls - /// - VirtualExtraCriticalRolls = 8522, - - /// - /// dodge_attacks_chance_%_during_focus - /// - DodgeAttacksChancePctDuringFocus = 8523, - - /// - /// additional_physical_damage_reduction_%_during_focus - /// - AdditionalPhysicalDamageReductionPctDuringFocus = 8524, - - /// - /// shock_nearby_enemies_for_x_ms_when_you_focus - /// - ShockNearbyEnemiesForXMsWhenYouFocus = 8525, - - /// - /// evasion_rating_%_as_life_regeneration_per_minute_during_focus - /// - EvasionRatingPctAsLifeRegenerationPerMinuteDuringFocus = 8526, - - /// - /// restore_energy_shield_and_mana_when_you_focus_% - /// - RestoreEnergyShieldAndManaWhenYouFocusPct = 8527, - - /// - /// banner_add_stage_on_kill - /// - BannerAddStageOnKill = 8528, - - /// - /// banner_add_stage_on_impale - /// - BannerAddStageOnImpale = 8529, - - /// - /// banner_area_of_effect_+%_per_stage - /// - BannerAreaOfEffectPctPerStage = 8530, - - /// - /// banner_buff_effect_+%_per_stage - /// - BannerBuffEffectPctPerStage = 8531, - - /// - /// banner_additional_base_duration_per_stage_ms - /// - BannerAdditionalBaseDurationPerStageMs = 8532, - - /// - /// bloodstained_banner_adrenaline_duration_per_stage_ms - /// - BloodstainedBannerAdrenalineDurationPerStageMs = 8533, - - /// - /// projectile_random_angle_based_on_distance_to_target_location_% - /// - ProjectileRandomAngleBasedOnDistanceToTargetLocationPct = 8534, - - /// - /// local_attacks_impale_on_hit_%_chance - /// - LocalAttacksImpaleOnHitPctChance = 8535, - - /// - /// main_hand_attacks_impale_on_hit_%_chance - /// - MainHandAttacksImpaleOnHitPctChance = 8536, - - /// - /// off_hand_attacks_impale_on_hit_%_chance - /// - OffHandAttacksImpaleOnHitPctChance = 8537, - - /// - /// active_skill_area_of_effect_+%_final_when_cast_on_frostbolt - /// - ActiveSkillAreaOfEffectPctFinalWhenCastOnFrostbolt = 8538, - - /// - /// ignore_skill_weapon_restrictions - /// - IgnoreSkillWeaponRestrictions = 8539, - - /// - /// puresteel_banner_accuracy_rating_+%_final - /// - PuresteelBannerAccuracyRatingPctFinal = 8540, - - /// - /// puresteel_banner_fortify_duration_per_stage_ms - /// - PuresteelBannerFortifyDurationPerStageMs = 8541, - - /// - /// puresteel_banner_fortify_effect_+%_per_stage - /// - PuresteelBannerFortifyEffectPctPerStage = 8542, - - /// - /// virtual_accuracy_rating_+%_final - /// - VirtualAccuracyRatingPctFinal = 8543, - - /// - /// arctic_breath_maximum_number_of_skulls_allowed - /// - ArcticBreathMaximumNumberOfSkullsAllowed = 8544, - - /// - /// damage_+%_final_vs_unique_monsters - /// - DamagePctFinalVsUniqueMonsters = 8545, - - /// - /// skill_is_shield_skill - /// - SkillIsShieldSkill = 8546, - - /// - /// damage_+%_with_shield_skills - /// - DamagePctWithShieldSkills = 8547, - - /// - /// attack_and_cast_speed_+%_with_shield_skills - /// - AttackAndCastSpeedPctWithShieldSkills = 8548, - - /// - /// additional_attack_block_%_if_used_shield_skill_recently - /// - AdditionalAttackBlockPctIfUsedShieldSkillRecently = 8549, - - /// - /// track_have_used_a_shield_skill_recently - /// - TrackHaveUsedAShieldSkillRecently = 8550, - - /// - /// have_used_a_shield_skill_recently - /// - HaveUsedAShieldSkillRecently = 8551, - - /// - /// damage_+%_with_shield_skills_per_2%_attack_block - /// - DamagePctWithShieldSkillsPer2PctAttackBlock = 8552, - - /// - /// spell_critical_strike_chance_+%_per_raised_spectre - /// - SpellCriticalStrikeChancePctPerRaisedSpectre = 8553, - - /// - /// gain_arcane_surge_on_crit_%_chance - /// - GainArcaneSurgeOnCritPctChance = 8554, - - /// - /// spectres_gain_arcane_surge_when_you_do - /// - SpectresGainArcaneSurgeWhenYouDo = 8555, - - /// - /// local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect - /// - LocalFlaskLifeLeechOnDamageTakenPctPermyriadDuringFlaskEffect = 8556, - - /// - /// life_leech_on_damage_taken_%_permyriad - /// - LifeLeechOnDamageTakenPctPermyriad = 8557, - - /// - /// gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster - /// - GainShapersPresenceFor10SecondsOnKillingRareOrUniqueMonster = 8558, - - /// - /// local_flask_life_regeneration_per_minute_%_during_flask_effect - /// - LocalFlaskLifeRegenerationPerMinutePctDuringFlaskEffect = 8559, - - /// - /// local_flask_avoid_stun_chance_%_during_flask_effect - /// - LocalFlaskAvoidStunChancePctDuringFlaskEffect = 8560, - - /// - /// local_flask_skill_mana_cost_+%_during_flask_effect - /// - LocalFlaskSkillManaCostPctDuringFlaskEffect = 8561, - - /// - /// local_flask_item_found_rarity_+%_during_flask_effect - /// - LocalFlaskItemFoundRarityPctDuringFlaskEffect = 8562, - - /// - /// local_flask_critical_strike_chance_+%_during_flask_effect - /// - LocalFlaskCriticalStrikeChancePctDuringFlaskEffect = 8563, - - /// - /// energy_shield_recharges_on_skill_use_chance_% - /// - EnergyShieldRechargesOnSkillUseChancePct = 8564, - - /// - /// avoid_elemental_damage_chance_%_during_soul_gain_prevention - /// - AvoidElementalDamageChancePctDuringSoulGainPrevention = 8565, - - /// - /// physical_damage_reduction_rating_during_soul_gain_prevention - /// - PhysicalDamageReductionRatingDuringSoulGainPrevention = 8566, - - /// - /// gain_onslaught_during_soul_gain_prevention - /// - GainOnslaughtDuringSoulGainPrevention = 8567, - - /// - /// damage_+%_with_non_vaal_skills_during_soul_gain_prevention - /// - DamagePctWithNonVaalSkillsDuringSoulGainPrevention = 8568, - - /// - /// chance_to_deal_double_damage_%_while_focused - /// - ChanceToDealDoubleDamagePctWhileFocused = 8569, - - /// - /// attack_and_cast_speed_+%_while_focused - /// - AttackAndCastSpeedPctWhileFocused = 8570, - - /// - /// status_ailments_you_inflict_duration_+%_while_focused - /// - StatusAilmentsYouInflictDurationPctWhileFocused = 8571, - - /// - /// immune_to_status_ailments_while_focused - /// - ImmuneToStatusAilmentsWhileFocused = 8572, - - /// - /// life_leech_from_any_damage_permyriad_while_focused - /// - LifeLeechFromAnyDamagePermyriadWhileFocused = 8573, - - /// - /// fortify_effect_+%_while_focused - /// - FortifyEffectPctWhileFocused = 8574, - - /// - /// trigger_socketed_spells_when_you_focus_% - /// - TriggerSocketedSpellsWhenYouFocusPct = 8575, - - /// - /// damage_removed_from_mana_before_life_%_while_focused - /// - DamageRemovedFromManaBeforeLifePctWhileFocused = 8576, - - /// - /// minions_recover_%_maximum_life_when_you_focus - /// - MinionsRecoverPctMaximumLifeWhenYouFocus = 8577, - - /// - /// gain_vaal_pact_while_focused - /// - GainVaalPactWhileFocused = 8578, - - /// - /// skills_cost_no_mana_while_focused - /// - SkillsCostNoManaWhileFocused = 8579, - - /// - /// virtual_spell_critical_strike_chance_+% - /// - VirtualSpellCriticalStrikeChancePct = 8580, - - /// - /// master_damage_+%_final_vs_unique_monsters - /// - MasterDamagePctFinalVsUniqueMonsters = 8581, - - /// - /// grant_focus_skill - /// - GrantFocusSkill = 8582, - - /// - /// local_display_trigger_level_X_offering_every_5_seconds - /// - LocalDisplayTriggerLevelXOfferingEvery5Seconds = 8583, - - /// - /// local_display_trigger_level_X_feast_of_flesh_every_5_seconds - /// - LocalDisplayTriggerLevelXFeastOfFleshEvery5Seconds = 8584, - - /// - /// triggered_by_item_buff - /// - TriggeredByItemBuff = 8585, - - /// - /// number_of_corpses_to_consume - /// - NumberOfCorpsesToConsume = 8586, - - /// - /// feast_of_flesh_gain_X_life_per_corpse_consumed - /// - FeastOfFleshGainXLifePerCorpseConsumed = 8587, - - /// - /// feast_of_flesh_gain_X_mana_per_corpse_consumed - /// - FeastOfFleshGainXManaPerCorpseConsumed = 8588, - - /// - /// feast_of_flesh_gain_X_energy_shield_per_corpse_consumed - /// - FeastOfFleshGainXEnergyShieldPerCorpseConsumed = 8589, - - /// - /// map_music_override - /// - MapMusicOverride = 8590, - - /// - /// summon_2_totems - /// - Summon2Totems = 8591, - - /// - /// support_additional_totem_damage_+%_final - /// - SupportAdditionalTotemDamagePctFinal = 8592, - - /// - /// ignores_totem_cooldown_limit - /// - IgnoresTotemCooldownLimit = 8593, - - /// - /// number_of_additional_totems_to_summon - /// - NumberOfAdditionalTotemsToSummon = 8594, - - /// - /// local_socketed_gem_quality_+ - /// - LocalSocketedGemQuality = 8595, - - /// - /// gain_frenzy_charge_on_critical_strike_% - /// - GainFrenzyChargeOnCriticalStrikePct = 8596, - - /// - /// elemental_damage_+%_if_have_crit_recently - /// - ElementalDamagePctIfHaveCritRecently = 8597, - - /// - /// minimum_added_chaos_damage_if_have_crit_recently - /// - MinimumAddedChaosDamageIfHaveCritRecently = 8598, - - /// - /// maximum_added_chaos_damage_if_have_crit_recently - /// - MaximumAddedChaosDamageIfHaveCritRecently = 8599, - - /// - /// number_of_nearby_rare_monsters - /// - NumberOfNearbyRareMonsters = 8600, - - /// - /// number_of_nearby_unique_monsters - /// - NumberOfNearbyUniqueMonsters = 8601, - - /// - /// critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby - /// - CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby = 8602, - - /// - /// attack_speed_+%_if_rare_or_unique_enemy_nearby - /// - AttackSpeedPctIfRareOrUniqueEnemyNearby = 8603, - - /// - /// energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby - /// - EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby = 8604, - - /// - /// trigger_after_spending_200_mana_%_chance - /// - TriggerAfterSpending200ManaPctChance = 8605, - - /// - /// display_trigger_arcane_wake_after_spending_200_mana_%_chance - /// - DisplayTriggerArcaneWakeAfterSpending200ManaPctChance = 8606, - - /// - /// apply_taser_debuff_action_speed_-%_on_hit - /// - ApplyTaserDebuffActionSpeedPctOnHit = 8607, - - /// - /// sigil_attached_target_damage_+%_final - /// - SigilAttachedTargetDamagePctFinal = 8608, - - /// - /// sigil_attached_target_damage_+% - /// - SigilAttachedTargetDamagePct = 8609, - - /// - /// map_no_magic_items_drop - /// - MapNoMagicItemsDrop = 8610, - - /// - /// map_no_rare_items_drop - /// - MapNoRareItemsDrop = 8611, - - /// - /// map_players_resist_all_% - /// - MapPlayersResistAllPct = 8612, - - /// - /// map_no_stashes - /// - MapNoStashes = 8613, - - /// - /// map_no_vendors - /// - MapNoVendors = 8614, - - /// - /// current_removable_endurance_charges - /// - CurrentRemovableEnduranceCharges = 8615, - - /// - /// current_removable_frenzy_charges - /// - CurrentRemovableFrenzyCharges = 8616, - - /// - /// current_removable_power_charges - /// - CurrentRemovablePowerCharges = 8617, - - /// - /// map_spawn_hideout_subareas - /// - MapSpawnHideoutSubareas = 8618, - - /// - /// support_reduce_enemy_block_and_spell_block_% - /// - SupportReduceEnemyBlockAndSpellBlockPct = 8619, - - /// - /// support_reduce_enemy_dodge_and_spell_dodge_% - /// - SupportReduceEnemyDodgeAndSpellDodgePct = 8620, - - /// - /// two_handed_reduce_enemy_block_and_spell_block_% - /// - TwoHandedReduceEnemyBlockAndSpellBlockPct = 8621, - - /// - /// support_overpowered_base_duration_ms - /// - SupportOverpoweredBaseDurationMs = 8622, - - /// - /// support_overpowered_duration_ms - /// - SupportOverpoweredDurationMs = 8623, - - /// - /// apply_overpowered_on_enemy_block_reduced_block_and_spell_block_% - /// - ApplyOverpoweredOnEnemyBlockReducedBlockAndSpellBlockPct = 8624, - - /// - /// additional_weapon_base_attack_time_ms - /// - AdditionalWeaponBaseAttackTimeMs = 8625, - - /// - /// local_double_damage_with_attacks - /// - LocalDoubleDamageWithAttacks = 8626, - - /// - /// local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire - /// - LocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8627, - - /// - /// main_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire - /// - MainHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8628, - - /// - /// off_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire - /// - OffHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8629, - - /// - /// life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item - /// - LifeRegenerationRatePerMinuteForEachEquippedUncorruptedItem = 8630, - - /// - /// skill_mana_cost_+_for_each_equipped_corrupted_item - /// - SkillManaCostForEachEquippedCorruptedItem = 8631, - - /// - /// focus_cooldown_modifier_ms - /// - FocusCooldownModifierMs = 8632, - - /// - /// chill_nearby_enemies_when_you_focus - /// - ChillNearbyEnemiesWhenYouFocus = 8633, - - /// - /// hit_and_ailment_damage_+%_vs_chilled_enemies - /// - HitAndAilmentDamagePctVsChilledEnemies = 8634, - - /// - /// elemental_damage_+%_while_in_area_affected_by_sextant - /// - ElementalDamagePctWhileInAreaAffectedBySextant = 8635, - - /// - /// elemental_damage_+%_per_sextant_affecting_area - /// - ElementalDamagePctPerSextantAffectingArea = 8636, - - /// - /// local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing - /// - LocalUniqueFlaskAdditionalMaximumAllElementalResistancesPctWhileHealing = 8637, - - /// - /// chaos_non_ailment_damage_over_time_multiplier_+ - /// - ChaosNonAilmentDamageOverTimeMultiplier = 8638, - - /// - /// cold_dot_multiplier_+ - /// - ColdDotMultiplier = 8639, - - /// - /// shattering_steel_damage_+%_final_scaled_by_projectile_distance - /// - ShatteringSteelDamagePctFinalScaledByProjectileDistance = 8640, - - /// - /// map_prophecy_plugin_hash - /// - MapProphecyPluginHash = 8641, - - /// - /// map_enable_monster_logging - /// - MapEnableMonsterLogging = 8642, - - /// - /// display_attack_time_+% - /// - DisplayAttackTimePct = 8643, - - /// - /// main_hand_total_base_weapon_attack_duration_ms - /// - MainHandTotalBaseWeaponAttackDurationMs = 8644, - - /// - /// off_hand_total_base_weapon_attack_duration_ms - /// - OffHandTotalBaseWeaponAttackDurationMs = 8645, - - /// - /// sigil_damage_+% - /// - SigilDamagePct = 8646, - - /// - /// sigil_critical_strike_chance_+% - /// - SigilCriticalStrikeChancePct = 8647, - - /// - /// sigil_critical_strike_multiplier_+ - /// - SigilCriticalStrikeMultiplier = 8648, - - /// - /// sigil_duration_+% - /// - SigilDurationPct = 8649, - - /// - /// sigil_target_search_range_+% - /// - SigilTargetSearchRangePct = 8650, - - /// - /// recall_sigil_target_search_range_+% - /// - RecallSigilTargetSearchRangePct = 8651, - - /// - /// attack_speed_+%_per_explicit_map_mod_affecting_area - /// - AttackSpeedPctPerExplicitMapModAffectingArea = 8652, - - /// - /// physical_damage_+%_per_explicit_map_mod_affecting_area - /// - PhysicalDamagePctPerExplicitMapModAffectingArea = 8653, - - /// - /// player_number_of_explicit_map_mods_affecting_area - /// - PlayerNumberOfExplicitMapModsAffectingArea = 8654, - - /// - /// skill_is_brand_skill - /// - SkillIsBrandSkill = 8655, - - /// - /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently - /// - YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfHaveBlockedRecently = 8656, - - /// - /// track_have_rampaged_recently - /// - TrackHaveRampagedRecently = 8657, - - /// - /// have_rampaged_recently - /// - HaveRampagedRecently = 8658, - - /// - /// virtual_number_of_vaal_souls_to_gain_on_kill - /// - VirtualNumberOfVaalSoulsToGainOnKill = 8659, - - /// - /// number_of_vaal_souls_to_gain_on_kill - /// - NumberOfVaalSoulsToGainOnKill = 8660, - - /// - /// gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently - /// - GainAnAdditionalVaalSoulOnKillIfHaveRampagedRecently = 8661, - - /// - /// bleed_on_crit_%_with_attacks - /// - BleedOnCritPctWithAttacks = 8662, - - /// - /// maim_on_crit_%_with_attacks - /// - MaimOnCritPctWithAttacks = 8663, - - /// - /// enemies_you_bleed_grant_flask_charges_+% - /// - EnemiesYouBleedGrantFlaskChargesPct = 8664, - - /// - /// projectile_distance_variance - /// - ProjectileDistanceVariance = 8665, - - /// - /// current_number_of_active_conduit_sigils - /// - CurrentNumberOfActiveConduitSigils = 8666, - - /// - /// current_number_of_inactive_conduit_sigils - /// - CurrentNumberOfInactiveConduitSigils = 8667, - - /// - /// current_number_of_active_cataclysm_sigils - /// - CurrentNumberOfActiveCataclysmSigils = 8668, - - /// - /// current_number_of_inactive_cataclysm_sigils - /// - CurrentNumberOfInactiveCataclysmSigils = 8669, - - /// - /// ground_tar_on_block_base_area_of_effect_radius - /// - GroundTarOnBlockBaseAreaOfEffectRadius = 8670, - - /// - /// ground_tar_on_block_duration_ms - /// - GroundTarOnBlockDurationMs = 8671, - - /// - /// sigil_recall_cooldown_speed_+% - /// - SigilRecallCooldownSpeedPct = 8672, - - /// - /// current_total_number_of_sigils - /// - CurrentTotalNumberOfSigils = 8673, - - /// - /// number_of_totems_to_summon - /// - NumberOfTotemsToSummon = 8674, - - /// - /// temporal_chains_mana_reservation_+% - /// - TemporalChainsManaReservationPct = 8675, - - /// - /// buff_time_passed_+% - /// - BuffTimePassedPct = 8676, - - /// - /// virtual_projectiles_fork - /// - VirtualProjectilesFork = 8677, - - /// - /// projectiles_from_spells_fork - /// - ProjectilesFromSpellsFork = 8678, - - /// - /// virtual_projectiles_cannot_fork - /// - VirtualProjectilesCannotFork = 8679, - - /// - /// projectiles_from_spells_cannot_fork - /// - ProjectilesFromSpellsCannotFork = 8680, - - /// - /// virtual_number_of_chains_for_projectiles - /// - VirtualNumberOfChainsForProjectiles = 8681, - - /// - /// number_of_additional_chains_for_spell_projectiles - /// - NumberOfAdditionalChainsForSpellProjectiles = 8682, - - /// - /// virtual_projectiles_cannot_chain - /// - VirtualProjectilesCannotChain = 8683, - - /// - /// projectiles_from_spells_cannot_chain - /// - ProjectilesFromSpellsCannotChain = 8684, - - /// - /// local_left_ring_slot_projectiles_from_spells_cannot_chain - /// - LocalLeftRingSlotProjectilesFromSpellsCannotChain = 8685, - - /// - /// local_right_ring_slot_projectiles_from_spells_cannot_fork - /// - LocalRightRingSlotProjectilesFromSpellsCannotFork = 8686, - - /// - /// local_left_ring_slot_projectiles_from_spells_fork - /// - LocalLeftRingSlotProjectilesFromSpellsFork = 8687, - - /// - /// local_right_ring_slot_number_of_additional_chains_for_spell_projectiles - /// - LocalRightRingSlotNumberOfAdditionalChainsForSpellProjectiles = 8688, - - /// - /// virtual_projectiles_cannot_pierce - /// - VirtualProjectilesCannotPierce = 8689, - - /// - /// projectiles_from_spells_cannot_pierce - /// - ProjectilesFromSpellsCannotPierce = 8690, - - /// - /// summoned_spider_grants_attack_speed_+% - /// - SummonedSpiderGrantsAttackSpeedPct = 8691, - - /// - /// summoned_spider_grants_poison_damage_+% - /// - SummonedSpiderGrantsPoisonDamagePct = 8692, - - /// - /// skill_triggered_when_you_focus_chance_% - /// - SkillTriggeredWhenYouFocusChancePct = 8693, - - /// - /// volley_additional_projectiles_fire_parallel_x_dist - /// - VolleyAdditionalProjectilesFireParallelXDist = 8694, - - /// - /// greater_volley_additional_projectiles_fire_parallel_x_dist - /// - GreaterVolleyAdditionalProjectilesFireParallelXDist = 8695, - - /// - /// local_flask_enemies_ignited_during_flask_effect_damage_taken_+% - /// - LocalFlaskEnemiesIgnitedDuringFlaskEffectDamageTakenPct = 8696, - - /// - /// local_flask_gain_X_charges_on_consuming_ignited_corpse - /// - LocalFlaskGainXChargesOnConsumingIgnitedCorpse = 8697, - - /// - /// local_flask_recover_%_maximum_life_on_kill_during_flask_effect - /// - LocalFlaskRecoverPctMaximumLifeOnKillDuringFlaskEffect = 8698, - - /// - /// local_flask_recover_%_maximum_mana_on_kill_during_flask_effect - /// - LocalFlaskRecoverPctMaximumManaOnKillDuringFlaskEffect = 8699, - - /// - /// local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect - /// - LocalFlaskRecoverPctMaximumEnergyShieldOnKillDuringFlaskEffect = 8700, - - /// - /// ignited_enemies_damage_taken_+% - /// - IgnitedEnemiesDamageTakenPct = 8701, - - /// - /// betrayal_siege_cannon_beam_damage_+%_final - /// - BetrayalSiegeCannonBeamDamagePctFinal = 8702, - - /// - /// trigger_socketed_spell_on_skill_use_% - /// - TriggerSocketedSpellOnSkillUsePct = 8703, - - /// - /// main_hand_trigger_socketed_spell_on_skill_use_% - /// - MainHandTriggerSocketedSpellOnSkillUsePct = 8704, - - /// - /// off_hand_trigger_socketed_spell_on_skill_use_% - /// - OffHandTriggerSocketedSpellOnSkillUsePct = 8705, - - /// - /// local_item_quality_+ - /// - LocalItemQuality = 8706, - - /// - /// local_display_trigger_level_1_blood_rage_on_kill_chance_% - /// - LocalDisplayTriggerLevel1BloodRageOnKillChancePct = 8707, - - /// - /// gain_arcane_surge_on_kill_chance_% - /// - GainArcaneSurgeOnKillChancePct = 8708, - - /// - /// fire_and_chaos_damage_resistance_% - /// - FireAndChaosDamageResistancePct = 8709, - - /// - /// cold_and_chaos_damage_resistance_% - /// - ColdAndChaosDamageResistancePct = 8710, - - /// - /// lightning_and_chaos_damage_resistance_% - /// - LightningAndChaosDamageResistancePct = 8711, - - /// - /// utility_flask_fire_damage_taken_+%_final - /// - UtilityFlaskFireDamageTakenPctFinal = 8712, - - /// - /// utility_flask_cold_damage_taken_+%_final - /// - UtilityFlaskColdDamageTakenPctFinal = 8713, - - /// - /// utility_flask_lightning_damage_taken_+%_final - /// - UtilityFlaskLightningDamageTakenPctFinal = 8714, - - /// - /// local_life_leech_from_any_damage_permyriad - /// - LocalLifeLeechFromAnyDamagePermyriad = 8715, - - /// - /// main_hand_local_life_leech_from_any_damage_permyriad - /// - MainHandLocalLifeLeechFromAnyDamagePermyriad = 8716, - - /// - /// off_hand_local_life_leech_from_any_damage_permyriad - /// - OffHandLocalLifeLeechFromAnyDamagePermyriad = 8717, - - /// - /// local_mana_leech_from_any_damage_permyriad - /// - LocalManaLeechFromAnyDamagePermyriad = 8718, - - /// - /// main_hand_local_mana_leech_from_any_damage_permyriad - /// - MainHandLocalManaLeechFromAnyDamagePermyriad = 8719, - - /// - /// off_hand_local_mana_leech_from_any_damage_permyriad - /// - OffHandLocalManaLeechFromAnyDamagePermyriad = 8720, - - /// - /// spell_damage_+%_if_have_crit_in_past_8_seconds - /// - SpellDamagePctIfHaveCritInPast8Seconds = 8721, - - /// - /// life_regeneration_rate_per_minute_%_while_using_flask - /// - LifeRegenerationRatePerMinutePctWhileUsingFlask = 8722, - - /// - /// physical_damage_+%_vs_ignited_enemies - /// - PhysicalDamagePctVsIgnitedEnemies = 8723, - - /// - /// fire_damage_+%_vs_bleeding_enemies - /// - FireDamagePctVsBleedingEnemies = 8724, - - /// - /// shattering_steel_fortify_on_hit_close_range - /// - ShatteringSteelFortifyOnHitCloseRange = 8725, - - /// - /// fortify_on_hit_close_range - /// - FortifyOnHitCloseRange = 8726, - - /// - /// is_scorched - /// - IsScorched = 8727, - - /// - /// is_frostburned - /// - IsFrostburned = 8728, - - /// - /// is_sapped - /// - IsSapped = 8729, - - /// - /// chance_to_scorch_% - /// - ChanceToScorchPct = 8730, - - /// - /// chance_to_inflict_frostburn_% - /// - ChanceToInflictFrostburnPct = 8731, - - /// - /// chance_to_inflict_sapped_% - /// - ChanceToInflictSappedPct = 8732, - - /// - /// never_freeze_or_chill - /// - NeverFreezeOrChill = 8733, - - /// - /// virtual_never_freeze - /// - VirtualNeverFreeze = 8734, - - /// - /// virtual_never_chill - /// - VirtualNeverChill = 8735, - - /// - /// sapped_damage_+%_final - /// - SappedDamagePctFinal = 8736, - - /// - /// ground_consecration_art_variation - /// - GroundConsecrationArtVariation = 8737, - - /// - /// additional_chain_chance_% - /// - AdditionalChainChancePct = 8738, - - /// - /// storm_brand_additional_chain_chance_% - /// - StormBrandAdditionalChainChancePct = 8739, - - /// - /// sigil_attached_target_fire_penetration_% - /// - SigilAttachedTargetFirePenetrationPct = 8740, - - /// - /// sigil_attached_target_lightning_penetration_% - /// - SigilAttachedTargetLightningPenetrationPct = 8741, - - /// - /// armageddon_brand_attached_target_fire_penetration_% - /// - ArmageddonBrandAttachedTargetFirePenetrationPct = 8742, - - /// - /// storm_brand_attached_target_lightning_penetration_% - /// - StormBrandAttachedTargetLightningPenetrationPct = 8743, - - /// - /// active_skill_minion_physical_damage_+%_final - /// - ActiveSkillMinionPhysicalDamagePctFinal = 8744, - - /// - /// hit_damage_+%_while_chilled - /// - HitDamagePctWhileChilled = 8745, - - /// - /// damage_over_time_+%_while_hindered - /// - DamageOverTimePctWhileHindered = 8746, - - /// - /// minimum_added_physical_damage_per_impaled_on_enemy - /// - MinimumAddedPhysicalDamagePerImpaledOnEnemy = 8747, - - /// - /// maximum_added_physical_damage_per_impaled_on_enemy - /// - MaximumAddedPhysicalDamagePerImpaledOnEnemy = 8748, - - /// - /// sigil_attached_target_damage_taken_+% - /// - SigilAttachedTargetDamageTakenPct = 8749, - - /// - /// every_1_second_nearby_enemies_withered_for_X_ms - /// - Every1SecondNearbyEnemiesWitheredForXMs = 8750, - - /// - /// current_impaled_stacks - /// - CurrentImpaledStacks = 8751, - - /// - /// every_4_seconds_freeze_chilled_non_unique_enemies_for_X_ms - /// - Every4SecondsFreezeChilledNonUniqueEnemiesForXMs = 8752, - - /// - /// every_4_seconds_33%_chance_freeze_chilled_unique_enemies_for_X_ms - /// - Every4Seconds33PctChanceFreezeChilledUniqueEnemiesForXMs = 8753, - - /// - /// banner_skills_reserve_no_mana - /// - BannerSkillsReserveNoMana = 8754, - - /// - /// you_and_nearby_allies_armour_+_if_have_impaled_recently - /// - YouAndNearbyAlliesArmourIfHaveImpaledRecently = 8755, - - /// - /// frost_fury_damage_+% - /// - FrostFuryDamagePct = 8756, - - /// - /// storm_brand_damage_+% - /// - StormBrandDamagePct = 8757, - - /// - /// armageddon_brand_damage_+% - /// - ArmageddonBrandDamagePct = 8758, - - /// - /// armageddon_brand_repeat_frequency_+% - /// - ArmageddonBrandRepeatFrequencyPct = 8759, - - /// - /// shattering_steel_damage_+% - /// - ShatteringSteelDamagePct = 8760, - - /// - /// shattering_steel_number_of_additional_projectiles - /// - ShatteringSteelNumberOfAdditionalProjectiles = 8761, - - /// - /// lancing_steel_damage_+% - /// - LancingSteelDamagePct = 8762, - - /// - /// frost_bolt_nova_cooldown_speed_+% - /// - FrostBoltNovaCooldownSpeedPct = 8763, - - /// - /// ice_spear_number_of_additional_projectiles - /// - IceSpearNumberOfAdditionalProjectiles = 8764, - - /// - /// virtual_cannot_gain_souls - /// - VirtualCannotGainSouls = 8765, - - /// - /// has_soul_gain_prevention - /// - HasSoulGainPrevention = 8766, - - /// - /// rare_or_unique_monster_dropped_item_rarity_+% - /// - RareOrUniqueMonsterDroppedItemRarityPct = 8767, - - /// - /// critical_strike_multiplier_+_if_enemy_shattered_recently - /// - CriticalStrikeMultiplierIfEnemyShatteredRecently = 8768, - - /// - /// virtual_chill_minimum_slow_% - /// - VirtualChillMinimumSlowPct = 8769, - - /// - /// chill_minimum_slow_%_from_skill - /// - ChillMinimumSlowPctFromSkill = 8770, - - /// - /// ice_nova_chill_minimum_slow_% - /// - IceNovaChillMinimumSlowPct = 8771, - - /// - /// physical_damage_+%_final_for_herald_minion - /// - PhysicalDamagePctFinalForHeraldMinion = 8772, - - /// - /// on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage - /// - OnPlantingBannerYouAndNearbyAlliesRecoverPermyriadMaximumLifePerStage = 8773, - - /// - /// on_casting_banner_recover_%_of_planted_banner_stages - /// - OnCastingBannerRecoverPctOfPlantedBannerStages = 8774, - - /// - /// display_map_mission_id - /// - DisplayMapMissionId = 8775, - - /// - /// distance_before_form_change_+% - /// - DistanceBeforeFormChangePct = 8776, - - /// - /// ice_spear_distance_before_form_change_+% - /// - IceSpearDistanceBeforeFormChangePct = 8777, - - /// - /// fixed_skill_effect_duration - /// - FixedSkillEffectDuration = 8778, - - /// - /// support_chilling_areas_also_grant_cold_damage_taken_per_minute_+% - /// - SupportChillingAreasAlsoGrantColdDamageTakenPerMinutePct = 8779, - - /// - /// support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount - /// - SupportChillingAreasAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8780, - - /// - /// cold_damage_taken_+%_equal_to_chill_slow_amount - /// - ColdDamageTakenPctEqualToChillSlowAmount = 8781, - - /// - /// display_skill_fixed_duration_buff - /// - DisplaySkillFixedDurationBuff = 8782, - - /// - /// attack_damage_+%_per_explicit_map_mod_affecting_area - /// - AttackDamagePctPerExplicitMapModAffectingArea = 8783, - - /// - /// virtual_immune_to_poison - /// - VirtualImmuneToPoison = 8784, - - /// - /// local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance - /// - LocalDisplayTriggerLevel18SummonSpectralWolfOnKill10PctChance = 8785, - - /// - /// dread_banner_aura_effect_+% - /// - DreadBannerAuraEffectPct = 8786, - - /// - /// war_banner_aura_effect_+% - /// - WarBannerAuraEffectPct = 8787, - - /// - /// map_owner_sulphite_gained_+% - /// - MapOwnerSulphiteGainedPct = 8788, - - /// - /// map_shaper_rare_chance_+% - /// - MapShaperRareChancePct = 8789, - - /// - /// map_elder_rare_chance_+% - /// - MapElderRareChancePct = 8790, - - /// - /// map_additional_red_beasts - /// - MapAdditionalRedBeasts = 8791, - - /// - /// focus_cooldown_speed_+% - /// - FocusCooldownSpeedPct = 8792, - - /// - /// map_betrayal_safehouse_data - /// - MapBetrayalSafehouseData = 8793, - - /// - /// lancing_steel_primary_proj_pierce_num - /// - LancingSteelPrimaryProjPierceNum = 8794, - - /// - /// primary_projectile_display_targets_to_pierce - /// - PrimaryProjectileDisplayTargetsToPierce = 8795, - - /// - /// primary_projectile_base_targets_to_pierce_+ - /// - PrimaryProjectileBaseTargetsToPierce = 8796, - - /// - /// lancing_steel_impale_chance_% - /// - LancingSteelImpaleChancePct = 8797, - - /// - /// primary_projectile_impale_chance_% - /// - PrimaryProjectileImpaleChancePct = 8798, - - /// - /// decelerating_projectile_speed_variation_+% - /// - DeceleratingProjectileSpeedVariationPct = 8799, - - /// - /// map_atlas_information - /// - MapAtlasInformation = 8800, - - /// - /// is_capturable_monster - /// - IsCapturableMonster = 8801, - - /// - /// npc_master_damage_+%_final_vs_capturable_monsters - /// - NpcMasterDamagePctFinalVsCapturableMonsters = 8802, - - /// - /// npc_master_damage_+%_final - /// - NpcMasterDamagePctFinal = 8803, - - /// - /// can_be_culled - /// - CanBeCulled = 8804, - - /// - /// map_map_item_drop_chance_+% - /// - MapMapItemDropChancePct = 8805, - - /// - /// map_unique_item_drop_chance_+% - /// - MapUniqueItemDropChancePct = 8806, - - /// - /// map_divination_card_drop_chance_+% - /// - MapDivinationCardDropChancePct = 8807, - - /// - /// sigil_recall_extend_base_skill_effect_duration - /// - SigilRecallExtendBaseSkillEffectDuration = 8808, - - /// - /// sigil_recall_extend_base_secondary_skill_effect_duration - /// - SigilRecallExtendBaseSecondarySkillEffectDuration = 8809, - - /// - /// map_num_terrain_failures - /// - MapNumTerrainFailures = 8810, - - /// - /// base_delve_darkness_damage_taken_per_minute - /// - BaseDelveDarknessDamageTakenPerMinute = 8811, - - /// - /// map_delve_flat_degeneration_per_minute - /// - MapDelveFlatDegenerationPerMinute = 8812, - - /// - /// arctic_breath_chilling_area_movement_velocity_+% - /// - ArcticBreathChillingAreaMovementVelocityPct = 8813, - - /// - /// chilling_area_movement_velocity_+% - /// - ChillingAreaMovementVelocityPct = 8814, - - /// - /// created_slipstream_action_speed_+% - /// - CreatedSlipstreamActionSpeedPct = 8815, - - /// - /// frost_fury_additional_max_number_of_stages - /// - FrostFuryAdditionalMaxNumberOfStages = 8816, - - /// - /// frost_fury_area_of_effect_+%_per_stage - /// - FrostFuryAreaOfEffectPctPerStage = 8817, - - /// - /// area_of_effect_+%_per_frost_fury_stage - /// - AreaOfEffectPctPerFrostFuryStage = 8818, - - /// - /// local_chaos_penetration_% - /// - LocalChaosPenetrationPct = 8819, - - /// - /// main_hand_chaos_penetration_% - /// - MainHandChaosPenetrationPct = 8820, - - /// - /// off_hand_chaos_penetration_% - /// - OffHandChaosPenetrationPct = 8821, - - /// - /// monster_gets_item_stats - /// - MonsterGetsItemStats = 8822, - - /// - /// map_einhar_intro_mission - /// - MapEinharIntroMission = 8823, - - /// - /// hierophant_passive_damage_+%_final_per_totem - /// - HierophantPassiveDamagePctFinalPerTotem = 8824, - - /// - /// avoid_scorch_% - /// - AvoidScorchPct = 8825, - - /// - /// base_avoid_scorch_% - /// - BaseAvoidScorchPct = 8826, - - /// - /// immune_to_scorch - /// - ImmuneToScorch = 8827, - - /// - /// cannot_be_scorched - /// - CannotBeScorched = 8828, - - /// - /// avoid_frostburn_% - /// - AvoidFrostburnPct = 8829, - - /// - /// base_avoid_frostburn_% - /// - BaseAvoidFrostburnPct = 8830, - - /// - /// immune_to_frostburn - /// - ImmuneToFrostburn = 8831, - - /// - /// cannot_be_frostburned - /// - CannotBeFrostburned = 8832, - - /// - /// avoid_sap_% - /// - AvoidSapPct = 8833, - - /// - /// base_avoid_sap_% - /// - BaseAvoidSapPct = 8834, - - /// - /// immune_to_sap - /// - ImmuneToSap = 8835, - - /// - /// cannot_be_sapped - /// - CannotBeSapped = 8836, - - /// - /// virtual_scorch_duration_+% - /// - VirtualScorchDurationPct = 8837, - - /// - /// virtual_scorch_effect_+% - /// - VirtualScorchEffectPct = 8838, - - /// - /// virtual_frostburn_duration_+% - /// - VirtualFrostburnDurationPct = 8839, - - /// - /// virtual_frostburn_effect_+% - /// - VirtualFrostburnEffectPct = 8840, - - /// - /// virtual_sap_duration_+% - /// - VirtualSapDurationPct = 8841, - - /// - /// virtual_sap_effect_+% - /// - VirtualSapEffectPct = 8842, - - /// - /// map_atlas_mission - /// - MapAtlasMission = 8843, - - /// - /// force_reflected_damage_flag - /// - ForceReflectedDamageFlag = 8844, - - /// - /// virtual_damage_+%_vs_abyssal_monsters - /// - VirtualDamagePctVsAbyssalMonsters = 8845, - - /// - /// attack_physical_damage_%_to_add_as_cold - /// - AttackPhysicalDamagePctToAddAsCold = 8846, - - /// - /// virtual_physical_damage_can_scorch - /// - VirtualPhysicalDamageCanScorch = 8847, - - /// - /// virtual_cold_damage_can_scorch - /// - VirtualColdDamageCanScorch = 8848, - - /// - /// virtual_lightning_damage_can_scorch - /// - VirtualLightningDamageCanScorch = 8849, - - /// - /// virtual_chaos_damage_can_scorch - /// - VirtualChaosDamageCanScorch = 8850, - - /// - /// virtual_physical_damage_can_inflict_brittle - /// - VirtualPhysicalDamageCanInflictBrittle = 8851, - - /// - /// virtual_fire_damage_can_inflict_brittle - /// - VirtualFireDamageCanInflictBrittle = 8852, - - /// - /// virtual_lightning_damage_can_inflict_brittle - /// - VirtualLightningDamageCanInflictBrittle = 8853, - - /// - /// virtual_chaos_damage_can_inflict_brittle - /// - VirtualChaosDamageCanInflictBrittle = 8854, - - /// - /// virtual_physical_damage_can_sap - /// - VirtualPhysicalDamageCanSap = 8855, - - /// - /// virtual_fire_damage_can_sap - /// - VirtualFireDamageCanSap = 8856, - - /// - /// virtual_cold_damage_can_sap - /// - VirtualColdDamageCanSap = 8857, - - /// - /// virtual_chaos_damage_can_sap - /// - VirtualChaosDamageCanSap = 8858, - - /// - /// virtual_main_hand_accuracy_rating_+% - /// - VirtualMainHandAccuracyRatingPct = 8859, - - /// - /// virtual_off_hand_accuracy_rating_+% - /// - VirtualOffHandAccuracyRatingPct = 8860, - - /// - /// non_ghost_minion_duration_+% - /// - NonGhostMinionDurationPct = 8861, - - /// - /// keystone_runebinder - /// - KeystoneRunebinder = 8862, - - /// - /// brands_per_target_limit - /// - BrandsPerTargetLimit = 8863, - - /// - /// play_debeons_dirge_sounds - /// - PlayDebeonsDirgeSounds = 8864, - - /// - /// virtual_total_main_hand_impale_on_hit_%_chance - /// - VirtualTotalMainHandImpaleOnHitPctChance = 8865, - - /// - /// virtual_total_off_hand_impale_on_hit_%_chance - /// - VirtualTotalOffHandImpaleOnHitPctChance = 8866, - - /// - /// mirage_archer_art_variation - /// - MirageArcherArtVariation = 8867, - - /// - /// spell_rapid_fire_count - /// - SpellRapidFireCount = 8868, - - /// - /// map_synthesis_league - /// - MapSynthesisLeague = 8869, - - /// - /// mana_regeneration_rate_per_minute_while_on_consecrated_ground - /// - ManaRegenerationRatePerMinuteWhileOnConsecratedGround = 8870, - - /// - /// energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground - /// - EnergyShieldRegenerationRatePerMinuteWhileOnConsecratedGround = 8871, - - /// - /// consecrated_ground_additional_physical_damage_reduction_% - /// - ConsecratedGroundAdditionalPhysicalDamageReductionPct = 8872, - - /// - /// consecrated_ground_immune_to_status_ailments - /// - ConsecratedGroundImmuneToStatusAilments = 8873, - - /// - /// consecrated_ground_enemy_damage_taken_+% - /// - ConsecratedGroundEnemyDamageTakenPct = 8874, - - /// - /// consecrated_ground_while_stationary_radius - /// - ConsecratedGroundWhileStationaryRadius = 8875, - - /// - /// consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds - /// - ConsecratedGroundRadiusOnHitEnemyMagicRareUniqueEvery3Seconds = 8876, - - /// - /// consecrated_ground_on_hit_cooldown - /// - ConsecratedGroundOnHitCooldown = 8877, - - /// - /// chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds - /// - ChanceToDealDoubleDamageFor3SecondsOnSpellCastEvery9Seconds = 8878, - - /// - /// always_deal_double_damage - /// - AlwaysDealDoubleDamage = 8879, - - /// - /// double_damage_on_spell_cast_cooldown - /// - DoubleDamageOnSpellCastCooldown = 8880, - - /// - /// attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds - /// - AttackAndCastSpeedPctFor3SecondsOnAttackEvery9Seconds = 8881, - - /// - /// attack_and_cast_speed_on_attack_cooldown - /// - AttackAndCastSpeedOnAttackCooldown = 8882, - - /// - /// your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area - /// - YourConsecratedGroundEffectLingersForMsAfterLeavingTheArea = 8883, - - /// - /// spell_repeat_count_target_search_range - /// - SpellRepeatCountTargetSearchRange = 8884, - - /// - /// arc_initial_distance - /// - ArcInitialDistance = 8885, - - /// - /// arc_chain_distance - /// - ArcChainDistance = 8886, - - /// - /// virtual_maximum_energy_shield_leech_rate_permyriad_per_minute - /// - VirtualMaximumEnergyShieldLeechRatePermyriadPerMinute = 8887, - - /// - /// maximum_energy_shield_leech_rate_%_per_minute - /// - MaximumEnergyShieldLeechRatePctPerMinute = 8888, - - /// - /// base_energy_shield_leech_from_elemental_damage_permyriad - /// - BaseEnergyShieldLeechFromElementalDamagePermyriad = 8889, - - /// - /// virtual_energy_shield_leech_from_cold_damage_permyriad - /// - VirtualEnergyShieldLeechFromColdDamagePermyriad = 8890, - - /// - /// base_energy_shield_leech_from_cold_damage_permyriad - /// - BaseEnergyShieldLeechFromColdDamagePermyriad = 8891, - - /// - /// virtual_energy_shield_leech_from_lightning_damage_permyriad - /// - VirtualEnergyShieldLeechFromLightningDamagePermyriad = 8892, - - /// - /// base_energy_shield_leech_from_lightning_damage_permyriad - /// - BaseEnergyShieldLeechFromLightningDamagePermyriad = 8893, - - /// - /// virtual_energy_shield_leech_from_fire_damage_permyriad - /// - VirtualEnergyShieldLeechFromFireDamagePermyriad = 8894, - - /// - /// base_energy_shield_leech_from_fire_damage_permyriad - /// - BaseEnergyShieldLeechFromFireDamagePermyriad = 8895, - - /// - /// virtual_energy_shield_leech_from_spell_damage_permyriad - /// - VirtualEnergyShieldLeechFromSpellDamagePermyriad = 8896, - - /// - /// base_energy_shield_leech_from_spell_damage_permyriad - /// - BaseEnergyShieldLeechFromSpellDamagePermyriad = 8897, - - /// - /// Cannot be Energy Shield-Leeched - /// - CannotHaveEnergyShieldLeechedFrom = 8898, - - /// - /// cannot_leech_energy_shield - /// - CannotLeechEnergyShield = 8899, - - /// - /// resist_energy_shield_leech_% - /// - ResistEnergyShieldLeechPct = 8900, - - /// - /// base_energy_shield_leech_from_physical_damage_permyriad - /// - BaseEnergyShieldLeechFromPhysicalDamagePermyriad = 8901, - - /// - /// base_energy_shield_leech_from_chaos_damage_permyriad - /// - BaseEnergyShieldLeechFromChaosDamagePermyriad = 8902, - - /// - /// energy_shield_leech_on_any_damage_when_hit_permyriad - /// - EnergyShieldLeechOnAnyDamageWhenHitPermyriad = 8903, - - /// - /// virtual_energy_shield_leech_speed_+% - /// - VirtualEnergyShieldLeechSpeedPct = 8904, - - /// - /// Energy Shield Leech speed increase - /// - EnergyShieldLeechSpeedPct = 8905, - - /// - /// map_monsters_energy_shield_leech_resistance_% - /// - MapMonstersEnergyShieldLeechResistancePct = 8906, - - /// - /// virtual_damage_+%_while_dead - /// - VirtualDamagePctWhileDead = 8907, - - /// - /// virtual_cast_on_death_damage_+%_final_while_dead - /// - VirtualCastOnDeathDamagePctFinalWhileDead = 8908, - - /// - /// virtual_area_of_effect_+%_while_dead - /// - VirtualAreaOfEffectPctWhileDead = 8909, - - /// - /// dark_ritual_damage_+%_final_per_curse_applied - /// - DarkRitualDamagePctFinalPerCurseApplied = 8910, - - /// - /// apply_linked_curses_with_dark_ritual - /// - ApplyLinkedCursesWithDarkRitual = 8911, - - /// - /// support_storm_barrier_damage_+%_final - /// - SupportStormBarrierDamagePctFinal = 8912, - - /// - /// support_storm_barrier_fire_damage_taken_when_hit_+%_final - /// - SupportStormBarrierFireDamageTakenWhenHitPctFinal = 8913, - - /// - /// support_storm_barrier_cold_damage_taken_when_hit_+%_final - /// - SupportStormBarrierColdDamageTakenWhenHitPctFinal = 8914, - - /// - /// support_storm_barrier_chaos_damage_taken_when_hit_+%_final - /// - SupportStormBarrierChaosDamageTakenWhenHitPctFinal = 8915, - - /// - /// support_storm_barrier_skill_type_damage_taken_when_hit_+%_final - /// - SupportStormBarrierSkillTypeDamageTakenWhenHitPctFinal = 8916, - - /// - /// support_storm_barrier_damage_buff_time_threshold_ms - /// - SupportStormBarrierDamageBuffTimeThresholdMs = 8917, - - /// - /// support_storm_barrier_damage_buff_base_duration_ms - /// - SupportStormBarrierDamageBuffBaseDurationMs = 8918, - - /// - /// support_storm_barrier_damage_buff_duration_ms - /// - SupportStormBarrierDamageBuffDurationMs = 8919, - - /// - /// support_storm_barrier_skill_type_damage_+%_final - /// - SupportStormBarrierSkillTypeDamagePctFinal = 8920, - - /// - /// support_storm_barrier_fire_damage_+%_final - /// - SupportStormBarrierFireDamagePctFinal = 8921, - - /// - /// support_storm_barrier_cold_damage_+%_final - /// - SupportStormBarrierColdDamagePctFinal = 8922, - - /// - /// support_storm_barrier_lightning_damage_+%_final - /// - SupportStormBarrierLightningDamagePctFinal = 8923, - - /// - /// support_storm_barrier_chaos_damage_+%_final - /// - SupportStormBarrierChaosDamagePctFinal = 8924, - - /// - /// sanctify_wave_damage_+%_final - /// - SanctifyWaveDamagePctFinal = 8925, - - /// - /// additional_physical_damage_reduction_%_while_channelling - /// - AdditionalPhysicalDamageReductionPctWhileChannelling = 8926, - - /// - /// attack_and_cast_speed_+%_with_channelling_skills - /// - AttackAndCastSpeedPctWithChannellingSkills = 8927, - - /// - /// avoid_stun_%_while_channelling - /// - AvoidStunPctWhileChannelling = 8928, - - /// - /// skill_mana_cost_+_with_channelling_skills - /// - SkillManaCostWithChannellingSkills = 8929, - - /// - /// local_display_trigger_socketed_curses_on_casting_curse_%_chance - /// - LocalDisplayTriggerSocketedCursesOnCastingCursePctChance = 8930, - - /// - /// energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy - /// - EnergyShieldLeechFromSpellDamagePermyriadPerCurseOnEnemy = 8931, - - /// - /// damage_+%_on_full_energy_shield - /// - DamagePctOnFullEnergyShield = 8932, - - /// - /// attack_and_cast_speed_+%_while_leeching_energy_shield - /// - AttackAndCastSpeedPctWhileLeechingEnergyShield = 8933, - - /// - /// support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final - /// - SupportEnergyShieldLeechDamagePctWhileLeechingEnergyShieldFinal = 8934, - - /// - /// Energy Shield Leech from any Damage - /// - EnergyShieldLeechFromAnyDamagePermyriad = 8935, - - /// - /// support_energy_shield_leech_damage_+%_on_full_energy_shield_final - /// - SupportEnergyShieldLeechDamagePctOnFullEnergyShieldFinal = 8936, - - /// - /// virtual_energy_shield_leech_from_physical_damage_permyriad - /// - VirtualEnergyShieldLeechFromPhysicalDamagePermyriad = 8937, - - /// - /// virtual_energy_shield_leech_from_chaos_damage_permyriad - /// - VirtualEnergyShieldLeechFromChaosDamagePermyriad = 8938, - - /// - /// mortar_projectile_scale_animation_speed_instead_of_projectile_speed - /// - MortarProjectileScaleAnimationSpeedInsteadOfProjectileSpeed = 8939, - - /// - /// create_consecrated_ground_on_kill_% - /// - CreateConsecratedGroundOnKillPct = 8940, - - /// - /// affected_by_spell_damage_aura - /// - AffectedBySpellDamageAura = 8941, - - /// - /// spell_damage_aura_spell_damage_+%_final - /// - SpellDamageAuraSpellDamagePctFinal = 8942, - - /// - /// hatred_aura_cold_damage_+%_final - /// - HatredAuraColdDamagePctFinal = 8943, - - /// - /// storm_burst_new_damage_+%_final_per_remaining_teleport_zap - /// - StormBurstNewDamagePctFinalPerRemainingTeleportZap = 8944, - - /// - /// divine_tempest_base_number_of_nearby_enemies_to_zap - /// - DivineTempestBaseNumberOfNearbyEnemiesToZap = 8945, - - /// - /// divine_tempest_hit_damage_+%_final_per_stage - /// - DivineTempestHitDamagePctFinalPerStage = 8946, - - /// - /// divine_tempest_current_number_of_stages - /// - DivineTempestCurrentNumberOfStages = 8947, - - /// - /// delirium_aura_damage_over_time_+%_final - /// - DeliriumAuraDamageOverTimePctFinal = 8948, - - /// - /// affected_by_delirium - /// - AffectedByDelirium = 8949, - - /// - /// support_rapid_fire_repeat_count - /// - SupportRapidFireRepeatCount = 8950, - - /// - /// is_rogue_exile - /// - IsRogueExile = 8951, - - /// - /// cast_speed_for_elemental_skills_+% - /// - CastSpeedForElementalSkillsPct = 8952, - - /// - /// fire_spell_physical_damage_%_to_convert_to_fire - /// - FireSpellPhysicalDamagePctToConvertToFire = 8953, - - /// - /// lightning_spell_physical_damage_%_to_convert_to_lightning - /// - LightningSpellPhysicalDamagePctToConvertToLightning = 8954, - - /// - /// cold_spell_physical_damage_%_to_convert_to_cold - /// - ColdSpellPhysicalDamagePctToConvertToCold = 8955, - - /// - /// spell_physical_damage_%_to_convert_to_fire - /// - SpellPhysicalDamagePctToConvertToFire = 8956, - - /// - /// energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad - /// - EnergyShieldLeechIfHitIsAtLeast25PctFireDamagePermyriad = 8957, - - /// - /// divine_tempest_stage_on_hitting_normal_magic_%_chance - /// - DivineTempestStageOnHittingNormalMagicPctChance = 8958, - - /// - /// divine_tempest_stage_on_hitting_rare_unique - /// - DivineTempestStageOnHittingRareUnique = 8959, - - /// - /// consecrated_ground_immune_to_curses - /// - ConsecratedGroundImmuneToCurses = 8960, - - /// - /// map_monster_chance_to_drop_item_creation_template_index - /// - MapMonsterChanceToDropItemCreationTemplateIndex = 8961, - - /// - /// support_rapid_fire_damage_+%_final - /// - SupportRapidFireDamagePctFinal = 8962, - - /// - /// monster_chance_to_drop_item_creation_template_index - /// - MonsterChanceToDropItemCreationTemplateIndex = 8963, - - /// - /// map_synthesised_monster_chance_to_drop_item_creation_template_index - /// - MapSynthesisedMonsterChanceToDropItemCreationTemplateIndex = 8964, - - /// - /// map_synthesised_rare_monster_chance_to_drop_item_creation_template_index - /// - MapSynthesisedRareMonsterChanceToDropItemCreationTemplateIndex = 8965, - - /// - /// map_synthesised_magic_monster_chance_to_drop_item_creation_template_index - /// - MapSynthesisedMagicMonsterChanceToDropItemCreationTemplateIndex = 8966, - - /// - /// curse_skill_effect_duration_+% - /// - CurseSkillEffectDurationPct = 8967, - - /// - /// dark_ritual_skill_effect_duration_+%_per_curse_applied - /// - DarkRitualSkillEffectDurationPctPerCurseApplied = 8968, - - /// - /// map_spawn_additional_chests_or_clusters_index - /// - MapSpawnAdditionalChestsOrClustersIndex = 8969, - - /// - /// map_duplicate_x_rare_monsters - /// - MapDuplicateXRareMonsters = 8970, - - /// - /// map_additional_rare_in_rare_pack_%_chance - /// - MapAdditionalRareInRarePackPctChance = 8971, - - /// - /// map_upgrade_pack_to_magic_%_chance - /// - MapUpgradePackToMagicPctChance = 8972, - - /// - /// map_upgrade_pack_to_rare_%_chance - /// - MapUpgradePackToRarePctChance = 8973, - - /// - /// elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped - /// - ElementalDamagePctToAddAsChaosPerShaperItemEquipped = 8974, - - /// - /// hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped - /// - HitsIgnoreEnemyChaosResistanceIfAllShaperItemsEquipped = 8975, - - /// - /// virtual_hits_ignore_enemy_chaos_resistance - /// - VirtualHitsIgnoreEnemyChaosResistance = 8976, - - /// - /// delirium_aura_effect_+% - /// - DeliriumAuraEffectPct = 8977, - - /// - /// delirium_mana_reservation_+% - /// - DeliriumManaReservationPct = 8978, - - /// - /// delirium_reserves_no_mana - /// - DeliriumReservesNoMana = 8979, - - /// - /// display_linked_curse_effect_+% - /// - DisplayLinkedCurseEffectPct = 8980, - - /// - /// local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius - /// - LocalUniqueJewelBlightAppliesWitherForMsWith40IntInRadius = 8981, - - /// - /// support_storm_barrier_fire_damage_+%_final_to_apply - /// - SupportStormBarrierFireDamagePctFinalToApply = 8982, - - /// - /// support_storm_barrier_cold_damage_+%_final_to_apply - /// - SupportStormBarrierColdDamagePctFinalToApply = 8983, - - /// - /// support_storm_barrier_lightning_damage_+%_final_to_apply - /// - SupportStormBarrierLightningDamagePctFinalToApply = 8984, - - /// - /// support_storm_barrier_chaos_damage_+%_final_to_apply - /// - SupportStormBarrierChaosDamagePctFinalToApply = 8985, - - /// - /// support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling - /// - SupportStormBarrierFireDamageTakenPctFinalFromHitsWhileChannelling = 8986, - - /// - /// support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling - /// - SupportStormBarrierColdDamageTakenPctFinalFromHitsWhileChannelling = 8987, - - /// - /// support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling - /// - SupportStormBarrierLightningDamageTakenPctFinalFromHitsWhileChannelling = 8988, - - /// - /// support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling - /// - SupportStormBarrierChaosDamageTakenPctFinalFromHitsWhileChannelling = 8989, - - /// - /// damage_taken_per_250_strength_+% - /// - DamageTakenPer250StrengthPct = 8990, - - /// - /// damage_taken_per_250_dexterity_+% - /// - DamageTakenPer250DexterityPct = 8991, - - /// - /// damage_taken_per_250_intelligence_+% - /// - DamageTakenPer250IntelligencePct = 8992, - - /// - /// enemies_explode_for_%_life_as_physical_damage - /// - EnemiesExplodeForPctLifeAsPhysicalDamage = 8993, - - /// - /// cold_damage_taken_+ - /// - ColdDamageTaken = 8994, - - /// - /// lightning_damage_taken_+ - /// - LightningDamageTaken = 8995, - - /// - /// gain_power_or_frenzy_charge_for_each_second_channeling - /// - GainPowerOrFrenzyChargeForEachSecondChanneling = 8996, - - /// - /// chance_to_evade_%_while_you_have_energy_shield - /// - ChanceToEvadePctWhileYouHaveEnergyShield = 8997, - - /// - /// spell_dodge_while_you_have_energy_shield_+% - /// - SpellDodgeWhileYouHaveEnergyShieldPct = 8998, - - /// - /// ghost_dance_current_stacks - /// - GhostDanceCurrentStacks = 8999, - - /// - /// ghost_dance_max_stacks - /// - GhostDanceMaxStacks = 9000, - - /// - /// damage_taken_per_ghost_dance_stack_+% - /// - DamageTakenPerGhostDanceStackPct = 9001, - - /// - /// attack_and_cast_speed_per_ghost_dance_stack_+% - /// - AttackAndCastSpeedPerGhostDanceStackPct = 9002, - - /// - /// cannot_be_stunned_if_you_have_ghost_dance - /// - CannotBeStunnedIfYouHaveGhostDance = 9003, - - /// - /// ghost_dance_restore_%_evasion_as_energy_shield_when_hit - /// - GhostDanceRestorePctEvasionAsEnergyShieldWhenHit = 9004, - - /// - /// cold_damage_+%_per_cold_resistance_above_75 - /// - ColdDamagePctPerColdResistanceAbove75 = 9005, - - /// - /// lightning_damage_+%_per_lightning_resistance_above_75 - /// - LightningDamagePctPerLightningResistanceAbove75 = 9006, - - /// - /// tertiary_skill_effect_duration - /// - TertiarySkillEffectDuration = 9007, - - /// - /// base_tertiary_skill_effect_duration - /// - BaseTertiarySkillEffectDuration = 9008, - - /// - /// tertiary_skill_effect_duration_pluspercent - /// - TertiarySkillEffectDurationPluspercent = 9009, - - /// - /// support_spell_boost_area_damage_+%_final_per_charge - /// - SupportSpellBoostAreaDamagePctFinalPerCharge = 9010, - - /// - /// support_spell_boost_area_of_effect_+%_final_per_charge - /// - SupportSpellBoostAreaOfEffectPctFinalPerCharge = 9011, - - /// - /// support_spell_boost_skill_visual_scale_+%_per_charge - /// - SupportSpellBoostSkillVisualScalePctPerCharge = 9012, - - /// - /// area_damage_+%_final_from_spell_boost_charges - /// - AreaDamagePctFinalFromSpellBoostCharges = 9013, - - /// - /// map_synthesised_rare_monster_additional_currency_item_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalCurrencyItemDropChancePct = 9014, - - /// - /// map_synthesised_magic_monster_additional_currency_item_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalCurrencyItemDropChancePct = 9015, - - /// - /// map_synthesised_monster_additional_currency_item_drop_chance_% - /// - MapSynthesisedMonsterAdditionalCurrencyItemDropChancePct = 9016, - - /// - /// map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalQualityCurrencyItemDropChancePct = 9017, - - /// - /// map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalQualityCurrencyItemDropChancePct = 9018, - - /// - /// map_synthesised_monster_additional_quality_currency_item_drop_chance_% - /// - MapSynthesisedMonsterAdditionalQualityCurrencyItemDropChancePct = 9019, - - /// - /// map_synthesised_rare_monster_fractured_item_drop_chance_+% - /// - MapSynthesisedRareMonsterFracturedItemDropChancePct = 9020, - - /// - /// map_synthesised_magic_monster_fractured_item_drop_chance_+% - /// - MapSynthesisedMagicMonsterFracturedItemDropChancePct = 9021, - - /// - /// map_synthesised_monster_fractured_item_drop_chance_+% - /// - MapSynthesisedMonsterFracturedItemDropChancePct = 9022, - - /// - /// map_synthesised_rare_monster_items_drop_corrupted_% - /// - MapSynthesisedRareMonsterItemsDropCorruptedPct = 9023, - - /// - /// map_synthesised_magic_monster_items_drop_corrupted_% - /// - MapSynthesisedMagicMonsterItemsDropCorruptedPct = 9024, - - /// - /// map_synthesised_monster_items_drop_corrupted_% - /// - MapSynthesisedMonsterItemsDropCorruptedPct = 9025, - - /// - /// map_synthesised_rare_monster_map_drop_chance_+% - /// - MapSynthesisedRareMonsterMapDropChancePct = 9026, - - /// - /// map_synthesised_magic_monster_map_drop_chance_+% - /// - MapSynthesisedMagicMonsterMapDropChancePct = 9027, - - /// - /// map_synthesised_monster_map_drop_chance_+% - /// - MapSynthesisedMonsterMapDropChancePct = 9028, - - /// - /// map_synthesised_rare_monster_additional_divination_card_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalDivinationCardDropChancePct = 9029, - - /// - /// map_synthesised_magic_monster_additional_divination_card_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalDivinationCardDropChancePct = 9030, - - /// - /// map_synthesised_monster_additional_divination_card_drop_chance_% - /// - MapSynthesisedMonsterAdditionalDivinationCardDropChancePct = 9031, - - /// - /// map_synthesised_rare_monster_unique_item_drop_chance_+% - /// - MapSynthesisedRareMonsterUniqueItemDropChancePct = 9032, - - /// - /// map_synthesised_magic_monster_unique_item_drop_chance_+% - /// - MapSynthesisedMagicMonsterUniqueItemDropChancePct = 9033, - - /// - /// map_synthesised_monster_unique_item_drop_chance_+% - /// - MapSynthesisedMonsterUniqueItemDropChancePct = 9034, - - /// - /// map_synthesised_rare_monster_dropped_item_quantity_+% - /// - MapSynthesisedRareMonsterDroppedItemQuantityPct = 9035, - - /// - /// map_synthesised_magic_monster_dropped_item_quantity_+% - /// - MapSynthesisedMagicMonsterDroppedItemQuantityPct = 9036, - - /// - /// map_synthesised_monster_dropped_item_quantity_+% - /// - MapSynthesisedMonsterDroppedItemQuantityPct = 9037, - - /// - /// map_synthesised_rare_monster_dropped_item_rarity_+% - /// - MapSynthesisedRareMonsterDroppedItemRarityPct = 9038, - - /// - /// map_synthesised_magic_monster_dropped_item_rarity_+% - /// - MapSynthesisedMagicMonsterDroppedItemRarityPct = 9039, - - /// - /// map_synthesised_monster_dropped_item_rarity_+% - /// - MapSynthesisedMonsterDroppedItemRarityPct = 9040, - - /// - /// map_synthesised_rare_monster_slain_experience_+% - /// - MapSynthesisedRareMonsterSlainExperiencePct = 9041, - - /// - /// map_synthesised_magic_monster_slain_experience_+% - /// - MapSynthesisedMagicMonsterSlainExperiencePct = 9042, - - /// - /// map_synthesised_monster_slain_experience_+% - /// - MapSynthesisedMonsterSlainExperiencePct = 9043, - - /// - /// map_synthesised_rare_monster_additional_currency_shard_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalCurrencyShardDropChancePct = 9044, - - /// - /// map_synthesised_magic_monster_additional_currency_shard_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalCurrencyShardDropChancePct = 9045, - - /// - /// map_synthesised_monster_additional_currency_shard_drop_chance_% - /// - MapSynthesisedMonsterAdditionalCurrencyShardDropChancePct = 9046, - - /// - /// map_synthesised_rare_monster_additional_shaper_item_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalShaperItemDropChancePct = 9047, - - /// - /// map_synthesised_magic_monster_additional_shaper_item_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalShaperItemDropChancePct = 9048, - - /// - /// map_synthesised_monster_additional_shaper_item_drop_chance_% - /// - MapSynthesisedMonsterAdditionalShaperItemDropChancePct = 9049, - - /// - /// map_synthesised_rare_monster_additional_elder_item_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalElderItemDropChancePct = 9050, - - /// - /// map_synthesised_magic_monster_additional_elder_item_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalElderItemDropChancePct = 9051, - - /// - /// map_synthesised_monster_additional_elder_item_drop_chance_% - /// - MapSynthesisedMonsterAdditionalElderItemDropChancePct = 9052, - - /// - /// map_synthesised_rare_monster_additional_breach_splinter_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalBreachSplinterDropChancePct = 9053, - - /// - /// map_synthesised_magic_monster_additional_breach_splinter_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalBreachSplinterDropChancePct = 9054, - - /// - /// map_synthesised_monster_additional_breach_splinter_drop_chance_% - /// - MapSynthesisedMonsterAdditionalBreachSplinterDropChancePct = 9055, - - /// - /// map_synthesised_rare_monster_additional_fossil_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalFossilDropChancePct = 9056, - - /// - /// map_synthesised_magic_monster_additional_fossil_drop_chance_% - /// - MapSynthesisedMagicMonsterAdditionalFossilDropChancePct = 9057, - - /// - /// map_synthesised_monster_additional_fossil_drop_chance_% - /// - MapSynthesisedMonsterAdditionalFossilDropChancePct = 9058, - - /// - /// map_synthesised_rare_monster_additional_jewel_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalJewelDropChancePct = 9059, - - /// - /// map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalAbyssJewelDropChancePct = 9060, - - /// - /// map_synthesised_rare_monster_additional_map_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalMapDropChancePct = 9061, - - /// - /// map_synthesised_rare_monster_additional_talisman_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalTalismanDropChancePct = 9062, - - /// - /// map_synthesised_rare_monster_additional_essence_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalEssenceDropChancePct = 9063, - - /// - /// map_synthesised_rare_monster_resurrect_as_ally_chance_% - /// - MapSynthesisedRareMonsterResurrectAsAllyChancePct = 9064, - - /// - /// map_synthesised_rare_monster_gives_mods_to_killer_chance_% - /// - MapSynthesisedRareMonsterGivesModsToKillerChancePct = 9065, - - /// - /// map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalVaalFragmentDropChancePct = 9066, - - /// - /// map_synthesised_rare_monster_additional_veiled_item_drop_chance_% - /// - MapSynthesisedRareMonsterAdditionalVeiledItemDropChancePct = 9067, - - /// - /// visual_hit_effect_index_override - /// - VisualHitEffectIndexOverride = 9068, - - /// - /// support_anticipation_rapid_fire_count - /// - SupportAnticipationRapidFireCount = 9069, - - /// - /// support_anticipation_charge_gain_interval_ms - /// - SupportAnticipationChargeGainIntervalMs = 9070, - - /// - /// local_flask_area_of_consecrated_ground_+% - /// - LocalFlaskAreaOfConsecratedGroundPct = 9071, - - /// - /// local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground - /// - LocalFlaskDuringEffectEnemyDamageTakenPctOnConsecratedGround = 9072, - - /// - /// local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect - /// - LocalFlaskCriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPctDuringEffect = 9073, - - /// - /// map_duplicate_x_synthesised_rare_monsters - /// - MapDuplicateXSynthesisedRareMonsters = 9074, - - /// - /// map_additional_rare_in_synthesised_rare_pack_%_chance - /// - MapAdditionalRareInSynthesisedRarePackPctChance = 9075, - - /// - /// map_upgrade_synthesised_pack_to_magic_%_chance - /// - MapUpgradeSynthesisedPackToMagicPctChance = 9076, - - /// - /// map_upgrade_synthesised_pack_to_rare_%_chance - /// - MapUpgradeSynthesisedPackToRarePctChance = 9077, - - /// - /// support_spell_boost_damage_+%_final_at_max_charges - /// - SupportSpellBoostDamagePctFinalAtMaxCharges = 9078, - - /// - /// synthesis_map_global_mod_values_doubled_on_this_node - /// - SynthesisMapGlobalModValuesDoubledOnThisNode = 9079, - - /// - /// synthesis_map_global_mod_values_tripled_on_this_node - /// - SynthesisMapGlobalModValuesTripledOnThisNode = 9080, - - /// - /// synthesis_map_monster_slain_experience_+%_on_this_node - /// - SynthesisMapMonsterSlainExperiencePctOnThisNode = 9081, - - /// - /// synthesis_map_memories_do_not_collapse_on_this_node - /// - SynthesisMapMemoriesDoNotCollapseOnThisNode = 9082, - - /// - /// synthesis_map_nearby_memories_have_bonus - /// - SynthesisMapNearbyMemoriesHaveBonus = 9083, - - /// - /// base_cannot_leech_energy_shield - /// - BaseCannotLeechEnergyShield = 9084, - - /// - /// monster_resurrect_as_ally_chance_% - /// - MonsterResurrectAsAllyChancePct = 9085, - - /// - /// map_synthesis_spawn_additional_fungal_chest_clusters - /// - MapSynthesisSpawnAdditionalFungalChestClusters = 9086, - - /// - /// map_synthesis_spawn_additional_abyss_bone_chest_clusters - /// - MapSynthesisSpawnAdditionalAbyssBoneChestClusters = 9087, - - /// - /// map_synthesis_spawn_additional_wealthy_barrel_clusters - /// - MapSynthesisSpawnAdditionalWealthyBarrelClusters = 9088, - - /// - /// map_synthesis_spawn_additional_volatile_barrel_clusters - /// - MapSynthesisSpawnAdditionalVolatileBarrelClusters = 9089, - - /// - /// map_synthesis_spawn_additional_bloodworm_barrel_clusters - /// - MapSynthesisSpawnAdditionalBloodwormBarrelClusters = 9090, - - /// - /// map_synthesis_spawn_additional_parasite_barrel_clusters - /// - MapSynthesisSpawnAdditionalParasiteBarrelClusters = 9091, - - /// - /// divination_card_drop_chance_+% - /// - DivinationCardDropChancePct = 9092, - - /// - /// unique_item_drop_chance_+% - /// - UniqueItemDropChancePct = 9093, - - /// - /// map_item_drop_chance_+% - /// - MapItemDropChancePct = 9094, - - /// - /// monster_gives_mods_to_killer_chance_% - /// - MonsterGivesModsToKillerChancePct = 9095, - - /// - /// monster_items_drop_corrupted_% - /// - MonsterItemsDropCorruptedPct = 9096, - - /// - /// support_spell_boost_area_of_effect_+%_final - /// - SupportSpellBoostAreaOfEffectPctFinal = 9097, - - /// - /// support_spell_boost_charge_loss_interval_ms_while_moving - /// - SupportSpellBoostChargeLossIntervalMsWhileMoving = 9098, - - /// - /// local_socketed_minion_gem_quality_+ - /// - LocalSocketedMinionGemQuality = 9099, - - /// - /// local_socketed_fire_gem_quality_+ - /// - LocalSocketedFireGemQuality = 9100, - - /// - /// local_socketed_cold_gem_quality_+ - /// - LocalSocketedColdGemQuality = 9101, - - /// - /// local_socketed_lightning_gem_quality_+ - /// - LocalSocketedLightningGemQuality = 9102, - - /// - /// local_socketed_chaos_gem_quality_+ - /// - LocalSocketedChaosGemQuality = 9103, - - /// - /// local_socketed_melee_gem_quality_+ - /// - LocalSocketedMeleeGemQuality = 9104, - - /// - /// local_socketed_bow_gem_quality_+ - /// - LocalSocketedBowGemQuality = 9105, - - /// - /// local_socketed_aura_gem_quality_+ - /// - LocalSocketedAuraGemQuality = 9106, - - /// - /// local_socketed_strength_gem_quality_+ - /// - LocalSocketedStrengthGemQuality = 9107, - - /// - /// local_socketed_dexterity_gem_quality_+ - /// - LocalSocketedDexterityGemQuality = 9108, - - /// - /// local_socketed_intelligence_gem_quality_+ - /// - LocalSocketedIntelligenceGemQuality = 9109, - - /// - /// local_socketed_area_of_effect_gem_quality_+ - /// - LocalSocketedAreaOfEffectGemQuality = 9110, - - /// - /// local_socketed_projectile_gem_quality_+ - /// - LocalSocketedProjectileGemQuality = 9111, - - /// - /// divine_tempest_beam_width_+ - /// - DivineTempestBeamWidth = 9112, - - /// - /// local_display_grants_skill_malevolence_level - /// - LocalDisplayGrantsSkillMalevolenceLevel = 9113, - - /// - /// local_display_grants_skill_zealotry_level - /// - LocalDisplayGrantsSkillZealotryLevel = 9114, - - /// - /// zealotry_aura_effect_+% - /// - ZealotryAuraEffectPct = 9115, - - /// - /// zealotry_mana_reservation_+% - /// - ZealotryManaReservationPct = 9116, - - /// - /// zealotry_reserves_no_mana - /// - ZealotryReservesNoMana = 9117, - - /// - /// enemy_critical_strike_chance_+%_against_self - /// - EnemyCriticalStrikeChancePctAgainstSelf = 9118, - - /// - /// base_enemy_critical_strike_chance_+%_against_self - /// - BaseEnemyCriticalStrikeChancePctAgainstSelf = 9119, - - /// - /// enemy_additional_critical_strike_chance_against_self - /// - EnemyAdditionalCriticalStrikeChanceAgainstSelf = 9120, - - /// - /// attacker_has_defender_conditional_damage_stats - /// - AttackerHasDefenderConditionalDamageStats = 9121, - - /// - /// defender_has_attacker_conditional_damage_stats - /// - DefenderHasAttackerConditionalDamageStats = 9122, - - /// - /// enemy_+50%_critical_strike_chance_against_self - /// - Enemy50PctCriticalStrikeChanceAgainstSelf = 9123, - - /// - /// monster_fractured_item_drop_chance_+% - /// - MonsterFracturedItemDropChancePct = 9124, - - /// - /// delirium_skill_effect_duration_+% - /// - DeliriumSkillEffectDurationPct = 9125, - - /// - /// damage_+%_while_life_leeching - /// - DamagePctWhileLifeLeeching = 9126, - - /// - /// damage_+%_while_mana_leeching - /// - DamagePctWhileManaLeeching = 9127, - - /// - /// damage_+%_while_es_leeching - /// - DamagePctWhileEsLeeching = 9128, - - /// - /// local_display_nearby_enemies_cannot_crit - /// - LocalDisplayNearbyEnemiesCannotCrit = 9129, - - /// - /// local_display_nearby_allies_action_speed_cannot_be_reduced_below_base - /// - LocalDisplayNearbyAlliesActionSpeedCannotBeReducedBelowBase = 9130, - - /// - /// expanding_fire_cone_radius_limit - /// - ExpandingFireConeRadiusLimit = 9131, - - /// - /// enemy_critical_strike_chance_+%_against_self_20_times_value - /// - EnemyCriticalStrikeChancePctAgainstSelf20TimesValue = 9132, - - /// - /// divine_tempest_ailment_damage_+%_final_per_stage - /// - DivineTempestAilmentDamagePctFinalPerStage = 9133, - - /// - /// local_display_nearby_enemies_critical_strike_chance_+%_against_self - /// - LocalDisplayNearbyEnemiesCriticalStrikeChancePctAgainstSelf = 9134, - - /// - /// base_shock_proliferation_radius - /// - BaseShockProliferationRadius = 9135, - - /// - /// virtual_shock_proliferation_radius - /// - VirtualShockProliferationRadius = 9136, - - /// - /// enemy_shock_on_kill - /// - EnemyShockOnKill = 9137, - - /// - /// support_spell_rapid_fire_repeat_use_damage_+%_final - /// - SupportSpellRapidFireRepeatUseDamagePctFinal = 9138, - - /// - /// damage_+%_final_from_rapid_fire_support - /// - DamagePctFinalFromRapidFireSupport = 9139, - - /// - /// active_skill_base_area_length_+ - /// - ActiveSkillBaseAreaLength = 9140, - - /// - /// consecrated_ground_effect_+% - /// - ConsecratedGroundEffectPct = 9141, - - /// - /// fire_damage_with_spell_skills_+% - /// - FireDamageWithSpellSkillsPct = 9142, - - /// - /// cold_damage_with_spell_skills_+% - /// - ColdDamageWithSpellSkillsPct = 9143, - - /// - /// lightning_damage_with_spell_skills_+% - /// - LightningDamageWithSpellSkillsPct = 9144, - - /// - /// chaos_damage_with_spell_skills_+% - /// - ChaosDamageWithSpellSkillsPct = 9145, - - /// - /// physical_damage_with_spell_skills_+% - /// - PhysicalDamageWithSpellSkillsPct = 9146, - - /// - /// spell_critical_strike_multiplier_+_while_dual_wielding - /// - SpellCriticalStrikeMultiplierWhileDualWielding = 9147, - - /// - /// spell_critical_strike_multiplier_+_while_holding_shield - /// - SpellCriticalStrikeMultiplierWhileHoldingShield = 9148, - - /// - /// spell_critical_strike_multiplier_+_while_wielding_staff - /// - SpellCriticalStrikeMultiplierWhileWieldingStaff = 9149, - - /// - /// spell_critical_strike_chance_+%_while_dual_wielding - /// - SpellCriticalStrikeChancePctWhileDualWielding = 9150, - - /// - /// spell_critical_strike_chance_+%_while_holding_shield - /// - SpellCriticalStrikeChancePctWhileHoldingShield = 9151, - - /// - /// spell_critical_strike_chance_+%_while_wielding_staff - /// - SpellCriticalStrikeChancePctWhileWieldingStaff = 9152, - - /// - /// mana_regeneration_rate_per_minute_while_dual_wielding - /// - ManaRegenerationRatePerMinuteWhileDualWielding = 9153, - - /// - /// mana_regeneration_rate_per_minute_while_holding_shield - /// - ManaRegenerationRatePerMinuteWhileHoldingShield = 9154, - - /// - /// mana_regeneration_rate_per_minute_while_wielding_staff - /// - ManaRegenerationRatePerMinuteWhileWieldingStaff = 9155, - - /// - /// attack_damage_+%_per_500_maximum_mana - /// - AttackDamagePctPer500MaximumMana = 9156, - - /// - /// spell_damage_+%_per_500_maximum_mana - /// - SpellDamagePctPer500MaximumMana = 9157, - - /// - /// faster_poison_% - /// - FasterPoisonPct = 9158, - - /// - /// faster_bleed_% - /// - FasterBleedPct = 9159, - - /// - /// visual_hit_effect_elemental_is_holy - /// - VisualHitEffectElementalIsHoly = 9160, - - /// - /// mana_reservation_+%_per_250_total_attributes - /// - ManaReservationPctPer250TotalAttributes = 9161, - - /// - /// dominance_defences_+%_on_nearby_allies_per_100_strength - /// - DominanceDefencesPctOnNearbyAlliesPer100Strength = 9162, - - /// - /// dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity - /// - DominanceCriticalStrikeMultiplierOnNearbyAlliesPer100Dexterity = 9163, - - /// - /// dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence - /// - DominanceCastSpeedPctOnNearbyAlliesPer100Intelligence = 9164, - - /// - /// virtual_dominance_defences_+%_on_nearby_allies - /// - VirtualDominanceDefencesPctOnNearbyAllies = 9165, - - /// - /// virtual_dominance_critical_strike_multiplier_+%_on_nearby_allies - /// - VirtualDominanceCriticalStrikeMultiplierPctOnNearbyAllies = 9166, - - /// - /// virtual_dominance_cast_speed_+%_on_nearby_allies - /// - VirtualDominanceCastSpeedPctOnNearbyAllies = 9167, - - /// - /// critical_strike_chance_against_enemies_on_consecrated_ground_% - /// - CriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPct = 9168, - - /// - /// map_synthesis_spawn_additional_cursed_pot_clusters - /// - MapSynthesisSpawnAdditionalCursedPotClusters = 9169, - - /// - /// map_synthesis_spawn_additional_zombie_sarcophagi_chest - /// - MapSynthesisSpawnAdditionalZombieSarcophagiChest = 9170, - - /// - /// map_synthesis_spawn_additional_scroll_rack_chest - /// - MapSynthesisSpawnAdditionalScrollRackChest = 9171, - - /// - /// soulrend_damage_+% - /// - SoulrendDamagePct = 9172, - - /// - /// soulrend_number_of_additional_projectiles - /// - SoulrendNumberOfAdditionalProjectiles = 9173, - - /// - /// soulrend_applies_hinder_movement_speed_+% - /// - SoulrendAppliesHinderMovementSpeedPct = 9174, - - /// - /// dark_ritual_damage_+% - /// - DarkRitualDamagePct = 9175, - - /// - /// dark_ritual_area_of_effect_+% - /// - DarkRitualAreaOfEffectPct = 9176, - - /// - /// dark_ritual_linked_curse_effect_+% - /// - DarkRitualLinkedCurseEffectPct = 9177, - - /// - /// sanctify_damage_+% - /// - SanctifyDamagePct = 9178, - - /// - /// sanctify_area_of_effect_+%_when_targeting_consecrated_ground - /// - SanctifyAreaOfEffectPctWhenTargetingConsecratedGround = 9179, - - /// - /// storm_burst_additional_object_chance_% - /// - StormBurstAdditionalObjectChancePct = 9180, - - /// - /// virtual_storm_burst_additional_object_chance_% - /// - VirtualStormBurstAdditionalObjectChancePct = 9181, - - /// - /// divine_tempest_damage_+% - /// - DivineTempestDamagePct = 9182, - - /// - /// divine_tempest_beam_width_+% - /// - DivineTempestBeamWidthPct = 9183, - - /// - /// purge_damage_+% - /// - PurgeDamagePct = 9184, - - /// - /// purge_duration_+% - /// - PurgeDurationPct = 9185, - - /// - /// purge_additional_enemy_resistance_% - /// - PurgeAdditionalEnemyResistancePct = 9186, - - /// - /// virtual_divine_tempest_number_of_nearby_enemies_to_zap - /// - VirtualDivineTempestNumberOfNearbyEnemiesToZap = 9187, - - /// - /// divine_tempest_number_of_additional_nearby_enemies_to_zap - /// - DivineTempestNumberOfAdditionalNearbyEnemiesToZap = 9188, - - /// - /// local_display_socketed_gems_supported_by_level_x_energy_leech - /// - LocalDisplaySocketedGemsSupportedByLevelXEnergyLeech = 9189, - - /// - /// local_display_socketed_gems_supported_by_level_x_spell_focus - /// - LocalDisplaySocketedGemsSupportedByLevelXSpellFocus = 9190, - - /// - /// local_display_socketed_gems_supported_by_level_x_unleash - /// - LocalDisplaySocketedGemsSupportedByLevelXUnleash = 9191, - - /// - /// local_display_socketed_gems_supported_by_level_x_impale - /// - LocalDisplaySocketedGemsSupportedByLevelXImpale = 9192, - - /// - /// map_number_of_global_synthesis_mods - /// - MapNumberOfGlobalSynthesisMods = 9193, - - /// - /// sanctify_consecrated_ground_enemy_damage_taken_+% - /// - SanctifyConsecratedGroundEnemyDamageTakenPct = 9194, - - /// - /// flame_totem_consecrated_ground_enemy_damage_taken_+% - /// - FlameTotemConsecratedGroundEnemyDamageTakenPct = 9195, - - /// - /// elemental_damage_+%_per_divine_charge - /// - ElementalDamagePctPerDivineCharge = 9196, - - /// - /// divinity_elemental_damage_+%_final - /// - DivinityElementalDamagePctFinal = 9197, - - /// - /// divinity_elemental_damage_taken_+%_final - /// - DivinityElementalDamageTakenPctFinal = 9198, - - /// - /// maximum_divine_charges - /// - MaximumDivineCharges = 9199, - - /// - /// current_divine_charges - /// - CurrentDivineCharges = 9200, - - /// - /// cannot_gain_divine_charges - /// - CannotGainDivineCharges = 9201, - - /// - /// gain_divine_charge_on_hit_% - /// - GainDivineChargeOnHitPct = 9202, - - /// - /// gain_divinity_ms_when_reaching_maximum_divine_charges - /// - GainDivinityMsWhenReachingMaximumDivineCharges = 9203, - - /// - /// local_display_grants_skill_accuracy_crits_aura_level - /// - LocalDisplayGrantsSkillAccuracyCritsAuraLevel = 9204, - - /// - /// map_disallow_fractured_item_drops - /// - MapDisallowFracturedItemDrops = 9205, - - /// - /// monster_rarity - /// - MonsterRarity = 9206, - - /// - /// temporal_chains_action_speed_+%_vs_rare_or_unique_final - /// - TemporalChainsActionSpeedPctVsRareOrUniqueFinal = 9207, - - /// - /// enfeeble_damage_+%_vs_rare_or_unique_final - /// - EnfeebleDamagePctVsRareOrUniqueFinal = 9208, - - /// - /// attack_and_cast_speed_+%_during_onslaught - /// - AttackAndCastSpeedPctDuringOnslaught = 9209, - - /// - /// physical_damage_+%_with_unholy_might - /// - PhysicalDamagePctWithUnholyMight = 9210, - - /// - /// support_aura_duration_base_buff_duration - /// - SupportAuraDurationBaseBuffDuration = 9211, - - /// - /// support_aura_duration_base_reserve_duration - /// - SupportAuraDurationBaseReserveDuration = 9212, - - /// - /// support_aura_duration_buff_duration - /// - SupportAuraDurationBuffDuration = 9213, - - /// - /// support_aura_duration_reserve_duration - /// - SupportAuraDurationReserveDuration = 9214, - - /// - /// local_display_socketed_gems_supported_by_level_x_aura_duration - /// - LocalDisplaySocketedGemsSupportedByLevelXAuraDuration = 9215, - - /// - /// lightning_damage_+%_while_affected_by_herald_of_thunder - /// - LightningDamagePctWhileAffectedByHeraldOfThunder = 9216, - - /// - /// fire_damage_+%_while_affected_by_herald_of_ash - /// - FireDamagePctWhileAffectedByHeraldOfAsh = 9217, - - /// - /// cold_damage_+%_while_affected_by_herald_of_ice - /// - ColdDamagePctWhileAffectedByHeraldOfIce = 9218, - - /// - /// physical_damage_+%_while_affected_by_herald_of_purity - /// - PhysicalDamagePctWhileAffectedByHeraldOfPurity = 9219, - - /// - /// chaos_damage_+%_while_affected_by_herald_of_agony - /// - ChaosDamagePctWhileAffectedByHeraldOfAgony = 9220, - - /// - /// herald_of_ice_buff_effect_+% - /// - HeraldOfIceBuffEffectPct = 9221, - - /// - /// herald_of_ash_buff_effect_+% - /// - HeraldOfAshBuffEffectPct = 9222, - - /// - /// herald_of_agony_buff_effect_+% - /// - HeraldOfAgonyBuffEffectPct = 9223, - - /// - /// maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder - /// - MaximumLightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9224, - - /// - /// lightning_damage_resistance_%_while_affected_by_herald_of_thunder - /// - LightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9225, - - /// - /// maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash - /// - MaximumFireDamageResistancePctWhileAffectedByHeraldOfAsh = 9226, - - /// - /// fire_damage_resistance_%_while_affected_by_herald_of_ash - /// - FireDamageResistancePctWhileAffectedByHeraldOfAsh = 9227, - - /// - /// maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice - /// - MaximumColdDamageResistancePctWhileAffectedByHeraldOfIce = 9228, - - /// - /// cold_damage_resistance_%_while_affected_by_herald_of_ice - /// - ColdDamageResistancePctWhileAffectedByHeraldOfIce = 9229, - - /// - /// physical_damage_reduction_%_while_affected_by_herald_of_purity - /// - PhysicalDamageReductionPctWhileAffectedByHeraldOfPurity = 9230, - - /// - /// chaos_damage_resistance_%_while_affected_by_herald_of_agony - /// - ChaosDamageResistancePctWhileAffectedByHeraldOfAgony = 9231, - - /// - /// sentinel_of_purity_damage_+% - /// - SentinelOfPurityDamagePct = 9232, - - /// - /// agony_crawler_damage_+% - /// - AgonyCrawlerDamagePct = 9233, - - /// - /// chance_to_trigger_socketed_bow_skill_on_bow_attack_% - /// - ChanceToTriggerSocketedBowSkillOnBowAttackPct = 9234, - - /// - /// local_apply_extra_herald_mod_when_synthesised - /// - LocalApplyExtraHeraldModWhenSynthesised = 9235, - - /// - /// local_display_cast_lightning_aegis_on_gain_skill - /// - LocalDisplayCastLightningAegisOnGainSkill = 9236, - - /// - /// skill_effect_duration_+%_while_affected_by_malevolence - /// - SkillEffectDurationPctWhileAffectedByMalevolence = 9237, - - /// - /// chaos_damage_over_time_multiplier_+_while_affected_by_malevolence - /// - ChaosDamageOverTimeMultiplierWhileAffectedByMalevolence = 9238, - - /// - /// cold_damage_over_time_multiplier_+_while_affected_by_malevolence - /// - ColdDamageOverTimeMultiplierWhileAffectedByMalevolence = 9239, - - /// - /// life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence - /// - LifeAndEnergyShieldRecoveryRatePctWhileAffectedByMalevolence = 9240, - - /// - /// unaffected_by_poison_while_affected_by_malevolence - /// - UnaffectedByPoisonWhileAffectedByMalevolence = 9241, - - /// - /// unaffected_by_bleeding_while_affected_by_malevolence - /// - UnaffectedByBleedingWhileAffectedByMalevolence = 9242, - - /// - /// your_ailments_deal_damage_faster_%_while_affected_by_malevolence - /// - YourAilmentsDealDamageFasterPctWhileAffectedByMalevolence = 9243, - - /// - /// critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry - /// - CriticalStrikesPenetratesPctElementalResistancesWhileAffectedByZealotry = 9244, - - /// - /// cast_speed_+%_while_affected_by_zealotry - /// - CastSpeedPctWhileAffectedByZealotry = 9245, - - /// - /// consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry - /// - ConsecratedGroundEffectLingersForMsAfterLeavingTheAreaWhileAffectedByZealotry = 9246, - - /// - /// consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry - /// - ConsecratedGroundEnemyDamageTakenPctWhileAffectedByZealotry = 9247, - - /// - /// gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry - /// - GainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGroundWhileAffectedByZealotry = 9248, - - /// - /// maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry - /// - MaximumEnergyShieldLeechRatePctWhileAffectedByZealotry = 9249, - - /// - /// critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry - /// - CriticalStrikeChancePctAgainstEnemiesOnConsecratedGroundWhileAffectedByZealotry = 9250, - - /// - /// virtual_elemental_penetration_%_on_crit - /// - VirtualElementalPenetrationPctOnCrit = 9251, - - /// - /// virtual_faster_poison_% - /// - VirtualFasterPoisonPct = 9252, - - /// - /// virtual_faster_bleed_% - /// - VirtualFasterBleedPct = 9253, - - /// - /// base_unaffected_by_bleeding - /// - BaseUnaffectedByBleeding = 9254, - - /// - /// virtual_unaffected_by_bleeding - /// - VirtualUnaffectedByBleeding = 9255, - - /// - /// base_unaffected_by_poison - /// - BaseUnaffectedByPoison = 9256, - - /// - /// virtual_unaffected_by_poison - /// - VirtualUnaffectedByPoison = 9257, - - /// - /// virtual_consecrated_ground_effect_lingers_after_leaving_the_area_for_ms - /// - VirtualConsecratedGroundEffectLingersAfterLeavingTheAreaForMs = 9258, - - /// - /// virtual_consecrated_ground_enemy_damage_taken_+% - /// - VirtualConsecratedGroundEnemyDamageTakenPct = 9259, - - /// - /// virtual_gain_arcane_surge_for_4_seconds_when_creating_consecrated_ground - /// - VirtualGainArcaneSurgeFor4SecondsWhenCreatingConsecratedGround = 9260, - - /// - /// virtual_critical_strike_chance_+%_while_on_consecrated_ground - /// - VirtualCriticalStrikeChancePctWhileOnConsecratedGround = 9261, - - /// - /// virtual_bleed_duration_+%_final - /// - VirtualBleedDurationPctFinal = 9262, - - /// - /// gain_onslaught_on_hit_duration_ms - /// - GainOnslaughtOnHitDurationMs = 9263, - - /// - /// physical_damage_%_taken_from_mana_before_life - /// - PhysicalDamagePctTakenFromManaBeforeLife = 9264, - - /// - /// local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius - /// - LocalUniqueJewelBlightAppliesWitherForTwoSecondsWith40IntInRadius = 9265, - - /// - /// skill_surge_type_override - /// - SkillSurgeTypeOverride = 9266, - - /// - /// spell_chance_to_deal_double_damage_% - /// - SpellChanceToDealDoubleDamagePct = 9267, - - /// - /// impurity_fire_damage_taken_+%_final - /// - ImpurityFireDamageTakenPctFinal = 9268, - - /// - /// impurity_lightning_damage_taken_+%_final - /// - ImpurityLightningDamageTakenPctFinal = 9269, - - /// - /// impurity_cold_damage_taken_+%_final - /// - ImpurityColdDamageTakenPctFinal = 9270, - - /// - /// maximum_life_leech_amount_per_leech - /// - MaximumLifeLeechAmountPerLeech = 9271, - - /// - /// maximum_mana_leech_amount_per_leech - /// - MaximumManaLeechAmountPerLeech = 9272, - - /// - /// maximum_energy_shield_leech_amount_per_leech - /// - MaximumEnergyShieldLeechAmountPerLeech = 9273, - - /// - /// maximum_total_recovery_per_minute_from_life_leech - /// - MaximumTotalRecoveryPerMinuteFromLifeLeech = 9274, - - /// - /// maximum_total_recovery_per_minute_from_mana_leech - /// - MaximumTotalRecoveryPerMinuteFromManaLeech = 9275, - - /// - /// maximum_total_recovery_per_minute_from_energy_shield_leech - /// - MaximumTotalRecoveryPerMinuteFromEnergyShieldLeech = 9276, - - /// - /// life_leech_rate_per_minute - /// - LifeLeechRatePerMinute = 9277, - - /// - /// mana_leech_rate_per_minute - /// - ManaLeechRatePerMinute = 9278, - - /// - /// energy_shield_leech_rate_per_minute - /// - EnergyShieldLeechRatePerMinute = 9279, - - /// - /// total_recovery_per_minute_from_life_leech - /// - TotalRecoveryPerMinuteFromLifeLeech = 9280, - - /// - /// total_recovery_per_minute_from_mana_leech - /// - TotalRecoveryPerMinuteFromManaLeech = 9281, - - /// - /// total_recovery_per_minute_from_energy_shield_leech - /// - TotalRecoveryPerMinuteFromEnergyShieldLeech = 9282, - - /// - /// virtual_life_leech_does_not_stop_at_full_life - /// - VirtualLifeLeechDoesNotStopAtFullLife = 9283, - - /// - /// life_leech_applies_recovery_to_energy_shield - /// - LifeLeechAppliesRecoveryToEnergyShield = 9284, - - /// - /// base_life_leech_applies_recovery_to_energy_shield - /// - BaseLifeLeechAppliesRecoveryToEnergyShield = 9285, - - /// - /// triggered_skill_uses_main_hand_or_averaged_attack_time_for_pvp_scaling - /// - TriggeredSkillUsesMainHandOrAveragedAttackTimeForPvpScaling = 9286, - - /// - /// active_skill_ground_consecration_radius_+ - /// - ActiveSkillGroundConsecrationRadius = 9287, - - /// - /// support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance - /// - SupportScionOnslaughtFor3SecondsOnHittingUniqueEnemyPctChance = 9288, - - /// - /// support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge - /// - SupportArcaneSurgeSpellDamagePctFinalWhileYouHaveArcaneSurge = 9289, - - /// - /// spell_area_of_effect_+% - /// - SpellAreaOfEffectPct = 9290, - - /// - /// power_charge_on_spell_block_%_chance - /// - PowerChargeOnSpellBlockPctChance = 9291, - - /// - /// area_of_effect_+%_while_wielding_staff - /// - AreaOfEffectPctWhileWieldingStaff = 9292, - - /// - /// spell_damage_+%_if_you_have_blocked_recently - /// - SpellDamagePctIfYouHaveBlockedRecently = 9293, - - /// - /// avoid_stun_%_while_holding_shield - /// - AvoidStunPctWhileHoldingShield = 9294, - - /// - /// avoid_ailments_%_while_holding_shield - /// - AvoidAilmentsPctWhileHoldingShield = 9295, - - /// - /// maximum_life_leech_amount_per_leech_%_max_life - /// - MaximumLifeLeechAmountPerLeechPctMaxLife = 9296, - - /// - /// maximum_mana_leech_amount_per_leech_%_max_mana - /// - MaximumManaLeechAmountPerLeechPctMaxMana = 9297, - - /// - /// maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield - /// - MaximumEnergyShieldLeechAmountPerLeechPctMaxEnergyShield = 9298, - - /// - /// divine_tempest_damage_+%_final_while_channelling - /// - DivineTempestDamagePctFinalWhileChannelling = 9299, - - /// - /// local_movement_speed_+%_if_item_corrupted - /// - LocalMovementSpeedPctIfItemCorrupted = 9300, - - /// - /// local_attack_and_cast_speed_+%_if_item_corrupted - /// - LocalAttackAndCastSpeedPctIfItemCorrupted = 9301, - - /// - /// local_resist_all_elements_%_if_item_corrupted - /// - LocalResistAllElementsPctIfItemCorrupted = 9302, - - /// - /// local_damage_taken_+%_if_item_corrupted - /// - LocalDamageTakenPctIfItemCorrupted = 9303, - - /// - /// local_maximum_life_+%_if_item_corrupted - /// - LocalMaximumLifePctIfItemCorrupted = 9304, - - /// - /// local_maximum_energy_shield_+%_if_item_corrupted - /// - LocalMaximumEnergyShieldPctIfItemCorrupted = 9305, - - /// - /// local_damage_+%_if_item_corrupted - /// - LocalDamagePctIfItemCorrupted = 9306, - - /// - /// local_critical_strike_chance_+%_if_item_corrupted - /// - LocalCriticalStrikeChancePctIfItemCorrupted = 9307, - - /// - /// local_immune_to_curses_if_item_corrupted - /// - LocalImmuneToCursesIfItemCorrupted = 9308, - - /// - /// local_attack_damage_+%_if_item_corrupted - /// - LocalAttackDamagePctIfItemCorrupted = 9309, - - /// - /// local_spell_damage_+%_if_item_corrupted - /// - LocalSpellDamagePctIfItemCorrupted = 9310, - - /// - /// local_chance_to_intimidate_on_hit_% - /// - LocalChanceToIntimidateOnHitPct = 9311, - - /// - /// main_hand_chance_to_intimidate_on_hit_% - /// - MainHandChanceToIntimidateOnHitPct = 9312, - - /// - /// off_hand_chance_to_intimidate_on_hit_% - /// - OffHandChanceToIntimidateOnHitPct = 9313, - - /// - /// synthesis_map_node_grants_no_global_mod - /// - SynthesisMapNodeGrantsNoGlobalMod = 9314, - - /// - /// synthesis_map_adjacent_nodes_global_mod_values_doubled - /// - SynthesisMapAdjacentNodesGlobalModValuesDoubled = 9315, - - /// - /// synthesis_map_node_additional_uses_+ - /// - SynthesisMapNodeAdditionalUses = 9316, - - /// - /// synthesis_map_node_level_+ - /// - SynthesisMapNodeLevel = 9317, - - /// - /// synthesis_map_node_monsters_drop_no_items - /// - SynthesisMapNodeMonstersDropNoItems = 9318, - - /// - /// synthesis_map_node_item_quantity_increases_doubled - /// - SynthesisMapNodeItemQuantityIncreasesDoubled = 9319, - - /// - /// synthesis_map_node_item_rarity_increases_doubled - /// - SynthesisMapNodeItemRarityIncreasesDoubled = 9320, - - /// - /// synthesis_map_node_pack_size_increases_doubled - /// - SynthesisMapNodePackSizeIncreasesDoubled = 9321, - - /// - /// synthesis_map_node_grants_additional_global_mod - /// - SynthesisMapNodeGrantsAdditionalGlobalMod = 9322, - - /// - /// synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters - /// - SynthesisMapNodeGuestMonstersReplacedBySynthesisedMonsters = 9323, - - /// - /// synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories - /// - SynthesisMapNodeGlobalModValuesTripledIfAdjacentSquaresHaveMemories = 9324, - - /// - /// chance_to_summon_support_ghost_on_hitting_rare_or_unique_% - /// - ChanceToSummonSupportGhostOnHittingRareOrUniquePct = 9325, - - /// - /// display_dark_ritual_curse_max_skill_level_requirement - /// - DisplayDarkRitualCurseMaxSkillLevelRequirement = 9326, - - /// - /// map_synthesis_spawn_additional_normal_ambush_chest - /// - MapSynthesisSpawnAdditionalNormalAmbushChest = 9327, - - /// - /// map_synthesis_spawn_additional_magic_ambush_chest - /// - MapSynthesisSpawnAdditionalMagicAmbushChest = 9328, - - /// - /// map_synthesis_spawn_additional_rare_ambush_chest - /// - MapSynthesisSpawnAdditionalRareAmbushChest = 9329, - - /// - /// purge_expose_resist_%_matching_highest_element_damage - /// - PurgeExposeResistPctMatchingHighestElementDamage = 9330, - - /// - /// spell_bow_damage_+% - /// - SpellBowDamagePct = 9331, - - /// - /// chance_to_gain_frenzy_charge_on_block_attack_% - /// - ChanceToGainFrenzyChargeOnBlockAttackPct = 9332, - - /// - /// map_synthesised_monster_pack_size_+% - /// - MapSynthesisedMonsterPackSizePct = 9333, - - /// - /// virtual_base_spell_cast_time_ms - /// - VirtualBaseSpellCastTimeMs = 9334, - - /// - /// base_spell_cast_time_ms_override - /// - BaseSpellCastTimeMsOverride = 9335, - - /// - /// local_strength_and_intelligence_requirement_+ - /// - LocalStrengthAndIntelligenceRequirement = 9336, - - /// - /// storm_burst_15_%_chance_to_create_additional_orb - /// - StormBurst15PctChanceToCreateAdditionalOrb = 9337, - - /// - /// map_monster_tre_+% - /// - MapMonsterTrePct = 9338, - - /// - /// additive_vaal_skill_damage_modifiers_apply_to_all_skills - /// - AdditiveVaalSkillDamageModifiersApplyToAllSkills = 9339, - - /// - /// blight_tertiary_skill_effect_duration - /// - BlightTertiarySkillEffectDuration = 9340, - - /// - /// virtual_maximum_mana_leech_rate_permyriad_per_minute - /// - VirtualMaximumManaLeechRatePermyriadPerMinute = 9341, - - /// - /// maximum_life_leech_rate_+% - /// - MaximumLifeLeechRatePct = 9342, - - /// - /// maximum_mana_leech_rate_+% - /// - MaximumManaLeechRatePct = 9343, - - /// - /// maximum_energy_shield_leech_rate_+% - /// - MaximumEnergyShieldLeechRatePct = 9344, - - /// - /// virtual_maximum_life_leech_amount_per_leech_permyriad_max_life - /// - VirtualMaximumLifeLeechAmountPerLeechPermyriadMaxLife = 9345, - - /// - /// virtual_maximum_mana_leech_amount_per_leech_permyriad_max_mana - /// - VirtualMaximumManaLeechAmountPerLeechPermyriadMaxMana = 9346, - - /// - /// virtual_maximum_energy_shield_leech_amount_per_leech_permyriad_max_energy_shield - /// - VirtualMaximumEnergyShieldLeechAmountPerLeechPermyriadMaxEnergyShield = 9347, - - /// - /// maximum_life_leech_amount_per_leech_+% - /// - MaximumLifeLeechAmountPerLeechPct = 9348, - - /// - /// maximum_mana_leech_amount_per_leech_+% - /// - MaximumManaLeechAmountPerLeechPct = 9349, - - /// - /// maximum_energy_shield_leech_amount_per_leech_+% - /// - MaximumEnergyShieldLeechAmountPerLeechPct = 9350, - - /// - /// display_totems_no_infusion - /// - DisplayTotemsNoInfusion = 9351, - - /// - /// storm_burst_orb_count - /// - StormBurstOrbCount = 9352, - - /// - /// virtual_support_storm_barrier_damage_buff_time_threshold_ms - /// - VirtualSupportStormBarrierDamageBuffTimeThresholdMs = 9353, - - /// - /// console_monster_slain_experience_pluspercent_final - /// - ConsoleMonsterSlainExperiencePluspercentFinal = 9354, - - /// - /// immune_to_synthesis_decay - /// - ImmuneToSynthesisDecay = 9355, - - /// - /// from_table_monster_slain_experience_+%_final - /// - FromTableMonsterSlainExperiencePctFinal = 9356, - - /// - /// maximum_life_leech_rate_+1%_per_12_stat_value - /// - MaximumLifeLeechRate1PctPer12StatValue = 9357, - - /// - /// map_disable_breach_abyss - /// - MapDisableBreachAbyss = 9358, - - /// - /// intermediary_combined_action_speed_+% - /// - IntermediaryCombinedActionSpeedPct = 9359, - - /// - /// skill_is_triggerable - /// - SkillIsTriggerable = 9360, - - /// - /// map_legion_league - /// - MapLegionLeague = 9361, - - /// - /// local_weapon_no_physical_damage - /// - LocalWeaponNoPhysicalDamage = 9362, - - /// - /// main_hand_local_no_physical_damage - /// - MainHandLocalNoPhysicalDamage = 9363, - - /// - /// off_hand_local_no_physical_damage - /// - OffHandLocalNoPhysicalDamage = 9364, - - /// - /// maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry - /// - MaximumEsLeechRate1PctPer6StatValueWhileAffectedByZealotry = 9365, - - /// - /// attack_mini_knockback_chance_% - /// - AttackMiniKnockbackChancePct = 9366, - - /// - /// attack_mini_knockback_on_stun_chance_% - /// - AttackMiniKnockbackOnStunChancePct = 9367, - - /// - /// instant_movement_skill_delayed - /// - InstantMovementSkillDelayed = 9368, - - /// - /// display_storm_burst_jump_time_ms - /// - DisplayStormBurstJumpTimeMs = 9369, - - /// - /// effect_level_requirement_from_gem - /// - EffectLevelRequirementFromGem = 9370, - - /// - /// virtual_critical_strike_multiplier_+ - /// - VirtualCriticalStrikeMultiplier = 9371, - - /// - /// virtual_attack_critical_strike_multiplier_+ - /// - VirtualAttackCriticalStrikeMultiplier = 9372, - - /// - /// cyclone_current_number_of_stages - /// - CycloneCurrentNumberOfStages = 9373, - - /// - /// cyclone_melee_weapon_range_+_per_stage - /// - CycloneMeleeWeaponRangePerStage = 9374, - - /// - /// cyclone_stage_decay_time_ms - /// - CycloneStageDecayTimeMs = 9375, - - /// - /// skill_is_physical_skill - /// - SkillIsPhysicalSkill = 9376, - - /// - /// map_synthesised_rare_monster_drop_additional_currency - /// - MapSynthesisedRareMonsterDropAdditionalCurrency = 9377, - - /// - /// map_synthesised_magic_monster_drop_additional_currency - /// - MapSynthesisedMagicMonsterDropAdditionalCurrency = 9378, - - /// - /// map_synthesised_rare_monster_drop_additional_quality_currency - /// - MapSynthesisedRareMonsterDropAdditionalQualityCurrency = 9379, - - /// - /// map_synthesised_magic_monster_drop_additional_quality_currency - /// - MapSynthesisedMagicMonsterDropAdditionalQualityCurrency = 9380, - - /// - /// map_synthesised_rare_monster_drop_additional_currency_shard - /// - MapSynthesisedRareMonsterDropAdditionalCurrencyShard = 9381, - - /// - /// map_synthesised_magic_monster_drop_additional_currency_shard - /// - MapSynthesisedMagicMonsterDropAdditionalCurrencyShard = 9382, - - /// - /// map_synthesised_rare_monster_drop_additional_breach_splinter - /// - MapSynthesisedRareMonsterDropAdditionalBreachSplinter = 9383, - - /// - /// support_storm_barrier_physical_damage_+%_final_to_apply - /// - SupportStormBarrierPhysicalDamagePctFinalToApply = 9384, - - /// - /// virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling - /// - VirtualSupportStormBarrierPhysicalDamageTakenPctFinalFromHitsWhileChannelling = 9385, - - /// - /// attack_critical_strike_chance_+% - /// - AttackCriticalStrikeChancePct = 9386, - - /// - /// cast_spell_on_linked_attack_crit - /// - CastSpellOnLinkedAttackCrit = 9387, - - /// - /// cast_spell_on_linked_melee_kill - /// - CastSpellOnLinkedMeleeKill = 9388, - - /// - /// cast_spell_while_linked_skill_channelling - /// - CastSpellWhileLinkedSkillChannelling = 9389, - - /// - /// triggered_skill_damage_+% - /// - TriggeredSkillDamagePct = 9390, - - /// - /// bladestorm_attack_speed_+%_final_while_in_bloodstorm - /// - BladestormAttackSpeedPctFinalWhileInBloodstorm = 9391, - - /// - /// bladestorm_area_of_effect_+%_final_while_in_sandstorm - /// - BladestormAreaOfEffectPctFinalWhileInSandstorm = 9392, - - /// - /// bladestorm_storm_damage_+%_final - /// - BladestormStormDamagePctFinal = 9393, - - /// - /// affected_by_bloodstorm - /// - AffectedByBloodstorm = 9394, - - /// - /// affected_by_sandstorm - /// - AffectedBySandstorm = 9395, - - /// - /// bladestorm_maximum_number_of_storms_allowed - /// - BladestormMaximumNumberOfStormsAllowed = 9396, - - /// - /// in_blood_stance - /// - InBloodStance = 9397, - - /// - /// in_sand_stance - /// - InSandStance = 9398, - - /// - /// chance_to_bleed_on_hit_%_chance_in_blood_stance - /// - ChanceToBleedOnHitPctChanceInBloodStance = 9399, - - /// - /// disable_visual_hit_effect - /// - DisableVisualHitEffect = 9400, - - /// - /// enable_test_hit_epks - /// - EnableTestHitEpks = 9401, - - /// - /// disable_test_hit_animation_slow_down - /// - DisableTestHitAnimationSlowDown = 9402, - - /// - /// berserk_minimum_rage - /// - BerserkMinimumRage = 9403, - - /// - /// affected_by_berserk - /// - AffectedByBerserk = 9404, - - /// - /// berserk_movement_speed_+%_final - /// - BerserkMovementSpeedPctFinal = 9405, - - /// - /// frozen_in_time_damage_taken_+%_final - /// - FrozenInTimeDamageTakenPctFinal = 9406, - - /// - /// frozen_in_time - /// - FrozenInTime = 9407, - - /// - /// frozen_in_time_action_speed_-% - /// - FrozenInTimeActionSpeedPct = 9408, - - /// - /// berserk_attack_damage_+%_final - /// - BerserkAttackDamagePctFinal = 9409, - - /// - /// berserk_attack_speed_+%_final - /// - BerserkAttackSpeedPctFinal = 9410, - - /// - /// bladestorm_movement_speed_+%_while_in_sandstorm - /// - BladestormMovementSpeedPctWhileInSandstorm = 9411, - - /// - /// frost_fury_duration_+%_per_stage - /// - FrostFuryDurationPctPerStage = 9412, - - /// - /// supported_attack_skill_granted_to_replicate_clones - /// - SupportedAttackSkillGrantedToReplicateClones = 9413, - - /// - /// blitz_small_rage_explosion_damage_+% - /// - BlitzSmallRageExplosionDamagePct = 9414, - - /// - /// blitz_big_rage_explosion_damage_+% - /// - BlitzBigRageExplosionDamagePct = 9415, - - /// - /// legion_monster_damage_taken_+%_final - /// - LegionMonsterDamageTakenPctFinal = 9416, - - /// - /// map_possessed_monsters_drop_rusted_scarab_chance_% - /// - MapPossessedMonstersDropRustedScarabChancePct = 9417, - - /// - /// map_possessed_monsters_drop_polished_scarab_chance_% - /// - MapPossessedMonstersDropPolishedScarabChancePct = 9418, - - /// - /// map_possessed_monsters_drop_gilded_scarab_chance_% - /// - MapPossessedMonstersDropGildedScarabChancePct = 9419, - - /// - /// map_possessed_monsters_drop_unique_chance_% - /// - MapPossessedMonstersDropUniqueChancePct = 9420, - - /// - /// map_possessed_monsters_drop_map_chance_% - /// - MapPossessedMonstersDropMapChancePct = 9421, - - /// - /// support_slashing_damage_+%_final_from_distance - /// - SupportSlashingDamagePctFinalFromDistance = 9422, - - /// - /// support_slashing_travel_skill_attack_and_cast_speed_+%_final - /// - SupportSlashingTravelSkillAttackAndCastSpeedPctFinal = 9423, - - /// - /// support_blunt_chance_to_trigger_shockwave_on_hit_% - /// - SupportBluntChanceToTriggerShockwaveOnHitPct = 9424, - - /// - /// map_boss_drops_additional_currency_shards - /// - MapBossDropsAdditionalCurrencyShards = 9425, - - /// - /// map_harbingers_drops_additional_currency_shards - /// - MapHarbingersDropsAdditionalCurrencyShards = 9426, - - /// - /// is_harbinger - /// - IsHarbinger = 9427, - - /// - /// blood_spears_base_number_of_spears - /// - BloodSpearsBaseNumberOfSpears = 9428, - - /// - /// chain_strike_cone_radius_+_per_x_rage - /// - ChainStrikeConeRadiusPerXRage = 9429, - - /// - /// map_boss_accompanied_by_harbinger - /// - MapBossAccompaniedByHarbinger = 9430, - - /// - /// quick_guard_damage_absorbed_% - /// - QuickGuardDamageAbsorbedPct = 9431, - - /// - /// quick_guard_damage_absorb_limit - /// - QuickGuardDamageAbsorbLimit = 9432, - - /// - /// monster_drop_item_template_for_veiled_item - /// - MonsterDropItemTemplateForVeiledItem = 9433, - - /// - /// monster_drop_item_template_for_double_veiled_item - /// - MonsterDropItemTemplateForDoubleVeiledItem = 9434, - - /// - /// monster_drop_item_template_for_any_unique_item - /// - MonsterDropItemTemplateForAnyUniqueItem = 9435, - - /// - /// monster_drop_item_template_for_shaped_map - /// - MonsterDropItemTemplateForShapedMap = 9436, - - /// - /// monster_drop_item_template_for_elder_map - /// - MonsterDropItemTemplateForElderMap = 9437, - - /// - /// map_legion_league_extra_spawns - /// - MapLegionLeagueExtraSpawns = 9438, - - /// - /// blood_spears_damage_+%_final_in_blood_stance - /// - BloodSpearsDamagePctFinalInBloodStance = 9439, - - /// - /// gain_rage_on_hit - /// - GainRageOnHit = 9440, - - /// - /// map_beyond_portal_spawn_additional_demon_%_chance - /// - MapBeyondPortalSpawnAdditionalDemonPctChance = 9441, - - /// - /// possessed_monster_drop_item_template_for_rusted_scarab - /// - PossessedMonsterDropItemTemplateForRustedScarab = 9442, - - /// - /// possessed_monster_drop_item_template_for_polished_scarab - /// - PossessedMonsterDropItemTemplateForPolishedScarab = 9443, - - /// - /// possessed_monster_drop_item_template_for_gilded_scarab - /// - PossessedMonsterDropItemTemplateForGildedScarab = 9444, - - /// - /// possessed_monster_drop_item_template_for_unique_item - /// - PossessedMonsterDropItemTemplateForUniqueItem = 9445, - - /// - /// possessed_monster_drop_item_template_for_map - /// - PossessedMonsterDropItemTemplateForMap = 9446, - - /// - /// monster_drop_item_template_for_league_unique - /// - MonsterDropItemTemplateForLeagueUnique = 9447, - - /// - /// display_strongbox_drops_additional_shaper_or_elder_cards - /// - DisplayStrongboxDropsAdditionalShaperOrElderCards = 9448, - - /// - /// map_contains_additional_packs_of_vaal_monsters - /// - MapContainsAdditionalPacksOfVaalMonsters = 9449, - - /// - /// map_vaal_monster_items_drop_corrupted_% - /// - MapVaalMonsterItemsDropCorruptedPct = 9450, - - /// - /// map_contains_vaal_strongbox_for_sacrifice_fragment - /// - MapContainsVaalStrongboxForSacrificeFragment = 9451, - - /// - /// map_contains_vaal_strongbox_for_mortal_fragment - /// - MapContainsVaalStrongboxForMortalFragment = 9452, - - /// - /// melee_damage_+%_final_from_distance - /// - MeleeDamagePctFinalFromDistance = 9453, - - /// - /// ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy - /// - IceDashCooldownRecoveryPerNearbyNormalOrMagicEnemy = 9454, - - /// - /// ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy - /// - IceDashCooldownRecoveryPerNearbyRareOrUniqueEnemy = 9455, - - /// - /// mortal_call_elemental_damage_taken_+%_final - /// - MortalCallElementalDamageTakenPctFinal = 9456, - - /// - /// mortal_call_physical_damage_taken_+%_final - /// - MortalCallPhysicalDamageTakenPctFinal = 9457, - - /// - /// mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad - /// - MortalCallPhysicalDamageTakenPerEnduranceChargeConsumedFinalPermyriad = 9458, - - /// - /// mortal_call_cooldown_does_not_tick - /// - MortalCallCooldownDoesNotTick = 9459, - - /// - /// skill_cooldown_does_not_tick - /// - SkillCooldownDoesNotTick = 9460, - - /// - /// main_hand_chance_to_hit_evasive_monsters_% - /// - MainHandChanceToHitEvasiveMonstersPct = 9461, - - /// - /// off_hand_chance_to_hit_evasive_monsters_% - /// - OffHandChanceToHitEvasiveMonstersPct = 9462, - - /// - /// is_usable_as_corpse_when_alive - /// - IsUsableAsCorpseWhenAlive = 9463, - - /// - /// raised_zombies_are_usable_as_corpses_when_alive - /// - RaisedZombiesAreUsableAsCorpsesWhenAlive = 9464, - - /// - /// blood_sand_stance_melee_skills_area_damage_+%_final - /// - BloodSandStanceMeleeSkillsAreaDamagePctFinal = 9465, - - /// - /// blood_sand_stance_melee_skills_area_of_effect_+%_final - /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinal = 9466, - - /// - /// blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance - /// - BloodSandStanceMeleeSkillsAreaDamagePctFinalInBloodStance = 9467, - - /// - /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance - /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInBloodStance = 9468, - - /// - /// blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance - /// - BloodSandStanceMeleeSkillsAreaDamagePctFinalInSandStance = 9469, - - /// - /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance - /// - BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInSandStance = 9470, - - /// - /// keystone_quiet_might - /// - KeystoneQuietMight = 9471, - - /// - /// quiet_might_keystone_spell_damage_+%_final_per_power_charge - /// - QuietMightKeystoneSpellDamagePctFinalPerPowerCharge = 9472, - - /// - /// map_cowards_trial_extra_rhoas - /// - MapCowardsTrialExtraRhoas = 9473, - - /// - /// gain_frenzy_power_or_endurance_charge_against_self_%_chance - /// - GainFrenzyPowerOrEnduranceChargeAgainstSelfPctChance = 9474, - - /// - /// keystone_magnetic_charge - /// - KeystoneMagneticCharge = 9475, - - /// - /// share_charges_with_magnetic_charge_owner - /// - ShareChargesWithMagneticChargeOwner = 9476, - - /// - /// map_contains_additional_tormented_graverobbers - /// - MapContainsAdditionalTormentedGraverobbers = 9477, - - /// - /// map_contains_additional_tormented_betrayers - /// - MapContainsAdditionalTormentedBetrayers = 9478, - - /// - /// map_contains_additional_tormented_heretics - /// - MapContainsAdditionalTormentedHeretics = 9479, - - /// - /// life_recharge_rate_per_minute - /// - LifeRechargeRatePerMinute = 9480, - - /// - /// keystone_eternal_youth - /// - KeystoneEternalYouth = 9481, - - /// - /// keystone_pressure_points - /// - KeystonePressurePoints = 9482, - - /// - /// virtual_always_crit - /// - VirtualAlwaysCrit = 9483, - - /// - /// virtual_no_critical_strike_multiplier - /// - VirtualNoCriticalStrikeMultiplier = 9484, - - /// - /// maximum_mana_%_to_convert_to_armour_at_doubled_value - /// - MaximumManaPctToConvertToArmourAtDoubledValue = 9485, - - /// - /// keystone_mental_conditioning - /// - KeystoneMentalConditioning = 9486, - - /// - /// tormented_betrayer_spawn_monster_on_death_variation - /// - TormentedBetrayerSpawnMonsterOnDeathVariation = 9487, - - /// - /// map_sacrifice_fragment_count - /// - MapSacrificeFragmentCount = 9488, - - /// - /// map_mortal_fragment_count - /// - MapMortalFragmentCount = 9489, - - /// - /// map_vaal_sacrifice_strongbox_chance_per_fragment_% - /// - MapVaalSacrificeStrongboxChancePerFragmentPct = 9490, - - /// - /// map_vaal_mortal_strongbox_chance_per_fragment_% - /// - MapVaalMortalStrongboxChancePerFragmentPct = 9491, - - /// - /// chest_display_guarded_by_hooded_architect - /// - ChestDisplayGuardedByHoodedArchitect = 9492, - - /// - /// map_cowards_trial_extra_oriath_citizens - /// - MapCowardsTrialExtraOriathCitizens = 9493, - - /// - /// keystone_sharp_and_brittle - /// - KeystoneSharpAndBrittle = 9494, - - /// - /// virtual_extra_crit_damage_rolls - /// - VirtualExtraCritDamageRolls = 9495, - - /// - /// virtual_enemy_extra_crit_damage_rolls - /// - VirtualEnemyExtraCritDamageRolls = 9496, - - /// - /// virtual_disable_helmet_slot - /// - VirtualDisableHelmetSlot = 9497, - - /// - /// enable_movement_skill_animation_skipping - /// - EnableMovementSkillAnimationSkipping = 9498, - - /// - /// map_player_disable_soul_gain_prevention - /// - MapPlayerDisableSoulGainPrevention = 9499, - - /// - /// frost_fury_fire_speed_+%_final_while_channelling - /// - FrostFuryFireSpeedPctFinalWhileChannelling = 9500, - - /// - /// total_base_damage_per_minute_taken_as_physical - /// - TotalBaseDamagePerMinuteTakenAsPhysical = 9501, - - /// - /// total_base_damage_per_minute_taken_as_fire - /// - TotalBaseDamagePerMinuteTakenAsFire = 9502, - - /// - /// total_base_damage_per_minute_taken_as_cold - /// - TotalBaseDamagePerMinuteTakenAsCold = 9503, - - /// - /// total_base_damage_per_minute_taken_as_lightning - /// - TotalBaseDamagePerMinuteTakenAsLightning = 9504, - - /// - /// total_base_damage_per_minute_taken_as_chaos - /// - TotalBaseDamagePerMinuteTakenAsChaos = 9505, - - /// - /// total_base_damage_per_minute_taken_as_physical_unaffected_by_level_scaling - /// - TotalBaseDamagePerMinuteTakenAsPhysicalUnaffectedByLevelScaling = 9506, - - /// - /// total_base_damage_per_minute_taken_as_fire_unaffected_by_level_scaling - /// - TotalBaseDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9507, - - /// - /// total_base_nonlethal_damage_per_minute_taken_as_fire_unaffected_by_level_scaling - /// - TotalBaseNonlethalDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9508, - - /// - /// total_base_damage_per_minute_taken_as_cold_unaffected_by_level_scaling - /// - TotalBaseDamagePerMinuteTakenAsColdUnaffectedByLevelScaling = 9509, - - /// - /// total_base_damage_per_minute_taken_as_lightning_unaffected_by_level_scaling - /// - TotalBaseDamagePerMinuteTakenAsLightningUnaffectedByLevelScaling = 9510, - - /// - /// total_base_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling - /// - TotalBaseDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9511, - - /// - /// total_base_nonlethal_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling - /// - TotalBaseNonlethalDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9512, - - /// - /// fire_damage_over_time_%_taken_as_chaos - /// - FireDamageOverTimePctTakenAsChaos = 9513, - - /// - /// cold_damage_over_time_%_taken_as_chaos - /// - ColdDamageOverTimePctTakenAsChaos = 9514, - - /// - /// lightning_damage_over_time_%_taken_as_chaos - /// - LightningDamageOverTimePctTakenAsChaos = 9515, - - /// - /// cold_damage_over_time_%_taken_as_fire - /// - ColdDamageOverTimePctTakenAsFire = 9516, - - /// - /// lightning_damage_over_time_%_taken_as_fire - /// - LightningDamageOverTimePctTakenAsFire = 9517, - - /// - /// physical_damage_over_time_%_taken_as_other_types - /// - PhysicalDamageOverTimePctTakenAsOtherTypes = 9518, - - /// - /// fire_damage_over_time_%_taken_as_other_types - /// - FireDamageOverTimePctTakenAsOtherTypes = 9519, - - /// - /// cold_damage_over_time_%_taken_as_other_types - /// - ColdDamageOverTimePctTakenAsOtherTypes = 9520, - - /// - /// lightning_damage_over_time_%_taken_as_other_types - /// - LightningDamageOverTimePctTakenAsOtherTypes = 9521, - - /// - /// chaos_damage_over_time_%_taken_as_other_types - /// - ChaosDamageOverTimePctTakenAsOtherTypes = 9522, - - /// - /// keystone_corrupted_defences - /// - KeystoneCorruptedDefences = 9523, - - /// - /// keystone_miracle_of_thaumaturgy - /// - KeystoneMiracleOfThaumaturgy = 9524, - - /// - /// keystone_divine_flesh - /// - KeystoneDivineFlesh = 9525, - - /// - /// keystone_tempered_by_war - /// - KeystoneTemperedByWar = 9526, - - /// - /// physical_damage_over_time_%_taken_as_chaos - /// - PhysicalDamageOverTimePctTakenAsChaos = 9527, - - /// - /// chaos_damage_over_time_%_taken_as_physical - /// - ChaosDamageOverTimePctTakenAsPhysical = 9528, - - /// - /// base_physical_damage_over_time_%_taken_as_chaos - /// - BasePhysicalDamageOverTimePctTakenAsChaos = 9529, - - /// - /// base_chaos_damage_over_time_%_taken_as_physical - /// - BaseChaosDamageOverTimePctTakenAsPhysical = 9530, - - /// - /// total_nonlethal_chaos_damage_taken_per_minute - /// - TotalNonlethalChaosDamageTakenPerMinute = 9531, - - /// - /// total_damage_taken_per_minute_towards_life_damaging_es - /// - TotalDamageTakenPerMinuteTowardsLifeDamagingEs = 9532, - - /// - /// total_damage_taken_per_minute_towards_life_bypassing_es - /// - TotalDamageTakenPerMinuteTowardsLifeBypassingEs = 9533, - - /// - /// total_damage_taken_per_minute_towards_mana_damaging_es - /// - TotalDamageTakenPerMinuteTowardsManaDamagingEs = 9534, - - /// - /// total_damage_taken_per_minute_towards_mana_bypassing_es - /// - TotalDamageTakenPerMinuteTowardsManaBypassingEs = 9535, - - /// - /// total_nonlethal_damage_taken_per_minute_towards_life_damaging_es - /// - TotalNonlethalDamageTakenPerMinuteTowardsLifeDamagingEs = 9536, - - /// - /// total_nonlethal_damage_taken_per_minute_towards_life_bypassing_es - /// - TotalNonlethalDamageTakenPerMinuteTowardsLifeBypassingEs = 9537, - - /// - /// total_nonlethal_damage_taken_per_minute_towards_mana_damaging_es - /// - TotalNonlethalDamageTakenPerMinuteTowardsManaDamagingEs = 9538, - - /// - /// total_nonlethal_damage_taken_per_minute_towards_mana_bypassing_es - /// - TotalNonlethalDamageTakenPerMinuteTowardsManaBypassingEs = 9539, - - /// - /// total_nonlethal_damage_taken_per_minute_to_mana - /// - TotalNonlethalDamageTakenPerMinuteToMana = 9540, - - /// - /// physical_damage_taken_per_minute_bypassing_es - /// - PhysicalDamageTakenPerMinuteBypassingEs = 9541, - - /// - /// physical_damage_taken_per_minute_damaging_es - /// - PhysicalDamageTakenPerMinuteDamagingEs = 9542, - - /// - /// physical_damage_taken_per_minute_towards_life_bypassing_es - /// - PhysicalDamageTakenPerMinuteTowardsLifeBypassingEs = 9543, - - /// - /// physical_damage_taken_per_minute_towards_life_damaging_es - /// - PhysicalDamageTakenPerMinuteTowardsLifeDamagingEs = 9544, - - /// - /// physical_damage_taken_per_minute_towards_mana_bypassing_es - /// - PhysicalDamageTakenPerMinuteTowardsManaBypassingEs = 9545, - - /// - /// physical_damage_taken_per_minute_towards_mana_damaging_es - /// - PhysicalDamageTakenPerMinuteTowardsManaDamagingEs = 9546, - - /// - /// fire_damage_bypass_energy_shield_% - /// - FireDamageBypassEnergyShieldPct = 9547, - - /// - /// fire_damage_taken_per_minute_bypassing_es - /// - FireDamageTakenPerMinuteBypassingEs = 9548, - - /// - /// fire_damage_taken_per_minute_damaging_es - /// - FireDamageTakenPerMinuteDamagingEs = 9549, - - /// - /// fire_damage_taken_per_minute_towards_life_bypassing_es - /// - FireDamageTakenPerMinuteTowardsLifeBypassingEs = 9550, - - /// - /// fire_damage_taken_per_minute_towards_life_damaging_es - /// - FireDamageTakenPerMinuteTowardsLifeDamagingEs = 9551, - - /// - /// fire_damage_taken_per_minute_towards_mana_bypassing_es - /// - FireDamageTakenPerMinuteTowardsManaBypassingEs = 9552, - - /// - /// fire_damage_taken_per_minute_towards_mana_damaging_es - /// - FireDamageTakenPerMinuteTowardsManaDamagingEs = 9553, - - /// - /// nonlethal_fire_damage_taken_per_minute_bypassing_es - /// - NonlethalFireDamageTakenPerMinuteBypassingEs = 9554, - - /// - /// nonlethal_fire_damage_taken_per_minute_damaging_es - /// - NonlethalFireDamageTakenPerMinuteDamagingEs = 9555, - - /// - /// nonlethal_fire_damage_taken_per_minute_towards_life_bypassing_es - /// - NonlethalFireDamageTakenPerMinuteTowardsLifeBypassingEs = 9556, - - /// - /// nonlethal_fire_damage_taken_per_minute_towards_life_damaging_es - /// - NonlethalFireDamageTakenPerMinuteTowardsLifeDamagingEs = 9557, - - /// - /// nonlethal_fire_damage_taken_per_minute_towards_mana_bypassing_es - /// - NonlethalFireDamageTakenPerMinuteTowardsManaBypassingEs = 9558, - - /// - /// nonlethal_fire_damage_taken_per_minute_towards_mana_damaging_es - /// - NonlethalFireDamageTakenPerMinuteTowardsManaDamagingEs = 9559, - - /// - /// cold_damage_bypass_energy_shield_% - /// - ColdDamageBypassEnergyShieldPct = 9560, - - /// - /// cold_damage_taken_per_minute_bypassing_es - /// - ColdDamageTakenPerMinuteBypassingEs = 9561, - - /// - /// cold_damage_taken_per_minute_damaging_es - /// - ColdDamageTakenPerMinuteDamagingEs = 9562, - - /// - /// cold_damage_taken_per_minute_towards_life_bypassing_es - /// - ColdDamageTakenPerMinuteTowardsLifeBypassingEs = 9563, - - /// - /// cold_damage_taken_per_minute_towards_life_damaging_es - /// - ColdDamageTakenPerMinuteTowardsLifeDamagingEs = 9564, - - /// - /// cold_damage_taken_per_minute_towards_mana_bypassing_es - /// - ColdDamageTakenPerMinuteTowardsManaBypassingEs = 9565, - - /// - /// cold_damage_taken_per_minute_towards_mana_damaging_es - /// - ColdDamageTakenPerMinuteTowardsManaDamagingEs = 9566, - - /// - /// lightning_damage_bypass_energy_shield_% - /// - LightningDamageBypassEnergyShieldPct = 9567, - - /// - /// lightning_damage_taken_per_minute_bypassing_es - /// - LightningDamageTakenPerMinuteBypassingEs = 9568, - - /// - /// lightning_damage_taken_per_minute_damaging_es - /// - LightningDamageTakenPerMinuteDamagingEs = 9569, - - /// - /// lightning_damage_taken_per_minute_towards_life_bypassing_es - /// - LightningDamageTakenPerMinuteTowardsLifeBypassingEs = 9570, - - /// - /// lightning_damage_taken_per_minute_towards_life_damaging_es - /// - LightningDamageTakenPerMinuteTowardsLifeDamagingEs = 9571, - - /// - /// lightning_damage_taken_per_minute_towards_mana_bypassing_es - /// - LightningDamageTakenPerMinuteTowardsManaBypassingEs = 9572, - - /// - /// lightning_damage_taken_per_minute_towards_mana_damaging_es - /// - LightningDamageTakenPerMinuteTowardsManaDamagingEs = 9573, - - /// - /// chaos_damage_taken_per_minute_bypassing_es - /// - ChaosDamageTakenPerMinuteBypassingEs = 9574, - - /// - /// chaos_damage_taken_per_minute_damaging_es - /// - ChaosDamageTakenPerMinuteDamagingEs = 9575, - - /// - /// chaos_damage_taken_per_minute_towards_life_bypassing_es - /// - ChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9576, - - /// - /// chaos_damage_taken_per_minute_towards_life_damaging_es - /// - ChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9577, - - /// - /// chaos_damage_taken_per_minute_towards_mana_bypassing_es - /// - ChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9578, - - /// - /// chaos_damage_taken_per_minute_towards_mana_damaging_es - /// - ChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9579, - - /// - /// nonlethal_chaos_damage_taken_per_minute_bypassing_es - /// - NonlethalChaosDamageTakenPerMinuteBypassingEs = 9580, - - /// - /// nonlethal_chaos_damage_taken_per_minute_damaging_es - /// - NonlethalChaosDamageTakenPerMinuteDamagingEs = 9581, - - /// - /// nonlethal_chaos_damage_taken_per_minute_towards_life_bypassing_es - /// - NonlethalChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9582, - - /// - /// nonlethal_chaos_damage_taken_per_minute_towards_life_damaging_es - /// - NonlethalChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9583, - - /// - /// nonlethal_chaos_damage_taken_per_minute_towards_mana_bypassing_es - /// - NonlethalChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9584, - - /// - /// nonlethal_chaos_damage_taken_per_minute_towards_mana_damaging_es - /// - NonlethalChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9585, - - /// - /// physical_damage_removed_from_mana_before_life_% - /// - PhysicalDamageRemovedFromManaBeforeLifePct = 9586, - - /// - /// fire_damage_removed_from_mana_before_life_% - /// - FireDamageRemovedFromManaBeforeLifePct = 9587, - - /// - /// cold_damage_removed_from_mana_before_life_% - /// - ColdDamageRemovedFromManaBeforeLifePct = 9588, - - /// - /// lightning_damage_removed_from_mana_before_life_% - /// - LightningDamageRemovedFromManaBeforeLifePct = 9589, - - /// - /// chaos_damage_removed_from_mana_before_life_% - /// - ChaosDamageRemovedFromManaBeforeLifePct = 9590, - - /// - /// virtual_lightning_hit_damage_taken_percent_as_fire - /// - VirtualLightningHitDamageTakenPercentAsFire = 9591, - - /// - /// virtual_cold_hit_damage_taken_percent_as_fire - /// - VirtualColdHitDamageTakenPercentAsFire = 9592, - - /// - /// virtual_maximum_life_%_to_add_as_maximum_energy_shield - /// - VirtualMaximumLifePctToAddAsMaximumEnergyShield = 9593, - - /// - /// tempered_by_war_keystone_cold_and_lightning_resistance_+%_final - /// - TemperedByWarKeystoneColdAndLightningResistancePctFinal = 9594, - - /// - /// base_number_of_replicate_minions_allowed - /// - BaseNumberOfReplicateMinionsAllowed = 9595, - - /// - /// number_of_active_replicate_minions - /// - NumberOfActiveReplicateMinions = 9596, - - /// - /// map_legion_fragment_faction_karui - /// - MapLegionFragmentFactionKarui = 9597, - - /// - /// map_legion_fragment_faction_maraketh - /// - MapLegionFragmentFactionMaraketh = 9598, - - /// - /// map_legion_fragment_faction_eternal - /// - MapLegionFragmentFactionEternal = 9599, - - /// - /// map_legion_fragment_faction_templar - /// - MapLegionFragmentFactionTemplar = 9600, - - /// - /// map_legion_fragment_faction_vaal - /// - MapLegionFragmentFactionVaal = 9601, - - /// - /// molten_shell_damage_absorbed_% - /// - MoltenShellDamageAbsorbedPct = 9602, - - /// - /// molten_shell_damage_absorb_limit_%_of_armour - /// - MoltenShellDamageAbsorbLimitPctOfArmour = 9603, - - /// - /// molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire - /// - MoltenShellPctOfAbsorbedDamageDealtAsReflectedFire = 9604, - - /// - /// molten_shell_cooldown_does_not_tick - /// - MoltenShellCooldownDoesNotTick = 9605, - - /// - /// affected_by_sand_armour_debuff - /// - AffectedBySandArmourDebuff = 9606, - - /// - /// attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour - /// - AttackDamageTakenPctFinalFromEnemiesUnaffectedBySandArmour = 9607, - - /// - /// legion_endless_strife_revive_on_death_ms - /// - LegionEndlessStrifeReviveOnDeathMs = 9608, - - /// - /// cannot_cancel_skill_before_contact_point - /// - CannotCancelSkillBeforeContactPoint = 9609, - - /// - /// quick_guard_cooldown_does_not_tick - /// - QuickGuardCooldownDoesNotTick = 9610, - - /// - /// damage_taken_goes_to_life_over_4_seconds_% - /// - DamageTakenGoesToLifeOver4SecondsPct = 9611, - - /// - /// additional_physical_damage_reduction_%_while_bleeding - /// - AdditionalPhysicalDamageReductionPctWhileBleeding = 9612, - - /// - /// blind_art_variation - /// - BlindArtVariation = 9613, - - /// - /// corrupted_defences_keystone_non_chaos_damage_bypass_energy_shield_% - /// - CorruptedDefencesKeystoneNonChaosDamageBypassEnergyShieldPct = 9614, - - /// - /// map_player_chance_to_gain_vaal_soul_on_kill_% - /// - MapPlayerChanceToGainVaalSoulOnKillPct = 9615, - - /// - /// map_cowards_trial_extra_ghosts - /// - MapCowardsTrialExtraGhosts = 9616, - - /// - /// map_cowards_trial_extra_phantasms - /// - MapCowardsTrialExtraPhantasms = 9617, - - /// - /// map_cowards_trial_extra_zombies - /// - MapCowardsTrialExtraZombies = 9618, - - /// - /// map_cowards_trial_extra_raging_spirits - /// - MapCowardsTrialExtraRagingSpirits = 9619, - - /// - /// minimum_endurance_charges_while_on_low_life_+ - /// - MinimumEnduranceChargesWhileOnLowLife = 9620, - - /// - /// minimum_power_charges_while_on_low_life_+ - /// - MinimumPowerChargesWhileOnLowLife = 9621, - - /// - /// precision_mana_reservation_+% - /// - PrecisionManaReservationPct = 9622, - - /// - /// precision_reserves_no_mana - /// - PrecisionReservesNoMana = 9623, - - /// - /// critical_strike_chance_+%_for_spells_if_you_have_killed_recently - /// - CriticalStrikeChancePctForSpellsIfYouHaveKilledRecently = 9624, - - /// - /// critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently - /// - CriticalStrikeMultiplierForSpellsIfYouHaventKilledRecently = 9625, - - /// - /// impale_support_physical_damage_+%_final - /// - ImpaleSupportPhysicalDamagePctFinal = 9626, - - /// - /// damage_+%_per_frenzy_power_or_endurance_charge - /// - DamagePctPerFrenzyPowerOrEnduranceCharge = 9627, - - /// - /// pressure_points_keystone_cooldown_speed_+%_final - /// - PressurePointsKeystoneCooldownSpeedPctFinal = 9628, - - /// - /// override_off_hand_base_critical_strike_chance - /// - OverrideOffHandBaseCriticalStrikeChance = 9629, - - /// - /// virtual_block_%_damage_taken - /// - VirtualBlockPctDamageTaken = 9630, - - /// - /// base_block_%_damage_taken - /// - BaseBlockPctDamageTaken = 9631, - - /// - /// support_greater_spell_echo_spell_damage_+%_final_per_repeat - /// - SupportGreaterSpellEchoSpellDamagePctFinalPerRepeat = 9632, - - /// - /// support_greater_spell_echo_area_of_effect_+%_per_repeat - /// - SupportGreaterSpellEchoAreaOfEffectPctPerRepeat = 9633, - - /// - /// spell_damage_+%_final_from_greater_spell_echo - /// - SpellDamagePctFinalFromGreaterSpellEcho = 9634, - - /// - /// local_display_socketed_gems_supported_by_level_x_greater_spell_echo - /// - LocalDisplaySocketedGemsSupportedByLevelXGreaterSpellEcho = 9635, - - /// - /// spell_damage_+%_per_100_max_life - /// - SpellDamagePctPer100MaxLife = 9636, - - /// - /// spell_critical_strike_chance_+%_per_100_max_life - /// - SpellCriticalStrikeChancePctPer100MaxLife = 9637, - - /// - /// sacrifice_%_life_on_spell_skill - /// - SacrificePctLifeOnSpellSkill = 9638, - - /// - /// dexterity_+%_if_strength_higher_than_intelligence - /// - DexterityPctIfStrengthHigherThanIntelligence = 9639, - - /// - /// critical_strike_multiplier_+_if_dexterity_higher_than_intelligence - /// - CriticalStrikeMultiplierIfDexterityHigherThanIntelligence = 9640, - - /// - /// elemental_damage_+%_per_10_dexterity - /// - ElementalDamagePctPer10Dexterity = 9641, - - /// - /// map_cowards_trial_extra_skeleton_cannons - /// - MapCowardsTrialExtraSkeletonCannons = 9642, - - /// - /// minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage - /// - MinionRagingSpiritPctOfMaximumLifeTakenPerMinuteAsChaosDamage = 9643, - - /// - /// unique_lose_a_power_charge_when_hit - /// - UniqueLoseAPowerChargeWhenHit = 9644, - - /// - /// display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed - /// - DisplayFrostFuryAdditiveCastSpeedModifiersApplyToFireSpeed = 9645, - - /// - /// physical_damage_aura_nearby_enemies_physical_damage_taken_+% - /// - PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPct = 9646, - - /// - /// physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max - /// - PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPctMax = 9647, - - /// - /// berserk_cooldown_does_not_tick - /// - BerserkCooldownDoesNotTick = 9648, - - /// - /// keystone_glancing_blows - /// - KeystoneGlancingBlows = 9649, - - /// - /// block_chance_+%_final - /// - BlockChancePctFinal = 9650, - - /// - /// spell_block_chance_+%_final - /// - SpellBlockChancePctFinal = 9651, - - /// - /// support_slashing_buff_duration_ms - /// - SupportSlashingBuffDurationMs = 9652, - - /// - /// support_slashing_buff_base_duration_ms - /// - SupportSlashingBuffBaseDurationMs = 9653, - - /// - /// supported_by_slashing - /// - SupportedBySlashing = 9654, - - /// - /// minion_raging_spirit_maximum_life_+% - /// - MinionRagingSpiritMaximumLifePct = 9655, - - /// - /// draining_lasso_action_speed_+%_final - /// - DrainingLassoActionSpeedPctFinal = 9656, - - /// - /// affected_by_flask_drain - /// - AffectedByFlaskDrain = 9657, - - /// - /// keystone_emperors_heart - /// - KeystoneEmperorsHeart = 9658, - - /// - /// life_recovery_from_flasks_also_recovers_energy_shield - /// - LifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9659, - - /// - /// number_of_attached_retract_arrows - /// - NumberOfAttachedRetractArrows = 9660, - - /// - /// apply_attached_retract_arrow_on_hit - /// - ApplyAttachedRetractArrowOnHit = 9661, - - /// - /// map_is_legion_endgame_map - /// - MapIsLegionEndgameMap = 9662, - - /// - /// display_cowards_trial_waves_of_monsters - /// - DisplayCowardsTrialWavesOfMonsters = 9663, - - /// - /// display_cowards_trial_waves_of_undead_monsters - /// - DisplayCowardsTrialWavesOfUndeadMonsters = 9664, - - /// - /// raise_zombie_does_not_use_corpses - /// - RaiseZombieDoesNotUseCorpses = 9665, - - /// - /// axe_damage_+% - /// - AxeDamagePct = 9666, - - /// - /// staff_damage_+% - /// - StaffDamagePct = 9667, - - /// - /// claw_damage_+% - /// - ClawDamagePct = 9668, - - /// - /// dagger_damage_+% - /// - DaggerDamagePct = 9669, - - /// - /// mace_damage_+% - /// - MaceDamagePct = 9670, - - /// - /// sword_damage_+% - /// - SwordDamagePct = 9671, - - /// - /// damage_while_dual_wielding_+% - /// - DamageWhileDualWieldingPct = 9672, - - /// - /// attack_damage_+%_while_holding_a_shield - /// - AttackDamagePctWhileHoldingAShield = 9673, - - /// - /// affected_by_precision - /// - AffectedByPrecision = 9674, - - /// - /// critical_strike_multiplier_+_while_affected_by_precision - /// - CriticalStrikeMultiplierWhileAffectedByPrecision = 9675, - - /// - /// attack_damage_+%_while_affected_by_precision - /// - AttackDamagePctWhileAffectedByPrecision = 9676, - - /// - /// recharge_flasks_on_crit_while_affected_by_precision - /// - RechargeFlasksOnCritWhileAffectedByPrecision = 9677, - - /// - /// attack_speed_+%_while_affected_by_precision - /// - AttackSpeedPctWhileAffectedByPrecision = 9678, - - /// - /// cannot_be_blinded_while_affected_by_precision - /// - CannotBeBlindedWhileAffectedByPrecision = 9679, - - /// - /// virtual_cannot_be_blinded - /// - VirtualCannotBeBlinded = 9680, - - /// - /// virtual_recharge_flasks_on_crit - /// - VirtualRechargeFlasksOnCrit = 9681, - - /// - /// maximum_life_per_10_intelligence - /// - MaximumLifePer10Intelligence = 9682, - - /// - /// drop_additional_adjacent_maps - /// - DropAdditionalAdjacentMaps = 9683, - - /// - /// local_unique_jewel_alternate_tree_version - /// - LocalUniqueJewelAlternateTreeVersion = 9684, - - /// - /// local_unique_jewel_alternate_tree_seed - /// - LocalUniqueJewelAlternateTreeSeed = 9685, - - /// - /// local_unique_jewel_alternate_tree_keystone - /// - LocalUniqueJewelAlternateTreeKeystone = 9686, - - /// - /// keystone_blind_monk - /// - KeystoneBlindMonk = 9687, - - /// - /// should_be_blind_from_keystone - /// - ShouldBeBlindFromKeystone = 9688, - - /// - /// keystone_blind_monk_melee_critical_strike_chance_+%_final - /// - KeystoneBlindMonkMeleeCriticalStrikeChancePctFinal = 9689, - - /// - /// console_skill_dont_chase - /// - ConsoleSkillDontChase = 9690, - - /// - /// local_display_you_get_elemental_ailments_instead_of_allies - /// - LocalDisplayYouGetElementalAilmentsInsteadOfAllies = 9691, - - /// - /// redirect_elemental_ailments_to_aura_owner - /// - RedirectElementalAilmentsToAuraOwner = 9692, - - /// - /// local_display_grants_skill_smite_level - /// - LocalDisplayGrantsSkillSmiteLevel = 9693, - - /// - /// base_devotion - /// - BaseDevotion = 9694, - - /// - /// light_radius_additive_modifiers_apply_to_damage - /// - LightRadiusAdditiveModifiersApplyToDamage = 9695, - - /// - /// light_radius_additive_modifiers_apply_to_area_%_value - /// - LightRadiusAdditiveModifiersApplyToAreaPctValue = 9696, - - /// - /// slice_and_dice_damage_+%_final_per_5_rage_on_final_strike - /// - SliceAndDiceDamagePctFinalPer5RageOnFinalStrike = 9697, - - /// - /// slice_and_dice_melee_range_+_per_5_rage_on_final_strike - /// - SliceAndDiceMeleeRangePer5RageOnFinalStrike = 9698, - - /// - /// slice_and_dice_attack_speed_+%_final_on_final_strike - /// - SliceAndDiceAttackSpeedPctFinalOnFinalStrike = 9699, - - /// - /// slice_and_dice_minimum_added_physical_damage_on_final_strike - /// - SliceAndDiceMinimumAddedPhysicalDamageOnFinalStrike = 9700, - - /// - /// slice_and_dice_maximum_added_physical_damage_on_final_strike - /// - SliceAndDiceMaximumAddedPhysicalDamageOnFinalStrike = 9701, - - /// - /// keystone_wind_dancer - /// - KeystoneWindDancer = 9702, - - /// - /// keystone_wind_dancer_damage_taken_+%_final_if_have_not_been_hit_recently - /// - KeystoneWindDancerDamageTakenPctFinalIfHaveNotBeenHitRecently = 9703, - - /// - /// keystone_wind_dancer_evasion_rating_+%_final_if_have_not_been_hit_recently - /// - KeystoneWindDancerEvasionRatingPctFinalIfHaveNotBeenHitRecently = 9704, - - /// - /// keystone_wind_dancer_evasion_rating_+%_final_if_have_been_hit_recently - /// - KeystoneWindDancerEvasionRatingPctFinalIfHaveBeenHitRecently = 9705, - - /// - /// map_legion_endless_mode_+_s - /// - MapLegionEndlessModeS = 9706, - - /// - /// map_legion_endless_pack_size_+% - /// - MapLegionEndlessPackSizePct = 9707, - - /// - /// map_legion_endless_monolith_pulse_time_ms - /// - MapLegionEndlessMonolithPulseTimeMs = 9708, - - /// - /// local_flask_life_recovery_from_flasks_also_recovers_energy_shield - /// - LocalFlaskLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9709, - - /// - /// precision_mana_reservation_-50%_final - /// - PrecisionManaReservation50PctFinal = 9710, - - /// - /// multistrike_damage_+%_final_on_first_repeat - /// - MultistrikeDamagePctFinalOnFirstRepeat = 9711, - - /// - /// multistrike_damage_+%_final_on_second_repeat - /// - MultistrikeDamagePctFinalOnSecondRepeat = 9712, - - /// - /// damage_+%_final_from_multistrike_repeat - /// - DamagePctFinalFromMultistrikeRepeat = 9713, - - /// - /// virtual_life_recovery_from_flasks_also_recovers_energy_shield - /// - VirtualLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9714, - - /// - /// keystone_emperors_heart_flask_life_to_recover_pluspercent_final - /// - KeystoneEmperorsHeartFlaskLifeToRecoverPluspercentFinal = 9715, - - /// - /// gain_unholy_might_for_4_seconds_on_crit - /// - GainUnholyMightFor4SecondsOnCrit = 9716, - - /// - /// keystone_wicked_ward - /// - KeystoneWickedWard = 9717, - - /// - /// wicked_ward_keystone_energy_shield_regeneration_rate_+%_final - /// - WickedWardKeystoneEnergyShieldRegenerationRatePctFinal = 9718, - - /// - /// wicked_ward_keystone_maximum_energy_shield_leech_rate_+%_final - /// - WickedWardKeystoneMaximumEnergyShieldLeechRatePctFinal = 9719, - - /// - /// trigger_on_bow_attack_% - /// - TriggerOnBowAttackPct = 9720, - - /// - /// local_display_trigger_level_x_rain_of_arrows_on_bow_attack - /// - LocalDisplayTriggerLevelXRainOfArrowsOnBowAttack = 9721, - - /// - /// curses_you_inflict_remain_after_death - /// - CursesYouInflictRemainAfterDeath = 9722, - - /// - /// enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage - /// - EnemiesNearCursedCorpsesAreBlindedAndExplodeOnDeathForPctLifeAsPhysicalDamage = 9723, - - /// - /// explode_on_death_for_%_life_as_physical_damage - /// - ExplodeOnDeathForPctLifeAsPhysicalDamage = 9724, - - /// - /// support_pulverise_melee_area_damage_+%_final - /// - SupportPulveriseMeleeAreaDamagePctFinal = 9725, - - /// - /// support_pulverise_area_of_effect_+%_final - /// - SupportPulveriseAreaOfEffectPctFinal = 9726, - - /// - /// support_pulverise_attack_speed_+%_final - /// - SupportPulveriseAttackSpeedPctFinal = 9727, - - /// - /// local_unique_jewel_alternate_tree_internal_revision - /// - LocalUniqueJewelAlternateTreeInternalRevision = 9728, - - /// - /// chest_display_guarded_by_hooded_architect_mortal - /// - ChestDisplayGuardedByHoodedArchitectMortal = 9729, - - /// - /// skill_cooldown_is_2_seconds - /// - SkillCooldownIs2Seconds = 9730, - - /// - /// warcry_skills_cooldown_is_2_seconds - /// - WarcrySkillsCooldownIs2Seconds = 9731, - - /// - /// object_inherent_melee_hit_stun_duration_+%_final - /// - ObjectInherentMeleeHitStunDurationPctFinal = 9732, - - /// - /// melee_hit_damage_stun_multiplier_+% - /// - MeleeHitDamageStunMultiplierPct = 9733, - - /// - /// non_physical_hit_damage_stun_multiplier_+% - /// - NonPhysicalHitDamageStunMultiplierPct = 9734, - - /// - /// attack_damage_+%_while_you_have_fortify - /// - AttackDamagePctWhileYouHaveFortify = 9735, - - /// - /// recover_%_life_when_gaining_adrenaline - /// - RecoverPctLifeWhenGainingAdrenaline = 9736, - - /// - /// you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage - /// - YouAndAlliesAffectedByYourPlacedBannersRegeneratePctLifePerMinutePerStage = 9737, - - /// - /// less_damage_%_taken_from_non_player_sources - /// - LessDamagePctTakenFromNonPlayerSources = 9738, - - /// - /// less_damage_%_dealt_to_non_players - /// - LessDamagePctDealtToNonPlayers = 9739, - - /// - /// use_melee_pattern_range - /// - UseMeleePatternRange = 9740, - - /// - /// scale_melee_range_to_actor_scale - /// - ScaleMeleeRangeToActorScale = 9741, - - /// - /// chieftain_burning_damage_+%_final - /// - ChieftainBurningDamagePctFinal = 9742, - - /// - /// ancestor_totem_parent_activation_range_+% - /// - AncestorTotemParentActivationRangePct = 9743, - - /// - /// virtual_ancestor_totem_parent_activation_range - /// - VirtualAncestorTotemParentActivationRange = 9744, - - /// - /// ancestor_totem_buff_effect_+% - /// - AncestorTotemBuffEffectPct = 9745, - - /// - /// area_of_effect_+%_while_totem_active - /// - AreaOfEffectPctWhileTotemActive = 9746, - - /// - /// gain_endurance_charge_%_chance_on_using_fire_skill - /// - GainEnduranceChargePctChanceOnUsingFireSkill = 9747, - - /// - /// damage_+%_final_per_endurance_charge_lost_recently_up_to_15% - /// - DamagePctFinalPerEnduranceChargeLostRecentlyUpTo15Pct = 9748, - - /// - /// number_of_endurance_charges_lost_recently - /// - NumberOfEnduranceChargesLostRecently = 9749, - - /// - /// life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently - /// - LifeRecoveryRatePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 9750, - - /// - /// virtual_main_hand_total_attack_distance_+ - /// - VirtualMainHandTotalAttackDistance = 9751, - - /// - /// virtual_off_hand_total_attack_distance_+ - /// - VirtualOffHandTotalAttackDistance = 9752, - - /// - /// berserker_gain_rage_on_attack_hit_cooldown_ms - /// - BerserkerGainRageOnAttackHitCooldownMs = 9753, - - /// - /// chance_to_deal_double_damage_%_per_4_rage - /// - ChanceToDealDoubleDamagePctPer4Rage = 9754, - - /// - /// life_loss_%_per_minute_per_rage_while_not_losing_rage - /// - LifeLossPctPerMinutePerRageWhileNotLosingRage = 9755, - - /// - /// berserker_warcry_grant_damage_+%_to_you_and_nearby_allies - /// - BerserkerWarcryGrantDamagePctToYouAndNearbyAllies = 9756, - - /// - /// berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies - /// - BerserkerWarcryGrantAttackSpeedPctToYouAndNearbyAllies = 9757, - - /// - /// maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently - /// - MaximumLifeLeechRatePctIfHaveTakenASavageHitRecently = 9758, - - /// - /// attack_speed_+%_if_have_been_hit_recently - /// - AttackSpeedPctIfHaveBeenHitRecently = 9759, - - /// - /// attack_minimum_added_physical_damage_if_have_crit_recently - /// - AttackMinimumAddedPhysicalDamageIfHaveCritRecently = 9760, - - /// - /// attack_maximum_added_physical_damage_if_have_crit_recently - /// - AttackMaximumAddedPhysicalDamageIfHaveCritRecently = 9761, - - /// - /// gain_blitz_charge_%_chance_on_crit - /// - GainBlitzChargePctChanceOnCrit = 9762, - - /// - /// attack_speed_+%_final_per_blitz_charge - /// - AttackSpeedPctFinalPerBlitzCharge = 9763, - - /// - /// critical_strike_chance_+%_per_blitz_charge - /// - CriticalStrikeChancePctPerBlitzCharge = 9764, - - /// - /// maximum_blitz_charges - /// - MaximumBlitzCharges = 9765, - - /// - /// current_blitz_charges - /// - CurrentBlitzCharges = 9766, - - /// - /// virtual_should_not_lose_rage - /// - VirtualShouldNotLoseRage = 9767, - - /// - /// virtual_not_losing_rage - /// - VirtualNotLosingRage = 9768, - - /// - /// keystone_strength_of_blood - /// - KeystoneStrengthOfBlood = 9769, - - /// - /// double_slash_bleeding_damage_+%_final_in_blood_stance - /// - DoubleSlashBleedingDamagePctFinalInBloodStance = 9770, - - /// - /// totem_damage_+%_per_10_devotion - /// - TotemDamagePctPer10Devotion = 9771, - - /// - /// sigil_damage_+%_per_10_devotion - /// - SigilDamagePctPer10Devotion = 9772, - - /// - /// channelled_skill_damage_+%_per_10_devotion - /// - ChannelledSkillDamagePctPer10Devotion = 9773, - - /// - /// area_damage_+%_per_10_devotion - /// - AreaDamagePctPer10Devotion = 9774, - - /// - /// elemental_damage_+%_per_10_devotion - /// - ElementalDamagePctPer10Devotion = 9775, - - /// - /// elemental_resistance_%_per_10_devotion - /// - ElementalResistancePctPer10Devotion = 9776, - - /// - /// non_damaging_ailment_effect_+%_per_10_devotion - /// - NonDamagingAilmentEffectPctPer10Devotion = 9777, - - /// - /// self_elemental_status_duration_-%_per_10_devotion - /// - SelfElementalStatusDurationPctPer10Devotion = 9778, - - /// - /// self_curse_duration_+%_per_10_devotion - /// - SelfCurseDurationPctPer10Devotion = 9779, - - /// - /// minion_attack_and_cast_speed_+%_per_10_devotion - /// - MinionAttackAndCastSpeedPctPer10Devotion = 9780, - - /// - /// minion_accuracy_rating_per_10_devotion - /// - MinionAccuracyRatingPer10Devotion = 9781, - - /// - /// mana_regeneration_rate_per_minute_per_10_devotion - /// - ManaRegenerationRatePerMinutePer10Devotion = 9782, - - /// - /// mana_cost_+%_per_10_devotion - /// - ManaCostPctPer10Devotion = 9783, - - /// - /// non_curse_aura_effect_+%_per_10_devotion - /// - NonCurseAuraEffectPctPer10Devotion = 9784, - - /// - /// shield_defences_+%_per_10_devotion - /// - ShieldDefencesPctPer10Devotion = 9785, - - /// - /// physical_damage_%_to_convert_to_fire_at_devotion_threshold - /// - PhysicalDamagePctToConvertToFireAtDevotionThreshold = 9786, - - /// - /// physical_damage_%_to_convert_to_cold_at_devotion_threshold - /// - PhysicalDamagePctToConvertToColdAtDevotionThreshold = 9787, - - /// - /// physical_damage_%_to_convert_to_lightning_at_devotion_threshold - /// - PhysicalDamagePctToConvertToLightningAtDevotionThreshold = 9788, - - /// - /// mana_%_to_add_as_energy_shield_at_devotion_threshold - /// - ManaPctToAddAsEnergyShieldAtDevotionThreshold = 9789, - - /// - /// gain_arcane_surge_on_hit_at_devotion_threshold - /// - GainArcaneSurgeOnHitAtDevotionThreshold = 9790, - - /// - /// minimum_endurance_charges_at_devotion_threshold - /// - MinimumEnduranceChargesAtDevotionThreshold = 9791, - - /// - /// minimum_power_charges_at_devotion_threshold - /// - MinimumPowerChargesAtDevotionThreshold = 9792, - - /// - /// minimum_frenzy_charges_at_devotion_threshold - /// - MinimumFrenzyChargesAtDevotionThreshold = 9793, - - /// - /// immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold - /// - ImmuneToElementalAilmentsWhileOnConsecratedGroundAtDevotionThreshold = 9794, - - /// - /// physical_damage_reduction_%_at_devotion_threshold - /// - PhysicalDamageReductionPctAtDevotionThreshold = 9795, - - /// - /// additional_maximum_all_resistances_%_at_devotion_threshold - /// - AdditionalMaximumAllResistancesPctAtDevotionThreshold = 9796, - - /// - /// inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold - /// - InflictFireExposureOnHitPctChanceAtDevotionThreshold = 9797, - - /// - /// inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold - /// - InflictColdExposureOnHitPctChanceAtDevotionThreshold = 9798, - - /// - /// inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold - /// - InflictLightningExposureOnHitPctChanceAtDevotionThreshold = 9799, - - /// - /// combined_shield_defences_+% - /// - CombinedShieldDefencesPct = 9800, - - /// - /// virtual_totem_damage_+% - /// - VirtualTotemDamagePct = 9801, - - /// - /// virtual_sigil_damage_+% - /// - VirtualSigilDamagePct = 9802, - - /// - /// virtual_channelled_skill_damage_+% - /// - VirtualChannelledSkillDamagePct = 9803, - - /// - /// virtual_additional_maximum_all_resistances_% - /// - VirtualAdditionalMaximumAllResistancesPct = 9804, - - /// - /// virtual_non_damaging_ailment_effect_+% - /// - VirtualNonDamagingAilmentEffectPct = 9805, - - /// - /// virtual_self_elemental_status_duration_-% - /// - VirtualSelfElementalStatusDurationPct = 9806, - - /// - /// virtual_self_curse_duration_+% - /// - VirtualSelfCurseDurationPct = 9807, - - /// - /// virtual_minion_accuracy_rating - /// - VirtualMinionAccuracyRating = 9808, - - /// - /// virtual_gain_arcane_surge_on_hit_%_chance - /// - VirtualGainArcaneSurgeOnHitPctChance = 9809, - - /// - /// virtual_inflict_fire_exposure_on_hit_%_chance - /// - VirtualInflictFireExposureOnHitPctChance = 9810, - - /// - /// virtual_inflict_cold_exposure_on_hit_%_chance - /// - VirtualInflictColdExposureOnHitPctChance = 9811, - - /// - /// virtual_inflict_lightning_exposure_on_hit_%_chance - /// - VirtualInflictLightningExposureOnHitPctChance = 9812, - - /// - /// monster_life_+%_final_from_rarity_table - /// - MonsterLifePctFinalFromRarityTable = 9813, - - /// - /// keystone_mortal_conviction - /// - KeystoneMortalConviction = 9814, - - /// - /// keystone_supreme_ego - /// - KeystoneSupremeEgo = 9815, - - /// - /// virtual_no_mana_reserved - /// - VirtualNoManaReserved = 9816, - - /// - /// life_leech_on_any_damage_when_hit_by_attack_permyriad - /// - LifeLeechOnAnyDamageWhenHitByAttackPermyriad = 9817, - - /// - /// mana_leech_on_any_damage_when_hit_by_attack_permyriad - /// - ManaLeechOnAnyDamageWhenHitByAttackPermyriad = 9818, - - /// - /// legion_reward_type_index - /// - LegionRewardTypeIndex = 9819, - - /// - /// slayer_damage_+%_final_against_unique_enemies - /// - SlayerDamagePctFinalAgainstUniqueEnemies = 9820, - - /// - /// damage_+%_final_from_slayer - /// - DamagePctFinalFromSlayer = 9821, - - /// - /// gain_movement_speed_+%_for_20_seconds_on_kill - /// - GainMovementSpeedPctFor20SecondsOnKill = 9822, - - /// - /// gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy - /// - GainAttackSpeedPctFor20SecondsOnKillingRareOrUniqueEnemy = 9823, - - /// - /// damage_taken_+%_while_leeching - /// - DamageTakenPctWhileLeeching = 9824, - - /// - /// attack_damage_+%_while_leeching - /// - AttackDamagePctWhileLeeching = 9825, - - /// - /// slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50% - /// - SlayerAreaOfEffectPctPerEnemyKilledRecentlyUpTo50Pct = 9826, - - /// - /// area_skill_accuracy_rating_+% - /// - AreaSkillAccuracyRatingPct = 9827, - - /// - /// maximum_endurance_charges_is_equal_to_maximum_frenzy_charges - /// - MaximumEnduranceChargesIsEqualToMaximumFrenzyCharges = 9828, - - /// - /// override_weapon_base_critical_strike_chance - /// - OverrideWeaponBaseCriticalStrikeChance = 9829, - - /// - /// slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100 - /// - SlayerCriticalStrikeMultiplierPerNearbyEnemyUpTo100 = 9830, - - /// - /// track_number_of_enemies_killed_recently - /// - TrackNumberOfEnemiesKilledRecently = 9831, - - /// - /// skill_is_area_skill - /// - SkillIsAreaSkill = 9832, - - /// - /// evasion_rating_+%_when_on_full_life - /// - EvasionRatingPctWhenOnFullLife = 9833, - - /// - /// flicker_strike_buff_movement_speed_+% - /// - FlickerStrikeBuffMovementSpeedPct = 9834, - - /// - /// flicker_strike_buff_duration_ms - /// - FlickerStrikeBuffDurationMs = 9835, - - /// - /// pride_physical_damage_taken_+%_final - /// - PridePhysicalDamageTakenPctFinal = 9836, - - /// - /// kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms - /// - KaomsPrimacyGainRageOnAttackCritCooldownMs = 9837, - - /// - /// physical_damage_%_to_add_as_fire_per_rage - /// - PhysicalDamagePctToAddAsFirePerRage = 9838, - - /// - /// deal_double_damage_to_enemies_on_full_life - /// - DealDoubleDamageToEnemiesOnFullLife = 9839, - - /// - /// skill_is_guard_skill - /// - SkillIsGuardSkill = 9840, - - /// - /// skill_is_travel_skill - /// - SkillIsTravelSkill = 9841, - - /// - /// critical_strike_multiplier_is_300 - /// - CriticalStrikeMultiplierIs300 = 9842, - - /// - /// spell_cast_time_cannot_be_modified - /// - SpellCastTimeCannotBeModified = 9843, - - /// - /// dual_strike_critical_strike_chance_+%_final - /// - DualStrikeCriticalStrikeChancePctFinal = 9844, - - /// - /// dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life - /// - DualStrikeCriticalStrikeChancePctFinalAgainstEnemiesOnFullLife = 9845, - - /// - /// dual_strike_damage_+%_final - /// - DualStrikeDamagePctFinal = 9846, - - /// - /// dual_strike_damage_+%_final_against_enemies_on_full_life - /// - DualStrikeDamagePctFinalAgainstEnemiesOnFullLife = 9847, - - /// - /// puncture_bleeding_damage_+%_final - /// - PunctureBleedingDamagePctFinal = 9848, - - /// - /// withered_on_hit_for_2_seconds_%_chance - /// - WitheredOnHitFor2SecondsPctChance = 9849, - - /// - /// melee_defer_damage_prediction - /// - MeleeDeferDamagePrediction = 9850, - - /// - /// frenzy_skill_attack_damage_+%_final_per_frenzy_charge - /// - FrenzySkillAttackDamagePctFinalPerFrenzyCharge = 9851, - - /// - /// frenzy_skill_attack_speed_+%_final_per_frenzy_charge - /// - FrenzySkillAttackSpeedPctFinalPerFrenzyCharge = 9852, - - /// - /// prevent_incubator_completion - /// - PreventIncubatorCompletion = 9853, - - /// - /// local_chance_for_poison_damage_+300%_final_inflicted_with_weapon - /// - LocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9854, - - /// - /// support_rage_gain_rage_on_melee_hit_cooldown_ms - /// - SupportRageGainRageOnMeleeHitCooldownMs = 9855, - - /// - /// cannot_gain_rage_from_rage_support - /// - CannotGainRageFromRageSupport = 9856, - - /// - /// cannot_gain_rage_from_berserker - /// - CannotGainRageFromBerserker = 9857, - - /// - /// cannot_gain_rage_from_kaoms_primacy - /// - CannotGainRageFromKaomsPrimacy = 9858, - - /// - /// attack_minimum_added_physical_damage_with_at_least_10_rage - /// - AttackMinimumAddedPhysicalDamageWithAtLeast10Rage = 9859, - - /// - /// attack_maximum_added_physical_damage_with_at_least_10_rage - /// - AttackMaximumAddedPhysicalDamageWithAtLeast10Rage = 9860, - - /// - /// attack_minimum_added_physical_damage_per_10_rage - /// - AttackMinimumAddedPhysicalDamagePer10Rage = 9861, - - /// - /// attack_maximum_added_physical_damage_per_10_rage - /// - AttackMaximumAddedPhysicalDamagePer10Rage = 9862, - - /// - /// local_display_socketed_gems_supported_by_level_x_pulverise - /// - LocalDisplaySocketedGemsSupportedByLevelXPulverise = 9863, - - /// - /// local_display_socketed_gems_supported_by_level_x_rage - /// - LocalDisplaySocketedGemsSupportedByLevelXRage = 9864, - - /// - /// force_old_melee_behaviour - /// - ForceOldMeleeBehaviour = 9865, - - /// - /// maximum_challenger_charges - /// - MaximumChallengerCharges = 9866, - - /// - /// current_challenger_charges - /// - CurrentChallengerCharges = 9867, - - /// - /// gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance - /// - GainChallengerChargePctChanceOnHittingRareOrUniqueEnemyInBloodStance = 9868, - - /// - /// gain_challenger_charge_%_chance_on_kill_in_sand_stance - /// - GainChallengerChargePctChanceOnKillInSandStance = 9869, - - /// - /// attack_and_movement_speed_+%_final_per_challenger_charge - /// - AttackAndMovementSpeedPctFinalPerChallengerCharge = 9870, - - /// - /// local_display_grants_skill_pride_level - /// - LocalDisplayGrantsSkillPrideLevel = 9871, - - /// - /// pride_mana_reservation_+% - /// - PrideManaReservationPct = 9872, - - /// - /// pride_aura_effect_+% - /// - PrideAuraEffectPct = 9873, - - /// - /// pride_reserves_no_mana - /// - PrideReservesNoMana = 9874, - - /// - /// pride_chance_to_deal_double_damage_% - /// - PrideChanceToDealDoubleDamagePct = 9875, - - /// - /// pride_intimidate_enemy_for_4_seconds_on_hit - /// - PrideIntimidateEnemyFor4SecondsOnHit = 9876, - - /// - /// pride_physical_damage_+% - /// - PridePhysicalDamagePct = 9877, - - /// - /// pride_chance_to_impale_with_attacks_% - /// - PrideChanceToImpaleWithAttacksPct = 9878, - - /// - /// virtual_impaled_debuff_number_of_reflected_hits - /// - VirtualImpaledDebuffNumberOfReflectedHits = 9879, - - /// - /// pride_your_impaled_debuff_lasts_+_additional_hits - /// - PrideYourImpaledDebuffLastsAdditionalHits = 9880, - - /// - /// using_pride - /// - UsingPride = 9881, - - /// - /// main_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon - /// - MainHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9882, - - /// - /// main_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon - /// - MainHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9883, - - /// - /// main_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon - /// - MainHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9884, - - /// - /// off_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon - /// - OffHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9885, - - /// - /// off_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon - /// - OffHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9886, - - /// - /// off_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon - /// - OffHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9887, - - /// - /// cyclone_max_number_of_stages - /// - CycloneMaxNumberOfStages = 9888, - - /// - /// display_modifiers_to_melee_attack_range_apply_to_skill_radius - /// - DisplayModifiersToMeleeAttackRangeApplyToSkillRadius = 9889, - - /// - /// support_fortify_ailment_damage_+%_final_from_melee_hits - /// - SupportFortifyAilmentDamagePctFinalFromMeleeHits = 9890, - - /// - /// support_fortify_melee_damage_+%_final - /// - SupportFortifyMeleeDamagePctFinal = 9891, - - /// - /// monster_aggro_radius_+%_against_non_player_team - /// - MonsterAggroRadiusPctAgainstNonPlayerTeam = 9892, - - /// - /// map_essence_monolith_contains_additional_essence_of_corruption - /// - MapEssenceMonolithContainsAdditionalEssenceOfCorruption = 9893, - - /// - /// slayer_damage_+%_final_from_distance - /// - SlayerDamagePctFinalFromDistance = 9894, - - /// - /// glacial_hammer_third_hit_freeze_as_though_dealt_damage_+% - /// - GlacialHammerThirdHitFreezeAsThoughDealtDamagePct = 9895, - - /// - /// staff_elemental_damage_+% - /// - StaffElementalDamagePct = 9896, - - /// - /// map_essence_monolith_contains_essence_of_corruption_% - /// - MapEssenceMonolithContainsEssenceOfCorruptionPct = 9897, - - /// - /// supported_skill_can_only_use_axe_and_sword - /// - SupportedSkillCanOnlyUseAxeAndSword = 9898, - - /// - /// supported_skill_can_only_use_mace_and_staff - /// - SupportedSkillCanOnlyUseMaceAndStaff = 9899, - - /// - /// ratio_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad - /// - RatioDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9900, - - /// - /// ratio_nonlethal_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad - /// - RatioNonlethalDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9901, - - /// - /// virtual_mana_degeneration_per_minute - /// - VirtualManaDegenerationPerMinute = 9902, - - /// - /// local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius - /// - LocalUniqueJewelSpectralShieldThrowAdditionalChainsWithTotal40StrDexInRadius = 9903, - - /// - /// local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius - /// - LocalUniqueJewelSpectralShieldThrowFireShardsOnChainWithTotal40StrDexInRadius = 9904, - - /// - /// local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius - /// - LocalUniqueJewelSpectralShieldThrowLessShardProjectilesWithTotal40StrDexInRadius = 9905, - - /// - /// spectral_shield_throw_additional_chains - /// - SpectralShieldThrowAdditionalChains = 9906, - - /// - /// repeat_target_selection_distance_from_initial_target_bias - /// - RepeatTargetSelectionDistanceFromInitialTargetBias = 9907, - - /// - /// spectral_shield_throw_fire_shards_on_chain - /// - SpectralShieldThrowFireShardsOnChain = 9908, - - /// - /// spectral_shield_throw_shard_projectiles_+%_final - /// - SpectralShieldThrowShardProjectilesPctFinal = 9909, - - /// - /// number_of_projectiles_+%_final_from_skill - /// - NumberOfProjectilesPctFinalFromSkill = 9910, - - /// - /// earthquake_aftershock_minimum_added_physical_damage - /// - EarthquakeAftershockMinimumAddedPhysicalDamage = 9911, - - /// - /// earthquake_aftershock_maximum_added_physical_damage - /// - EarthquakeAftershockMaximumAddedPhysicalDamage = 9912, - - /// - /// attack_speed_+%_with_channelling_skills - /// - AttackSpeedPctWithChannellingSkills = 9913, - - /// - /// attack_dodge_%_while_channelling - /// - AttackDodgePctWhileChannelling = 9914, - - /// - /// attack_damage_+%_while_channelling - /// - AttackDamagePctWhileChannelling = 9915, - - /// - /// gain_endurance_charge_%_when_hit_while_channelling - /// - GainEnduranceChargePctWhenHitWhileChannelling = 9916, - - /// - /// gain_frenzy_charge_%_when_hit_while_channelling - /// - GainFrenzyChargePctWhenHitWhileChannelling = 9917, - - /// - /// armour_+_while_affected_by_guard_skill - /// - ArmourWhileAffectedByGuardSkill = 9918, - - /// - /// additional_physical_damage_reduction_%_while_affected_by_guard_skill - /// - AdditionalPhysicalDamageReductionPctWhileAffectedByGuardSkill = 9919, - - /// - /// life_regeneration_per_minute_%_while_affected_by_guard_skill - /// - LifeRegenerationPerMinutePctWhileAffectedByGuardSkill = 9920, - - /// - /// guard_skill_cooldown_recovery_+% - /// - GuardSkillCooldownRecoveryPct = 9921, - - /// - /// melee_range_+_with_staff - /// - MeleeRangeWithStaff = 9922, - - /// - /// melee_range_+_with_axe - /// - MeleeRangeWithAxe = 9923, - - /// - /// melee_range_+_with_sword - /// - MeleeRangeWithSword = 9924, - - /// - /// melee_range_+_with_mace - /// - MeleeRangeWithMace = 9925, - - /// - /// melee_range_+_with_dagger - /// - MeleeRangeWithDagger = 9926, - - /// - /// melee_range_+_with_claw - /// - MeleeRangeWithClaw = 9927, - - /// - /// melee_range_+_with_one_handed - /// - MeleeRangeWithOneHanded = 9928, - - /// - /// melee_range_+_with_two_handed - /// - MeleeRangeWithTwoHanded = 9929, - - /// - /// melee_range_+_while_dual_wielding - /// - MeleeRangeWhileDualWielding = 9930, - - /// - /// melee_range_+_while_wielding_shield - /// - MeleeRangeWhileWieldingShield = 9931, - - /// - /// affected_by_guard_skill - /// - AffectedByGuardSkill = 9932, - - /// - /// attack_damage_+%_with_channelling_skills - /// - AttackDamagePctWithChannellingSkills = 9933, - - /// - /// owning_player_maximum_life - /// - OwningPlayerMaximumLife = 9934, - - /// - /// display_this_skill_cooldown_does_not_recover_during_buff - /// - DisplayThisSkillCooldownDoesNotRecoverDuringBuff = 9935, - - /// - /// local_display_socketed_gems_supported_by_level_x_close_combat - /// - LocalDisplaySocketedGemsSupportedByLevelXCloseCombat = 9936, - - /// - /// local_display_socketed_gems_supported_by_level_x_shockwave - /// - LocalDisplaySocketedGemsSupportedByLevelXShockwave = 9937, - - /// - /// berserk_base_rage_loss_per_second - /// - BerserkBaseRageLossPerSecond = 9938, - - /// - /// berserk_rage_loss_+%_per_second - /// - BerserkRageLossPctPerSecond = 9939, - - /// - /// berserk_base_damage_taken_+%_final - /// - BerserkBaseDamageTakenPctFinal = 9940, - - /// - /// map_num_extra_resonating_shrines - /// - MapNumExtraResonatingShrines = 9941, - - /// - /// map_num_extra_gloom_shrines - /// - MapNumExtraGloomShrines = 9942, - - /// - /// skill_angle_+%_in_sand_stance - /// - SkillAnglePctInSandStance = 9943, - - /// - /// support_storm_barrier_physical_damage_+%_final - /// - SupportStormBarrierPhysicalDamagePctFinal = 9944, - - /// - /// map_fragment_level_+ - /// - MapFragmentLevel = 9945, - - /// - /// support_slashing_buff_attack_cast_speed_+%_final_to_grant - /// - SupportSlashingBuffAttackCastSpeedPctFinalToGrant = 9946, - - /// - /// immortal_call_buff_effect_duration_+%_per_removable_endurance_charge - /// - ImmortalCallBuffEffectDurationPctPerRemovableEnduranceCharge = 9947, - - /// - /// monster_hide_minimap_icon - /// - MonsterHideMinimapIcon = 9948, - - /// - /// chain_strike_gain_x_rage_if_attack_hits - /// - ChainStrikeGainXRageIfAttackHits = 9949, - - /// - /// leap_slam_always_knockback_within_range - /// - LeapSlamAlwaysKnockbackWithinRange = 9950, - - /// - /// display_vaal_molten_shell_alternate_description - /// - DisplayVaalMoltenShellAlternateDescription = 9951, - - /// - /// life_recovery_per_minute_from_miracle_of_thaumaturgy_keystone - /// - LifeRecoveryPerMinuteFromMiracleOfThaumaturgyKeystone = 9952, - - /// - /// mana_loss_per_minute_from_miracle_of_thaumaturgy_keystone - /// - ManaLossPerMinuteFromMiracleOfThaumaturgyKeystone = 9953, - - /// - /// total_loss_life_per_minute - /// - TotalLossLifePerMinute = 9954, - - /// - /// no_current_mana - /// - NoCurrentMana = 9955, - - /// - /// molten_shell_max_damage_absorbed - /// - MoltenShellMaxDamageAbsorbed = 9956, - - /// - /// molten_shell_duration_+% - /// - MoltenShellDurationPct = 9957, - - /// - /// shield_charge_attack_time_+30%_if_no_charge - /// - ShieldChargeAttackTime30PctIfNoCharge = 9958, - - /// - /// area_of_effect_+%_while_wielding_bow - /// - AreaOfEffectPctWhileWieldingBow = 9959, - - /// - /// cast_speed_+%_while_holding_bow - /// - CastSpeedPctWhileHoldingBow = 9960, - - /// - /// chance_to_poison_on_critical_strike_with_bow_% - /// - ChanceToPoisonOnCriticalStrikeWithBowPct = 9961, - - /// - /// darkness_damage_taken_per_minute_towards_life_damaging_es - /// - DarknessDamageTakenPerMinuteTowardsLifeDamagingEs = 9962, - - /// - /// darkness_damage_taken_per_minute_towards_mana_damaging_es - /// - DarknessDamageTakenPerMinuteTowardsManaDamagingEs = 9963, - - /// - /// triggered_by_shockwave_support - /// - TriggeredByShockwaveSupport = 9964, - - /// - /// force_lite_skill_effects - /// - ForceLiteSkillEffects = 9965, - - /// - /// map_blight_league - /// - MapBlightLeague = 9966, - - /// - /// attack_is_melee_override - /// - AttackIsMeleeOverride = 9967, - - /// - /// quick_guard_additional_physical_damage_reduction_% - /// - QuickGuardAdditionalPhysicalDamageReductionPct = 9968, - - /// - /// quick_dodge_travel_distance_+% - /// - QuickDodgeTravelDistancePct = 9969, - - /// - /// bladestorm_sandstorm_movement_speed_+% - /// - BladestormSandstormMovementSpeedPct = 9970, - - /// - /// bladestorm_damage_+% - /// - BladestormDamagePct = 9971, - - /// - /// blood_sand_stance_buff_effect_+% - /// - BloodSandStanceBuffEffectPct = 9972, - - /// - /// blood_spears_area_of_effect_+% - /// - BloodSpearsAreaOfEffectPct = 9973, - - /// - /// blood_spears_damage_+% - /// - BloodSpearsDamagePct = 9974, - - /// - /// ice_dash_cooldown_speed_+% - /// - IceDashCooldownSpeedPct = 9975, - - /// - /// ice_dash_travel_distance_+% - /// - IceDashTravelDistancePct = 9976, - - /// - /// blood_sand_armour_mana_reservation_+% - /// - BloodSandArmourManaReservationPct = 9977, - - /// - /// chain_strike_gain_rage_on_hit_%_chance - /// - ChainStrikeGainRageOnHitPctChance = 9978, - - /// - /// chain_strike_cone_radius_+_per_12_rage - /// - ChainStrikeConeRadiusPer12Rage = 9979, - - /// - /// chain_strike_damage_+% - /// - ChainStrikeDamagePct = 9980, - - /// - /// energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath - /// - EnergyShieldLeechFromLightningDamagePermyriadWhileAffectedByWrath = 9981, - - /// - /// base_added_cooldown_count - /// - BaseAddedCooldownCount = 9982, - - /// - /// quick_dodge_added_cooldown_count - /// - QuickDodgeAddedCooldownCount = 9983, - - /// - /// corpse_can_explode_on_death - /// - CorpseCanExplodeOnDeath = 9984, - - /// - /// berserk_buff_effect_+% - /// - BerserkBuffEffectPct = 9985, - - /// - /// secondary_imp_variation - /// - SecondaryImpVariation = 9986, - - /// - /// go_away_other_leagues - /// - GoAwayOtherLeagues = 9987, - - /// - /// berserk_rage_loss_+% - /// - BerserkRageLossPct = 9988, - - /// - /// virtual_berserk_hundred_times_rage_loss_per_second - /// - VirtualBerserkHundredTimesRageLossPerSecond = 9989, - - /// - /// virtual_steelskin_damage_%_taken_to_buff - /// - VirtualSteelskinDamagePctTakenToBuff = 9990, - - /// - /// virtual_steelskin_damage_limit - /// - VirtualSteelskinDamageLimit = 9991, - - /// - /// steelskin_damage_limit_+% - /// - SteelskinDamageLimitPct = 9992, - - /// - /// map_normal_monster_life_regeneration_rate_per_minute_% - /// - MapNormalMonsterLifeRegenerationRatePerMinutePct = 9993, - - /// - /// map_magic_monster_life_regeneration_rate_per_minute_% - /// - MapMagicMonsterLifeRegenerationRatePerMinutePct = 9994, - - /// - /// map_rare_monster_life_regeneration_rate_per_minute_% - /// - MapRareMonsterLifeRegenerationRatePerMinutePct = 9995, - - /// - /// virtual_mine_throwing_speed_+% - /// - VirtualMineThrowingSpeedPct = 9996, - - /// - /// support_minefield_mine_throwing_speed_+%_final - /// - SupportMinefieldMineThrowingSpeedPctFinal = 9997, - - /// - /// bone_golem_grants_minion_minimum_added_physical_damage - /// - BoneGolemGrantsMinionMinimumAddedPhysicalDamage = 9998, - - /// - /// bone_golem_grants_minion_maximum_added_physical_damage - /// - BoneGolemGrantsMinionMaximumAddedPhysicalDamage = 9999, - - /// - /// bone_golem_damage_+%_final_per_non_golem_minion_nearby - /// - BoneGolemDamagePctFinalPerNonGolemMinionNearby = 10000, - - /// - /// bone_golem_damage_per_non_golem_minion_nearby_maximum_% - /// - BoneGolemDamagePerNonGolemMinionNearbyMaximumPct = 10001, - - /// - /// bone_golem_attack_speed_+%_final_after_third_combo_index - /// - BoneGolemAttackSpeedPctFinalAfterThirdComboIndex = 10002, - - /// - /// bone_golem_damage_+%_final_after_third_combo_index - /// - BoneGolemDamagePctFinalAfterThirdComboIndex = 10003, - - /// - /// enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently - /// - EnchantmentBootsManaRegenerationRatePctIfCastSpellRecently = 10004, - - /// - /// damage_+%_final_per_non_golem_minion_nearby - /// - DamagePctFinalPerNonGolemMinionNearby = 10005, - - /// - /// number_of_nearby_non_golem_minions - /// - NumberOfNearbyNonGolemMinions = 10006, - - /// - /// energy_shield_leech_permyriad_vs_frozen_enemies - /// - EnergyShieldLeechPermyriadVsFrozenEnemies = 10007, - - /// - /// attack_skill_mana_leech_from_any_damage_permyriad - /// - AttackSkillManaLeechFromAnyDamagePermyriad = 10008, - - /// - /// slither_wither_every_ms - /// - SlitherWitherEveryMs = 10009, - - /// - /// avoid_all_elemental_ailment_%_per_summoned_golem - /// - AvoidAllElementalAilmentPctPerSummonedGolem = 10010, - - /// - /// virtual_avoid_all_elemental_ailment_% - /// - VirtualAvoidAllElementalAilmentPct = 10011, - - /// - /// map_monstrous_treasure_no_monsters - /// - MapMonstrousTreasureNoMonsters = 10012, - - /// - /// guardian_with_nearby_ally_damage_+%_final_for_you_and_allies - /// - GuardianWithNearbyAllyDamagePctFinalForYouAndAllies = 10013, - - /// - /// damage_+%_final_from_guardian_aura - /// - DamagePctFinalFromGuardianAura = 10014, - - /// - /// guardian_with_5_nearby_allies_you_and_allies_have_onslaught - /// - GuardianWith5NearbyAlliesYouAndAlliesHaveOnslaught = 10015, - - /// - /// virtual_attack_cast_movement_speed_+% - /// - VirtualAttackCastMovementSpeedPct = 10016, - - /// - /// attack_cast_movement_speed_+% - /// - AttackCastMovementSpeedPct = 10017, - - /// - /// poison_on_critical_strike - /// - PoisonOnCriticalStrike = 10018, - - /// - /// number_of_nearby_corpses - /// - NumberOfNearbyCorpses = 10019, - - /// - /// track_number_of_nearby_corpses - /// - TrackNumberOfNearbyCorpses = 10020, - - /// - /// necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse - /// - NecromancerDamagePctForNearbyEnemiesWithNearbyCorpse = 10021, - - /// - /// necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse - /// - NecromancerDamagePctFinalForYouAndAlliesWithNearbyCorpse = 10022, - - /// - /// damage_+%_final_from_necromancer_aura - /// - DamagePctFinalFromNecromancerAura = 10023, - - /// - /// minion_area_of_effect_+% - /// - MinionAreaOfEffectPct = 10024, - - /// - /// area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently - /// - AreaOfEffectPctForYouAndMinionsIfConsumedCorpseRecently = 10025, - - /// - /// necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse - /// - NecromancerManaRegenerationRatePerMinuteForYouAndAlliesPerNearbyCorpse = 10026, - - /// - /// necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse - /// - NecromancerEnergyShieldRegenerationRatePerMinutePctForYouAndAlliesPerNearbyCorpse = 10027, - - /// - /// regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse - /// - RegeneratePctMaximumManaOver2SecondsOnConsumingCorpse = 10028, - - /// - /// regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse - /// - RegeneratePctMaximumEnergyShieldOver2SecondsOnConsumingCorpse = 10029, - - /// - /// maximum_life_+%_for_corpses_you_create - /// - MaximumLifePctForCorpsesYouCreate = 10030, - - /// - /// enemies_near_corpses_created_recently_are_shocked_and_chilled - /// - EnemiesNearCorpsesCreatedRecentlyAreShockedAndChilled = 10031, - - /// - /// cannot_be_splashed_from - /// - CannotBeSplashedFrom = 10032, - - /// - /// display_item_generation_can_roll_minion_affixes - /// - DisplayItemGenerationCanRollMinionAffixes = 10033, - - /// - /// corrosive_shroud_gains_%_of_damage_from_inflicted_poisons - /// - CorrosiveShroudGainsPctOfDamageFromInflictedPoisons = 10034, - - /// - /// corrosive_shroud_maximum_stored_poison_damage - /// - CorrosiveShroudMaximumStoredPoisonDamage = 10035, - - /// - /// corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second - /// - CorrosiveShroudPctOfStoredPoisonDamageToDealPerSecond = 10036, - - /// - /// movement_velocity_+%_while_at_maximum_power_charges - /// - MovementVelocityPctWhileAtMaximumPowerCharges = 10037, - - /// - /// damage_vs_enemies_on_low_life_+%_final - /// - DamageVsEnemiesOnLowLifePctFinal = 10038, - - /// - /// damage_+%_final_from_enemies_on_low_life - /// - DamagePctFinalFromEnemiesOnLowLife = 10039, - - /// - /// self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby - /// - SelfTakeNoExtraDamageFromCriticalStrikesIfThereIsAtMost1RareOrUniqueEnemyNearby = 10040, - - /// - /// damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby - /// - DamagePctFinalIfThereIsAtMost1RareOrUniqueEnemyNearby = 10041, - - /// - /// damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby - /// - DamageTakenPctIfThereAreAtLeast2RareOrUniqueEnemiesNearby = 10042, - - /// - /// support_remote_mine_damage_+%_final_per_mine_detonation_cascade - /// - SupportRemoteMineDamagePctFinalPerMineDetonationCascade = 10043, - - /// - /// damage_+%_final_from_mine_detonation_cascade - /// - DamagePctFinalFromMineDetonationCascade = 10044, - - /// - /// bone_armour_cooldown_does_not_tick - /// - BoneArmourCooldownDoesNotTick = 10045, - - /// - /// minion_larger_aggro_radius - /// - MinionLargerAggroRadius = 10046, - - /// - /// grant_puppet_master_buff_to_parent_on_hit_% - /// - GrantPuppetMasterBuffToParentOnHitPct = 10047, - - /// - /// minion_grant_puppet_master_buff_to_parent_on_hit_% - /// - MinionGrantPuppetMasterBuffToParentOnHitPct = 10048, - - /// - /// support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master - /// - SupportMinionOffensiveStanceMinionDamagePctFinalWhileYouHavePuppetMaster = 10049, - - /// - /// has_puppet_master - /// - HasPuppetMaster = 10050, - - /// - /// puppet_master_minion_damage_+%_final - /// - PuppetMasterMinionDamagePctFinal = 10051, - - /// - /// virtual_minion_damage_+%_final - /// - VirtualMinionDamagePctFinal = 10052, - - /// - /// puppet_master_duration_ms - /// - PuppetMasterDurationMs = 10053, - - /// - /// puppet_master_base_duration_ms - /// - PuppetMasterBaseDurationMs = 10054, - - /// - /// have_impaled_recently - /// - HaveImpaledRecently = 10055, - - /// - /// track_have_impaled_recently - /// - TrackHaveImpaledRecently = 10056, - - /// - /// minion_chance_to_gain_onslaught_on_kill_for_4_seconds_% - /// - MinionChanceToGainOnslaughtOnKillFor4SecondsPct = 10057, - - /// - /// minion_no_extra_bleed_damage_while_moving - /// - MinionNoExtraBleedDamageWhileMoving = 10058, - - /// - /// minion_maximum_life_%_to_add_as_maximum_energy_shield - /// - MinionMaximumLifePctToAddAsMaximumEnergyShield = 10059, - - /// - /// minion_additional_spell_block_% - /// - MinionAdditionalSpellBlockPct = 10060, - - /// - /// virtual_minion_area_of_effect_+% - /// - VirtualMinionAreaOfEffectPct = 10061, - - /// - /// minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently - /// - MinionAreaOfEffectPctIfYouHaveCastAMinionSkillRecently = 10062, - - /// - /// chance_to_gain_unholy_might_on_kill_for_4_seconds_% - /// - ChanceToGainUnholyMightOnKillFor4SecondsPct = 10063, - - /// - /// minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_% - /// - MinionChanceToGainUnholyMightOnKillFor4SecondsPct = 10064, - - /// - /// damage_+%_while_you_have_a_summoned_golem - /// - DamagePctWhileYouHaveASummonedGolem = 10065, - - /// - /// fire_hit_damage_taken_%_as_physical - /// - FireHitDamageTakenPctAsPhysical = 10066, - - /// - /// base_fire_hit_damage_taken_%_as_physical_value_negated - /// - BaseFireHitDamageTakenPctAsPhysicalValueNegated = 10067, - - /// - /// base_fire_hit_damage_taken_%_as_physical - /// - BaseFireHitDamageTakenPctAsPhysical = 10068, - - /// - /// serpent_strike_maximum_snakes - /// - SerpentStrikeMaximumSnakes = 10069, - - /// - /// affected_by_elusive - /// - AffectedByElusive = 10070, - - /// - /// slither_wither_radius - /// - SlitherWitherRadius = 10071, - - /// - /// arcane_surge_effect_+% - /// - ArcaneSurgeEffectPct = 10072, - - /// - /// arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50% - /// - ArcaneSurgeEffectPctPer200ManaSpentRecentlyUpTo50Pct = 10073, - - /// - /// mana_gained_on_spell_hit_vs_cursed_enemies - /// - ManaGainedOnSpellHitVsCursedEnemies = 10074, - - /// - /// recover_%_maximum_mana_on_killing_cursed_enemy - /// - RecoverPctMaximumManaOnKillingCursedEnemy = 10075, - - /// - /// remove_random_elemental_ailment_on_mana_flask_use - /// - RemoveRandomElementalAilmentOnManaFlaskUse = 10076, - - /// - /// remove_curse_on_mana_flask_use - /// - RemoveCurseOnManaFlaskUse = 10077, - - /// - /// spell_damage_+%_per_100_maximum_mana_up_to_60% - /// - SpellDamagePctPer100MaximumManaUpTo60Pct = 10078, - - /// - /// mana_regeneration_rate_+%_per_1%_spell_block_chance - /// - ManaRegenerationRatePctPer1PctSpellBlockChance = 10079, - - /// - /// flask_mana_charges_used_+% - /// - FlaskManaChargesUsedPct = 10080, - - /// - /// mana_flasks_gain_X_charges_every_3_seconds - /// - ManaFlasksGainXChargesEvery3Seconds = 10081, - - /// - /// mana_recovery_rate_+%_while_affected_by_a_mana_flask - /// - ManaRecoveryRatePctWhileAffectedByAManaFlask = 10082, - - /// - /// attack_and_cast_speed_+%_while_affected_by_a_mana_flask - /// - AttackAndCastSpeedPctWhileAffectedByAManaFlask = 10083, - - /// - /// using_mana_flask - /// - UsingManaFlask = 10084, - - /// - /// virtual_arcane_surge_effect_+% - /// - VirtualArcaneSurgeEffectPct = 10085, - - /// - /// skill_mana_cost_+_with_non_channelling_skills - /// - SkillManaCostWithNonChannellingSkills = 10086, - - /// - /// skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity - /// - SkillManaCostWithNonChannellingSkillsWhileAffectedByClarity = 10087, - - /// - /// mana_reservation_+%_with_skills_that_throw_mines - /// - ManaReservationPctWithSkillsThatThrowMines = 10088, - - /// - /// immune_to_ignite_and_shock - /// - ImmuneToIgniteAndShock = 10089, - - /// - /// mana_cost_+%_for_trap_skills - /// - ManaCostPctForTrapSkills = 10090, - - /// - /// minion_focussed_fire_target_id - /// - MinionFocussedFireTargetId = 10091, - - /// - /// support_minion_focus_fire_damage_+%_final_vs_focussed_target - /// - SupportMinionFocusFireDamagePctFinalVsFocussedTarget = 10092, - - /// - /// support_minion_use_focussed_target - /// - SupportMinionUseFocussedTarget = 10093, - - /// - /// damage_+%_final_from_support_minion_focus_fire - /// - DamagePctFinalFromSupportMinionFocusFire = 10094, - - /// - /// additional_critical_strike_chance_permyriad_while_affected_by_elusive - /// - AdditionalCriticalStrikeChancePermyriadWhileAffectedByElusive = 10095, - - /// - /// critical_strike_multiplier_+_while_affected_by_elusive - /// - CriticalStrikeMultiplierWhileAffectedByElusive = 10096, - - /// - /// gain_elusive_on_crit_%_chance - /// - GainElusiveOnCritPctChance = 10097, - - /// - /// supported_skill_can_only_use_dagger_and_claw - /// - SupportedSkillCanOnlyUseDaggerAndClaw = 10098, - - /// - /// bleed_damage_+%_vs_player_minions_final - /// - BleedDamagePctVsPlayerMinionsFinal = 10099, - - /// - /// disable_mine_detonation_cascade - /// - DisableMineDetonationCascade = 10100, - - /// - /// map_tier - /// - MapTier = 10101, - - /// - /// minions_are_defensive - /// - MinionsAreDefensive = 10102, - - /// - /// support_minion_defensive_stance_minion_damage_taken_+%_final - /// - SupportMinionDefensiveStanceMinionDamageTakenPctFinal = 10103, - - /// - /// damage_taken_+%_final_from_support_minion_defensive_stance - /// - DamageTakenPctFinalFromSupportMinionDefensiveStance = 10104, - - /// - /// minion_chance_to_taunt_on_hit_% - /// - MinionChanceToTauntOnHitPct = 10105, - - /// - /// support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you - /// - SupportMinionDefensiveStanceMinionDamagePctFinalAgainstEnemiesNearYou = 10106, - - /// - /// support_minion_defensive_stance_damage_+%_final_against_enemies_near_parent - /// - SupportMinionDefensiveStanceDamagePctFinalAgainstEnemiesNearParent = 10107, - - /// - /// damage_+%_final_from_support_minion_defensive_stance - /// - DamagePctFinalFromSupportMinionDefensiveStance = 10108, - - /// - /// base_mine_detonation_time_ms - /// - BaseMineDetonationTimeMs = 10109, - - /// - /// virtual_mine_detonation_time_ms - /// - VirtualMineDetonationTimeMs = 10110, - - /// - /// mine_detonation_speed_+% - /// - MineDetonationSpeedPct = 10111, - - /// - /// non_chilled_enemies_you_bleed_are_chilled - /// - NonChilledEnemiesYouBleedAreChilled = 10112, - - /// - /// non_chilled_enemies_you_poison_are_chilled - /// - NonChilledEnemiesYouPoisonAreChilled = 10113, - - /// - /// chilled_while_bleeding - /// - ChilledWhileBleeding = 10114, - - /// - /// chilled_while_poisoned - /// - ChilledWhilePoisoned = 10115, - - /// - /// shatter_on_kill_vs_bleeding_enemies - /// - ShatterOnKillVsBleedingEnemies = 10116, - - /// - /// shatter_on_kill_vs_poisoned_enemies - /// - ShatterOnKillVsPoisonedEnemies = 10117, - - /// - /// serpent_strike_viper_damage_+%_final - /// - SerpentStrikeViperDamagePctFinal = 10118, - - /// - /// damage_+%_per_raised_zombie - /// - DamagePctPerRaisedZombie = 10119, - - /// - /// elemental_damage_taken_+%_final_per_raised_zombie - /// - ElementalDamageTakenPctFinalPerRaisedZombie = 10120, - - /// - /// minion_chance_to_freeze_shock_ignite_% - /// - MinionChanceToFreezeShockIgnitePct = 10121, - - /// - /// minion_base_physical_damage_%_to_convert_to_fire - /// - MinionBasePhysicalDamagePctToConvertToFire = 10122, - - /// - /// minion_base_physical_damage_%_to_convert_to_cold - /// - MinionBasePhysicalDamagePctToConvertToCold = 10123, - - /// - /// minion_base_physical_damage_%_to_convert_to_lightning - /// - MinionBasePhysicalDamagePctToConvertToLightning = 10124, - - /// - /// minion_base_physical_damage_%_to_convert_to_chaos - /// - MinionBasePhysicalDamagePctToConvertToChaos = 10125, - - /// - /// minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item - /// - MinionBasePhysicalDamagePctToConvertToFirePerRedSocketOnItem = 10126, - - /// - /// minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item - /// - MinionBasePhysicalDamagePctToConvertToColdPerGreenSocketOnItem = 10127, - - /// - /// minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item - /// - MinionBasePhysicalDamagePctToConvertToLightningPerBlueSocketOnItem = 10128, - - /// - /// minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item - /// - MinionBasePhysicalDamagePctToConvertToChaosPerWhiteSocketOnItem = 10129, - - /// - /// display_hide_projectile_chain_num - /// - DisplayHideProjectileChainNum = 10130, - - /// - /// mine_detonates_instantly - /// - MineDetonatesInstantly = 10131, - - /// - /// mine_area_of_effect_+% - /// - MineAreaOfEffectPct = 10132, - - /// - /// mine_area_of_effect_+%_if_detonated_mine_recently - /// - MineAreaOfEffectPctIfDetonatedMineRecently = 10133, - - /// - /// mine_area_damage_+%_if_detonated_mine_recently - /// - MineAreaDamagePctIfDetonatedMineRecently = 10134, - - /// - /// sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10% - /// - SabotuerMinesApplyDamageTakenPctToNearbyEnemiesUpTo10Pct = 10135, - - /// - /// sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10% - /// - SabotuerMinesApplyDamagePctToNearbyEnemiesUpTo10Pct = 10136, - - /// - /// critical_strike_chance_+%_per_mine_detonated_recently_up_to_100% - /// - CriticalStrikeChancePctPerMineDetonatedRecentlyUpTo100Pct = 10137, - - /// - /// critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40 - /// - CriticalStrikeMultiplierPerMineDetonatedRecentlyUpTo40 = 10138, - - /// - /// local_display_grants_skill_bone_armour - /// - LocalDisplayGrantsSkillBoneArmour = 10139, - - /// - /// current_righteous_charges - /// - CurrentRighteousCharges = 10140, - - /// - /// gain_righteous_charge_on_mana_spent_% - /// - GainRighteousChargeOnManaSpentPct = 10141, - - /// - /// lose_all_righteous_charges_on_mana_use_threshold - /// - LoseAllRighteousChargesOnManaUseThreshold = 10142, - - /// - /// elemental_damage_+%_final_per_righteous_charge - /// - ElementalDamagePctFinalPerRighteousCharge = 10143, - - /// - /// critical_strike_chance_+%_per_righteous_charge - /// - CriticalStrikeChancePctPerRighteousCharge = 10144, - - /// - /// maximum_righteous_charges - /// - MaximumRighteousCharges = 10145, - - /// - /// map_num_extra_blights_ - /// - MapNumExtraBlights = 10146, - - /// - /// map_nuke_everything - /// - MapNukeEverything = 10147, - - /// - /// lightning_explosion_mine_aura_damage_taken_+% - /// - LightningExplosionMineAuraDamageTakenPct = 10148, - - /// - /// mine_detonation_cascade_index - /// - MineDetonationCascadeIndex = 10149, - - /// - /// corrosive_shroud_poison_damage_+%_final_while_accumulating_poison - /// - CorrosiveShroudPoisonDamagePctFinalWhileAccumulatingPoison = 10150, - - /// - /// lose_a_frenzy_charge_on_travel_skill_use_%_chance - /// - LoseAFrenzyChargeOnTravelSkillUsePctChance = 10151, - - /// - /// lose_a_power_charge_when_you_gain_elusive_%_chance - /// - LoseAPowerChargeWhenYouGainElusivePctChance = 10152, - - /// - /// elusive_effect_on_self_+%_per_power_charge - /// - ElusiveEffectOnSelfPctPerPowerCharge = 10153, - - /// - /// travel_skills_cooldown_speed_+%_per_frenzy_charge - /// - TravelSkillsCooldownSpeedPctPerFrenzyCharge = 10154, - - /// - /// maximum_frenzy_charges_is_equal_to_maximum_power_charges - /// - MaximumFrenzyChargesIsEqualToMaximumPowerCharges = 10155, - - /// - /// virtual_elusive_effect_+% - /// - VirtualElusiveEffectPct = 10156, - - /// - /// ground_temporal_anomaly_art_variation - /// - GroundTemporalAnomalyArtVariation = 10157, - - /// - /// blight_tower_damage_+%_final_vs_fire_monster - /// - BlightTowerDamagePctFinalVsFireMonster = 10158, - - /// - /// blight_tower_damage_+%_final_vs_cold_monster - /// - BlightTowerDamagePctFinalVsColdMonster = 10159, - - /// - /// blight_tower_damage_+%_final_vs_lightning_monster - /// - BlightTowerDamagePctFinalVsLightningMonster = 10160, - - /// - /// blight_tower_damage_+%_final_vs_physical_monster - /// - BlightTowerDamagePctFinalVsPhysicalMonster = 10161, - - /// - /// blight_tower_damage_+%_final_vs_chaos_monster - /// - BlightTowerDamagePctFinalVsChaosMonster = 10162, - - /// - /// blight_tower_damage_+%_final_vs_flying_monster - /// - BlightTowerDamagePctFinalVsFlyingMonster = 10163, - - /// - /// damage_+%_final_against_blight_monster_type - /// - DamagePctFinalAgainstBlightMonsterType = 10164, - - /// - /// is_blight_fire_monster - /// - IsBlightFireMonster = 10165, - - /// - /// is_blight_cold_monster - /// - IsBlightColdMonster = 10166, - - /// - /// is_blight_lightning_monster - /// - IsBlightLightningMonster = 10167, - - /// - /// is_blight_physical_monster - /// - IsBlightPhysicalMonster = 10168, - - /// - /// is_blight_chaos_monster - /// - IsBlightChaosMonster = 10169, - - /// - /// is_blight_flying_monster - /// - IsBlightFlyingMonster = 10170, - - /// - /// unaffected_by_weakening_tower - /// - UnaffectedByWeakeningTower = 10171, - - /// - /// mine_skill_targets_detonation_cascade_origin - /// - MineSkillTargetsDetonationCascadeOrigin = 10172, - - /// - /// local_flask_gain_X_charges_when_hit - /// - LocalFlaskGainXChargesWhenHit = 10173, - - /// - /// local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect - /// - LocalFlaskManaRecoveryOccursInstantlyAtEndOfFlaskEffect = 10174, - - /// - /// local_flask_life_leech_from_attack_damage_permyriad_while_healing - /// - LocalFlaskLifeLeechFromAttackDamagePermyriadWhileHealing = 10175, - - /// - /// local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing - /// - FlaskBuffSpellEnergyShiheldLeechWhileHealing = 10176, - - /// - /// local_flask_attack_speed_+%_while_healing - /// - LocalFlaskAttackSpeedPctWhileHealing = 10177, - - /// - /// local_flask_cast_speed_+%_while_healing - /// - LocalFlaskCastSpeedPctWhileHealing = 10178, - - /// - /// local_flask_chance_to_freeze_shock_ignite_%_while_healing - /// - LocalFlaskChanceToFreezeShockIgnitePctWhileHealing = 10179, - - /// - /// local_flask_effect_not_removed_at_full_mana - /// - LocalFlaskEffectNotRemovedAtFullMana = 10180, - - /// - /// recover_mana_when_buff_reaches_duration - /// - RecoverManaWhenBuffReachesDuration = 10181, - - /// - /// skitterbots_trap_mine_damage_+%_final - /// - SkitterbotsTrapMineDamagePctFinal = 10182, - - /// - /// blight_aura_stat_1 - /// - BlightAuraStat1 = 10183, - - /// - /// blight_aura_stat_2 - /// - BlightAuraStat2 = 10184, - - /// - /// blight_aura_stat_3 - /// - BlightAuraStat3 = 10185, - - /// - /// blight_aura_stat_4 - /// - BlightAuraStat4 = 10186, - - /// - /// blight_aura_stat_5 - /// - BlightAuraStat5 = 10187, - - /// - /// inspiration_charge_duration_+% - /// - InspirationChargeDurationPct = 10188, - - /// - /// minimum_added_fire_damage_taken - /// - MinimumAddedFireDamageTaken = 10189, - - /// - /// maximum_added_fire_damage_taken - /// - MaximumAddedFireDamageTaken = 10190, - - /// - /// petrification_hits_to_break - /// - PetrificationHitsToBreak = 10191, - - /// - /// virtual_base_mine_detonation_time_ms - /// - VirtualBaseMineDetonationTimeMs = 10192, - - /// - /// virtual_base_mine_duration - /// - VirtualBaseMineDuration = 10193, - - /// - /// virtual_mine_override_pvp_scaling_time_ms - /// - VirtualMineOverridePvpScalingTimeMs = 10194, - - /// - /// support_remote_mine_2_base_mine_detonation_time_ms - /// - SupportRemoteMine2BaseMineDetonationTimeMs = 10195, - - /// - /// support_remote_mine_2_base_mine_duration - /// - SupportRemoteMine2BaseMineDuration = 10196, - - /// - /// support_remote_mine_2_mine_override_pvp_scaling_time_ms - /// - SupportRemoteMine2MineOverridePvpScalingTimeMs = 10197, - - /// - /// virtual_enemy_chance_to_deal_double_damage_%_against_self - /// - VirtualEnemyChanceToDealDoubleDamagePctAgainstSelf = 10198, - - /// - /// support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines - /// - SupportRemoteMine2ChanceToDealDoubleDamagePctAgainstEnemiesNearMines = 10199, - - /// - /// map_blight_tower_cost_+% - /// - MapBlightTowerCostPct = 10200, - - /// - /// minions_inflict_exposure_on_hit_%_chance - /// - MinionsInflictExposureOnHitPctChance = 10201, - - /// - /// inflict_exposure_on_hit_%_chance - /// - InflictExposureOnHitPctChance = 10202, - - /// - /// support_minion_instability_base_fire_area_damage_per_minute - /// - SupportMinionInstabilityBaseFireAreaDamagePerMinute = 10203, - - /// - /// support_minion_instability_intermediary_fire_area_damage_per_minute - /// - SupportMinionInstabilityIntermediaryFireAreaDamagePerMinute = 10204, - - /// - /// support_minion_instability_minion_base_fire_area_damage_per_minute - /// - SupportMinionInstabilityMinionBaseFireAreaDamagePerMinute = 10205, - - /// - /// infernal_legion_minions_have_burning_effect_radius_+ - /// - InfernalLegionMinionsHaveBurningEffectRadius = 10206, - - /// - /// infernal_legion_burning_effect_radius_+ - /// - InfernalLegionBurningEffectRadius = 10207, - - /// - /// virtual_infernal_legion_burning_effect_radius - /// - VirtualInfernalLegionBurningEffectRadius = 10208, - - /// - /// base_fire_damage_%_of_maximum_life_taken_per_minute - /// - BaseFireDamagePctOfMaximumLifeTakenPerMinute = 10209, - - /// - /// minion_fire_damage_%_of_maximum_life_taken_per_minute - /// - MinionFireDamagePctOfMaximumLifeTakenPerMinute = 10210, - - /// - /// mine_aura_effect_+% - /// - MineAuraEffectPct = 10211, - - /// - /// lose_power_charge_each_second_if_not_detonated_mines_recently - /// - LosePowerChargeEachSecondIfNotDetonatedMinesRecently = 10212, - - /// - /// mine_damage_leeched_as_life_to_you_permyriad - /// - MineDamageLeechedAsLifeToYouPermyriad = 10213, - - /// - /// life_and_energy_shield_recovery_rate_+% - /// - LifeAndEnergyShieldRecoveryRatePct = 10214, - - /// - /// life_and_energy_shield_recovery_rate_+%_per_power_charge - /// - LifeAndEnergyShieldRecoveryRatePctPerPowerCharge = 10215, - - /// - /// virtual_life_and_energy_shield_recovery_rate_+% - /// - VirtualLifeAndEnergyShieldRecoveryRatePct = 10216, - - /// - /// slither_wither_stacks - /// - SlitherWitherStacks = 10217, - - /// - /// elusive_effect_+% - /// - ElusiveEffectPct = 10218, - - /// - /// gain_elusive_on_kill_chance_% - /// - GainElusiveOnKillChancePct = 10219, - - /// - /// damage_taken_+%_while_affected_by_elusive - /// - DamageTakenPctWhileAffectedByElusive = 10220, - - /// - /// attack_and_cast_speed_+%_while_affected_by_elusive - /// - AttackAndCastSpeedPctWhileAffectedByElusive = 10221, - - /// - /// self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive - /// - SelfTakeNoExtraDamageFromCriticalStrikesWhileAffectedByElusive = 10222, - - /// - /// local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage - /// - LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMinimumAddedPhysicalDamage = 10223, - - /// - /// local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage - /// - LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMaximumAddedPhysicalDamage = 10224, - - /// - /// local_display_socketed_gems_supported_by_level_x_remote_mine_2 - /// - LocalDisplaySocketedGemsSupportedByLevelXRemoteMine2 = 10225, - - /// - /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+% - /// - LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionDamageTakenPct = 10226, - - /// - /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+% - /// - LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionMovementSpeedPct = 10227, - - /// - /// minion_chance_to_dodge_spells_% - /// - MinionChanceToDodgeSpellsPct = 10228, - - /// - /// minion_damage_taken_+% - /// - MinionDamageTakenPct = 10229, - - /// - /// movement_speed_is_%_of_base - /// - MovementSpeedIsPctOfBase = 10230, - - /// - /// travel_skill_cooldown_speed_+% - /// - TravelSkillCooldownSpeedPct = 10231, - - /// - /// hierophant_mana_cost_+%_final - /// - HierophantManaCostPctFinal = 10232, - - /// - /// hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100% - /// - HierophantAreaOfEffectPctPer50UnreservedManaUpTo100Pct = 10233, - - /// - /// cyclone_area_of_effect_+%_per_additional_melee_range - /// - CycloneAreaOfEffectPctPerAdditionalMeleeRange = 10234, - - /// - /// cyclone_gain_stage_every_x_ms_while_channelling - /// - CycloneGainStageEveryXMsWhileChannelling = 10235, - - /// - /// combined_dot_multiplier_+ - /// - CombinedDotMultiplier = 10236, - - /// - /// combined_physical_dot_multiplier_+ - /// - CombinedPhysicalDotMultiplier = 10237, - - /// - /// total_non_ailment_physical_dot_multiplier_+ - /// - TotalNonAilmentPhysicalDotMultiplier = 10238, - - /// - /// combined_fire_dot_multiplier_+ - /// - CombinedFireDotMultiplier = 10239, - - /// - /// total_non_ailment_fire_dot_multiplier_+ - /// - TotalNonAilmentFireDotMultiplier = 10240, - - /// - /// combined_cold_dot_multiplier_+ - /// - CombinedColdDotMultiplier = 10241, - - /// - /// total_non_ailment_cold_dot_multiplier_+ - /// - TotalNonAilmentColdDotMultiplier = 10242, - - /// - /// combined_lightning_dot_multiplier_+ - /// - CombinedLightningDotMultiplier = 10243, - - /// - /// total_non_ailment_lightning_dot_multiplier_+ - /// - TotalNonAilmentLightningDotMultiplier = 10244, - - /// - /// combined_chaos_dot_multiplier_+ - /// - CombinedChaosDotMultiplier = 10245, - - /// - /// total_non_ailment_chaos_dot_multiplier_+ - /// - TotalNonAilmentChaosDotMultiplier = 10246, - - /// - /// total_main_hand_bleeding_critical_ailment_dot_multiplier_+ - /// - TotalMainHandBleedingCriticalAilmentDotMultiplier = 10247, - - /// - /// total_off_hand_bleeding_critical_ailment_dot_multiplier_+ - /// - TotalOffHandBleedingCriticalAilmentDotMultiplier = 10248, - - /// - /// total_spell_bleeding_critical_ailment_dot_multiplier_+ - /// - TotalSpellBleedingCriticalAilmentDotMultiplier = 10249, - - /// - /// total_secondary_bleeding_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryBleedingCriticalAilmentDotMultiplier = 10250, - - /// - /// total_main_hand_ignite_critical_ailment_dot_multiplier_+ - /// - TotalMainHandIgniteCriticalAilmentDotMultiplier = 10251, - - /// - /// total_off_hand_ignite_critical_ailment_dot_multiplier_+ - /// - TotalOffHandIgniteCriticalAilmentDotMultiplier = 10252, - - /// - /// total_spell_ignite_critical_ailment_dot_multiplier_+ - /// - TotalSpellIgniteCriticalAilmentDotMultiplier = 10253, - - /// - /// total_secondary_ignite_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryIgniteCriticalAilmentDotMultiplier = 10254, - - /// - /// total_main_hand_poison_critical_ailment_dot_multiplier_+ - /// - TotalMainHandPoisonCriticalAilmentDotMultiplier = 10255, - - /// - /// total_off_hand_poison_critical_ailment_dot_multiplier_+ - /// - TotalOffHandPoisonCriticalAilmentDotMultiplier = 10256, - - /// - /// total_spell_poison_critical_ailment_dot_multiplier_+ - /// - TotalSpellPoisonCriticalAilmentDotMultiplier = 10257, - - /// - /// total_secondary_poison_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryPoisonCriticalAilmentDotMultiplier = 10258, - - /// - /// total_main_hand_bleeding_non_critical_ailment_dot_multiplier_+ - /// - TotalMainHandBleedingNonCriticalAilmentDotMultiplier = 10259, - - /// - /// total_off_hand_bleeding_non_critical_ailment_dot_multiplier_+ - /// - TotalOffHandBleedingNonCriticalAilmentDotMultiplier = 10260, - - /// - /// total_spell_bleeding_non_critical_ailment_dot_multiplier_+ - /// - TotalSpellBleedingNonCriticalAilmentDotMultiplier = 10261, - - /// - /// total_secondary_bleeding_non_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryBleedingNonCriticalAilmentDotMultiplier = 10262, - - /// - /// total_main_hand_ignite_non_critical_ailment_dot_multiplier_+ - /// - TotalMainHandIgniteNonCriticalAilmentDotMultiplier = 10263, - - /// - /// total_off_hand_ignite_non_critical_ailment_dot_multiplier_+ - /// - TotalOffHandIgniteNonCriticalAilmentDotMultiplier = 10264, - - /// - /// total_spell_ignite_non_critical_ailment_dot_multiplier_+ - /// - TotalSpellIgniteNonCriticalAilmentDotMultiplier = 10265, - - /// - /// total_secondary_ignite_non_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryIgniteNonCriticalAilmentDotMultiplier = 10266, - - /// - /// total_main_hand_poison_non_critical_ailment_dot_multiplier_+ - /// - TotalMainHandPoisonNonCriticalAilmentDotMultiplier = 10267, - - /// - /// total_off_hand_poison_non_critical_ailment_dot_multiplier_+ - /// - TotalOffHandPoisonNonCriticalAilmentDotMultiplier = 10268, - - /// - /// total_spell_poison_non_critical_ailment_dot_multiplier_+ - /// - TotalSpellPoisonNonCriticalAilmentDotMultiplier = 10269, - - /// - /// total_secondary_poison_non_critical_ailment_dot_multiplier_+ - /// - TotalSecondaryPoisonNonCriticalAilmentDotMultiplier = 10270, - - /// - /// dot_multiplier_+ - /// - DotMultiplier = 10271, - - /// - /// physical_dot_multiplier_+ - /// - PhysicalDotMultiplier = 10272, - - /// - /// fire_dot_multiplier_+ - /// - FireDotMultiplier = 10273, - - /// - /// lightning_dot_multiplier_+ - /// - LightningDotMultiplier = 10274, - - /// - /// chaos_dot_multiplier_+ - /// - ChaosDotMultiplier = 10275, - - /// - /// critical_ailment_dot_multiplier_value_override_% - /// - CriticalAilmentDotMultiplierValueOverridePct = 10276, - - /// - /// perfect_agony_crit_multi_modifiers_apply_to_dot_multi_at_%_value - /// - PerfectAgonyCritMultiModifiersApplyToDotMultiAtPctValue = 10277, - - /// - /// combined_main_hand_critical_ailment_dot_multiplier_+ - /// - CombinedMainHandCriticalAilmentDotMultiplier = 10278, - - /// - /// combined_off_hand_critical_ailment_dot_multiplier_+ - /// - CombinedOffHandCriticalAilmentDotMultiplier = 10279, - - /// - /// combined_spell_critical_ailment_dot_multiplier_+ - /// - CombinedSpellCriticalAilmentDotMultiplier = 10280, - - /// - /// combined_secondary_critical_ailment_dot_multiplier_+ - /// - CombinedSecondaryCriticalAilmentDotMultiplier = 10281, - - /// - /// combined_ailment_dot_multiplier_+ - /// - CombinedAilmentDotMultiplier = 10282, - - /// - /// combined_all_dot_multipliers_for_bleeding_+ - /// - CombinedAllDotMultipliersForBleeding = 10283, - - /// - /// combined_all_dot_multipliers_for_ignite_+ - /// - CombinedAllDotMultipliersForIgnite = 10284, - - /// - /// combined_all_dot_multipliers_for_poison_+ - /// - CombinedAllDotMultipliersForPoison = 10285, - - /// - /// bleeding_dot_multiplier_+ - /// - BleedingDotMultiplier = 10286, - - /// - /// ignite_dot_multiplier_+ - /// - IgniteDotMultiplier = 10287, - - /// - /// poison_dot_multiplier_+ - /// - PoisonDotMultiplier = 10288, - - /// - /// minimum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MinimumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10289, - - /// - /// maximum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MaximumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10290, - - /// - /// minimum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MinimumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10291, - - /// - /// maximum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MaximumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10292, - - /// - /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MinimumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10293, - - /// - /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage - /// - MaximumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10294, - - /// - /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MinimumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10295, - - /// - /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage - /// - MaximumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10296, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MinimumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10297, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MaximumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10298, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MinimumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10299, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MaximumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10300, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_critical_spell_damage - /// - MinimumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10301, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_critical_spell_damage - /// - MaximumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10302, - - /// - /// minimum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage - /// - MinimumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10303, - - /// - /// maximum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage - /// - MaximumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10304, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MinimumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10305, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage - /// - MaximumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10306, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MinimumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10307, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage - /// - MaximumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10308, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_critical_spell_damage - /// - MinimumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10309, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_critical_spell_damage - /// - MaximumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10310, - - /// - /// minimum_poison_damage_to_deal_per_minute_from_critical_secondary_damage - /// - MinimumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10311, - - /// - /// maximum_poison_damage_to_deal_per_minute_from_critical_secondary_damage - /// - MaximumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10312, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10313, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10314, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10315, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10316, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10317, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10318, - - /// - /// minimum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage - /// - MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10319, - - /// - /// maximum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage - /// - MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10320, - - /// - /// ailment_multipliers_never_critical - /// - AilmentMultipliersNeverCritical = 10321, - - /// - /// ailment_dot_multiplier_+ - /// - AilmentDotMultiplier = 10322, - - /// - /// additional_physical_damage_reduction_%_per_minion_up_to_10% - /// - AdditionalPhysicalDamageReductionPctPerMinionUpTo10Pct = 10323, - - /// - /// elemental_resistance_%_per_minion_up_to_30% - /// - ElementalResistancePctPerMinionUpTo30Pct = 10324, - - /// - /// life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30% - /// - LifeAndEnergyShieldRecoveryRatePctPerMinionUpTo30Pct = 10325, - - /// - /// necromancer_defensive_notable_minion_maximum_life_+%_final - /// - NecromancerDefensiveNotableMinionMaximumLifePctFinal = 10326, - - /// - /// max_life_+%_final_for_minion_from_necromancer_defensive_notable - /// - MaxLifePctFinalForMinionFromNecromancerDefensiveNotable = 10327, - - /// - /// golem_immunity_to_elemental_damage - /// - GolemImmunityToElementalDamage = 10328, - - /// - /// curse_effect_+%_if_200_mana_spent_recently - /// - CurseEffectPctIf200ManaSpentRecently = 10329, - - /// - /// immune_to_auras_from_other_teams - /// - ImmuneToAurasFromOtherTeams = 10330, - - /// - /// spell_skill_gem_level_+ - /// - SpellSkillGemLevel = 10331, - - /// - /// fire_spell_skill_gem_level_+ - /// - FireSpellSkillGemLevel = 10332, - - /// - /// cold_spell_skill_gem_level_+ - /// - ColdSpellSkillGemLevel = 10333, - - /// - /// lightning_spell_skill_gem_level_+ - /// - LightningSpellSkillGemLevel = 10334, - - /// - /// chaos_spell_skill_gem_level_+ - /// - ChaosSpellSkillGemLevel = 10335, - - /// - /// physical_spell_skill_gem_level_+ - /// - PhysicalSpellSkillGemLevel = 10336, - - /// - /// minion_skill_gem_level_+ - /// - MinionSkillGemLevel = 10337, - - /// - /// raise_spectre_gem_level_+ - /// - RaiseSpectreGemLevel = 10338, - - /// - /// raise_zombie_gem_level_+ - /// - RaiseZombieGemLevel = 10339, - - /// - /// summon_skeleton_gem_level_+ - /// - SummonSkeletonGemLevel = 10340, - - /// - /// minion_maximum_all_elemental_resistances_% - /// - MinionMaximumAllElementalResistancesPct = 10341, - - /// - /// damage_penetrates_%_elemental_resistance_vs_chilled_enemies - /// - DamagePenetratesPctElementalResistanceVsChilledEnemies = 10342, - - /// - /// critical_strike_multiplier_+_vs_burning_enemies - /// - CriticalStrikeMultiplierVsBurningEnemies = 10343, - - /// - /// additional_main_hand_hits_per_combo_average - /// - AdditionalMainHandHitsPerComboAverage = 10344, - - /// - /// lightning_explosion_mine_damage_+% - /// - LightningExplosionMineDamagePct = 10345, - - /// - /// cold_projectile_mine_damage_+% - /// - ColdProjectileMineDamagePct = 10346, - - /// - /// mortar_barrage_mine_damage_+% - /// - MortarBarrageMineDamagePct = 10347, - - /// - /// lightning_explosion_mine_throwing_speed_+% - /// - LightningExplosionMineThrowingSpeedPct = 10348, - - /// - /// cold_projectile_mine_throwing_speed_+% - /// - ColdProjectileMineThrowingSpeedPct = 10349, - - /// - /// mortar_barrage_mine_throwing_speed_+% - /// - MortarBarrageMineThrowingSpeedPct = 10350, - - /// - /// lightning_explosion_mine_aura_effect_+% - /// - LightningExplosionMineAuraEffectPct = 10351, - - /// - /// cold_projectile_mine_critical_multiplier_+ - /// - ColdProjectileMineCriticalMultiplier = 10352, - - /// - /// mortar_barrage_mine_num_projectiles - /// - MortarBarrageMineNumProjectiles = 10353, - - /// - /// map_spread_doodads_index - /// - MapSpreadDoodadsIndex = 10354, - - /// - /// damage_removed_from_spectres_before_life_or_es_% - /// - DamageRemovedFromSpectresBeforeLifeOrEsPct = 10355, - - /// - /// mamba_strike_deal_%_of_all_poison_total_damage_per_minute - /// - MambaStrikeDealPctOfAllPoisonTotalDamagePerMinute = 10356, - - /// - /// desecrate_duration_+% - /// - DesecrateDurationPct = 10357, - - /// - /// petrification_max_targets - /// - PetrificationMaxTargets = 10358, - - /// - /// support_remote_mine_2_damage_+%_final - /// - SupportRemoteMine2DamagePctFinal = 10359, - - /// - /// local_display_socketed_gems_supported_by_level_x_feeding_frenzy - /// - LocalDisplaySocketedGemsSupportedByLevelXFeedingFrenzy = 10360, - - /// - /// non_unique_flask_effect_+% - /// - NonUniqueFlaskEffectPct = 10361, - - /// - /// ground_lightning_art_variation - /// - GroundLightningArtVariation = 10362, - - /// - /// immune_to_petrification - /// - ImmuneToPetrification = 10363, - - /// - /// trap_and_mine_throwing_speed_+% - /// - TrapAndMineThrowingSpeedPct = 10364, - - /// - /// local_display_socketed_gems_supported_by_level_x_meat_shield - /// - LocalDisplaySocketedGemsSupportedByLevelXMeatShield = 10365, - - /// - /// local_display_socketed_gems_supported_by_level_x_deathmark - /// - LocalDisplaySocketedGemsSupportedByLevelXDeathmark = 10366, - - /// - /// local_display_socketed_gems_supported_by_level_x_nightblade - /// - LocalDisplaySocketedGemsSupportedByLevelXNightblade = 10367, - - /// - /// coiling_assault_attack_speed_+%_final_on_final_strike - /// - CoilingAssaultAttackSpeedPctFinalOnFinalStrike = 10368, - - /// - /// coiling_assault_damage_+%_final_on_final_strike - /// - CoilingAssaultDamagePctFinalOnFinalStrike = 10369, - - /// - /// life_regeneration_rate_per_minute_%_per_raised_zombie - /// - LifeRegenerationRatePerMinutePctPerRaisedZombie = 10370, - - /// - /// mana_regeneration_rate_+%_per_raised_spectre - /// - ManaRegenerationRatePctPerRaisedSpectre = 10371, - - /// - /// additional_attack_block_%_per_summoned_skeleton - /// - AdditionalAttackBlockPctPerSummonedSkeleton = 10372, - - /// - /// attack_and_cast_speed_+%_per_summoned_raging_spirit - /// - AttackAndCastSpeedPctPerSummonedRagingSpirit = 10373, - - /// - /// minion_elemental_damage_%_to_add_as_chaos - /// - MinionElementalDamagePctToAddAsChaos = 10374, - - /// - /// bone_armour_damage_absorbed_% - /// - BoneArmourDamageAbsorbedPct = 10375, - - /// - /// mod_granted_passive_hash - /// - ModGrantedPassiveHash = 10376, - - /// - /// killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked - /// - KilledMonsterDroppedItemRarityPctWhenFrozenOrShocked = 10377, - - /// - /// item_found_rarity_+%_per_white_socket_on_item - /// - ItemFoundRarityPctPerWhiteSocketOnItem = 10378, - - /// - /// holy_relic_nova_life_regeneration_rate_per_minute - /// - HolyRelicNovaLifeRegenerationRatePerMinute = 10379, - - /// - /// holy_relic_nova_minion_life_regeneration_rate_per_second - /// - HolyRelicNovaMinionLifeRegenerationRatePerSecond = 10380, - - /// - /// create_blighted_spore_on_killing_rare_enemy - /// - CreateBlightedSporeOnKillingRareEnemy = 10381, - - /// - /// critical_bleeding_dot_multiplier_+ - /// - CriticalBleedingDotMultiplier = 10382, - - /// - /// critical_ignite_dot_multiplier_+ - /// - CriticalIgniteDotMultiplier = 10383, - - /// - /// critical_poison_dot_multiplier_+ - /// - CriticalPoisonDotMultiplier = 10384, - - /// - /// map_legion_league_force_general - /// - MapLegionLeagueForceGeneral = 10385, - - /// - /// map_legion_league_force_war_chest - /// - MapLegionLeagueForceWarChest = 10386, - - /// - /// corpse_warp_area_of_effect_+%_final_when_consuming_corpse - /// - CorpseWarpAreaOfEffectPctFinalWhenConsumingCorpse = 10387, - - /// - /// current_number_of_snapping_adder_projectiles - /// - CurrentNumberOfSnappingAdderProjectiles = 10388, - - /// - /// maximum_number_of_snapping_adder_projectiles - /// - MaximumNumberOfSnappingAdderProjectiles = 10389, - - /// - /// mortar_barrage_mine_minimum_added_fire_damage_taken - /// - MortarBarrageMineMinimumAddedFireDamageTaken = 10390, - - /// - /// mortar_barrage_mine_maximum_added_fire_damage_taken - /// - MortarBarrageMineMaximumAddedFireDamageTaken = 10391, - - /// - /// mortar_barrage_mine_minimum_added_fire_damage_taken_limit - /// - MortarBarrageMineMinimumAddedFireDamageTakenLimit = 10392, - - /// - /// mortar_barrage_mine_maximum_added_fire_damage_taken_limit - /// - MortarBarrageMineMaximumAddedFireDamageTakenLimit = 10393, - - /// - /// cold_projectile_mine_enemy_critical_strike_chance_+%_against_self - /// - ColdProjectileMineEnemyCriticalStrikeChancePctAgainstSelf = 10394, - - /// - /// cold_projectile_mine_throwing_speed_negated_+% - /// - ColdProjectileMineThrowingSpeedNegatedPct = 10395, - - /// - /// mine_throwing_speed_negated_+% - /// - MineThrowingSpeedNegatedPct = 10396, - - /// - /// blight_tower_skill_area_of_effect_radius_+%_final - /// - BlightTowerSkillAreaOfEffectRadiusPctFinal = 10397, - - /// - /// mines_hinder_nearby_enemies_for_x_ms_on_arming - /// - MinesHinderNearbyEnemiesForXMsOnArming = 10398, - - /// - /// is_unnerved - /// - IsUnnerved = 10399, - - /// - /// chance_to_unnerve_on_hit_% - /// - ChanceToUnnerveOnHitPct = 10400, - - /// - /// fire_damage_resistance_is_% - /// - FireDamageResistanceIsPct = 10401, - - /// - /// cold_damage_resistance_is_% - /// - ColdDamageResistanceIsPct = 10402, - - /// - /// lightning_damage_resistance_is_% - /// - LightningDamageResistanceIsPct = 10403, - - /// - /// fire_damage_resistance_+% - /// - FireDamageResistancePct2 = 10404, - - /// - /// cold_damage_resistance_+% - /// - ColdDamageResistancePct2 = 10405, - - /// - /// lightning_damage_resistance_+% - /// - LightningDamageResistancePct2 = 10406, - - /// - /// local_display_socketed_gems_supported_by_level_x_infernal_legion - /// - LocalDisplaySocketedGemsSupportedByLevelXInfernalLegion = 10407, - - /// - /// mine_throwing_speed_halved_+% - /// - MineThrowingSpeedHalvedPct = 10408, - - /// - /// mortar_barrage_mine_throwing_speed_halved_+% - /// - MortarBarrageMineThrowingSpeedHalvedPct = 10409, - - /// - /// viper_strike_dual_wield_damage_+%_final - /// - ViperStrikeDualWieldDamagePctFinal = 10410, - - /// - /// viper_strike_dual_wield_attack_speed_+%_final - /// - ViperStrikeDualWieldAttackSpeedPctFinal = 10411, - - /// - /// is_on_fungal_ground - /// - IsOnFungalGround = 10412, - - /// - /// fungal_ground_while_stationary_radius - /// - FungalGroundWhileStationaryRadius = 10413, - - /// - /// local_display_trigger_level_x_create_fungal_ground_on_kill - /// - LocalDisplayTriggerLevelXCreateFungalGroundOnKill = 10414, - - /// - /// enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance - /// - EnemiesKilledOnFungalGroundExplodeFor5PctChaosDamagePctChance = 10415, - - /// - /// virtual_cannot_cast_spells - /// - VirtualCannotCastSpells = 10416, - - /// - /// virtual_cannot_use_warcries - /// - VirtualCannotUseWarcries = 10417, - - /// - /// silence_cannot_use_spells_or_warcries - /// - SilenceCannotUseSpellsOrWarcries = 10418, - - /// - /// attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem - /// - AttackSkillsPctPhysicalAsExtraFireDamagePerSocketedRedGem = 10419, - - /// - /// local_gain_vaal_pact_if_all_socketed_gems_red - /// - LocalGainVaalPactIfAllSocketedGemsRed = 10420, - - /// - /// additive_mine_duration_modifiers_apply_to_buff_effect_duration - /// - AdditiveMineDurationModifiersApplyToBuffEffectDuration = 10421, - - /// - /// minion_fire_damage_taken_+% - /// - MinionFireDamageTakenPct = 10422, - - /// - /// returning_projectiles_always_pierce - /// - ReturningProjectilesAlwaysPierce = 10423, - - /// - /// additive_life_modifiers_apply_to_attack_damage_at_30%_value - /// - AdditiveLifeModifiersApplyToAttackDamageAt30PctValue = 10424, - - /// - /// additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value - /// - AdditiveEnergyShieldModifiersApplyToSpellDamageAt30PctValue = 10425, - - /// - /// additive_mana_modifiers_apply_to_damage_at_30%_value - /// - AdditiveManaModifiersApplyToDamageAt30PctValue = 10426, - - /// - /// blight_tower_chilling_cost_+% - /// - BlightTowerChillingCostPct = 10427, - - /// - /// blight_tower_arc_damage_+% - /// - BlightTowerArcDamagePct = 10428, - - /// - /// blight_tower_fireball_additional_projectile - /// - BlightTowerFireballAdditionalProjectile = 10429, - - /// - /// elusive_critical_strike_multiplier_+_to_skills_supported_by_nightblade - /// - ElusiveCriticalStrikeMultiplierToSkillsSupportedByNightblade = 10430, - - /// - /// nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills - /// - NightbladeElusiveGrantsCriticalStrikeMultiplierToSupportedSkills = 10431, - - /// - /// support_additional_trap_mine_%_chance_for_1_additional_trap_mine - /// - SupportAdditionalTrapMinePctChanceFor1AdditionalTrapMine = 10432, - - /// - /// support_additional_trap_mine_%_chance_for_2_additional_trap_mine - /// - SupportAdditionalTrapMinePctChanceFor2AdditionalTrapMine = 10433, - - /// - /// support_additional_trap_mine_%_chance_for_3_additional_trap_mine - /// - SupportAdditionalTrapMinePctChanceFor3AdditionalTrapMine = 10434, - - /// - /// ailment_dot_multiplier_+_per_equipped_elder_item - /// - AilmentDotMultiplierPerEquippedElderItem = 10435, - - /// - /// dot_multiplier_+_while_affected_by_malevolence - /// - DotMultiplierWhileAffectedByMalevolence = 10436, - - /// - /// is_blight_monster - /// - IsBlightMonster = 10437, - - /// - /// is_blighted_map - /// - IsBlightedMap = 10438, - - /// - /// damage_+%_final_from_fungal_ground - /// - DamagePctFinalFromFungalGround = 10439, - - /// - /// ice_dash_duration_+% - /// - IceDashDurationPct = 10440, - - /// - /// skill_max_unleash_seals - /// - SkillMaxUnleashSeals = 10441, - - /// - /// local_display_socketed_gems_supported_by_level_x_swift_assembly - /// - LocalDisplaySocketedGemsSupportedByLevelXSwiftAssembly = 10442, - - /// - /// blighted_map_chest_reward_lucky_count - /// - BlightedMapChestRewardLuckyCount = 10443, - - /// - /// blighted_map_tower_damage_+%_final - /// - BlightedMapTowerDamagePctFinal = 10444, - - /// - /// virtual_physical_damage_taken_+ - /// - VirtualPhysicalDamageTaken = 10445, - - /// - /// physical_damage_taken_+_per_level - /// - PhysicalDamageTakenPerLevel = 10446, - - /// - /// deathmark_minion_damage_+%_final - /// - DeathmarkMinionDamagePctFinal = 10447, - - /// - /// local_display_grants_skill_frostblink_level - /// - LocalDisplayGrantsSkillFrostblinkLevel = 10448, - - /// - /// non_golem_minion_global_minimum_added_physical_damage - /// - NonGolemMinionGlobalMinimumAddedPhysicalDamage = 10449, - - /// - /// non_golem_minion_global_maximum_added_physical_damage - /// - NonGolemMinionGlobalMaximumAddedPhysicalDamage = 10450, - - /// - /// fortify_during_life_flask_effect - /// - FortifyDuringLifeFlaskEffect = 10451, - - /// - /// %_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy - /// - PctChanceToGainFrenzyChargeOnMineDetonatedTargetingAnEnemy = 10452, - - /// - /// mine_throwing_speed_+%_per_frenzy_charge - /// - MineThrowingSpeedPctPerFrenzyCharge = 10453, - - /// - /// mine_critical_strike_chance_+%_per_power_charge - /// - MineCriticalStrikeChancePctPerPowerCharge = 10454, - - /// - /// damage_+%_from_saboteur_mine_aura_up_to_-10% - /// - DamagePctFromSaboteurMineAuraUpTo10Pct = 10455, - - /// - /// damage_taken_+%_from_sabotuer_mine_aura_up_to_10% - /// - DamageTakenPctFromSabotuerMineAuraUpTo10Pct = 10456, - - /// - /// current_number_of_carrion_golems - /// - CurrentNumberOfCarrionGolems = 10457, - - /// - /// local_display_socketed_gems_supported_by_level_x_charged_mines - /// - LocalDisplaySocketedGemsSupportedByLevelXChargedMines = 10458, - - /// - /// mine_art_variation - /// - MineArtVariation = 10459, - - /// - /// slither_cooldown_does_not_tick - /// - SlitherCooldownDoesNotTick = 10460, - - /// - /// virtual_mine_art_variation - /// - VirtualMineArtVariation = 10461, - - /// - /// corrupted_emperor_mine_art_variation - /// - CorruptedEmperorMineArtVariation = 10462, - - /// - /// tencent_chiyou_set_bonus - /// - TencentChiyouSetBonus = 10463, - - /// - /// cobra_lash_damage_+% - /// - CobraLashDamagePct = 10464, - - /// - /// cobra_lash_projectile_speed_+% - /// - CobraLashProjectileSpeedPct = 10465, - - /// - /// cobra_lash_number_of_additional_chains - /// - CobraLashNumberOfAdditionalChains = 10466, - - /// - /// slither_elusive_effect_+% - /// - SlitherElusiveEffectPct = 10467, - - /// - /// snapping_adder_damage_+% - /// - SnappingAdderDamagePct = 10468, - - /// - /// snapping_adder_withered_on_hit_for_2_seconds_%_chance - /// - SnappingAdderWitheredOnHitFor2SecondsPctChance = 10469, - - /// - /// snapping_adder_%_chance_to_retain_projectile_on_release - /// - SnappingAdderPctChanceToRetainProjectileOnRelease = 10470, - - /// - /// corrosive_shroud_poison_dot_multiplier_+_while_aura_active - /// - CorrosiveShroudPoisonDotMultiplierWhileAuraActive = 10471, - - /// - /// mamba_strike_damage_+% - /// - MambaStrikeDamagePct = 10472, - - /// - /// mamba_strike_duration_+% - /// - MambaStrikeDurationPct = 10473, - - /// - /// mamba_strike_area_of_effect_+% - /// - MambaStrikeAreaOfEffectPct = 10474, - - /// - /// bone_golem_damage_+% - /// - BoneGolemDamagePct = 10475, - - /// - /// base_bone_golem_granted_buff_effect_+% - /// - BaseBoneGolemGrantedBuffEffectPct = 10476, - - /// - /// bone_golem_elemental_resistances_% - /// - BoneGolemElementalResistancesPct = 10477, - - /// - /// summon_skitterbots_area_of_effect_+% - /// - SummonSkitterbotsAreaOfEffectPct = 10478, - - /// - /// summon_skitterbots_mana_reservation_+% - /// - SummonSkitterbotsManaReservationPct = 10479, - - /// - /// local_item_can_have_x_additional_enchantments - /// - LocalItemCanHaveXAdditionalEnchantments = 10480, - - /// - /// is_buffed_by_buff_tower - /// - IsBuffedByBuffTower = 10481, - - /// - /// elusive_effect_on_self_+% - /// - ElusiveEffectOnSelfPct = 10482, - - /// - /// virtual_unaffected_by_temporal_chains - /// - VirtualUnaffectedByTemporalChains = 10483, - - /// - /// virtual_unaffected_by_chilled_ground - /// - VirtualUnaffectedByChilledGround = 10484, - - /// - /// virtual_unaffected_by_vulnerability - /// - VirtualUnaffectedByVulnerability = 10485, - - /// - /// virtual_unaffected_by_enfeeble - /// - VirtualUnaffectedByEnfeeble = 10486, - - /// - /// virtual_unaffected_by_flammability - /// - VirtualUnaffectedByFlammability = 10487, - - /// - /// virtual_unaffected_by_frostbite - /// - VirtualUnaffectedByFrostbite = 10488, - - /// - /// virtual_unaffected_by_conductivity - /// - VirtualUnaffectedByConductivity = 10489, - - /// - /// virtual_unaffected_by_elemental_weakness - /// - VirtualUnaffectedByElementalWeakness = 10490, - - /// - /// virtual_unaffected_by_burning_ground - /// - VirtualUnaffectedByBurningGround = 10491, - - /// - /// virtual_unaffected_by_shocked_ground - /// - VirtualUnaffectedByShockedGround = 10492, - - /// - /// eligible_to_grant_kill_bonuses - /// - EligibleToGrantKillBonuses = 10493, - - /// - /// immune_to_auras_from_non_blight_towers - /// - ImmuneToAurasFromNonBlightTowers = 10494, - - /// - /// map_blight_chest_%_chance_for_additional_drop - /// - MapBlightChestPctChanceForAdditionalDrop = 10495, - - /// - /// chest_%_chance_for_additional_template_drop - /// - ChestPctChanceForAdditionalTemplateDrop = 10496, - - /// - /// active_skill_poison_duration_+%_final - /// - ActiveSkillPoisonDurationPctFinal = 10497, - - /// - /// nearby_enemies_all_exposure_%_while_phasing - /// - NearbyEnemiesAllExposurePctWhilePhasing = 10498, - - /// - /// raider_nearby_enemies_accuracy_rating_+%_final_while_phasing - /// - RaiderNearbyEnemiesAccuracyRatingPctFinalWhilePhasing = 10499, - - /// - /// raider_phasing_aura_accuracy_rating_+%_final - /// - RaiderPhasingAuraAccuracyRatingPctFinal = 10500, - - /// - /// snapping_adder_maximum_projectiles_released - /// - SnappingAdderMaximumProjectilesReleased = 10501, - - /// - /// virtual_cyclone_skill_area_of_effect_+%_from_melee_range - /// - VirtualCycloneSkillAreaOfEffectPctFromMeleeRange = 10502, - - /// - /// track_have_hit_cursed_enemy_recently - /// - TrackHaveHitCursedEnemyRecently = 10503, - - /// - /// have_hit_cursed_enemy_recently - /// - HaveHitCursedEnemyRecently = 10504, - - /// - /// mana_regeneration_rate_+%_if_hit_cursed_enemy_recently - /// - ManaRegenerationRatePctIfHitCursedEnemyRecently = 10505, - - /// - /// disable_attack_repeats - /// - DisableAttackRepeats = 10506, - - /// - /// snapping_adder_released_projectile_damage_+%_final - /// - SnappingAdderReleasedProjectileDamagePctFinal = 10507, - - /// - /// blight_tower_range_+% - /// - BlightTowerRangePct = 10508, - - /// - /// blight_shocking_tower_range_+% - /// - BlightShockingTowerRangePct = 10509, - - /// - /// blight_shocking_tower_damage_+% - /// - BlightShockingTowerDamagePct = 10510, - - /// - /// mod_granted_passive_hash_2 - /// - ModGrantedPassiveHash2 = 10511, - - /// - /// tencent_chiyou_set_movement_speed_+% - /// - TencentChiyouSetMovementSpeedPct = 10512, - - /// - /// is_in_town - /// - IsInTown = 10513, - - /// - /// track_have_used_a_warcry_in_past_8_seconds - /// - TrackHaveUsedAWarcryInPast8Seconds = 10514, - - /// - /// have_used_a_warcry_in_past_8_seconds - /// - HaveUsedAWarcryInPast8Seconds = 10515, - - /// - /// chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds - /// - ChanceToDealDoubleDamagePctIfUsedAWarcryInPast8Seconds = 10516, - - /// - /// active_skill_returning_projectile_damage_+%_final - /// - ActiveSkillReturningProjectileDamagePctFinal = 10517, - - /// - /// blight_chilling_tower_damage_+% - /// - BlightChillingTowerDamagePct = 10518, - - /// - /// blight_chilling_tower_range_+% - /// - BlightChillingTowerRangePct = 10519, - - /// - /// blight_chilling_tower_chill_effect_+% - /// - BlightChillingTowerChillEffectPct = 10520, - - /// - /// blight_chilling_tower_duration_+% - /// - BlightChillingTowerDurationPct = 10521, - - /// - /// blight_chilling_tower_freeze_for_ms - /// - BlightChillingTowerFreezeForMs = 10522, - - /// - /// blight_freezebolt_tower_damage_+% - /// - BlightFreezeboltTowerDamagePct = 10523, - - /// - /// blight_freezebolt_tower_range_+% - /// - BlightFreezeboltTowerRangePct = 10524, - - /// - /// blight_freezebolt_tower_full_damage_cold_enemies - /// - BlightFreezeboltTowerFullDamageColdEnemies = 10525, - - /// - /// blight_freezebolt_tower_projectiles_+ - /// - BlightFreezeboltTowerProjectiles = 10526, - - /// - /// blight_glacialcage_tower_duration_+% - /// - BlightGlacialcageTowerDurationPct = 10527, - - /// - /// blight_glacialcage_tower_range_+% - /// - BlightGlacialcageTowerRangePct = 10528, - - /// - /// blight_glacialcage_tower_enemy_damage_taken_+% - /// - BlightGlacialcageTowerEnemyDamageTakenPct = 10529, - - /// - /// blight_glacialcage_tower_cooldown_recovery_+% - /// - BlightGlacialcageTowerCooldownRecoveryPct = 10530, - - /// - /// blight_shocknova_tower_full_damage_lightning_enemies - /// - BlightShocknovaTowerFullDamageLightningEnemies = 10531, - - /// - /// blight_shocknova_tower_shock_effect_+% - /// - BlightShocknovaTowerShockEffectPct = 10532, - - /// - /// blight_shocknova_tower_shock_repeats_with_area_effect_+% - /// - BlightShocknovaTowerShockRepeatsWithAreaEffectPct = 10533, - - /// - /// blight_shocknova_tower_shock_additional_repeats - /// - BlightShocknovaTowerShockAdditionalRepeats = 10534, - - /// - /// blight_lightningstorm_tower_damage_+% - /// - BlightLightningstormTowerDamagePct = 10535, - - /// - /// blight_lightningstorm_tower_range_+% - /// - BlightLightningstormTowerRangePct = 10536, - - /// - /// blight_lightningstorm_tower_delay_+% - /// - BlightLightningstormTowerDelayPct = 10537, - - /// - /// blight_lightningstorm_tower_area_of_effect_+% - /// - BlightLightningstormTowerAreaOfEffectPct = 10538, - - /// - /// blight_arc_tower_damage_+% - /// - BlightArcTowerDamagePct = 10539, - - /// - /// blight_arc_tower_range_+% - /// - BlightArcTowerRangePct = 10540, - - /// - /// blight_arc_tower_additional_repeats - /// - BlightArcTowerAdditionalRepeats = 10541, - - /// - /// blight_arc_tower_additional_chains - /// - BlightArcTowerAdditionalChains = 10542, - - /// - /// blight_empowering_tower_buff_effect_+% - /// - BlightEmpoweringTowerBuffEffectPct = 10543, - - /// - /// blight_empowering_tower_range_+% - /// - BlightEmpoweringTowerRangePct = 10544, - - /// - /// blight_empowering_tower_grant_cast_speed_+% - /// - BlightEmpoweringTowerGrantCastSpeedPct = 10545, - - /// - /// blight_empowering_tower_grant_damage_+% - /// - BlightEmpoweringTowerGrantDamagePct = 10546, - - /// - /// blight_empowering_tower_grant_%_chance_to_deal_double_damage - /// - BlightEmpoweringTowerGrantPctChanceToDealDoubleDamage = 10547, - - /// - /// blight_imbuing_tower_buff_effect_+% - /// - BlightImbuingTowerBuffEffectPct = 10548, - - /// - /// blight_imbuing_tower_range_+% - /// - BlightImbuingTowerRangePct = 10549, - - /// - /// blight_imbuing_tower_grant_critical_strike_+% - /// - BlightImbuingTowerGrantCriticalStrikePct = 10550, - - /// - /// blight_imbuing_tower_grant_damage_+% - /// - BlightImbuingTowerGrantDamagePct = 10551, - - /// - /// blight_smothering_tower_buff_effect_+% - /// - BlightSmotheringTowerBuffEffectPct = 10552, - - /// - /// blight_smothering_tower_range_+% - /// - BlightSmotheringTowerRangePct = 10553, - - /// - /// blight_smothering_tower_grant_damage_+% - /// - BlightSmotheringTowerGrantDamagePct = 10554, - - /// - /// blight_smothering_tower_grant_movement_speed_+% - /// - BlightSmotheringTowerGrantMovementSpeedPct = 10555, - - /// - /// blight_seismic_tower_damage_+% - /// - BlightSeismicTowerDamagePct = 10556, - - /// - /// blight_seismic_tower_range_+% - /// - BlightSeismicTowerRangePct = 10557, - - /// - /// blight_seismic_tower_stun_duration_+% - /// - BlightSeismicTowerStunDurationPct = 10558, - - /// - /// blight_seismic_tower_additional_cascades_+ - /// - BlightSeismicTowerAdditionalCascades = 10559, - - /// - /// blight_seismic_tower_cascade_range_+% - /// - BlightSeismicTowerCascadeRangePct = 10560, - - /// - /// blight_temporal_tower_buff_effect_+% - /// - BlightTemporalTowerBuffEffectPct = 10561, - - /// - /// blight_temporal_tower_range_+% - /// - BlightTemporalTowerRangePct = 10562, - - /// - /// blight_temporal_tower_tick_speed_+% - /// - BlightTemporalTowerTickSpeedPct = 10563, - - /// - /// blight_temporal_tower_grant_you_action_speed_-% - /// - BlightTemporalTowerGrantYouActionSpeedPct = 10564, - - /// - /// blight_stonegaze_tower_duration_+% - /// - BlightStonegazeTowerDurationPct = 10565, - - /// - /// blight_stonegaze_tower_range_+% - /// - BlightStonegazeTowerRangePct = 10566, - - /// - /// blight_stonegaze_tower_cooldown_recovery_+% - /// - BlightStonegazeTowerCooldownRecoveryPct = 10567, - - /// - /// blight_stonegaze_tower_petrify_tick_speed_+% - /// - BlightStonegazeTowerPetrifyTickSpeedPct = 10568, - - /// - /// blight_summoning_tower_minion_damage_+% - /// - BlightSummoningTowerMinionDamagePct = 10569, - - /// - /// blight_summoning_tower_range_+% - /// - BlightSummoningTowerRangePct = 10570, - - /// - /// blight_summoning_tower_minion_movement_speed_+% - /// - BlightSummoningTowerMinionMovementSpeedPct = 10571, - - /// - /// blight_summoning_tower_minion_life_+% - /// - BlightSummoningTowerMinionLifePct = 10572, - - /// - /// blight_summoning_tower_minions_summoned_+ - /// - BlightSummoningTowerMinionsSummoned = 10573, - - /// - /// blight_scout_tower_minion_damage_+% - /// - BlightScoutTowerMinionDamagePct = 10574, - - /// - /// blight_scout_tower_range_+% - /// - BlightScoutTowerRangePct = 10575, - - /// - /// blight_scout_tower_minion_movement_speed_+% - /// - BlightScoutTowerMinionMovementSpeedPct = 10576, - - /// - /// blight_scout_tower_minion_life_+% - /// - BlightScoutTowerMinionLifePct = 10577, - - /// - /// blight_sentinel_tower_minion_damage_+% - /// - BlightSentinelTowerMinionDamagePct = 10578, - - /// - /// blight_sentinel_tower_range_+% - /// - BlightSentinelTowerRangePct = 10579, - - /// - /// blight_sentinel_tower_minion_movement_speed_+% - /// - BlightSentinelTowerMinionMovementSpeedPct = 10580, - - /// - /// blight_sentinel_tower_minion_life_+% - /// - BlightSentinelTowerMinionLifePct = 10581, - - /// - /// blight_fireball_tower_damage_+% - /// - BlightFireballTowerDamagePct = 10582, - - /// - /// blight_fireball_tower_range_+% - /// - BlightFireballTowerRangePct = 10583, - - /// - /// blight_fireball_tower_cast_speed_+% - /// - BlightFireballTowerCastSpeedPct = 10584, - - /// - /// blight_fireball_tower_additional_projectiles_+ - /// - BlightFireballTowerAdditionalProjectiles = 10585, - - /// - /// blight_fireball_tower_projectiles_nova - /// - BlightFireballTowerProjectilesNova = 10586, - - /// - /// blight_flamethrower_tower_damage_+% - /// - BlightFlamethrowerTowerDamagePct = 10587, - - /// - /// blight_flamethrower_tower_range_+% - /// - BlightFlamethrowerTowerRangePct = 10588, - - /// - /// blight_flamethrower_tower_full_damage_fire_enemies - /// - BlightFlamethrowerTowerFullDamageFireEnemies = 10589, - - /// - /// blight_flamethrower_tower_cast_speed_+% - /// - BlightFlamethrowerTowerCastSpeedPct = 10590, - - /// - /// blight_meteor_tower_damage_+% - /// - BlightMeteorTowerDamagePct = 10591, - - /// - /// blight_meteor_tower_range_+% - /// - BlightMeteorTowerRangePct = 10592, - - /// - /// blight_meteor_tower_always_stun - /// - BlightMeteorTowerAlwaysStun = 10593, - - /// - /// blight_meteor_tower_additional_meteor_+ - /// - BlightMeteorTowerAdditionalMeteor = 10594, - - /// - /// fire_storm_fireball_delay_+% - /// - FireStormFireballDelayPct = 10595, - - /// - /// additional_number_of_monsters_to_summon_+ - /// - AdditionalNumberOfMonstersToSummon = 10596, - - /// - /// petrification_tick_speed_+% - /// - PetrificationTickSpeedPct = 10597, - - /// - /// temporal_anomaly_tick_speed_+% - /// - TemporalAnomalyTickSpeedPct = 10598, - - /// - /// temporal_anomaly_allied_action_speed_-% - /// - TemporalAnomalyAlliedActionSpeedPct = 10599, - - /// - /// fire_storm_additional_fireballs_per_wave_+ - /// - FireStormAdditionalFireballsPerWave = 10600, - - /// - /// phys_cascade_trap_range_+% - /// - PhysCascadeTrapRangePct = 10601, - - /// - /// shock_nova_skill_area_of_effect_+%_per_repeat - /// - ShockNovaSkillAreaOfEffectPctPerRepeat = 10602, - - /// - /// chest_repeat_drops_count - /// - ChestRepeatDropsCount = 10603, - - /// - /// damage_+%_final_from_returning_projectile - /// - DamagePctFinalFromReturningProjectile = 10604, - - /// - /// display_additional_projectile_per_2_mines_in_detonation_sequence - /// - DisplayAdditionalProjectilePer2MinesInDetonationSequence = 10605, - - /// - /// display_removes_and_grants_elusive_when_used - /// - DisplayRemovesAndGrantsElusiveWhenUsed = 10606, - - /// - /// display_additional_projectile_per_mine_in_detonation_sequence - /// - DisplayAdditionalProjectilePerMineInDetonationSequence = 10607, - - /// - /// display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine - /// - DisplayMineDeontationMechanicsDetonationSpeedPctFinalPerSequenceMine = 10608, - - /// - /// display_skitterbot_limit_per_type - /// - DisplaySkitterbotLimitPerType = 10609, - - /// - /// display_skitterbot_shocking_aura - /// - DisplaySkitterbotShockingAura = 10610, - - /// - /// display_skitterbot_chilling_aura - /// - DisplaySkitterbotChillingAura = 10611, - - /// - /// damage_+%_final_against_non_blight_monsters - /// - DamagePctFinalAgainstNonBlightMonsters = 10612, - - /// - /// tencent_chiyou_set_weapon_skin - /// - TencentChiyouSetWeaponSkin = 10613, - - /// - /// tencent_chiyou_set_weapon_effect - /// - TencentChiyouSetWeaponEffect = 10614, - - /// - /// unaffected_by_temporal_tower - /// - UnaffectedByTemporalTower = 10615, - - /// - /// sweep_add_endurance_charge_on_hit_% - /// - SweepAddEnduranceChargeOnHitPct = 10616, - - /// - /// mine_cannot_rearm - /// - MineCannotRearm = 10617, - - /// - /// map_metamorphosis_league - /// - MapMetamorphosisLeague = 10618, - - /// - /// metamorphosis_skill_row - /// - MetamorphosisSkillRow = 10619, - - /// - /// metamorphosis_skill_instance_id - /// - MetamorphosisSkillInstanceId = 10620, - - /// - /// tethered_movement_speed_+%_final - /// - TetheredMovementSpeedPctFinal = 10621, - - /// - /// number_of_tethers - /// - NumberOfTethers = 10622, - - /// - /// tethered_movement_speed_+%_final_per_rope - /// - TetheredMovementSpeedPctFinalPerRope = 10623, - - /// - /// explosive_arrow_explosion_minimum_added_fire_damage - /// - ExplosiveArrowExplosionMinimumAddedFireDamage = 10624, - - /// - /// explosive_arrow_explosion_maximum_added_fire_damage - /// - ExplosiveArrowExplosionMaximumAddedFireDamage = 10625, - - /// - /// explosive_arrow_explosion_base_damage_+permyriad - /// - ExplosiveArrowExplosionBaseDamagePermyriad = 10626, - - /// - /// map_level_+ - /// - MapLevel = 10627, - - /// - /// additional_beam_only_chains - /// - AdditionalBeamOnlyChains = 10628, - - /// - /// virtual_number_of_chains_for_beams - /// - VirtualNumberOfChainsForBeams = 10629, - - /// - /// tethered_movement_speed_+%_final_per_rope_vs_rare - /// - TetheredMovementSpeedPctFinalPerRopeVsRare = 10630, - - /// - /// tethered_movement_speed_+%_final_per_rope_vs_unique - /// - TetheredMovementSpeedPctFinalPerRopeVsUnique = 10631, - - /// - /// is_ranged_attack_totem - /// - IsRangedAttackTotem = 10632, - - /// - /// attack_skills_additional_ballista_totems_allowed - /// - AttackSkillsAdditionalBallistaTotemsAllowed = 10633, - - /// - /// explosive_arrow_maximum_bonus_explosion_radius - /// - ExplosiveArrowMaximumBonusExplosionRadius = 10634, - - /// - /// modifiers_to_number_of_projectiles_instead_apply_to_splitting - /// - ModifiersToNumberOfProjectilesInsteadApplyToSplitting = 10635, - - /// - /// intermediary_number_of_additional_projectiles - /// - IntermediaryNumberOfAdditionalProjectiles = 10636, - - /// - /// virtual_projectile_number_to_split - /// - VirtualProjectileNumberToSplit = 10637, - - /// - /// virtual_arrow_number_to_split - /// - VirtualArrowNumberToSplit = 10638, - - /// - /// intermediary_number_of_additional_arrows - /// - IntermediaryNumberOfAdditionalArrows = 10639, - - /// - /// maximum_life_mana_and_energy_shield_+% - /// - MaximumLifeManaAndEnergyShieldPct = 10640, - - /// - /// maximum_energy_shield_+_per_100_life_reserved - /// - MaximumEnergyShieldPer100LifeReserved = 10641, - - /// - /// projectiles_barrage - /// - ProjectilesBarrage = 10642, - - /// - /// intermediary_chaos_resistance_only_additions - /// - IntermediaryChaosResistanceOnlyAdditions = 10643, - - /// - /// skill_ignores_cooldown - /// - SkillIgnoresCooldown = 10644, - - /// - /// summoned_monsters_num_magic_monsters - /// - SummonedMonstersNumMagicMonsters = 10645, - - /// - /// summoned_monsters_num_rare_monsters - /// - SummonedMonstersNumRareMonsters = 10646, - - /// - /// projectiles_rain - /// - ProjectilesRain = 10647, - - /// - /// tethered_enemies_take_attack_projectile_damage_taken_+% - /// - TetheredEnemiesTakeAttackProjectileDamageTakenPct = 10648, - - /// - /// support_rain_projectile_damage_+%_final - /// - SupportRainProjectileDamagePctFinal = 10649, - - /// - /// support_barrage_damage_+%_final - /// - SupportBarrageDamagePctFinal = 10650, - - /// - /// virtual_has_ascendancy_child_aura_stat - /// - VirtualHasAscendancyChildAuraStat = 10651, - - /// - /// action_should_face_away_from_target - /// - ActionShouldFaceAwayFromTarget = 10652, - - /// - /// damage_taken_+%_final_per_totem - /// - DamageTakenPctFinalPerTotem = 10653, - - /// - /// movement_velocity_+%_per_totem - /// - MovementVelocityPctPerTotem = 10654, - - /// - /// totems_action_speed_cannot_be_modified_below_base - /// - TotemsActionSpeedCannotBeModifiedBelowBase = 10655, - - /// - /// totem_attack_damage_leeched_as_mana_to_you_permyriad - /// - TotemAttackDamageLeechedAsManaToYouPermyriad = 10656, - - /// - /// damage_leeched_as_mana_to_parent_permyriad - /// - DamageLeechedAsManaToParentPermyriad = 10657, - - /// - /// totems_nearby_enemies_damage_taken_+% - /// - TotemsNearbyEnemiesDamageTakenPct = 10658, - - /// - /// attack_projectile_damage_taken_+% - /// - AttackProjectileDamageTakenPct = 10659, - - /// - /// physical_damage_taken_+%_final - /// - PhysicalDamageTakenPctFinal = 10660, - - /// - /// physical_damage_taken_when_hit_+%_final - /// - PhysicalDamageTakenWhenHitPctFinal = 10661, - - /// - /// cold_damage_taken_+%_final - /// - ColdDamageTakenPctFinal = 10662, - - /// - /// cold_damage_taken_when_hit_+%_final - /// - ColdDamageTakenWhenHitPctFinal = 10663, - - /// - /// lightning_damage_taken_+%_final - /// - LightningDamageTakenPctFinal = 10664, - - /// - /// lightning_damage_taken_when_hit_+%_final - /// - LightningDamageTakenWhenHitPctFinal = 10665, - - /// - /// fire_damage_taken_+%_final - /// - FireDamageTakenPctFinal = 10666, - - /// - /// fire_damage_taken_when_hit_+%_final - /// - FireDamageTakenWhenHitPctFinal = 10667, - - /// - /// chaos_damage_taken_+%_final - /// - ChaosDamageTakenPctFinal = 10668, - - /// - /// chaos_damage_taken_when_hit_+%_final - /// - ChaosDamageTakenWhenHitPctFinal = 10669, - - /// - /// elemental_damage_taken_+%_final - /// - ElementalDamageTakenPctFinal = 10670, - - /// - /// virtual_chaos_reflect_damage_taken_+% - /// - VirtualChaosReflectDamageTakenPct = 10671, - - /// - /// virtual_elemental_damage_taken_when_hit_+% - /// - VirtualElementalDamageTakenWhenHitPct = 10672, - - /// - /// virtual_physical_damage_taken_over_time_+% - /// - VirtualPhysicalDamageTakenOverTimePct = 10673, - - /// - /// virtual_cold_damage_taken_over_time_+% - /// - VirtualColdDamageTakenOverTimePct = 10674, - - /// - /// virtual_lightning_damage_taken_over_time_+% - /// - VirtualLightningDamageTakenOverTimePct = 10675, - - /// - /// virtual_fire_damage_taken_over_time_+% - /// - VirtualFireDamageTakenOverTimePct = 10676, - - /// - /// virtual_chaos_damage_taken_over_time_+% - /// - VirtualChaosDamageTakenOverTimePct = 10677, - - /// - /// chaos_damage_%_taken_from_mana_before_life - /// - ChaosDamagePctTakenFromManaBeforeLife = 10678, - - /// - /// on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds - /// - OnCastLoseAllManaGainPctAsMaximumLightningDamageFor4Seconds = 10679, - - /// - /// allow_multiple_offerings - /// - AllowMultipleOfferings = 10680, - - /// - /// offering_duration_+% - /// - OfferingDurationPct = 10681, - - /// - /// character_sheet_reference_accuracy - /// - CharacterSheetReferenceAccuracy = 10682, - - /// - /// character_sheet_reference_damage - /// - CharacterSheetReferenceDamage = 10683, - - /// - /// character_sheet_reference_evasion - /// - CharacterSheetReferenceEvasion = 10684, - - /// - /// character_sheet_reference_high_dex_evasion - /// - CharacterSheetReferenceHighDexEvasion = 10685, - - /// - /// chance_to_evade_attacks_+%_final - /// - ChanceToEvadeAttacksPctFinal = 10686, - - /// - /// chance_to_evade_projectile_attacks_+%_final - /// - ChanceToEvadeProjectileAttacksPctFinal = 10687, - - /// - /// chance_to_evade_melee_attacks_+%_final - /// - ChanceToEvadeMeleeAttacksPctFinal = 10688, - - /// - /// virtual_avoid_elemental_damage_% - /// - VirtualAvoidElementalDamagePct = 10689, - - /// - /// virtual_avoid_fire_damage_% - /// - VirtualAvoidFireDamagePct = 10690, - - /// - /// virtual_avoid_cold_damage_% - /// - VirtualAvoidColdDamagePct = 10691, - - /// - /// virtual_avoid_lightning_damage_% - /// - VirtualAvoidLightningDamagePct = 10692, - - /// - /// map_atlas_exile_influence - /// - MapAtlasExileInfluence = 10693, - - /// - /// fortify_damage_taken_when_hit_+%_final - /// - FortifyDamageTakenWhenHitPctFinal = 10694, - - /// - /// harbinger_channel_buff_damage_taken_+%_final - /// - HarbingerChannelBuffDamageTakenPctFinal = 10695, - - /// - /// damage_taken_when_hit_+%_final - /// - DamageTakenWhenHitPctFinal = 10696, - - /// - /// ailment_threshold - /// - AilmentThreshold = 10697, - - /// - /// base_ailment_threshold - /// - BaseAilmentThreshold = 10698, - - /// - /// ailment_threshold_+% - /// - AilmentThresholdPct = 10699, - - /// - /// max_chance_to_block_attacks_if_not_blocked_recently - /// - MaxChanceToBlockAttacksIfNotBlockedRecently = 10700, - - /// - /// phasing_if_blocked_recently - /// - PhasingIfBlockedRecently = 10701, - - /// - /// extra_target_targeting_distance_+% - /// - ExtraTargetTargetingDistancePct = 10702, - - /// - /// damaging_ailments_deal_damage_+%_faster - /// - DamagingAilmentsDealDamagePctFaster = 10703, - - /// - /// virtual_number_of_forks_for_projectiles_final - /// - VirtualNumberOfForksForProjectilesFinal = 10704, - - /// - /// number_of_additional_forks_base - /// - NumberOfAdditionalForksBase = 10705, - - /// - /// inc_aoe_plus_more_area_damage_+%_final - /// - IncAoePlusMoreAreaDamagePctFinal = 10706, - - /// - /// spell_echo_plus_chance_double_damage_%_final - /// - SpellEchoPlusChanceDoubleDamagePctFinal = 10707, - - /// - /// multistrike_damage_+%_final_on_third_repeat - /// - MultistrikeDamagePctFinalOnThirdRepeat = 10708, - - /// - /// unaffected_by_bleeding_while_leeching - /// - UnaffectedByBleedingWhileLeeching = 10709, - - /// - /// metamorphosis_boss_life_+%_final_permyriad - /// - MetamorphosisBossLifePctFinalPermyriad = 10710, - - /// - /// metamorphosis_boss_attack_speed_+%_final_permyriad - /// - MetamorphosisBossAttackSpeedPctFinalPermyriad = 10711, - - /// - /// metamorphosis_boss_cast_speed_+%_final_permyriad - /// - MetamorphosisBossCastSpeedPctFinalPermyriad = 10712, - - /// - /// metamorphosis_boss_move_speed_+%_final_permyriad - /// - MetamorphosisBossMoveSpeedPctFinalPermyriad = 10713, - - /// - /// metamorphosis_boss_damage_+%_final_permyriad - /// - MetamorphosisBossDamagePctFinalPermyriad = 10714, - - /// - /// metamorphosis_boss_actor_scale_+%_permyriad - /// - MetamorphosisBossActorScalePctPermyriad = 10715, - - /// - /// metamorphosis_boss_item_quantity_+%_final_permyriad - /// - MetamorphosisBossItemQuantityPctFinalPermyriad = 10716, - - /// - /// metamorphosis_boss_item_rarity_+%_final_permyriad - /// - MetamorphosisBossItemRarityPctFinalPermyriad = 10717, - - /// - /// metamorphosis_boss_extra_reward_%_chance_permyriad - /// - MetamorphosisBossExtraRewardPctChancePermyriad = 10718, - - /// - /// metamorphosis_boss_power_level - /// - MetamorphosisBossPowerLevel = 10719, - - /// - /// supported_aura_skill_gem_level_+ - /// - SupportedAuraSkillGemLevel = 10720, - - /// - /// supported_cold_skill_gem_level_+ - /// - SupportedColdSkillGemLevel = 10721, - - /// - /// supported_elemental_skill_gem_level_+ - /// - SupportedElementalSkillGemLevel = 10722, - - /// - /// supported_curse_skill_gem_level_+ - /// - SupportedCurseSkillGemLevel = 10723, - - /// - /// supported_lightning_skill_gem_level_+ - /// - SupportedLightningSkillGemLevel = 10724, - - /// - /// explosive_arrow_hit_and_ailment_damage_+%_final_per_stack - /// - ExplosiveArrowHitAndAilmentDamagePctFinalPerStack = 10725, - - /// - /// non_damaging_ailments_as_though_damage_+%_final - /// - NonDamagingAilmentsAsThoughDamagePctFinal = 10726, - - /// - /// critical_strikes_do_not_always_apply_non_damaging_ailments - /// - CriticalStrikesDoNotAlwaysApplyNonDamagingAilments = 10727, - - /// - /// summoned_phantasms_have_no_duration - /// - SummonedPhantasmsHaveNoDuration = 10728, - - /// - /// active_skill_player_level - /// - ActiveSkillPlayerLevel = 10729, - - /// - /// support_barrage_attack_time_+%_per_projectile_fired - /// - SupportBarrageAttackTimePctPerProjectileFired = 10730, - - /// - /// metamorphosis_boss_item_reward_slot_1_index - /// - MetamorphosisBossItemRewardSlot1Index = 10731, - - /// - /// metamorphosis_boss_item_reward_slot_2_index - /// - MetamorphosisBossItemRewardSlot2Index = 10732, - - /// - /// metamorphosis_boss_item_reward_slot_3_index - /// - MetamorphosisBossItemRewardSlot3Index = 10733, - - /// - /// metamorphosis_boss_item_reward_slot_4_index - /// - MetamorphosisBossItemRewardSlot4Index = 10734, - - /// - /// metamorphosis_boss_item_reward_slot_5_index - /// - MetamorphosisBossItemRewardSlot5Index = 10735, - - /// - /// local_item_allow_modification_while_corrupted - /// - LocalItemAllowModificationWhileCorrupted = 10736, - - /// - /// local_item_implicit_modifier_limit - /// - LocalItemImplicitModifierLimit = 10737, - - /// - /// skill_cooldown_time_override_ms - /// - SkillCooldownTimeOverrideMs = 10738, - - /// - /// skill_cooldown_group_override - /// - SkillCooldownGroupOverride = 10739, - - /// - /// jewellery_elemental_quality - /// - JewelleryElementalQuality = 10740, - - /// - /// jewellery_caster_quality - /// - JewelleryCasterQuality = 10741, - - /// - /// jewellery_attack_quality - /// - JewelleryAttackQuality = 10742, - - /// - /// jewellery_defense_quality - /// - JewelleryDefenseQuality = 10743, - - /// - /// jewellery_resource_quality - /// - JewelleryResourceQuality = 10744, - - /// - /// jewellery_resistance_quality - /// - JewelleryResistanceQuality = 10745, - - /// - /// jewellery_attribute_quality - /// - JewelleryAttributeQuality = 10746, - - /// - /// base_additional_burning_debuff_%_of_ignite_damage - /// - BaseAdditionalBurningDebuffPctOfIgniteDamage = 10747, - - /// - /// full_shield_threshold - /// - FullShieldThreshold = 10748, - - /// - /// skill_can_only_use_non_melee_weapons - /// - SkillCanOnlyUseNonMeleeWeapons = 10749, - - /// - /// skill_can_only_use_bow - /// - SkillCanOnlyUseBow = 10750, - - /// - /// chance_to_ignore_hexproof_% - /// - ChanceToIgnoreHexproofPct = 10751, - - /// - /// no_minion_duration - /// - NoMinionDuration = 10752, - - /// - /// active_skill_attack_damage_+%_final_with_two_handed_weapon - /// - ActiveSkillAttackDamagePctFinalWithTwoHandedWeapon = 10753, - - /// - /// active_skill_attack_speed_+%_final_with_two_handed_weapon - /// - ActiveSkillAttackSpeedPctFinalWithTwoHandedWeapon = 10754, - - /// - /// Knockback Speed +% - /// - KnockbackSpeedPct = 10755, - - /// - /// tethering_arrow_display_rope_limit - /// - TetheringArrowDisplayRopeLimit = 10756, - - /// - /// additive_arrow_speed_modifiers_apply_to_area_of_effect - /// - AdditiveArrowSpeedModifiersApplyToAreaOfEffect = 10757, - - /// - /// combined_arrow_speed_+% - /// - CombinedArrowSpeedPct = 10758, - - /// - /// metamorphosis_boss_disable_bone_morphing - /// - MetamorphosisBossDisableBoneMorphing = 10759, - - /// - /// map_additional_tier - /// - MapAdditionalTier = 10760, - - /// - /// map_warlord_influence - /// - MapWarlordInfluence = 10761, - - /// - /// support_spell_cascade_sideways - /// - SupportSpellCascadeSideways = 10762, - - /// - /// artillery_ballista_fire_pen_+% - /// - ArtilleryBallistaFirePenPct = 10763, - - /// - /// artillery_ballista_num_additional_arrows - /// - ArtilleryBallistaNumAdditionalArrows = 10764, - - /// - /// shrapnel_ballista_num_additional_arrows - /// - ShrapnelBallistaNumAdditionalArrows = 10765, - - /// - /// shrapnel_ballista_projectile_speed_+% - /// - ShrapnelBallistaProjectileSpeedPct = 10766, - - /// - /// shrapnel_ballista_num_pierce - /// - ShrapnelBallistaNumPierce = 10767, - - /// - /// determine_knockback_direction_from_melee_pattern - /// - DetermineKnockbackDirectionFromMeleePattern = 10768, - - /// - /// galvanic_arrow_projectile_speed_+% - /// - GalvanicArrowProjectileSpeedPct = 10769, - - /// - /// check_for_targets_between_initiator_and_projectile_source - /// - CheckForTargetsBetweenInitiatorAndProjectileSource = 10770, - - /// - /// cannot_recover_energy_shield - /// - CannotRecoverEnergyShield = 10771, - - /// - /// minions_use_parents_flasks_on_summon - /// - MinionsUseParentsFlasksOnSummon = 10772, - - /// - /// poison_dot_multiplier_+_per_frenzy_charge - /// - PoisonDotMultiplierPerFrenzyCharge = 10773, - - /// - /// movement_velocity_+%_while_near_parent_final - /// - MovementVelocityPctWhileNearParentFinal = 10774, - - /// - /// movement_velocity_+%_for_near_parent_buffstat_final - /// - MovementVelocityPctForNearParentBuffstatFinal = 10775, - - /// - /// sextant_uses_remaining - /// - SextantUsesRemaining = 10776, - - /// - /// watchstone_uses_remaining - /// - WatchstoneUsesRemaining = 10777, - - /// - /// skill_number_of_previous_locations_to_track - /// - SkillNumberOfPreviousLocationsToTrack = 10778, - - /// - /// melee_strike_skill_strike_previous_location - /// - MeleeStrikeSkillStrikePreviousLocation = 10779, - - /// - /// skill_is_strike_skill - /// - SkillIsStrikeSkill = 10780, - - /// - /// orion_circle_maze_number_of_circles - /// - OrionCircleMazeNumberOfCircles = 10781, - - /// - /// summon_mirage_warrior_on_crit - /// - SummonMirageWarriorOnCrit = 10782, - - /// - /// avoid_elemental_damage_while_phasing_% - /// - AvoidElementalDamageWhilePhasingPct = 10783, - - /// - /// active_skill_chill_as_though_damage_+%_final - /// - ActiveSkillChillAsThoughDamagePctFinal = 10784, - - /// - /// active_skill_shock_as_though_damage_+%_final - /// - ActiveSkillShockAsThoughDamagePctFinal = 10785, - - /// - /// fire_skill_gem_level_+ - /// - FireSkillGemLevel = 10786, - - /// - /// cold_skill_gem_level_+ - /// - ColdSkillGemLevel = 10787, - - /// - /// lightning_skill_gem_level_+ - /// - LightningSkillGemLevel = 10788, - - /// - /// chaos_skill_gem_level_+ - /// - ChaosSkillGemLevel = 10789, - - /// - /// physical_skill_gem_level_+ - /// - PhysicalSkillGemLevel = 10790, - - /// - /// strength_skill_gem_level_+ - /// - StrengthSkillGemLevel = 10791, - - /// - /// dexterity_skill_gem_level_+ - /// - DexteritySkillGemLevel = 10792, - - /// - /// intelligence_skill_gem_level_+ - /// - IntelligenceSkillGemLevel = 10793, - - /// - /// skill_is_nova_skill - /// - SkillIsNovaSkill = 10794, - - /// - /// nova_spells_cast_at_target_location - /// - NovaSpellsCastAtTargetLocation = 10795, - - /// - /// virtual_self_targeted_skills_target_location_instead - /// - VirtualSelfTargetedSkillsTargetLocationInstead = 10796, - - /// - /// map_awakening_level - /// - MapAwakeningLevel = 10797, - - /// - /// map_boss_life_+permyriad_final_from_awakening_level - /// - MapBossLifePermyriadFinalFromAwakeningLevel = 10798, - - /// - /// map_boss_additional_chance_to_drop_adjacent_map_permyriad - /// - MapBossAdditionalChanceToDropAdjacentMapPermyriad = 10799, - - /// - /// map_boss_chance_to_drop_additional_shaper_guardian_map_permyriad - /// - MapBossChanceToDropAdditionalShaperGuardianMapPermyriad = 10800, - - /// - /// map_boss_chance_to_drop_additional_elder_guardian_map_permyriad - /// - MapBossChanceToDropAdditionalElderGuardianMapPermyriad = 10801, - - /// - /// map_boss_chance_to_drop_additional_atlas_base_type_permyriad - /// - MapBossChanceToDropAdditionalAtlasBaseTypePermyriad = 10802, - - /// - /// map_boss_chance_to_drop_additional_unique_item_permyriad - /// - MapBossChanceToDropAdditionalUniqueItemPermyriad = 10803, - - /// - /// map_boss_chance_to_drop_additional_map_currency_permyriad - /// - MapBossChanceToDropAdditionalMapCurrencyPermyriad = 10804, - - /// - /// monster_life_+permyriad_final_from_awakening_level - /// - MonsterLifePermyriadFinalFromAwakeningLevel = 10805, - - /// - /// map_atlas_exile_special_drop_chance_+permyriad - /// - MapAtlasExileSpecialDropChancePermyriad = 10806, - - /// - /// map_atlas_exile_influenced_item_drop_chance_+permyriad - /// - MapAtlasExileInfluencedItemDropChancePermyriad = 10807, - - /// - /// chance_to_drop_additional_shaper_guardian_map_permyriad - /// - ChanceToDropAdditionalShaperGuardianMapPermyriad = 10808, - - /// - /// chance_to_drop_additional_elder_guardian_map_permyriad - /// - ChanceToDropAdditionalElderGuardianMapPermyriad = 10809, - - /// - /// chance_to_drop_additional_atlas_base_type_permyriad - /// - ChanceToDropAdditionalAtlasBaseTypePermyriad = 10810, - - /// - /// chance_to_drop_additional_unique_item_permyriad - /// - ChanceToDropAdditionalUniqueItemPermyriad = 10811, - - /// - /// chance_to_drop_additional_map_currency_permyriad - /// - ChanceToDropAdditionalMapCurrencyPermyriad = 10812, - - /// - /// supress_muzzle_flash - /// - SupressMuzzleFlash = 10813, - - /// - /// supress_weapon_surges - /// - SupressWeaponSurges = 10814, - - /// - /// muzzle_flash_swap_hands - /// - MuzzleFlashSwapHands = 10815, - - /// - /// local_jewel_minimum_radius_difference - /// - LocalJewelMinimumRadiusDifference = 10816, - - /// - /// maximum_number_of_mirage_warriors - /// - MaximumNumberOfMirageWarriors = 10817, - - /// - /// number_of_active_mirage_warriors - /// - NumberOfActiveMirageWarriors = 10818, - - /// - /// local_display_fire_and_cold_resist_debuff - /// - LocalDisplayFireAndColdResistDebuff = 10819, - - /// - /// additional_burning_debuff_%_of_ignite_damage - /// - AdditionalBurningDebuffPctOfIgniteDamage = 10820, - - /// - /// cannot_inflict_additional_burning_debuff_with_ignite - /// - CannotInflictAdditionalBurningDebuffWithIgnite = 10821, - - /// - /// burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite - /// - BurningArrowCannotInflictAdditionalBurningDebuffWithIgnite = 10822, - - /// - /// terrain_arrow_attachment_chance_reduction_+% - /// - TerrainArrowAttachmentChanceReductionPct = 10823, - - /// - /// projectiles_nova_on_impact_projectile_count - /// - ProjectilesNovaOnImpactProjectileCount = 10824, - - /// - /// map_atlas_exile_boss - /// - MapAtlasExileBoss = 10825, - - /// - /// should_use_alternate_fortify - /// - ShouldUseAlternateFortify = 10826, - - /// - /// alternate_fortify_evasion_rating_+%_final - /// - AlternateFortifyEvasionRatingPctFinal = 10827, - - /// - /// attack_and_cast_speed_+%_while_you_have_fortify - /// - AttackAndCastSpeedPctWhileYouHaveFortify = 10828, - - /// - /// hide_mini_life_bar - /// - HideMiniLifeBar = 10829, - - /// - /// hide_buff_visuals - /// - HideBuffVisuals = 10830, - - /// - /// ensnaring_arrow_debuff_effect_+% - /// - EnsnaringArrowDebuffEffectPct = 10831, - - /// - /// ensnaring_arrow_area_of_effect_+% - /// - EnsnaringArrowAreaOfEffectPct = 10832, - - /// - /// burning_arrow_debuff_effect_+% - /// - BurningArrowDebuffEffectPct = 10833, - - /// - /// explosive_arrow_duration_+% - /// - ExplosiveArrowDurationPct = 10834, - - /// - /// map_adds_X_extra_synthesis_mods - /// - MapAddsXExtraSynthesisMods = 10835, - - /// - /// map_adds_X_extra_synthesis_special_mods - /// - MapAddsXExtraSynthesisSpecialMods = 10836, - - /// - /// artillery_ballista_cross_strafe_pattern - /// - ArtilleryBallistaCrossStrafePattern = 10837, - - /// - /// skill_area_angle_+% - /// - SkillAreaAnglePct = 10838, - - /// - /// ice_shot_area_angle_+% - /// - IceShotAreaAnglePct = 10839, - - /// - /// ailment_threshold_pluspercent_final_for_map_boss - /// - AilmentThresholdPluspercentFinalForMapBoss = 10840, - - /// - /// base_inflict_cold_exposure_on_hit_%_chance - /// - BaseInflictColdExposureOnHitPctChance = 10841, - - /// - /// base_inflict_lightning_exposure_on_hit_%_chance - /// - BaseInflictLightningExposureOnHitPctChance = 10842, - - /// - /// base_inflict_fire_exposure_on_hit_%_chance - /// - BaseInflictFireExposureOnHitPctChance = 10843, - - /// - /// unique_voltaxic_rift_shock_as_though_damage_+%_final - /// - UniqueVoltaxicRiftShockAsThoughDamagePctFinal = 10844, - - /// - /// supported_fire_skill_gem_level_+ - /// - SupportedFireSkillGemLevel = 10845, - - /// - /// gain_single_conflux_for_3_seconds_every_8_seconds - /// - GainSingleConfluxFor3SecondsEvery8Seconds = 10846, - - /// - /// block_%_if_blocked_an_attack_recently - /// - BlockPctIfBlockedAnAttackRecently = 10847, - - /// - /// spell_block_%_if_blocked_a_spell_recently - /// - SpellBlockPctIfBlockedASpellRecently = 10848, - - /// - /// local_display_socketed_skills_fork - /// - LocalDisplaySocketedSkillsFork = 10849, - - /// - /// minimum_added_physical_damage_if_have_crit_recently - /// - MinimumAddedPhysicalDamageIfHaveCritRecently = 10850, - - /// - /// maximum_added_physical_damage_if_have_crit_recently - /// - MaximumAddedPhysicalDamageIfHaveCritRecently = 10851, - - /// - /// maximum_added_fire_damage_if_have_crit_recently - /// - MaximumAddedFireDamageIfHaveCritRecently = 10852, - - /// - /// minimum_added_fire_damage_if_have_crit_recently - /// - MinimumAddedFireDamageIfHaveCritRecently = 10853, - - /// - /// minimum_added_cold_damage_if_have_crit_recently - /// - MinimumAddedColdDamageIfHaveCritRecently = 10854, - - /// - /// maximum_added_cold_damage_if_have_crit_recently - /// - MaximumAddedColdDamageIfHaveCritRecently = 10855, - - /// - /// minimum_added_lightning_damage_if_have_crit_recently - /// - MinimumAddedLightningDamageIfHaveCritRecently = 10856, - - /// - /// maximum_added_lightning_damage_if_have_crit_recently - /// - MaximumAddedLightningDamageIfHaveCritRecently = 10857, - - /// - /// enemy_phys_reduction_%_penalty_vs_hit - /// - EnemyPhysReductionPctPenaltyVsHit = 10858, - - /// - /// local_fire_penetration_% - /// - LocalFirePenetrationPct = 10859, - - /// - /// main_hand_fire_penetration_% - /// - MainHandFirePenetrationPct = 10860, - - /// - /// off_hand_fire_penetration_% - /// - OffHandFirePenetrationPct = 10861, - - /// - /// local_cold_penetration_% - /// - LocalColdPenetrationPct = 10862, - - /// - /// main_hand_cold_penetration_% - /// - MainHandColdPenetrationPct = 10863, - - /// - /// off_hand_cold_penetration_% - /// - OffHandColdPenetrationPct = 10864, - - /// - /// local_lightning_penetration_% - /// - LocalLightningPenetrationPct = 10865, - - /// - /// main_hand_lightning_penetration_% - /// - MainHandLightningPenetrationPct = 10866, - - /// - /// off_hand_lightning_penetration_% - /// - OffHandLightningPenetrationPct = 10867, - - /// - /// should_have_tailwind_from_stat - /// - ShouldHaveTailwindFromStat = 10868, - - /// - /// tailwind_if_have_crit_recently - /// - TailwindIfHaveCritRecently = 10869, - - /// - /// unique_voltaxic_rift_shock_maximum_magnitude_override - /// - UniqueVoltaxicRiftShockMaximumMagnitudeOverride = 10870, - - /// - /// blight_path_piece_length_modifier_% - /// - BlightPathPieceLengthModifierPct = 10871, - - /// - /// minion_flask_charges_used_+% - /// - MinionFlaskChargesUsedPct = 10872, - - /// - /// drop_additional_synthesis_map - /// - DropAdditionalSynthesisMap = 10873, - - /// - /// local_ring_nova_spells_area_of_effect_+%_final - /// - LocalRingNovaSpellsAreaOfEffectPctFinal = 10874, - - /// - /// left_ring_slot_nova_spells_area_of_effect_+%_final - /// - LeftRingSlotNovaSpellsAreaOfEffectPctFinal = 10875, - - /// - /// right_ring_slot_nova_spells_area_of_effect_+%_final - /// - RightRingSlotNovaSpellsAreaOfEffectPctFinal = 10876, - - /// - /// support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired - /// - SupportBarrageTrapAndMineThrowingTimePctFinalPerProjectileFired = 10877, - - /// - /// virtual_trap_and_mine_throwing_time_+%_final - /// - VirtualTrapAndMineThrowingTimePctFinal = 10878, - - /// - /// max_number_of_lightning_warp_markers - /// - MaxNumberOfLightningWarpMarkers = 10879, - - /// - /// local_weapon_enemy_phys_reduction_%_penalty - /// - LocalWeaponEnemyPhysReductionPctPenalty = 10880, - - /// - /// main_hand_enemy_phys_reduction_%_penalty - /// - MainHandEnemyPhysReductionPctPenalty = 10881, - - /// - /// off_hand_enemy_phys_reduction_%_penalty - /// - OffHandEnemyPhysReductionPctPenalty = 10882, - - /// - /// impale_phys_reduction_%_penalty - /// - ImpalePhysReductionPctPenalty = 10883, - - /// - /// map_drop_influenced_items_type - /// - MapDropInfluencedItemsType = 10884, - - /// - /// melee_strike_skill_number_of_previous_locations_to_strike - /// - MeleeStrikeSkillNumberOfPreviousLocationsToStrike = 10885, - - /// - /// flask_duration_on_minions_+% - /// - FlaskDurationOnMinionsPct = 10886, - - /// - /// local_display_trigger_level_x_reflection_skill_on_equip - /// - LocalDisplayTriggerLevelXReflectionSkillOnEquip = 10887, - - /// - /// summoned_phantasms_grant_buff - /// - SummonedPhantasmsGrantBuff = 10888, - - /// - /// phantasm_minimum_added_physical_damage_to_grant - /// - PhantasmMinimumAddedPhysicalDamageToGrant = 10889, - - /// - /// phantasm_maximum_added_physical_damage_to_grant - /// - PhantasmMaximumAddedPhysicalDamageToGrant = 10890, - - /// - /// phantasm_grant_buff_minimum_added_physical_damage - /// - PhantasmGrantBuffMinimumAddedPhysicalDamage = 10891, - - /// - /// phantasm_grant_buff_maximum_added_physical_damage - /// - PhantasmGrantBuffMaximumAddedPhysicalDamage = 10892, - - /// - /// map_base_ground_fire_damage_to_deal_per_10_seconds - /// - MapBaseGroundFireDamageToDealPer10Seconds = 10893, - - /// - /// map_ground_ice_base_magnitude - /// - MapGroundIceBaseMagnitude = 10894, - - /// - /// map_ground_lightning_base_magnitude - /// - MapGroundLightningBaseMagnitude = 10895, - - /// - /// map_mod_effect_+%_for_non_unique_maps - /// - MapModEffectPctForNonUniqueMaps = 10896, - - /// - /// local_ring_attack_speed_+%_final - /// - LocalRingAttackSpeedPctFinal = 10897, - - /// - /// left_ring_slot_attack_speed_+%_final - /// - LeftRingSlotAttackSpeedPctFinal = 10898, - - /// - /// right_ring_slot_attack_speed_+%_final - /// - RightRingSlotAttackSpeedPctFinal = 10899, - - /// - /// map_crusader_influence_spawn_monster_from_crusader_group_on_death_non_unique_% - /// - MapCrusaderInfluenceSpawnMonsterFromCrusaderGroupOnDeathNonUniquePct = 10900, - - /// - /// local_jewel_variable_ring_radius_value - /// - LocalJewelVariableRingRadiusValue = 10901, - - /// - /// map_watchstone_monsters_life_+%_final - /// - MapWatchstoneMonstersLifePctFinal = 10902, - - /// - /// map_watchstone_monsters_damage_+%_final - /// - MapWatchstoneMonstersDamagePctFinal = 10903, - - /// - /// map_number_of_additional_prefixes - /// - MapNumberOfAdditionalPrefixes = 10904, - - /// - /// map_number_of_additional_suffixes - /// - MapNumberOfAdditionalSuffixes = 10905, - - /// - /// monster_life_+%_final_from_watchstone - /// - MonsterLifePctFinalFromWatchstone = 10906, - - /// - /// monster_damage_+%_final_from_watchstone - /// - MonsterDamagePctFinalFromWatchstone = 10907, - - /// - /// map_no_arrow_terrain_attachment_in_area - /// - MapNoArrowTerrainAttachmentInArea = 10908, - - /// - /// map_watchstone_additional_packs_of_elder_monsters - /// - MapWatchstoneAdditionalPacksOfElderMonsters = 10909, - - /// - /// map_watchstone_additional_packs_of_shaper_monsters - /// - MapWatchstoneAdditionalPacksOfShaperMonsters = 10910, - - /// - /// local_display_supported_by_level_x_awakened_added_fire_damage - /// - LocalDisplaySupportedByLevelXAwakenedAddedFireDamage = 10911, - - /// - /// local_display_supported_by_level_x_awakened_ancestral_call - /// - LocalDisplaySupportedByLevelXAwakenedAncestralCall = 10912, - - /// - /// local_display_supported_by_level_x_awakened_brutality - /// - LocalDisplaySupportedByLevelXAwakenedBrutality = 10913, - - /// - /// local_display_supported_by_level_x_awakened_burning_damage - /// - LocalDisplaySupportedByLevelXAwakenedBurningDamage = 10914, - - /// - /// local_display_supported_by_level_x_awakened_weapon_elemental_damage - /// - LocalDisplaySupportedByLevelXAwakenedWeaponElementalDamage = 10915, - - /// - /// local_display_supported_by_level_x_awakened_fire_penetration - /// - LocalDisplaySupportedByLevelXAwakenedFirePenetration = 10916, - - /// - /// local_display_supported_by_level_x_awakened_generosity - /// - LocalDisplaySupportedByLevelXAwakenedGenerosity = 10917, - - /// - /// local_display_supported_by_level_x_awakened_melee_physical_damage - /// - LocalDisplaySupportedByLevelXAwakenedMeleePhysicalDamage = 10918, - - /// - /// local_display_supported_by_level_x_awakened_melee_splash - /// - LocalDisplaySupportedByLevelXAwakenedMeleeSplash = 10919, - - /// - /// local_display_supported_by_level_x_awakened_multistrike - /// - LocalDisplaySupportedByLevelXAwakenedMultistrike = 10920, - - /// - /// local_display_supported_by_level_x_awakened_added_cold_damage - /// - LocalDisplaySupportedByLevelXAwakenedAddedColdDamage = 10921, - - /// - /// local_display_supported_by_level_x_awakened_arrow_nova - /// - LocalDisplaySupportedByLevelXAwakenedArrowNova = 10922, - - /// - /// local_display_supported_by_level_x_awakened_cast_on_crit - /// - LocalDisplaySupportedByLevelXAwakenedCastOnCrit = 10923, - - /// - /// local_display_supported_by_level_x_awakened_chain - /// - LocalDisplaySupportedByLevelXAwakenedChain = 10924, - - /// - /// local_display_supported_by_level_x_awakened_cold_penetration - /// - LocalDisplaySupportedByLevelXAwakenedColdPenetration = 10925, - - /// - /// local_display_supported_by_level_x_awakened_deadly_ailments - /// - LocalDisplaySupportedByLevelXAwakenedDeadlyAilments = 10926, - - /// - /// local_display_supported_by_level_x_awakened_fork - /// - LocalDisplaySupportedByLevelXAwakenedFork = 10927, - - /// - /// local_display_supported_by_level_x_awakened_greater_multiple_projectiles - /// - LocalDisplaySupportedByLevelXAwakenedGreaterMultipleProjectiles = 10928, - - /// - /// local_display_supported_by_level_x_awakened_swift_affliction - /// - LocalDisplaySupportedByLevelXAwakenedSwiftAffliction = 10929, - - /// - /// local_display_supported_by_level_x_awakened_void_manipulation - /// - LocalDisplaySupportedByLevelXAwakenedVoidManipulation = 10930, - - /// - /// local_display_supported_by_level_x_awakened_vicious_projectiles - /// - LocalDisplaySupportedByLevelXAwakenedViciousProjectiles = 10931, - - /// - /// local_display_supported_by_level_x_awakened_added_chaos_damage - /// - LocalDisplaySupportedByLevelXAwakenedAddedChaosDamage = 10932, - - /// - /// local_display_supported_by_level_x_awakened_added_lightning_damage - /// - LocalDisplaySupportedByLevelXAwakenedAddedLightningDamage = 10933, - - /// - /// local_display_supported_by_level_x_awakened_blasphemy - /// - LocalDisplaySupportedByLevelXAwakenedBlasphemy = 10934, - - /// - /// local_display_supported_by_level_x_awakened_cast_while_channelling - /// - LocalDisplaySupportedByLevelXAwakenedCastWhileChannelling = 10935, - - /// - /// local_display_supported_by_level_x_awakened_controlled_destruction - /// - LocalDisplaySupportedByLevelXAwakenedControlledDestruction = 10936, - - /// - /// local_display_supported_by_level_x_awakened_curse_on_hit - /// - LocalDisplaySupportedByLevelXAwakenedCurseOnHit = 10937, - - /// - /// local_display_supported_by_level_x_awakened_elemental_focus - /// - LocalDisplaySupportedByLevelXAwakenedElementalFocus = 10938, - - /// - /// local_display_supported_by_level_x_awakened_increased_area_of_effect - /// - LocalDisplaySupportedByLevelXAwakenedIncreasedAreaOfEffect = 10939, - - /// - /// local_display_supported_by_level_x_awakened_lightning_penetration - /// - LocalDisplaySupportedByLevelXAwakenedLightningPenetration = 10940, - - /// - /// local_display_supported_by_level_x_awakened_minion_damage - /// - LocalDisplaySupportedByLevelXAwakenedMinionDamage = 10941, - - /// - /// local_display_supported_by_level_x_awakened_spell_cascade - /// - LocalDisplaySupportedByLevelXAwakenedSpellCascade = 10942, - - /// - /// local_display_supported_by_level_x_awakened_spell_echo - /// - LocalDisplaySupportedByLevelXAwakenedSpellEcho = 10943, - - /// - /// local_display_supported_by_level_x_awakened_unbound_ailments - /// - LocalDisplaySupportedByLevelXAwakenedUnboundAilments = 10944, - - /// - /// local_display_supported_by_level_x_awakened_unleash - /// - LocalDisplaySupportedByLevelXAwakenedUnleash = 10945, - - /// - /// monster_additional_shaper_item_drop_chance_% - /// - MonsterAdditionalShaperItemDropChancePct = 10946, - - /// - /// monster_additional_elder_item_drop_chance_% - /// - MonsterAdditionalElderItemDropChancePct = 10947, - - /// - /// skill_used_by_mirage_warrior_damage_+%_final - /// - SkillUsedByMirageWarriorDamagePctFinal = 10948, - - /// - /// base_skill_used_by_mirage_warrior - /// - BaseSkillUsedByMirageWarrior = 10949, - - /// - /// number_of_equipped_shaper_or_elder_items - /// - NumberOfEquippedShaperOrElderItems = 10950, - - /// - /// trap_repeat_count - /// - TrapRepeatCount = 10951, - - /// - /// monster_mortar_additional_speed_+% - /// - MonsterMortarAdditionalSpeedPct = 10952, - - /// - /// arcane_cloak_cooldown_does_not_tick - /// - ArcaneCloakCooldownDoesNotTick = 10953, - - /// - /// global_added_lightning_damage - /// - GlobalAddedLightningDamage = 10954, - - /// - /// arcane_cloak_consume_%_of_mana - /// - ArcaneCloakConsumePctOfMana = 10955, - - /// - /// arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage - /// - ArcaneCloakGainPctOfConsumedManaAsLightningDamage = 10956, - - /// - /// arcane_cloak_damage_absorbed_% - /// - ArcaneCloakDamageAbsorbedPct = 10957, - - /// - /// map_affliction_league - /// - MapAfflictionLeague = 10958, - - /// - /// kinetic_wand_base_number_of_zig_zags - /// - KineticWandBaseNumberOfZigZags = 10959, - - /// - /// rune_paint_movement_speed_+%_final - /// - RunePaintMovementSpeedPctFinal = 10960, - - /// - /// bladefall_blade_left_in_ground_for_every_X_volleys - /// - BladefallBladeLeftInGroundForEveryXVolleys = 10961, - - /// - /// maximum_number_of_blades_left_in_ground - /// - MaximumNumberOfBladesLeftInGround = 10962, - - /// - /// bloodwhirl_cooldown_does_not_tick - /// - BloodwhirlCooldownDoesNotTick = 10963, - - /// - /// combined_attack_elemental_damage_+%_final - /// - CombinedAttackElementalDamagePctFinal = 10964, - - /// - /// chilling_areas_also_grant_lightning_damage_taken_+% - /// - ChillingAreasAlsoGrantLightningDamageTakenPct = 10965, - - /// - /// chance_to_sap_%_vs_enemies_in_chilling_areas - /// - ChanceToSapPctVsEnemiesInChillingAreas = 10966, - - /// - /// is_in_chilling_area - /// - IsInChillingArea = 10967, - - /// - /// rune_paint_max_rune_level - /// - RunePaintMaxRuneLevel = 10968, - - /// - /// rune_paint_damage_+%_final_per_rune_level - /// - RunePaintDamagePctFinalPerRuneLevel = 10969, - - /// - /// rune_paint_mana_spend_per_rune_upgrade - /// - RunePaintManaSpendPerRuneUpgrade = 10970, - - /// - /// spellslinger_trigger_on_wand_attack_% - /// - SpellslingerTriggerOnWandAttackPct = 10971, - - /// - /// gain_%_of_base_wand_damage_as_added_spell_damage - /// - GainPctOfBaseWandDamageAsAddedSpellDamage = 10972, - - /// - /// allow_2_active_banners - /// - Allow2ActiveBanners = 10973, - - /// - /// banner_fortify_duration_+% - /// - BannerFortifyDurationPct = 10974, - - /// - /// banner_adrenaline_duration_+% - /// - BannerAdrenalineDurationPct = 10975, - - /// - /// add_1_stage_to_banners_on_melee_hit_up_to_5_per_second - /// - Add1StageToBannersOnMeleeHitUpTo5PerSecond = 10976, - - /// - /// is_on_ground_arctic_breath - /// - IsOnGroundArcticBreath = 10977, - - /// - /// map_vaal_vessel_item_drop_rarity_+% - /// - MapVaalVesselItemDropRarityPct = 10978, - - /// - /// map_vaal_vessel_item_drop_quantity_+% - /// - MapVaalVesselItemDropQuantityPct = 10979, - - /// - /// map_vaal_vessel_drop_X_sacrifice_fragments - /// - MapVaalVesselDropXSacrificeFragments = 10980, - - /// - /// map_vaal_vessel_drop_X_mortal_fragments - /// - MapVaalVesselDropXMortalFragments = 10981, - - /// - /// map_vaal_vessel_drop_x_double_implicit_corrupted_uniques - /// - MapVaalVesselDropXDoubleImplicitCorruptedUniques = 10982, - - /// - /// map_vaal_vessel_drop_X_fossils - /// - MapVaalVesselDropXFossils = 10983, - - /// - /// map_vaal_vessel_drop_X_prophecies - /// - MapVaalVesselDropXProphecies = 10984, - - /// - /// map_vaal_vessel_drop_X_divination_cards - /// - MapVaalVesselDropXDivinationCards = 10985, - - /// - /// map_vaal_vessel_drop_X_rare_temple_items - /// - MapVaalVesselDropXRareTempleItems = 10986, - - /// - /// map_vaal_vessel_drop_X_vaal_orbs - /// - MapVaalVesselDropXVaalOrbs = 10987, - - /// - /// map_vaal_vessel_drop_X_levelled_vaal_gems - /// - MapVaalVesselDropXLevelledVaalGems = 10988, - - /// - /// scorch_on_critical_strike_with_fire_skills - /// - ScorchOnCriticalStrikeWithFireSkills = 10989, - - /// - /// frostburn_on_critical_strike_with_cold_skills - /// - FrostburnOnCriticalStrikeWithColdSkills = 10990, - - /// - /// sap_on_critical_strike_with_lightning_skills - /// - SapOnCriticalStrikeWithLightningSkills = 10991, - - /// - /// hollow_palm_technique_attack_speed_+%_final_from_keystone - /// - HollowPalmTechniqueAttackSpeedPctFinalFromKeystone = 10992, - - /// - /// hollow_palm_technique_attack_minimum_added_physical_damage - /// - HollowPalmTechniqueAttackMinimumAddedPhysicalDamage = 10993, - - /// - /// hollow_palm_technique_attack_maximum_added_physical_damage - /// - HollowPalmTechniqueAttackMaximumAddedPhysicalDamage = 10994, - - /// - /// unarmed_counts_as_dual_wielding - /// - UnarmedCountsAsDualWielding = 10995, - - /// - /// cannot_use_shield_gloves_or_quiver - /// - CannotUseShieldGlovesOrQuiver = 10996, - - /// - /// cannot_trigger_guard_skills - /// - CannotTriggerGuardSkills = 10997, - - /// - /// physical_damage_reduction_+%_while_affected_by_non_vaal_guard_skill - /// - PhysicalDamageReductionPctWhileAffectedByNonVaalGuardSkill = 10998, - - /// - /// virtual_never_ignite - /// - VirtualNeverIgnite = 10999, - - /// - /// virtual_never_shock - /// - VirtualNeverShock = 11000, - - /// - /// rune_paint_area_of_effect_+%_final_per_rune_level - /// - RunePaintAreaOfEffectPctFinalPerRuneLevel = 11001, - - /// - /// keystone_herald_buff_effect_+%_final_on_you - /// - KeystoneHeraldBuffEffectPctFinalOnYou = 11002, - - /// - /// keystone_herald_hit_damage_+%_final - /// - KeystoneHeraldHitDamagePctFinal = 11003, - - /// - /// skill_is_herald_skill - /// - SkillIsHeraldSkill = 11004, - - /// - /// scorch_on_critical_strike - /// - ScorchOnCriticalStrike = 11005, - - /// - /// frostburn_on_critical_strike - /// - FrostburnOnCriticalStrike = 11006, - - /// - /// sap_on_critical_strike - /// - SapOnCriticalStrike = 11007, - - /// - /// minions_damage_cannot_be_reflected - /// - MinionsDamageCannotBeReflected = 11008, - - /// - /// physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+% - /// - PhysicalReflectDamageTakenAndMinionPhysicalReflectDamageTakenPct = 11009, - - /// - /// elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+% - /// - ElementalReflectDamageTakenAndMinionElementalReflectDamageTakenPct = 11010, - - /// - /// your_auras_are_disabled - /// - YourAurasAreDisabled = 11011, - - /// - /// keystone_barbed_tips - /// - KeystoneBarbedTips = 11012, - - /// - /// can_only_have_one_herald - /// - CanOnlyHaveOneHerald = 11013, - - /// - /// reflect_damage_taken_and_minion_reflect_damage_taken_+% - /// - ReflectDamageTakenAndMinionReflectDamageTakenPct = 11014, - - /// - /// local_jewel_expansion_passive_node_index - /// - LocalJewelExpansionPassiveNodeIndex = 11015, - - /// - /// local_jewel_expansion_passive_node_count - /// - LocalJewelExpansionPassiveNodeCount = 11016, - - /// - /// local_jewel_expansion_jewels_count - /// - LocalJewelExpansionJewelsCount = 11017, - - /// - /// local_jewel_expansion_jewels_count_override - /// - LocalJewelExpansionJewelsCountOverride = 11018, - - /// - /// local_unique_jewel_grants_x_empty_passives - /// - LocalUniqueJewelGrantsXEmptyPassives = 11019, - - /// - /// local_jewel_expansion_keystone_disciple_of_kitava - /// - LocalJewelExpansionKeystoneDiscipleOfKitava = 11020, - - /// - /// local_jewel_expansion_+5%_small_node_effect_count - /// - LocalJewelExpansion5PctSmallNodeEffectCount = 11021, - - /// - /// local_jewel_expansion_+5%_notable_node_effect_count - /// - LocalJewelExpansion5PctNotableNodeEffectCount = 11022, - - /// - /// local_jewel_expansion_notable_node_effect_count - /// - LocalJewelExpansionNotableNodeEffectCount = 11023, - - /// - /// local_jewel_expansion_node_effect_+% - /// - LocalJewelExpansionNodeEffectPct = 11024, - - /// - /// local_jewel_expansion_notable_adds_node_effect_+% - /// - LocalJewelExpansionNotableAddsNodeEffectPct = 11025, - - /// - /// unique_damage_+%_final_from_nova_spell - /// - UniqueDamagePctFinalFromNovaSpell = 11026, - - /// - /// teleport_additional_distance_between_self_and_target - /// - TeleportAdditionalDistanceBetweenSelfAndTarget = 11027, - - /// - /// additional_1_projectile - /// - Additional1Projectile = 11028, - - /// - /// blast_rain_single_additional_projectile - /// - BlastRainSingleAdditionalProjectile = 11029, - - /// - /// grasping_vine_count - /// - GraspingVineCount = 11030, - - /// - /// chance_to_deal_double_damage_%_per_grasping_vine - /// - ChanceToDealDoubleDamagePctPerGraspingVine = 11031, - - /// - /// damage_taken_+%_final_per_grasping_vine - /// - DamageTakenPctFinalPerGraspingVine = 11032, - - /// - /// attack_minimum_added_physical_damage_for_ethereal_blades - /// - AttackMinimumAddedPhysicalDamageForEtherealBlades = 11033, - - /// - /// attack_maximum_added_physical_damage_for_ethereal_blades - /// - AttackMaximumAddedPhysicalDamageForEtherealBlades = 11034, - - /// - /// volatile_dead_max_cores_allowed - /// - VolatileDeadMaxCoresAllowed = 11035, - - /// - /// skill_aura_not_applied_on_caster - /// - SkillAuraNotAppliedOnCaster = 11036, - - /// - /// skill_is_banner_skill - /// - SkillIsBannerSkill = 11037, - - /// - /// critical_strike_chance_+%_per_stackable_unique_jewel - /// - CriticalStrikeChancePctPerStackableUniqueJewel = 11038, - - /// - /// ethereal_knives_blade_left_in_ground_for_every_X_projectiles - /// - EtherealKnivesBladeLeftInGroundForEveryXProjectiles = 11039, - - /// - /// number_of_grasping_vines_to_gain_every_second_while_stationary - /// - NumberOfGraspingVinesToGainEverySecondWhileStationary = 11040, - - /// - /// snipe_max_stacks - /// - SnipeMaxStacks = 11041, - - /// - /// snipe_triggered_skill_damage_+%_final - /// - SnipeTriggeredSkillDamagePctFinal = 11042, - - /// - /// snipe_triggered_skill_hit_damage_+%_final_per_stage - /// - SnipeTriggeredSkillHitDamagePctFinalPerStage = 11043, - - /// - /// skill_triggered_by_snipe - /// - SkillTriggeredBySnipe = 11044, - - /// - /// snipe_triggered_skill_hit_damage_+%_final_per_stage_conditional - /// - SnipeTriggeredSkillHitDamagePctFinalPerStageConditional = 11045, - - /// - /// global_armour_rating_+%_applies_to_critical_multiplier_at_x_ratio - /// - GlobalArmourRatingPctAppliesToCriticalMultiplierAtXRatio = 11046, - - /// - /// global_evasion_rating_+%_applies_to_critical_chance_at_x_ratio - /// - GlobalEvasionRatingPctAppliesToCriticalChanceAtXRatio = 11047, - - /// - /// spell_dodge_%_while_channelling - /// - SpellDodgePctWhileChannelling = 11048, - - /// - /// local_display_grant_level_x_snipe_skill - /// - LocalDisplayGrantLevelXSnipeSkill = 11049, - - /// - /// affliction_boss_death_zone_movement_speed_+%_final - /// - AfflictionBossDeathZoneMovementSpeedPctFinal = 11050, - - /// - /// local_jewel_+%_effect_per_passive_between_jewel_and_class_start - /// - LocalJewelPctEffectPerPassiveBetweenJewelAndClassStart = 11051, - - /// - /// local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start - /// - LocalJewelDisplayNumberOfAllocatedPassivesBetweenJewelAndClassStart = 11052, - - /// - /// affliction_monster_debuff_life_recovery_rate_+%_on_hit - /// - AfflictionMonsterDebuffLifeRecoveryRatePctOnHit = 11053, - - /// - /// affliction_monster_debuff_energy_shield_recovery_rate_+%_on_hit - /// - AfflictionMonsterDebuffEnergyShieldRecoveryRatePctOnHit = 11054, - - /// - /// affliction_monster_debuff_action_speed_+%_on_hit - /// - AfflictionMonsterDebuffActionSpeedPctOnHit = 11055, - - /// - /// affliction_monster_debuff_damage_taken_+%_on_hit - /// - AfflictionMonsterDebuffDamageTakenPctOnHit = 11056, - - /// - /// affliction_monster_debuff_flask_effect_+%_on_hit - /// - AfflictionMonsterDebuffFlaskEffectPctOnHit = 11057, - - /// - /// affliction_monster_debuff_flask_charges_gained_+%_on_hit - /// - AfflictionMonsterDebuffFlaskChargesGainedPctOnHit = 11058, - - /// - /// cannot_gain_affliction_recovery_rate_debuff_when_hit - /// - CannotGainAfflictionRecoveryRateDebuffWhenHit = 11059, - - /// - /// cannot_gain_affliction_action_speed_debuff_when_hit - /// - CannotGainAfflictionActionSpeedDebuffWhenHit = 11060, - - /// - /// cannot_gain_affliction_damage_taken_debuff_when_hit - /// - CannotGainAfflictionDamageTakenDebuffWhenHit = 11061, - - /// - /// cannot_gain_affliction_flask_debuff_when_hit - /// - CannotGainAfflictionFlaskDebuffWhenHit = 11062, - - /// - /// is_in_affliction_fog - /// - IsInAfflictionFog = 11063, - - /// - /// monster_is_in_affliction_fog - /// - MonsterIsInAfflictionFog = 11064, - - /// - /// purity_of_fire_aura_effect_+% - /// - PurityOfFireAuraEffectPct = 11065, - - /// - /// purity_of_ice_aura_effect_+% - /// - PurityOfIceAuraEffectPct = 11066, - - /// - /// purity_of_lightning_aura_effect_+% - /// - PurityOfLightningAuraEffectPct = 11067, - - /// - /// purity_of_elements_aura_effect_+% - /// - PurityOfElementsAuraEffectPct = 11068, - - /// - /// enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage - /// - EnemiesExplodeOnDeathByAttackFor10PctLifeAsPhysicalDamage = 11069, - - /// - /// warcries_count_as_having_x_additional_nearby_enemies - /// - WarcriesCountAsHavingXAdditionalNearbyEnemies = 11070, - - /// - /// enemies_taunted_by_your_warcries_are_unnerved - /// - EnemiesTauntedByYourWarcriesAreUnnerved = 11071, - - /// - /// enemies_taunted_by_your_warcies_are_intimidated - /// - EnemiesTauntedByYourWarciesAreIntimidated = 11072, - - /// - /// melee_critical_strike_chance_+%_if_warcried_recently - /// - MeleeCriticalStrikeChancePctIfWarcriedRecently = 11073, - - /// - /// melee_critical_strike_multiplier_+%_if_warcried_recently - /// - MeleeCriticalStrikeMultiplierPctIfWarcriedRecently = 11074, - - /// - /// additional_physical_damage_reduction_if_warcried_in_past_8_seconds - /// - AdditionalPhysicalDamageReductionIfWarcriedInPast8Seconds = 11075, - - /// - /// warcry_skill_area_of_effect_+% - /// - WarcrySkillAreaOfEffectPct = 11076, - - /// - /// taunt_also_applies_unnerve - /// - TauntAlsoAppliesUnnerve = 11077, - - /// - /// taunt_also_applies_intimidate - /// - TauntAlsoAppliesIntimidate = 11078, - - /// - /// skill_is_rain_skill - /// - SkillIsRainSkill = 11079, - - /// - /// cold_damage_+%_per_25_strength - /// - ColdDamagePctPer25Strength = 11080, - - /// - /// cold_damage_+%_per_25_dexterity - /// - ColdDamagePctPer25Dexterity = 11081, - - /// - /// cold_damage_+%_per_25_intelligence - /// - ColdDamagePctPer25Intelligence = 11082, - - /// - /// chaos_damage_+%_per_100_max_mana_up_to_80 - /// - ChaosDamagePctPer100MaxManaUpTo80 = 11083, - - /// - /// minion_summoned_recently_movement_speed_+% - /// - MinionSummonedRecentlyMovementSpeedPct = 11084, - - /// - /// minion_summoned_recently_attack_and_cast_speed_+% - /// - MinionSummonedRecentlyAttackAndCastSpeedPct = 11085, - - /// - /// minion_summoned_recently_cannot_be_damaged - /// - MinionSummonedRecentlyCannotBeDamaged = 11086, - - /// - /// attack_damage_+%_vs_maimed_enemies - /// - AttackDamagePctVsMaimedEnemies = 11087, - - /// - /// critical_strike_chance_+%_vs_taunted_enemies - /// - CriticalStrikeChancePctVsTauntedEnemies = 11088, - - /// - /// critical_strike_multiplier_+_vs_taunted_enemies - /// - CriticalStrikeMultiplierVsTauntedEnemies = 11089, - - /// - /// remove_bleed_on_life_flask_use - /// - RemoveBleedOnLifeFlaskUse = 11090, - - /// - /// movement_speed_+%_while_not_using_flask - /// - MovementSpeedPctWhileNotUsingFlask = 11091, - - /// - /// life_flask_charges_recovered_per_3_seconds - /// - LifeFlaskChargesRecoveredPer3Seconds = 11092, - - /// - /// additional_physical_damage_reduction_%_during_life_or_mana_flask_effect - /// - AdditionalPhysicalDamageReductionPctDuringLifeOrManaFlaskEffect = 11093, - - /// - /// attack_ailment_damage_+% - /// - AttackAilmentDamagePct = 11094, - - /// - /// impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding - /// - ImpaleDebuffEffectPctFromHitsThatAlsoInflictBleeding = 11095, - - /// - /// aoe_+%_per_second_while_stationary_up_to_50 - /// - AoePctPerSecondWhileStationaryUpTo50 = 11096, - - /// - /// critical_strike_%_chance_to_deal_double_damage - /// - CriticalStrikePctChanceToDealDoubleDamage = 11097, - - /// - /// chill_effect_+%_with_critical_strikes - /// - ChillEffectPctWithCriticalStrikes = 11098, - - /// - /// shock_effect_+%_with_critical_strikes - /// - ShockEffectPctWithCriticalStrikes = 11099, - - /// - /// minion_physical_damage_%_to_add_as_fire - /// - MinionPhysicalDamagePctToAddAsFire = 11100, - - /// - /// chance_to_deal_double_damage_while_on_full_life_% - /// - ChanceToDealDoubleDamageWhileOnFullLifePct = 11101, - - /// - /// minion_chance_to_deal_double_damage_while_on_full_life_% - /// - MinionChanceToDealDoubleDamageWhileOnFullLifePct = 11102, - - /// - /// minion_chance_to_ignite_% - /// - MinionChanceToIgnitePct = 11103, - - /// - /// minion_damage_against_ignited_enemies_+% - /// - MinionDamageAgainstIgnitedEnemiesPct = 11104, - - /// - /// minion_chance_to_impale_on_attack_hit_% - /// - MinionChanceToImpaleOnAttackHitPct = 11105, - - /// - /// summoned_skeleton_%_physical_to_chaos - /// - SummonedSkeletonPctPhysicalToChaos = 11106, - - /// - /// summoned_skeleton_%_chance_to_wither_for_2_seconds - /// - SummonedSkeletonPctChanceToWitherFor2Seconds = 11107, - - /// - /// raised_zombie_%_chance_to_taunt - /// - RaisedZombiePctChanceToTaunt = 11108, - - /// - /// using_life_flask - /// - UsingLifeFlask = 11109, - - /// - /// totem_placement_range_+% - /// - TotemPlacementRangePct = 11110, - - /// - /// totem_chaos_immunity - /// - TotemChaosImmunity = 11111, - - /// - /// totem_spells_damage_+% - /// - TotemSpellsDamagePct = 11112, - - /// - /// damage_+%_while_affected_by_a_herald - /// - DamagePctWhileAffectedByAHerald = 11113, - - /// - /// elemental_damage_+%_while_affected_by_a_herald - /// - ElementalDamagePctWhileAffectedByAHerald = 11114, - - /// - /// damage_over_time_+%_while_affected_by_a_herald - /// - DamageOverTimePctWhileAffectedByAHerald = 11115, - - /// - /// minion_damage_+%_while_affected_by_a_herald - /// - MinionDamagePctWhileAffectedByAHerald = 11116, - - /// - /// damage_+%_for_each_herald_affecting_you - /// - DamagePctForEachHeraldAffectingYou = 11117, - - /// - /// chance_to_freeze_shock_ignite_%_while_affected_by_a_herald - /// - ChanceToFreezeShockIgnitePctWhileAffectedByAHerald = 11118, - - /// - /// minion_movement_velocity_+%_for_each_herald_affecting_you - /// - MinionMovementVelocityPctForEachHeraldAffectingYou = 11119, - - /// - /// additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity - /// - AdditionalPhysicalDamageReductionPctPerSummonedSentinelOfPurity = 11120, - - /// - /// dot_multiplier_+_with_bow_skills - /// - DotMultiplierWithBowSkills = 11121, - - /// - /// skill_effect_duration_+%_with_bow_skills - /// - SkillEffectDurationPctWithBowSkills = 11122, - - /// - /// status_ailments_you_inflict_duration_+%_with_bows - /// - StatusAilmentsYouInflictDurationPctWithBows = 11123, - - /// - /// area_of_effect_+%_with_bow_skills - /// - AreaOfEffectPctWithBowSkills = 11124, - - /// - /// wand_physical_damage_%_to_add_as_chaos - /// - WandPhysicalDamagePctToAddAsChaos = 11125, - - /// - /// wand_physical_damage_%_to_convert_to_lightning - /// - WandPhysicalDamagePctToConvertToLightning = 11126, - - /// - /// two_handed_melee_area_of_effect_+% - /// - TwoHandedMeleeAreaOfEffectPct = 11127, - - /// - /// two_handed_melee_area_damage_+% - /// - TwoHandedMeleeAreaDamagePct = 11128, - - /// - /// have_used_a_travel_skill_recently - /// - HaveUsedATravelSkillRecently = 11129, - - /// - /// track_have_used_a_travel_skill_recently - /// - TrackHaveUsedATravelSkillRecently = 11130, - - /// - /// have_cast_a_spell_recently - /// - HaveCastASpellRecently = 11131, - - /// - /// track_have_cast_a_spell_recently - /// - TrackHaveCastASpellRecently = 11132, - - /// - /// have_cursed_an_enemy_recently - /// - HaveCursedAnEnemyRecently = 11133, - - /// - /// track_have_cursed_an_enemy_recently - /// - TrackHaveCursedAnEnemyRecently = 11134, - - /// - /// have_chilled_an_enemy_recently - /// - HaveChilledAnEnemyRecently = 11135, - - /// - /// track_have_chilled_an_enemy_recently - /// - TrackHaveChilledAnEnemyRecently = 11136, - - /// - /// have_stunned_an_enemy_with_a_two_handed_melee_weapon_recently - /// - HaveStunnedAnEnemyWithATwoHandedMeleeWeaponRecently = 11137, - - /// - /// have_crit_with_a_two_handed_melee_weapon_recently - /// - HaveCritWithATwoHandedMeleeWeaponRecently = 11138, - - /// - /// track_have_crit_with_a_two_handed_melee_weapon_recently - /// - TrackHaveCritWithATwoHandedMeleeWeaponRecently = 11139, - - /// - /// have_used_a_brand_skill_recently - /// - HaveUsedABrandSkillRecently = 11140, - - /// - /// track_have_used_a_brand_skill_recently - /// - TrackHaveUsedABrandSkillRecently = 11141, - - /// - /// have_hit_with_main_hand_weapon_recently - /// - HaveHitWithMainHandWeaponRecently = 11142, - - /// - /// track_have_hit_with_main_hand_weapon_recently - /// - TrackHaveHitWithMainHandWeaponRecently = 11143, - - /// - /// have_hit_with_off_hand_weapon_recently - /// - HaveHitWithOffHandWeaponRecently = 11144, - - /// - /// track_have_hit_with_off_hand_weapon_recently - /// - TrackHaveHitWithOffHandWeaponRecently = 11145, - - /// - /// have_ignited_an_enemy_recently - /// - HaveIgnitedAnEnemyRecently = 11146, - - /// - /// track_have_ignited_an_enemy_recently - /// - TrackHaveIgnitedAnEnemyRecently = 11147, - - /// - /// critical_strike_chance_+%_if_havent_blocked_recently - /// - CriticalStrikeChancePctIfHaventBlockedRecently = 11148, - - /// - /// critical_strike_multiplier_+_if_taken_a_savage_hit_recently - /// - CriticalStrikeMultiplierIfTakenASavageHitRecently = 11149, - - /// - /// movement_speed_+%_if_crit_recently - /// - MovementSpeedPctIfCritRecently = 11150, - - /// - /// area_of_effect_+%_if_killed_at_least_5_enemies_recently - /// - AreaOfEffectPctIfKilledAtLeast5EnemiesRecently = 11151, - - /// - /// chance_to_dodge_attacks_and_spells_%_if_enemy_hit_recently - /// - ChanceToDodgeAttacksAndSpellsPctIfEnemyHitRecently = 11152, - - /// - /// damage_+%_if_used_travel_skill_recently - /// - DamagePctIfUsedTravelSkillRecently = 11153, - - /// - /// chance_to_block_spells_%_if_cast_a_spell_recently - /// - ChanceToBlockSpellsPctIfCastASpellRecently = 11154, - - /// - /// energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently - /// - EnergyShieldRegenerationPctPerMinuteIfEnemyCursedRecently = 11155, - - /// - /// elemental_damage_+%_if_enemy_chilled_recently - /// - ElementalDamagePctIfEnemyChilledRecently = 11156, - - /// - /// elemental_damage_+%_if_enemy_shocked_recently - /// - ElementalDamagePctIfEnemyShockedRecently = 11157, - - /// - /// elemental_damage_+%_if_enemy_ignited_recently - /// - ElementalDamagePctIfEnemyIgnitedRecently = 11158, - - /// - /// energy_shield_regeneration_%_per_minute_if_enemy_killed_recently - /// - EnergyShieldRegenerationPctPerMinuteIfEnemyKilledRecently = 11159, - - /// - /// wand_damage_+%_if_crit_recently - /// - WandDamagePctIfCritRecently = 11160, - - /// - /// area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently - /// - AreaOfEffectPctIfEnemyStunnedWithTwoHandedMeleeWeaponRecently = 11161, - - /// - /// chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently - /// - ChanceToDealDoubleDamagePctIfCritWithTwoHandedMeleeWeaponRecently = 11162, - - /// - /// sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently - /// - SigilRepeatFrequencyPctIfHaventUsedABrandSkillRecently = 11163, - - /// - /// chance_to_evade_attacks_%_if_havent_been_hit_recently - /// - ChanceToEvadeAttacksPctIfHaventBeenHitRecently = 11164, - - /// - /// life_regeneration_%_per_minute_if_player_minion_died_recently - /// - LifeRegenerationPctPerMinuteIfPlayerMinionDiedRecently = 11165, - - /// - /// attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently - /// - AttackSpeedPctIfEnemyHitWithMainHandWeaponRecently = 11166, - - /// - /// movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently - /// - MovementSpeedPctIfEnemyHitWithOffHandWeaponRecently = 11167, - - /// - /// have_summoned_totem_in_past_2_seconds - /// - HaveSummonedTotemInPast2Seconds = 11168, - - /// - /// track_have_summoned_totem_in_past_2_seconds - /// - TrackHaveSummonedTotemInPast2Seconds = 11169, - - /// - /// totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds - /// - TotemDamagePctIfHaventSummonedTotemInPast2Seconds = 11170, - - /// - /// gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff - /// - GainFortifyForXSecondsOnMeleeHitWithMaceSceptreStaff = 11171, - - /// - /// damage_+%_with_maces_sceptres_staves - /// - DamagePctWithMacesSceptresStaves = 11172, - - /// - /// double_damage_%_chance_while_wielding_mace_sceptre_staff - /// - DoubleDamagePctChanceWhileWieldingMaceSceptreStaff = 11173, - - /// - /// movement_speed_+%_while_holding_shield - /// - MovementSpeedPctWhileHoldingShield = 11174, - - /// - /// physical_damage_+%_with_axes_swords - /// - PhysicalDamagePctWithAxesSwords = 11175, - - /// - /// impale_on_hit_%_chance_with_axes_swords - /// - ImpaleOnHitPctChanceWithAxesSwords = 11176, - - /// - /// attack_skill_ailment_damage_+%_while_wielding_axes_swords - /// - AttackSkillAilmentDamagePctWhileWieldingAxesSwords = 11177, - - /// - /// power_charge_on_non_critical_strike_%_chance_with_claws_daggers - /// - PowerChargeOnNonCriticalStrikePctChanceWithClawsDaggers = 11178, - - /// - /// critical_strike_multiplier_+%_with_claws_daggers - /// - CriticalStrikeMultiplierPctWithClawsDaggers = 11179, - - /// - /// attack_skill_additional_num_projectiles_while_wielding_claws_daggers - /// - AttackSkillAdditionalNumProjectilesWhileWieldingClawsDaggers = 11180, - - /// - /// posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers - /// - PosionDamageOverTimeMultiplierPctWhileWieldingClawsDaggers = 11181, - - /// - /// fire_damage_over_time_multiplier_+%_while_burning - /// - FireDamageOverTimeMultiplierPctWhileBurning = 11182, - - /// - /// life_regeneration_per_minute_%_while_burning - /// - LifeRegenerationPerMinutePctWhileBurning = 11183, - - /// - /// spell_block_%_while_at_max_power_charges - /// - SpellBlockPctWhileAtMaxPowerCharges = 11184, - - /// - /// attack_block_%_while_at_max_endurance_charges - /// - AttackBlockPctWhileAtMaxEnduranceCharges = 11185, - - /// - /// attack_speed_+%_if_you_have_at_least_600_strength - /// - AttackSpeedPctIfYouHaveAtLeast600Strength = 11186, - - /// - /// es_regeneration_per_minute_%_while_stationary - /// - EsRegenerationPerMinutePctWhileStationary = 11187, - - /// - /// spell_and_attack_dodge_%_while_moving - /// - SpellAndAttackDodgePctWhileMoving = 11188, - - /// - /// self_critical_strike_multiplier_+%_while_ignited - /// - SelfCriticalStrikeMultiplierPctWhileIgnited = 11189, - - /// - /// enemies_poisoned_by_you_cannot_regen_life - /// - EnemiesPoisonedByYouCannotRegenLife = 11190, - - /// - /// enemies_chilled_by_your_hits_are_shocked - /// - EnemiesChilledByYourHitsAreShocked = 11191, - - /// - /// enemies_shocked_by_your_hits_are_chilled - /// - EnemiesShockedByYourHitsAreChilled = 11192, - - /// - /// attack_dodge_%_from_cursed_enemies - /// - AttackDodgePctFromCursedEnemies = 11193, - - /// - /// left_ring_socketed_curse_replaces_skitterbots_chilling_aura - /// - LeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11194, - - /// - /// right_ring_socketed_curse_replaces_skitterbots_shocking_aura - /// - RightRingSocketedCurseReplacesSkitterbotsShockingAura = 11195, - - /// - /// local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura - /// - LocalLeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11196, - - /// - /// local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura - /// - LocalRightRingSocketedCurseReplacesSkitterbotsShockingAura = 11197, - - /// - /// hit_and_ailment_damage_+%_vs_cursed_enemies - /// - HitAndAilmentDamagePctVsCursedEnemies = 11198, - - /// - /// culling_strike_vs_cursed_enemies - /// - CullingStrikeVsCursedEnemies = 11199, - - /// - /// hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments - /// - HitAndAilmentDamagePctVsEnemiesAffectedByAilments = 11200, - - /// - /// bleeding_dot_multiplier_+_vs_poisoned_enemies - /// - BleedingDotMultiplierVsPoisonedEnemies = 11201, - - /// - /// poison_dot_multiplier_+_vs_bleeding_enemies - /// - PoisonDotMultiplierVsBleedingEnemies = 11202, - - /// - /// critical_strikes_always_knockback_shocked_enemies - /// - CriticalStrikesAlwaysKnockbackShockedEnemies = 11203, - - /// - /// cold_hit_damage_+%_vs_shocked_enemies - /// - ColdHitDamagePctVsShockedEnemies = 11204, - - /// - /// lightning_hit_damage_+%_vs_chilled_enemies - /// - LightningHitDamagePctVsChilledEnemies = 11205, - - /// - /// hit_and_ailment_damage_+%_vs_unique_enemies - /// - HitAndAilmentDamagePctVsUniqueEnemies = 11206, - - /// - /// lightning_damage_%_to_add_as_cold_vs_chilled_enemies - /// - LightningDamagePctToAddAsColdVsChilledEnemies = 11207, - - /// - /// arrow_damage_+%_max_as_distance_travelled_increases - /// - ArrowDamagePctMaxAsDistanceTravelledIncreases = 11208, - - /// - /// arrow_critical_strike_chance_+%_max_as_distance_travelled_increases - /// - ArrowCriticalStrikeChancePctMaxAsDistanceTravelledIncreases = 11209, - - /// - /// projectile_damage_+%_vs_nearby_enemies - /// - ProjectileDamagePctVsNearbyEnemies = 11210, - - /// - /// teleport_marker_art_variation - /// - TeleportMarkerArtVariation = 11211, - - /// - /// bleeding_damage_+%_vs_maimed_enemies - /// - BleedingDamagePctVsMaimedEnemies = 11212, - - /// - /// physical_dot_multiplier_+_while_wielding_axes_swords - /// - PhysicalDotMultiplierWhileWieldingAxesSwords = 11213, - - /// - /// local_affliction_notable_prodigious_defense - /// - LocalAfflictionNotableProdigiousDefense = 11214, - - /// - /// local_affliction_notable_advance_guard - /// - LocalAfflictionNotableAdvanceGuard = 11215, - - /// - /// local_affliction_notable_gladiatorial_combat - /// - LocalAfflictionNotableGladiatorialCombat = 11216, - - /// - /// local_affliction_notable_strike_leader - /// - LocalAfflictionNotableStrikeLeader = 11217, - - /// - /// local_affliction_notable_powerful_ward - /// - LocalAfflictionNotablePowerfulWard = 11218, - - /// - /// local_affliction_notable_enduring_ward - /// - LocalAfflictionNotableEnduringWard = 11219, - - /// - /// local_affliction_notable_gladiators_fortitude - /// - LocalAfflictionNotableGladiatorsFortitude = 11220, - - /// - /// local_affliction_notable_precise_retaliation - /// - LocalAfflictionNotablePreciseRetaliation = 11221, - - /// - /// local_affliction_notable_veteran_defender - /// - LocalAfflictionNotableVeteranDefender = 11222, - - /// - /// local_affliction_notable_iron_breaker - /// - LocalAfflictionNotableIronBreaker = 11223, - - /// - /// local_affliction_notable_deep_cuts - /// - LocalAfflictionNotableDeepCuts = 11224, - - /// - /// local_affliction_notable_master_the_fundamentals - /// - LocalAfflictionNotableMasterTheFundamentals = 11225, - - /// - /// local_affliction_notable_force_multiplier - /// - LocalAfflictionNotableForceMultiplier = 11226, - - /// - /// local_affliction_notable_furious_assault - /// - LocalAfflictionNotableFuriousAssault = 11227, - - /// - /// local_affliction_notable_vicious_skewering - /// - LocalAfflictionNotableViciousSkewering = 11228, - - /// - /// local_affliction_notable_grim_oath - /// - LocalAfflictionNotableGrimOath = 11229, - - /// - /// local_affliction_notable_battle_hardened - /// - LocalAfflictionNotableBattleHardened = 11230, - - /// - /// local_affliction_notable_replenishing_presence - /// - LocalAfflictionNotableReplenishingPresence = 11231, - - /// - /// local_affliction_notable_master_of_command - /// - LocalAfflictionNotableMasterOfCommand = 11232, - - /// - /// local_affliction_notable_first_among_equals - /// - LocalAfflictionNotableFirstAmongEquals = 11233, - - /// - /// local_affliction_notable_purposeful_harbinger - /// - LocalAfflictionNotablePurposefulHarbinger = 11234, - - /// - /// local_affliction_notable_precise_commander - /// - LocalAfflictionNotablePreciseCommander = 11235, - - /// - /// local_affliction_notable_pure_commander - /// - LocalAfflictionNotablePureCommander = 11236, - - /// - /// local_affliction_notable_stalwart_commander - /// - LocalAfflictionNotableStalwartCommander = 11237, - - /// - /// local_affliction_notable_vengeful_commander - /// - LocalAfflictionNotableVengefulCommander = 11238, - - /// - /// local_affliction_notable_skullbreaker - /// - LocalAfflictionNotableSkullbreaker = 11239, - - /// - /// local_affliction_notable_pressure_points - /// - LocalAfflictionNotablePressurePoints = 11240, - - /// - /// local_affliction_notable_overwhelming_malice - /// - LocalAfflictionNotableOverwhelmingMalice = 11241, - - /// - /// local_affliction_notable_magnifier - /// - LocalAfflictionNotableMagnifier = 11242, - - /// - /// local_affliction_notable_savage_response - /// - LocalAfflictionNotableSavageResponse = 11243, - - /// - /// local_affliction_notable_eye_of_the_storm - /// - LocalAfflictionNotableEyeOfTheStorm = 11244, - - /// - /// local_affliction_notable_basics_of_pain - /// - LocalAfflictionNotableBasicsOfPain = 11245, - - /// - /// local_affliction_notable_quick_getaway - /// - LocalAfflictionNotableQuickGetaway = 11246, - - /// - /// local_affliction_notable_assert_dominance - /// - LocalAfflictionNotableAssertDominance = 11247, - - /// - /// local_affliction_notable_vast_power - /// - LocalAfflictionNotableVastPower = 11248, - - /// - /// local_affliction_notable_powerful_assault - /// - LocalAfflictionNotablePowerfulAssault = 11249, - - /// - /// local_affliction_notable_intensity - /// - LocalAfflictionNotableIntensity = 11250, - - /// - /// local_affliction_notable_titanic_swings - /// - LocalAfflictionNotableTitanicSwings = 11251, - - /// - /// local_affliction_notable_towering_threat - /// - LocalAfflictionNotableToweringThreat = 11252, - - /// - /// local_affliction_notable_ancestral_echo - /// - LocalAfflictionNotableAncestralEcho = 11253, - - /// - /// local_affliction_notable_ancestral_reach - /// - LocalAfflictionNotableAncestralReach = 11254, - - /// - /// local_affliction_notable_ancestral_might - /// - LocalAfflictionNotableAncestralMight = 11255, - - /// - /// local_affliction_notable_ancestral_preservation - /// - LocalAfflictionNotableAncestralPreservation = 11256, - - /// - /// local_affliction_notable_snaring_spirits - /// - LocalAfflictionNotableSnaringSpirits = 11257, - - /// - /// local_affliction_notable_sleepless_sentries - /// - LocalAfflictionNotableSleeplessSentries = 11258, - - /// - /// local_affliction_notable_ancestral_guidance - /// - LocalAfflictionNotableAncestralGuidance = 11259, - - /// - /// local_affliction_notable_ancestral_inspiration - /// - LocalAfflictionNotableAncestralInspiration = 11260, - - /// - /// local_affliction_notable_vital_focus - /// - LocalAfflictionNotableVitalFocus = 11261, - - /// - /// local_affliction_notable_rapid_infusion - /// - LocalAfflictionNotableRapidInfusion = 11262, - - /// - /// local_affliction_notable_unwavering_focus - /// - LocalAfflictionNotableUnwaveringFocus = 11263, - - /// - /// local_affliction_notable_enduring_focus - /// - LocalAfflictionNotableEnduringFocus = 11264, - - /// - /// local_affliction_notable_precise_focus - /// - LocalAfflictionNotablePreciseFocus = 11265, - - /// - /// local_affliction_notable_stoic_focus - /// - LocalAfflictionNotableStoicFocus = 11266, - - /// - /// local_affliction_notable_hex_breaker - /// - LocalAfflictionNotableHexBreaker = 11267, - - /// - /// local_affliction_notable_arcane_focus - /// - LocalAfflictionNotableArcaneFocus = 11268, - - /// - /// local_affliction_notable_distilled_perfection - /// - LocalAfflictionNotableDistilledPerfection = 11269, - - /// - /// local_affliction_notable_spiked_concoction - /// - LocalAfflictionNotableSpikedConcoction = 11270, - - /// - /// local_affliction_notable_fasting - /// - LocalAfflictionNotableFasting = 11271, - - /// - /// local_affliction_notable_menders_wellspring - /// - LocalAfflictionNotableMendersWellspring = 11272, - - /// - /// local_affliction_notable_special_reserve - /// - LocalAfflictionNotableSpecialReserve = 11273, - - /// - /// local_affliction_notable_numbing_elixir - /// - LocalAfflictionNotableNumbingElixir = 11274, - - /// - /// local_affliction_notable_mob_mentality - /// - LocalAfflictionNotableMobMentality = 11275, - - /// - /// local_affliction_notable_cry_wolf - /// - LocalAfflictionNotableCryWolf = 11276, - - /// - /// local_affliction_notable_haunting_shout - /// - LocalAfflictionNotableHauntingShout = 11277, - - /// - /// local_affliction_notable_lead_by_example - /// - LocalAfflictionNotableLeadByExample = 11278, - - /// - /// local_affliction_notable_provocateur - /// - LocalAfflictionNotableProvocateur = 11279, - - /// - /// local_affliction_notable_warning_call - /// - LocalAfflictionNotableWarningCall = 11280, - - /// - /// local_affliction_notable_rattling_bellow - /// - LocalAfflictionNotableRattlingBellow = 11281, - - /// - /// local_affliction_notable_bloodscent - /// - LocalAfflictionNotableBloodscent = 11282, - - /// - /// local_affliction_notable_run_through - /// - LocalAfflictionNotableRunThrough = 11283, - - /// - /// local_affliction_notable_wound_aggravation - /// - LocalAfflictionNotableWoundAggravation = 11284, - - /// - /// local_affliction_notable_overlord - /// - LocalAfflictionNotableOverlord = 11285, - - /// - /// local_affliction_notable_expansive_might - /// - LocalAfflictionNotableExpansiveMight = 11286, - - /// - /// local_affliction_notable_weight_advantage - /// - LocalAfflictionNotableWeightAdvantage = 11287, - - /// - /// local_affliction_notable_wind_up - /// - LocalAfflictionNotableWindUp = 11288, - - /// - /// local_affliction_notable_fan_of_blades - /// - LocalAfflictionNotableFanOfBlades = 11289, - - /// - /// local_affliction_notable_disease_vector - /// - LocalAfflictionNotableDiseaseVector = 11290, - - /// - /// local_affliction_notable_arcing_shot - /// - LocalAfflictionNotableArcingShot = 11291, - - /// - /// local_affliction_notable_tempered_arrowheads - /// - LocalAfflictionNotableTemperedArrowheads = 11292, - - /// - /// local_affliction_notable_broadside - /// - LocalAfflictionNotableBroadside = 11293, - - /// - /// local_affliction_notable_explosive_force - /// - LocalAfflictionNotableExplosiveForce = 11294, - - /// - /// local_affliction_notable_opportunistic_fusilade - /// - LocalAfflictionNotableOpportunisticFusilade = 11295, - - /// - /// local_affliction_notable_storms_hand - /// - LocalAfflictionNotableStormsHand = 11296, - - /// - /// local_affliction_notable_battlefield_dominator - /// - LocalAfflictionNotableBattlefieldDominator = 11297, - - /// - /// local_affliction_notable_martial_mastery - /// - LocalAfflictionNotableMartialMastery = 11298, - - /// - /// local_affliction_notable_surefooted_striker - /// - LocalAfflictionNotableSurefootedStriker = 11299, - - /// - /// local_affliction_notable_graceful_execution - /// - LocalAfflictionNotableGracefulExecution = 11300, - - /// - /// local_affliction_notable_brutal_infamy - /// - LocalAfflictionNotableBrutalInfamy = 11301, - - /// - /// local_affliction_notable_fearsome_warrior - /// - LocalAfflictionNotableFearsomeWarrior = 11302, - - /// - /// local_affliction_notable_combat_rhythm - /// - LocalAfflictionNotableCombatRhythm = 11303, - - /// - /// local_affliction_notable_hit_and_run - /// - LocalAfflictionNotableHitAndRun = 11304, - - /// - /// local_affliction_notable_insatiable_killer - /// - LocalAfflictionNotableInsatiableKiller = 11305, - - /// - /// local_affliction_notable_mage_bane - /// - LocalAfflictionNotableMageBane = 11306, - - /// - /// local_affliction_notable_martial_momentum - /// - LocalAfflictionNotableMartialMomentum = 11307, - - /// - /// local_affliction_notable_deadly_repartee - /// - LocalAfflictionNotableDeadlyRepartee = 11308, - - /// - /// local_affliction_notable_quick_and_deadly - /// - LocalAfflictionNotableQuickAndDeadly = 11309, - - /// - /// local_affliction_notable_smite_the_weak - /// - LocalAfflictionNotableSmiteTheWeak = 11310, - - /// - /// local_affliction_notable_heavy_hitter - /// - LocalAfflictionNotableHeavyHitter = 11311, - - /// - /// local_affliction_notable_martial_prowess - /// - LocalAfflictionNotableMartialProwess = 11312, - - /// - /// local_affliction_notable_calamitous - /// - LocalAfflictionNotableCalamitous = 11313, - - /// - /// local_affliction_notable_devastator - /// - LocalAfflictionNotableDevastator = 11314, - - /// - /// local_affliction_notable_fuel_the_fight - /// - LocalAfflictionNotableFuelTheFight = 11315, - - /// - /// local_affliction_notable_drive_the_destruction - /// - LocalAfflictionNotableDriveTheDestruction = 11316, - - /// - /// local_affliction_notable_feed_the_fury - /// - LocalAfflictionNotableFeedTheFury = 11317, - - /// - /// local_affliction_notable_seal_mender - /// - LocalAfflictionNotableSealMender = 11318, - - /// - /// local_affliction_notable_conjured_wall - /// - LocalAfflictionNotableConjuredWall = 11319, - - /// - /// local_affliction_notable_arcane_heroism - /// - LocalAfflictionNotableArcaneHeroism = 11320, - - /// - /// local_affliction_notable_practiced_caster - /// - LocalAfflictionNotablePracticedCaster = 11321, - - /// - /// local_affliction_notable_burden_projection - /// - LocalAfflictionNotableBurdenProjection = 11322, - - /// - /// local_affliction_notable_thaumophage - /// - LocalAfflictionNotableThaumophage = 11323, - - /// - /// local_affliction_notable_essence_rush - /// - LocalAfflictionNotableEssenceRush = 11324, - - /// - /// local_affliction_notable_sap_psyche - /// - LocalAfflictionNotableSapPsyche = 11325, - - /// - /// local_affliction_notable_sadist - /// - LocalAfflictionNotableSadist = 11326, - - /// - /// local_affliction_notable_corrosive_elements - /// - LocalAfflictionNotableCorrosiveElements = 11327, - - /// - /// local_affliction_notable_doryanis_lesson - /// - LocalAfflictionNotableDoryanisLesson = 11328, - - /// - /// local_affliction_notable_disorienting_display - /// - LocalAfflictionNotableDisorientingDisplay = 11329, - - /// - /// local_affliction_notable_prismatic_heart - /// - LocalAfflictionNotablePrismaticHeart = 11330, - - /// - /// local_affliction_notable_widespread_destruction - /// - LocalAfflictionNotableWidespreadDestruction = 11331, - - /// - /// local_affliction_notable_master_of_fire - /// - LocalAfflictionNotableMasterOfFire = 11332, - - /// - /// local_affliction_notable_smoking_remains - /// - LocalAfflictionNotableSmokingRemains = 11333, - - /// - /// local_affliction_notable_cremator - /// - LocalAfflictionNotableCremator = 11334, - - /// - /// local_affliction_notable_snowstorm - /// - LocalAfflictionNotableSnowstorm = 11335, - - /// - /// local_affliction_notable_storm_drinker - /// - LocalAfflictionNotableStormDrinker = 11336, - - /// - /// local_affliction_notable_paralysis - /// - LocalAfflictionNotableParalysis = 11337, - - /// - /// local_affliction_notable_supercharge - /// - LocalAfflictionNotableSupercharge = 11338, - - /// - /// local_affliction_notable_blanketed_snow - /// - LocalAfflictionNotableBlanketedSnow = 11339, - - /// - /// local_affliction_notable_cold_to_the_core - /// - LocalAfflictionNotableColdToTheCore = 11340, - - /// - /// local_affliction_notable_cold_blooded_killer - /// - LocalAfflictionNotableColdBloodedKiller = 11341, - - /// - /// local_affliction_notable_touch_of_cruelty - /// - LocalAfflictionNotableTouchOfCruelty = 11342, - - /// - /// local_affliction_notable_unwaveringly_evil - /// - LocalAfflictionNotableUnwaveringlyEvil = 11343, - - /// - /// local_affliction_notable_unspeakable_gifts - /// - LocalAfflictionNotableUnspeakableGifts = 11344, - - /// - /// local_affliction_notable_dark_ideation - /// - LocalAfflictionNotableDarkIdeation = 11345, - - /// - /// local_affliction_notable_unholy_grace - /// - LocalAfflictionNotableUnholyGrace = 11346, - - /// - /// local_affliction_notable_wicked_pall - /// - LocalAfflictionNotableWickedPall = 11347, - - /// - /// local_affliction_notable_renewal - /// - LocalAfflictionNotableRenewal = 11348, - - /// - /// local_affliction_notable_raze_and_pillage - /// - LocalAfflictionNotableRazeAndPillage = 11349, - - /// - /// local_affliction_notable_rotten_claws - /// - LocalAfflictionNotableRottenClaws = 11350, - - /// - /// local_affliction_notable_call_to_the_slaughter - /// - LocalAfflictionNotableCallToTheSlaughter = 11351, - - /// - /// local_affliction_notable_hulking_corpses - /// - LocalAfflictionNotableHulkingCorpses = 11352, - - /// - /// local_affliction_notable_vicious_bite - /// - LocalAfflictionNotableViciousBite = 11353, - - /// - /// local_affliction_notable_primordial_bond - /// - LocalAfflictionNotablePrimordialBond = 11354, - - /// - /// local_affliction_notable_blowback - /// - LocalAfflictionNotableBlowback = 11355, - - /// - /// local_affliction_notable_fan_the_flames - /// - LocalAfflictionNotableFanTheFlames = 11356, - - /// - /// local_affliction_notable_cooked_alive - /// - LocalAfflictionNotableCookedAlive = 11357, - - /// - /// local_affliction_notable_burning_bright - /// - LocalAfflictionNotableBurningBright = 11358, - - /// - /// local_affliction_notable_wrapped_in_flame - /// - LocalAfflictionNotableWrappedInFlame = 11359, - - /// - /// local_affliction_notable_vivid_hues - /// - LocalAfflictionNotableVividHues = 11360, - - /// - /// local_affliction_notable_rend - /// - LocalAfflictionNotableRend = 11361, - - /// - /// local_affliction_notable_disorienting_wounds - /// - LocalAfflictionNotableDisorientingWounds = 11362, - - /// - /// local_affliction_notable_compound_injury - /// - LocalAfflictionNotableCompoundInjury = 11363, - - /// - /// local_affliction_notable_septic_spells - /// - LocalAfflictionNotableSepticSpells = 11364, - - /// - /// local_affliction_notable_low_tolerance - /// - LocalAfflictionNotableLowTolerance = 11365, - - /// - /// local_affliction_notable_steady_torment - /// - LocalAfflictionNotableSteadyTorment = 11366, - - /// - /// local_affliction_notable_eternal_suffering - /// - LocalAfflictionNotableEternalSuffering = 11367, - - /// - /// local_affliction_notable_eldritch_inspiration - /// - LocalAfflictionNotableEldritchInspiration = 11368, - - /// - /// local_affliction_notable_wasting_affliction - /// - LocalAfflictionNotableWastingAffliction = 11369, - - /// - /// local_affliction_notable_haemorrhage - /// - LocalAfflictionNotableHaemorrhage = 11370, - - /// - /// local_affliction_notable_flow_of_life - /// - LocalAfflictionNotableFlowOfLife = 11371, - - /// - /// local_affliction_notable_exposure_therapy - /// - LocalAfflictionNotableExposureTherapy = 11372, - - /// - /// local_affliction_notable_brush_with_death - /// - LocalAfflictionNotableBrushWithDeath = 11373, - - /// - /// local_affliction_notable_vile_reinvigoration - /// - LocalAfflictionNotableVileReinvigoration = 11374, - - /// - /// local_affliction_notable_circling_oblivion - /// - LocalAfflictionNotableCirclingOblivion = 11375, - - /// - /// local_affliction_notable_brewed_for_potency - /// - LocalAfflictionNotableBrewedForPotency = 11376, - - /// - /// local_affliction_notable_astonishing_affliction - /// - LocalAfflictionNotableAstonishingAffliction = 11377, - - /// - /// local_affliction_notable_cold_conduction - /// - LocalAfflictionNotableColdConduction = 11378, - - /// - /// local_affliction_notable_inspired_oppression - /// - LocalAfflictionNotableInspiredOppression = 11379, - - /// - /// local_affliction_notable_chilling_presence - /// - LocalAfflictionNotableChillingPresence = 11380, - - /// - /// local_affliction_notable_deep_chill - /// - LocalAfflictionNotableDeepChill = 11381, - - /// - /// local_affliction_notable_blast_freeze - /// - LocalAfflictionNotableBlastFreeze = 11382, - - /// - /// local_affliction_notable_thunderstruck - /// - LocalAfflictionNotableThunderstruck = 11383, - - /// - /// local_affliction_notable_stormrider - /// - LocalAfflictionNotableStormrider = 11384, - - /// - /// local_affliction_notable_overshock - /// - LocalAfflictionNotableOvershock = 11385, - - /// - /// local_affliction_notable_evil_eye - /// - LocalAfflictionNotableEvilEye = 11386, - - /// - /// local_affliction_notable_whispers_of_death - /// - LocalAfflictionNotableWhispersOfDeath = 11387, - - /// - /// local_affliction_notable_wardbreaker - /// - LocalAfflictionNotableWardbreaker = 11388, - - /// - /// local_affliction_notable_dark_discourse - /// - LocalAfflictionNotableDarkDiscourse = 11389, - - /// - /// local_affliction_notable_victim_maker - /// - LocalAfflictionNotableVictimMaker = 11390, - - /// - /// local_affliction_notable_master_of_fear - /// - LocalAfflictionNotableMasterOfFear = 11391, - - /// - /// local_affliction_notable_wish_for_death - /// - LocalAfflictionNotableWishForDeath = 11392, - - /// - /// local_affliction_notable_heraldry - /// - LocalAfflictionNotableHeraldry = 11393, - - /// - /// local_affliction_notable_endbringer - /// - LocalAfflictionNotableEndbringer = 11394, - - /// - /// local_affliction_notable_cult_leader - /// - LocalAfflictionNotableCultLeader = 11395, - - /// - /// local_affliction_notable_empowered_envoy - /// - LocalAfflictionNotableEmpoweredEnvoy = 11396, - - /// - /// local_affliction_notable_dark_messenger - /// - LocalAfflictionNotableDarkMessenger = 11397, - - /// - /// local_affliction_notable_agent_of_destruction - /// - LocalAfflictionNotableAgentOfDestruction = 11398, - - /// - /// local_affliction_notable_lasting_impression - /// - LocalAfflictionNotableLastingImpression = 11399, - - /// - /// local_affliction_notable_self_fulfilling_prophecy - /// - LocalAfflictionNotableSelfFulfillingProphecy = 11400, - - /// - /// local_affliction_notable_invigorating_portents - /// - LocalAfflictionNotableInvigoratingPortents = 11401, - - /// - /// local_affliction_notable_pure_agony - /// - LocalAfflictionNotablePureAgony = 11402, - - /// - /// local_affliction_notable_disciples - /// - LocalAfflictionNotableDisciples = 11403, - - /// - /// local_affliction_notable_dread_march - /// - LocalAfflictionNotableDreadMarch = 11404, - - /// - /// local_affliction_notable_blessed_rebirth - /// - LocalAfflictionNotableBlessedRebirth = 11405, - - /// - /// local_affliction_notable_life_from_death - /// - LocalAfflictionNotableLifeFromDeath = 11406, - - /// - /// local_affliction_notable_feasting_fiends - /// - LocalAfflictionNotableFeastingFiends = 11407, - - /// - /// local_affliction_notable_bodyguards - /// - LocalAfflictionNotableBodyguards = 11408, - - /// - /// local_affliction_notable_follow_through - /// - LocalAfflictionNotableFollowThrough = 11409, - - /// - /// local_affliction_notable_streamlined - /// - LocalAfflictionNotableStreamlined = 11410, - - /// - /// local_affliction_notable_shrieking_bolts - /// - LocalAfflictionNotableShriekingBolts = 11411, - - /// - /// local_affliction_notable_eye_to_eye - /// - LocalAfflictionNotableEyeToEye = 11412, - - /// - /// local_affliction_notable_repeater - /// - LocalAfflictionNotableRepeater = 11413, - - /// - /// local_affliction_notable_aerodynamics - /// - LocalAfflictionNotableAerodynamics = 11414, - - /// - /// local_affliction_notable_chip_away - /// - LocalAfflictionNotableChipAway = 11415, - - /// - /// local_affliction_notable_seeker_runes - /// - LocalAfflictionNotableSeekerRunes = 11416, - - /// - /// local_affliction_notable_remarkable - /// - LocalAfflictionNotableRemarkable = 11417, - - /// - /// local_affliction_notable_brand_loyalty - /// - LocalAfflictionNotableBrandLoyalty = 11418, - - /// - /// local_affliction_notable_holy_conquest - /// - LocalAfflictionNotableHolyConquest = 11419, - - /// - /// local_affliction_notable_grand_design - /// - LocalAfflictionNotableGrandDesign = 11420, - - /// - /// local_affliction_notable_set_and_forget - /// - LocalAfflictionNotableSetAndForget = 11421, - - /// - /// local_affliction_notable_expert_sabotage - /// - LocalAfflictionNotableExpertSabotage = 11422, - - /// - /// local_affliction_notable_guerilla_tactics - /// - LocalAfflictionNotableGuerillaTactics = 11423, - - /// - /// local_affliction_notable_expendability - /// - LocalAfflictionNotableExpendability = 11424, - - /// - /// local_affliction_notable_arcane_pyrotechnics - /// - LocalAfflictionNotableArcanePyrotechnics = 11425, - - /// - /// local_affliction_notable_surprise_sabotage - /// - LocalAfflictionNotableSurpriseSabotage = 11426, - - /// - /// local_affliction_notable_careful_handling - /// - LocalAfflictionNotableCarefulHandling = 11427, - - /// - /// local_affliction_notable_peak_vigour - /// - LocalAfflictionNotablePeakVigour = 11428, - - /// - /// local_affliction_notable_fettle - /// - LocalAfflictionNotableFettle = 11429, - - /// - /// local_affliction_notable_feast_of_flesh - /// - LocalAfflictionNotableFeastOfFlesh = 11430, - - /// - /// local_affliction_notable_sublime_sensation - /// - LocalAfflictionNotableSublimeSensation = 11431, - - /// - /// local_affliction_notable_surging_vitality - /// - LocalAfflictionNotableSurgingVitality = 11432, - - /// - /// local_affliction_notable_peace_amidst_chaos - /// - LocalAfflictionNotablePeaceAmidstChaos = 11433, - - /// - /// local_affliction_notable_adrenaline - /// - LocalAfflictionNotableAdrenaline = 11434, - - /// - /// local_affliction_notable_wall_of_muscle - /// - LocalAfflictionNotableWallOfMuscle = 11435, - - /// - /// local_affliction_notable_mindfulness - /// - LocalAfflictionNotableMindfulness = 11436, - - /// - /// local_affliction_notable_liquid_inspiration - /// - LocalAfflictionNotableLiquidInspiration = 11437, - - /// - /// local_affliction_notable_openness - /// - LocalAfflictionNotableOpenness = 11438, - - /// - /// local_affliction_notable_daring_ideas - /// - LocalAfflictionNotableDaringIdeas = 11439, - - /// - /// local_affliction_notable_clarity_of_purpose - /// - LocalAfflictionNotableClarityOfPurpose = 11440, - - /// - /// local_affliction_notable_scintillating_idea - /// - LocalAfflictionNotableScintillatingIdea = 11441, - - /// - /// local_affliction_notable_holistic_health - /// - LocalAfflictionNotableHolisticHealth = 11442, - - /// - /// local_affliction_notable_genius - /// - LocalAfflictionNotableGenius = 11443, - - /// - /// local_affliction_notable_improvisor - /// - LocalAfflictionNotableImprovisor = 11444, - - /// - /// local_affliction_notable_stubborn_student - /// - LocalAfflictionNotableStubbornStudent = 11445, - - /// - /// local_affliction_notable_savour_the_moment - /// - LocalAfflictionNotableSavourTheMoment = 11446, - - /// - /// local_affliction_notable_energy_from_naught - /// - LocalAfflictionNotableEnergyFromNaught = 11447, - - /// - /// local_affliction_notable_will_shaper - /// - LocalAfflictionNotableWillShaper = 11448, - - /// - /// local_affliction_notable_spring_back - /// - LocalAfflictionNotableSpringBack = 11449, - - /// - /// local_affliction_notable_conservation_of_energy - /// - LocalAfflictionNotableConservationOfEnergy = 11450, - - /// - /// local_affliction_notable_heart_of_iron - /// - LocalAfflictionNotableHeartOfIron = 11451, - - /// - /// local_affliction_notable_prismatic_carapace - /// - LocalAfflictionNotablePrismaticCarapace = 11452, - - /// - /// local_affliction_notable_militarism - /// - LocalAfflictionNotableMilitarism = 11453, - - /// - /// local_affliction_notable_second_skin - /// - LocalAfflictionNotableSecondSkin = 11454, - - /// - /// local_affliction_notable_dragon_hunter - /// - LocalAfflictionNotableDragonHunter = 11455, - - /// - /// local_affliction_notable_enduring_composure - /// - LocalAfflictionNotableEnduringComposure = 11456, - - /// - /// local_affliction_notable_prismatic_dance - /// - LocalAfflictionNotablePrismaticDance = 11457, - - /// - /// local_affliction_notable_natural_vigour - /// - LocalAfflictionNotableNaturalVigour = 11458, - - /// - /// local_affliction_notable_untouchable - /// - LocalAfflictionNotableUntouchable = 11459, - - /// - /// local_affliction_notable_shifting_shadow - /// - LocalAfflictionNotableShiftingShadow = 11460, - - /// - /// local_affliction_notable_readiness - /// - LocalAfflictionNotableReadiness = 11461, - - /// - /// local_affliction_notable_confident_combatant - /// - LocalAfflictionNotableConfidentCombatant = 11462, - - /// - /// local_affliction_notable_flexible_sentry - /// - LocalAfflictionNotableFlexibleSentry = 11463, - - /// - /// local_affliction_notable_vicious_guard_ - /// - LocalAfflictionNotableViciousGuard = 11464, - - /// - /// local_affliction_notable_mystical_ward - /// - LocalAfflictionNotableMysticalWard = 11465, - - /// - /// local_affliction_notable_rote_reinforcement - /// - LocalAfflictionNotableRoteReinforcement = 11466, - - /// - /// local_affliction_notable_mage_hunter - /// - LocalAfflictionNotableMageHunter = 11467, - - /// - /// local_affliction_notable_riot_queller - /// - LocalAfflictionNotableRiotQueller = 11468, - - /// - /// local_affliction_notable_one_with_the_shield - /// - LocalAfflictionNotableOneWithTheShield = 11469, - - /// - /// local_affliction_notable_aerialist - /// - LocalAfflictionNotableAerialist = 11470, - - /// - /// local_affliction_notable_elegant_form - /// - LocalAfflictionNotableElegantForm = 11471, - - /// - /// local_affliction_notable_darting_movements - /// - LocalAfflictionNotableDartingMovements = 11472, - - /// - /// local_affliction_notable_no_witnesses - /// - LocalAfflictionNotableNoWitnesses = 11473, - - /// - /// local_affliction_notable_molten_ones_mark - /// - LocalAfflictionNotableMoltenOnesMark = 11474, - - /// - /// local_affliction_notable_fire_attunement - /// - LocalAfflictionNotableFireAttunement = 11475, - - /// - /// local_affliction_notable_pure_might - /// - LocalAfflictionNotablePureMight = 11476, - - /// - /// local_affliction_notable_blacksmith - /// - LocalAfflictionNotableBlacksmith = 11477, - - /// - /// local_affliction_notable_non_flammable - /// - LocalAfflictionNotableNonFlammable = 11478, - - /// - /// local_affliction_notable_winter_prowler - /// - LocalAfflictionNotableWinterProwler = 11479, - - /// - /// local_affliction_notable_hibernator - /// - LocalAfflictionNotableHibernator = 11480, - - /// - /// local_affliction_notable_pure_guile - /// - LocalAfflictionNotablePureGuile = 11481, - - /// - /// local_affliction_notable_alchemist - /// - LocalAfflictionNotableAlchemist = 11482, - - /// - /// local_affliction_notable_antifreeze - /// - LocalAfflictionNotableAntifreeze = 11483, - - /// - /// local_affliction_notable_wizardry - /// - LocalAfflictionNotableWizardry = 11484, - - /// - /// local_affliction_notable_capacitor - /// - LocalAfflictionNotableCapacitor = 11485, - - /// - /// local_affliction_notable_pure_aptitude - /// - LocalAfflictionNotablePureAptitude = 11486, - - /// - /// local_affliction_notable_sage - /// - LocalAfflictionNotableSage = 11487, - - /// - /// local_affliction_notable_insulated - /// - LocalAfflictionNotableInsulated = 11488, - - /// - /// local_affliction_notable_born_of_chaos - /// - LocalAfflictionNotableBornOfChaos = 11489, - - /// - /// local_affliction_notable_antivenom - /// - LocalAfflictionNotableAntivenom = 11490, - - /// - /// local_affliction_notable_rot_resistant - /// - LocalAfflictionNotableRotResistant = 11491, - - /// - /// local_affliction_notable_blessed - /// - LocalAfflictionNotableBlessed = 11492, - - /// - /// local_affliction_notable_student_of_decay - /// - LocalAfflictionNotableStudentOfDecay = 11493, - - /// - /// area_skill_knockback_chance_% - /// - AreaSkillKnockbackChancePct = 11494, - - /// - /// fire_skill_chance_to_inflict_fire_exposure_% - /// - FireSkillChanceToInflictFireExposurePct = 11495, - - /// - /// cold_skill_chance_to_inflict_cold_exposure_% - /// - ColdSkillChanceToInflictColdExposurePct = 11496, - - /// - /// lightning_skill_chance_to_inflict_lightning_exposure_% - /// - LightningSkillChanceToInflictLightningExposurePct = 11497, - - /// - /// chaos_skill_chance_to_hinder_on_hit_% - /// - ChaosSkillChanceToHinderOnHitPct = 11498, - - /// - /// banner_mana_reservation_+% - /// - BannerManaReservationPct = 11499, - - /// - /// lightning_skill_stun_threshold_+% - /// - LightningSkillStunThresholdPct = 11500, - - /// - /// cannot_be_stunned_while_using_chaos_skill - /// - CannotBeStunnedWhileUsingChaosSkill = 11501, - - /// - /// poison_dot_multiplier_+_with_spells - /// - PoisonDotMultiplierWithSpells = 11502, - - /// - /// elemental_skill_chance_to_blind_nearby_enemies_% - /// - ElementalSkillChanceToBlindNearbyEnemiesPct = 11503, - - /// - /// is_affliction_monster - /// - IsAfflictionMonster = 11504, - - /// - /// gain_arcane_surge_when_you_summon_a_totem - /// - GainArcaneSurgeWhenYouSummonATotem = 11505, - - /// - /// add_frenzy_charge_on_kill_%_chance_while_dual_wielding - /// - AddFrenzyChargeOnKillPctChanceWhileDualWielding = 11506, - - /// - /// create_smoke_cloud_on_kill_%_chance - /// - CreateSmokeCloudOnKillPctChance = 11507, - - /// - /// totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed - /// - TotemHinderNearbyEnemiesWhenSummonedWith25PctReducedMovementSpeed = 11508, - - /// - /// attack_damage_+%_per_75_armour_or_evasion_on_shield - /// - AttackDamagePctPer75ArmourOrEvasionOnShield = 11509, - - /// - /// critical_multiplier_+%_per_10_max_es_on_shield - /// - CriticalMultiplierPctPer10MaxEsOnShield = 11510, - - /// - /// movement_speed_+%_while_you_have_infusion - /// - MovementSpeedPctWhileYouHaveInfusion = 11511, - - /// - /// infusion_effect_+% - /// - InfusionEffectPct = 11512, - - /// - /// flask_life_and_mana_to_recover_+% - /// - FlaskLifeAndManaToRecoverPct = 11513, - - /// - /// virtual_flask_mana_to_recover_+% - /// - VirtualFlaskManaToRecoverPct = 11514, - - /// - /// has_infusion - /// - HasInfusion = 11515, - - /// - /// map_uses_chaos_packs - /// - MapUsesChaosPacks = 11516, - - /// - /// local_jewel_expansion_keystone_lone_messenger - /// - LocalJewelExpansionKeystoneLoneMessenger = 11517, - - /// - /// local_jewel_expansion_keystone_natures_patience - /// - LocalJewelExpansionKeystoneNaturesPatience = 11518, - - /// - /// local_jewel_expansion_keystone_secrets_of_suffering - /// - LocalJewelExpansionKeystoneSecretsOfSuffering = 11519, - - /// - /// local_jewel_expansion_keystone_kineticism - /// - LocalJewelExpansionKeystoneKineticism = 11520, - - /// - /// local_jewel_expansion_keystone_pitfighter - /// - LocalJewelExpansionKeystonePitfighter = 11521, - - /// - /// local_jewel_expansion_keystone_veterans_awareness - /// - LocalJewelExpansionKeystoneVeteransAwareness = 11522, - - /// - /// local_jewel_expansion_keystone_hollow_palm_technique - /// - LocalJewelExpansionKeystoneHollowPalmTechnique = 11523, - - /// - /// recover_%_maximum_mana_when_enemy_frozen_permyriad - /// - RecoverPctMaximumManaWhenEnemyFrozenPermyriad = 11524, - - /// - /// chance_to_grant_power_charge_on_shocking_chilled_enemy_% - /// - ChanceToGrantPowerChargeOnShockingChilledEnemyPct = 11525, - - /// - /// shock_maximum_magnitude_is_60% - /// - ShockMaximumMagnitudeIs60Pct = 11526, - - /// - /// spread_freeze_to_nearby_enemies - /// - SpreadFreezeToNearbyEnemies = 11527, - - /// - /// spread_ignite_to_nearby_enemies - /// - SpreadIgniteToNearbyEnemies = 11528, - - /// - /// virtual_shock_maximum_magnitude_override - /// - VirtualShockMaximumMagnitudeOverride = 11529, - - /// - /// virtual_freeze_proliferation_radius - /// - VirtualFreezeProliferationRadius = 11530, - - /// - /// local_affliction_jewel_small_nodes_grant_maximum_life - /// - LocalAfflictionJewelSmallNodesGrantMaximumLife = 11531, - - /// - /// local_affliction_jewel_small_nodes_grant_maximum_mana - /// - LocalAfflictionJewelSmallNodesGrantMaximumMana = 11532, - - /// - /// local_affliction_jewel_small_nodes_grant_maximum_energy_shield - /// - LocalAfflictionJewelSmallNodesGrantMaximumEnergyShield = 11533, - - /// - /// local_affliction_jewel_small_nodes_grant_armour - /// - LocalAfflictionJewelSmallNodesGrantArmour = 11534, - - /// - /// local_affliction_jewel_small_nodes_grant_evasion - /// - LocalAfflictionJewelSmallNodesGrantEvasion = 11535, - - /// - /// local_affliction_jewel_small_nodes_grant_str - /// - LocalAfflictionJewelSmallNodesGrantStr = 11536, - - /// - /// local_affliction_jewel_small_nodes_grant_dex - /// - LocalAfflictionJewelSmallNodesGrantDex = 11537, - - /// - /// local_affliction_jewel_small_nodes_grant_int - /// - LocalAfflictionJewelSmallNodesGrantInt = 11538, - - /// - /// local_affliction_jewel_small_nodes_grant_all_attributes - /// - LocalAfflictionJewelSmallNodesGrantAllAttributes = 11539, - - /// - /// local_affliction_jewel_small_nodes_grant_mana_regeneration_+% - /// - LocalAfflictionJewelSmallNodesGrantManaRegenerationPct = 11540, - - /// - /// local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute - /// - LocalAfflictionJewelSmallNodesGrantPctLifeRegenerationPerMinute = 11541, - - /// - /// local_affliction_jewel_small_nodes_grant_fire_resistance_% - /// - LocalAfflictionJewelSmallNodesGrantFireResistancePct = 11542, - - /// - /// local_affliction_jewel_small_nodes_grant_cold_resistance_% - /// - LocalAfflictionJewelSmallNodesGrantColdResistancePct = 11543, - - /// - /// local_affliction_jewel_small_nodes_grant_lightning_resistance_% - /// - LocalAfflictionJewelSmallNodesGrantLightningResistancePct = 11544, - - /// - /// local_affliction_jewel_small_nodes_grant_elemental_resistance_% - /// - LocalAfflictionJewelSmallNodesGrantElementalResistancePct = 11545, - - /// - /// local_affliction_jewel_small_nodes_grant_chaos_resistance_% - /// - LocalAfflictionJewelSmallNodesGrantChaosResistancePct = 11546, - - /// - /// local_affliction_jewel_small_nodes_grant_damage_+% - /// - LocalAfflictionJewelSmallNodesGrantDamagePct = 11547, - - /// - /// local_affliction_jewel_small_nodes_have_effect_+% - /// - LocalAfflictionJewelSmallNodesHaveEffectPct = 11548, - - /// - /// maximum_virulence_stacks - /// - MaximumVirulenceStacks = 11549, - - /// - /// unattached_sigil_attachment_range_+%_per_second - /// - UnattachedSigilAttachmentRangePctPerSecond = 11550, - - /// - /// extra_damage_rolls_with_lightning_damage_on_non_critical_hits - /// - ExtraDamageRollsWithLightningDamageOnNonCriticalHits = 11551, - - /// - /// maximum_intensify_stacks - /// - MaximumIntensifyStacks = 11552, - - /// - /// aura_effect_on_you_+%_per_herald_effecting_you - /// - AuraEffectOnYouPctPerHeraldEffectingYou = 11553, - - /// - /// virtual_aura_effect_on_self_pluspercent - /// - VirtualAuraEffectOnSelfPluspercent = 11554, - - /// - /// minion_attack_hits_knockback_chance_% - /// - MinionAttackHitsKnockbackChancePct = 11555, - - /// - /// minion_chance_to_gain_power_charge_on_hit_% - /// - MinionChanceToGainPowerChargeOnHitPct = 11556, - - /// - /// spectre_zombie_skeleton_critical_strike_multiplier_+ - /// - SpectreZombieSkeletonCriticalStrikeMultiplier = 11557, - - /// - /// minion_recover_%_maximum_life_on_minion_death - /// - MinionRecoverPctMaximumLifeOnMinionDeath = 11558, - - /// - /// poison_on_non_poisoned_enemies_damage_+% - /// - PoisonOnNonPoisonedEnemiesDamagePct = 11559, - - /// - /// elemental_resistance_%_per_stackable_unique_jewel - /// - ElementalResistancePctPerStackableUniqueJewel = 11560, - - /// - /// base_can_only_have_one_permanent_aura - /// - BaseCanOnlyHaveOnePermanentAura = 11561, - - /// - /// non_curse_aura_effect_+%_vs_enemies - /// - NonCurseAuraEffectPctVsEnemies = 11562, - - /// - /// map_area_contains_metamorphs - /// - MapAreaContainsMetamorphs = 11563, - - /// - /// map_metamorph_all_metamorphs_have_rewards - /// - MapMetamorphAllMetamorphsHaveRewards = 11564, - - /// - /// map_metamorph_boss_drops_additional_itemised_organs - /// - MapMetamorphBossDropsAdditionalItemisedOrgans = 11565, - - /// - /// keystone_hollow_palm_technique - /// - KeystoneHollowPalmTechnique = 11566, - - /// - /// keystone_disciple_of_kitava - /// - KeystoneDiscipleOfKitava = 11567, - - /// - /// keystone_natures_presence - /// - KeystoneNaturesPresence = 11568, - - /// - /// keystone_secrets_of_suffering - /// - KeystoneSecretsOfSuffering = 11569, - - /// - /// has_mastered_the_hollow_palm - /// - HasMasteredTheHollowPalm = 11570, - - /// - /// wearing_gloves - /// - WearingGloves = 11571, - - /// - /// is_wielding_two_weapon_types - /// - IsWieldingTwoWeaponTypes = 11572, - - /// - /// main_hand_attack_damage_+%_while_wielding_two_weapon_types - /// - MainHandAttackDamagePctWhileWieldingTwoWeaponTypes = 11573, - - /// - /// off_hand_attack_speed_+%_while_wielding_two_weapon_types - /// - OffHandAttackSpeedPctWhileWieldingTwoWeaponTypes = 11574, - - /// - /// life_regeneration_per_minute_%_while_channelling - /// - LifeRegenerationPerMinutePctWhileChannelling = 11575, - - /// - /// damage_+%_while_channelling - /// - DamagePctWhileChannelling = 11576, - - /// - /// mana_cost_+%_for_channelling_skills - /// - ManaCostPctForChannellingSkills = 11577, - - /// - /// %_chance_to_gain_endurance_charge_each_second_while_channelling - /// - PctChanceToGainEnduranceChargeEachSecondWhileChannelling = 11578, - - /// - /// critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second - /// - CriticalStrikeMultiplierIfYouveBeenChannellingForAtLeast1Second = 11579, - - /// - /// critical_strike_chance_+%_while_channelling - /// - CriticalStrikeChancePctWhileChannelling = 11580, - - /// - /// chance_to_block_attacks_%_while_channelling - /// - ChanceToBlockAttacksPctWhileChannelling = 11581, - - /// - /// chance_to_block_spells_%_while_channelling - /// - ChanceToBlockSpellsPctWhileChannelling = 11582, - - /// - /// have_been_channelling_for_at_least_1_second - /// - HaveBeenChannellingForAtLeast1Second = 11583, - - /// - /// gain_arcane_surge_for_4_seconds_after_channelling_for_1_second - /// - GainArcaneSurgeFor4SecondsAfterChannellingFor1Second = 11584, - - /// - /// attack_and_cast_speed_+%_while_channelling - /// - AttackAndCastSpeedPctWhileChannelling = 11585, - - /// - /// immune_to_curses_while_channelling - /// - ImmuneToCursesWhileChannelling = 11586, - - /// - /// damage_+%_with_herald_skills - /// - DamagePctWithHeraldSkills = 11587, - - /// - /// area_of_effect_+%_with_herald_skills - /// - AreaOfEffectPctWithHeraldSkills = 11588, - - /// - /// damage_over_time_+%_with_herald_skills - /// - DamageOverTimePctWithHeraldSkills = 11589, - - /// - /// critical_strike_multiplier_+_with_herald_skills - /// - CriticalStrikeMultiplierWithHeraldSkills = 11590, - - /// - /// additional_critical_strike_chance_permyriad_with_herald_skills - /// - AdditionalCriticalStrikeChancePermyriadWithHeraldSkills = 11591, - - /// - /// gain_arcane_surge_when_trap_triggered_by_an_enemy - /// - GainArcaneSurgeWhenTrapTriggeredByAnEnemy = 11592, - - /// - /// gain_arcane_surge_when_mine_detonated_targeting_an_enemy - /// - GainArcaneSurgeWhenMineDetonatedTargetingAnEnemy = 11593, - - /// - /// virtual_immune_to_curses - /// - VirtualImmuneToCurses = 11594, - - /// - /// hinder_aura_behaviour_variation - /// - HinderAuraBehaviourVariation = 11595, - - /// - /// enemies_you_curse_have_15%_hinder - /// - EnemiesYouCurseHave15PctHinder = 11596, - - /// - /// enemies_you_curse_are_intimidated - /// - EnemiesYouCurseAreIntimidated = 11597, - - /// - /// enemies_you_curse_are_unnerved - /// - EnemiesYouCurseAreUnnerved = 11598, - - /// - /// local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius - /// - LocalUniqueJewelLifeRecoveryRatePctPer10StrAllocatedInRadius = 11599, - - /// - /// local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius - /// - LocalUniqueJewelLifeRecoveryRatePctPer10StrUnallocatedInRadius = 11600, - - /// - /// local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius - /// - LocalUniqueJewelMovementSpeedPctPer10DexUnallocatedInRadius = 11601, - - /// - /// local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius - /// - LocalUniqueJewelAccuracyRatingPer10DexUnallocatedInRadius = 11602, - - /// - /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius - /// - LocalUniqueJewelManaRecoveryRatePctPer10IntAllocatedInRadius = 11603, - - /// - /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius - /// - LocalUniqueJewelManaRecoveryRatePctPer10IntUnallocatedInRadius = 11604, - - /// - /// local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius - /// - LocalUniqueJewelDotMultiplierPer10IntUnallocatedInRadius = 11605, - - /// - /// projectile_damage_+%_per_remaining_chain - /// - ProjectileDamagePctPerRemainingChain = 11606, - - /// - /// map_endgame_fog_depth - /// - MapEndgameFogDepth = 11607, - - /// - /// beam_bomb_action_speed_+%_final - /// - BeamBombActionSpeedPctFinal = 11608, - - /// - /// taunt_on_projectile_hit_chance_% - /// - TauntOnProjectileHitChancePct = 11609, - - /// - /// spells_chance_to_knockback_on_hit_% - /// - SpellsChanceToKnockbackOnHitPct = 11610, - - /// - /// spells_chance_to_poison_on_hit_% - /// - SpellsChanceToPoisonOnHitPct = 11611, - - /// - /// gain_x_rage_on_hit_with_axes_swords_1s_cooldown - /// - GainXRageOnHitWithAxesSwords1SCooldown = 11612, - - /// - /// chance_to_gain_unholy_might_on_crit_for_4_seconds_% - /// - ChanceToGainUnholyMightOnCritFor4SecondsPct = 11613, - - /// - /// gain_arcane_surge_on_hit_vs_unique_enemy_%_chance - /// - GainArcaneSurgeOnHitVsUniqueEnemyPctChance = 11614, - - /// - /// chance_to_intimidate_nearby_enemies_on_melee_kill_% - /// - ChanceToIntimidateNearbyEnemiesOnMeleeKillPct = 11615, - - /// - /// enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance - /// - EnemiesExplodeOnDeathByWandHitFor25PctLifeAsChaosDamagePctChance = 11616, - - /// - /// virtual_total_main_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% - /// - VirtualTotalMainHandChanceToExplodeEnemyOnKillByWandHitPct = 11617, - - /// - /// virtual_total_off_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% - /// - VirtualTotalOffHandChanceToExplodeEnemyOnKillByWandHitPct = 11618, - - /// - /// totem_chaos_resistance_% - /// - TotemChaosResistancePct = 11619, - - /// - /// cannot_be_afflicted - /// - CannotBeAfflicted = 11620, - - /// - /// cannot_have_affliction_mods - /// - CannotHaveAfflictionMods = 11621, - - /// - /// trap_or_mine_damage_+% - /// - TrapOrMineDamagePct = 11622, - - /// - /// you_and_nearby_allies_critical_strike_chance_+% - /// - YouAndNearbyAlliesCriticalStrikeChancePct = 11623, - - /// - /// you_and_nearby_allies_critical_strike_multiplier_+ - /// - YouAndNearbyAlliesCriticalStrikeMultiplier = 11624, - - /// - /// mana_regeneration_rate_+%_if_enemy_shocked_recently - /// - ManaRegenerationRatePctIfEnemyShockedRecently = 11625, - - /// - /// mana_regeneration_rate_+%_if_enemy_frozen_recently - /// - ManaRegenerationRatePctIfEnemyFrozenRecently = 11626, - - /// - /// local_display_nearby_enemies_have_fire_exposure - /// - LocalDisplayNearbyEnemiesHaveFireExposure = 11627, - - /// - /// local_display_nearby_enemies_are_chilled - /// - LocalDisplayNearbyEnemiesAreChilled = 11628, - - /// - /// projectiles_bounce_randomly_on_collision_x_times - /// - ProjectilesBounceRandomlyOnCollisionXTimes = 11629, - - /// - /// projectiles_bounce_randomly_terrain_only - /// - ProjectilesBounceRandomlyTerrainOnly = 11630, - - /// - /// projectiles_bounce_max_travel_distance_per_bounce - /// - ProjectilesBounceMaxTravelDistancePerBounce = 11631, - - /// - /// projectiles_bounce_max_travel_distance_all_bounces - /// - ProjectilesBounceMaxTravelDistanceAllBounces = 11632, - - /// - /// conditonal_move_if_enemy_beyond_%_of_maximum_action_distance - /// - ConditonalMoveIfEnemyBeyondPctOfMaximumActionDistance = 11633, - - /// - /// can_only_have_one_permanent_aura - /// - CanOnlyHaveOnePermanentAura = 11634, - - /// - /// minion_minimum_power_charges - /// - MinionMinimumPowerCharges = 11635, - - /// - /// map_vaal_vessel_drop_x_single_implicit_corrupted_uniques - /// - MapVaalVesselDropXSingleImplicitCorruptedUniques = 11636, - - /// - /// you_and_nearby_party_members_gain_x_rage_when_you_warcry - /// - YouAndNearbyPartyMembersGainXRageWhenYouWarcry = 11637, - - /// - /// projectile_speed_is_divided_by_%_of_scale - /// - ProjectileSpeedIsDividedByPctOfScale = 11638, - - /// - /// explosive_arrow_stack_limit - /// - ExplosiveArrowStackLimit = 11639, - - /// - /// local_affliction_notable_skeletal_atrophy - /// - LocalAfflictionNotableSkeletalAtrophy = 11640, - - /// - /// drop_affliction_splinters_chance_per_cent_mille - /// - DropAfflictionSplintersChancePerCentMille = 11641, - - /// - /// map_endgame_affliction_reward_1 - /// - MapEndgameAfflictionReward1 = 11642, - - /// - /// map_endgame_affliction_reward_2 - /// - MapEndgameAfflictionReward2 = 11643, - - /// - /// map_endgame_affliction_reward_3 - /// - MapEndgameAfflictionReward3 = 11644, - - /// - /// map_endgame_affliction_reward_4 - /// - MapEndgameAfflictionReward4 = 11645, - - /// - /// map_endgame_affliction_reward_5 - /// - MapEndgameAfflictionReward5 = 11646, - - /// - /// mana_reservation_+%_with_curse_skills - /// - ManaReservationPctWithCurseSkills = 11647, - - /// - /// critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently - /// - CriticalStrikeMultiplierIfCritWithAHeraldSkillRecently = 11648, - - /// - /// have_crit_with_a_herald_skill_recently - /// - HaveCritWithAHeraldSkillRecently = 11649, - - /// - /// track_have_crit_with_a_herald_skill_recently - /// - TrackHaveCritWithAHeraldSkillRecently = 11650, - - /// - /// attack_and_cast_speed_+%_with_fire_skills - /// - AttackAndCastSpeedPctWithFireSkills = 11651, - - /// - /// attack_and_cast_speed_+%_with_cold_skills - /// - AttackAndCastSpeedPctWithColdSkills = 11652, - - /// - /// attack_and_cast_speed_+%_with_lightning_skills - /// - AttackAndCastSpeedPctWithLightningSkills = 11653, - - /// - /// attack_and_cast_speed_+%_with_chaos_skills - /// - AttackAndCastSpeedPctWithChaosSkills = 11654, - - /// - /// attack_and_cast_speed_+%_with_physical_skills - /// - AttackAndCastSpeedPctWithPhysicalSkills = 11655, - - /// - /// attack_and_cast_speed_+%_with_elemental_skills - /// - AttackAndCastSpeedPctWithElementalSkills = 11656, - - /// - /// additional_physical_damage_reduction_%_while_frozen - /// - AdditionalPhysicalDamageReductionPctWhileFrozen = 11657, - - /// - /// multi_trap_and_mine_support_flags - /// - MultiTrapAndMineSupportFlags = 11658, - - /// - /// combined_ailment_all_damage_over_time_+% - /// - CombinedAilmentAllDamageOverTimePct = 11659, - - /// - /// combined_main_hand_ailment_all_damage_over_time_+% - /// - CombinedMainHandAilmentAllDamageOverTimePct = 11660, - - /// - /// combined_off_hand_ailment_all_damage_over_time_+% - /// - CombinedOffHandAilmentAllDamageOverTimePct = 11661, - - /// - /// dagger_ailment_damage_+% - /// - DaggerAilmentDamagePct = 11662, - - /// - /// claw_ailment_damage_+% - /// - ClawAilmentDamagePct = 11663, - - /// - /// sword_ailment_damage_+% - /// - SwordAilmentDamagePct = 11664, - - /// - /// bow_ailment_damage_+% - /// - BowAilmentDamagePct = 11665, - - /// - /// axe_ailment_damage_+% - /// - AxeAilmentDamagePct = 11666, - - /// - /// staff_ailment_damage_+% - /// - StaffAilmentDamagePct = 11667, - - /// - /// mace_ailment_damage_+% - /// - MaceAilmentDamagePct = 11668, - - /// - /// wand_ailment_damage_+% - /// - WandAilmentDamagePct = 11669, - - /// - /// one_handed_weapon_ailment_damage_+% - /// - OneHandedWeaponAilmentDamagePct = 11670, - - /// - /// two_handed_weapon_ailment_damage_+% - /// - TwoHandedWeaponAilmentDamagePct = 11671, - - /// - /// one_handed_melee_weapon_ailment_damage_+% - /// - OneHandedMeleeWeaponAilmentDamagePct = 11672, - - /// - /// two_handed_melee_weapon_ailment_damage_+% - /// - TwoHandedMeleeWeaponAilmentDamagePct = 11673, - - /// - /// melee_weapon_ailment_damage_+% - /// - MeleeWeaponAilmentDamagePct = 11674, - - /// - /// axe_or_sword_ailment_damage_+% - /// - AxeOrSwordAilmentDamagePct = 11675, - - /// - /// claw_or_dagger_ailment_damage_+% - /// - ClawOrDaggerAilmentDamagePct = 11676, - - /// - /// mace_or_staff_ailment_damage_+% - /// - MaceOrStaffAilmentDamagePct = 11677, - - /// - /// dagger_hit_and_ailment_damage_+% - /// - DaggerHitAndAilmentDamagePct = 11678, - - /// - /// claw_hit_and_ailment_damage_+% - /// - ClawHitAndAilmentDamagePct = 11679, - - /// - /// sword_hit_and_ailment_damage_+% - /// - SwordHitAndAilmentDamagePct = 11680, - - /// - /// bow_hit_and_ailment_damage_+% - /// - BowHitAndAilmentDamagePct = 11681, - - /// - /// axe_hit_and_ailment_damage_+% - /// - AxeHitAndAilmentDamagePct = 11682, - - /// - /// staff_hit_and_ailment_damage_+% - /// - StaffHitAndAilmentDamagePct = 11683, - - /// - /// mace_hit_and_ailment_damage_+% - /// - MaceHitAndAilmentDamagePct = 11684, - - /// - /// wand_hit_and_ailment_damage_+% - /// - WandHitAndAilmentDamagePct = 11685, - - /// - /// one_handed_weapon_hit_and_ailment_damage_+% - /// - OneHandedWeaponHitAndAilmentDamagePct = 11686, - - /// - /// two_handed_weapon_hit_and_ailment_damage_+% - /// - TwoHandedWeaponHitAndAilmentDamagePct = 11687, - - /// - /// one_handed_melee_weapon_hit_and_ailment_damage_+% - /// - OneHandedMeleeWeaponHitAndAilmentDamagePct = 11688, - - /// - /// two_handed_melee_weapon_hit_and_ailment_damage_+% - /// - TwoHandedMeleeWeaponHitAndAilmentDamagePct = 11689, - - /// - /// melee_weapon_hit_and_ailment_damage_+% - /// - MeleeWeaponHitAndAilmentDamagePct = 11690, - - /// - /// axe_or_sword_hit_and_ailment_damage_+% - /// - AxeOrSwordHitAndAilmentDamagePct = 11691, - - /// - /// claw_or_dagger_hit_and_ailment_damage_+% - /// - ClawOrDaggerHitAndAilmentDamagePct = 11692, - - /// - /// mace_or_staff_hit_and_ailment_damage_+% - /// - MaceOrStaffHitAndAilmentDamagePct = 11693, - - /// - /// virtual_main_hand_hit_and_ailment_damage_+%_from_weapon_type - /// - VirtualMainHandHitAndAilmentDamagePctFromWeaponType = 11694, - - /// - /// virtual_off_hand_hit_and_ailment_damage_+%_from_weapon_type - /// - VirtualOffHandHitAndAilmentDamagePctFromWeaponType = 11695, - - /// - /// attack_skills_damage_+%_while_dual_wielding - /// - AttackSkillsDamagePctWhileDualWielding = 11696, - - /// - /// attack_skills_damage_+%_while_holding_shield - /// - AttackSkillsDamagePctWhileHoldingShield = 11697, - - /// - /// damage_+%_while_wielding_wand - /// - DamagePctWhileWieldingWand = 11698, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantAttackSpeedPct = 11699, - - /// - /// local_affliction_jewel_small_nodes_grant_base_cast_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantBaseCastSpeedPct = 11700, - - /// - /// local_affliction_jewel_small_nodes_grant_damage_over_time_+% - /// - LocalAfflictionJewelSmallNodesGrantDamageOverTimePct = 11701, - - /// - /// local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+% - /// - LocalAfflictionJewelSmallNodesGrantBaseElementalStatusAilmentDurationPct = 11702, - - /// - /// local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+% - /// - LocalAfflictionJewelSmallNodesGrantBaseAuraAreaOfEffectPct = 11703, - - /// - /// local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+% - /// - LocalAfflictionJewelSmallNodesGrantCurseAreaOfEffectPct = 11704, - - /// - /// local_affliction_jewel_small_nodes_grant_warcry_duration_+% - /// - LocalAfflictionJewelSmallNodesGrantWarcryDurationPct = 11705, - - /// - /// local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+ - /// - LocalAfflictionJewelSmallNodesGrantBaseCriticalStrikeMultiplier = 11706, - - /// - /// local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_% - /// - LocalAfflictionJewelSmallNodesGrantMinionLifeRegenerationRatePerMinutePct = 11707, - - /// - /// local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+% - /// - LocalAfflictionJewelSmallNodesGrantBaseSkillAreaOfEffectPct = 11708, - - /// - /// local_affliction_jewel_small_nodes_grant_base_projectile_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantBaseProjectileSpeedPct = 11709, - - /// - /// local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantTrapAndMineThrowingSpeedPct = 11710, - - /// - /// local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantSummonTotemCastSpeedPct = 11711, - - /// - /// local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+% - /// - LocalAfflictionJewelSmallNodesGrantSigilTargetSearchRangePct = 11712, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChannellingSkills = 11713, - - /// - /// local_affliction_jewel_small_nodes_grant_charges_gained_+% - /// - LocalAfflictionJewelSmallNodesGrantChargesGainedPct = 11714, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithFireSkills = 11715, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithColdSkills = 11716, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithLightningSkills = 11717, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChaosSkills = 11718, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithPhysicalSkills = 11719, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithElementalSkills = 11720, - - /// - /// local_display_nearby_enemy_elemental_damage_taken_+% - /// - LocalDisplayNearbyEnemyElementalDamageTakenPct = 11721, - - /// - /// active_skill_minion_attack_speed_+%_final - /// - ActiveSkillMinionAttackSpeedPctFinal = 11722, - - /// - /// attack_speed_+%_final_for_minions - /// - AttackSpeedPctFinalForMinions = 11723, - - /// - /// curse_effect_+%_final_vs_players - /// - CurseEffectPctFinalVsPlayers = 11724, - - /// - /// blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated - /// - BladeBurstAreaOfEffectPctFinalPerBladeVortexBladeDetonated = 11725, - - /// - /// map_monsters_all_damage_can_shock - /// - MapMonstersAllDamageCanShock = 11726, - - /// - /// map_monsters_all_damage_can_chill - /// - MapMonstersAllDamageCanChill = 11727, - - /// - /// map_monsters_chance_to_inflict_brittle_% - /// - MapMonstersChanceToInflictBrittlePct = 11728, - - /// - /// map_monsters_chance_to_inflict_sapped_% - /// - MapMonstersChanceToInflictSappedPct = 11729, - - /// - /// map_monsters_chance_to_scorch_% - /// - MapMonstersChanceToScorchPct = 11730, - - /// - /// map_monsters_chance_to_impale_% - /// - MapMonstersChanceToImpalePct = 11731, - - /// - /// map_monsters_remove_%_of_mana_on_hit - /// - MapMonstersRemovePctOfManaOnHit = 11732, - - /// - /// remove_%_of_mana_on_hit - /// - RemovePctOfManaOnHit = 11733, - - /// - /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value - /// - AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11734, - - /// - /// additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value - /// - AdditiveSpellDamageModifiersApplyToAttackDamageAt150PctValue = 11735, - - /// - /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand - /// - AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValueWhileWieldingWand = 11736, - - /// - /// active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value - /// - ActiveSkillAdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11737, - - /// - /// skill_effect_duration_+%_with_non_curse_aura_skills - /// - SkillEffectDurationPctWithNonCurseAuraSkills = 11738, - - /// - /// projectile_attack_damage_+%_with_claw_or_dagger - /// - ProjectileAttackDamagePctWithClawOrDagger = 11739, - - /// - /// damage_taken_+%_final_from_affliction_depth - /// - DamageTakenPctFinalFromAfflictionDepth = 11740, - - /// - /// damage_taken_+%_final_from_affliction_split - /// - DamageTakenPctFinalFromAfflictionSplit = 11741, - - /// - /// leap_slam_minimum_distance - /// - LeapSlamMinimumDistance = 11742, - - /// - /// virtual_support_anticipation_charge_gain_interval_ms - /// - VirtualSupportAnticipationChargeGainIntervalMs = 11743, - - /// - /// support_anticipation_charge_gain_frequency_+% - /// - SupportAnticipationChargeGainFrequencyPct = 11744, - - /// - /// support_added_cooldown_count_if_not_instant - /// - SupportAddedCooldownCountIfNotInstant = 11745, - - /// - /// manaweave_cost_equals_%_unreserved_mana - /// - ManaweaveCostEqualsPctUnreservedMana = 11746, - - /// - /// manaweave_added_lightning_damage_%_cost_if_payable - /// - ManaweaveAddedLightningDamagePctCostIfPayable = 11747, - - /// - /// minion_attack_and_cast_speed_+% - /// - MinionAttackAndCastSpeedPct = 11748, - - /// - /// minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald - /// - MinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11749, - - /// - /// attack_and_cast_speed_+%_while_affected_by_a_herald - /// - AttackAndCastSpeedPctWhileAffectedByAHerald = 11750, - - /// - /// local_display_socketed_gems_supported_by_level_x_second_wind - /// - LocalDisplaySocketedGemsSupportedByLevelXSecondWind = 11751, - - /// - /// local_display_socketed_gems_supported_by_level_x_archmage - /// - LocalDisplaySocketedGemsSupportedByLevelXArchmage = 11752, - - /// - /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+% - /// - LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPct = 11753, - - /// - /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald - /// - LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWhileAffectedByAHerald = 11754, - - /// - /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald - /// - LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11755, - - /// - /// minion_aggro_radius_+% - /// - MinionAggroRadiusPct = 11756, - - /// - /// map_monsters_maim_on_hit_%_chance - /// - MapMonstersMaimOnHitPctChance = 11757, - - /// - /// map_monsters_spells_chance_to_hinder_on_hit_%_chance - /// - MapMonstersSpellsChanceToHinderOnHitPctChance = 11758, - - /// - /// map_monsters_remove_enemy_flask_charge_on_hit_%_chance - /// - MapMonstersRemoveEnemyFlaskChargeOnHitPctChance = 11759, - - /// - /// remove_enemy_flask_charge_on_hit_%_chance - /// - RemoveEnemyFlaskChargeOnHitPctChance = 11760, - - /// - /// map_player_non_damaging_ailment_effect_+% - /// - MapPlayerNonDamagingAilmentEffectPct = 11761, - - /// - /// map_monsters_reduce_enemy_lightning_resistance_% - /// - MapMonstersReduceEnemyLightningResistancePct = 11762, - - /// - /// map_monsters_reduce_enemy_cold_resistance_% - /// - MapMonstersReduceEnemyColdResistancePct = 11763, - - /// - /// map_monsters_reduce_enemy_fire_resistance_% - /// - MapMonstersReduceEnemyFireResistancePct = 11764, - - /// - /// map_monsters_reduce_enemy_chaos_resistance_% - /// - MapMonstersReduceEnemyChaosResistancePct = 11765, - - /// - /// map_monsters_enemy_phys_reduction_%_penalty_vs_hit - /// - MapMonstersEnemyPhysReductionPctPenaltyVsHit = 11766, - - /// - /// minimum_movement_velocity_+%_excluding_stance - /// - MinimumMovementVelocityPctExcludingStance = 11767, - - /// - /// is_snipe_default_projectile - /// - IsSnipeDefaultProjectile = 11768, - - /// - /// assailum_socketed_gems_damage_+%_final - /// - AssailumSocketedGemsDamagePctFinal = 11769, - - /// - /// local_display_assailum_socketed_gems_damage_+%_final - /// - LocalDisplayAssailumSocketedGemsDamagePctFinal = 11770, - - /// - /// cannot_drop_splinters - /// - CannotDropSplinters = 11771, - - /// - /// is_warband_monster - /// - IsWarbandMonster = 11772, - - /// - /// is_elder_portal_monster - /// - IsElderPortalMonster = 11773, - - /// - /// is_map_boss_underling_monster - /// - IsMapBossUnderlingMonster = 11774, - - /// - /// is_affliction_wild_boss - /// - IsAfflictionWildBoss = 11775, - - /// - /// all_and_max_elemental_resist_+_while_affected_by_non_vaal_guard_skill - /// - AllAndMaxElementalResistWhileAffectedByNonVaalGuardSkill = 11776, - - /// - /// keystone_reactionary_damage_taken_+%_final_if_guard_buff_lost_recently - /// - KeystoneReactionaryDamageTakenPctFinalIfGuardBuffLostRecently = 11777, - - /// - /// summoned_monsters_no_drops_or_experience_if_parent_no_drops_or_experience - /// - SummonedMonstersNoDropsOrExperienceIfParentNoDropsOrExperience = 11778, - - /// - /// skill_travel_distance_+% - /// - SkillTravelDistancePct = 11779, - - /// - /// skill_maximum_travel_distance_+% - /// - SkillMaximumTravelDistancePct = 11780, - - /// - /// map_monster_non_damaging_ailment_effect_+%_on_self - /// - MapMonsterNonDamagingAilmentEffectPctOnSelf = 11781, - - /// - /// map_hidden_pack_size_+% - /// - MapHiddenPackSizePct = 11782, - - /// - /// non_damaging_ailment_effect_+%_on_self - /// - NonDamagingAilmentEffectPctOnSelf = 11783, - - /// - /// affected_by_glorious_madness - /// - AffectedByGloriousMadness = 11784, - - /// - /// embrace_madness_reactivation_cooldown - /// - EmbraceMadnessReactivationCooldown = 11785, - - /// - /// local_display_grants_skill_embrace_madness_level - /// - LocalDisplayGrantsSkillEmbraceMadnessLevel = 11786, - - /// - /// explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_% - /// - ExplodeEnemiesFor25PctLifeAsChaosOnKillWhileAffectedByGloriousMadnessChancePct = 11787, - - /// - /// all_damage_can_poison_while_affected_by_glorious_madness - /// - AllDamageCanPoisonWhileAffectedByGloriousMadness = 11788, - - /// - /// fortify_effect_on_self_while_affected_by_glorious_madness_+% - /// - FortifyEffectOnSelfWhileAffectedByGloriousMadnessPct = 11789, - - /// - /// chance_to_deal_double_damage_while_affected_by_glorious_madness_% - /// - ChanceToDealDoubleDamageWhileAffectedByGloriousMadnessPct = 11790, - - /// - /// gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness - /// - GainChillingShockingIgnitingConfluxWhileAffectedByGloriousMadness = 11791, - - /// - /// immune_to_elemental_status_ailments_while_affected_by_glorious_madness - /// - ImmuneToElementalStatusAilmentsWhileAffectedByGloriousMadness = 11792, - - /// - /// virtual_has_chilling_conflux - /// - VirtualHasChillingConflux = 11793, - - /// - /// virtual_has_shocking_conflux - /// - VirtualHasShockingConflux = 11794, - - /// - /// virtual_has_igniting_conflux - /// - VirtualHasIgnitingConflux = 11795, - - /// - /// keystone_reactionary_damage_taken_+%_final - /// - KeystoneReactionaryDamageTakenPctFinal = 11796, - - /// - /// main_hand_maim_on_hit_% - /// - MainHandMaimOnHitPct = 11797, - - /// - /// off_hand_maim_on_hit_% - /// - OffHandMaimOnHitPct = 11798, - - /// - /// virtual_maim_on_hit_% - /// - VirtualMaimOnHitPct = 11799, - - /// - /// main_hand_maim_on_crit_% - /// - MainHandMaimOnCritPct = 11800, - - /// - /// off_hand_maim_on_crit_% - /// - OffHandMaimOnCritPct = 11801, - - /// - /// virtual_maim_on_crit_% - /// - VirtualMaimOnCritPct = 11802, - - /// - /// cast_speed_for_brand_skills_+% - /// - CastSpeedForBrandSkillsPct = 11803, - - /// - /// blades_left_in_ground_+%_final_if_not_hand_cast - /// - BladesLeftInGroundPctFinalIfNotHandCast = 11804, - - /// - /// keystone_herald_of_doom - /// - KeystoneHeraldOfDoom = 11805, - - /// - /// attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana - /// - AttackSkillsHaveAddedLightningDamageEqualToPctOfMaximumMana = 11806, - - /// - /// lose_%_of_mana_when_you_use_an_attack_skill - /// - LosePctOfManaWhenYouUseAnAttackSkill = 11807, - - /// - /// is_incursion_temple_architect - /// - IsIncursionTempleArchitect = 11808, - - /// - /// is_incursion_temple_boss - /// - IsIncursionTempleBoss = 11809, - - /// - /// map_architects_drops_additional_map_currency - /// - MapArchitectsDropsAdditionalMapCurrency = 11810, - - /// - /// map_incursion_spawn_large_caustic_plants - /// - MapIncursionSpawnLargeCausticPlants = 11811, - - /// - /// map_incursion_spawn_parasitic_caustic_plants - /// - MapIncursionSpawnParasiticCausticPlants = 11812, - - /// - /// local_display_socketed_gems_supported_by_level_x_snipe - /// - LocalDisplaySocketedGemsSupportedByLevelXSnipe = 11813, - - /// - /// mana_cost - /// - ManaCost = 11814, - - /// - /// use_mana_cost_from_stat - /// - UseManaCostFromStat = 11815, - - /// - /// base_mana_cost - /// - BaseManaCost = 11816, - - /// - /// base_mana_cost_override - /// - BaseManaCostOverride = 11817, - - /// - /// combined_mana_multiplier_permyriad - /// - CombinedManaMultiplierPermyriad = 11818, - - /// - /// manaweave_added_lightning_damage_%_cost - /// - ManaweaveAddedLightningDamagePctCost = 11819, - - /// - /// map_incursion_tormented_spirit_random_possess - /// - MapIncursionTormentedSpiritRandomPossess = 11820, - - /// - /// local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect - /// - LocalUniqueFlaskVaalSkillCriticalStrikeChancePctDuringFlaskEffect = 11821, - - /// - /// local_flask_consumes_max_charges_on_use - /// - LocalFlaskConsumesMaxChargesOnUse = 11822, - - /// - /// local_flask_gain_charges_consumed_as_vaal_souls_on_use - /// - LocalFlaskGainChargesConsumedAsVaalSoulsOnUse = 11823, - - /// - /// arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second - /// - ArcaneCloakGainPctOfConsumedManaAsLifeRegeneratedPerSecond = 11824, - - /// - /// snipe_triggered_skill_ailment_damage_+%_final_per_stage_conditional - /// - SnipeTriggeredSkillAilmentDamagePctFinalPerStageConditional = 11825, - - /// - /// snipe_triggered_skill_ailment_damage_+%_final_per_stage - /// - SnipeTriggeredSkillAilmentDamagePctFinalPerStage = 11826, - - /// - /// is_snipe_default_projectile_2 - /// - IsSnipeDefaultProjectile2 = 11827, - - /// - /// keystone_herald_damage_over_time_+%_final - /// - KeystoneHeraldDamageOverTimePctFinal = 11828, - - /// - /// keystone_herald_minion_damage_+%_final - /// - KeystoneHeraldMinionDamagePctFinal = 11829, - - /// - /// map_incursion_boss_possessed_by_tormented_experimenter - /// - MapIncursionBossPossessedByTormentedExperimenter = 11830, - - /// - /// map_incursion_boss_possessed_by_tormented_blasphemer - /// - MapIncursionBossPossessedByTormentedBlasphemer = 11831, - - /// - /// map_incursion_boss_possessed_by_tormented_necromancer - /// - MapIncursionBossPossessedByTormentedNecromancer = 11832, - - /// - /// map_incursion_boss_possessed_by_tormented_arsonist - /// - MapIncursionBossPossessedByTormentedArsonist = 11833, - - /// - /// map_incursion_boss_possessed_by_tormented_thief - /// - MapIncursionBossPossessedByTormentedThief = 11834, - - /// - /// map_incursion_boss_possessed_by_tormented_mutilator - /// - MapIncursionBossPossessedByTormentedMutilator = 11835, - - /// - /// map_incursion_boss_possessed_by_tormented_charlatan - /// - MapIncursionBossPossessedByTormentedCharlatan = 11836, - - /// - /// map_incursion_boss_possessed_by_tormented_cannibal - /// - MapIncursionBossPossessedByTormentedCannibal = 11837, - - /// - /// map_incursion_boss_possessed_by_tormented_poisoner - /// - MapIncursionBossPossessedByTormentedPoisoner = 11838, - - /// - /// map_incursion_boss_possessed_by_tormented_corrupter - /// - MapIncursionBossPossessedByTormentedCorrupter = 11839, - - /// - /// map_incursion_boss_possessed_by_tormented_thug - /// - MapIncursionBossPossessedByTormentedThug = 11840, - - /// - /// map_incursion_boss_possessed_by_tormented_rogue - /// - MapIncursionBossPossessedByTormentedRogue = 11841, - - /// - /// map_incursion_boss_possessed_by_tormented_fisherman - /// - MapIncursionBossPossessedByTormentedFisherman = 11842, - - /// - /// map_incursion_boss_possessed_by_tormented_librarian - /// - MapIncursionBossPossessedByTormentedLibrarian = 11843, - - /// - /// map_incursion_boss_possessed_by_tormented_cutthroat - /// - MapIncursionBossPossessedByTormentedCutthroat = 11844, - - /// - /// map_incursion_boss_possessed_by_tormented_spy - /// - MapIncursionBossPossessedByTormentedSpy = 11845, - - /// - /// map_incursion_boss_possessed_by_tormented_martyr - /// - MapIncursionBossPossessedByTormentedMartyr = 11846, - - /// - /// map_incursion_boss_possessed_by_tormented_embezzler - /// - MapIncursionBossPossessedByTormentedEmbezzler = 11847, - - /// - /// map_incursion_boss_possessed_by_tormented_counterfeiter - /// - MapIncursionBossPossessedByTormentedCounterfeiter = 11848, - - /// - /// map_incursion_boss_possessed_by_tormented_warlord - /// - MapIncursionBossPossessedByTormentedWarlord = 11849, - - /// - /// map_incursion_boss_possessed_by_tormented_freezer - /// - MapIncursionBossPossessedByTormentedFreezer = 11850, - - /// - /// map_incursion_boss_possessed_by_tormented_smuggler - /// - MapIncursionBossPossessedByTormentedSmuggler = 11851, - - /// - /// minion_critical_strike_chance_+% - /// - MinionCriticalStrikeChancePct = 11852, - - /// - /// theoretical_number_of_forks - /// - TheoreticalNumberOfForks = 11853, - - /// - /// kinetic_bolt_number_of_zig_zags - /// - KineticBoltNumberOfZigZags = 11854, - - /// - /// kinetic_bolt_forks_apply_to_zig_zags - /// - KineticBoltForksApplyToZigZags = 11855, - - /// - /// map_simulacrum_reward_level_+ - /// - MapSimulacrumRewardLevel = 11856, - - /// - /// map_monsters_accuracy_rating_+%_hidden - /// - MapMonstersAccuracyRatingPctHidden = 11857, - - /// - /// projectile_spiral_end_on_death - /// - ProjectileSpiralEndOnDeath = 11858, - - /// - /// is_warband_leader - /// - IsWarbandLeader = 11859, - - /// - /// bladefall_volleys_needed_per_vestige_blade - /// - BladefallVolleysNeededPerVestigeBlade = 11860, - - /// - /// ethereal_knives_projectiles_needed_per_vestige_blade - /// - EtherealKnivesProjectilesNeededPerVestigeBlade = 11861, - - /// - /// kinetic_bolt_projectile_speed_+% - /// - KineticBoltProjectileSpeedPct = 11862, - - /// - /// kinetic_bolt_attack_speed_+% - /// - KineticBoltAttackSpeedPct = 11863, - - /// - /// blade_blast_skill_area_of_effect_+% - /// - BladeBlastSkillAreaOfEffectPct = 11864, - - /// - /// blade_blast_trigger_detonation_area_of_effect_+% - /// - BladeBlastTriggerDetonationAreaOfEffectPct = 11865, - - /// - /// blade_blase_damage_+% - /// - BladeBlaseDamagePct = 11866, - - /// - /// stormbind_skill_area_of_effect_+% - /// - StormbindSkillAreaOfEffectPct = 11867, - - /// - /// stormbind_skill_damage_+% - /// - StormbindSkillDamagePct = 11868, - - /// - /// rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown - /// - RuneBlastTeleportsToDetonatedRuneWith150MsCooldown = 11869, - - /// - /// rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown - /// - RuneBlastTeleportsToDetonatedRuneWith100MsCooldown = 11870, - - /// - /// spellslinger_mana_reservation_+% - /// - SpellslingerManaReservationPct = 11871, - - /// - /// spellslinger_cooldown_duration_+% - /// - SpellslingerCooldownDurationPct = 11872, - - /// - /// display_additional_projectile_per_4_mines_in_detonation_sequence - /// - DisplayAdditionalProjectilePer4MinesInDetonationSequence = 11873, - - /// - /// life_regeneration_rate_per_minute_%_while_stationary - /// - LifeRegenerationRatePerMinutePctWhileStationary = 11874, - - /// - /// spellslinger_mana_reservation - /// - SpellslingerManaReservation = 11875, - - /// - /// additional_insanity_effects_while_delirious - /// - AdditionalInsanityEffectsWhileDelirious = 11876, - - /// - /// local_affliction_jewel_display_small_nodes_grant_nothing - /// - LocalAfflictionJewelDisplaySmallNodesGrantNothing = 11877, - - /// - /// map_incursion_tormented_spirit_random_possess_2 - /// - MapIncursionTormentedSpiritRandomPossess2 = 11878, - - /// - /// is_betrayal_target - /// - IsBetrayalTarget = 11879, - - /// - /// is_incursion_architect - /// - IsIncursionArchitect = 11880, - - /// - /// is_bestiary_red_beast - /// - IsBestiaryRedBeast = 11881, - - /// - /// glorious_madness_timer_ms - /// - GloriousMadnessTimerMs = 11882, - - /// - /// embrace_madness_amount_of_cooldown_to_gain_ms - /// - EmbraceMadnessAmountOfCooldownToGainMs = 11883, - - /// - /// map_death_and_taxes_boss_drops_additional_currency - /// - MapDeathAndTaxesBossDropsAdditionalCurrency = 11884, - - /// - /// meta_skill_mana_reservation_override_% - /// - MetaSkillManaReservationOverridePct = 11885, - - /// - /// mana_reservation - /// - ManaReservation = 11886, - - /// - /// use_mana_reservation_from_stat - /// - UseManaReservationFromStat = 11887, - - /// - /// keystone_veterans_awareness - /// - KeystoneVeteransAwareness = 11888, - - /// - /// monster_affliction_depth - /// - MonsterAfflictionDepth = 11889, - - /// - /// animate_weapon_art_variation - /// - AnimateWeaponArtVariation = 11890, - - } -} + /// + /// mana_cost_+%_when_on_low_life + /// + ManaCostPctWhenOnLowLife = 770, + + /// + /// elemental_resistance_%_when_on_low_life + /// + ElementalResistancePctWhenOnLowLife = 771, + + /// + /// local_has_no_sockets + /// + LocalHasNoSockets = 772, + + /// + /// local_all_sockets_linked + /// + LocalAllSocketsLinked = 773, + + /// + /// movement_velocity_+%_when_on_low_life + /// + MovementVelocityPctWhenOnLowLife = 774, + + /// + /// mana_cost_+% + /// + ManaCostPct = 775, + + /// + /// keystone_acrobatics + /// + KeystoneAcrobatics = 776, + + /// + /// keystone_pain_attunement + /// + KeystonePainAttunement = 777, + + /// + /// item_found_quantity_+%_when_on_low_life + /// + ItemFoundQuantityPctWhenOnLowLife = 778, + + /// + /// item_found_rarity_+%_when_on_low_life + /// + ItemFoundRarityPctWhenOnLowLife = 779, + + /// + /// item_found_quantity_+% + /// + ItemFoundQuantityPct = 780, + + /// + /// item_found_rarity_+% + /// + ItemFoundRarityPct = 781, + + /// + /// active_skill_projectile_damage_+%_final + /// + ActiveSkillProjectileDamagePctFinal = 782, + + /// + /// bonus_damage_+%_from_strength + /// + BonusDamagePctFromStrength = 783, + + /// + /// keystone_strong_bowman + /// + KeystoneStrongBowman = 784, + + /// + /// monster_projectile_variation + /// + MonsterProjectileVariation = 785, + + /// + /// keystone_point_blank + /// + KeystonePointBlank = 786, + + /// + /// damage_+%_final_from_distance + /// + DamagePctFinalFromDistance = 787, + + /// + /// keystone_conduit + /// + KeystoneConduit = 788, + + /// + /// movement_velocity_+%_when_on_full_life + /// + MovementVelocityPctWhenOnFullLife = 789, + + /// + /// show_number_of_projectiles + /// + ShowNumberOfProjectiles = 790, + + /// + /// lightning_arrow_maximum_number_of_extra_targets + /// + LightningArrowMaximumNumberOfExtraTargets = 791, + + /// + /// Physical Damage +% + /// + MainHandLocalPhysicalDamagePct = 792, + + /// + /// Additional Minimum Physical Damage + /// + MainHandLocalMinimumAddedPhysicalDamage = 793, + + /// + /// Additional Maximum Physical Damage + /// + MainHandLocalMaximumAddedPhysicalDamage = 794, + + /// + /// Additional Minimum Fire Damage + /// + MainHandLocalMinimumAddedFireDamage = 795, + + /// + /// Additional Maximum Fire Damage + /// + MainHandLocalMaximumAddedFireDamage = 796, + + /// + /// Additional Minimum Cold Damage + /// + MainHandLocalMinimumAddedColdDamage = 797, + + /// + /// Additional Maximum Cold Damage + /// + MainHandLocalMaximumAddedColdDamage = 798, + + /// + /// Additional Minimum Lightning Damage + /// + MainHandLocalMinimumAddedLightningDamage = 799, + + /// + /// Additional Maximum Lightning Damage + /// + MainHandLocalMaximumAddedLightningDamage = 800, + + /// + /// Additional Minimum Chaos Damage + /// + MainHandLocalMinimumAddedChaosDamage = 801, + + /// + /// Additional Maximum Chaos Damage + /// + MainHandLocalMaximumAddedChaosDamage = 802, + + /// + /// Main Hand Attack Speed +% + /// + MainHandLocalAttackSpeedPct = 803, + + /// + /// old_do_not_use_main_hand_local_life_leech_from_physical_damage_% + /// + OldDoNotUseMainHandLocalLifeLeechFromPhysicalDamagePct = 804, + + /// + /// old_do_not_use_main_hand_local_mana_leech_from_physical_damage_% + /// + OldDoNotUseMainHandLocalManaLeechFromPhysicalDamagePct = 805, + + /// + /// Knockback + /// + MainHandLocalKnockback = 806, + + /// + /// main_hand_local_critical_strike_multiplier_+ + /// + MainHandLocalCriticalStrikeMultiplier = 807, + + /// + /// main_hand_local_critical_strike_chance + /// + MainHandLocalCriticalStrikeChance = 808, + + /// + /// main_hand_local_critical_strike_chance_+% + /// + MainHandLocalCriticalStrikeChancePct = 809, + + /// + /// main_hand_local_accuracy_rating + /// + MainHandLocalAccuracyRating = 810, + + /// + /// main_hand_local_accuracy_rating_+% + /// + MainHandLocalAccuracyRatingPct = 811, + + /// + /// main_hand_local_hit_causes_monster_flee_% + /// + MainHandLocalHitCausesMonsterFleePct = 812, + + /// + /// main_hand_local_always_hit + /// + MainHandLocalAlwaysHit = 813, + + /// + /// Physical Damage +% + /// + OffHandLocalPhysicalDamagePct = 814, + + /// + /// Additional Minimum Physical Damage + /// + OffHandLocalMinimumAddedPhysicalDamage = 815, + + /// + /// Additional Maximum Physical Damage + /// + OffHandLocalMaximumAddedPhysicalDamage = 816, + + /// + /// Additional Minimum Fire Damage + /// + OffHandLocalMinimumAddedFireDamage = 817, + + /// + /// Additional Maximum Fire Damage + /// + OffHandLocalMaximumAddedFireDamage = 818, + + /// + /// Additional Minimum Cold Damage + /// + OffHandLocalMinimumAddedColdDamage = 819, + + /// + /// Additional Maximum Cold Damage + /// + OffHandLocalMaximumAddedColdDamage = 820, + + /// + /// Additional Minimum Lightning Damage + /// + OffHandLocalMinimumAddedLightningDamage = 821, + + /// + /// Additional Maximum Lightning Damage + /// + OffHandLocalMaximumAddedLightningDamage = 822, + + /// + /// Additional Minimum Chaos Damage + /// + OffHandLocalMinimumAddedChaosDamage = 823, + + /// + /// Additional Maximum Chaos Damage + /// + OffHandLocalMaximumAddedChaosDamage = 824, + + /// + /// Attack Speed + /// + OffHandLocalAttackSpeedPct = 825, + + /// + /// old_do_not_use_off_hand_local_life_leech_from_physical_damage_% + /// + OldDoNotUseOffHandLocalLifeLeechFromPhysicalDamagePct = 826, + + /// + /// old_do_not_use_off_hand_local_mana_leech_from_physical_damage_% + /// + OldDoNotUseOffHandLocalManaLeechFromPhysicalDamagePct = 827, + + /// + /// Knockback + /// + OffHandLocalKnockback = 828, + + /// + /// off_hand_local_critical_strike_multiplier_+ + /// + OffHandLocalCriticalStrikeMultiplier = 829, + + /// + /// off_hand_local_critical_strike_chance + /// + OffHandLocalCriticalStrikeChance = 830, + + /// + /// off_hand_local_critical_strike_chance_+% + /// + OffHandLocalCriticalStrikeChancePct = 831, + + /// + /// off_hand_local_accuracy_rating + /// + OffHandLocalAccuracyRating = 832, + + /// + /// off_hand_local_accuracy_rating_+% + /// + OffHandLocalAccuracyRatingPct = 833, + + /// + /// off_hand_local_hit_causes_monster_flee_% + /// + OffHandLocalHitCausesMonsterFleePct = 834, + + /// + /// off_hand_local_always_hit + /// + OffHandLocalAlwaysHit = 835, + + /// + /// acrobatics_additional_chance_to_dodge_% + /// + AcrobaticsAdditionalChanceToDodgePct = 836, + + /// + /// keystone_phase_acrobatics + /// + KeystonePhaseAcrobatics = 837, + + /// + /// Chance to Dodge Spell Damage + /// + ChanceToDodgeSpellsPct = 838, + + /// + /// phase_acrobatics_additional_chance_to_dodge_spells_% + /// + PhaseAcrobaticsAdditionalChanceToDodgeSpellsPct = 839, + + /// + /// number_of_inca_minions_allowed + /// + NumberOfIncaMinionsAllowed = 840, + + /// + /// curse_cast_speed_+% + /// + CurseCastSpeedPct = 841, + + /// + /// chance_to_evade_projectile_attacks_+% + /// + ChanceToEvadeProjectileAttacksPct = 842, + + /// + /// keystone_projectile_evasion + /// + KeystoneProjectileEvasion = 843, + + /// + /// elemental_status_effect_aura_radius + /// + ElementalStatusEffectAuraRadius = 844, + + /// + /// support_lesser_multiple_projectile_damage_+%_final + /// + SupportLesserMultipleProjectileDamagePctFinal = 845, + + /// + /// use_life_in_place_of_mana + /// + UseLifeInPlaceOfMana = 846, + + /// + /// keystone_blood_magic + /// + KeystoneBloodMagic = 847, + + /// + /// base_mana_reservation_+% + /// + BaseManaReservationPct = 848, + + /// + /// base_aura_area_of_effect_+% + /// + BaseAuraAreaOfEffectPct = 849, + + /// + /// physical_attack_damage_taken_+ + /// + PhysicalAttackDamageTaken = 850, + + /// + /// physical_ranged_attack_damage_taken_+ + /// + PhysicalRangedAttackDamageTaken = 851, + + /// + /// old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value + /// + OldDoNotUseSpellBlockPctWhileOnLowLifeFromAssumedBlockValue = 852, + + /// + /// display_what_elemental_proliferation_does + /// + DisplayWhatElementalProliferationDoes = 853, + + /// + /// skill_can_fire_arrows + /// + SkillCanFireArrows = 854, + + /// + /// skill_can_fire_wand_projectiles + /// + SkillCanFireWandProjectiles = 855, + + /// + /// Local Additional Block Chance % + /// + LocalAdditionalBlockChancePct = 856, + + /// + /// keystone_minion_instability + /// + KeystoneMinionInstability = 857, + + /// + /// strong_casting + /// + StrongCasting = 858, + + /// + /// support_damage_while_on_full_life_+%_final + /// + SupportDamageWhileOnFullLifePctFinal = 859, + + /// + /// Skill placed as Totem + /// + IsTotem = 860, + + /// + /// monster_base_type_attack_cast_speed_+%_and_damage_-%_final + /// + MonsterBaseTypeAttackCastSpeedPctAndDamagePctFinal = 861, + + /// + /// monster_rarity_attack_cast_speed_+%_and_damage_-%_final + /// + MonsterRarityAttackCastSpeedPctAndDamagePctFinal = 862, + + /// + /// monster_attack_cast_speed_+%_and_damage_-%_final + /// + MonsterAttackCastSpeedPctAndDamagePctFinal = 863, + + /// + /// cast_speed_+%_granted_from_skill + /// + CastSpeedPctGrantedFromSkill = 864, + + /// + /// is_hidden_monster + /// + IsHiddenMonster = 865, + + /// + /// base_totem_duration + /// + BaseTotemDuration = 866, + + /// + /// totem_duration + /// + TotemDuration = 867, + + /// + /// base_totem_range + /// + BaseTotemRange = 868, + + /// + /// totem_range + /// + TotemRange = 869, + + /// + /// immune_to_auras_from_other_entities + /// + ImmuneToAurasFromOtherEntities = 870, + + /// + /// totem_support_gem_level + /// + TotemSupportGemLevel = 871, + + /// + /// base_number_of_totems_allowed + /// + BaseNumberOfTotemsAllowed = 872, + + /// + /// base_trap_duration + /// + BaseTrapDuration = 873, + + /// + /// trap_duration + /// + TrapDuration = 874, + + /// + /// base_number_of_traps_allowed + /// + BaseNumberOfTrapsAllowed = 875, + + /// + /// monster_flurry + /// + MonsterFlurry = 876, + + /// + /// number_of_insects_allowed + /// + NumberOfInsectsAllowed = 877, + + /// + /// is_remote_mine + /// + IsRemoteMine = 878, + + /// + /// base_number_of_remote_mines_allowed + /// + BaseNumberOfRemoteMinesAllowed = 879, + + /// + /// base_mine_duration + /// + BaseMineDuration = 880, + + /// + /// mine_duration + /// + MineDuration = 881, + + /// + /// nonlethal_fire_damage_taken_per_minute_unaffected_by_level_scaling + /// + NonlethalFireDamageTakenPerMinuteUnaffectedByLevelScaling = 882, + + /// + /// base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute + /// + BaseNonlethalFireDamagePctOfMaximumLifeTakenPerMinute = 883, + + /// + /// righteous_fire_spell_damage_+%_final + /// + RighteousFireSpellDamagePctFinal = 884, + + /// + /// base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute + /// + BaseRighteousFirePctOfMaxLifeToDealToNearbyPerMinute = 885, + + /// + /// totem_level + /// + TotemLevel = 886, + + /// + /// base_active_skill_totem_level + /// + BaseActiveSkillTotemLevel = 887, + + /// + /// alternate_minion + /// + AlternateMinion = 888, + + /// + /// corpse_consumption_life_to_gain + /// + CorpseConsumptionLifeToGain = 889, + + /// + /// support_totem_damage_+%_final + /// + SupportTotemDamagePctFinal = 890, + + /// + /// freeze_mine_damage_to_freeze_as_though_dealing + /// + FreezeMineDamageToFreezeAsThoughDealing = 891, + + /// + /// monster_no_drops_or_experience + /// + MonsterNoDropsOrExperience = 892, + + /// + /// active_skill_gem_added_damage_effectiveness_+%_final + /// + ActiveSkillGemAddedDamageEffectivenessPctFinal = 893, + + /// + /// monster_gain_frenzy_charge_on_kin_death + /// + MonsterGainFrenzyChargeOnKinDeath = 894, + + /// + /// monster_ground_fire_on_death_%_max_damage_to_deal_per_minute + /// + MonsterGroundFireOnDeathPctMaxDamageToDealPerMinute = 895, + + /// + /// monster_ground_fire_on_death_base_area_of_effect_radius + /// + MonsterGroundFireOnDeathBaseAreaOfEffectRadius = 896, + + /// + /// monster_ground_effect_on_death_base_duration_ms + /// + MonsterGroundEffectOnDeathBaseDurationMs = 897, + + /// + /// monster_ground_fire_on_death_duration_ms + /// + MonsterGroundFireOnDeathDurationMs = 898, + + /// + /// curse_on_hit_%_vulnerability + /// + CurseOnHitPctVulnerability = 899, + + /// + /// curse_on_hit_%_temporal_chains + /// + CurseOnHitPctTemporalChains = 900, + + /// + /// support_gem_mine_damage_+%_final + /// + SupportGemMineDamagePctFinal = 901, + + /// + /// undead_description + /// + UndeadDescription = 902, + + /// + /// monster_casts_firestorm_text + /// + MonsterCastsFirestormText = 903, + + /// + /// monster_casts_puncture_text + /// + MonsterCastsPunctureText = 904, + + /// + /// monster_casts_coldsnap_text + /// + MonsterCastsColdsnapText = 905, + + /// + /// monster_casts_assassins_mark_curse_text + /// + MonsterCastsAssassinsMarkCurseText = 906, + + /// + /// monster_casts_elementral_weakness_curse_text + /// + MonsterCastsElementralWeaknessCurseText = 907, + + /// + /// monster_casts_enfeeble_curse_text + /// + MonsterCastsEnfeebleCurseText = 908, + + /// + /// monster_casts_fireball_text + /// + MonsterCastsFireballText = 909, + + /// + /// monster_casts_ice_nova_text + /// + MonsterCastsIceNovaText = 910, + + /// + /// monster_casts_ice_spear_text + /// + MonsterCastsIceSpearText = 911, + + /// + /// monster_casts_molten_shell_text + /// + MonsterCastsMoltenShellText = 912, + + /// + /// monster_casts_projectile_vulnerability_curse_text + /// + MonsterCastsProjectileVulnerabilityCurseText = 913, + + /// + /// monster_casts_shock_nova_text + /// + MonsterCastsShockNovaText = 914, + + /// + /// monster_casts_spark_text + /// + MonsterCastsSparkText = 915, + + /// + /// monster_casts_vulnerability_curse_text + /// + MonsterCastsVulnerabilityCurseText = 916, + + /// + /// monster_casts_warlords_mark_curse_text + /// + MonsterCastsWarlordsMarkCurseText = 917, + + /// + /// monster_detonates_corpses_text + /// + MonsterDetonatesCorpsesText = 918, + + /// + /// monster_explodes_on_its_target_text + /// + MonsterExplodesOnItsTargetText = 919, + + /// + /// monster_fires_a_rain_of_arrows_text + /// + MonsterFiresARainOfArrowsText = 920, + + /// + /// monster_fires_burning_arrows_text + /// + MonsterFiresBurningArrowsText = 921, + + /// + /// monster_fires_explosive_arrows_text + /// + MonsterFiresExplosiveArrowsText = 922, + + /// + /// monster_fires_lightning_arrows_text + /// + MonsterFiresLightningArrowsText = 923, + + /// + /// monster_fires_caustic_arrows_text + /// + MonsterFiresCausticArrowsText = 924, + + /// + /// monster_fires_split_arrows_text + /// + MonsterFiresSplitArrowsText = 925, + + /// + /// monster_leaps_onto_enemies_text + /// + MonsterLeapsOntoEnemiesText = 926, + + /// + /// monster_raises_undead_text + /// + MonsterRaisesUndeadText = 927, + + /// + /// monster_summons_exploding_spawn_text + /// + MonsterSummonsExplodingSpawnText = 928, + + /// + /// monster_summons_monkeys_from_nearby_trees_text + /// + MonsterSummonsMonkeysFromNearbyTreesText = 929, + + /// + /// monster_summons_skeletons_text + /// + MonsterSummonsSkeletonsText = 930, + + /// + /// monster_summons_spawn_text + /// + MonsterSummonsSpawnText = 931, + + /// + /// monster_uses_enduring_cry_text + /// + MonsterUsesEnduringCryText = 932, + + /// + /// monster_uses_flicker_strike_text + /// + MonsterUsesFlickerStrikeText = 933, + + /// + /// monster_uses_glacial_hammer_text + /// + MonsterUsesGlacialHammerText = 934, + + /// + /// monster_uses_ground_slam_text + /// + MonsterUsesGroundSlamText = 935, + + /// + /// monster_uses_lightning_strike_text + /// + MonsterUsesLightningStrikeText = 936, + + /// + /// monster_uses_phase_run_text + /// + MonsterUsesPhaseRunText = 937, + + /// + /// monster_casts_shield_charge_text + /// + MonsterCastsShieldChargeText = 938, + + /// + /// monster_casts_mass_frenzy_text + /// + MonsterCastsMassFrenzyText = 939, + + /// + /// monster_casts_temporal_chains_text + /// + MonsterCastsTemporalChainsText = 940, + + /// + /// monster_casts_frenzy_text + /// + MonsterCastsFrenzyText = 941, + + /// + /// monster_casts_viper_strike_text + /// + MonsterCastsViperStrikeText = 942, + + /// + /// monster_casts_elemental_hit_text + /// + MonsterCastsElementalHitText = 943, + + /// + /// cannot_block_attacks + /// + CannotBlockAttacks = 944, + + /// + /// Chance to Block Attacks + /// + AttackBlockPct = 945, + + /// + /// local_weapon_uses_both_hands + /// + LocalWeaponUsesBothHands = 946, + + /// + /// base_maximum_fire_damage_resistance_% + /// + BaseMaximumFireDamageResistancePct = 947, + + /// + /// base_maximum_cold_damage_resistance_% + /// + BaseMaximumColdDamageResistancePct = 948, + + /// + /// base_maximum_lightning_damage_resistance_% + /// + BaseMaximumLightningDamageResistancePct = 949, + + /// + /// base_maximum_chaos_damage_resistance_% + /// + BaseMaximumChaosDamageResistancePct = 950, + + /// + /// additional_maximum_all_resistances_% + /// + AdditionalMaximumAllResistancesPct = 951, + + /// + /// additional_maximum_all_elemental_resistances_% + /// + AdditionalMaximumAllElementalResistancesPct = 952, + + /// + /// local_display_socketed_gems_get_concentrated_area_level + /// + LocalDisplaySocketedGemsGetConcentratedAreaLevel = 953, + + /// + /// number_of_additional_traps_allowed + /// + NumberOfAdditionalTrapsAllowed = 954, + + /// + /// number_of_additional_remote_mines_allowed + /// + NumberOfAdditionalRemoteMinesAllowed = 955, + + /// + /// number_of_traps_allowed + /// + NumberOfTrapsAllowed = 956, + + /// + /// number_of_remote_mines_allowed + /// + NumberOfRemoteMinesAllowed = 957, + + /// + /// number_of_additional_totems_allowed + /// + NumberOfAdditionalTotemsAllowed = 958, + + /// + /// number_of_totems_allowed + /// + NumberOfTotemsAllowed = 959, + + /// + /// additional_physical_damage_reduction_%_when_on_low_life + /// + AdditionalPhysicalDamageReductionPctWhenOnLowLife = 960, + + /// + /// endurance_only_conduit + /// + EnduranceOnlyConduit = 961, + + /// + /// frenzy_only_conduit + /// + FrenzyOnlyConduit = 962, + + /// + /// power_only_conduit + /// + PowerOnlyConduit = 963, + + /// + /// ice_spear_second_form_critical_strike_chance_+% + /// + IceSpearSecondFormCriticalStrikeChancePct = 964, + + /// + /// ice_spear_second_form_critical_strike_multiplier_+ + /// + IceSpearSecondFormCriticalStrikeMultiplier = 965, + + /// + /// ice_spear_second_form_projectile_speed_+%_final + /// + IceSpearSecondFormProjectileSpeedPctFinal = 966, + + /// + /// monster_dropped_item_rarity_+%_from_player_support + /// + MonsterDroppedItemRarityPctFromPlayerSupport = 967, + + /// + /// monster_dropped_item_quantity_+%_from_player_support + /// + MonsterDroppedItemQuantityPctFromPlayerSupport = 968, + + /// + /// monster_ground_ice_on_death_base_area_of_effect_radius + /// + MonsterGroundIceOnDeathBaseAreaOfEffectRadius = 969, + + /// + /// monster_ground_ice_on_death_duration_ms + /// + MonsterGroundIceOnDeathDurationMs = 970, + + /// + /// monster_ground_tar_on_death_base_area_of_effect_radius + /// + MonsterGroundTarOnDeathBaseAreaOfEffectRadius = 971, + + /// + /// monster_ground_tar_on_death_duration_ms + /// + MonsterGroundTarOnDeathDurationMs = 972, + + /// + /// monster_ground_tar_on_death_monvement_speed_pluspercent + /// + MonsterGroundTarOnDeathMonvementSpeedPluspercent = 973, + + /// + /// blinded + /// + Blinded = 974, + + /// + /// local_chance_to_blind_on_hit_% + /// + LocalChanceToBlindOnHitPct = 975, + + /// + /// main_hand_local_chance_to_blind_on_hit_% + /// + MainHandLocalChanceToBlindOnHitPct = 976, + + /// + /// off_hand_local_chance_to_blind_on_hit_% + /// + OffHandLocalChanceToBlindOnHitPct = 977, + + /// + /// global_chance_to_blind_on_hit_% + /// + GlobalChanceToBlindOnHitPct = 978, + + /// + /// main_hand_chance_to_blind_on_hit_% + /// + MainHandChanceToBlindOnHitPct = 979, + + /// + /// off_hand_chance_to_blind_on_hit_% + /// + OffHandChanceToBlindOnHitPct = 980, + + /// + /// local_display_socketed_gems_get_blind_level + /// + LocalDisplaySocketedGemsGetBlindLevel = 981, + + /// + /// blind_duration_+% + /// + BlindDurationPct = 982, + + /// + /// cannot_be_knocked_back + /// + CannotBeKnockedBack = 983, + + /// + /// dual_wield_inherent_attack_speed_+%_final + /// + DualWieldInherentAttackSpeedPctFinal = 984, + + /// + /// map_spawn_two_bosses + /// + MapSpawnTwoBosses = 985, + + /// + /// map_boss_damage_+% + /// + MapBossDamagePct = 986, + + /// + /// map_boss_attack_and_cast_speed_+% + /// + MapBossAttackAndCastSpeedPct = 987, + + /// + /// map_monsters_additional_fire_resistance + /// + MapMonstersAdditionalFireResistance = 988, + + /// + /// map_monsters_additional_cold_resistance + /// + MapMonstersAdditionalColdResistance = 989, + + /// + /// map_monsters_additional_lightning_resistance + /// + MapMonstersAdditionalLightningResistance = 990, + + /// + /// map_monsters_additional_physical_damage_reduction + /// + MapMonstersAdditionalPhysicalDamageReduction = 991, + + /// + /// map_monsters_cannot_be_stunned + /// + MapMonstersCannotBeStunned = 992, + + /// + /// map_monsters_life_+% + /// + MapMonstersLifePct = 993, + + /// + /// map_monsters_damage_+% + /// + MapMonstersDamagePct = 994, + + /// + /// map_monsters_movement_speed_+% + /// + MapMonstersMovementSpeedPct = 995, + + /// + /// map_monsters_attack_speed_+% + /// + MapMonstersAttackSpeedPct = 996, + + /// + /// map_monsters_cast_speed_+% + /// + MapMonstersCastSpeedPct = 997, + + /// + /// map_monsters_reflect_%_physical_damage + /// + MapMonstersReflectPctPhysicalDamage = 998, + + /// + /// map_monsters_reflect_%_elemental_damage + /// + MapMonstersReflectPctElementalDamage = 999, + + /// + /// map_monsters_additional_number_of_projecitles + /// + MapMonstersAdditionalNumberOfProjecitles = 1000, + + /// + /// map_player_has_level_X_vulnerability + /// + MapPlayerHasLevelXVulnerability = 1001, + + /// + /// map_player_has_level_X_warlords_mark + /// + MapPlayerHasLevelXWarlordsMark = 1002, + + /// + /// map_player_has_level_X_enfeeble + /// + MapPlayerHasLevelXEnfeeble = 1003, + + /// + /// map_player_has_level_X_elemental_weakness + /// + MapPlayerHasLevelXElementalWeakness = 1004, + + /// + /// map_player_has_level_X_temporal_chains + /// + MapPlayerHasLevelXTemporalChains = 1005, + + /// + /// map_player_no_regeneration + /// + MapPlayerNoRegeneration = 1006, + + /// + /// no_life_regeneration + /// + NoLifeRegeneration = 1007, + + /// + /// no_mana_regeneration + /// + NoManaRegeneration = 1008, + + /// + /// map_player_base_chaos_damage_taken_per_minute + /// + MapPlayerBaseChaosDamageTakenPerMinute = 1009, + + /// + /// map_player_has_blood_magic_keystone + /// + MapPlayerHasBloodMagicKeystone = 1010, + + /// + /// map_player_has_elemental_equilibrium_keystone + /// + MapPlayerHasElementalEquilibriumKeystone = 1011, + + /// + /// map_player_has_chaos_inoculation_keystone + /// + MapPlayerHasChaosInoculationKeystone = 1012, + + /// + /// map_additional_player_maximum_resistances_% + /// + MapAdditionalPlayerMaximumResistancesPct = 1013, + + /// + /// map_player_status_recovery_speed_+% + /// + MapPlayerStatusRecoverySpeedPct = 1014, + + /// + /// life_recovery_speed_+%_final_from_map + /// + LifeRecoverySpeedPctFinalFromMap = 1015, + + /// + /// mana_recovery_speed_+%_final_from_map + /// + ManaRecoverySpeedPctFinalFromMap = 1016, + + /// + /// energy_shield_recovery_speed_+%_final_from_map + /// + EnergyShieldRecoverySpeedPctFinalFromMap = 1017, + + /// + /// map_size_+% + /// + MapSizePct = 1018, + + /// + /// map_is_branchy + /// + MapIsBranchy = 1019, + + /// + /// map_packs_are_totems + /// + MapPacksAreTotems = 1020, + + /// + /// map_packs_are_skeletons + /// + MapPacksAreSkeletons = 1021, + + /// + /// map_packs_are_bandits + /// + MapPacksAreBandits = 1022, + + /// + /// map_packs_are_goatmen + /// + MapPacksAreGoatmen = 1023, + + /// + /// map_packs_are_sea_witches_and_spawn + /// + MapPacksAreSeaWitchesAndSpawn = 1024, + + /// + /// map_packs_are_undead_and_necromancers + /// + MapPacksAreUndeadAndNecromancers = 1025, + + /// + /// map_packs_fire_projectiles + /// + MapPacksFireProjectiles = 1026, + + /// + /// map_pack_size_+% + /// + MapPackSizePct = 1027, + + /// + /// map_number_of_magic_packs_+% + /// + MapNumberOfMagicPacksPct = 1028, + + /// + /// map_number_of_rare_packs_+% + /// + MapNumberOfRarePacksPct = 1029, + + /// + /// map_base_ground_fire_damage_to_deal_per_minute + /// + MapBaseGroundFireDamageToDealPerMinute = 1030, + + /// + /// map_monsters_%_physical_damage_to_convert_to_fire + /// + MapMonstersPctPhysicalDamageToConvertToFire = 1031, + + /// + /// map_monsters_%_physical_damage_to_convert_to_cold + /// + MapMonstersPctPhysicalDamageToConvertToCold = 1032, + + /// + /// map_monsters_%_physical_damage_to_convert_to_lightning + /// + MapMonstersPctPhysicalDamageToConvertToLightning = 1033, + + /// + /// map_monsters_%_physical_damage_to_convert_to_chaos + /// + MapMonstersPctPhysicalDamageToConvertToChaos = 1034, + + /// + /// map_monsters_%_physical_damage_to_add_as_fire + /// + MapMonstersPctPhysicalDamageToAddAsFire = 1035, + + /// + /// map_monsters_%_physical_damage_to_add_as_cold + /// + MapMonstersPctPhysicalDamageToAddAsCold = 1036, + + /// + /// map_monsters_%_physical_damage_to_add_as_lightning + /// + MapMonstersPctPhysicalDamageToAddAsLightning = 1037, + + /// + /// map_monsters_%_physical_damage_to_add_as_chaos + /// + MapMonstersPctPhysicalDamageToAddAsChaos = 1038, + + /// + /// base_additional_physical_damage_reduction_% + /// + BaseAdditionalPhysicalDamageReductionPct = 1039, + + /// + /// map_monsters_gain_x_frenzy_charges_every_20_seconds + /// + MapMonstersGainXFrenzyChargesEvery20Seconds = 1040, + + /// + /// map_additional_number_of_packs_to_choose + /// + MapAdditionalNumberOfPacksToChoose = 1041, + + /// + /// map_item_drop_quantity_+% + /// + MapItemDropQuantityPct = 1042, + + /// + /// map_ground_effect_patches_per_100_tiles + /// + MapGroundEffectPatchesPer100Tiles = 1043, + + /// + /// map_ground_tar_movement_speed_+% + /// + MapGroundTarMovementSpeedPct = 1044, + + /// + /// map_ground_effect_radius + /// + MapGroundEffectRadius = 1045, + + /// + /// map_ground_ice + /// + MapGroundIce = 1046, + + /// + /// map_chest_item_quantity_+% + /// + MapChestItemQuantityPct = 1047, + + /// + /// map_chest_item_rarity_+% + /// + MapChestItemRarityPct = 1048, + + /// + /// display_map_no_monsters + /// + DisplayMapNoMonsters = 1049, + + /// + /// necromancer_additional_rarity_levels_can_be_raised + /// + NecromancerAdditionalRarityLevelsCanBeRaised = 1050, + + /// + /// monster_dropped_item_quantity_from_numplayers_+% + /// + MonsterDroppedItemQuantityFromNumplayersPct = 1051, + + /// + /// map_disable_chest_drop_scaling + /// + MapDisableChestDropScaling = 1052, + + /// + /// physical_damage_taken_%_as_fire + /// + PhysicalDamageTakenPctAsFire = 1053, + + /// + /// physical_damage_taken_%_as_cold + /// + PhysicalDamageTakenPctAsCold = 1054, + + /// + /// physical_damage_taken_%_as_lightning + /// + PhysicalDamageTakenPctAsLightning = 1055, + + /// + /// physical_damage_taken_%_as_chaos + /// + PhysicalDamageTakenPctAsChaos = 1056, + + /// + /// base_energy_shield_regeneration_rate_per_minute + /// + BaseEnergyShieldRegenerationRatePerMinute = 1057, + + /// + /// leech_energy_shield_instead_of_life + /// + LeechEnergyShieldInsteadOfLife = 1058, + + /// + /// energy_shield_regeneration_rate_per_minute + /// + EnergyShieldRegenerationRatePerMinute = 1059, + + /// + /// monster_uses_mass_power_text + /// + MonsterUsesMassPowerText = 1060, + + /// + /// monster_uses_mass_endurance_text + /// + MonsterUsesMassEnduranceText = 1061, + + /// + /// monster_uses_shockwave_text + /// + MonsterUsesShockwaveText = 1062, + + /// + /// unique_facebreaker_unarmed_physical_damage_+%_final + /// + UniqueFacebreakerUnarmedPhysicalDamagePctFinal = 1063, + + /// + /// local_display_socketed_gems_get_increased_area_level + /// + LocalDisplaySocketedGemsGetIncreasedAreaLevel = 1064, + + /// + /// local_socketed_aura_gem_level_+ + /// + LocalSocketedAuraGemLevel = 1065, + + /// + /// extra_gore + /// + ExtraGore = 1066, + + /// + /// local_one_socket_each_colour_only + /// + LocalOneSocketEachColourOnly = 1067, + + /// + /// life_reserved_by_stat_% + /// + LifeReservedByStatPct = 1068, + + /// + /// block_while_dual_wielding_claws_% + /// + BlockWhileDualWieldingClawsPct = 1069, + + /// + /// unique_chin_sol_close_range_bow_damage_+%_final + /// + UniqueChinSolCloseRangeBowDamagePctFinal = 1070, + + /// + /// unique_chin_sol_close_range_knockback + /// + UniqueChinSolCloseRangeKnockback = 1071, + + /// + /// physical_damage_reduction_rating_against_projectiles + /// + PhysicalDamageReductionRatingAgainstProjectiles = 1072, + + /// + /// additional_block_chance_against_projectiles_% + /// + AdditionalBlockChanceAgainstProjectilesPct = 1073, + + /// + /// physical_damage_reduction_rating_+%_against_projectiles + /// + PhysicalDamageReductionRatingPctAgainstProjectiles = 1074, + + /// + /// spell_projectile_block_% + /// + SpellProjectileBlockPct = 1075, + + /// + /// projectile_attack_block_% + /// + ProjectileAttackBlockPct = 1076, + + /// + /// display_estimated_physical_damage_reduciton_against_projectiles_% + /// + DisplayEstimatedPhysicalDamageReducitonAgainstProjectilesPct = 1077, + + /// + /// damage_taken_goes_to_mana_% + /// + DamageTakenGoesToManaPct = 1078, + + /// + /// evasion_and_physical_damage_reduction_rating_+% + /// + EvasionAndPhysicalDamageReductionRatingPct = 1079, + + /// + /// additional_item_drop_slots_when_deleted_on_death + /// + AdditionalItemDropSlotsWhenDeletedOnDeath = 1080, + + /// + /// mana_degeneration_per_minute + /// + ManaDegenerationPerMinute = 1081, + + /// + /// life_degeneration_per_minute + /// + LifeDegenerationPerMinute = 1082, + + /// + /// ice_shield_moving_mana_degeneration_per_minute + /// + IceShieldMovingManaDegenerationPerMinute = 1083, + + /// + /// unique_quill_rain_damage_+%_final + /// + UniqueQuillRainDamagePctFinal = 1084, + + /// + /// melee_physical_damage_taken_%_to_deal_to_attacker + /// + MeleePhysicalDamageTakenPctToDealToAttacker = 1085, + + /// + /// additional_block_% + /// + AdditionalBlockPct = 1086, + + /// + /// frozen_monsters_take_increased_damage + /// + FrozenMonstersTakeIncreasedDamage = 1087, + + /// + /// local_display_socketed_gems_get_blood_magic_level + /// + LocalDisplaySocketedGemsGetBloodMagicLevel = 1088, + + /// + /// local_display_socketed_gems_have_blood_magic + /// + LocalDisplaySocketedGemsHaveBloodMagic = 1089, + + /// + /// Monster Base Block % + /// + MonsterBaseBlockPct = 1090, + + /// + /// base_cannot_leech + /// + BaseCannotLeech = 1091, + + /// + /// keystone_vampirism + /// + KeystoneVampirism = 1092, + + /// + /// unique_dewaths_hide_physical_attack_damage_dealt_- + /// + UniqueDewathsHidePhysicalAttackDamageDealt = 1093, + + /// + /// local_strength_requirement_+% + /// + LocalStrengthRequirementPct = 1094, + + /// + /// local_dexterity_requirement_+% + /// + LocalDexterityRequirementPct = 1095, + + /// + /// local_intelligence_requirement_+% + /// + LocalIntelligenceRequirementPct = 1096, + + /// + /// local_cannot_be_used_with_chaos_innoculation + /// + LocalCannotBeUsedWithChaosInnoculation = 1097, + + /// + /// local_display_socketed_gems_have_mana_reservation_+% + /// + LocalDisplaySocketedGemsHaveManaReservationPct = 1098, + + /// + /// mace_elemental_damage_+% + /// + MaceElementalDamagePct = 1099, + + /// + /// active_skill_minion_movement_velocity_+%_final + /// + ActiveSkillMinionMovementVelocityPctFinal = 1100, + + /// + /// movement_velocity_+%_final_for_minion + /// + MovementVelocityPctFinalForMinion = 1101, + + /// + /// movement_velocity_cap + /// + MovementVelocityCap = 1102, + + /// + /// display_minion_base_maximum_life + /// + DisplayMinionBaseMaximumLife = 1103, + + /// + /// display_minion_maximum_life + /// + DisplayMinionMaximumLife = 1104, + + /// + /// skill_physical_damage_%_to_convert_to_fire + /// + SkillPhysicalDamagePctToConvertToFire = 1105, + + /// + /// skill_physical_damage_%_to_convert_to_cold + /// + SkillPhysicalDamagePctToConvertToCold = 1106, + + /// + /// skill_physical_damage_%_to_convert_to_lightning + /// + SkillPhysicalDamagePctToConvertToLightning = 1107, + + /// + /// skill_physical_damage_%_to_convert_to_chaos + /// + SkillPhysicalDamagePctToConvertToChaos = 1108, + + /// + /// skill_cold_damage_%_to_convert_to_fire + /// + SkillColdDamagePctToConvertToFire = 1109, + + /// + /// physical_damage_%_to_convert_to_fire + /// + PhysicalDamagePctToConvertToFire = 1110, + + /// + /// physical_damage_%_to_convert_to_cold + /// + PhysicalDamagePctToConvertToCold = 1111, + + /// + /// physical_damage_%_to_convert_to_lightning + /// + PhysicalDamagePctToConvertToLightning = 1112, + + /// + /// physical_damage_%_to_convert_to_chaos + /// + PhysicalDamagePctToConvertToChaos = 1113, + + /// + /// cold_damage_%_to_convert_to_fire + /// + ColdDamagePctToConvertToFire = 1114, + + /// + /// main_hand_attack_duration_ms + /// + MainHandAttackDurationMs = 1115, + + /// + /// off_hand_attack_duration_ms + /// + OffHandAttackDurationMs = 1116, + + /// + /// spell_cast_time_ms + /// + SpellCastTimeMs = 1117, + + /// + /// cast_time_overrides_attack_duration + /// + CastTimeOverridesAttackDuration = 1118, + + /// + /// projectiles_fork + /// + ProjectilesFork = 1119, + + /// + /// base_skill_number_of_additional_hits + /// + BaseSkillNumberOfAdditionalHits = 1120, + + /// + /// skill_override_pvp_scaling_time_ms + /// + SkillOverridePvpScalingTimeMs = 1121, + + /// + /// skill_double_hits_when_dual_wielding + /// + SkillDoubleHitsWhenDualWielding = 1122, + + /// + /// skill_number_of_additional_hits + /// + SkillNumberOfAdditionalHits = 1123, + + /// + /// trap_override_pvp_scaling_time_ms + /// + TrapOverridePvpScalingTimeMs = 1124, + + /// + /// mine_override_pvp_scaling_time_ms + /// + MineOverridePvpScalingTimeMs = 1125, + + /// + /// override_pvp_scaling_time_ms + /// + OverridePvpScalingTimeMs = 1126, + + /// + /// skill_display_number_of_totems_allowed + /// + SkillDisplayNumberOfTotemsAllowed = 1127, + + /// + /// skill_display_number_of_traps_allowed + /// + SkillDisplayNumberOfTrapsAllowed = 1128, + + /// + /// skill_display_number_of_remote_mines_allowed + /// + SkillDisplayNumberOfRemoteMinesAllowed = 1129, + + /// + /// energy_shield_%_gained_on_block + /// + EnergyShieldPctGainedOnBlock = 1130, + + /// + /// local_display_socketed_gems_get_added_chaos_damage_level + /// + LocalDisplaySocketedGemsGetAddedChaosDamageLevel = 1131, + + /// + /// projectiles_return + /// + ProjectilesReturn = 1132, + + /// + /// projectile_number_to_split + /// + ProjectileNumberToSplit = 1133, + + /// + /// determination_aura_armour_+%_final + /// + DeterminationAuraArmourPctFinal = 1134, + + /// + /// support_chain_hit_damage_+%_final + /// + SupportChainHitDamagePctFinal = 1135, + + /// + /// support_split_projectile_damage_+%_final + /// + SupportSplitProjectileDamagePctFinal = 1136, + + /// + /// support_return_projectile_damage_+%_final + /// + SupportReturnProjectileDamagePctFinal = 1137, + + /// + /// support_fork_projectile_damage_+%_final + /// + SupportForkProjectileDamagePctFinal = 1138, + + /// + /// energy_shield_%_of_armour_rating_gained_on_block + /// + EnergyShieldPctOfArmourRatingGainedOnBlock = 1139, + + /// + /// skeleton_duration_+% + /// + SkeletonDurationPct = 1140, + + /// + /// local_poison_on_hit + /// + LocalPoisonOnHit = 1141, + + /// + /// main_hand_local_poison_on_hit + /// + MainHandLocalPoisonOnHit = 1142, + + /// + /// off_hand_local_poison_on_hit + /// + OffHandLocalPoisonOnHit = 1143, + + /// + /// on_low_mana + /// + OnLowMana = 1144, + + /// + /// spell_damage_taken_+%_when_on_low_mana + /// + SpellDamageTakenPctWhenOnLowMana = 1145, + + /// + /// virtual_spell_damage_taken_+% + /// + VirtualSpellDamageTakenPct = 1146, + + /// + /// evasion_rating_+_when_on_full_life + /// + EvasionRatingWhenOnFullLife = 1147, + + /// + /// non_curse_aura_effect_+%_from_parent_skills + /// + NonCurseAuraEffectPctFromParentSkills = 1148, + + /// + /// minions_have_non_curse_aura_effect_+%_from_parent_skills + /// + MinionsHaveNonCurseAuraEffectPctFromParentSkills = 1149, + + /// + /// reflect_curses + /// + ReflectCurses = 1150, + + /// + /// global_critical_strike_chance_+%_while_holding_staff + /// + GlobalCriticalStrikeChancePctWhileHoldingStaff = 1151, + + /// + /// global_critical_strike_multiplier_+_while_holding_staff + /// + GlobalCriticalStrikeMultiplierWhileHoldingStaff = 1152, + + /// + /// secondary_damage_critical_strike_multiplier_+ + /// + SecondaryDamageCriticalStrikeMultiplier = 1153, + + /// + /// old_do_not_use_life_leech_from_spell_damage_% + /// + OldDoNotUseLifeLeechFromSpellDamagePct = 1154, + + /// + /// old_do_not_use_mana_leech_from_spell_damage_% + /// + OldDoNotUseManaLeechFromSpellDamagePct = 1155, + + /// + /// punishment_physical_damage_%_reflected_for_normal_monsters + /// + PunishmentPhysicalDamagePctReflectedForNormalMonsters = 1156, + + /// + /// punishment_physical_damage_%_reflected_for_magic_monsters + /// + PunishmentPhysicalDamagePctReflectedForMagicMonsters = 1157, + + /// + /// punishment_physical_damage_%_reflected_for_rare_monsters + /// + PunishmentPhysicalDamagePctReflectedForRareMonsters = 1158, + + /// + /// punishment_physical_damage_%_reflected_for_unique_monsters + /// + PunishmentPhysicalDamagePctReflectedForUniqueMonsters = 1159, + + /// + /// is_player_minion + /// + IsPlayerMinion = 1160, + + /// + /// Local Flask Curse Immunity While Healing + /// + LocalFlaskCurseImmunityWhileHealing = 1161, + + /// + /// attacks_deal_no_physical_damage + /// + AttacksDealNoPhysicalDamage = 1162, + + /// + /// whirling_blades_base_ground_fire_damage_to_deal_per_minute + /// + WhirlingBladesBaseGroundFireDamageToDealPerMinute = 1163, + + /// + /// monster_casts_ethereal_knives_text + /// + MonsterCastsEtherealKnivesText = 1164, + + /// + /// monster_throws_beartraps_text + /// + MonsterThrowsBeartrapsText = 1165, + + /// + /// monster_casts_lightning_thorns_text + /// + MonsterCastsLightningThornsText = 1166, + + /// + /// monster_throws_fire_bombs_text + /// + MonsterThrowsFireBombsText = 1167, + + /// + /// monster_throws_caustic_bombs_text + /// + MonsterThrowsCausticBombsText = 1168, + + /// + /// monster_casts_freezing_pulse_text + /// + MonsterCastsFreezingPulseText = 1169, + + /// + /// monster_cleaves_text + /// + MonsterCleavesText = 1170, + + /// + /// monster_fires_ice_shot_arrows_text + /// + MonsterFiresIceShotArrowsText = 1171, + + /// + /// monster_casts_conductivity_text + /// + MonsterCastsConductivityText = 1172, + + /// + /// monster_casts_flammability_text + /// + MonsterCastsFlammabilityText = 1173, + + /// + /// monster_casts_augmented_fireballs_text + /// + MonsterCastsAugmentedFireballsText = 1174, + + /// + /// monster_channels_lightning_text + /// + MonsterChannelsLightningText = 1175, + + /// + /// monster_casts_arc_text + /// + MonsterCastsArcText = 1176, + + /// + /// monster_raises_zombies_text + /// + MonsterRaisesZombiesText = 1177, + + /// + /// monster_casts_ice_shield_text + /// + MonsterCastsIceShieldText = 1178, + + /// + /// monster_casts_unholy_fire_text + /// + MonsterCastsUnholyFireText = 1179, + + /// + /// physical_damage_taken_+ + /// + PhysicalDamageTaken = 1180, + + /// + /// fire_damage_taken_+ + /// + FireDamageTaken = 1181, + + /// + /// monster_gain_power_charge_on_kin_death + /// + MonsterGainPowerChargeOnKinDeath = 1182, + + /// + /// monster_casts_discharge_text + /// + MonsterCastsDischargeText = 1183, + + /// + /// trap_variation + /// + TrapVariation = 1184, + + /// + /// number_of_water_elementals_to_summon + /// + NumberOfWaterElementalsToSummon = 1185, + + /// + /// number_of_water_elementals_allowed + /// + NumberOfWaterElementalsAllowed = 1186, + + /// + /// display_summons_water_elementals_text + /// + DisplaySummonsWaterElementalsText = 1187, + + /// + /// shield_charge_remove_stun_and_knockback + /// + ShieldChargeRemoveStunAndKnockback = 1188, + + /// + /// display_monster_uses_double_strike_text + /// + DisplayMonsterUsesDoubleStrikeText = 1189, + + /// + /// bleed_on_hit_base_duration + /// + BleedOnHitBaseDuration = 1190, + + /// + /// display_monster_uses_whirling_blades_text + /// + DisplayMonsterUsesWhirlingBladesText = 1191, + + /// + /// Cannot be Stunned + /// + CannotBeStunned = 1192, + + /// + /// cannot_be_stunned_when_on_low_life + /// + CannotBeStunnedWhenOnLowLife = 1193, + + /// + /// display_monster_casts_lightning_warp_text + /// + DisplayMonsterCastsLightningWarpText = 1194, + + /// + /// display_golden_radiance + /// + DisplayGoldenRadiance = 1195, + + /// + /// display_monster_casts_frostbite_text + /// + DisplayMonsterCastsFrostbiteText = 1196, + + /// + /// cannot_be_converted_or_dominated + /// + CannotBeConvertedOrDominated = 1197, + + /// + /// map_hidden_monster_life_+%_times_6_final + /// + MapHiddenMonsterLifePctTimes6Final = 1198, + + /// + /// map_hidden_monster_damage_+%_squared_final + /// + MapHiddenMonsterDamagePctSquaredFinal = 1199, + + /// + /// regenerate_energy_shield_instead_of_life + /// + RegenerateEnergyShieldInsteadOfLife = 1200, + + /// + /// damage_not_from_skill_user + /// + DamageNotFromSkillUser = 1201, + + /// + /// deal_no_damage_yourself + /// + DealNoDamageYourself = 1202, + + /// + /// deal_no_damage + /// + DealNoDamage = 1203, + + /// + /// disable_skill_if_melee_attack + /// + DisableSkillIfMeleeAttack = 1204, + + /// + /// display_disable_melee_weapons + /// + DisplayDisableMeleeWeapons = 1205, + + /// + /// chaos_damage_does_not_bypass_energy_shield + /// + ChaosDamageDoesNotBypassEnergyShield = 1206, + + /// + /// cannot_cast_spells + /// + CannotCastSpells = 1207, + + /// + /// piety_transform_debuff_time_ms + /// + PietyTransformDebuffTimeMs = 1208, + + /// + /// cheat_override_blood_effect_level + /// + CheatOverrideBloodEffectLevel = 1209, + + /// + /// map_undead_monsters_get_up_after_X_seconds + /// + MapUndeadMonstersGetUpAfterXSeconds = 1210, + + /// + /// local_stun_threshold_reduction_+% + /// + LocalStunThresholdReductionPct = 1211, + + /// + /// main_hand_local_stun_threshold_reduction_+% + /// + MainHandLocalStunThresholdReductionPct = 1212, + + /// + /// off_hand_local_stun_threshold_reduction_+% + /// + OffHandLocalStunThresholdReductionPct = 1213, + + /// + /// intermediary_maximum_life_including_chaos_innoculation + /// + IntermediaryMaximumLifeIncludingChaosInnoculation = 1214, + + /// + /// Light Radius +% + /// + LightRadiusPct = 1215, + + /// + /// active_skill_cast_speed_+%_final + /// + ActiveSkillCastSpeedPctFinal = 1216, + + /// + /// map_has_X_waves_of_monsters + /// + MapHasXWavesOfMonsters = 1217, + + /// + /// map_has_X_seconds_between_waves + /// + MapHasXSecondsBetweenWaves = 1218, + + /// + /// map_num_initial_wave_monsters + /// + MapNumInitialWaveMonsters = 1219, + + /// + /// map_wave_monster_increment + /// + MapWaveMonsterIncrement = 1220, + + /// + /// flamethrower_damage_+%_per_stage_final + /// + FlamethrowerDamagePctPerStageFinal = 1221, + + /// + /// ground_tar_on_take_crit_base_area_of_effect_radius + /// + GroundTarOnTakeCritBaseAreaOfEffectRadius = 1222, + + /// + /// ground_tar_on_take_crit_duration_ms + /// + GroundTarOnTakeCritDurationMs = 1223, + + /// + /// ground_tar_on_take_crit_monvement_speed_pluspercent + /// + GroundTarOnTakeCritMonvementSpeedPluspercent = 1224, + + /// + /// curse_on_hit_%_enfeeble + /// + CurseOnHitPctEnfeeble = 1225, + + /// + /// totem_art_variation + /// + TotemArtVariation = 1226, + + /// + /// spells_have_culling_strike + /// + SpellsHaveCullingStrike = 1227, + + /// + /// map_monsters_immune_to_a_random_status_ailment_or_stun + /// + MapMonstersImmuneToARandomStatusAilmentOrStun = 1228, + + /// + /// map_monster_melee_attacks_apply_random_curses + /// + MapMonsterMeleeAttacksApplyRandomCurses = 1229, + + /// + /// map_monster_melee_attacks_apply_random_curses_%_chance + /// + MapMonsterMeleeAttacksApplyRandomCursesPctChance = 1230, + + /// + /// map_monsters_reflect_curses + /// + MapMonstersReflectCurses = 1231, + + /// + /// curse_on_melee_hit_%_random_curse + /// + CurseOnMeleeHitPctRandomCurse = 1232, + + /// + /// main_hand_maximum_attack_distance + /// + MainHandMaximumAttackDistance = 1233, + + /// + /// off_hand_maximum_attack_distance + /// + OffHandMaximumAttackDistance = 1234, + + /// + /// melee_range_+ + /// + MeleeRange = 1235, + + /// + /// cyclone_movement_speed_+%_final + /// + CycloneMovementSpeedPctFinal = 1236, + + /// + /// local_display_socketed_gems_get_added_fire_damage_level + /// + LocalDisplaySocketedGemsGetAddedFireDamageLevel = 1237, + + /// + /// local_display_socketed_gems_get_cold_to_fire_level + /// + LocalDisplaySocketedGemsGetColdToFireLevel = 1238, + + /// + /// local_display_socketed_gems_get_fire_penetration_level + /// + LocalDisplaySocketedGemsGetFirePenetrationLevel = 1239, + + /// + /// evasion_rating_+%_when_on_low_life + /// + EvasionRatingPctWhenOnLowLife = 1240, + + /// + /// life_leech_is_instant + /// + LifeLeechIsInstant = 1241, + + /// + /// base_life_leech_is_instant + /// + BaseLifeLeechIsInstant = 1242, + + /// + /// support_multiple_attacks_melee_attack_speed_+%_final + /// + SupportMultipleAttacksMeleeAttackSpeedPctFinal = 1243, + + /// + /// map_item_drop_rarity_+% + /// + MapItemDropRarityPct = 1244, + + /// + /// + /// + LifeGainPerTarget = 1245, + + /// + /// local_life_leech_is_instant + /// + LocalLifeLeechIsInstant = 1246, + + /// + /// main_hand_local_life_leech_is_instant + /// + MainHandLocalLifeLeechIsInstant = 1247, + + /// + /// off_hand_local_life_leech_is_instant + /// + OffHandLocalLifeLeechIsInstant = 1248, + + /// + /// avoid_ignite_%_when_on_low_life + /// + AvoidIgnitePctWhenOnLowLife = 1249, + + /// + /// fire_damage_resistance_%_when_on_low_life + /// + FireDamageResistancePctWhenOnLowLife = 1250, + + /// + /// local_display_socketed_gems_get_elemental_proliferation_level + /// + LocalDisplaySocketedGemsGetElementalProliferationLevel = 1251, + + /// + /// melee_splash + /// + MeleeSplash = 1252, + + /// + /// support_melee_splash_damage_+%_final + /// + SupportMeleeSplashDamagePctFinal = 1253, + + /// + /// support_melee_splash_damage_+%_final_for_splash + /// + SupportMeleeSplashDamagePctFinalForSplash = 1254, + + /// + /// add_power_charge_on_critical_strike_% + /// + AddPowerChargeOnCriticalStrikePct = 1255, + + /// + /// Additional Melee Targets + /// + BaseMeleeAttackRepeatCount = 1256, + + /// + /// Additional Targets + /// + AttackRepeatCount = 1257, + + /// + /// display_map_larger_maze + /// + DisplayMapLargerMaze = 1258, + + /// + /// display_map_restless_dead + /// + DisplayMapRestlessDead = 1259, + + /// + /// display_map_two_bosses + /// + DisplayMapTwoBosses = 1260, + + /// + /// display_map_large_chest + /// + DisplayMapLargeChest = 1261, + + /// + /// local_socketed_movement_gem_level_+ + /// + LocalSocketedMovementGemLevel = 1262, + + /// + /// map_projectile_speed_+% + /// + MapProjectileSpeedPct = 1263, + + /// + /// map_player_projectile_damage_+%_final + /// + MapPlayerProjectileDamagePctFinal = 1264, + + /// + /// projectile_damage_+%_final_from_map + /// + ProjectileDamagePctFinalFromMap = 1265, + + /// + /// support_multiple_attack_damage_+%_final + /// + SupportMultipleAttackDamagePctFinal = 1266, + + /// + /// necromancer_revivable_even_if_corpse_unusable + /// + NecromancerRevivableEvenIfCorpseUnusable = 1267, + + /// + /// local_six_linked_white_sockets + /// + LocalSixLinkedWhiteSockets = 1268, + + /// + /// area_of_effect_+%_per_20_int + /// + AreaOfEffectPctPer20Int = 1269, + + /// + /// attack_speed_+%_per_10_dex + /// + AttackSpeedPctPer10Dex = 1270, + + /// + /// physical_weapon_damage_+%_per_10_str + /// + PhysicalWeaponDamagePctPer10Str = 1271, + + /// + /// Dodge chance per Frenzy Charge + /// + ChanceToDodgePctPerFrenzyCharge = 1272, + + /// + /// gain_power_charge_per_enemy_you_crit + /// + GainPowerChargePerEnemyYouCrit = 1273, + + /// + /// local_unique_tabula_rasa_no_requirement_or_energy_shield + /// + LocalUniqueTabulaRasaNoRequirementOrEnergyShield = 1274, + + /// + /// map_wave_magic_increase + /// + MapWaveMagicIncrease = 1275, + + /// + /// local_display_socketed_gems_get_spell_totem_level + /// + LocalDisplaySocketedGemsGetSpellTotemLevel = 1276, + + /// + /// cannot_increase_quantity_of_dropped_items + /// + CannotIncreaseQuantityOfDroppedItems = 1277, + + /// + /// cannot_increase_rarity_of_dropped_items + /// + CannotIncreaseRarityOfDroppedItems = 1278, + + /// + /// killed_monster_dropped_item_rarity_+% + /// + KilledMonsterDroppedItemRarityPct = 1279, + + /// + /// killed_monster_dropped_item_quantity_+% + /// + KilledMonsterDroppedItemQuantityPct = 1280, + + /// + /// burning_damage_taken_+% + /// + BurningDamageTakenPct = 1281, + + /// + /// curse_effect_on_self_+% + /// + CurseEffectOnSelfPct = 1282, + + /// + /// randomly_cursed_when_totems_die_curse_level + /// + RandomlyCursedWhenTotemsDieCurseLevel = 1283, + + /// + /// Physical Damage Reflected to any Enemy Hit + /// + MaximumPhysicalDamageToReturnWhenHit = 1284, + + /// + /// Fire Damage Reflected to any Enemy Hit + /// + MaximumFireDamageToReturnWhenHit = 1285, + + /// + /// Cold Damage Reflected to any Enemy Hit + /// + MaximumColdDamageToReturnWhenHit = 1286, + + /// + /// Lightning Damage Reflected to any Enemy Hit + /// + MaximumLightningDamageToReturnWhenHit = 1287, + + /// + /// Chaos Damage Reflected to any Enemy Hit + /// + MaximumChaosDamageToReturnWhenHit = 1288, + + /// + /// Physical Damage Reflected to any Enemy Hit + /// + MinimumPhysicalDamageToReturnWhenHit = 1289, + + /// + /// Fire Damage Reflected to any Enemy Hit + /// + MinimumFireDamageToReturnWhenHit = 1290, + + /// + /// Cold Damage Reflected to any Enemy Hit + /// + MinimumColdDamageToReturnWhenHit = 1291, + + /// + /// Lightning Damage Reflected to any Enemy Hit + /// + MinimumLightningDamageToReturnWhenHit = 1292, + + /// + /// Chaos Damage Reflected to any Enemy Hit + /// + MinimumChaosDamageToReturnWhenHit = 1293, + + /// + /// local_display_socketed_gems_get_increased_duration_level + /// + LocalDisplaySocketedGemsGetIncreasedDurationLevel = 1294, + + /// + /// summon_fire_resistance_+ + /// + SummonFireResistance = 1295, + + /// + /// summon_cold_resistance_+ + /// + SummonColdResistance = 1296, + + /// + /// summon_lightning_resistance_+ + /// + SummonLightningResistance = 1297, + + /// + /// melee_weapon_critical_strike_multiplier_+ + /// + MeleeWeaponCriticalStrikeMultiplier = 1298, + + /// + /// map_monster_skills_chain_X_additional_times + /// + MapMonsterSkillsChainXAdditionalTimes = 1299, + + /// + /// local_ring_disable_other_ring + /// + LocalRingDisableOtherRing = 1300, + + /// + /// disable_ring_slot_1 + /// + DisableRingSlot1 = 1301, + + /// + /// disable_ring_slot_2 + /// + DisableRingSlot2 = 1302, + + /// + /// global_item_attribute_requirements_+% + /// + GlobalItemAttributeRequirementsPct = 1303, + + /// + /// grant_kill_to_target_when_exploding_self + /// + GrantKillToTargetWhenExplodingSelf = 1304, + + /// + /// Mana gained on Hit + /// + ManaGainPerTarget = 1305, + + /// + /// animation_effect_variation + /// + AnimationEffectVariation = 1306, + + /// + /// enemy_hits_roll_low_damage + /// + EnemyHitsRollLowDamage = 1307, + + /// + /// minions_take_no_actions + /// + MinionsTakeNoActions = 1308, + + /// + /// unique_loris_lantern_golden_light + /// + UniqueLorisLanternGoldenLight = 1309, + + /// + /// chaos_damage_resistance_%_when_on_low_life + /// + ChaosDamageResistancePctWhenOnLowLife = 1310, + + /// + /// gain_power_charge_for_each_quarter_life_removed + /// + GainPowerChargeForEachQuarterLifeRemoved = 1311, + + /// + /// enemy_extra_damage_rolls + /// + EnemyExtraDamageRolls = 1312, + + /// + /// enemy_extra_damage_rolls_when_on_low_life + /// + EnemyExtraDamageRollsWhenOnLowLife = 1313, + + /// + /// map_fixed_seed + /// + MapFixedSeed = 1314, + + /// + /// map_monsters_drop_ground_fire_on_death_base_radius + /// + MapMonstersDropGroundFireOnDeathBaseRadius = 1315, + + /// + /// map_monsters_drop_ground_fire_on_death_duration_ms + /// + MapMonstersDropGroundFireOnDeathDurationMs = 1316, + + /// + /// map_monsters_drop_ground_fire_on_death_%_max_damage_to_deal_per_minute + /// + MapMonstersDropGroundFireOnDeathPctMaxDamageToDealPerMinute = 1317, + + /// + /// map_monsters_convert_all_physical_damage_to_fire + /// + MapMonstersConvertAllPhysicalDamageToFire = 1318, + + /// + /// map_players_convert_all_physical_damage_to_fire + /// + MapPlayersConvertAllPhysicalDamageToFire = 1319, + + /// + /// local_display_socketed_gems_have_chance_to_flee_% + /// + LocalDisplaySocketedGemsHaveChanceToFleePct = 1320, + + /// + /// map_no_refills_in_town + /// + MapNoRefillsInTown = 1321, + + /// + /// base_minimum_lightning_damage_on_charge_expiry + /// + BaseMinimumLightningDamageOnChargeExpiry = 1322, + + /// + /// base_maximum_lightning_damage_on_charge_expiry + /// + BaseMaximumLightningDamageOnChargeExpiry = 1323, + + /// + /// item_drops_on_death + /// + ItemDropsOnDeath = 1324, + + /// + /// map_minimap_revealed + /// + MapMinimapRevealed = 1325, + + /// + /// explode_on_death_%_main_hand_damage_to_deal_as_fire + /// + ExplodeOnDeathPctMainHandDamageToDealAsFire = 1326, + + /// + /// explode_on_death_%_main_hand_damage_to_deal_as_lightning + /// + ExplodeOnDeathPctMainHandDamageToDealAsLightning = 1327, + + /// + /// explode_on_death_%_main_hand_damage_to_deal_as_cold + /// + ExplodeOnDeathPctMainHandDamageToDealAsCold = 1328, + + /// + /// explode_on_death_%_main_hand_damage_to_deal_as_chaos + /// + ExplodeOnDeathPctMainHandDamageToDealAsChaos = 1329, + + /// + /// Never Shock Targets + /// + NeverShock = 1330, + + /// + /// Never Freeze Targets + /// + NeverFreeze = 1331, + + /// + /// faster_burn_% + /// + FasterBurnPct = 1332, + + /// + /// disable_chest_slot + /// + DisableChestSlot = 1333, + + /// + /// local_display_socketed_gems_get_faster_attacks_level + /// + LocalDisplaySocketedGemsGetFasterAttacksLevel = 1334, + + /// + /// local_display_socketed_gems_get_melee_physical_damage_level + /// + LocalDisplaySocketedGemsGetMeleePhysicalDamageLevel = 1335, + + /// + /// flasks_dispel_burning + /// + FlasksDispelBurning = 1336, + + /// + /// physical_claw_damage_+%_when_on_low_life + /// + PhysicalClawDamagePctWhenOnLowLife = 1337, + + /// + /// accuracy_rating_+%_when_on_low_life + /// + AccuracyRatingPctWhenOnLowLife = 1338, + + /// + /// cannot_leech + /// + CannotLeech = 1339, + + /// + /// cannot_leech_when_on_low_life + /// + CannotLeechWhenOnLowLife = 1340, + + /// + /// base_cannot_leech_life + /// + BaseCannotLeechLife = 1341, + + /// + /// base_cannot_leech_mana + /// + BaseCannotLeechMana = 1342, + + /// + /// cannot_leech_life + /// + CannotLeechLife = 1343, + + /// + /// cannot_leech_mana + /// + CannotLeechMana = 1344, + + /// + /// base_energy_shield_gained_on_enemy_death + /// + BaseEnergyShieldGainedOnEnemyDeath = 1345, + + /// + /// summon_totem_cast_speed_+% + /// + SummonTotemCastSpeedPct = 1346, + + /// + /// consecrate_on_block_%_chance_to_create + /// + ConsecrateOnBlockPctChanceToCreate = 1347, + + /// + /// consecrate_on_block_%_life_regen_per_minute + /// + ConsecrateOnBlockPctLifeRegenPerMinute = 1348, + + /// + /// consecrate_on_block_base_radius + /// + ConsecrateOnBlockBaseRadius = 1349, + + /// + /// consecrate_on_block_duration_ms + /// + ConsecrateOnBlockDurationMs = 1350, + + /// + /// desecrate_on_block_%_chance_to_create + /// + DesecrateOnBlockPctChanceToCreate = 1351, + + /// + /// desecrate_on_block_base_chaos_damage_to_deal_per_minute + /// + DesecrateOnBlockBaseChaosDamageToDealPerMinute = 1352, + + /// + /// desecrate_on_block_base_radius + /// + DesecrateOnBlockBaseRadius = 1353, + + /// + /// desecrate_on_block_duration_ms + /// + DesecrateOnBlockDurationMs = 1354, + + /// + /// base_chaos_damage_%_of_maximum_life_taken_per_minute_per_frenzy_charge + /// + BaseChaosDamagePctOfMaximumLifeTakenPerMinutePerFrenzyCharge = 1355, + + /// + /// add_frenzy_charge_on_kill_%_chance + /// + AddFrenzyChargeOnKillPctChance = 1356, + + /// + /// local_socketed_elemental_gem_level_+ + /// + LocalSocketedElementalGemLevel = 1357, + + /// + /// melee_critical_strike_chance_+% + /// + MeleeCriticalStrikeChancePct = 1358, + + /// + /// melee_critical_strike_chance_+%_when_on_full_life + /// + MeleeCriticalStrikeChancePctWhenOnFullLife = 1359, + + /// + /// cannot_be_killed_by_elemental_reflect + /// + CannotBeKilledByElementalReflect = 1360, + + /// + /// local_display_socketed_gems_get_added_lightning_damage_level + /// + LocalDisplaySocketedGemsGetAddedLightningDamageLevel = 1361, + + /// + /// map_is_unidentified + /// + MapIsUnidentified = 1362, + + /// + /// melee_attacks_usable_without_mana_cost + /// + MeleeAttacksUsableWithoutManaCost = 1363, + + /// + /// melee_attack_mana_cost_+ + /// + MeleeAttackManaCost = 1364, + + /// + /// Melee Damage +% + /// + MeleeDamagePct = 1365, + + /// + /// melee_damage_taken_+% + /// + MeleeDamageTakenPct = 1366, + + /// + /// map_experience_gain_+% + /// + MapExperienceGainPct = 1367, + + /// + /// life_gained_on_block + /// + LifeGainedOnBlock = 1368, + + /// + /// mana_gained_on_block + /// + ManaGainedOnBlock = 1369, + + /// + /// minimum_physical_damage_to_return_on_block + /// + MinimumPhysicalDamageToReturnOnBlock = 1370, + + /// + /// maximum_physical_damage_to_return_on_block + /// + MaximumPhysicalDamageToReturnOnBlock = 1371, + + /// + /// footstep_effect_variation + /// + FootstepEffectVariation = 1372, + + /// + /// zombie_maximum_life_+ + /// + ZombieMaximumLife = 1373, + + /// + /// number_of_zombies_allowed_+% + /// + NumberOfZombiesAllowedPct = 1374, + + /// + /// zombie_chaos_elemental_damage_resistance_% + /// + ZombieChaosElementalDamageResistancePct = 1375, + + /// + /// chill_and_freeze_duration_based_on_%_energy_shield + /// + ChillAndFreezeDurationBasedOnPctEnergyShield = 1376, + + /// + /// number_of_equipped_uniques + /// + NumberOfEquippedUniques = 1377, + + /// + /// intelligence_+%_per_equipped_unique + /// + IntelligencePctPerEquippedUnique = 1378, + + /// + /// ignited_enemies_explode_on_kill + /// + IgnitedEnemiesExplodeOnKill = 1379, + + /// + /// additional_scroll_of_wisdom_drop_chance_% + /// + AdditionalScrollOfWisdomDropChancePct = 1380, + + /// + /// explode_on_kill_%_fire_damage_to_deal + /// + ExplodeOnKillPctFireDamageToDeal = 1381, + + /// + /// zombie_explode_on_kill_%_fire_damage_to_deal + /// + ZombieExplodeOnKillPctFireDamageToDeal = 1382, + + /// + /// local_unique_flask_item_rarity_+%_while_healing + /// + LocalUniqueFlaskItemRarityPctWhileHealing = 1383, + + /// + /// local_unique_flask_item_quantity_+%_while_healing + /// + LocalUniqueFlaskItemQuantityPctWhileHealing = 1384, + + /// + /// local_unique_flask_light_radius_+%_while_healing + /// + LocalUniqueFlaskLightRadiusPctWhileHealing = 1385, + + /// + /// local_unique_flask_resist_all_elements_%_during_flask_effect + /// + LocalUniqueFlaskResistAllElementsPctDuringFlaskEffect = 1386, + + /// + /// Additional Strength And Intelligence + /// + AdditionalStrengthAndIntelligence = 1387, + + /// + /// Additional Strength And Dexterity + /// + AdditionalStrengthAndDexterity = 1388, + + /// + /// Additional Dexterity And Intelligence + /// + AdditionalDexterityAndIntelligence = 1389, + + /// + /// curse_effect_+% + /// + CurseEffectPct = 1390, + + /// + /// nonfunctional_old_stat_map_monster_movement_velocity_cap + /// + NonfunctionalOldStatMapMonsterMovementVelocityCap = 1391, + + /// + /// movement_velocity_+%_while_cursed + /// + MovementVelocityPctWhileCursed = 1392, + + /// + /// map_spawn_exile_per_area_% + /// + MapSpawnExilePerAreaPct = 1393, + + /// + /// cyclone_extra_distance + /// + CycloneExtraDistance = 1394, + + /// + /// zombie_boss_extract_life_%_to_gain + /// + ZombieBossExtractLifePctToGain = 1395, + + /// + /// life_regeneration_rate_per_minute_%_per_frenzy_charge + /// + LifeRegenerationRatePerMinutePctPerFrenzyCharge = 1396, + + /// + /// enemy_on_low_life_damage_taken_+%_per_frenzy_charge + /// + EnemyOnLowLifeDamageTakenPctPerFrenzyCharge = 1397, + + /// + /// enemy_on_low_life_damage_taken_+% + /// + EnemyOnLowLifeDamageTakenPct = 1398, + + /// + /// add_power_charge_on_kill_%_chance + /// + AddPowerChargeOnKillPctChance = 1399, + + /// + /// gain_endurance_charge_on_power_charge_expiry + /// + GainEnduranceChargeOnPowerChargeExpiry = 1400, + + /// + /// melee_damage_+%_when_on_full_life + /// + MeleeDamagePctWhenOnFullLife = 1401, + + /// + /// consecrate_on_crit_%_chance_to_create + /// + ConsecrateOnCritPctChanceToCreate = 1402, + + /// + /// Projectile speed increase + /// + ProjectileSpeedPct = 1403, + + /// + /// Projectile Speed increase per Frenzy Charge + /// + ProjectileSpeedPctPerFrenzyCharge = 1404, + + /// + /// Projectile Damage increase per Power Charge + /// + ProjectileDamagePctPerPowerCharge = 1405, + + /// + /// killed_monster_dropped_item_rarity_+%_on_crit + /// + KilledMonsterDroppedItemRarityPctOnCrit = 1406, + + /// + /// onslaught_buff_duration_on_kill_ms + /// + OnslaughtBuffDurationOnKillMs = 1407, + + /// + /// local_right_ring_slot_no_mana_regeneration + /// + LocalRightRingSlotNoManaRegeneration = 1408, + + /// + /// local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_% + /// + LocalRightRingSlotBaseEnergyShieldRegenerationRatePerMinutePct = 1409, + + /// + /// local_left_ring_slot_mana_regeneration_rate_+% + /// + LocalLeftRingSlotManaRegenerationRatePct = 1410, + + /// + /// local_left_ring_slot_no_energy_shield_recharge_or_regeneration + /// + LocalLeftRingSlotNoEnergyShieldRechargeOrRegeneration = 1411, + + /// + /// no_energy_shield_recharge_or_regeneration + /// + NoEnergyShieldRechargeOrRegeneration = 1412, + + /// + /// base_energy_shield_regeneration_rate_per_minute_% + /// + BaseEnergyShieldRegenerationRatePerMinutePct = 1413, + + /// + /// character_sheet_monster_level + /// + CharacterSheetMonsterLevel = 1414, + + /// + /// keystone_acrobatics_energy_shield_+%_final + /// + KeystoneAcrobaticsEnergyShieldPctFinal = 1415, + + /// + /// keystone_acrobatics_physical_damage_reduction_rating_+%_final + /// + KeystoneAcrobaticsPhysicalDamageReductionRatingPctFinal = 1416, + + /// + /// life_recovery_per_minute_from_leech + /// + LifeRecoveryPerMinuteFromLeech = 1417, + + /// + /// mana_recovery_per_minute_from_leech + /// + ManaRecoveryPerMinuteFromLeech = 1418, + + /// + /// energy_shield_recovery_per_minute_from_leech + /// + EnergyShieldRecoveryPerMinuteFromLeech = 1419, + + /// + /// life_recovery_per_minute + /// + LifeRecoveryPerMinute = 1420, + + /// + /// mana_recovery_per_minute + /// + ManaRecoveryPerMinute = 1421, + + /// + /// energy_shield_recovery_per_minute + /// + EnergyShieldRecoveryPerMinute = 1422, + + /// + /// extra_critical_rolls + /// + ExtraCriticalRolls = 1423, + + /// + /// combined_all_damage_+% + /// + CombinedAllDamagePct = 1424, + + /// + /// combined_all_damage_+%_final + /// + CombinedAllDamagePctFinal = 1425, + + /// + /// combined_spell_all_damage_+% + /// + CombinedSpellAllDamagePct = 1426, + + /// + /// combined_spell_all_damage_+%_final + /// + CombinedSpellAllDamagePctFinal = 1427, + + /// + /// combined_attack_all_damage_+% + /// + CombinedAttackAllDamagePct = 1428, + + /// + /// combined_attack_all_damage_+%_final + /// + CombinedAttackAllDamagePctFinal = 1429, + + /// + /// combined_main_hand_attack_all_damage_+% + /// + CombinedMainHandAttackAllDamagePct = 1430, + + /// + /// combined_off_hand_attack_all_damage_+% + /// + CombinedOffHandAttackAllDamagePct = 1431, + + /// + /// combined_physical_damage_+% + /// + CombinedPhysicalDamagePct = 1432, + + /// + /// combined_physical_damage_+%_final + /// + CombinedPhysicalDamagePctFinal = 1433, + + /// + /// combined_attack_physical_damage_+% + /// + CombinedAttackPhysicalDamagePct = 1434, + + /// + /// combined_attack_physical_damage_+%_final + /// + CombinedAttackPhysicalDamagePctFinal = 1435, + + /// + /// combined_main_hand_attack_physical_damage_+% + /// + CombinedMainHandAttackPhysicalDamagePct = 1436, + + /// + /// combined_off_hand_attack_physical_damage_+% + /// + CombinedOffHandAttackPhysicalDamagePct = 1437, + + /// + /// combined_main_hand_attack_physical_damage_+%_final + /// + CombinedMainHandAttackPhysicalDamagePctFinal = 1438, + + /// + /// combined_off_hand_attack_physical_damage_+%_final + /// + CombinedOffHandAttackPhysicalDamagePctFinal = 1439, + + /// + /// combined_fire_damage_+% + /// + CombinedFireDamagePct = 1440, + + /// + /// combined_fire_damage_+%_final + /// + CombinedFireDamagePctFinal = 1441, + + /// + /// combined_cold_damage_+% + /// + CombinedColdDamagePct = 1442, + + /// + /// combined_cold_damage_+%_final + /// + CombinedColdDamagePctFinal = 1443, + + /// + /// combined_lightning_damage_+% + /// + CombinedLightningDamagePct = 1444, + + /// + /// combined_lightning_damage_+%_final + /// + CombinedLightningDamagePctFinal = 1445, + + /// + /// combined_chaos_damage_+% + /// + CombinedChaosDamagePct = 1446, + + /// + /// combined_chaos_damage_+%_final + /// + CombinedChaosDamagePctFinal = 1447, + + /// + /// combined_elemental_damage_+% + /// + CombinedElementalDamagePct = 1448, + + /// + /// combined_elemental_damage_+%_final + /// + CombinedElementalDamagePctFinal = 1449, + + /// + /// combined_attack_fire_damage_+% + /// + CombinedAttackFireDamagePct = 1450, + + /// + /// combined_attack_fire_damage_+%_final + /// + CombinedAttackFireDamagePctFinal = 1451, + + /// + /// combined_attack_cold_damage_+% + /// + CombinedAttackColdDamagePct = 1452, + + /// + /// combined_attack_cold_damage_+%_final + /// + CombinedAttackColdDamagePctFinal = 1453, + + /// + /// combined_spell_fire_damage_+% + /// + CombinedSpellFireDamagePct = 1454, + + /// + /// combined_spell_fire_damage_+%_final + /// + CombinedSpellFireDamagePctFinal = 1455, + + /// + /// combined_spell_cold_damage_+% + /// + CombinedSpellColdDamagePct = 1456, + + /// + /// combined_spell_lightning_damage_+% + /// + CombinedSpellLightningDamagePct = 1457, + + /// + /// combined_spell_lightning_damage_+%_final + /// + CombinedSpellLightningDamagePctFinal = 1458, + + /// + /// combined_spell_elemental_damage_+% + /// + CombinedSpellElementalDamagePct = 1459, + + /// + /// combined_spell_elemental_damage_+%_final + /// + CombinedSpellElementalDamagePctFinal = 1460, + + /// + /// combined_main_hand_attack_elemental_damage_+% + /// + CombinedMainHandAttackElementalDamagePct = 1461, + + /// + /// combined_off_hand_attack_elemental_damage_+% + /// + CombinedOffHandAttackElementalDamagePct = 1462, + + /// + /// combined_main_hand_attack_elemental_damage_+%_final + /// + CombinedMainHandAttackElementalDamagePctFinal = 1463, + + /// + /// combined_off_hand_attack_elemental_damage_+%_final + /// + CombinedOffHandAttackElementalDamagePctFinal = 1464, + + /// + /// combined_main_hand_attack_fire_damage_+% + /// + CombinedMainHandAttackFireDamagePct = 1465, + + /// + /// combined_off_hand_attack_fire_damage_+% + /// + CombinedOffHandAttackFireDamagePct = 1466, + + /// + /// combined_main_hand_attack_cold_damage_+% + /// + CombinedMainHandAttackColdDamagePct = 1467, + + /// + /// combined_off_hand_attack_cold_damage_+% + /// + CombinedOffHandAttackColdDamagePct = 1468, + + /// + /// combined_main_hand_attack_lightning_damage_+% + /// + CombinedMainHandAttackLightningDamagePct = 1469, + + /// + /// combined_off_hand_attack_lightning_damage_+% + /// + CombinedOffHandAttackLightningDamagePct = 1470, + + /// + /// combined_main_hand_attack_chaos_damage_+% + /// + CombinedMainHandAttackChaosDamagePct = 1471, + + /// + /// combined_off_hand_attack_chaos_damage_+% + /// + CombinedOffHandAttackChaosDamagePct = 1472, + + /// + /// spell_minimum_base_physical_damage + /// + SpellMinimumBasePhysicalDamage = 1473, + + /// + /// spell_maximum_base_physical_damage + /// + SpellMaximumBasePhysicalDamage = 1474, + + /// + /// spell_minimum_base_fire_damage + /// + SpellMinimumBaseFireDamage = 1475, + + /// + /// spell_maximum_base_fire_damage + /// + SpellMaximumBaseFireDamage = 1476, + + /// + /// spell_minimum_base_cold_damage + /// + SpellMinimumBaseColdDamage = 1477, + + /// + /// spell_maximum_base_cold_damage + /// + SpellMaximumBaseColdDamage = 1478, + + /// + /// spell_minimum_base_lightning_damage + /// + SpellMinimumBaseLightningDamage = 1479, + + /// + /// spell_maximum_base_lightning_damage + /// + SpellMaximumBaseLightningDamage = 1480, + + /// + /// spell_minimum_base_chaos_damage + /// + SpellMinimumBaseChaosDamage = 1481, + + /// + /// spell_maximum_base_chaos_damage + /// + SpellMaximumBaseChaosDamage = 1482, + + /// + /// is_projectile + /// + IsProjectile = 1483, + + /// + /// attack_is_melee + /// + AttackIsMelee = 1484, + + /// + /// base_lightning_damage_%_to_convert_to_fire + /// + BaseLightningDamagePctToConvertToFire = 1485, + + /// + /// base_lightning_damage_%_to_convert_to_cold + /// + BaseLightningDamagePctToConvertToCold = 1486, + + /// + /// base_fire_damage_%_to_convert_to_chaos + /// + BaseFireDamagePctToConvertToChaos = 1487, + + /// + /// base_cold_damage_%_to_convert_to_chaos + /// + BaseColdDamagePctToConvertToChaos = 1488, + + /// + /// base_lightning_damage_%_to_convert_to_chaos + /// + BaseLightningDamagePctToConvertToChaos = 1489, + + /// + /// skill_lightning_damage_%_to_convert_to_fire + /// + SkillLightningDamagePctToConvertToFire = 1490, + + /// + /// skill_lightning_damage_%_to_convert_to_cold + /// + SkillLightningDamagePctToConvertToCold = 1491, + + /// + /// skill_fire_damage_%_to_convert_to_chaos + /// + SkillFireDamagePctToConvertToChaos = 1492, + + /// + /// skill_cold_damage_%_to_convert_to_chaos + /// + SkillColdDamagePctToConvertToChaos = 1493, + + /// + /// skill_lightning_damage_%_to_convert_to_chaos + /// + SkillLightningDamagePctToConvertToChaos = 1494, + + /// + /// lightning_damage_%_to_convert_to_fire + /// + LightningDamagePctToConvertToFire = 1495, + + /// + /// lightning_damage_%_to_convert_to_cold + /// + LightningDamagePctToConvertToCold = 1496, + + /// + /// fire_damage_%_to_convert_to_chaos + /// + FireDamagePctToConvertToChaos = 1497, + + /// + /// cold_damage_%_to_convert_to_chaos + /// + ColdDamagePctToConvertToChaos = 1498, + + /// + /// lightning_damage_%_to_convert_to_chaos + /// + LightningDamagePctToConvertToChaos = 1499, + + /// + /// physical_damage_%_lost_to_conversion + /// + PhysicalDamagePctLostToConversion = 1500, + + /// + /// fire_damage_%_lost_to_conversion + /// + FireDamagePctLostToConversion = 1501, + + /// + /// cold_damage_%_lost_to_conversion + /// + ColdDamagePctLostToConversion = 1502, + + /// + /// lightning_damage_%_lost_to_conversion + /// + LightningDamagePctLostToConversion = 1503, + + /// + /// chaos_damage_%_lost_to_conversion + /// + ChaosDamagePctLostToConversion = 1504, + + /// + /// fire_damage_%_to_add_as_chaos + /// + FireDamagePctToAddAsChaos = 1505, + + /// + /// cold_damage_%_to_add_as_fire + /// + ColdDamagePctToAddAsFire = 1506, + + /// + /// cold_damage_%_to_add_as_chaos + /// + ColdDamagePctToAddAsChaos = 1507, + + /// + /// lightning_damage_%_to_add_as_fire + /// + LightningDamagePctToAddAsFire = 1508, + + /// + /// lightning_damage_%_to_add_as_cold + /// + LightningDamagePctToAddAsCold = 1509, + + /// + /// lightning_damage_%_to_add_as_chaos + /// + LightningDamagePctToAddAsChaos = 1510, + + /// + /// total_physical_damage_%_as_fire + /// + TotalPhysicalDamagePctAsFire = 1511, + + /// + /// total_physical_damage_%_as_cold + /// + TotalPhysicalDamagePctAsCold = 1512, + + /// + /// total_physical_damage_%_as_lightning + /// + TotalPhysicalDamagePctAsLightning = 1513, + + /// + /// total_physical_damage_%_as_chaos + /// + TotalPhysicalDamagePctAsChaos = 1514, + + /// + /// total_lightning_damage_%_as_fire + /// + TotalLightningDamagePctAsFire = 1515, + + /// + /// total_lightning_damage_%_as_cold + /// + TotalLightningDamagePctAsCold = 1516, + + /// + /// total_lightning_damage_%_as_chaos + /// + TotalLightningDamagePctAsChaos = 1517, + + /// + /// total_cold_damage_%_as_fire + /// + TotalColdDamagePctAsFire = 1518, + + /// + /// total_cold_damage_%_as_chaos + /// + TotalColdDamagePctAsChaos = 1519, + + /// + /// total_fire_damage_%_as_chaos + /// + TotalFireDamagePctAsChaos = 1520, + + /// + /// secondary_minimum_base_physical_damage + /// + SecondaryMinimumBasePhysicalDamage = 1521, + + /// + /// secondary_maximum_base_physical_damage + /// + SecondaryMaximumBasePhysicalDamage = 1522, + + /// + /// secondary_minimum_base_fire_damage + /// + SecondaryMinimumBaseFireDamage = 1523, + + /// + /// secondary_maximum_base_fire_damage + /// + SecondaryMaximumBaseFireDamage = 1524, + + /// + /// secondary_minimum_base_cold_damage + /// + SecondaryMinimumBaseColdDamage = 1525, + + /// + /// secondary_maximum_base_cold_damage + /// + SecondaryMaximumBaseColdDamage = 1526, + + /// + /// secondary_minimum_base_lightning_damage + /// + SecondaryMinimumBaseLightningDamage = 1527, + + /// + /// secondary_maximum_base_lightning_damage + /// + SecondaryMaximumBaseLightningDamage = 1528, + + /// + /// secondary_minimum_base_chaos_damage + /// + SecondaryMinimumBaseChaosDamage = 1529, + + /// + /// secondary_maximum_base_chaos_damage + /// + SecondaryMaximumBaseChaosDamage = 1530, + + /// + /// spell_total_minimum_base_physical_damage + /// + SpellTotalMinimumBasePhysicalDamage = 1531, + + /// + /// spell_total_maximum_base_physical_damage + /// + SpellTotalMaximumBasePhysicalDamage = 1532, + + /// + /// spell_total_minimum_base_fire_damage + /// + SpellTotalMinimumBaseFireDamage = 1533, + + /// + /// spell_total_maximum_base_fire_damage + /// + SpellTotalMaximumBaseFireDamage = 1534, + + /// + /// spell_total_minimum_base_cold_damage + /// + SpellTotalMinimumBaseColdDamage = 1535, + + /// + /// spell_total_maximum_base_cold_damage + /// + SpellTotalMaximumBaseColdDamage = 1536, + + /// + /// spell_total_minimum_base_lightning_damage + /// + SpellTotalMinimumBaseLightningDamage = 1537, + + /// + /// spell_total_maximum_base_lightning_damage + /// + SpellTotalMaximumBaseLightningDamage = 1538, + + /// + /// spell_total_minimum_base_chaos_damage + /// + SpellTotalMinimumBaseChaosDamage = 1539, + + /// + /// spell_total_maximum_base_chaos_damage + /// + SpellTotalMaximumBaseChaosDamage = 1540, + + /// + /// spell_total_minimum_added_physical_damage + /// + SpellTotalMinimumAddedPhysicalDamage = 1541, + + /// + /// spell_total_maximum_added_physical_damage + /// + SpellTotalMaximumAddedPhysicalDamage = 1542, + + /// + /// spell_total_minimum_added_fire_damage + /// + SpellTotalMinimumAddedFireDamage = 1543, + + /// + /// spell_total_maximum_added_fire_damage + /// + SpellTotalMaximumAddedFireDamage = 1544, + + /// + /// spell_total_minimum_added_cold_damage + /// + SpellTotalMinimumAddedColdDamage = 1545, + + /// + /// spell_total_maximum_added_cold_damage + /// + SpellTotalMaximumAddedColdDamage = 1546, + + /// + /// spell_total_minimum_added_lightning_damage + /// + SpellTotalMinimumAddedLightningDamage = 1547, + + /// + /// spell_total_maximum_added_lightning_damage + /// + SpellTotalMaximumAddedLightningDamage = 1548, + + /// + /// spell_total_minimum_added_chaos_damage + /// + SpellTotalMinimumAddedChaosDamage = 1549, + + /// + /// spell_total_maximum_added_chaos_damage + /// + SpellTotalMaximumAddedChaosDamage = 1550, + + /// + /// main_hand_total_minimum_base_physical_damage + /// + MainHandTotalMinimumBasePhysicalDamage = 1551, + + /// + /// main_hand_total_maximum_base_physical_damage + /// + MainHandTotalMaximumBasePhysicalDamage = 1552, + + /// + /// main_hand_total_minimum_base_fire_damage + /// + MainHandTotalMinimumBaseFireDamage = 1553, + + /// + /// main_hand_total_maximum_base_fire_damage + /// + MainHandTotalMaximumBaseFireDamage = 1554, + + /// + /// main_hand_total_minimum_base_cold_damage + /// + MainHandTotalMinimumBaseColdDamage = 1555, + + /// + /// main_hand_total_maximum_base_cold_damage + /// + MainHandTotalMaximumBaseColdDamage = 1556, + + /// + /// main_hand_total_minimum_base_lightning_damage + /// + MainHandTotalMinimumBaseLightningDamage = 1557, + + /// + /// main_hand_total_maximum_base_lightning_damage + /// + MainHandTotalMaximumBaseLightningDamage = 1558, + + /// + /// main_hand_total_minimum_base_chaos_damage + /// + MainHandTotalMinimumBaseChaosDamage = 1559, + + /// + /// main_hand_total_maximum_base_chaos_damage + /// + MainHandTotalMaximumBaseChaosDamage = 1560, + + /// + /// main_hand_total_minimum_added_physical_damage + /// + MainHandTotalMinimumAddedPhysicalDamage = 1561, + + /// + /// main_hand_total_maximum_added_physical_damage + /// + MainHandTotalMaximumAddedPhysicalDamage = 1562, + + /// + /// main_hand_total_minimum_added_fire_damage + /// + MainHandTotalMinimumAddedFireDamage = 1563, + + /// + /// main_hand_total_maximum_added_fire_damage + /// + MainHandTotalMaximumAddedFireDamage = 1564, + + /// + /// main_hand_total_minimum_added_cold_damage + /// + MainHandTotalMinimumAddedColdDamage = 1565, + + /// + /// main_hand_total_maximum_added_cold_damage + /// + MainHandTotalMaximumAddedColdDamage = 1566, + + /// + /// main_hand_total_minimum_added_lightning_damage + /// + MainHandTotalMinimumAddedLightningDamage = 1567, + + /// + /// main_hand_total_maximum_added_lightning_damage + /// + MainHandTotalMaximumAddedLightningDamage = 1568, + + /// + /// main_hand_total_minimum_added_chaos_damage + /// + MainHandTotalMinimumAddedChaosDamage = 1569, + + /// + /// main_hand_total_maximum_added_chaos_damage + /// + MainHandTotalMaximumAddedChaosDamage = 1570, + + /// + /// off_hand_total_minimum_base_physical_damage + /// + OffHandTotalMinimumBasePhysicalDamage = 1571, + + /// + /// off_hand_total_maximum_base_physical_damage + /// + OffHandTotalMaximumBasePhysicalDamage = 1572, + + /// + /// off_hand_total_minimum_base_fire_damage + /// + OffHandTotalMinimumBaseFireDamage = 1573, + + /// + /// off_hand_total_maximum_base_fire_damage + /// + OffHandTotalMaximumBaseFireDamage = 1574, + + /// + /// off_hand_total_minimum_base_cold_damage + /// + OffHandTotalMinimumBaseColdDamage = 1575, + + /// + /// off_hand_total_maximum_base_cold_damage + /// + OffHandTotalMaximumBaseColdDamage = 1576, + + /// + /// off_hand_total_minimum_base_lightning_damage + /// + OffHandTotalMinimumBaseLightningDamage = 1577, + + /// + /// off_hand_total_maximum_base_lightning_damage + /// + OffHandTotalMaximumBaseLightningDamage = 1578, + + /// + /// off_hand_total_minimum_base_chaos_damage + /// + OffHandTotalMinimumBaseChaosDamage = 1579, + + /// + /// off_hand_total_maximum_base_chaos_damage + /// + OffHandTotalMaximumBaseChaosDamage = 1580, + + /// + /// off_hand_total_minimum_added_physical_damage + /// + OffHandTotalMinimumAddedPhysicalDamage = 1581, + + /// + /// off_hand_total_maximum_added_physical_damage + /// + OffHandTotalMaximumAddedPhysicalDamage = 1582, + + /// + /// off_hand_total_minimum_added_fire_damage + /// + OffHandTotalMinimumAddedFireDamage = 1583, + + /// + /// off_hand_total_maximum_added_fire_damage + /// + OffHandTotalMaximumAddedFireDamage = 1584, + + /// + /// off_hand_total_minimum_added_cold_damage + /// + OffHandTotalMinimumAddedColdDamage = 1585, + + /// + /// off_hand_total_maximum_added_cold_damage + /// + OffHandTotalMaximumAddedColdDamage = 1586, + + /// + /// off_hand_total_minimum_added_lightning_damage + /// + OffHandTotalMinimumAddedLightningDamage = 1587, + + /// + /// off_hand_total_maximum_added_lightning_damage + /// + OffHandTotalMaximumAddedLightningDamage = 1588, + + /// + /// off_hand_total_minimum_added_chaos_damage + /// + OffHandTotalMinimumAddedChaosDamage = 1589, + + /// + /// off_hand_total_maximum_added_chaos_damage + /// + OffHandTotalMaximumAddedChaosDamage = 1590, + + /// + /// spell_minimum_added_physical_damage + /// + SpellMinimumAddedPhysicalDamage = 1591, + + /// + /// spell_maximum_added_physical_damage + /// + SpellMaximumAddedPhysicalDamage = 1592, + + /// + /// spell_minimum_added_fire_damage + /// + SpellMinimumAddedFireDamage = 1593, + + /// + /// spell_maximum_added_fire_damage + /// + SpellMaximumAddedFireDamage = 1594, + + /// + /// spell_minimum_added_cold_damage + /// + SpellMinimumAddedColdDamage = 1595, + + /// + /// spell_maximum_added_cold_damage + /// + SpellMaximumAddedColdDamage = 1596, + + /// + /// spell_minimum_added_lightning_damage + /// + SpellMinimumAddedLightningDamage = 1597, + + /// + /// spell_maximum_added_lightning_damage + /// + SpellMaximumAddedLightningDamage = 1598, + + /// + /// spell_minimum_added_chaos_damage + /// + SpellMinimumAddedChaosDamage = 1599, + + /// + /// spell_maximum_added_chaos_damage + /// + SpellMaximumAddedChaosDamage = 1600, + + /// + /// total_base_life_regeneration_rate_per_minute_% + /// + TotalBaseLifeRegenerationRatePerMinutePct = 1601, + + /// + /// total_base_life_regeneration_rate_per_minute + /// + TotalBaseLifeRegenerationRatePerMinute = 1602, + + /// + /// total_base_maximum_energy_shield + /// + TotalBaseMaximumEnergyShield = 1603, + + /// + /// combined_energy_shield_+% + /// + CombinedEnergyShieldPct = 1604, + + /// + /// combined_energy_shield_from_shield_+% + /// + CombinedEnergyShieldFromShieldPct = 1605, + + /// + /// combined_energy_shield_+%_final + /// + CombinedEnergyShieldPctFinal = 1606, + + /// + /// total_base_evasion_rating + /// + TotalBaseEvasionRating = 1607, + + /// + /// combined_evasion_rating_+% + /// + CombinedEvasionRatingPct = 1608, + + /// + /// combined_evasion_rating_from_shield_+% + /// + CombinedEvasionRatingFromShieldPct = 1609, + + /// + /// movement_velocity_+1%_per_X_evasion_rating + /// + MovementVelocity1PctPerXEvasionRating = 1610, + + /// + /// local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage + /// + LocalDisplaySocketedGemsHavePctChanceToIgniteWithFireDamage = 1611, + + /// + /// cannot_freeze_shock_ignite_on_critical + /// + CannotFreezeShockIgniteOnCritical = 1612, + + /// + /// no_critical_strike_multiplier + /// + NoCriticalStrikeMultiplier = 1613, + + /// + /// onslaught_on_crit_duration_ms + /// + OnslaughtOnCritDurationMs = 1614, + + /// + /// zombie_scale_+% + /// + ZombieScalePct = 1615, + + /// + /// zombie_physical_damage_+% + /// + ZombiePhysicalDamagePct = 1616, + + /// + /// faster_burn_from_attacks_% + /// + FasterBurnFromAttacksPct = 1617, + + /// + /// weapon_elemental_damage_+%_per_power_charge + /// + WeaponElementalDamagePctPerPowerCharge = 1618, + + /// + /// apply_linked_curses_on_hit_% + /// + ApplyLinkedCursesOnHitPct = 1619, + + /// + /// cannot_cast_curses + /// + CannotCastCurses = 1620, + + /// + /// spell_damage_modifiers_apply_to_attack_damage + /// + SpellDamageModifiersApplyToAttackDamage = 1621, + + /// + /// spell_damage_+%_from_dexterity + /// + SpellDamagePctFromDexterity = 1622, + + /// + /// agile_will + /// + AgileWill = 1623, + + /// + /// old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge + /// + OldDoNotUseManaLeechFromPhysicalDamagePctPerPowerCharge = 1624, + + /// + /// chaos_damage_can_shock + /// + ChaosDamageCanShock = 1625, + + /// + /// physical_damage_can_chill + /// + PhysicalDamageCanChill = 1626, + + /// + /// killed_monster_dropped_item_quantity_+%_when_frozen + /// + KilledMonsterDroppedItemQuantityPctWhenFrozen = 1627, + + /// + /// killed_monster_dropped_item_rarity_+%_when_shocked + /// + KilledMonsterDroppedItemRarityPctWhenShocked = 1628, + + /// + /// local_flask_removes_%_maximum_energy_shield_on_use + /// + LocalFlaskRemovesPctMaximumEnergyShieldOnUse = 1629, + + /// + /// local_flask_deals_%_maximum_life_as_chaos_damage_on_use + /// + LocalFlaskDealsPctMaximumLifeAsChaosDamageOnUse = 1630, + + /// + /// local_flask_gain_power_charges_on_use + /// + LocalFlaskGainPowerChargesOnUse = 1631, + + /// + /// local_flask_gain_frenzy_charges_on_use + /// + LocalFlaskGainFrenzyChargesOnUse = 1632, + + /// + /// local_flask_gain_endurance_charges_on_use + /// + LocalFlaskGainEnduranceChargesOnUse = 1633, + + /// + /// deaths_oath_debuff_on_kill_duration_ms + /// + DeathsOathDebuffOnKillDurationMs = 1634, + + /// + /// deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute + /// + DeathsOathDebuffOnKillBaseChaosDamageToDealPerMinute = 1635, + + /// + /// local_display_aura_base_chaos_damage_to_deal_per_minute + /// + LocalDisplayAuraBaseChaosDamageToDealPerMinute = 1636, + + /// + /// blood_footprints_from_item + /// + BloodFootprintsFromItem = 1637, + + /// + /// demigod_footprints_from_item + /// + DemigodFootprintsFromItem = 1638, + + /// + /// silver_footprints_from_item + /// + SilverFootprintsFromItem = 1639, + + /// + /// map_obas_trial + /// + MapObasTrial = 1640, + + /// + /// display_skill_deals_secondary_damage + /// + DisplaySkillDealsSecondaryDamage = 1641, + + /// + /// secondary_minimum_total_damage + /// + SecondaryMinimumTotalDamage = 1642, + + /// + /// secondary_maximum_total_damage + /// + SecondaryMaximumTotalDamage = 1643, + + /// + /// local_unique_counts_as_dual_wielding + /// + LocalUniqueCountsAsDualWielding = 1644, + + /// + /// unique_local_minimum_added_fire_damage_when_in_main_hand + /// + UniqueLocalMinimumAddedFireDamageWhenInMainHand = 1645, + + /// + /// unique_local_maximum_added_fire_damage_when_in_main_hand + /// + UniqueLocalMaximumAddedFireDamageWhenInMainHand = 1646, + + /// + /// unique_local_minimum_added_chaos_damage_when_in_off_hand + /// + UniqueLocalMinimumAddedChaosDamageWhenInOffHand = 1647, + + /// + /// unique_local_maximum_added_chaos_damage_when_in_off_hand + /// + UniqueLocalMaximumAddedChaosDamageWhenInOffHand = 1648, + + /// + /// unique_local_minimum_added_cold_damage_when_in_off_hand + /// + UniqueLocalMinimumAddedColdDamageWhenInOffHand = 1649, + + /// + /// unique_local_maximum_added_cold_damage_when_in_off_hand + /// + UniqueLocalMaximumAddedColdDamageWhenInOffHand = 1650, + + /// + /// map_floor_unlock_time_seconds_UNUSED + /// + MapFloorUnlockTimeSecondsUNUSED = 1651, + + /// + /// map_ignore_rogue_exile_rarity_bias + /// + MapIgnoreRogueExileRarityBias = 1652, + + /// + /// map_override_rogue_exile_min_level + /// + MapOverrideRogueExileMinLevel = 1653, + + /// + /// Attack Speed increase per Frenzy Charge + /// + AttackSpeedPctPerFrenzyCharge = 1654, + + /// + /// Cast Speed increase per Frenzy Charge + /// + CastSpeedPctPerFrenzyCharge = 1655, + + /// + /// attack_and_cast_speed_+%_per_frenzy_charge + /// + AttackAndCastSpeedPctPerFrenzyCharge = 1656, + + /// + /// converted_original_team + /// + ConvertedOriginalTeam = 1657, + + /// + /// damage_+%_vs_enemies_on_low_life_per_frenzy_charge + /// + DamagePctVsEnemiesOnLowLifePerFrenzyCharge = 1658, + + /// + /// damage_+%_per_frenzy_charge + /// + DamagePctPerFrenzyCharge = 1659, + + /// + /// damage_removed_from_mana_before_life_% + /// + DamageRemovedFromManaBeforeLifePct = 1660, + + /// + /// local_display_aura_damage_+% + /// + LocalDisplayAuraDamagePct = 1661, + + /// + /// attack_ignite_chance_% + /// + AttackIgniteChancePct = 1662, + + /// + /// melee_damage_+%_vs_frozen_enemies + /// + MeleeDamagePctVsFrozenEnemies = 1663, + + /// + /// melee_damage_+%_vs_shocked_enemies + /// + MeleeDamagePctVsShockedEnemies = 1664, + + /// + /// melee_damage_+%_vs_burning_enemies + /// + MeleeDamagePctVsBurningEnemies = 1665, + + /// + /// melee_damage_taken_%_to_deal_to_attacker + /// + MeleeDamageTakenPctToDealToAttacker = 1666, + + /// + /// mana_gained_when_hit + /// + ManaGainedWhenHit = 1667, + + /// + /// local_display_socketed_gems_get_reduced_mana_cost_level + /// + LocalDisplaySocketedGemsGetReducedManaCostLevel = 1668, + + /// + /// local_display_socketed_gems_get_faster_cast_level + /// + LocalDisplaySocketedGemsGetFasterCastLevel = 1669, + + /// + /// projectile_ignite_chance_% + /// + ProjectileIgniteChancePct = 1670, + + /// + /// projectile_freeze_chance_% + /// + ProjectileFreezeChancePct = 1671, + + /// + /// projectile_shock_chance_% + /// + ProjectileShockChancePct = 1672, + + /// + /// local_off_hand_visual_identity_override_hash + /// + LocalOffHandVisualIdentityOverrideHash = 1673, + + /// + /// elemental_reflect_damage_taken_+% + /// + ElementalReflectDamageTakenPct = 1674, + + /// + /// physical_reflect_damage_taken_+% + /// + PhysicalReflectDamageTakenPct = 1675, + + /// + /// local_left_ring_slot_elemental_reflect_damage_taken_+% + /// + LocalLeftRingSlotElementalReflectDamageTakenPct = 1676, + + /// + /// local_right_ring_slot_physical_reflect_damage_taken_+% + /// + LocalRightRingSlotPhysicalReflectDamageTakenPct = 1677, + + /// + /// grace_aura_evasion_rating_+%_final + /// + GraceAuraEvasionRatingPctFinal = 1678, + + /// + /// deal_no_attack_damage + /// + DealNoAttackDamage = 1679, + + /// + /// deal_no_main_hand_damage + /// + DealNoMainHandDamage = 1680, + + /// + /// deal_no_off_hand_damage + /// + DealNoOffHandDamage = 1681, + + /// + /// deal_no_spell_damage + /// + DealNoSpellDamage = 1682, + + /// + /// deal_no_secondary_damage + /// + DealNoSecondaryDamage = 1683, + + /// + /// deal_no_physical_damage + /// + DealNoPhysicalDamage = 1684, + + /// + /// deal_no_fire_damage + /// + DealNoFireDamage = 1685, + + /// + /// deal_no_cold_damage + /// + DealNoColdDamage = 1686, + + /// + /// deal_no_lightning_damage + /// + DealNoLightningDamage = 1687, + + /// + /// deal_no_chaos_damage + /// + DealNoChaosDamage = 1688, + + /// + /// deal_no_spell_physical_damage + /// + DealNoSpellPhysicalDamage = 1689, + + /// + /// deal_no_spell_fire_damage + /// + DealNoSpellFireDamage = 1690, + + /// + /// deal_no_spell_cold_damage + /// + DealNoSpellColdDamage = 1691, + + /// + /// deal_no_spell_lightning_damage + /// + DealNoSpellLightningDamage = 1692, + + /// + /// deal_no_spell_chaos_damage + /// + DealNoSpellChaosDamage = 1693, + + /// + /// deal_no_secondary_physical_damage + /// + DealNoSecondaryPhysicalDamage = 1694, + + /// + /// deal_no_secondary_fire_damage + /// + DealNoSecondaryFireDamage = 1695, + + /// + /// deal_no_secondary_cold_damage + /// + DealNoSecondaryColdDamage = 1696, + + /// + /// deal_no_secondary_lightning_damage + /// + DealNoSecondaryLightningDamage = 1697, + + /// + /// deal_no_secondary_chaos_damage + /// + DealNoSecondaryChaosDamage = 1698, + + /// + /// deal_no_main_hand_physical_damage + /// + DealNoMainHandPhysicalDamage = 1699, + + /// + /// deal_no_main_hand_fire_damage + /// + DealNoMainHandFireDamage = 1700, + + /// + /// deal_no_main_hand_cold_damage + /// + DealNoMainHandColdDamage = 1701, + + /// + /// deal_no_main_hand_lightning_damage + /// + DealNoMainHandLightningDamage = 1702, + + /// + /// deal_no_main_hand_chaos_damage + /// + DealNoMainHandChaosDamage = 1703, + + /// + /// deal_no_off_hand_physical_damage + /// + DealNoOffHandPhysicalDamage = 1704, + + /// + /// deal_no_off_hand_fire_damage + /// + DealNoOffHandFireDamage = 1705, + + /// + /// deal_no_off_hand_cold_damage + /// + DealNoOffHandColdDamage = 1706, + + /// + /// deal_no_off_hand_lightning_damage + /// + DealNoOffHandLightningDamage = 1707, + + /// + /// deal_no_off_hand_chaos_damage + /// + DealNoOffHandChaosDamage = 1708, + + /// + /// base_deal_no_main_hand_damage + /// + BaseDealNoMainHandDamage = 1709, + + /// + /// base_deal_no_off_hand_damage + /// + BaseDealNoOffHandDamage = 1710, + + /// + /// base_deal_no_spell_damage + /// + BaseDealNoSpellDamage = 1711, + + /// + /// base_deal_no_secondary_damage + /// + BaseDealNoSecondaryDamage = 1712, + + /// + /// base_deal_no_attack_damage + /// + BaseDealNoAttackDamage = 1713, + + /// + /// base_deal_no_physical_damage + /// + BaseDealNoPhysicalDamage = 1714, + + /// + /// base_deal_no_fire_damage + /// + BaseDealNoFireDamage = 1715, + + /// + /// base_deal_no_cold_damage + /// + BaseDealNoColdDamage = 1716, + + /// + /// base_deal_no_lightning_damage + /// + BaseDealNoLightningDamage = 1717, + + /// + /// base_deal_no_chaos_damage + /// + BaseDealNoChaosDamage = 1718, + + /// + /// local_can_only_deal_damage_with_this_weapon + /// + LocalCanOnlyDealDamageWithThisWeapon = 1719, + + /// + /// reave_area_of_effect_+%_final_per_stage + /// + ReaveAreaOfEffectPctFinalPerStage = 1720, + + /// + /// skill_can_add_multiple_charges_per_action + /// + SkillCanAddMultipleChargesPerAction = 1721, + + /// + /// local_charges_used_+% + /// + LocalChargesUsedPct = 1722, + + /// + /// non_critical_damage_multiplier_+% + /// + NonCriticalDamageMultiplierPct = 1723, + + /// + /// skill_sound_variation + /// + SkillSoundVariation = 1724, + + /// + /// unique_map_boss_number_of_rare_items_to_drop + /// + UniqueMapBossNumberOfRareItemsToDrop = 1725, + + /// + /// unique_map_boss_class_of_rare_items_to_drop + /// + UniqueMapBossClassOfRareItemsToDrop = 1726, + + /// + /// base_cold_damage_to_deal_per_minute + /// + BaseColdDamageToDealPerMinute = 1727, + + /// + /// number_of_totems_summoned_in_formation + /// + NumberOfTotemsSummonedInFormation = 1728, + + /// + /// supported_active_skill_gem_level_+ + /// + SupportedActiveSkillGemLevel = 1729, + + /// + /// shock_art_variation + /// + ShockArtVariation = 1730, + + /// + /// support_multicast_cast_speed_+%_final + /// + SupportMulticastCastSpeedPctFinal = 1731, + + /// + /// global_attack_speed_+%_per_green_socket_on_item + /// + GlobalAttackSpeedPctPerGreenSocketOnItem = 1732, + + /// + /// global_weapon_physical_damage_+%_per_red_socket_on_item + /// + GlobalWeaponPhysicalDamagePctPerRedSocketOnItem = 1733, + + /// + /// old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item + /// + OldDoNotUseGlobalManaLeechFromPhysicalAttackDamagePctPerBlueSocketOnItem = 1734, + + /// + /// global_melee_range_+_per_white_socket_on_item + /// + GlobalMeleeRangePerWhiteSocketOnItem = 1735, + + /// + /// spell_damage_+%_per_5%_block_chance + /// + SpellDamagePctPer5PctBlockChance = 1736, + + /// + /// base_life_gained_on_spell_hit + /// + BaseLifeGainedOnSpellHit = 1737, + + /// + /// armour_%_to_leech_as_life_on_block + /// + ArmourPctToLeechAsLifeOnBlock = 1738, + + /// + /// energy_shield_%_to_lose_on_block + /// + EnergyShieldPctToLoseOnBlock = 1739, + + /// + /// light_radius_scales_with_energy_shield + /// + LightRadiusScalesWithEnergyShield = 1740, + + /// + /// fishing_range_+% + /// + FishingRangePct = 1741, + + /// + /// fishing_line_strength_+% + /// + FishingLineStrengthPct = 1742, + + /// + /// fish_quantity_+% + /// + FishQuantityPct = 1743, + + /// + /// fish_rarity_+% + /// + FishRarityPct = 1744, + + /// + /// fishing_pool_consumption_+% + /// + FishingPoolConsumptionPct = 1745, + + /// + /// fishing_lure_type + /// + FishingLureType = 1746, + + /// + /// fishing_hook_type + /// + FishingHookType = 1747, + + /// + /// cannot_be_damaged_by_things_outside_radius + /// + CannotBeDamagedByThingsOutsideRadius = 1748, + + /// + /// inside_shield + /// + InsideShield = 1749, + + /// + /// flask_effect_+% + /// + FlaskEffectPct = 1750, + + /// + /// chance_to_gain_endurance_charge_when_hit_% + /// + ChanceToGainEnduranceChargeWhenHitPct = 1751, + + /// + /// lose_all_endurance_charges_when_reaching_maximum + /// + LoseAllEnduranceChargesWhenReachingMaximum = 1752, + + /// + /// gain_onslaught_ms_when_reaching_maximum_endurance_charges + /// + GainOnslaughtMsWhenReachingMaximumEnduranceCharges = 1753, + + /// + /// cannot_gain_endurance_charges_while_have_onslaught + /// + CannotGainEnduranceChargesWhileHaveOnslaught = 1754, + + /// + /// has_onslaught + /// + HasOnslaught = 1755, + + /// + /// cannot_gain_endurance_charges + /// + CannotGainEnduranceCharges = 1756, + + /// + /// local_weapon_range_+ + /// + LocalWeaponRange = 1757, + + /// + /// off_hand_weapon_range_+ + /// + OffHandWeaponRange = 1758, + + /// + /// main_hand_weapon_range_+ + /// + MainHandWeaponRange = 1759, + + /// + /// Local Has X Sockets + /// + LocalHasXSockets = 1760, + + /// + /// weapon_physical_damage_+% + /// + WeaponPhysicalDamagePct = 1761, + + /// + /// maximum_critical_strike_chance + /// + MaximumCriticalStrikeChance = 1762, + + /// + /// chilled_monsters_take_+%_burning_damage + /// + ChilledMonstersTakePctBurningDamage = 1763, + + /// + /// unique_ignite_chance_%_when_in_main_hand + /// + UniqueIgniteChancePctWhenInMainHand = 1764, + + /// + /// unique_chill_duration_+%_when_in_off_hand + /// + UniqueChillDurationPctWhenInOffHand = 1765, + + /// + /// curse_on_melee_block_level_15_punishment + /// + CurseOnMeleeBlockLevel15Punishment = 1766, + + /// + /// curse_on_projectile_block_level_15_temporal_chains + /// + CurseOnProjectileBlockLevel15TemporalChains = 1767, + + /// + /// curse_on_spell_block_level_15_elemental_weakness + /// + CurseOnSpellBlockLevel15ElementalWeakness = 1768, + + /// + /// local_display_socketed_gems_get_item_quantity_+% + /// + LocalDisplaySocketedGemsGetItemQuantityPct = 1769, + + /// + /// local_display_socketed_gems_get_iron_will_level + /// + LocalDisplaySocketedGemsGetIronWillLevel = 1770, + + /// + /// gain_onslaught_on_stun_duration_ms + /// + GainOnslaughtOnStunDurationMs = 1771, + + /// + /// cast_linked_spells_on_attack_hit_% + /// + CastLinkedSpellsOnAttackHitPct = 1772, + + /// + /// spectres_have_aura_cast_attack_move_speed_+% + /// + SpectresHaveAuraCastAttackMoveSpeedPct = 1773, + + /// + /// physical_damage_reduction_rating_per_level + /// + PhysicalDamageReductionRatingPerLevel = 1774, + + /// + /// maximum_life_per_10_levels + /// + MaximumLifePer10Levels = 1775, + + /// + /// resist_all_elements_%_per_10_levels + /// + ResistAllElementsPctPer10Levels = 1776, + + /// + /// chance_to_gain_random_curse_when_hit_%_per_10_levels + /// + ChanceToGainRandomCurseWhenHitPctPer10Levels = 1777, + + /// + /// chance_to_gain_random_curse_when_hit_% + /// + ChanceToGainRandomCurseWhenHitPct = 1778, + + /// + /// curse_on_hit_%_flammability + /// + CurseOnHitPctFlammability = 1779, + + /// + /// support_trap_damage_+%_final + /// + SupportTrapDamagePctFinal = 1780, + + /// + /// number_of_additional_traps_to_throw + /// + NumberOfAdditionalTrapsToThrow = 1781, + + /// + /// number_of_traps_to_throw + /// + NumberOfTrapsToThrow = 1782, + + /// + /// projectiles_nova + /// + ProjectilesNova = 1783, + + /// + /// support_multithrow_damage_+%_final + /// + SupportMultithrowDamagePctFinal = 1784, + + /// + /// suppressing_fire_debuff_cast_speed_+%_final + /// + SuppressingFireDebuffCastSpeedPctFinal = 1785, + + /// + /// suppressing_fire_debuff_non_melee_attack_speed_+%_final + /// + SuppressingFireDebuffNonMeleeAttackSpeedPctFinal = 1786, + + /// + /// cast_on_death_% + /// + CastOnDeathPct = 1787, + + /// + /// accuracy_rating_+%_per_frenzy_charge + /// + AccuracyRatingPctPerFrenzyCharge = 1788, + + /// + /// base_skill_is_trapped + /// + BaseSkillIsTrapped = 1789, + + /// + /// base_skill_is_mined + /// + BaseSkillIsMined = 1790, + + /// + /// base_skill_is_totemified + /// + BaseSkillIsTotemified = 1791, + + /// + /// trap_damage_+% + /// + TrapDamagePct = 1792, + + /// + /// totem_damage_+% + /// + TotemDamagePct = 1793, + + /// + /// mine_damage_+% + /// + MineDamagePct = 1794, + + /// + /// monster_reverse_point_blank_damage_-%_at_minimum_range + /// + MonsterReversePointBlankDamagePctAtMinimumRange = 1795, + + /// + /// frenzy_charge_duration_+%_per_frenzy_charge + /// + FrenzyChargeDurationPctPerFrenzyCharge = 1796, + + /// + /// Frenzy Charge duration increase + /// + VirtualFrenzyChargeDurationPct = 1797, + + /// + /// attacks_poison_while_at_max_frenzy_charges + /// + AttacksPoisonWhileAtMaxFrenzyCharges = 1798, + + /// + /// attacks_poison + /// + AttacksPoison = 1799, + + /// + /// gain_endurance_charge_on_melee_stun + /// + GainEnduranceChargeOnMeleeStun = 1800, + + /// + /// damage_taken_+%_vs_demons + /// + DamageTakenPctVsDemons = 1801, + + /// + /// damage_+%_vs_demons + /// + DamagePctVsDemons = 1802, + + /// + /// local_recharge_on_demon_killed + /// + LocalRechargeOnDemonKilled = 1803, + + /// + /// local_unique_flask_damage_taken_+%_vs_demons_while_healing + /// + LocalUniqueFlaskDamageTakenPctVsDemonsWhileHealing = 1804, + + /// + /// local_unique_flask_damage_+%_vs_demons_while_healing + /// + LocalUniqueFlaskDamagePctVsDemonsWhileHealing = 1805, + + /// + /// chance_to_apply_suppression_on_hit_% + /// + ChanceToApplySuppressionOnHitPct = 1806, + + /// + /// is_frozen + /// + IsFrozen = 1807, + + /// + /// is_chilled + /// + IsChilled = 1808, + + /// + /// is_ignited + /// + IsIgnited = 1809, + + /// + /// curses_reflected_to_self + /// + CursesReflectedToSelf = 1810, + + /// + /// movement_speed_bonus_when_throwing_trap_ms + /// + MovementSpeedBonusWhenThrowingTrapMs = 1811, + + /// + /// local_display_socketed_gems_get_trap_level + /// + LocalDisplaySocketedGemsGetTrapLevel = 1812, + + /// + /// poison_on_melee_critical_strike_% + /// + PoisonOnMeleeCriticalStrikePct = 1813, + + /// + /// shocks_reflected_to_self + /// + ShocksReflectedToSelf = 1814, + + /// + /// damage_+%_per_shock + /// + DamagePctPerShock = 1815, + + /// + /// movement_velocity_+%_per_shock + /// + MovementVelocityPctPerShock = 1816, + + /// + /// damage_+1%_per_X_strength + /// + Damage1PctPerXStrength = 1817, + + /// + /// physical_damage_reduction_rating_+1%_per_X_strength + /// + PhysicalDamageReductionRating1PctPerXStrength = 1818, + + /// + /// damage_+1%_per_X_strength_when_in_main_hand + /// + Damage1PctPerXStrengthWhenInMainHand = 1819, + + /// + /// physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand + /// + PhysicalDamageReductionRating1PctPerXStrengthWhenInOffHand = 1820, + + /// + /// local_display_socketed_gems_get_curse_reflection + /// + LocalDisplaySocketedGemsGetCurseReflection = 1821, + + /// + /// freeze_mine_cold_resistance_+_while_frozen + /// + FreezeMineColdResistanceWhileFrozen = 1822, + + /// + /// max_corrupted_blood_stacks + /// + MaxCorruptedBloodStacks = 1823, + + /// + /// current_corrupted_blood_stacks + /// + CurrentCorruptedBloodStacks = 1824, + + /// + /// physical_damage_taken_per_minute + /// + PhysicalDamageTakenPerMinute = 1825, + + /// + /// base_physical_damage_taken_per_minute_per_corrupted_blood_stack + /// + BasePhysicalDamageTakenPerMinutePerCorruptedBloodStack = 1826, + + /// + /// firestorm_drop_burning_ground_duration_ms + /// + FirestormDropBurningGroundDurationMs = 1827, + + /// + /// firestorm_base_area_of_effect_+% + /// + FirestormBaseAreaOfEffectPct = 1828, + + /// + /// Mine Duration increase + /// + MineDurationPct = 1829, + + /// + /// display_monster_spike_nova_on_death_text + /// + DisplayMonsterSpikeNovaOnDeathText = 1830, + + /// + /// display_monster_ice_spear_nova_on_death_text + /// + DisplayMonsterIceSpearNovaOnDeathText = 1831, + + /// + /// skill_unusable + /// + SkillUnusable = 1832, + + /// + /// cast_linked_spells_on_attack_crit_% + /// + CastLinkedSpellsOnAttackCritPct = 1833, + + /// + /// cast_linked_spells_on_melee_kill_% + /// + CastLinkedSpellsOnMeleeKillPct = 1834, + + /// + /// spell_uncastable_if_triggerable + /// + SpellUncastableIfTriggerable = 1835, + + /// + /// mine_detonation_is_instant + /// + MineDetonationIsInstant = 1836, + + /// + /// trap_damage_penetrates_%_elemental_resistance + /// + TrapDamagePenetratesPctElementalResistance = 1837, + + /// + /// mine_damage_penetrates_%_elemental_resistance + /// + MineDamagePenetratesPctElementalResistance = 1838, + + /// + /// traps_invulnerable_for_duration_ms + /// + TrapsInvulnerableForDurationMs = 1839, + + /// + /// mines_invulnerable_for_duration_ms + /// + MinesInvulnerableForDurationMs = 1840, + + /// + /// totem_elemental_resistance_% + /// + TotemElementalResistancePct = 1841, + + /// + /// totem_additional_physical_damage_reduction_% + /// + TotemAdditionalPhysicalDamageReductionPct = 1842, + + /// + /// Mine Detonation Radius increase + /// + MineDetonationRadiusPct = 1843, + + /// + /// totem_skill_cast_speed_+% + /// + TotemSkillCastSpeedPct = 1844, + + /// + /// totem_skill_attack_speed_+% + /// + TotemSkillAttackSpeedPct = 1845, + + /// + /// Mine Throwing Speed increase + /// + MineLayingSpeedPct = 1846, + + /// + /// cyclone_places_ground_ice + /// + CyclonePlacesGroundIce = 1847, + + /// + /// leap_slam_base_ground_fire_damage_to_deal_per_minute + /// + LeapSlamBaseGroundFireDamageToDealPerMinute = 1848, + + /// + /// projectiles_return_if_no_hit_object + /// + ProjectilesReturnIfNoHitObject = 1849, + + /// + /// cast_on_stunned_% + /// + CastOnStunnedPct = 1850, + + /// + /// cast_on_damage_taken_% + /// + CastOnDamageTakenPct = 1851, + + /// + /// cast_on_damage_taken_threshold + /// + CastOnDamageTakenThreshold = 1852, + + /// + /// deal_no_non_fire_damage + /// + DealNoNonFireDamage = 1853, + + /// + /// ice_nova_places_ground_ice + /// + IceNovaPlacesGroundIce = 1854, + + /// + /// shock_nova_places_X_ground_lightning_patches + /// + ShockNovaPlacesXGroundLightningPatches = 1855, + + /// + /// ignores_proximity_shield + /// + IgnoresProximityShield = 1856, + + /// + /// emerge_speed_+% + /// + EmergeSpeedPct = 1857, + + /// + /// animated_armour_replace_off_hand_weapon + /// + AnimatedArmourReplaceOffHandWeapon = 1858, + + /// + /// map_no_exiles + /// + MapNoExiles = 1859, + + /// + /// animate_item_maximum_level_requirement + /// + AnimateItemMaximumLevelRequirement = 1860, + + /// + /// phase_through_objects + /// + PhaseThroughObjects = 1861, + + /// + /// delete_on_death + /// + DeleteOnDeath = 1862, + + /// + /// corpse_consumption_mana_to_gain + /// + CorpseConsumptionManaToGain = 1863, + + /// + /// fixed_projectile_spread + /// + FixedProjectileSpread = 1864, + + /// + /// Fire And Cold Damage Resistance % + /// + FireAndColdDamageResistancePct = 1865, + + /// + /// Fire And Lightning Damage Resistance % + /// + FireAndLightningDamageResistancePct = 1866, + + /// + /// Cold And Lightning Damage Resistance % + /// + ColdAndLightningDamageResistancePct = 1867, + + /// + /// display_monster_mod_nemesis_test + /// + DisplayMonsterModNemesisTest = 1868, + + /// + /// base_damage_not_from_skill_user + /// + BaseDamageNotFromSkillUser = 1869, + + /// + /// map_rare_monsters_have_nemesis_mod + /// + MapRareMonstersHaveNemesisMod = 1870, + + /// + /// display_monster_has_firestorm_daemon + /// + DisplayMonsterHasFirestormDaemon = 1871, + + /// + /// monster_raises_after_death + /// + MonsterRaisesAfterDeath = 1872, + + /// + /// display_monster_is_apparition + /// + DisplayMonsterIsApparition = 1873, + + /// + /// monster_spawns_X_monsters_on_death + /// + MonsterSpawnsXMonstersOnDeath = 1874, + + /// + /// damage_+%_while_ignited + /// + DamagePctWhileIgnited = 1875, + + /// + /// physical_damage_reduction_rating_while_frozen + /// + PhysicalDamageReductionRatingWhileFrozen = 1876, + + /// + /// old_do_not_use_mana_leech_%_vs_shocked_enemies + /// + OldDoNotUseManaLeechPctVsShockedEnemies = 1877, + + /// + /// old_do_not_use_life_leech_%_vs_frozen_enemies + /// + OldDoNotUseLifeLeechPctVsFrozenEnemies = 1878, + + /// + /// damage_+%_vs_rare_monsters + /// + DamagePctVsRareMonsters = 1879, + + /// + /// damage_+%_vs_enemies_per_freeze_shock_ignite + /// + DamagePctVsEnemiesPerFreezeShockIgnite = 1880, + + /// + /// chance_to_freeze_shock_ignite_% + /// + ChanceToFreezeShockIgnitePct = 1881, + + /// + /// shrine_buff_effect_on_self_+% + /// + ShrineBuffEffectOnSelfPct = 1882, + + /// + /// shrine_effect_duration_+% + /// + ShrineEffectDurationPct = 1883, + + /// + /// local_unique_flask_cannot_recover_life_while_healing + /// + LocalUniqueFlaskCannotRecoverLifeWhileHealing = 1884, + + /// + /// local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration + /// + LocalUniqueFlaskRecoverPctMaximumLifeWhenEffectReachesDuration = 1885, + + /// + /// local_unique_flask_no_mana_cost_while_healing + /// + LocalUniqueFlaskNoManaCostWhileHealing = 1886, + + /// + /// shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy + /// + ShockXNearbyEnemiesFor2SOnKillingShockedEnemy = 1887, + + /// + /// ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy + /// + IgniteXNearbyEnemiesFor4SOnKillingIgnitedEnemy = 1888, + + /// + /// Additional chance to Ignite enemies + /// + ChanceToIgnitePct = 1889, + + /// + /// Additional chance to Shock enemies + /// + ChanceToShockPct = 1890, + + /// + /// Additional chance to Freeze enemies + /// + ChanceToFreezePct = 1891, + + /// + /// echoing_shrine_cast_speed_+%_final + /// + EchoingShrineCastSpeedPctFinal = 1892, + + /// + /// echoing_shrine_attack_speed_+%_final + /// + EchoingShrineAttackSpeedPctFinal = 1893, + + /// + /// display_monster_has_proximity_shield_daemon + /// + DisplayMonsterHasProximityShieldDaemon = 1894, + + /// + /// display_monster_has_summon_skeletons_daemon + /// + DisplayMonsterHasSummonSkeletonsDaemon = 1895, + + /// + /// display_monster_has_smoke_mine_daemon + /// + DisplayMonsterHasSmokeMineDaemon = 1896, + + /// + /// monster_drop_additional_unique_items + /// + MonsterDropAdditionalUniqueItems = 1897, + + /// + /// base_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack + /// + BaseCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 1898, + + /// + /// cannot_recover_life + /// + CannotRecoverLife = 1899, + + /// + /// recover_%_maximum_life_when_buff_reaches_duration + /// + RecoverPctMaximumLifeWhenBuffReachesDuration = 1900, + + /// + /// no_mana_cost + /// + NoManaCost = 1901, + + /// + /// gain_rare_monster_mods_on_kill_ms + /// + GainRareMonsterModsOnKillMs = 1902, + + /// + /// corpse_cannot_be_destroyed + /// + CorpseCannotBeDestroyed = 1903, + + /// + /// cannot_be_dominated + /// + CannotBeDominated = 1904, + + /// + /// lightning_warp_shocked_ground_duration_ms + /// + LightningWarpShockedGroundDurationMs = 1905, + + /// + /// physical_damage_%_to_add_as_random_element + /// + PhysicalDamagePctToAddAsRandomElement = 1906, + + /// + /// always_cause_elemental_status_ailment + /// + AlwaysCauseElementalStatusAilment = 1907, + + /// + /// reflect_projectiles_at_owner + /// + ReflectProjectilesAtOwner = 1908, + + /// + /// base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute + /// + BaseRighteousFirePctOfMaxEnergyShieldToDealToNearbyPerMinute = 1909, + + /// + /// base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute + /// + BaseNonlethalFireDamagePctOfMaximumEnergyShieldTakenPerMinute = 1910, + + /// + /// nemesis_transform_on_low_life + /// + NemesisTransformOnLowLife = 1911, + + /// + /// attack_and_cast_speed_+% + /// + AttackAndCastSpeedPct = 1912, + + /// + /// cleave_damage_+%_final_while_dual_wielding + /// + CleaveDamagePctFinalWhileDualWielding = 1913, + + /// + /// monster_level_scale_maximum_mana_and_mana_cost_+%_final + /// + MonsterLevelScaleMaximumManaAndManaCostPctFinal = 1914, + + /// + /// grant_actor_scale_+%_to_aura_owner_on_death + /// + GrantActorScalePctToAuraOwnerOnDeath = 1915, + + /// + /// grant_attack_speed_+%_to_aura_owner_on_death + /// + GrantAttackSpeedPctToAuraOwnerOnDeath = 1916, + + /// + /// grant_cast_speed_+%_to_aura_owner_on_death + /// + GrantCastSpeedPctToAuraOwnerOnDeath = 1917, + + /// + /// grant_damage_reduction_%_to_aura_owner_on_death + /// + GrantDamageReductionPctToAuraOwnerOnDeath = 1918, + + /// + /// random_curse_on_hit_% + /// + RandomCurseOnHitPct = 1919, + + /// + /// random_curses_include_silence + /// + RandomCursesIncludeSilence = 1920, + + /// + /// is_twinned_unique_boss + /// + IsTwinnedUniqueBoss = 1921, + + /// + /// remove_flask_effects_on_hit_% + /// + RemoveFlaskEffectsOnHitPct = 1922, + + /// + /// remove_charges_on_hit_% + /// + RemoveChargesOnHitPct = 1923, + + /// + /// monster_casts_arctic_breath_text + /// + MonsterCastsArcticBreathText = 1924, + + /// + /// cast_on_death_damage_+%_final_while_dead + /// + CastOnDeathDamagePctFinalWhileDead = 1925, + + /// + /// cast_on_damage_taken_damage_+%_final + /// + CastOnDamageTakenDamagePctFinal = 1926, + + /// + /// life_gained_on_spell_hit + /// + LifeGainedOnSpellHit = 1927, + + /// + /// base_attacks_poison + /// + BaseAttacksPoison = 1928, + + /// + /// active_skill_attack_speed_+%_final + /// + ActiveSkillAttackSpeedPctFinal = 1929, + + /// + /// infinite_skill_effect_duration + /// + InfiniteSkillEffectDuration = 1930, + + /// + /// physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked + /// + PhysicalDamageReductionRatingPctWhileNotIgnitedFrozenShocked = 1931, + + /// + /// max_corrupted_blood_rain_stacks + /// + MaxCorruptedBloodRainStacks = 1932, + + /// + /// current_corrupted_blood_rain_stacks + /// + CurrentCorruptedBloodRainStacks = 1933, + + /// + /// base_physical_damage_taken_per_minute_per_corrupted_blood_rain_stack + /// + BasePhysicalDamageTakenPerMinutePerCorruptedBloodRainStack = 1934, + + /// + /// base_damage_removed_from_mana_before_life_% + /// + BaseDamageRemovedFromManaBeforeLifePct = 1935, + + /// + /// keystone_mana_shield + /// + KeystoneManaShield = 1936, + + /// + /// actor_scale_+% + /// + ActorScalePct = 1937, + + /// + /// capped_actor_scale_+% + /// + CappedActorScalePct = 1938, + + /// + /// cannot_stun + /// + CannotStun = 1939, + + /// + /// is_daemon + /// + IsDaemon = 1940, + + /// + /// disable_light + /// + DisableLight = 1941, + + /// + /// Base Chance To Dodge % + /// + BaseChanceToDodgePct = 1942, + + /// + /// base_chance_to_dodge_spells_% + /// + BaseChanceToDodgeSpellsPct = 1943, + + /// + /// map_allow_shrines + /// + MapAllowShrines = 1944, + + /// + /// aura_effect_+% + /// + AuraEffectPct = 1945, + + /// + /// display_monster_uses_far_shot_text + /// + DisplayMonsterUsesFarShotText = 1946, + + /// + /// monster_additional_rarity_of_dropped_items_in_merciless_+% + /// + MonsterAdditionalRarityOfDroppedItemsInMercilessPct = 1947, + + /// + /// monster_additional_quantity_of_dropped_items_in_merciless_+% + /// + MonsterAdditionalQuantityOfDroppedItemsInMercilessPct = 1948, + + /// + /// mortal_conviction_mana_reservation_+%_final + /// + MortalConvictionManaReservationPctFinal = 1949, + + /// + /// mana_reservation_+% + /// + ManaReservationPct = 1950, + + /// + /// additional_player_bonus_maximum_energy_shield_+%_final + /// + AdditionalPlayerBonusMaximumEnergyShieldPctFinal = 1951, + + /// + /// additional_player_bonus_monster_slain_flask_charges_granted_+%_final + /// + AdditionalPlayerBonusMonsterSlainFlaskChargesGrantedPctFinal = 1952, + + /// + /// display_monster_uses_suppressing_fire_text + /// + DisplayMonsterUsesSuppressingFireText = 1953, + + /// + /// display_monster_casts_devouring_totem_skill_text + /// + DisplayMonsterCastsDevouringTotemSkillText = 1954, + + /// + /// monster_additional_quantity_of_dropped_items_in_cruel_+% + /// + MonsterAdditionalQuantityOfDroppedItemsInCruelPct = 1955, + + /// + /// monster_additional_rarity_of_dropped_items_in_cruel_+% + /// + MonsterAdditionalRarityOfDroppedItemsInCruelPct = 1956, + + /// + /// supported_active_skill_gem_quality_% + /// + SupportedActiveSkillGemQualityPct = 1957, + + /// + /// map_rarity + /// + MapRarity = 1958, + + /// + /// animate_guardian_last_known_life + /// + AnimateGuardianLastKnownLife = 1959, + + /// + /// spell_only_castable_on_death + /// + SpellOnlyCastableOnDeath = 1960, + + /// + /// local_support_gem_max_skill_level_requirement_to_support + /// + LocalSupportGemMaxSkillLevelRequirementToSupport = 1961, + + /// + /// display_monster_casts_lightning_nova_text + /// + DisplayMonsterCastsLightningNovaText = 1962, + + /// + /// physical_damage_to_deal_per_minute + /// + PhysicalDamageToDealPerMinute = 1963, + + /// + /// base_physical_damage_to_deal_per_minute + /// + BasePhysicalDamageToDealPerMinute = 1964, + + /// + /// fire_damage_to_deal_per_minute + /// + FireDamageToDealPerMinute = 1965, + + /// + /// cold_damage_to_deal_per_minute + /// + ColdDamageToDealPerMinute = 1966, + + /// + /// lightning_damage_to_deal_per_minute + /// + LightningDamageToDealPerMinute = 1967, + + /// + /// base_lightning_damage_to_deal_per_minute + /// + BaseLightningDamageToDealPerMinute = 1968, + + /// + /// chaos_damage_to_deal_per_minute + /// + ChaosDamageToDealPerMinute = 1969, + + /// + /// base_chaos_damage_to_deal_per_minute + /// + BaseChaosDamageToDealPerMinute = 1970, + + /// + /// base_chaos_damage_%_of_maximum_life_to_deal_per_minute + /// + BaseChaosDamagePctOfMaximumLifeToDealPerMinute = 1971, + + /// + /// base_chaos_damage_taken_per_minute_per_viper_strike_orb + /// + BaseChaosDamageTakenPerMinutePerViperStrikeOrb = 1972, + + /// + /// combined_all_damage_over_time_+% + /// + CombinedAllDamageOverTimePct = 1973, + + /// + /// combined_all_damage_over_time_+%_final + /// + CombinedAllDamageOverTimePctFinal = 1974, + + /// + /// combined_physical_damage_over_time_+% + /// + CombinedPhysicalDamageOverTimePct = 1975, + + /// + /// combined_physical_damage_over_time_+%_final + /// + CombinedPhysicalDamageOverTimePctFinal = 1976, + + /// + /// combined_elemental_damage_over_time_+% + /// + CombinedElementalDamageOverTimePct = 1977, + + /// + /// combined_elemental_damage_over_time_+%_final + /// + CombinedElementalDamageOverTimePctFinal = 1978, + + /// + /// combined_fire_damage_over_time_+% + /// + CombinedFireDamageOverTimePct = 1979, + + /// + /// combined_fire_damage_over_time_+%_final + /// + CombinedFireDamageOverTimePctFinal = 1980, + + /// + /// combined_cold_damage_over_time_+% + /// + CombinedColdDamageOverTimePct = 1981, + + /// + /// combined_cold_damage_over_time_+%_final + /// + CombinedColdDamageOverTimePctFinal = 1982, + + /// + /// combined_lightning_damage_over_time_+% + /// + CombinedLightningDamageOverTimePct = 1983, + + /// + /// combined_lightning_damage_over_time_+%_final + /// + CombinedLightningDamageOverTimePctFinal = 1984, + + /// + /// combined_chaos_damage_over_time_+% + /// + CombinedChaosDamageOverTimePct = 1985, + + /// + /// combined_chaos_damage_over_time_+%_final + /// + CombinedChaosDamageOverTimePctFinal = 1986, + + /// + /// damage_over_time_+% + /// + DamageOverTimePct = 1987, + + /// + /// fire_damage_taken_per_minute + /// + FireDamageTakenPerMinute = 1988, + + /// + /// base_fire_damage_taken_per_minute + /// + BaseFireDamageTakenPerMinute = 1989, + + /// + /// cold_damage_taken_per_minute + /// + ColdDamageTakenPerMinute = 1990, + + /// + /// base_cold_damage_taken_per_minute + /// + BaseColdDamageTakenPerMinute = 1991, + + /// + /// lightning_damage_taken_per_minute + /// + LightningDamageTakenPerMinute = 1992, + + /// + /// base_lightning_damage_taken_per_minute + /// + BaseLightningDamageTakenPerMinute = 1993, + + /// + /// deal_no_damage_over_time + /// + DealNoDamageOverTime = 1994, + + /// + /// base_deal_no_damage_over_time + /// + BaseDealNoDamageOverTime = 1995, + + /// + /// deal_no_physical_damage_over_time + /// + DealNoPhysicalDamageOverTime = 1996, + + /// + /// deal_no_fire_damage_over_time + /// + DealNoFireDamageOverTime = 1997, + + /// + /// deal_no_cold_damage_over_time + /// + DealNoColdDamageOverTime = 1998, + + /// + /// deal_no_lightning_damage_over_time + /// + DealNoLightningDamageOverTime = 1999, + + /// + /// deal_no_chaos_damage_over_time + /// + DealNoChaosDamageOverTime = 2000, + + /// + /// unique_critical_strike_chance_+%_final + /// + UniqueCriticalStrikeChancePctFinal = 2001, + + /// + /// map_ground_lightning + /// + MapGroundLightning = 2002, + + /// + /// add_endurance_charge_on_kill + /// + AddEnduranceChargeOnKill = 2003, + + /// + /// unique_lose_all_endurance_charges_when_hit + /// + UniqueLoseAllEnduranceChargesWhenHit = 2004, + + /// + /// unique_gain_onslaught_when_hit_duration_ms + /// + UniqueGainOnslaughtWhenHitDurationMs = 2005, + + /// + /// chance_to_counter_strike_when_hit_% + /// + ChanceToCounterStrikeWhenHitPct = 2006, + + /// + /// hundred_times_average_damage_per_hit + /// + HundredTimesAverageDamagePerHit = 2007, + + /// + /// hundred_times_average_damage_per_skill_use + /// + HundredTimesAverageDamagePerSkillUse = 2008, + + /// + /// base_skill_show_average_damage_instead_of_dps + /// + BaseSkillShowAverageDamageInsteadOfDps = 2009, + + /// + /// display_hundred_times_damage_per_skill_use + /// + DisplayHundredTimesDamagePerSkillUse = 2010, + + /// + /// base_monster_will_be_deleted_on_death + /// + BaseMonsterWillBeDeletedOnDeath = 2011, + + /// + /// monster_will_be_deleted_on_death + /// + MonsterWillBeDeletedOnDeath = 2012, + + /// + /// charged_blast_spell_damage_+%_final_per_stack + /// + ChargedBlastSpellDamagePctFinalPerStack = 2013, + + /// + /// from_code_active_skill_spell_damage_+%_final + /// + FromCodeActiveSkillSpellDamagePctFinal = 2014, + + /// + /// leech_X_life_per_spell_cast + /// + LeechXLifePerSpellCast = 2015, + + /// + /// zero_elemental_resistance + /// + ZeroElementalResistance = 2016, + + /// + /// global_defences_+% + /// + GlobalDefencesPct = 2017, + + /// + /// minimum_lightning_damage_to_return_on_block + /// + MinimumLightningDamageToReturnOnBlock = 2018, + + /// + /// maximum_lightning_damage_to_return_on_block + /// + MaximumLightningDamageToReturnOnBlock = 2019, + + /// + /// leap_slam_spawn_X_zombies_on_impact + /// + LeapSlamSpawnXZombiesOnImpact = 2020, + + /// + /// culling_strike_on_burning_enemies + /// + CullingStrikeOnBurningEnemies = 2021, + + /// + /// gain_frenzy_charge_if_attack_ignites + /// + GainFrenzyChargeIfAttackIgnites = 2022, + + /// + /// map_monsters_are_immune_to_curses + /// + MapMonstersAreImmuneToCurses = 2023, + + /// + /// map_packs_are_animals + /// + MapPacksAreAnimals = 2024, + + /// + /// map_packs_are_demons + /// + MapPacksAreDemons = 2025, + + /// + /// map_packs_are_humanoids + /// + MapPacksAreHumanoids = 2026, + + /// + /// monster_drop_higher_level_gear + /// + MonsterDropHigherLevelGear = 2027, + + /// + /// regenerate_X_life_over_1_second_on_cast + /// + RegenerateXLifeOver1SecondOnCast = 2028, + + /// + /// map_monsters_gain_x_power_charges_every_20_seconds + /// + MapMonstersGainXPowerChargesEvery20Seconds = 2029, + + /// + /// map_monsters_gain_x_endurance_charges_every_20_seconds + /// + MapMonstersGainXEnduranceChargesEvery20Seconds = 2030, + + /// + /// damage_+%_per_10_levels + /// + DamagePctPer10Levels = 2031, + + /// + /// monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute + /// + MonsterCausticCloudOnDeathPctMaxDamageToDealPerMinute = 2032, + + /// + /// monster_caustic_cloud_on_death_base_area_of_effect_radius + /// + MonsterCausticCloudOnDeathBaseAreaOfEffectRadius = 2033, + + /// + /// monster_caustic_cloud_on_death_duration_ms + /// + MonsterCausticCloudOnDeathDurationMs = 2034, + + /// + /// chaos_damage_taken_+ + /// + ChaosDamageTaken = 2035, + + /// + /// local_socketed_curse_gem_level_+ + /// + LocalSocketedCurseGemLevel = 2036, + + /// + /// base_curse_duration_+% + /// + BaseCurseDurationPct = 2037, + + /// + /// curse_duration_+% + /// + CurseDurationPct = 2038, + + /// + /// curse_effect_duration + /// + CurseEffectDuration = 2039, + + /// + /// self_curse_duration_+% + /// + SelfCurseDurationPct = 2040, + + /// + /// local_display_socketed_gems_get_flee_level + /// + LocalDisplaySocketedGemsGetFleeLevel = 2041, + + /// + /// dexterity_+% + /// + DexterityPct = 2042, + + /// + /// strength_+% + /// + StrengthPct = 2043, + + /// + /// intelligence_+% + /// + IntelligencePct = 2044, + + /// + /// display_map_final_boss_drops_higher_level_gear + /// + DisplayMapFinalBossDropsHigherLevelGear = 2045, + + /// + /// chaos_resistance_+_while_using_flask + /// + ChaosResistanceWhileUsingFlask = 2046, + + /// + /// minimum_physical_damage_to_reflect_to_self_on_attack + /// + MinimumPhysicalDamageToReflectToSelfOnAttack = 2047, + + /// + /// maximum_physical_damage_to_reflect_to_self_on_attack + /// + MaximumPhysicalDamageToReflectToSelfOnAttack = 2048, + + /// + /// is_bleeding + /// + IsBleeding = 2049, + + /// + /// damage_+%_vs_bleeding_enemies + /// + DamagePctVsBleedingEnemies = 2050, + + /// + /// unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge + /// + UniqueGainOnslaughtWhenHitDurationMsPerEnduranceCharge = 2051, + + /// + /// fire_damage_taken_+% + /// + FireDamageTakenPct = 2052, + + /// + /// crits_have_culling_strike + /// + CritsHaveCullingStrike = 2053, + + /// + /// support_projectile_attack_physical_damage_+%_final + /// + SupportProjectileAttackPhysicalDamagePctFinal = 2054, + + /// + /// support_projectile_attack_speed_+%_final + /// + SupportProjectileAttackSpeedPctFinal = 2055, + + /// + /// supported_active_skill_gem_expereince_gained_+% + /// + SupportedActiveSkillGemExpereinceGainedPct = 2056, + + /// + /// flame_whip_damage_+%_final_vs_burning_enemies + /// + FlameWhipDamagePctFinalVsBurningEnemies = 2057, + + /// + /// unique_spread_poison_to_nearby_enemies_on_kill + /// + UniqueSpreadPoisonToNearbyEnemiesOnKill = 2058, + + /// + /// unique_spread_poison_to_nearby_allies_as_regeneration_on_kill + /// + UniqueSpreadPoisonToNearbyAlliesAsRegenerationOnKill = 2059, + + /// + /// uncapped_fire_damage_resistance_% + /// + UncappedFireDamageResistancePct = 2060, + + /// + /// uncapped_cold_damage_resistance_% + /// + UncappedColdDamageResistancePct = 2061, + + /// + /// uncapped_lightning_damage_resistance_% + /// + UncappedLightningDamageResistancePct = 2062, + + /// + /// uncapped_chaos_damage_resistance_% + /// + UncappedChaosDamageResistancePct = 2063, + + /// + /// local_ring_duplicate_other_ring + /// + LocalRingDuplicateOtherRing = 2064, + + /// + /// duplicate_ring_slot_1 + /// + DuplicateRingSlot1 = 2065, + + /// + /// duplicate_ring_slot_2 + /// + DuplicateRingSlot2 = 2066, + + /// + /// unique_fire_damage_shocks + /// + UniqueFireDamageShocks = 2067, + + /// + /// unique_cold_damage_ignites + /// + UniqueColdDamageIgnites = 2068, + + /// + /// unique_lightning_damage_freezes + /// + UniqueLightningDamageFreezes = 2069, + + /// + /// fire_damage_can_shock + /// + FireDamageCanShock = 2070, + + /// + /// cold_damage_can_ignite + /// + ColdDamageCanIgnite = 2071, + + /// + /// lightning_damage_can_freeze + /// + LightningDamageCanFreeze = 2072, + + /// + /// fire_damage_cannot_ignite + /// + FireDamageCannotIgnite = 2073, + + /// + /// cold_damage_cannot_freeze + /// + ColdDamageCannotFreeze = 2074, + + /// + /// lightning_damage_cannot_shock + /// + LightningDamageCannotShock = 2075, + + /// + /// can_catch_exotic_fish + /// + CanCatchExoticFish = 2076, + + /// + /// transfer_curses_to_X_nearby_enemies_on_kill + /// + TransferCursesToXNearbyEnemiesOnKill = 2077, + + /// + /// freeze_as_though_dealt_damage_+% + /// + FreezeAsThoughDealtDamagePct = 2078, + + /// + /// chill_prevention_ms_when_chilled + /// + ChillPreventionMsWhenChilled = 2079, + + /// + /// freeze_prevention_ms_when_frozen + /// + FreezePreventionMsWhenFrozen = 2080, + + /// + /// ignite_prevention_ms_when_ignited + /// + IgnitePreventionMsWhenIgnited = 2081, + + /// + /// shock_prevention_ms_when_shocked + /// + ShockPreventionMsWhenShocked = 2082, + + /// + /// grant_X_frenzy_charges_to_nearby_allies_on_death + /// + GrantXFrenzyChargesToNearbyAlliesOnDeath = 2083, + + /// + /// unique_gain_power_charge_on_non_crit + /// + UniqueGainPowerChargeOnNonCrit = 2084, + + /// + /// unique_lose_all_power_charges_on_crit + /// + UniqueLoseAllPowerChargesOnCrit = 2085, + + /// + /// curse_area_of_effect_+% + /// + CurseAreaOfEffectPct = 2086, + + /// + /// support_spell_totem_cast_speed_+%_final + /// + SupportSpellTotemCastSpeedPctFinal = 2087, + + /// + /// support_attack_totem_attack_speed_+%_final + /// + SupportAttackTotemAttackSpeedPctFinal = 2088, + + /// + /// map_non_unique_monsters_spawn_X_monsters_on_death + /// + MapNonUniqueMonstersSpawnXMonstersOnDeath = 2089, + + /// + /// local_unique_attacks_cast_socketed_lightning_spells_% + /// + LocalUniqueAttacksCastSocketedLightningSpellsPct = 2090, + + /// + /// main_hand_local_unique_attacks_cast_socketed_lightning_spells_% + /// + MainHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2091, + + /// + /// off_hand_local_unique_attacks_cast_socketed_lightning_spells_% + /// + OffHandLocalUniqueAttacksCastSocketedLightningSpellsPct = 2092, + + /// + /// local_display_aura_curse_effect_on_self_+% + /// + LocalDisplayAuraCurseEffectOnSelfPct = 2093, + + /// + /// flask_minion_heal_% + /// + FlaskMinionHealPct = 2094, + + /// + /// minion_block_% + /// + MinionBlockPct = 2095, + + /// + /// minion_physical_damage_reduction_rating + /// + MinionPhysicalDamageReductionRating = 2096, + + /// + /// untargetable_by_monster_ai + /// + UntargetableByMonsterAi = 2097, + + /// + /// virtual_untargetable_by_monster_ai + /// + VirtualUntargetableByMonsterAi = 2098, + + /// + /// untargetable_by_enemy_monster_ai + /// + UntargetableByEnemyMonsterAi = 2099, + + /// + /// desecrate_number_of_corpses_to_create + /// + DesecrateNumberOfCorpsesToCreate = 2100, + + /// + /// local_display_aura_damage_+%_allies_only + /// + LocalDisplayAuraDamagePctAlliesOnly = 2101, + + /// + /// map_invasion_monster_packs + /// + MapInvasionMonsterPacks = 2102, + + /// + /// base_spell_block_% + /// + BaseSpellBlockPct = 2103, + + /// + /// minion_attack_speed_+% + /// + MinionAttackSpeedPct = 2104, + + /// + /// minion_cast_speed_+% + /// + MinionCastSpeedPct = 2105, + + /// + /// old_do_not_use_minion_life_leech_from_any_damage_permyriad + /// + OldDoNotUseMinionLifeLeechFromAnyDamagePermyriad = 2106, + + /// + /// minion_life_regeneration_rate_per_minute_% + /// + MinionLifeRegenerationRatePerMinutePct = 2107, + + /// + /// minion_elemental_resistance_% + /// + MinionElementalResistancePct = 2108, + + /// + /// minion_chaos_resistance_% + /// + MinionChaosResistancePct = 2109, + + /// + /// skill_show_average_damage_instead_of_dps + /// + SkillShowAverageDamageInsteadOfDps = 2110, + + /// + /// offering_skill_effect_duration_per_corpse + /// + OfferingSkillEffectDurationPerCorpse = 2111, + + /// + /// unholy_might_on_kill_duration_ms + /// + UnholyMightOnKillDurationMs = 2112, + + /// + /// minion_unholy_might_on_kill_duration_ms + /// + MinionUnholyMightOnKillDurationMs = 2113, + + /// + /// chest_delay_drops_until_daemons_finish + /// + ChestDelayDropsUntilDaemonsFinish = 2114, + + /// + /// base_number_of_raging_spirits_allowed + /// + BaseNumberOfRagingSpiritsAllowed = 2115, + + /// + /// number_of_raging_spirits_allowed + /// + NumberOfRagingSpiritsAllowed = 2116, + + /// + /// chest_play_warning_sound + /// + ChestPlayWarningSound = 2117, + + /// + /// chest_drop_additional_unqiue_items + /// + ChestDropAdditionalUnqiueItems = 2118, + + /// + /// upheaval_number_of_spikes + /// + UpheavalNumberOfSpikes = 2119, + + /// + /// chest_display_summons_skeletons + /// + ChestDisplaySummonsSkeletons = 2120, + + /// + /// chest_display_ice_nova + /// + ChestDisplayIceNova = 2121, + + /// + /// chest_display_freeze + /// + ChestDisplayFreeze = 2122, + + /// + /// cyclone_places_ground_desecration_chaos_damage_per_minute + /// + CyclonePlacesGroundDesecrationChaosDamagePerMinute = 2123, + + /// + /// firestorm_drop_ground_ice_duration_ms + /// + FirestormDropGroundIceDurationMs = 2124, + + /// + /// vaal_burning_arrow_explode_on_hit + /// + VaalBurningArrowExplodeOnHit = 2125, + + /// + /// molten_shell_explode_each_hit + /// + MoltenShellExplodeEachHit = 2126, + + /// + /// desecrate_corpse_level + /// + DesecrateCorpseLevel = 2127, + + /// + /// lightning_warp_remove_delay + /// + LightningWarpRemoveDelay = 2128, + + /// + /// immortal_call_prevent_all_damage + /// + ImmortalCallPreventAllDamage = 2129, + + /// + /// power_siphon_fire_at_all_targets + /// + PowerSiphonFireAtAllTargets = 2130, + + /// + /// rain_of_arrows_place_shocking_ground_duration_ms + /// + RainOfArrowsPlaceShockingGroundDurationMs = 2131, + + /// + /// leap_slam_base_caustic_cloud_damage_to_deal_per_minute + /// + LeapSlamBaseCausticCloudDamageToDealPerMinute = 2132, + + /// + /// base_number_of_projectiles_in_spiral_nova + /// + BaseNumberOfProjectilesInSpiralNova = 2133, + + /// + /// projectile_spiral_nova_time_ms + /// + ProjectileSpiralNovaTimeMs = 2134, + + /// + /// projectile_spiral_nova_angle + /// + ProjectileSpiralNovaAngle = 2135, + + /// + /// kiweth_consume_leech_%_max_life + /// + KiwethConsumeLeechPctMaxLife = 2136, + + /// + /// ice_nova_number_of_repeats + /// + IceNovaNumberOfRepeats = 2137, + + /// + /// ice_nova_radius_+%_per_repeat + /// + IceNovaRadiusPctPerRepeat = 2138, + + /// + /// local_display_socketed_gems_have_iron_will + /// + LocalDisplaySocketedGemsHaveIronWill = 2139, + + /// + /// local_display_socketed_gems_chain_X_additional_times + /// + LocalDisplaySocketedGemsChainXAdditionalTimes = 2140, + + /// + /// old_do_not_use_base_life_leech_from_physical_damage_permyriad + /// + OldDoNotUseBaseLifeLeechFromPhysicalDamagePermyriad = 2141, + + /// + /// old_do_not_use_base_life_leech_from_fire_damage_permyriad + /// + OldDoNotUseBaseLifeLeechFromFireDamagePermyriad = 2142, + + /// + /// old_do_not_use_base_life_leech_from_cold_damage_permyriad + /// + OldDoNotUseBaseLifeLeechFromColdDamagePermyriad = 2143, + + /// + /// old_do_not_use_base_life_leech_from_lightning_damage_permyriad + /// + OldDoNotUseBaseLifeLeechFromLightningDamagePermyriad = 2144, + + /// + /// base_life_leech_from_chaos_damage_permyriad + /// + BaseLifeLeechFromChaosDamagePermyriad = 2145, + + /// + /// base_mana_leech_from_physical_damage_permyriad + /// + BaseManaLeechFromPhysicalDamagePermyriad = 2146, + + /// + /// base_mana_leech_from_fire_damage_permyriad + /// + BaseManaLeechFromFireDamagePermyriad = 2147, + + /// + /// base_mana_leech_from_cold_damage_permyriad + /// + BaseManaLeechFromColdDamagePermyriad = 2148, + + /// + /// old_do_not_use_base_mana_leech_from_lightning_damage_permyriad + /// + OldDoNotUseBaseManaLeechFromLightningDamagePermyriad = 2149, + + /// + /// base_mana_leech_from_chaos_damage_permyriad + /// + BaseManaLeechFromChaosDamagePermyriad = 2150, + + /// + /// base_leech_is_instant_on_critical + /// + BaseLeechIsInstantOnCritical = 2151, + + /// + /// local_socketed_vaal_gem_level_+ + /// + LocalSocketedVaalGemLevel = 2152, + + /// + /// elemental_damage_%_to_add_as_chaos + /// + ElementalDamagePctToAddAsChaos = 2153, + + /// + /// chance_to_ignite_%_while_using_flask + /// + ChanceToIgnitePctWhileUsingFlask = 2154, + + /// + /// chance_to_freeze_%_while_using_flask + /// + ChanceToFreezePctWhileUsingFlask = 2155, + + /// + /// chance_to_shock_%_while_using_flask + /// + ChanceToShockPctWhileUsingFlask = 2156, + + /// + /// stun_threshold_reduction_+%_while_using_flask + /// + StunThresholdReductionPctWhileUsingFlask = 2157, + + /// + /// local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing + /// + LocalUniqueFlaskPhysicalDamagePctToAddAsChaosWhileHealing = 2158, + + /// + /// local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing + /// + LocalUniqueFlaskElementalDamagePctToAddAsChaosWhileHealing = 2159, + + /// + /// old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing + /// + OldDoNotUseLocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 2160, + + /// + /// local_display_socketed_spells_repeat_count + /// + LocalDisplaySocketedSpellsRepeatCount = 2161, + + /// + /// map_ambush_chests + /// + MapAmbushChests = 2162, + + /// + /// atziri_do_not_gain_skill_charges + /// + AtziriDoNotGainSkillCharges = 2163, + + /// + /// chest_hidden_item_quantity_+% + /// + ChestHiddenItemQuantityPct = 2164, + + /// + /// chest_hidden_item_rarity_+% + /// + ChestHiddenItemRarityPct = 2165, + + /// + /// monster_drop_vaal_fragment_chance + /// + MonsterDropVaalFragmentChance = 2166, + + /// + /// summoned_monster_rarity + /// + SummonedMonsterRarity = 2167, + + /// + /// number_of_monsters_to_summon + /// + NumberOfMonstersToSummon = 2168, + + /// + /// chest_gems_drop_with_experience + /// + ChestGemsDropWithExperience = 2169, + + /// + /// chest_drops_additional_utility_flasks + /// + ChestDropsAdditionalUtilityFlasks = 2170, + + /// + /// chest_items_drop_identified + /// + ChestItemsDropIdentified = 2171, + + /// + /// chest_drop_additional_normal_items_up_to + /// + ChestDropAdditionalNormalItemsUpTo = 2172, + + /// + /// chest_drop_additional_magic_items_up_to + /// + ChestDropAdditionalMagicItemsUpTo = 2173, + + /// + /// chest_drop_additional_rare_items_up_to + /// + ChestDropAdditionalRareItemsUpTo = 2174, + + /// + /// chest_dropped_items_have_quality_% + /// + ChestDroppedItemsHaveQualityPct = 2175, + + /// + /// dropped_items_have_additional_sockets + /// + DroppedItemsHaveAdditionalSockets = 2176, + + /// + /// dropped_items_are_fully_linked + /// + DroppedItemsAreFullyLinked = 2177, + + /// + /// chest_dropped_item_level_+ + /// + ChestDroppedItemLevel = 2178, + + /// + /// dropped_items_are_duplicated + /// + DroppedItemsAreDuplicated = 2179, + + /// + /// monster_unlock_chests_on_death + /// + MonsterUnlockChestsOnDeath = 2180, + + /// + /// local_display_socketed_gems_mana_cost_-% + /// + LocalDisplaySocketedGemsManaCostPct = 2181, + + /// + /// chest_spawn_rogue_exiles + /// + ChestSpawnRogueExiles = 2182, + + /// + /// chest_display_revive_nearby_monsters + /// + ChestDisplayReviveNearbyMonsters = 2183, + + /// + /// chest_display_spawns_monsters_continuously + /// + ChestDisplaySpawnsMonstersContinuously = 2184, + + /// + /// chest_display_explodes_corpses + /// + ChestDisplayExplodesCorpses = 2185, + + /// + /// chest_camoflaged + /// + ChestCamoflaged = 2186, + + /// + /// chest_display_cast_random_curse + /// + ChestDisplayCastRandomCurse = 2187, + + /// + /// chest_display_ignite + /// + ChestDisplayIgnite = 2188, + + /// + /// chest_display_fire_storm + /// + ChestDisplayFireStorm = 2189, + + /// + /// chest_display_caustic_clouds + /// + ChestDisplayCausticClouds = 2190, + + /// + /// chest_display_explosion + /// + ChestDisplayExplosion = 2191, + + /// + /// chest_drops_only_hybrid_flasks + /// + ChestDropsOnlyHybridFlasks = 2192, + + /// + /// chest_drops_only_support_gems + /// + ChestDropsOnlySupportGems = 2193, + + /// + /// chest_drops_extra_vaal_gems + /// + ChestDropsExtraVaalGems = 2194, + + /// + /// firestorm_drop_ground_shock_duration_ms + /// + FirestormDropGroundShockDurationMs = 2195, + + /// + /// detonate_dead_chain_explode + /// + DetonateDeadChainExplode = 2196, + + /// + /// corrupted_blood_cleave_stacks_to_add + /// + CorruptedBloodCleaveStacksToAdd = 2197, + + /// + /// desecrated_ground_art_variation + /// + DesecratedGroundArtVariation = 2198, + + /// + /// kiweth_projectile_spawn_kiweth + /// + KiwethProjectileSpawnKiweth = 2199, + + /// + /// rain_of_arrows_pin + /// + RainOfArrowsPin = 2200, + + /// + /// onslaught_on_vaal_skill_use_duration_ms + /// + OnslaughtOnVaalSkillUseDurationMs = 2201, + + /// + /// cold_snap_ground_ice + /// + ColdSnapGroundIce = 2202, + + /// + /// num_ghost_monkeys_to_summon + /// + NumGhostMonkeysToSummon = 2203, + + /// + /// smoke_mine_spawn_X_snakes_on_teleport + /// + SmokeMineSpawnXSnakesOnTeleport = 2204, + + /// + /// num_sandspitters_to_summon + /// + NumSandspittersToSummon = 2205, + + /// + /// vaal_lightning_strike_beam_damage_+%_final + /// + VaalLightningStrikeBeamDamagePctFinal = 2206, + + /// + /// atziri_lightning_charge_requirement_- + /// + AtziriLightningChargeRequirement = 2207, + + /// + /// atziri_fire_charge_requirement_- + /// + AtziriFireChargeRequirement = 2208, + + /// + /// atziri_physical_charge_requirement_- + /// + AtziriPhysicalChargeRequirement = 2209, + + /// + /// life_leech_from_physical_damage_permyriad + /// + LifeLeechFromPhysicalDamagePermyriad = 2210, + + /// + /// life_leech_from_fire_damage_permyriad + /// + LifeLeechFromFireDamagePermyriad = 2211, + + /// + /// life_leech_from_cold_damage_permyriad + /// + LifeLeechFromColdDamagePermyriad = 2212, + + /// + /// life_leech_from_lightning_damage_permyriad + /// + LifeLeechFromLightningDamagePermyriad = 2213, + + /// + /// life_leech_from_chaos_damage_permyriad + /// + LifeLeechFromChaosDamagePermyriad = 2214, + + /// + /// mana_leech_from_physical_damage_permyriad + /// + ManaLeechFromPhysicalDamagePermyriad = 2215, + + /// + /// mana_leech_from_fire_damage_permyriad + /// + ManaLeechFromFireDamagePermyriad = 2216, + + /// + /// mana_leech_from_cold_damage_permyriad + /// + ManaLeechFromColdDamagePermyriad = 2217, + + /// + /// mana_leech_from_lightning_damage_permyriad + /// + ManaLeechFromLightningDamagePermyriad = 2218, + + /// + /// mana_leech_from_chaos_damage_permyriad + /// + ManaLeechFromChaosDamagePermyriad = 2219, + + /// + /// old_do_not_use_base_life_leech_from_elemental_damage_permyriad + /// + OldDoNotUseBaseLifeLeechFromElementalDamagePermyriad = 2220, + + /// + /// base_mana_leech_from_elemental_damage_permyriad + /// + BaseManaLeechFromElementalDamagePermyriad = 2221, + + /// + /// attack_minimum_added_physical_damage_with_bow + /// + AttackMinimumAddedPhysicalDamageWithBow = 2222, + + /// + /// attack_maximum_added_physical_damage_with_bow + /// + AttackMaximumAddedPhysicalDamageWithBow = 2223, + + /// + /// attack_minimum_added_fire_damage_with_bow + /// + AttackMinimumAddedFireDamageWithBow = 2224, + + /// + /// attack_maximum_added_fire_damage_with_bow + /// + AttackMaximumAddedFireDamageWithBow = 2225, + + /// + /// number_of_packs_to_summon + /// + NumberOfPacksToSummon = 2226, + + /// + /// summon_monster_radius + /// + SummonMonsterRadius = 2227, + + /// + /// resist_life_leech_% + /// + ResistLifeLeechPct = 2228, + + /// + /// resist_mana_leech_% + /// + ResistManaLeechPct = 2229, + + /// + /// level_11_or_lower_life_+%_final + /// + Level11OrLowerLifePctFinal = 2230, + + /// + /// local_socketed_support_gem_level_+ + /// + LocalSocketedSupportGemLevel = 2231, + + /// + /// level_33_or_lower_life_+%_final + /// + Level33OrLowerLifePctFinal = 2232, + + /// + /// level_33_or_lower_damage_+%_final + /// + Level33OrLowerDamagePctFinal = 2233, + + /// + /// display_monster_casts_vaal_detonate_dead_text + /// + DisplayMonsterCastsVaalDetonateDeadText = 2234, + + /// + /// minions_have_chest_summon_indicator + /// + MinionsHaveChestSummonIndicator = 2235, + + /// + /// curse_on_hit_level_temporal_chains + /// + CurseOnHitLevelTemporalChains = 2236, + + /// + /// curse_on_hit_level_vulnerability + /// + CurseOnHitLevelVulnerability = 2237, + + /// + /// curse_on_hit_level_elemental_weakness + /// + CurseOnHitLevelElementalWeakness = 2238, + + /// + /// local_display_socketed_gems_get_melee_splash_level + /// + LocalDisplaySocketedGemsGetMeleeSplashLevel = 2239, + + /// + /// local_display_socketed_gems_get_cast_on_crit_level + /// + LocalDisplaySocketedGemsGetCastOnCritLevel = 2240, + + /// + /// local_display_socketed_gems_get_cast_when_stunned_level + /// + LocalDisplaySocketedGemsGetCastWhenStunnedLevel = 2241, + + /// + /// is_double + /// + IsDouble = 2242, + + /// + /// can_catch_corrupted_fish + /// + CanCatchCorruptedFish = 2243, + + /// + /// disable_animated_armour + /// + DisableAnimatedArmour = 2244, + + /// + /// number_of_archer_skeletons_to_summon + /// + NumberOfArcherSkeletonsToSummon = 2245, + + /// + /// number_of_mage_skeletons_to_summon + /// + NumberOfMageSkeletonsToSummon = 2246, + + /// + /// number_of_leader_skeletons_to_summon + /// + NumberOfLeaderSkeletonsToSummon = 2247, + + /// + /// map_spawn_extra_exiles + /// + MapSpawnExtraExiles = 2248, + + /// + /// map_disable_new_instance_management + /// + MapDisableNewInstanceManagement = 2249, + + /// + /// local_display_socketed_gems_get_mana_multplier_% + /// + LocalDisplaySocketedGemsGetManaMultplierPct = 2250, + + /// + /// local_display_socketed_gems_get_stun_level + /// + LocalDisplaySocketedGemsGetStunLevel = 2251, + + /// + /// local_display_socketed_gems_get_additional_accuracy_level + /// + LocalDisplaySocketedGemsGetAdditionalAccuracyLevel = 2252, + + /// + /// local_display_socketed_gems_get_multistrike_level + /// + LocalDisplaySocketedGemsGetMultistrikeLevel = 2253, + + /// + /// local_display_socketed_gems_get_faster_projectiles_level + /// + LocalDisplaySocketedGemsGetFasterProjectilesLevel = 2254, + + /// + /// local_display_socketed_gems_get_life_leech_level + /// + LocalDisplaySocketedGemsGetLifeLeechLevel = 2255, + + /// + /// local_display_socketed_gems_get_increased_critical_damage_level + /// + LocalDisplaySocketedGemsGetIncreasedCriticalDamageLevel = 2256, + + /// + /// local_display_socketed_gems_get_fork_level + /// + LocalDisplaySocketedGemsGetForkLevel = 2257, + + /// + /// local_display_socketed_gems_get_weapon_elemental_damage_level + /// + LocalDisplaySocketedGemsGetWeaponElementalDamageLevel = 2258, + + /// + /// local_display_grants_skill_purity_of_fire_level + /// + LocalDisplayGrantsSkillPurityOfFireLevel = 2259, + + /// + /// local_display_grants_skill_purity_of_cold_level + /// + LocalDisplayGrantsSkillPurityOfColdLevel = 2260, + + /// + /// local_display_grants_skill_purity_of_lightning_level + /// + LocalDisplayGrantsSkillPurityOfLightningLevel = 2261, + + /// + /// local_display_grants_skill_flammability_level + /// + LocalDisplayGrantsSkillFlammabilityLevel = 2262, + + /// + /// local_display_grants_skill_conductivity_level + /// + LocalDisplayGrantsSkillConductivityLevel = 2263, + + /// + /// local_display_grants_skill_frostbite_level + /// + LocalDisplayGrantsSkillFrostbiteLevel = 2264, + + /// + /// local_display_grants_skill_temporal_chains_level + /// + LocalDisplayGrantsSkillTemporalChainsLevel = 2265, + + /// + /// local_display_grants_skill_haste_level + /// + LocalDisplayGrantsSkillHasteLevel = 2266, + + /// + /// local_display_grants_skill_clarity_level + /// + LocalDisplayGrantsSkillClarityLevel = 2267, + + /// + /// local_display_grants_skill_vitality_level + /// + LocalDisplayGrantsSkillVitalityLevel = 2268, + + /// + /// local_display_grants_skill_purity_level + /// + LocalDisplayGrantsSkillPurityLevel = 2269, + + /// + /// local_display_grants_skill_critical_weakness_level + /// + LocalDisplayGrantsSkillCriticalWeaknessLevel = 2270, + + /// + /// local_display_grants_skill_wrath_level + /// + LocalDisplayGrantsSkillWrathLevel = 2271, + + /// + /// local_display_grants_skill_hatred_level + /// + LocalDisplayGrantsSkillHatredLevel = 2272, + + /// + /// local_display_grants_skill_anger_level + /// + LocalDisplayGrantsSkillAngerLevel = 2273, + + /// + /// local_display_grants_skill_determination_level + /// + LocalDisplayGrantsSkillDeterminationLevel = 2274, + + /// + /// local_display_grants_skill_grace_level + /// + LocalDisplayGrantsSkillGraceLevel = 2275, + + /// + /// local_display_grants_skill_discipline_level + /// + LocalDisplayGrantsSkillDisciplineLevel = 2276, + + /// + /// local_display_grants_skill_projectile_weakness_level + /// + LocalDisplayGrantsSkillProjectileWeaknessLevel = 2277, + + /// + /// local_display_grants_skill_elemental_weakness_level + /// + LocalDisplayGrantsSkillElementalWeaknessLevel = 2278, + + /// + /// local_display_grants_skill_vulnerability_level + /// + LocalDisplayGrantsSkillVulnerabilityLevel = 2279, + + /// + /// cold_damage_cannot_chill + /// + ColdDamageCannotChill = 2280, + + /// + /// elemental_damage_taken_%_as_chaos + /// + ElementalDamageTakenPctAsChaos = 2281, + + /// + /// fire_damage_taken_%_as_chaos + /// + FireDamageTakenPctAsChaos = 2282, + + /// + /// cold_damage_taken_%_as_chaos + /// + ColdDamageTakenPctAsChaos = 2283, + + /// + /// lightning_damage_taken_%_as_chaos + /// + LightningDamageTakenPctAsChaos = 2284, + + /// + /// global_reduce_enemy_block_% + /// + GlobalReduceEnemyBlockPct = 2285, + + /// + /// base_spell_repeat_count + /// + BaseSpellRepeatCount = 2286, + + /// + /// spell_repeat_count + /// + SpellRepeatCount = 2287, + + /// + /// pvp_damage_+%_final_scale + /// + PvpDamagePctFinalScale = 2288, + + /// + /// physical_damage_taken_+_vs_beasts + /// + PhysicalDamageTakenVsBeasts = 2289, + + /// + /// local_strength_requirement_+ + /// + LocalStrengthRequirement = 2290, + + /// + /// local_dexterity_requirement_+ + /// + LocalDexterityRequirement = 2291, + + /// + /// local_intelligence_requirement_+ + /// + LocalIntelligenceRequirement = 2292, + + /// + /// display_monster_vaal_storm_call + /// + DisplayMonsterVaalStormCall = 2293, + + /// + /// reave_rotation_on_repeat + /// + ReaveRotationOnRepeat = 2294, + + /// + /// reave_additional_max_stacks + /// + ReaveAdditionalMaxStacks = 2295, + + /// + /// reave_additional_starting_stacks + /// + ReaveAdditionalStartingStacks = 2296, + + /// + /// bleed_on_melee_crit_chance_% + /// + BleedOnMeleeCritChancePct = 2297, + + /// + /// bleed_on_melee_crit_chance_duration_ms + /// + BleedOnMeleeCritChanceDurationMs = 2298, + + /// + /// energy_shield_recharge_not_delayed_by_damage + /// + EnergyShieldRechargeNotDelayedByDamage = 2299, + + /// + /// maximum_dodge_chance_% + /// + MaximumDodgeChancePct = 2300, + + /// + /// maximum_spell_dodge_chance_% + /// + MaximumSpellDodgeChancePct = 2301, + + /// + /// weapon_physical_damage_%_to_add_as_random_element + /// + WeaponPhysicalDamagePctToAddAsRandomElement = 2302, + + /// + /// throw_traps_in_circle_radius + /// + ThrowTrapsInCircleRadius = 2303, + + /// + /// damage_taken_+% + /// + DamageTakenPct = 2304, + + /// + /// Damage Taken +% increase per Frenzy Charge + /// + DamageTakenPctPerFrenzyCharge = 2305, + + /// + /// Lightning Damage +% increase per Frenzy Charge + /// + LightningDamagePctPerFrenzyCharge = 2306, + + /// + /// Life Gained on Kill + /// + LifeGainedOnEnemyDeath = 2307, + + /// + /// Life Gained on Kill per Frenzy Charge + /// + LifeGainedOnEnemyDeathPerFrenzyCharge = 2308, + + /// + /// vaal_sweep_additional_base_radius_for_push + /// + VaalSweepAdditionalBaseRadiusForPush = 2309, + + /// + /// main_hand_weapon_elemental_damage_+% + /// + MainHandWeaponElementalDamagePct = 2310, + + /// + /// off_hand_weapon_elemental_damage_+% + /// + OffHandWeaponElementalDamagePct = 2311, + + /// + /// local_attacks_with_this_weapon_elemental_damage_+% + /// + LocalAttacksWithThisWeaponElementalDamagePct = 2312, + + /// + /// monster_casts_glacial_cascade_text + /// + MonsterCastsGlacialCascadeText = 2313, + + /// + /// dual_wield_inherent_physical_attack_damage_+%_final + /// + DualWieldInherentPhysicalAttackDamagePctFinal = 2314, + + /// + /// damage_cannot_be_reflected + /// + DamageCannotBeReflected = 2315, + + /// + /// map_base_ground_desecration_damage_to_deal_per_minute + /// + MapBaseGroundDesecrationDamageToDealPerMinute = 2316, + + /// + /// global_poison_on_hit + /// + GlobalPoisonOnHit = 2317, + + /// + /// map_monsters_poison_on_hit + /// + MapMonstersPoisonOnHit = 2318, + + /// + /// play_jack_the_axe_sounds + /// + PlayJackTheAxeSounds = 2319, + + /// + /// sound_on_kill_wolf_call + /// + SoundOnKillWolfCall = 2320, + + /// + /// play_daughter_of_sin_audio + /// + PlayDaughterOfSinAudio = 2321, + + /// + /// oba_decapitated + /// + ObaDecapitated = 2322, + + /// + /// chest_number_of_additional_kaom_uniques_to_drop + /// + ChestNumberOfAdditionalKaomUniquesToDrop = 2323, + + /// + /// chest_drop_additional_number_of_uniques_of_drop_pool_types + /// + ChestDropAdditionalNumberOfUniquesOfDropPoolTypes = 2324, + + /// + /// chest_display_kaom_totems + /// + ChestDisplayKaomTotems = 2325, + + /// + /// map_mission_id + /// + MapMissionId = 2326, + + /// + /// chest_no_regular_drops + /// + ChestNoRegularDrops = 2327, + + /// + /// map_side_area_chance_+% + /// + MapSideAreaChancePct = 2328, + + /// + /// chest_drop_additional_unique_maps + /// + ChestDropAdditionalUniqueMaps = 2329, + + /// + /// map_display_garena_drop_buff + /// + MapDisplayGarenaDropBuff = 2330, + + /// + /// keystone_unwavering_stance + /// + KeystoneUnwaveringStance = 2331, + + /// + /// cannot_evade + /// + CannotEvade = 2332, + + /// + /// never_ignite + /// + NeverIgnite = 2333, + + /// + /// global_chance_to_knockback_% + /// + GlobalChanceToKnockbackPct = 2334, + + /// + /// local_unique_flask_instantly_recovers_%_maximum_life + /// + LocalUniqueFlaskInstantlyRecoversPctMaximumLife = 2335, + + /// + /// local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing + /// + LocalUniqueFlaskChaosDamagePctOfMaximumLifeToDealPerMinuteWhileHealing = 2336, + + /// + /// unique_add_power_charge_on_melee_knockback_% + /// + UniqueAddPowerChargeOnMeleeKnockbackPct = 2337, + + /// + /// display_map_boss_gives_experience_+% + /// + DisplayMapBossGivesExperiencePct = 2338, + + /// + /// gain_power_charge_when_throwing_trap_% + /// + GainPowerChargeWhenThrowingTrapPct = 2339, + + /// + /// local_display_grants_skill_bear_trap_level + /// + LocalDisplayGrantsSkillBearTrapLevel = 2340, + + /// + /// critical_strike_chance_+%_per_8_strength + /// + CriticalStrikeChancePctPer8Strength = 2341, + + /// + /// skill_is_trapped + /// + SkillIsTrapped = 2342, + + /// + /// skill_is_mined + /// + SkillIsMined = 2343, + + /// + /// skill_is_totemified + /// + SkillIsTotemified = 2344, + + /// + /// current_rampage_stacks + /// + CurrentRampageStacks = 2345, + + /// + /// max_rampage_stacks + /// + MaxRampageStacks = 2346, + + /// + /// damage_+%_per_10_rampage_stacks + /// + DamagePctPer10RampageStacks = 2347, + + /// + /// movement_velocity_+%_per_10_rampage_stacks + /// + MovementVelocityPctPer10RampageStacks = 2348, + + /// + /// map_players_gain_rampage_stacks + /// + MapPlayersGainRampageStacks = 2349, + + /// + /// map_disable_missions + /// + MapDisableMissions = 2350, + + /// + /// map_spawn_map_portal + /// + MapSpawnMapPortal = 2351, + + /// + /// local_unique_flask_block_%_while_healing + /// + LocalUniqueFlaskBlockPctWhileHealing = 2352, + + /// + /// local_unique_flask_spell_block_%_while_healing + /// + LocalUniqueFlaskSpellBlockPctWhileHealing = 2353, + + /// + /// map_beyond_rules + /// + MapBeyondRules = 2354, + + /// + /// map_extra_ruleset + /// + MapExtraRuleset = 2355, + + /// + /// map_mission_variation + /// + MapMissionVariation = 2356, + + /// + /// ground_spikes_physical_damage_to_deal_per_minute + /// + GroundSpikesPhysicalDamageToDealPerMinute = 2357, + + /// + /// ground_spikes_moving_physical_damage_to_deal_per_minute + /// + GroundSpikesMovingPhysicalDamageToDealPerMinute = 2358, + + /// + /// attack_speed_+%_while_ignited + /// + AttackSpeedPctWhileIgnited = 2359, + + /// + /// cast_speed_+%_while_ignited + /// + CastSpeedPctWhileIgnited = 2360, + + /// + /// chance_to_ignite_%_while_ignited + /// + ChanceToIgnitePctWhileIgnited = 2361, + + /// + /// fire_nova_damage_+%_per_repeat_final + /// + FireNovaDamagePctPerRepeatFinal = 2362, + + /// + /// lightning_trap_projectiles_leave_shocking_ground + /// + LightningTrapProjectilesLeaveShockingGround = 2363, + + /// + /// main_hand_weapon_physical_damage_+%_per_250_evasion + /// + MainHandWeaponPhysicalDamagePctPer250Evasion = 2364, + + /// + /// off_hand_weapon_physical_damage_+%_per_250_evasion + /// + OffHandWeaponPhysicalDamagePctPer250Evasion = 2365, + + /// + /// local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion + /// + LocalAttacksWithThisWeaponPhysicalDamagePctPer250Evasion = 2366, + + /// + /// map_cagan_has_hidden_mods + /// + MapCaganHasHiddenMods = 2367, + + /// + /// cyclone_places_ground_tar_movement_speed_+% + /// + CyclonePlacesGroundTarMovementSpeedPct = 2368, + + /// + /// wand_damage_+% + /// + WandDamagePct = 2369, + + /// + /// cast_speed_while_dual_wielding_+% + /// + CastSpeedWhileDualWieldingPct = 2370, + + /// + /// shield_spell_block_% + /// + ShieldSpellBlockPct = 2371, + + /// + /// local_display_socketed_gems_get_echo_level + /// + LocalDisplaySocketedGemsGetEchoLevel = 2372, + + /// + /// support_echo_damage_+%_final + /// + SupportEchoDamagePctFinal = 2373, + + /// + /// global_bleed_on_hit + /// + GlobalBleedOnHit = 2374, + + /// + /// local_bleed_on_hit + /// + LocalBleedOnHit = 2375, + + /// + /// main_hand_bleed_on_hit + /// + MainHandBleedOnHit = 2376, + + /// + /// off_hand_bleed_on_hit + /// + OffHandBleedOnHit = 2377, + + /// + /// damage_+%_vs_ignited_enemies + /// + DamagePctVsIgnitedEnemies = 2378, + + /// + /// recover_%_maximum_life_on_rampage_threshold + /// + RecoverPctMaximumLifeOnRampageThreshold = 2379, + + /// + /// dispel_status_ailments_on_rampage_threshold + /// + DispelStatusAilmentsOnRampageThreshold = 2380, + + /// + /// gain_physical_damage_immunity_on_rampage_threshold_ms + /// + GainPhysicalDamageImmunityOnRampageThresholdMs = 2381, + + /// + /// gain_X_vaal_souls_on_rampage_threshold + /// + GainXVaalSoulsOnRampageThreshold = 2382, + + /// + /// physical_damage_+%_vs_poisoned_enemies + /// + PhysicalDamagePctVsPoisonedEnemies = 2383, + + /// + /// block_causes_monster_flee_% + /// + BlockCausesMonsterFleePct = 2384, + + /// + /// life_regeneration_rate_per_minute_per_level + /// + LifeRegenerationRatePerMinutePerLevel = 2385, + + /// + /// critical_strike_chance_+%_per_level + /// + CriticalStrikeChancePctPerLevel = 2386, + + /// + /// attack_damage_+%_per_level + /// + AttackDamagePctPerLevel = 2387, + + /// + /// spell_damage_+%_per_level + /// + SpellDamagePctPerLevel = 2388, + + /// + /// recharge_flasks_on_crit + /// + RechargeFlasksOnCrit = 2389, + + /// + /// bleeding_monsters_movement_velocity_+% + /// + BleedingMonstersMovementVelocityPct = 2390, + + /// + /// old_do_not_use_life_leech_permyriad_on_crit + /// + OldDoNotUseLifeLeechPermyriadOnCrit = 2391, + + /// + /// ground_smoke_on_rampage_threshold_ms + /// + GroundSmokeOnRampageThresholdMs = 2392, + + /// + /// phasing_on_rampage_threshold_ms + /// + PhasingOnRampageThresholdMs = 2393, + + /// + /// on_full_energy_shield + /// + OnFullEnergyShield = 2394, + + /// + /// movement_velocity_+%_on_full_energy_shield + /// + MovementVelocityPctOnFullEnergyShield = 2395, + + /// + /// sword_critical_strike_chance_+% + /// + SwordCriticalStrikeChancePct = 2396, + + /// + /// attack_damage_+%_per_450_evasion + /// + AttackDamagePctPer450Evasion = 2397, + + /// + /// old_do_not_use_mana_leech_from_physical_damage_with_claw_% + /// + OldDoNotUseManaLeechFromPhysicalDamageWithClawPct = 2398, + + /// + /// main_hand_steal_power_frenzy_endurance_charges_on_hit_% + /// + MainHandStealPowerFrenzyEnduranceChargesOnHitPct = 2399, + + /// + /// off_hand_steal_power_frenzy_endurance_charges_on_hit_% + /// + OffHandStealPowerFrenzyEnduranceChargesOnHitPct = 2400, + + /// + /// claw_steal_power_frenzy_endurance_charges_on_hit_% + /// + ClawStealPowerFrenzyEnduranceChargesOnHitPct = 2401, + + /// + /// player_gain_rampage_stacks + /// + PlayerGainRampageStacks = 2402, + + /// + /// regenerate_%_armour_as_life_over_1_second_on_block + /// + RegeneratePctArmourAsLifeOver1SecondOnBlock = 2403, + + /// + /// monster_cast_spell_%_on_attack_hit + /// + MonsterCastSpellPctOnAttackHit = 2404, + + /// + /// unique_chaos_damage_to_reflect_to_self_on_attack_%_chance + /// + UniqueChaosDamageToReflectToSelfOnAttackPctChance = 2405, + + /// + /// unique_minimum_chaos_damage_to_reflect_to_self_on_attack + /// + UniqueMinimumChaosDamageToReflectToSelfOnAttack = 2406, + + /// + /// unique_maximum_chaos_damage_to_reflect_to_self_on_attack + /// + UniqueMaximumChaosDamageToReflectToSelfOnAttack = 2407, + + /// + /// map_monsters_curse_effect_+% + /// + MapMonstersCurseEffectPct = 2408, + + /// + /// map_mission_variation2 + /// + MapMissionVariation2 = 2409, + + /// + /// map_player_has_random_level_X_curse_every_10_seconds + /// + MapPlayerHasRandomLevelXCurseEvery10Seconds = 2410, + + /// + /// display_map_inhabited_by_wild_beasts + /// + DisplayMapInhabitedByWildBeasts = 2411, + + /// + /// monster_no_drops + /// + MonsterNoDrops = 2412, + + /// + /// map_monster_no_drops + /// + MapMonsterNoDrops = 2413, + + /// + /// life_regeneration_rate_+% + /// + LifeRegenerationRatePct = 2414, + + /// + /// cannot_be_blinded + /// + CannotBeBlinded = 2415, + + /// + /// local_socketed_skill_gem_level_+ + /// + LocalSocketedSkillGemLevel = 2416, + + /// + /// gain_unholy_might_on_rampage_threshold_ms + /// + GainUnholyMightOnRampageThresholdMs = 2417, + + /// + /// elemental_damage_+%_per_level + /// + ElementalDamagePctPerLevel = 2418, + + /// + /// chaos_damage_+%_per_level + /// + ChaosDamagePctPerLevel = 2419, + + /// + /// life_gained_on_enemy_death_per_level + /// + LifeGainedOnEnemyDeathPerLevel = 2420, + + /// + /// mana_gained_on_enemy_death + /// + ManaGainedOnEnemyDeath = 2421, + + /// + /// energy_shield_gained_on_enemy_death + /// + EnergyShieldGainedOnEnemyDeath = 2422, + + /// + /// mana_gained_on_enemy_death_per_level + /// + ManaGainedOnEnemyDeathPerLevel = 2423, + + /// + /// energy_shield_gained_on_enemy_death_per_level + /// + EnergyShieldGainedOnEnemyDeathPerLevel = 2424, + + /// + /// aura_cannot_affect_self + /// + AuraCannotAffectSelf = 2425, + + /// + /// map_scion_mission_monster_pack + /// + MapScionMissionMonsterPack = 2426, + + /// + /// mace_critical_strike_chance_+% + /// + MaceCriticalStrikeChancePct = 2427, + + /// + /// staff_critical_strike_chance_+% + /// + StaffCriticalStrikeChancePct = 2428, + + /// + /// wand_critical_strike_chance_+% + /// + WandCriticalStrikeChancePct = 2429, + + /// + /// wand_critical_strike_multiplier_+ + /// + WandCriticalStrikeMultiplier = 2430, + + /// + /// bow_stun_threshold_reduction_+% + /// + BowStunThresholdReductionPct = 2431, + + /// + /// number_of_animated_bows_to_summon + /// + NumberOfAnimatedBowsToSummon = 2432, + + /// + /// number_of_animated_daggers_to_summon + /// + NumberOfAnimatedDaggersToSummon = 2433, + + /// + /// number_of_animated_two_handed_swords_to_summon + /// + NumberOfAnimatedTwoHandedSwordsToSummon = 2434, + + /// + /// firestorm_avoid_unwalkable_terrain + /// + FirestormAvoidUnwalkableTerrain = 2435, + + /// + /// ground_effect_ring_type + /// + GroundEffectRingType = 2436, + + /// + /// local_display_socketed_gems_have_elemental_equilibrium + /// + LocalDisplaySocketedGemsHaveElementalEquilibrium = 2437, + + /// + /// unique_fire_damage_resistance_%_when_red_gem_socketed + /// + UniqueFireDamageResistancePctWhenRedGemSocketed = 2438, + + /// + /// unique_cold_damage_resistance_%_when_green_gem_socketed + /// + UniqueColdDamageResistancePctWhenGreenGemSocketed = 2439, + + /// + /// unique_lightning_damage_resistance_%_when_blue_gem_socketed + /// + UniqueLightningDamageResistancePctWhenBlueGemSocketed = 2440, + + /// + /// skill_mana_cost_+ + /// + SkillManaCost = 2441, + + /// + /// map_aoe_daemons_per_100_tiles + /// + MapAoeDaemonsPer100Tiles = 2442, + + /// + /// map_aoe_daemons_variation + /// + MapAoeDaemonsVariation = 2443, + + /// + /// monster_no_beyond_portal + /// + MonsterNoBeyondPortal = 2444, + + /// + /// local_socketed_support_gem_quality_+ + /// + LocalSocketedSupportGemQuality = 2445, + + /// + /// map_packs_are_str_mission_totems + /// + MapPacksAreStrMissionTotems = 2446, + + /// + /// chance_to_grant_frenzy_charge_on_death_% + /// + ChanceToGrantFrenzyChargeOnDeathPct = 2447, + + /// + /// life_granted_when_hit_by_attacks + /// + LifeGrantedWhenHitByAttacks = 2448, + + /// + /// mana_granted_when_hit_by_attacks + /// + ManaGrantedWhenHitByAttacks = 2449, + + /// + /// life_granted_when_killed + /// + LifeGrantedWhenKilled = 2450, + + /// + /// mana_granted_when_killed + /// + ManaGrantedWhenKilled = 2451, + + /// + /// evasion_rating_+%_final_from_poachers_mark + /// + EvasionRatingPctFinalFromPoachersMark = 2452, + + /// + /// monster_interactible_corpse + /// + MonsterInteractibleCorpse = 2453, + + /// + /// revive_all_with_onslaught_make_minions + /// + ReviveAllWithOnslaughtMakeMinions = 2454, + + /// + /// revive_all_with_onslaught_make_unusable + /// + ReviveAllWithOnslaughtMakeUnusable = 2455, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage + /// + AdditiveSpellDamageModifiersApplyToAttackDamage = 2456, + + /// + /// monster_minimap_icon + /// + MonsterMinimapIcon = 2457, + + /// + /// is_trap_object + /// + IsTrapObject = 2458, + + /// + /// attack_projectiles_return + /// + AttackProjectilesReturn = 2459, + + /// + /// attack_projectiles_return_if_no_hit_object + /// + AttackProjectilesReturnIfNoHitObject = 2460, + + /// + /// minion_damage_+%_per_10_rampage_stacks + /// + MinionDamagePctPer10RampageStacks = 2461, + + /// + /// minion_movement_velocity_+%_per_10_rampage_stacks + /// + MinionMovementVelocityPctPer10RampageStacks = 2462, + + /// + /// virtual_minion_damage_+% + /// + VirtualMinionDamagePct = 2463, + + /// + /// player_dex_mission_enable_pointer + /// + PlayerDexMissionEnablePointer = 2464, + + /// + /// map_hidden_monster_life_+%_final + /// + MapHiddenMonsterLifePctFinal = 2465, + + /// + /// map_hidden_monster_damage_+%_final + /// + MapHiddenMonsterDamagePctFinal = 2466, + + /// + /// projectiles_not_offset + /// + ProjectilesNotOffset = 2467, + + /// + /// herald_of_ash_fire_damage_+% + /// + HeraldOfAshFireDamagePct = 2468, + + /// + /// map_num_extra_invasion_bosses + /// + MapNumExtraInvasionBosses = 2469, + + /// + /// map_num_extra_strongboxes + /// + MapNumExtraStrongboxes = 2470, + + /// + /// map_num_extra_shrines + /// + MapNumExtraShrines = 2471, + + /// + /// map_all_monster_packs_rare_and_allow_magic + /// + MapAllMonsterPacksRareAndAllowMagic = 2472, + + /// + /// duelist_master_is_dummy_variation + /// + DuelistMasterIsDummyVariation = 2473, + + /// + /// soul_eater_ignore_non_experience_monsters + /// + SoulEaterIgnoreNonExperienceMonsters = 2474, + + /// + /// summoned_monsters_are_minions + /// + SummonedMonstersAreMinions = 2475, + + /// + /// summoned_monsters_no_drops_or_experience + /// + SummonedMonstersNoDropsOrExperience = 2476, + + /// + /// monster_do_not_fracture + /// + MonsterDoNotFracture = 2477, + + /// + /// item_generation_cannot_change_prefixes + /// + ItemGenerationCannotChangePrefixes = 2478, + + /// + /// item_generation_cannot_change_suffixes + /// + ItemGenerationCannotChangeSuffixes = 2479, + + /// + /// item_generation_cannot_roll_caster_affixes + /// + ItemGenerationCannotRollCasterAffixes = 2480, + + /// + /// item_generation_cannot_roll_attack_affixes + /// + ItemGenerationCannotRollAttackAffixes = 2481, + + /// + /// item_generation_can_have_multiple_crafted_mods + /// + ItemGenerationCanHaveMultipleCraftedMods = 2482, + + /// + /// map_set_league_category + /// + MapSetLeagueCategory = 2483, + + /// + /// local_level_requirement_+ + /// + LocalLevelRequirement2 = 2484, + + /// + /// projectile_spiral_nova_starting_angle_offset + /// + ProjectileSpiralNovaStartingAngleOffset = 2485, + + /// + /// projectile_spiral_nova_both_directions + /// + ProjectileSpiralNovaBothDirections = 2486, + + /// + /// triggered_spell_spell_damage_+% + /// + TriggeredSpellSpellDamagePct = 2487, + + /// + /// damage_+%_vs_blinded_enemies + /// + DamagePctVsBlindedEnemies = 2488, + + /// + /// ground_smoke_when_hit_% + /// + GroundSmokeWhenHitPct = 2489, + + /// + /// number_of_beacons + /// + NumberOfBeacons = 2490, + + /// + /// is_dead + /// + IsDead = 2491, + + /// + /// area_of_effect_+%_while_dead + /// + AreaOfEffectPctWhileDead = 2492, + + /// + /// beacon_placement_radius + /// + BeaconPlacementRadius = 2493, + + /// + /// map_area_portal_variation + /// + MapAreaPortalVariation = 2494, + + /// + /// skill_is_triggered + /// + SkillIsTriggered = 2495, + + /// + /// skill_is_curse + /// + SkillIsCurse = 2496, + + /// + /// skill_triggerable_spell + /// + SkillTriggerableSpell = 2497, + + /// + /// unique_mjolner_lightning_spells_triggered + /// + UniqueMjolnerLightningSpellsTriggered = 2498, + + /// + /// skill_number_of_triggers + /// + SkillNumberOfTriggers = 2499, + + /// + /// curse_on_block_level_5_vulnerability + /// + CurseOnBlockLevel5Vulnerability = 2500, + + /// + /// monster_enrages_on_low_life_text + /// + MonsterEnragesOnLowLifeText = 2501, + + /// + /// drop_bear_fall_on_target + /// + DropBearFallOnTarget = 2502, + + /// + /// map_magic_pack_mod_rules + /// + MapMagicPackModRules = 2503, + + /// + /// display_map_has_oxygen + /// + DisplayMapHasOxygen = 2504, + + /// + /// bloodlines_beacon_on_death_variation + /// + BloodlinesBeaconOnDeathVariation = 2505, + + /// + /// actor_scale_+%_granted_to_pack_members_on_death + /// + ActorScalePctGrantedToPackMembersOnDeath = 2506, + + /// + /// maximum_life_+%_granted_to_pack_members_on_death + /// + MaximumLifePctGrantedToPackMembersOnDeath = 2507, + + /// + /// monster_dodge_direction + /// + MonsterDodgeDirection = 2508, + + /// + /// herald_of_ice_cold_damage_+% + /// + HeraldOfIceColdDamagePct = 2509, + + /// + /// herald_of_thunder_lightning_damage_+% + /// + HeraldOfThunderLightningDamagePct = 2510, + + /// + /// number_of_taniwha_tails_allowed + /// + NumberOfTaniwhaTailsAllowed = 2511, + + /// + /// minion_dies_when_parent_dies + /// + MinionDiesWhenParentDies = 2512, + + /// + /// unique_nearby_allies_recover_permyriad_max_life_on_death + /// + UniqueNearbyAlliesRecoverPermyriadMaxLifeOnDeath = 2513, + + /// + /// suppress_mod_stat_display + /// + SuppressModStatDisplay = 2514, + + /// + /// base_steal_power_frenzy_endurance_charges_on_hit_% + /// + BaseStealPowerFrenzyEnduranceChargesOnHitPct = 2515, + + /// + /// cannot_die_and_damage_+%_near_pack_corpse + /// + CannotDieAndDamagePctNearPackCorpse = 2516, + + /// + /// projectile_spread_radius + /// + ProjectileSpreadRadius = 2517, + + /// + /// local_item_drops_on_death_if_equipped_by_animate_armour + /// + LocalItemDropsOnDeathIfEquippedByAnimateArmour = 2518, + + /// + /// physical_attack_damage_+% + /// + PhysicalAttackDamagePct = 2519, + + /// + /// melee_physical_damage_+%_while_holding_shield + /// + MeleePhysicalDamagePctWhileHoldingShield = 2520, + + /// + /// local_display_socketed_gems_get_cast_on_death_level + /// + LocalDisplaySocketedGemsGetCastOnDeathLevel = 2521, + + /// + /// cluster_burst_spawn_amount + /// + ClusterBurstSpawnAmount = 2522, + + /// + /// bloodline_daemon_update_count_on_death + /// + BloodlineDaemonUpdateCountOnDeath = 2523, + + /// + /// bloodline_daemon_pack_death_count + /// + BloodlineDaemonPackDeathCount = 2524, + + /// + /// bloodline_summon_blood_monster_on_pack_death + /// + BloodlineSummonBloodMonsterOnPackDeath = 2525, + + /// + /// damage_taken_+%_per_bloodline_damage_charge + /// + DamageTakenPctPerBloodlineDamageCharge = 2526, + + /// + /// attack_speed_+%_per_bloodline_speed_charge + /// + AttackSpeedPctPerBloodlineSpeedCharge = 2527, + + /// + /// cast_speed_+%_per_bloodline_speed_charge + /// + CastSpeedPctPerBloodlineSpeedCharge = 2528, + + /// + /// current_bloodline_damage_charges + /// + CurrentBloodlineDamageCharges = 2529, + + /// + /// current_bloodline_speed_charges + /// + CurrentBloodlineSpeedCharges = 2530, + + /// + /// maximum_bloodline_damage_charges + /// + MaximumBloodlineDamageCharges = 2531, + + /// + /// maximum_bloodline_speed_charges + /// + MaximumBloodlineSpeedCharges = 2532, + + /// + /// apply_X_random_curses_on_hit + /// + ApplyXRandomCursesOnHit = 2533, + + /// + /// total_projectile_spread_angle_override + /// + TotalProjectileSpreadAngleOverride = 2534, + + /// + /// map_beyond_chance_% + /// + MapBeyondChancePct = 2535, + + /// + /// map_boss_vaal_item_drop_% + /// + MapBossVaalItemDropPct = 2536, + + /// + /// map_is_corrupted + /// + MapIsCorrupted = 2537, + + /// + /// map_no_strongboxes + /// + MapNoStrongboxes = 2538, + + /// + /// keystone_acrobatics_block_chance_+%_final + /// + KeystoneAcrobaticsBlockChancePctFinal = 2539, + + /// + /// corpse_consumption_affects_pack + /// + CorpseConsumptionAffectsPack = 2540, + + /// + /// damage_+%_per_bloodline_damage_charge + /// + DamagePctPerBloodlineDamageCharge = 2541, + + /// + /// movement_speed_+%_per_bloodline_speed_charge + /// + MovementSpeedPctPerBloodlineSpeedCharge = 2542, + + /// + /// active_skill_area_damage_+%_final + /// + ActiveSkillAreaDamagePctFinal = 2543, + + /// + /// monster_share_charges_with_pack + /// + MonsterShareChargesWithPack = 2544, + + /// + /// melee_counterattack_trigger_on_block_% + /// + MeleeCounterattackTriggerOnBlockPct = 2545, + + /// + /// bloodline_firestorm_scales_with_pack_death + /// + BloodlineFirestormScalesWithPackDeath = 2546, + + /// + /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute + /// + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 2547, + + /// + /// is_totem_object + /// + IsTotemObject = 2548, + + /// + /// uses_no_mana + /// + UsesNoMana = 2549, + + /// + /// monster_spawn_bloodlines_ghost_totem_on_death + /// + MonsterSpawnBloodlinesGhostTotemOnDeath = 2550, + + /// + /// skill_triggerable_attack + /// + SkillTriggerableAttack = 2551, + + /// + /// attack_unusable_if_triggerable + /// + AttackUnusableIfTriggerable = 2552, + + /// + /// clone_hidden_duration + /// + CloneHiddenDuration = 2553, + + /// + /// never_take_critical_strike + /// + NeverTakeCriticalStrike = 2554, + + /// + /// tormented_necromancer_spawn_monster_on_death_variation + /// + TormentedNecromancerSpawnMonsterOnDeathVariation = 2555, + + /// + /// tormented_mutilator_spawn_monster_on_death_variation + /// + TormentedMutilatorSpawnMonsterOnDeathVariation = 2556, + + /// + /// spawn_monster_on_death_variation + /// + SpawnMonsterOnDeathVariation = 2557, + + /// + /// map_spawn_tormented_spirits + /// + MapSpawnTormentedSpirits = 2558, + + /// + /// damage_+%_vs_frozen_shocked_ignited_enemies + /// + DamagePctVsFrozenShockedIgnitedEnemies = 2559, + + /// + /// bloodlines_animate_guardian_on_death + /// + BloodlinesAnimateGuardianOnDeath = 2560, + + /// + /// melee_counterattack_trigger_on_hit_% + /// + MeleeCounterattackTriggerOnHitPct = 2561, + + /// + /// reduce_enemy_dodge_% + /// + ReduceEnemyDodgePct = 2562, + + /// + /// shield_counterattack_aoe_range + /// + ShieldCounterattackAoeRange = 2563, + + /// + /// bloodlines_monster_unholy_might_duration_ms + /// + BloodlinesMonsterUnholyMightDurationMs = 2564, + + /// + /// bloodlines_monster_unholy_might_damage_taken_+% + /// + BloodlinesMonsterUnholyMightDamageTakenPct = 2565, + + /// + /// bloodlines_phylacteral_link_is_vulnerable + /// + BloodlinesPhylacteralLinkIsVulnerable = 2566, + + /// + /// bloodlines_full_guardian_size_+%_on_death + /// + BloodlinesFullGuardianSizePctOnDeath = 2567, + + /// + /// bloodlines_guardian_damage_+%_on_death + /// + BloodlinesGuardianDamagePctOnDeath = 2568, + + /// + /// bloodlines_guardian_attack_speed_+%_on_death + /// + BloodlinesGuardianAttackSpeedPctOnDeath = 2569, + + /// + /// bloodlines_guardian_movement_speed_+%_on_death + /// + BloodlinesGuardianMovementSpeedPctOnDeath = 2570, + + /// + /// bloodlines_force_drop_of_pack_item_type_rarity + /// + BloodlinesForceDropOfPackItemTypeRarity = 2571, + + /// + /// merveil_number_of_geysers + /// + MerveilNumberOfGeysers = 2572, + + /// + /// weapon_elemental_damage_+%_while_using_flask + /// + WeaponElementalDamagePctWhileUsingFlask = 2573, + + /// + /// attack_speed_+%_while_holding_shield + /// + AttackSpeedPctWhileHoldingShield = 2574, + + /// + /// create_trap_at_target_location + /// + CreateTrapAtTargetLocation = 2575, + + /// + /// avoid_knockback_% + /// + AvoidKnockbackPct = 2576, + + /// + /// bloodlines_corrupted_blood_%_average_damage_to_deal_per_minute_per_stack_for_20_pack_members + /// + BloodlinesCorruptedBloodPctAverageDamageToDealPerMinutePerStackFor20PackMembers = 2577, + + /// + /// cant_touch_this + /// + CantTouchThis = 2578, + + /// + /// cant_possess_this + /// + CantPossessThis = 2579, + + /// + /// base_physical_damage_%_of_maximum_life_taken_per_minute + /// + BasePhysicalDamagePctOfMaximumLifeTakenPerMinute = 2580, + + /// + /// static_strike_explosion_damage_+%_final + /// + StaticStrikeExplosionDamagePctFinal = 2581, + + /// + /// disable_highlight + /// + DisableHighlight = 2582, + + /// + /// removes_%_mana_on_hit + /// + RemovesPctManaOnHit = 2583, + + /// + /// curse_when_hit_%_silence + /// + CurseWhenHitPctSilence = 2584, + + /// + /// life_gain_on_ignited_enemy_hit + /// + LifeGainOnIgnitedEnemyHit = 2585, + + /// + /// minimum_added_physical_damage_vs_frozen_enemies + /// + MinimumAddedPhysicalDamageVsFrozenEnemies = 2586, + + /// + /// maximum_added_physical_damage_vs_frozen_enemies + /// + MaximumAddedPhysicalDamageVsFrozenEnemies = 2587, + + /// + /// damage_vs_shocked_enemies_+% + /// + DamageVsShockedEnemiesPct = 2588, + + /// + /// old_do_not_use_life_leech_permyriad_vs_shocked_enemies + /// + OldDoNotUseLifeLeechPermyriadVsShockedEnemies = 2589, + + /// + /// physical_damage_as_fire_damage_vs_ignited_enemies_% + /// + PhysicalDamageAsFireDamageVsIgnitedEnemiesPct = 2590, + + /// + /// local_display_socketed_melee_gems_have_area_radius_+% + /// + LocalDisplaySocketedMeleeGemsHaveAreaRadiusPct = 2591, + + /// + /// local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire + /// + LocalDisplaySocketedRedGemsHavePctOfPhysicalDamageToAddAsFire = 2592, + + /// + /// curse_effect_+%_vs_players + /// + CurseEffectPctVsPlayers = 2593, + + /// + /// monster_drop_additional_currency_items + /// + MonsterDropAdditionalCurrencyItems = 2594, + + /// + /// monster_drop_additional_wisdom_scrolls + /// + MonsterDropAdditionalWisdomScrolls = 2595, + + /// + /// monster_drop_additional_portal_scrolls + /// + MonsterDropAdditionalPortalScrolls = 2596, + + /// + /// monster_drop_additional_rings_amulets + /// + MonsterDropAdditionalRingsAmulets = 2597, + + /// + /// item_generation_local_maximum_mod_required_level_override + /// + ItemGenerationLocalMaximumModRequiredLevelOverride = 2598, + + /// + /// block_chance_+% + /// + BlockChancePct = 2599, + + /// + /// local_unique_flask_physical_damage_taken_%_as_cold_while_healing + /// + LocalUniqueFlaskPhysicalDamageTakenPctAsColdWhileHealing = 2600, + + /// + /// local_unique_flask_physical_damage_%_to_add_as_cold_while_healing + /// + LocalUniqueFlaskPhysicalDamagePctToAddAsColdWhileHealing = 2601, + + /// + /// local_unique_flask_avoid_chill_%_while_healing + /// + LocalUniqueFlaskAvoidChillPctWhileHealing = 2602, + + /// + /// local_unique_flask_avoid_freeze_%_while_healing + /// + LocalUniqueFlaskAvoidFreezePctWhileHealing = 2603, + + /// + /// monster_drop_additional_map_items + /// + MonsterDropAdditionalMapItems = 2604, + + /// + /// lightning_warp_move_speed_override + /// + LightningWarpMoveSpeedOverride = 2605, + + /// + /// fire_damage_taken_%_causes_additional_physical_damage + /// + FireDamageTakenPctCausesAdditionalPhysicalDamage = 2606, + + /// + /// chill_effectiveness_on_self_+% + /// + ChillEffectivenessOnSelfPct = 2607, + + /// + /// temporal_chains_effeciveness_+% + /// + TemporalChainsEffecivenessPct = 2608, + + /// + /// gain_flask_charge_when_crit_% + /// + GainFlaskChargeWhenCritPct = 2609, + + /// + /// gain_flask_charge_when_crit_amount + /// + GainFlaskChargeWhenCritAmount = 2610, + + /// + /// self_physical_damage_on_skill_use_%_mana_cost + /// + SelfPhysicalDamageOnSkillUsePctManaCost = 2611, + + /// + /// torment_embezzler_debuff_on_hit_recovery_speed_+% + /// + TormentEmbezzlerDebuffOnHitRecoverySpeedPct = 2612, + + /// + /// monster_no_drops_when_not_deleted_on_death + /// + MonsterNoDropsWhenNotDeletedOnDeath = 2613, + + /// + /// leech_amount_+%_final_on_crit + /// + LeechAmountPctFinalOnCrit = 2614, + + /// + /// unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit + /// + UnqiueAtzitisAcuityInstantLeech60PctEffectivenessOnCrit = 2615, + + /// + /// life_and_mana_leech_is_instant_on_critical + /// + LifeAndManaLeechIsInstantOnCritical = 2616, + + /// + /// bleed_on_melee_attack_chance_% + /// + BleedOnMeleeAttackChancePct = 2617, + + /// + /// physical_damage_over_time_+% + /// + PhysicalDamageOverTimePct = 2618, + + /// + /// elemental_equilibrium_effect_+% + /// + ElementalEquilibriumEffectPct = 2619, + + /// + /// local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent + /// + LocalDisplaySocketedGemsHaveElementalEquilibriumEffectPluspercent = 2620, + + /// + /// attack_damage_+% + /// + AttackDamagePct = 2621, + + /// + /// attack_damage_vs_bleeding_enemies_+% + /// + AttackDamageVsBleedingEnemiesPct = 2622, + + /// + /// chance_to_gain_endurance_charge_on_crit_% + /// + ChanceToGainEnduranceChargeOnCritPct = 2623, + + /// + /// chance_to_gain_power_charge_when_block_% + /// + ChanceToGainPowerChargeWhenBlockPct = 2624, + + /// + /// stuns_have_culling_strike + /// + StunsHaveCullingStrike = 2625, + + /// + /// chance_to_gain_onslaught_on_kill_% + /// + ChanceToGainOnslaughtOnKillPct = 2626, + + /// + /// onslaught_time_granted_on_kill_ms + /// + OnslaughtTimeGrantedOnKillMs = 2627, + + /// + /// base_main_hand_damage_+% + /// + BaseMainHandDamagePct = 2628, + + /// + /// base_off_hand_attack_speed_+% + /// + BaseOffHandAttackSpeedPct = 2629, + + /// + /// damage_vs_enemies_on_low_life_+% + /// + DamageVsEnemiesOnLowLifePct = 2630, + + /// + /// drop_additional_rare_items + /// + DropAdditionalRareItems = 2631, + + /// + /// monster_drop_additional_vaal_items + /// + MonsterDropAdditionalVaalItems = 2632, + + /// + /// bloodlines_shrouded + /// + BloodlinesShrouded = 2633, + + /// + /// monster_pretend_to_be_player_level + /// + MonsterPretendToBePlayerLevel = 2634, + + /// + /// monster_display_ES_when_life_full + /// + MonsterDisplayESWhenLifeFull = 2635, + + /// + /// minimum_added_fire_damage_vs_ignited_enemies + /// + MinimumAddedFireDamageVsIgnitedEnemies = 2636, + + /// + /// maximum_added_fire_damage_vs_ignited_enemies + /// + MaximumAddedFireDamageVsIgnitedEnemies = 2637, + + /// + /// monster_is_possessed + /// + MonsterIsPossessed = 2638, + + /// + /// monster_has_second_form + /// + MonsterHasSecondForm = 2639, + + /// + /// map_crash_instance_debug + /// + MapCrashInstanceDebug = 2640, + + /// + /// map_pause_instance_debug + /// + MapPauseInstanceDebug = 2641, + + /// + /// chance_to_gain_endurance_charge_on_melee_crit_% + /// + ChanceToGainEnduranceChargeOnMeleeCritPct = 2642, + + /// + /// physical_damage_per_endurance_charge_+% + /// + PhysicalDamagePerEnduranceChargePct = 2643, + + /// + /// penetrate_elemental_resistance_per_frenzy_charge_% + /// + PenetrateElementalResistancePerFrenzyChargePct = 2644, + + /// + /// damage_vs_enemies_on_full_life_per_power_charge_+% + /// + DamageVsEnemiesOnFullLifePerPowerChargePct = 2645, + + /// + /// damage_vs_enemies_on_low_life_per_power_charge_+% + /// + DamageVsEnemiesOnLowLifePerPowerChargePct = 2646, + + /// + /// monster_dodge_distance + /// + MonsterDodgeDistance = 2647, + + /// + /// cast_socketed_minion_skills_on_bow_kill_% + /// + CastSocketedMinionSkillsOnBowKillPct = 2648, + + /// + /// minion_damage_+%_per_10_dex + /// + MinionDamagePctPer10Dex = 2649, + + /// + /// unique_bow_minion_spells_triggered + /// + UniqueBowMinionSpellsTriggered = 2650, + + /// + /// Local Flask Ignite Immunity While Healing + /// + LocalFlaskIgniteImmunityWhileHealing = 2651, + + /// + /// Local Flask Chill And Freeze Immunity While Healing + /// + LocalFlaskChillAndFreezeImmunityWhileHealing = 2652, + + /// + /// Local Flask Shock Immunity While Healing + /// + LocalFlaskShockImmunityWhileHealing = 2653, + + /// + /// Local Flask Bleeding Immunity While Healing + /// + LocalFlaskBleedingImmunityWhileHealing = 2654, + + /// + /// immune_to_bleeding + /// + ImmuneToBleeding = 2655, + + /// + /// local_display_socketed_gems_have_number_of_additional_projectiles + /// + LocalDisplaySocketedGemsHaveNumberOfAdditionalProjectiles = 2656, + + /// + /// local_display_socketed_gems_projectiles_nova + /// + LocalDisplaySocketedGemsProjectilesNova = 2657, + + /// + /// local_display_socketed_gems_skill_effect_duration_+% + /// + LocalDisplaySocketedGemsSkillEffectDurationPct = 2658, + + /// + /// life_regen_per_minute_per_endurance_charge + /// + LifeRegenPerMinutePerEnduranceCharge = 2659, + + /// + /// vaal_souls_gained_per_minute + /// + VaalSoulsGainedPerMinute = 2660, + + /// + /// attack_damage_that_stuns_also_chills + /// + AttackDamageThatStunsAlsoChills = 2661, + + /// + /// cannot_knockback + /// + CannotKnockback = 2662, + + /// + /// cleave_disable_predictive_damage + /// + CleaveDisablePredictiveDamage = 2663, + + /// + /// display_map_contains_grandmasters + /// + DisplayMapContainsGrandmasters = 2664, + + /// + /// gain_x_life_when_endurance_charge_expires_or_consumed + /// + GainXLifeWhenEnduranceChargeExpiresOrConsumed = 2665, + + /// + /// virtual_maximum_endurance_charges + /// + VirtualMaximumEnduranceCharges = 2666, + + /// + /// virtual_maximum_frenzy_charges + /// + VirtualMaximumFrenzyCharges = 2667, + + /// + /// virtual_maximum_power_charges + /// + VirtualMaximumPowerCharges = 2668, + + /// + /// no_maximum_power_charges + /// + NoMaximumPowerCharges = 2669, + + /// + /// damage_vs_cursed_enemies_per_enemy_curse_+% + /// + DamageVsCursedEnemiesPerEnemyCursePct = 2670, + + /// + /// virtual_ignite_duration_+% + /// + VirtualIgniteDurationPct = 2671, + + /// + /// virtual_shock_duration_+% + /// + VirtualShockDurationPct = 2672, + + /// + /// virtual_freeze_duration_+% + /// + VirtualFreezeDurationPct = 2673, + + /// + /// virtual_chill_duration_+% + /// + VirtualChillDurationPct = 2674, + + /// + /// base_elemental_status_ailment_duration_+% + /// + BaseElementalStatusAilmentDurationPct = 2675, + + /// + /// local_display_socketed_gems_supported_by_x_knockback_level + /// + LocalDisplaySocketedGemsSupportedByXKnockbackLevel = 2676, + + /// + /// enemy_knockback_direction_is_reversed + /// + EnemyKnockbackDirectionIsReversed = 2677, + + /// + /// map_zana_subarea_mission + /// + MapZanaSubareaMission = 2678, + + /// + /// map_zana_subarea_extra_req + /// + MapZanaSubareaExtraReq = 2679, + + /// + /// immune_to_ally_buff_auras + /// + ImmuneToAllyBuffAuras = 2680, + + /// + /// buff_auras_dont_affect_allies + /// + BuffAurasDontAffectAllies = 2681, + + /// + /// hits_can_only_kill_frozen_enemies + /// + HitsCanOnlyKillFrozenEnemies = 2682, + + /// + /// spectral_throw_deceleration_override + /// + SpectralThrowDecelerationOverride = 2683, + + /// + /// maximum_life_taken_as_physical_damage_on_minion_death_% + /// + MaximumLifeTakenAsPhysicalDamageOnMinionDeathPct = 2684, + + /// + /// maximum_es_taken_as_physical_damage_on_minion_death_% + /// + MaximumEsTakenAsPhysicalDamageOnMinionDeathPct = 2685, + + /// + /// minion_skill_area_of_effect_+% + /// + MinionSkillAreaOfEffectPct = 2686, + + /// + /// energy_shield_regeneration_%_per_minute_while_shocked + /// + EnergyShieldRegenerationPctPerMinuteWhileShocked = 2687, + + /// + /// chest_drops_extra_vaal_fragments + /// + ChestDropsExtraVaalFragments = 2688, + + /// + /// chest_drops_extra_rare_items_of_same_base_type + /// + ChestDropsExtraRareItemsOfSameBaseType = 2689, + + /// + /// ignite_art_variation + /// + IgniteArtVariation = 2690, + + /// + /// curse_apply_as_aura + /// + CurseApplyAsAura = 2691, + + /// + /// combined_pvp_damage_+%_final + /// + CombinedPvpDamagePctFinal = 2692, + + /// + /// support_cast_on_death_pvp_damage_+%_final + /// + SupportCastOnDeathPvpDamagePctFinal = 2693, + + /// + /// support_cast_on_damage_taken_pvp_damage_+%_final + /// + SupportCastOnDamageTakenPvpDamagePctFinal = 2694, + + /// + /// support_cast_when_stunned_pvp_damage_+%_final + /// + SupportCastWhenStunnedPvpDamagePctFinal = 2695, + + /// + /// support_cast_on_crit_pvp_damage_+%_final + /// + SupportCastOnCritPvpDamagePctFinal = 2696, + + /// + /// support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies + /// + SupportBloodlustMeleePhysicalDamagePctFinalVsBleedingEnemies = 2697, + + /// + /// support_bloodlust_melee_physical_damage_+%_final + /// + SupportBloodlustMeleePhysicalDamagePctFinal = 2698, + + /// + /// cannot_be_damaged_by_nonplayer_damage + /// + CannotBeDamagedByNonplayerDamage = 2699, + + /// + /// cannot_cause_bleeding + /// + CannotCauseBleeding = 2700, + + /// + /// inspiring_cry_damage_+%_per_one_hundred_nearby_enemies + /// + InspiringCryDamagePctPerOneHundredNearbyEnemies = 2701, + + /// + /// charge_duration_+% + /// + ChargeDurationPct = 2702, + + /// + /// virtual_power_charge_duration_+% + /// + VirtualPowerChargeDurationPct = 2703, + + /// + /// virtual_endurance_charge_duration_+% + /// + VirtualEnduranceChargeDurationPct = 2704, + + /// + /// daresso_attack_combo_physical_damage_%_to_add_as_cold + /// + DaressoAttackComboPhysicalDamagePctToAddAsCold = 2705, + + /// + /// old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies + /// + OldDoNotUseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 2706, + + /// + /// base_life_leech_from_attack_damage_permyriad + /// + BaseLifeLeechFromAttackDamagePermyriad = 2707, + + /// + /// base_mana_leech_from_attack_damage_permyriad + /// + BaseManaLeechFromAttackDamagePermyriad = 2708, + + /// + /// test_stat_check_code + /// + TestStatCheckCode = 2709, + + /// + /// monster_penalty_against_minions_damage_+%_final + /// + MonsterPenaltyAgainstMinionsDamagePctFinal = 2710, + + /// + /// monster_penalty_against_minions_damage_+%_final_vs_player_minions + /// + MonsterPenaltyAgainstMinionsDamagePctFinalVsPlayerMinions = 2711, + + /// + /// physical_damage_taken_on_minion_death + /// + PhysicalDamageTakenOnMinionDeath = 2712, + + /// + /// abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies + /// + AbyssalCryMovementVelocityPctPerOneHundredNearbyEnemies = 2713, + + /// + /// onslaught_buff_duration_on_culling_strike_ms + /// + OnslaughtBuffDurationOnCullingStrikeMs = 2714, + + /// + /// base_avoid_chill_%_while_have_onslaught + /// + BaseAvoidChillPctWhileHaveOnslaught = 2715, + + /// + /// base_avoid_freeze_%_while_have_onslaught + /// + BaseAvoidFreezePctWhileHaveOnslaught = 2716, + + /// + /// base_avoid_shock_%_while_have_onslaught + /// + BaseAvoidShockPctWhileHaveOnslaught = 2717, + + /// + /// base_avoid_ignite_%_while_have_onslaught + /// + BaseAvoidIgnitePctWhileHaveOnslaught = 2718, + + /// + /// avoid_chill_%_while_have_onslaught + /// + AvoidChillPctWhileHaveOnslaught = 2719, + + /// + /// avoid_freeze_%_while_have_onslaught + /// + AvoidFreezePctWhileHaveOnslaught = 2720, + + /// + /// avoid_shock_%_while_have_onslaught + /// + AvoidShockPctWhileHaveOnslaught = 2721, + + /// + /// avoid_ignite_%_while_have_onslaught + /// + AvoidIgnitePctWhileHaveOnslaught = 2722, + + /// + /// attack_minimum_added_lightning_damage_while_unarmed + /// + AttackMinimumAddedLightningDamageWhileUnarmed = 2723, + + /// + /// attack_maximum_added_lightning_damage_while_unarmed + /// + AttackMaximumAddedLightningDamageWhileUnarmed = 2724, + + /// + /// spell_minimum_added_lightning_damage_while_unarmed + /// + SpellMinimumAddedLightningDamageWhileUnarmed = 2725, + + /// + /// spell_maximum_added_lightning_damage_while_unarmed + /// + SpellMaximumAddedLightningDamageWhileUnarmed = 2726, + + /// + /// gain_X_energy_shield_on_killing_shocked_enemy + /// + GainXEnergyShieldOnKillingShockedEnemy = 2727, + + /// + /// support_concentrated_effect_skill_area_of_effect_+%_final + /// + SupportConcentratedEffectSkillAreaOfEffectPctFinal = 2728, + + /// + /// elemental_damage_+%_per_frenzy_charge + /// + ElementalDamagePctPerFrenzyCharge = 2729, + + /// + /// chaos_damage_poisons + /// + ChaosDamagePoisons = 2730, + + /// + /// mine_extra_uses + /// + MineExtraUses = 2731, + + /// + /// from_code_active_skill_damage_+%_final + /// + FromCodeActiveSkillDamagePctFinal = 2732, + + /// + /// newshocknova_first_ring_damage_+%_final + /// + NewshocknovaFirstRingDamagePctFinal = 2733, + + /// + /// ice_crash_second_hit_damage_+%_final + /// + IceCrashSecondHitDamagePctFinal = 2734, + + /// + /// killed_monster_dropped_item_rarity_+%_when_frozen + /// + KilledMonsterDroppedItemRarityPctWhenFrozen = 2735, + + /// + /// local_six_linked_sockets + /// + LocalSixLinkedSockets = 2736, + + /// + /// local_display_socketed_gems_get_generosity_level + /// + LocalDisplaySocketedGemsGetGenerosityLevel = 2737, + + /// + /// local_display_socketed_gems_get_remote_mine_level + /// + LocalDisplaySocketedGemsGetRemoteMineLevel = 2738, + + /// + /// local_display_aura_life_regeneration_rate_per_minute_% + /// + LocalDisplayAuraLifeRegenerationRatePerMinutePct = 2739, + + /// + /// local_display_aura_mana_regeneration_rate_+% + /// + LocalDisplayAuraManaRegenerationRatePct = 2740, + + /// + /// unique_insanity_do_weird_things + /// + UniqueInsanityDoWeirdThings = 2741, + + /// + /// base_elemental_damage_heals + /// + BaseElementalDamageHeals = 2742, + + /// + /// base_fire_damage_heals + /// + BaseFireDamageHeals = 2743, + + /// + /// base_cold_damage_heals + /// + BaseColdDamageHeals = 2744, + + /// + /// base_lightning_damage_heals + /// + BaseLightningDamageHeals = 2745, + + /// + /// fire_damage_heals + /// + FireDamageHeals = 2746, + + /// + /// cold_damage_heals + /// + ColdDamageHeals = 2747, + + /// + /// lightning_damage_heals + /// + LightningDamageHeals = 2748, + + /// + /// chance_to_gain_power_charge_on_melee_stun_% + /// + ChanceToGainPowerChargeOnMeleeStunPct = 2749, + + /// + /// gain_unholy_might_for_2_seconds_on_melee_crit + /// + GainUnholyMightFor2SecondsOnMeleeCrit = 2750, + + /// + /// unique_mine_damage_+%_final + /// + UniqueMineDamagePctFinal = 2751, + + /// + /// abyssal_cry_%_max_life_as_chaos_on_death + /// + AbyssalCryPctMaxLifeAsChaosOnDeath = 2752, + + /// + /// ignites_reflected_to_self + /// + IgnitesReflectedToSelf = 2753, + + /// + /// avoid_freeze_chill_ignite_%_while_have_onslaught + /// + AvoidFreezeChillIgnitePctWhileHaveOnslaught = 2754, + + /// + /// sword_physical_damage_%_to_add_as_fire + /// + SwordPhysicalDamagePctToAddAsFire = 2755, + + /// + /// gain_onslaught_when_ignited_ms + /// + GainOnslaughtWhenIgnitedMs = 2756, + + /// + /// blind_nearby_enemies_when_ignited_% + /// + BlindNearbyEnemiesWhenIgnitedPct = 2757, + + /// + /// map_has_weather + /// + MapHasWeather = 2758, + + /// + /// malachai_elemental_cone_spell_minimum_damage + /// + MalachaiElementalConeSpellMinimumDamage = 2759, + + /// + /// malachai_elemental_cone_spell_maximum_damage + /// + MalachaiElementalConeSpellMaximumDamage = 2760, + + /// + /// local_display_socketed_gems_supported_by_pierce_level + /// + LocalDisplaySocketedGemsSupportedByPierceLevel = 2761, + + /// + /// map_non_unique_equipment_drops_as_sell_price + /// + MapNonUniqueEquipmentDropsAsSellPrice = 2762, + + /// + /// local_flask_use_causes_monster_flee_chance_% + /// + LocalFlaskUseCausesMonsterFleeChancePct = 2763, + + /// + /// local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect + /// + LocalUniqueLionsRoarMeleePhysicalDamagePctFinalDuringFlaskEffect = 2764, + + /// + /// unique_lions_roar_melee_physical_damage_+%_final + /// + UniqueLionsRoarMeleePhysicalDamagePctFinal = 2765, + + /// + /// local_flask_adds_knockback_during_flask_effect + /// + LocalFlaskAddsKnockbackDuringFlaskEffect = 2766, + + /// + /// map_items_drop_corrupted + /// + MapItemsDropCorrupted = 2767, + + /// + /// chest_number_of_additional_spider_uniques_to_drop + /// + ChestNumberOfAdditionalSpiderUniquesToDrop = 2768, + + /// + /// Mana Gained On Hit + /// + VirtualManaGainPerTarget = 2769, + + /// + /// life_and_mana_gain_per_hit + /// + LifeAndManaGainPerHit = 2770, + + /// + /// life_and_mana_leech_from_physical_damage_permyriad + /// + LifeAndManaLeechFromPhysicalDamagePermyriad = 2771, + + /// + /// cannot_inflict_status_ailments + /// + CannotInflictStatusAilments = 2772, + + /// + /// map_weapons_drop_animated + /// + MapWeaponsDropAnimated = 2773, + + /// + /// attacks_bleed_on_stun + /// + AttacksBleedOnStun = 2774, + + /// + /// chance_to_fortify_on_melee_hit_+% + /// + ChanceToFortifyOnMeleeHitPct = 2775, + + /// + /// taunt_target_id + /// + TauntTargetId = 2776, + + /// + /// spell_minimum_base_cold_damage_+_per_10_intelligence + /// + SpellMinimumBaseColdDamagePer10Intelligence = 2777, + + /// + /// spell_maximum_base_cold_damage_+_per_10_intelligence + /// + SpellMaximumBaseColdDamagePer10Intelligence = 2778, + + /// + /// skill_effect_duration_+%_per_10_strength + /// + SkillEffectDurationPctPer10Strength = 2779, + + /// + /// virtual_skill_effect_duration_+% + /// + VirtualSkillEffectDurationPct = 2780, + + /// + /// skill_is_fire_skill + /// + SkillIsFireSkill = 2781, + + /// + /// skill_is_cold_skill + /// + SkillIsColdSkill = 2782, + + /// + /// skill_is_lightning_skill + /// + SkillIsLightningSkill = 2783, + + /// + /// ground_slam_cone_angle_override + /// + GroundSlamConeAngleOverride = 2784, + + /// + /// virtual_minion_movement_velocity_+% + /// + VirtualMinionMovementVelocityPct = 2785, + + /// + /// map_disable_torment_spirits + /// + MapDisableTormentSpirits = 2786, + + /// + /// map_spawn_extra_torment_spirits + /// + MapSpawnExtraTormentSpirits = 2787, + + /// + /// use_goddess_player_audio + /// + UseGoddessPlayerAudio = 2788, + + /// + /// local_display_grants_skill_gluttony_of_elements_level + /// + LocalDisplayGrantsSkillGluttonyOfElementsLevel = 2789, + + /// + /// local_display_socketed_gems_get_pierce_level + /// + LocalDisplaySocketedGemsGetPierceLevel = 2790, + + /// + /// damage_with_fire_skills_+% + /// + DamageWithFireSkillsPct = 2791, + + /// + /// damage_with_cold_skills_+% + /// + DamageWithColdSkillsPct = 2792, + + /// + /// damage_with_lightning_skills_+% + /// + DamageWithLightningSkillsPct = 2793, + + /// + /// cast_speed_for_fire_skills_+% + /// + CastSpeedForFireSkillsPct = 2794, + + /// + /// cast_speed_for_cold_skills_+% + /// + CastSpeedForColdSkillsPct = 2795, + + /// + /// cast_speed_for_lightning_skills_+% + /// + CastSpeedForLightningSkillsPct = 2796, + + /// + /// movement_velocity_+%_while_phasing + /// + MovementVelocityPctWhilePhasing = 2797, + + /// + /// phase_on_vaal_skill_use_duration_ms + /// + PhaseOnVaalSkillUseDurationMs = 2798, + + /// + /// monster_inherent_damage_taken_+%_final + /// + MonsterInherentDamageTakenPctFinal = 2799, + + /// + /// taunt_duration_+% + /// + TauntDurationPct = 2800, + + /// + /// cyclone_ice_path_radius + /// + CycloneIcePathRadius = 2801, + + /// + /// unarmed_melee_physical_damage_+% + /// + UnarmedMeleePhysicalDamagePct = 2802, + + /// + /// unarmed_melee_attack_speed_+% + /// + UnarmedMeleeAttackSpeedPct = 2803, + + /// + /// cast_speed_+%_while_holding_shield + /// + CastSpeedPctWhileHoldingShield = 2804, + + /// + /// cast_speed_+%_while_holding_staff + /// + CastSpeedPctWhileHoldingStaff = 2805, + + /// + /// virtual_energy_shield_gain_per_target + /// + VirtualEnergyShieldGainPerTarget = 2806, + + /// + /// energy_shield_gain_per_target + /// + EnergyShieldGainPerTarget = 2807, + + /// + /// axe_critical_strike_chance_+% + /// + AxeCriticalStrikeChancePct = 2808, + + /// + /// claw_critical_strike_multiplier_+ + /// + ClawCriticalStrikeMultiplier = 2809, + + /// + /// staff_critical_strike_multiplier_+ + /// + StaffCriticalStrikeMultiplier = 2810, + + /// + /// local_jewel_effect_base_radius + /// + LocalJewelEffectBaseRadius = 2811, + + /// + /// local_jewel_nearby_passives_str_to_dex + /// + LocalJewelNearbyPassivesStrToDex = 2812, + + /// + /// local_jewel_nearby_passives_dex_to_str + /// + LocalJewelNearbyPassivesDexToStr = 2813, + + /// + /// local_jewel_nearby_passives_str_to_int + /// + LocalJewelNearbyPassivesStrToInt = 2814, + + /// + /// local_jewel_nearby_passives_int_to_str + /// + LocalJewelNearbyPassivesIntToStr = 2815, + + /// + /// local_jewel_nearby_passives_dex_to_int + /// + LocalJewelNearbyPassivesDexToInt = 2816, + + /// + /// local_jewel_nearby_passives_int_to_dex + /// + LocalJewelNearbyPassivesIntToDex = 2817, + + /// + /// critical_strike_chance_while_wielding_shield_+% + /// + CriticalStrikeChanceWhileWieldingShieldPct = 2818, + + /// + /// trap_critical_strike_chance_+% + /// + TrapCriticalStrikeChancePct = 2819, + + /// + /// mine_critical_strike_chance_+% + /// + MineCriticalStrikeChancePct = 2820, + + /// + /// projectiles_can_shotgun + /// + ProjectilesCanShotgun = 2821, + + /// + /// life_recovery_rate_+% + /// + LifeRecoveryRatePct = 2822, + + /// + /// mana_recovery_rate_+% + /// + ManaRecoveryRatePct = 2823, + + /// + /// energy_shield_recovery_rate_+% + /// + EnergyShieldRecoveryRatePct = 2824, + + /// + /// spell_chance_to_shock_frozen_enemies_% + /// + SpellChanceToShockFrozenEnemiesPct = 2825, + + /// + /// cannot_be_taunted + /// + CannotBeTaunted = 2826, + + /// + /// cannot_be_taunted_when_taunted_ms + /// + CannotBeTauntedWhenTauntedMs = 2827, + + /// + /// attacks_do_not_cost_mana + /// + AttacksDoNotCostMana = 2828, + + /// + /// cannot_leech_or_regenerate_mana + /// + CannotLeechOrRegenerateMana = 2829, + + /// + /// virtual_global_cannot_crit + /// + VirtualGlobalCannotCrit = 2830, + + /// + /// virtual_global_attacks_always_hit + /// + VirtualGlobalAttacksAlwaysHit = 2831, + + /// + /// resolute_technique + /// + ResoluteTechnique = 2832, + + /// + /// local_life_and_mana_leech_from_physical_damage_permyriad + /// + LocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2833, + + /// + /// main_hand_local_life_and_mana_leech_from_physical_damage_permyriad + /// + MainHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2834, + + /// + /// off_hand_local_life_and_mana_leech_from_physical_damage_permyriad + /// + OffHandLocalLifeAndManaLeechFromPhysicalDamagePermyriad = 2835, + + /// + /// local_flask_use_causes_area_knockback + /// + LocalFlaskUseCausesAreaKnockback = 2836, + + /// + /// skill_is_chaos_skill + /// + SkillIsChaosSkill = 2837, + + /// + /// critical_strike_multiplier_is_100 + /// + CriticalStrikeMultiplierIs100 = 2838, + + /// + /// can_inflict_multiple_ignites + /// + CanInflictMultipleIgnites = 2839, + + /// + /// ignite_duration_-% + /// + IgniteDurationPct2 = 2840, + + /// + /// passive_can_be_allocated_without_connection + /// + PassiveCanBeAllocatedWithoutConnection = 2841, + + /// + /// local_unique_jewel_nearby_disconnected_passives_can_be_allocated + /// + LocalUniqueJewelNearbyDisconnectedPassivesCanBeAllocated = 2842, + + /// + /// Local Chance To Bleed On Hit % + /// + LocalChanceToBleedOnHitPct = 2843, + + /// + /// main_hand_local_chance_to_bleed_on_hit_% + /// + MainHandLocalChanceToBleedOnHitPct = 2844, + + /// + /// off_hand_local_chance_to_bleed_on_hit_% + /// + OffHandLocalChanceToBleedOnHitPct = 2845, + + /// + /// skill_total_pvp_damage_+%_final + /// + SkillTotalPvpDamagePctFinal = 2846, + + /// + /// fire_critical_strike_chance_+% + /// + FireCriticalStrikeChancePct = 2847, + + /// + /// lightning_critical_strike_chance_+% + /// + LightningCriticalStrikeChancePct = 2848, + + /// + /// cold_critical_strike_chance_+% + /// + ColdCriticalStrikeChancePct = 2849, + + /// + /// elemental_critical_strike_chance_+% + /// + ElementalCriticalStrikeChancePct = 2850, + + /// + /// chaos_critical_strike_chance_+% + /// + ChaosCriticalStrikeChancePct = 2851, + + /// + /// pvp_shield_damage_+%_final + /// + PvpShieldDamagePctFinal = 2852, + + /// + /// skill_area_of_effect_when_unarmed_+% + /// + SkillAreaOfEffectWhenUnarmedPct = 2853, + + /// + /// gain_X_random_rare_monster_mods_on_kill + /// + GainXRandomRareMonsterModsOnKill = 2854, + + /// + /// chance_to_gain_power_charge_on_stun_% + /// + ChanceToGainPowerChargeOnStunPct = 2855, + + /// + /// gain_unholy_might_for_2_seconds_on_crit + /// + GainUnholyMightFor2SecondsOnCrit = 2856, + + /// + /// monster_life_+%_final_from_rarity + /// + MonsterLifePctFinalFromRarity = 2857, + + /// + /// monster_life_+%_final_from_map + /// + MonsterLifePctFinalFromMap = 2858, + + /// + /// melee_critical_strike_multiplier_+_while_wielding_shield + /// + MeleeCriticalStrikeMultiplierWhileWieldingShield = 2859, + + /// + /// trap_critical_strike_multiplier_+ + /// + TrapCriticalStrikeMultiplier = 2860, + + /// + /// mine_critical_strike_multiplier_+ + /// + MineCriticalStrikeMultiplier = 2861, + + /// + /// fire_critical_strike_multiplier_+ + /// + FireCriticalStrikeMultiplier = 2862, + + /// + /// lightning_critical_strike_multiplier_+ + /// + LightningCriticalStrikeMultiplier = 2863, + + /// + /// cold_critical_strike_multiplier_+ + /// + ColdCriticalStrikeMultiplier = 2864, + + /// + /// elemental_critical_strike_multiplier_+ + /// + ElementalCriticalStrikeMultiplier = 2865, + + /// + /// chaos_critical_strike_multiplier_+ + /// + ChaosCriticalStrikeMultiplier = 2866, + + /// + /// cast_speed_for_chaos_skills_+% + /// + CastSpeedForChaosSkillsPct = 2867, + + /// + /// spell_block_while_dual_wielding_% + /// + SpellBlockWhileDualWieldingPct = 2868, + + /// + /// spell_block_with_staff_% + /// + SpellBlockWithStaffPct = 2869, + + /// + /// recover_%_maximum_life_when_corpse_destroyed_or_consumed + /// + RecoverPctMaximumLifeWhenCorpseDestroyedOrConsumed = 2870, + + /// + /// local_unique_jewel_totem_life_+X%_per_10_str_in_radius + /// + LocalUniqueJewelTotemLifeXpctPer10StrInRadius = 2871, + + /// + /// minion_chance_to_dodge_% + /// + MinionChanceToDodgePct = 2872, + + /// + /// local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill + /// + LocalUniqueJewelWith4NotablesGainXRandomRareMonsterModsOnKill = 2873, + + /// + /// minimum_added_fire_damage_per_active_buff + /// + MinimumAddedFireDamagePerActiveBuff = 2874, + + /// + /// maximum_added_fire_damage_per_active_buff + /// + MaximumAddedFireDamagePerActiveBuff = 2875, + + /// + /// recover_%_of_maximum_life_on_block + /// + RecoverPctOfMaximumLifeOnBlock = 2876, + + /// + /// minion_recover_%_of_maximum_life_on_block + /// + MinionRecoverPctOfMaximumLifeOnBlock = 2877, + + /// + /// totems_cannot_be_stunned + /// + TotemsCannotBeStunned = 2878, + + /// + /// is_leeching + /// + IsLeeching = 2879, + + /// + /// damage_+%_while_leeching + /// + DamagePctWhileLeeching = 2880, + + /// + /// is_life_leeching + /// + IsLifeLeeching = 2881, + + /// + /// is_mana_leeching + /// + IsManaLeeching = 2882, + + /// + /// is_es_leeching + /// + IsEsLeeching = 2883, + + /// + /// movement_velocity_+%_while_ignited + /// + MovementVelocityPctWhileIgnited = 2884, + + /// + /// bow_damage_+% + /// + BowDamagePct = 2885, + + /// + /// display_bow_range_+ + /// + DisplayBowRange = 2886, + + /// + /// bleed_on_bow_attack_chance_% + /// + BleedOnBowAttackChancePct = 2887, + + /// + /// bow_physical_damage_+%_while_holding_shield + /// + BowPhysicalDamagePctWhileHoldingShield = 2888, + + /// + /// bow_steal_power_frenzy_endurance_charges_on_hit_% + /// + BowStealPowerFrenzyEnduranceChargesOnHitPct = 2889, + + /// + /// life_leech_from_physical_damage_with_bow_permyriad + /// + LifeLeechFromPhysicalDamageWithBowPermyriad = 2890, + + /// + /// mana_leech_from_physical_damage_with_bow_permyriad + /// + ManaLeechFromPhysicalDamageWithBowPermyriad = 2891, + + /// + /// poison_on_critical_strike_with_bow + /// + PoisonOnCriticalStrikeWithBow = 2892, + + /// + /// bow_elemental_damage_+% + /// + BowElementalDamagePct = 2893, + + /// + /// with_bow_additional_block_% + /// + WithBowAdditionalBlockPct = 2894, + + /// + /// bow_enemy_block_-% + /// + BowEnemyBlockPct = 2895, + + /// + /// local_unique_jewel_melee_applies_to_bow + /// + LocalUniqueJewelMeleeAppliesToBow = 2896, + + /// + /// local_unique_jewel_chaos_damage_+%_per_10_int_in_radius + /// + LocalUniqueJewelChaosDamagePctPer10IntInRadius = 2897, + + /// + /// local_unique_jewel_passives_in_radius_applied_to_minions_instead + /// + LocalUniqueJewelPassivesInRadiusAppliedToMinionsInstead = 2898, + + /// + /// life_gained_on_hit_per_enemy_status_ailment + /// + LifeGainedOnHitPerEnemyStatusAilment = 2899, + + /// + /// life_gained_on_spell_hit_per_enemy_status_ailment + /// + LifeGainedOnSpellHitPerEnemyStatusAilment = 2900, + + /// + /// life_regeneration_rate_+%_while_es_full + /// + LifeRegenerationRatePctWhileEsFull = 2901, + + /// + /// local_unique_jewel_with_x_int_in_radius_+1_curse + /// + LocalUniqueJewelWithXIntInRadius1Curse = 2902, + + /// + /// melee_range_+_while_unarmed + /// + MeleeRangeWhileUnarmed = 2903, + + /// + /// damage_+%_per_equipped_magic_item + /// + DamagePctPerEquippedMagicItem = 2904, + + /// + /// number_of_equipped_magic_items + /// + NumberOfEquippedMagicItems = 2905, + + /// + /// base_number_of_golems_allowed + /// + BaseNumberOfGolemsAllowed = 2906, + + /// + /// number_of_golems_allowed + /// + NumberOfGolemsAllowed = 2907, + + /// + /// fire_golem_grants_damage_+% + /// + FireGolemGrantsDamagePct = 2908, + + /// + /// ice_golem_grants_critical_strike_chance_+% + /// + IceGolemGrantsCriticalStrikeChancePct = 2909, + + /// + /// ice_golem_grants_accuracy_+% + /// + IceGolemGrantsAccuracyPct = 2910, + + /// + /// chaos_golem_grants_additional_physical_damage_reduction_% + /// + ChaosGolemGrantsAdditionalPhysicalDamageReductionPct = 2911, + + /// + /// spell_damage_+%_while_es_full + /// + SpellDamagePctWhileEsFull = 2912, + + /// + /// virtual_number_of_additional_projectiles + /// + VirtualNumberOfAdditionalProjectiles = 2913, + + /// + /// totem_number_of_additional_projectiles + /// + TotemNumberOfAdditionalProjectiles = 2914, + + /// + /// chance_to_dodge_spells_%_while_es_full + /// + ChanceToDodgeSpellsPctWhileEsFull = 2915, + + /// + /// chance_to_gain_unholy_might_on_melee_kill_% + /// + ChanceToGainUnholyMightOnMeleeKillPct = 2916, + + /// + /// spell_damage_+%_while_no_mana_reserved + /// + SpellDamagePctWhileNoManaReserved = 2917, + + /// + /// mana_reserved + /// + ManaReserved = 2918, + + /// + /// spell_damage_+%_while_not_low_mana + /// + SpellDamagePctWhileNotLowMana = 2919, + + /// + /// mana_cost_+%_while_not_low_mana + /// + ManaCostPctWhileNotLowMana = 2920, + + /// + /// local_display_grants_skill_icestorm_level + /// + LocalDisplayGrantsSkillIcestormLevel = 2921, + + /// + /// spell_damage_+%_per_10_int + /// + SpellDamagePctPer10Int = 2922, + + /// + /// virtual_firestorm_drop_chilled_ground_duration_ms + /// + VirtualFirestormDropChilledGroundDurationMs = 2923, + + /// + /// virtual_firestorm_drop_shocked_ground_duration_ms + /// + VirtualFirestormDropShockedGroundDurationMs = 2924, + + /// + /// virtual_firestorm_drop_burning_ground_duration_ms + /// + VirtualFirestormDropBurningGroundDurationMs = 2925, + + /// + /// number_of_assigned_keystones + /// + NumberOfAssignedKeystones = 2926, + + /// + /// all_attributes_+%_per_assigned_keystone + /// + AllAttributesPctPerAssignedKeystone = 2927, + + /// + /// number_of_additional_clones + /// + NumberOfAdditionalClones = 2928, + + /// + /// damage_taken_+%_from_hits + /// + DamageTakenPctFromHits = 2929, + + /// + /// chance_to_gain_frenzy_charge_on_killing_frozen_enemy_% + /// + ChanceToGainFrenzyChargeOnKillingFrozenEnemyPct = 2930, + + /// + /// damage_+%_vs_frozen_enemies + /// + DamagePctVsFrozenEnemies = 2931, + + /// + /// support_hypothermia_damage_+%_vs_chilled_enemies_final + /// + SupportHypothermiaDamagePctVsChilledEnemiesFinal = 2932, + + /// + /// additional_chance_to_freeze_chilled_enemies_% + /// + AdditionalChanceToFreezeChilledEnemiesPct = 2933, + + /// + /// onslaught_time_granted_on_killing_shocked_enemy_ms + /// + OnslaughtTimeGrantedOnKillingShockedEnemyMs = 2934, + + /// + /// support_hypothermia_damage_+%_final + /// + SupportHypothermiaDamagePctFinal = 2935, + + /// + /// object_inherent_attack_skills_damage_+%_final_per_frenzy_charge + /// + ObjectInherentAttackSkillsDamagePctFinalPerFrenzyCharge = 2936, + + /// + /// skill_effect_duration_per_100_int + /// + SkillEffectDurationPer100Int = 2937, + + /// + /// local_unique_jewel_intelligence_per_unallocated_node_in_radius + /// + LocalUniqueJewelIntelligencePerUnallocatedNodeInRadius = 2938, + + /// + /// local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_% + /// + LocalUniqueJewelWith70DexPhysicalDamageToAddAsChaosPct = 2939, + + /// + /// local_unique_jewel_with_70_str_life_recovery_speed_+% + /// + LocalUniqueJewelWith70StrLifeRecoverySpeedPct = 2940, + + /// + /// cannot_be_cursed_with_silence + /// + CannotBeCursedWithSilence = 2941, + + /// + /// number_of_equipped_corrupted_items + /// + NumberOfEquippedCorruptedItems = 2942, + + /// + /// vaal_skill_damage_+% + /// + VaalSkillDamagePct = 2943, + + /// + /// skill_is_vaal_skill + /// + SkillIsVaalSkill = 2944, + + /// + /// damage_+%_while_dead + /// + DamagePctWhileDead = 2945, + + /// + /// chaos_damage_+%_per_equipped_corrupted_item + /// + ChaosDamagePctPerEquippedCorruptedItem = 2946, + + /// + /// life_leech_speed_+%_per_equipped_corrupted_item + /// + LifeLeechSpeedPctPerEquippedCorruptedItem = 2947, + + /// + /// virtual_life_leech_speed_+% + /// + VirtualLifeLeechSpeedPct = 2948, + + /// + /// mana_leech_speed_+%_per_equipped_corrupted_item + /// + ManaLeechSpeedPctPerEquippedCorruptedItem = 2949, + + /// + /// virtual_mana_leech_speed_+% + /// + VirtualManaLeechSpeedPct = 2950, + + /// + /// skill_is_attack + /// + SkillIsAttack = 2951, + + /// + /// hundred_times_non_spell_casts_per_second + /// + HundredTimesNonSpellCastsPerSecond = 2952, + + /// + /// sound_on_rare_kill_ice_whisper + /// + SoundOnRareKillIceWhisper = 2953, + + /// + /// chance_to_gain_vaal_soul_on_kill_% + /// + ChanceToGainVaalSoulOnKillPct = 2954, + + /// + /// piety_fire_form_hits_cause_stacking_damage_taken + /// + PietyFireFormHitsCauseStackingDamageTaken = 2955, + + /// + /// vaal_skill_effect_duration_+% + /// + VaalSkillEffectDurationPct = 2956, + + /// + /// energy_shield_protects_mana + /// + EnergyShieldProtectsMana = 2957, + + /// + /// spend_energy_shield_for_costs_before_mana + /// + SpendEnergyShieldForCostsBeforeMana = 2958, + + /// + /// vaal_skill_critical_strike_chance_+% + /// + VaalSkillCriticalStrikeChancePct = 2959, + + /// + /// local_unique_item_limit + /// + LocalUniqueItemLimit = 2960, + + /// + /// vaal_skill_critical_strike_multiplier_+ + /// + VaalSkillCriticalStrikeMultiplier = 2961, + + /// + /// local_display_aura_allies_have_culling_strike + /// + LocalDisplayAuraAlliesHaveCullingStrike = 2962, + + /// + /// local_display_aura_allies_have_increased_item_rarity_+% + /// + LocalDisplayAuraAlliesHaveIncreasedItemRarityPct = 2963, + + /// + /// chance_to_gain_vaal_soul_on_enemy_shatter_% + /// + ChanceToGainVaalSoulOnEnemyShatterPct = 2964, + + /// + /// mana_cost_+%_on_totemified_aura_skills + /// + ManaCostPctOnTotemifiedAuraSkills = 2965, + + /// + /// skill_is_aura_skill + /// + SkillIsAuraSkill = 2966, + + /// + /// corrupted_gem_experience_gain_+% + /// + CorruptedGemExperienceGainPct = 2967, + + /// + /// active_skill_attack_damage_final_permyriad + /// + ActiveSkillAttackDamageFinalPermyriad = 2968, + + /// + /// fortify_duration_+% + /// + FortifyDurationPct = 2969, + + /// + /// support_slower_projectiles_damage_+%_final + /// + SupportSlowerProjectilesDamagePctFinal = 2970, + + /// + /// chance_to_evade_melee_attacks_+% + /// + ChanceToEvadeMeleeAttacksPct = 2971, + + /// + /// support_elemental_proliferation_damage_+%_final + /// + SupportElementalProliferationDamagePctFinal = 2972, + + /// + /// flicker_strike_more_attack_speed_+%_final + /// + FlickerStrikeMoreAttackSpeedPctFinal = 2973, + + /// + /// support_minion_damage_+%_final + /// + SupportMinionDamagePctFinal = 2974, + + /// + /// life_leech_uses_chaos_damage_when_X_corrupted_items_equipped + /// + LifeLeechUsesChaosDamageWhenXCorruptedItemsEquipped = 2975, + + /// + /// half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped + /// + HalfPhysicalBypassesEsHalfChaosDamagesEsWhenXCorruptedItemsEquipped = 2976, + + /// + /// chaos_damage_damages_energy_shield_% + /// + ChaosDamageDamagesEnergyShieldPct = 2977, + + /// + /// physical_damage_bypass_energy_shield_% + /// + PhysicalDamageBypassEnergyShieldPct = 2978, + + /// + /// gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms + /// + GainSoulEaterWithEquippedCorruptedItemsOnVaalSkillUseMs = 2979, + + /// + /// base_spell_lightning_damage_+% + /// + BaseSpellLightningDamagePct = 2980, + + /// + /// wrath_aura_spell_lightning_damage_+%_final + /// + WrathAuraSpellLightningDamagePctFinal = 2981, + + /// + /// support_slower_projectiles_projectile_speed_+%_final + /// + SupportSlowerProjectilesProjectileSpeedPctFinal = 2982, + + /// + /// support_reduced_duration_skill_effect_duration_+%_final + /// + SupportReducedDurationSkillEffectDurationPctFinal = 2983, + + /// + /// maximum_mana_%_gained_on_kill + /// + MaximumManaPctGainedOnKill = 2984, + + /// + /// maximum_life_%_lost_on_kill + /// + MaximumLifePctLostOnKill = 2985, + + /// + /// maximum_energy_shield_%_lost_on_kill + /// + MaximumEnergyShieldPctLostOnKill = 2986, + + /// + /// passive_applies_to_minions + /// + PassiveAppliesToMinions = 2987, + + /// + /// chance_to_curse_self_with_punishment_on_kill_% + /// + ChanceToCurseSelfWithPunishmentOnKillPct = 2988, + + /// + /// damage_taken_+%_while_es_full + /// + DamageTakenPctWhileEsFull = 2989, + + /// + /// base_deal_no_damage + /// + BaseDealNoDamage = 2990, + + /// + /// voll_slam_damage_+%_final_at_centre + /// + VollSlamDamagePctFinalAtCentre = 2991, + + /// + /// local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius + /// + LocalUniqueJewelEvasionRatingPctPerXDexInRadius = 2992, + + /// + /// local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius + /// + LocalUniqueJewelClawPhysicalDamagePctPerXDexInRadius = 2993, + + /// + /// local_unique_jewel_damage_increases_applies_to_fire_damage + /// + LocalUniqueJewelDamageIncreasesAppliesToFireDamage = 2994, + + /// + /// fire_sword_damage_+% + /// + FireSwordDamagePct = 2995, + + /// + /// fire_wand_damage_+% + /// + FireWandDamagePct = 2996, + + /// + /// two_handed_melee_fire_damage_+% + /// + TwoHandedMeleeFireDamagePct = 2997, + + /// + /// spell_fire_damage_+% + /// + SpellFireDamagePct = 2998, + + /// + /// melee_fire_damage_+%_while_holding_shield + /// + MeleeFireDamagePctWhileHoldingShield = 2999, + + /// + /// fire_staff_damage_+% + /// + FireStaffDamagePct = 3000, + + /// + /// fire_mace_damage_+% + /// + FireMaceDamagePct = 3001, + + /// + /// fire_damage_while_dual_wielding_+% + /// + FireDamageWhileDualWieldingPct = 3002, + + /// + /// fire_dagger_damage_+% + /// + FireDaggerDamagePct = 3003, + + /// + /// fire_claw_damage_+% + /// + FireClawDamagePct = 3004, + + /// + /// fire_bow_damage_+% + /// + FireBowDamagePct = 3005, + + /// + /// fire_axe_damage_+% + /// + FireAxeDamagePct = 3006, + + /// + /// fire_attack_damage_+% + /// + FireAttackDamagePct = 3007, + + /// + /// one_handed_melee_fire_damage_+% + /// + OneHandedMeleeFireDamagePct = 3008, + + /// + /// melee_fire_damage_+% + /// + MeleeFireDamagePct = 3009, + + /// + /// fire_damage_over_time_+% + /// + FireDamageOverTimePct = 3010, + + /// + /// local_unique_jewel_physical_damage_increases_applies_to_cold_damage + /// + LocalUniqueJewelPhysicalDamageIncreasesAppliesToColdDamage = 3011, + + /// + /// cold_sword_damage_+% + /// + ColdSwordDamagePct = 3012, + + /// + /// cold_wand_damage_+% + /// + ColdWandDamagePct = 3013, + + /// + /// two_handed_melee_cold_damage_+% + /// + TwoHandedMeleeColdDamagePct = 3014, + + /// + /// spell_cold_damage_+% + /// + SpellColdDamagePct = 3015, + + /// + /// melee_cold_damage_+%_while_holding_shield + /// + MeleeColdDamagePctWhileHoldingShield = 3016, + + /// + /// cold_staff_damage_+% + /// + ColdStaffDamagePct = 3017, + + /// + /// cold_mace_damage_+% + /// + ColdMaceDamagePct = 3018, + + /// + /// cold_damage_while_dual_wielding_+% + /// + ColdDamageWhileDualWieldingPct = 3019, + + /// + /// cold_dagger_damage_+% + /// + ColdDaggerDamagePct = 3020, + + /// + /// cold_claw_damage_+% + /// + ColdClawDamagePct = 3021, + + /// + /// cold_bow_damage_+% + /// + ColdBowDamagePct = 3022, + + /// + /// cold_axe_damage_+% + /// + ColdAxeDamagePct = 3023, + + /// + /// cold_attack_damage_+% + /// + ColdAttackDamagePct = 3024, + + /// + /// one_handed_melee_cold_damage_+% + /// + OneHandedMeleeColdDamagePct = 3025, + + /// + /// melee_cold_damage_+% + /// + MeleeColdDamagePct = 3026, + + /// + /// cold_damage_over_time_+% + /// + ColdDamageOverTimePct = 3027, + + /// + /// additional_staff_block_% + /// + AdditionalStaffBlockPct = 3028, + + /// + /// local_unique_jewel_cold_damage_increases_applies_to_physical_damage + /// + LocalUniqueJewelColdDamageIncreasesAppliesToPhysicalDamage = 3029, + + /// + /// local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex + /// + LocalUniqueJewelOneAdditionalMaximumLightningDamagePerXDex = 3030, + + /// + /// local_unique_jewel_additional_life_per_X_int_in_radius + /// + LocalUniqueJewelAdditionalLifePerXIntInRadius = 3031, + + /// + /// local_unique_jewel_chaos_damage_+%_per_X_int_in_radius + /// + LocalUniqueJewelChaosDamagePctPerXIntInRadius = 3032, + + /// + /// local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius + /// + LocalUniqueJewelChillFreezeDurationPctPerXDexInRadius = 3033, + + /// + /// local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius + /// + LocalUniqueJewelDexAndIntApplyToStrMeleeDamageBonusInRadius = 3034, + + /// + /// melee_damage_bonus_attributes_from_jewels + /// + MeleeDamageBonusAttributesFromJewels = 3035, + + /// + /// kaom_number_of_spawners_triggered + /// + KaomNumberOfSpawnersTriggered = 3036, + + /// + /// melee_damage_vs_bleeding_enemies_+% + /// + MeleeDamageVsBleedingEnemiesPct = 3037, + + /// + /// number_of_active_buffs + /// + NumberOfActiveBuffs = 3038, + + /// + /// fire_mortar_second_hit_damage_+%_final + /// + FireMortarSecondHitDamagePctFinal = 3039, + + /// + /// support_trap_and_mine_damage_+%_final + /// + SupportTrapAndMineDamagePctFinal = 3040, + + /// + /// active_skill_minion_added_damage_+%_final + /// + ActiveSkillMinionAddedDamagePctFinal = 3041, + + /// + /// minion_added_damage_+%_final_from_skill + /// + MinionAddedDamagePctFinalFromSkill = 3042, + + /// + /// newpunishment_melee_physical_damage_+%_final + /// + NewpunishmentMeleePhysicalDamagePctFinal = 3043, + + /// + /// physical_damage_+%_while_life_leeching + /// + PhysicalDamagePctWhileLifeLeeching = 3044, + + /// + /// spell_staff_damage_+% + /// + SpellStaffDamagePct = 3045, + + /// + /// spell_damage_+%_while_holding_shield + /// + SpellDamagePctWhileHoldingShield = 3046, + + /// + /// spell_damage_+%_while_dual_wielding + /// + SpellDamagePctWhileDualWielding = 3047, + + /// + /// cyclone_places_ground_fire_damage_per_minute + /// + CyclonePlacesGroundFireDamagePerMinute = 3048, + + /// + /// newpunishment_melee_damage_+%_final + /// + NewpunishmentMeleeDamagePctFinal = 3049, + + /// + /// newpunishment_attack_speed_+% + /// + NewpunishmentAttackSpeedPct = 3050, + + /// + /// base_strength_and_dexterity + /// + BaseStrengthAndDexterity = 3051, + + /// + /// base_strength_and_intelligence + /// + BaseStrengthAndIntelligence = 3052, + + /// + /// base_dexterity_and_intelligence + /// + BaseDexterityAndIntelligence = 3053, + + /// + /// base_physical_damage_%_of_maximum_life_to_deal_per_minute + /// + BasePhysicalDamagePctOfMaximumLifeToDealPerMinute = 3054, + + /// + /// has_fortify + /// + HasFortify = 3055, + + /// + /// physical_damage_reduction_rating_+%_while_fortify_is_active + /// + PhysicalDamageReductionRatingPctWhileFortifyIsActive = 3056, + + /// + /// evasion_rating_+%_while_onslaught_is_active + /// + EvasionRatingPctWhileOnslaughtIsActive = 3057, + + /// + /// fortify_effect_+% + /// + FortifyEffectPct = 3058, + + /// + /// melee_physical_damage_+%_while_fortify_is_active + /// + MeleePhysicalDamagePctWhileFortifyIsActive = 3059, + + /// + /// local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius + /// + LocalUniqueJewelUnarmedDamagePctPerXDexInRadius = 3060, + + /// + /// increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem + /// + IncreasedCriticalStrikeChanceBuffForXMillisecondsOnPlacingATotem = 3061, + + /// + /// %_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy + /// + PctChanceToGainPowerChargeOnTrapTriggeredByAnEnemy = 3062, + + /// + /// %_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy + /// + PctChanceToGainPowerChargeOnMineDetonatedTargetingAnEnemy = 3063, + + /// + /// totem_critical_strike_chance_+% + /// + TotemCriticalStrikeChancePct = 3064, + + /// + /// totem_critical_strike_multiplier_+ + /// + TotemCriticalStrikeMultiplier = 3065, + + /// + /// damage_+%_per_active_curse_on_self + /// + DamagePctPerActiveCurseOnSelf = 3066, + + /// + /// map_force_topology + /// + MapForceTopology = 3067, + + /// + /// maximum_life_leech_rate_%_per_minute + /// + MaximumLifeLeechRatePctPerMinute = 3068, + + /// + /// maximum_mana_leech_rate_%_per_minute + /// + MaximumManaLeechRatePctPerMinute = 3069, + + /// + /// chill_enemy_when_hit_duration_ms + /// + ChillEnemyWhenHitDurationMs = 3070, + + /// + /// ice_crash_third_hit_damage_+%_final + /// + IceCrashThirdHitDamagePctFinal = 3071, + + /// + /// newpunishment_applied_buff_duration_ms + /// + NewpunishmentAppliedBuffDurationMs = 3072, + + /// + /// recover_X_life_on_block + /// + RecoverXLifeOnBlock = 3073, + + /// + /// minion_recover_X_life_on_block + /// + MinionRecoverXLifeOnBlock = 3074, + + /// + /// base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute + /// + BasePhysicalDamagePctOfMaximumEnergyShieldToDealPerMinute = 3075, + + /// + /// base_physical_damage_%_of_maximum_energy_shield_taken_per_minute + /// + BasePhysicalDamagePctOfMaximumEnergyShieldTakenPerMinute = 3076, + + /// + /// minimum_added_fire_attack_damage_per_active_buff + /// + MinimumAddedFireAttackDamagePerActiveBuff = 3077, + + /// + /// maximum_added_fire_attack_damage_per_active_buff + /// + MaximumAddedFireAttackDamagePerActiveBuff = 3078, + + /// + /// minimum_added_fire_spell_damage_per_active_buff + /// + MinimumAddedFireSpellDamagePerActiveBuff = 3079, + + /// + /// maximum_added_fire_spell_damage_per_active_buff + /// + MaximumAddedFireSpellDamagePerActiveBuff = 3080, + + /// + /// revenant_revive_explode_damage_% + /// + RevenantReviveExplodeDamagePct = 3081, + + /// + /// new_arctic_armour_physical_damage_taken_when_hit_+%_final + /// + NewArcticArmourPhysicalDamageTakenWhenHitPctFinal = 3082, + + /// + /// new_arctic_armour_fire_damage_taken_when_hit_+%_final + /// + NewArcticArmourFireDamageTakenWhenHitPctFinal = 3083, + + /// + /// firestorm_use_server_effects + /// + FirestormUseServerEffects = 3084, + + /// + /// monster_no_map_drops + /// + MonsterNoMapDrops = 3085, + + /// + /// Local Life Gain Per Target + /// + LocalLifeGainPerTarget = 3086, + + /// + /// base_main_hand_local_life_gain_per_target + /// + BaseMainHandLocalLifeGainPerTarget = 3087, + + /// + /// base_off_hand_local_life_gain_per_target + /// + BaseOffHandLocalLifeGainPerTarget = 3088, + + /// + /// Local Mana Gain Per Target + /// + LocalManaGainPerTarget = 3089, + + /// + /// base_main_hand_local_mana_gain_per_target + /// + BaseMainHandLocalManaGainPerTarget = 3090, + + /// + /// base_off_hand_local_mana_gain_per_target + /// + BaseOffHandLocalManaGainPerTarget = 3091, + + /// + /// local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect + /// + LocalUniqueChaosDamageDoesNotBypassEnergyShieldDuringFlaskEffect = 3092, + + /// + /// local_unique_remove_life_and_regen_es_from_removed_life + /// + LocalUniqueRemoveLifeAndRegenEsFromRemovedLife = 3093, + + /// + /// local_unique_regen_es_from_removed_life_duration_ms + /// + LocalUniqueRegenEsFromRemovedLifeDurationMs = 3094, + + /// + /// elemental_strike_physical_damage_%_to_convert + /// + ElementalStrikePhysicalDamagePctToConvert = 3095, + + /// + /// main_hand_local_life_gain_per_target + /// + MainHandLocalLifeGainPerTarget = 3096, + + /// + /// off_hand_local_life_gain_per_target + /// + OffHandLocalLifeGainPerTarget = 3097, + + /// + /// local_life_and_mana_gain_per_target + /// + LocalLifeAndManaGainPerTarget = 3098, + + /// + /// base_main_hand_local_life_and_mana_gain_per_target + /// + BaseMainHandLocalLifeAndManaGainPerTarget = 3099, + + /// + /// base_off_hand_local_life_and_mana_gain_per_target + /// + BaseOffHandLocalLifeAndManaGainPerTarget = 3100, + + /// + /// main_hand_local_mana_gain_per_target + /// + MainHandLocalManaGainPerTarget = 3101, + + /// + /// off_hand_local_mana_gain_per_target + /// + OffHandLocalManaGainPerTarget = 3102, + + /// + /// Local Life Leech From Physical Damage Permyriad + /// + LocalLifeLeechFromPhysicalDamagePermyriad = 3103, + + /// + /// main_hand_local_life_leech_from_physical_damage_permyriad + /// + MainHandLocalLifeLeechFromPhysicalDamagePermyriad = 3104, + + /// + /// off_hand_local_life_leech_from_physical_damage_permyriad + /// + OffHandLocalLifeLeechFromPhysicalDamagePermyriad = 3105, + + /// + /// local_mana_leech_from_physical_damage_permyriad + /// + LocalManaLeechFromPhysicalDamagePermyriad = 3106, + + /// + /// main_hand_local_mana_leech_from_physical_damage_permyriad + /// + MainHandLocalManaLeechFromPhysicalDamagePermyriad = 3107, + + /// + /// off_hand_local_mana_leech_from_physical_damage_permyriad + /// + OffHandLocalManaLeechFromPhysicalDamagePermyriad = 3108, + + /// + /// life_leech_from_physical_attack_damage_permyriad + /// + LifeLeechFromPhysicalAttackDamagePermyriad = 3109, + + /// + /// mana_leech_from_physical_attack_damage_permyriad + /// + ManaLeechFromPhysicalAttackDamagePermyriad = 3110, + + /// + /// local_flask_life_leech_permyriad_while_healing + /// + LocalFlaskLifeLeechPermyriadWhileHealing = 3111, + + /// + /// local_flask_mana_leech_permyriad_while_healing + /// + LocalFlaskManaLeechPermyriadWhileHealing = 3112, + + /// + /// base_life_leech_from_spell_damage_permyriad + /// + BaseLifeLeechFromSpellDamagePermyriad = 3113, + + /// + /// base_mana_leech_from_spell_damage_permyriad + /// + BaseManaLeechFromSpellDamagePermyriad = 3114, + + /// + /// life_leech_from_spell_damage_permyriad + /// + LifeLeechFromSpellDamagePermyriad = 3115, + + /// + /// mana_leech_from_spell_damage_permyriad + /// + ManaLeechFromSpellDamagePermyriad = 3116, + + /// + /// mana_leech_from_physical_damage_permyriad_per_power_charge + /// + ManaLeechFromPhysicalDamagePermyriadPerPowerCharge = 3117, + + /// + /// global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item + /// + GlobalManaLeechFromPhysicalAttackDamagePermyriadPerBlueSocketOnItem = 3118, + + /// + /// base_mana_leech_permyriad_vs_shocked_enemies + /// + BaseManaLeechPermyriadVsShockedEnemies = 3119, + + /// + /// base_life_leech_permyriad_vs_frozen_enemies + /// + BaseLifeLeechPermyriadVsFrozenEnemies = 3120, + + /// + /// mana_leech_permyriad_vs_shocked_enemies + /// + ManaLeechPermyriadVsShockedEnemies = 3121, + + /// + /// life_leech_permyriad_vs_frozen_enemies + /// + LifeLeechPermyriadVsFrozenEnemies = 3122, + + /// + /// base_life_leech_from_physical_damage_permyriad + /// + BaseLifeLeechFromPhysicalDamagePermyriad = 3123, + + /// + /// base_life_leech_from_fire_damage_permyriad + /// + BaseLifeLeechFromFireDamagePermyriad = 3124, + + /// + /// base_life_leech_from_cold_damage_permyriad + /// + BaseLifeLeechFromColdDamagePermyriad = 3125, + + /// + /// base_life_leech_from_lightning_damage_permyriad + /// + BaseLifeLeechFromLightningDamagePermyriad = 3126, + + /// + /// base_mana_leech_from_lightning_damage_permyriad + /// + BaseManaLeechFromLightningDamagePermyriad = 3127, + + /// + /// local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing + /// + LocalUniqueFlaskLifeLeechFromChaosDamagePermyriadWhileHealing = 3128, + + /// + /// base_life_leech_from_elemental_damage_permyriad + /// + BaseLifeLeechFromElementalDamagePermyriad = 3129, + + /// + /// life_leech_permyriad_on_crit + /// + LifeLeechPermyriadOnCrit = 3130, + + /// + /// base_life_leech_permyriad_vs_shocked_enemies + /// + BaseLifeLeechPermyriadVsShockedEnemies = 3131, + + /// + /// life_leech_permyriad_vs_shocked_enemies + /// + LifeLeechPermyriadVsShockedEnemies = 3132, + + /// + /// base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies + /// + BaseLifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3133, + + /// + /// life_leech_from_physical_damage_with_claw_permyriad + /// + LifeLeechFromPhysicalDamageWithClawPermyriad = 3134, + + /// + /// minion_life_leech_from_any_damage_permyriad + /// + MinionLifeLeechFromAnyDamagePermyriad = 3135, + + /// + /// mana_leech_from_physical_damage_with_claw_permyriad + /// + ManaLeechFromPhysicalDamageWithClawPermyriad = 3136, + + /// + /// life_leech_from_attack_damage_permyriad_vs_chilled_enemies + /// + LifeLeechFromAttackDamagePermyriadVsChilledEnemies = 3137, + + /// + /// map_summon_exploding_buff_storms + /// + MapSummonExplodingBuffStorms = 3138, + + /// + /// map_items_have_random_quality + /// + MapItemsHaveRandomQuality = 3139, + + /// + /// map_summon_runic_circles + /// + MapSummonRunicCircles = 3140, + + /// + /// map_spawn_warbands + /// + MapSpawnWarbands = 3141, + + /// + /// chance_to_gain_endurance_charge_on_bow_crit_% + /// + ChanceToGainEnduranceChargeOnBowCritPct = 3142, + + /// + /// global_critical_strike_chance_+%_while_holding_bow + /// + GlobalCriticalStrikeChancePctWhileHoldingBow = 3143, + + /// + /// global_critical_strike_multiplier_+_while_holding_bow + /// + GlobalCriticalStrikeMultiplierWhileHoldingBow = 3144, + + /// + /// map_spawn_extra_warbands + /// + MapSpawnExtraWarbands = 3145, + + /// + /// soul_is_consumed_on_death + /// + SoulIsConsumedOnDeath = 3146, + + /// + /// some_passives_apply_to_minions + /// + SomePassivesApplyToMinions = 3147, + + /// + /// damage_+%_with_movement_skills + /// + DamagePctWithMovementSkills = 3148, + + /// + /// attack_speed_+%_with_movement_skills + /// + AttackSpeedPctWithMovementSkills = 3149, + + /// + /// life_gained_on_killing_ignited_enemies + /// + LifeGainedOnKillingIgnitedEnemies = 3150, + + /// + /// damage_taken_+%_from_skeletons + /// + DamageTakenPctFromSkeletons = 3151, + + /// + /// damage_taken_+%_from_ghosts + /// + DamageTakenPctFromGhosts = 3152, + + /// + /// skill_is_movement_skill + /// + SkillIsMovementSkill = 3153, + + /// + /// cannot_be_shocked_while_frozen + /// + CannotBeShockedWhileFrozen = 3154, + + /// + /// local_display_grants_skill_lightning_warp_level + /// + LocalDisplayGrantsSkillLightningWarpLevel = 3155, + + /// + /// life_leech_from_attack_damage_permyriad_vs_bleeding_enemies + /// + LifeLeechFromAttackDamagePermyriadVsBleedingEnemies = 3156, + + /// + /// number_of_additional_curses_allowed_on_self + /// + NumberOfAdditionalCursesAllowedOnSelf = 3157, + + /// + /// map_spawn_warband_fire + /// + MapSpawnWarbandFire = 3158, + + /// + /// map_spawn_warband_cold + /// + MapSpawnWarbandCold = 3159, + + /// + /// map_spawn_warband_thunder + /// + MapSpawnWarbandThunder = 3160, + + /// + /// map_spawn_warband_chaos + /// + MapSpawnWarbandChaos = 3161, + + /// + /// map_max_warband_rank + /// + MapMaxWarbandRank = 3162, + + /// + /// monster_report_warband_destroyed_on_death + /// + MonsterReportWarbandDestroyedOnDeath = 3163, + + /// + /// trap_throw_arm_time_override + /// + TrapThrowArmTimeOverride = 3164, + + /// + /// item_rarity_+%_while_using_flask + /// + ItemRarityPctWhileUsingFlask = 3165, + + /// + /// dropped_items_are_corrupted + /// + DroppedItemsAreCorrupted = 3166, + + /// + /// monster_dropped_non_unique_equipment_drops_as_sell_price + /// + MonsterDroppedNonUniqueEquipmentDropsAsSellPrice = 3167, + + /// + /// monster_dropped_items_have_random_quality + /// + MonsterDroppedItemsHaveRandomQuality = 3168, + + /// + /// player_found_items_are_corrupted + /// + PlayerFoundItemsAreCorrupted = 3169, + + /// + /// player_non_unique_equipment_found_as_sell_price + /// + PlayerNonUniqueEquipmentFoundAsSellPrice = 3170, + + /// + /// player_found_items_have_random_quality + /// + PlayerFoundItemsHaveRandomQuality = 3171, + + /// + /// map_storm_delay_+% + /// + MapStormDelayPct = 3172, + + /// + /// map_storm_duration_+% + /// + MapStormDurationPct = 3173, + + /// + /// map_storm_area_of_effect_+% + /// + MapStormAreaOfEffectPct = 3174, + + /// + /// map_storm_buff_duration_+% + /// + MapStormBuffDurationPct = 3175, + + /// + /// map_storm_buff_duration_+%_on_low_life_target + /// + MapStormBuffDurationPctOnLowLifeTarget = 3176, + + /// + /// map_tempest_random_monster_drops_unique + /// + MapTempestRandomMonsterDropsUnique = 3177, + + /// + /// map_tempest_random_monster_drops_map + /// + MapTempestRandomMonsterDropsMap = 3178, + + /// + /// map_tempest_fish_school_size_+% + /// + MapTempestFishSchoolSizePct = 3179, + + /// + /// monster_stormcall_individually_trigger + /// + MonsterStormcallIndividuallyTrigger = 3180, + + /// + /// map_tempest_random_monster_drops_vaal_fragment + /// + MapTempestRandomMonsterDropsVaalFragment = 3181, + + /// + /// map_bosses_have_phylacteral_link + /// + MapBossesHavePhylacteralLink = 3182, + + /// + /// monster_can_have_bloodline + /// + MonsterCanHaveBloodline = 3183, + + /// + /// local_socketed_warcry_gem_level_+ + /// + LocalSocketedWarcryGemLevel = 3184, + + /// + /// mana_gained_on_hitting_taunted_enemy + /// + ManaGainedOnHittingTauntedEnemy = 3185, + + /// + /// life_gained_on_taunting_enemy + /// + LifeGainedOnTauntingEnemy = 3186, + + /// + /// onslaught_buff_duration_on_killing_taunted_enemy_ms + /// + OnslaughtBuffDurationOnKillingTauntedEnemyMs = 3187, + + /// + /// local_socketed_golem_gem_level_+ + /// + LocalSocketedGolemGemLevel = 3188, + + /// + /// local_display_socketed_gems_supported_by_x_increased_minion_life_level + /// + LocalDisplaySocketedGemsSupportedByXIncreasedMinionLifeLevel = 3189, + + /// + /// local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level + /// + LocalDisplaySocketedGemsSupportedByXLesserMultipleProjectilesLevel = 3190, + + /// + /// local_display_socketed_gems_supported_by_x_increased_minion_damage_level + /// + LocalDisplaySocketedGemsSupportedByXIncreasedMinionDamageLevel = 3191, + + /// + /// local_display_socketed_gems_supported_by_x_increased_critical_damage_level + /// + LocalDisplaySocketedGemsSupportedByXIncreasedCriticalDamageLevel = 3192, + + /// + /// number_of_power_charges_to_gain + /// + NumberOfPowerChargesToGain = 3193, + + /// + /// number_of_frenzy_charges_to_gain + /// + NumberOfFrenzyChargesToGain = 3194, + + /// + /// number_of_endurance_charges_to_gain + /// + NumberOfEnduranceChargesToGain = 3195, + + /// + /// animate_weapon_duration_+% + /// + AnimateWeaponDurationPct = 3196, + + /// + /// totem_skill_area_of_effect_+% + /// + TotemSkillAreaOfEffectPct = 3197, + + /// + /// life_leech_from_skills_used_by_totems_permyriad + /// + LifeLeechFromSkillsUsedByTotemsPermyriad = 3198, + + /// + /// damage_reflected_to_enemies_%_gained_as_life + /// + DamageReflectedToEnemiesPctGainedAsLife = 3199, + + /// + /// animate_weapon_number_of_additional_copies + /// + AnimateWeaponNumberOfAdditionalCopies = 3200, + + /// + /// cannot_drop_below_%_life + /// + CannotDropBelowPctLife = 3201, + + /// + /// local_display_socketed_gems_supported_by_x_increased_minion_speed_level + /// + LocalDisplaySocketedGemsSupportedByXIncreasedMinionSpeedLevel = 3202, + + /// + /// attack_is_not_melee_override + /// + AttackIsNotMeleeOverride = 3203, + + /// + /// map_storm_delay_+%_final + /// + MapStormDelayPctFinal = 3204, + + /// + /// map_storm_duration_+%_final + /// + MapStormDurationPctFinal = 3205, + + /// + /// map_always_has_weather + /// + MapAlwaysHasWeather = 3206, + + /// + /// melee_weapon_range_+ + /// + MeleeWeaponRange = 3207, + + /// + /// damage_+%_vs_players + /// + DamagePctVsPlayers = 3208, + + /// + /// immune_vaal_lighting_warp + /// + ImmuneVaalLightingWarp = 3209, + + /// + /// base_secondary_skill_effect_duration + /// + BaseSecondarySkillEffectDuration = 3210, + + /// + /// secondary_skill_effect_duration + /// + SecondarySkillEffectDuration = 3211, + + /// + /// enemy_aggro_radius_+% + /// + EnemyAggroRadiusPct = 3212, + + /// + /// skill_effect_duration_+%_per_removable_frenzy_charge + /// + SkillEffectDurationPctPerRemovableFrenzyCharge = 3213, + + /// + /// chilled_ground_effect_on_self_+% + /// + ChilledGroundEffectOnSelfPct = 3214, + + /// + /// burning_ground_effect_on_self_+% + /// + BurningGroundEffectOnSelfPct = 3215, + + /// + /// shocked_ground_effect_on_self_+% + /// + ShockedGroundEffectOnSelfPct = 3216, + + /// + /// desecrated_ground_effect_on_self_+% + /// + DesecratedGroundEffectOnSelfPct = 3217, + + /// + /// spell_and_attack_minimum_added_lightning_damage + /// + SpellAndAttackMinimumAddedLightningDamage = 3218, + + /// + /// spell_and_attack_maximum_added_lightning_damage + /// + SpellAndAttackMaximumAddedLightningDamage = 3219, + + /// + /// shocked_ground_when_hit_% + /// + ShockedGroundWhenHitPct = 3220, + + /// + /// map_tempest_base_ground_fire_damage_to_deal_per_minute + /// + MapTempestBaseGroundFireDamageToDealPerMinute = 3221, + + /// + /// map_tempest_base_ground_desecration_damage_to_deal_per_minute + /// + MapTempestBaseGroundDesecrationDamageToDealPerMinute = 3222, + + /// + /// map_tempest_ground_ice + /// + MapTempestGroundIce = 3223, + + /// + /// map_tempest_ground_tar_movement_speed_+% + /// + MapTempestGroundTarMovementSpeedPct = 3224, + + /// + /// map_tempest_ground_lightning + /// + MapTempestGroundLightning = 3225, + + /// + /// map_tempest_ground_effect_patches_per_100_tiles + /// + MapTempestGroundEffectPatchesPer100Tiles = 3226, + + /// + /// map_tempest_ground_effect_radius + /// + MapTempestGroundEffectRadius = 3227, + + /// + /// projectile_minimum_range + /// + ProjectileMinimumRange = 3228, + + /// + /// projectile_speed_variation_+% + /// + ProjectileSpeedVariationPct = 3229, + + /// + /// secondary_buff_effect_duration + /// + SecondaryBuffEffectDuration = 3230, + + /// + /// level_1_to_40_life_+%_final + /// + Level1To40LifePctFinal = 3231, + + /// + /// level_41_to_57_life_+%_final + /// + Level41To57LifePctFinal = 3232, + + /// + /// level_58_to_70_life_+%_final + /// + Level58To70LifePctFinal = 3233, + + /// + /// local_unique_jewel_energy_shield_increases_applies_to_armour_doubled + /// + LocalUniqueJewelEnergyShieldIncreasesAppliesToArmourDoubled = 3234, + + /// + /// local_unique_jewel_life_increases_applies_to_energy_shield + /// + LocalUniqueJewelLifeIncreasesAppliesToEnergyShield = 3235, + + /// + /// local_unique_jewel_life_increases_applies_to_mana_doubled + /// + LocalUniqueJewelLifeIncreasesAppliesToManaDoubled = 3236, + + /// + /// cyclone_first_hit_damage_+%_final + /// + CycloneFirstHitDamagePctFinal = 3237, + + /// + /// cannot_use_warcries + /// + CannotUseWarcries = 3238, + + /// + /// map_debug_disable_nonboss_monsters + /// + MapDebugDisableNonbossMonsters = 3239, + + /// + /// totem_mana_+% + /// + TotemManaPct = 3240, + + /// + /// totem_energy_shield_+% + /// + TotemEnergyShieldPct = 3241, + + /// + /// minion_maximum_mana_+% + /// + MinionMaximumManaPct = 3242, + + /// + /// minion_maximum_energy_shield_+% + /// + MinionMaximumEnergyShieldPct = 3243, + + /// + /// base_maximum_life_per_red_socket_on_item + /// + BaseMaximumLifePerRedSocketOnItem = 3244, + + /// + /// base_maximum_energy_shield_per_blue_socket_on_item + /// + BaseMaximumEnergyShieldPerBlueSocketOnItem = 3245, + + /// + /// base_maximum_mana_per_green_socket_on_item + /// + BaseMaximumManaPerGreenSocketOnItem = 3246, + + /// + /// currently_has_no_energy_shield + /// + CurrentlyHasNoEnergyShield = 3247, + + /// + /// damage_+%_when_currently_has_no_energy_shield + /// + DamagePctWhenCurrentlyHasNoEnergyShield = 3248, + + /// + /// chance_to_gain_unholy_might_on_block_% + /// + ChanceToGainUnholyMightOnBlockPct = 3249, + + /// + /// damage_+%_when_on_burning_ground + /// + DamagePctWhenOnBurningGround = 3250, + + /// + /// life_regeneration_rate_per_minute_%_when_on_chilled_ground + /// + LifeRegenerationRatePerMinutePctWhenOnChilledGround = 3251, + + /// + /// movement_velocity_+%_when_on_shocked_ground + /// + MovementVelocityPctWhenOnShockedGround = 3252, + + /// + /// is_on_ground_fire_burn + /// + IsOnGroundFireBurn = 3253, + + /// + /// is_on_ground_ice_chill + /// + IsOnGroundIceChill = 3254, + + /// + /// is_on_ground_lightning_shock + /// + IsOnGroundLightningShock = 3255, + + /// + /// damage_taken_goes_to_mana_%_per_power_charge + /// + DamageTakenGoesToManaPctPerPowerCharge = 3256, + + /// + /// power_charge_art_variation + /// + PowerChargeArtVariation = 3257, + + /// + /// map_tempest_display_prefix + /// + MapTempestDisplayPrefix = 3258, + + /// + /// map_tempest_display_suffix + /// + MapTempestDisplaySuffix = 3259, + + /// + /// temporal_chains_action_speed_+%_final + /// + TemporalChainsActionSpeedPctFinal = 3260, + + /// + /// virtual_action_speed_+% + /// + VirtualActionSpeedPct = 3261, + + /// + /// light_radius_+%_while_phased + /// + LightRadiusPctWhilePhased = 3262, + + /// + /// map_monsters_area_of_effect_+% + /// + MapMonstersAreaOfEffectPct = 3263, + + /// + /// map_monsters_avoid_freeze_and_chill_% + /// + MapMonstersAvoidFreezeAndChillPct = 3264, + + /// + /// map_monsters_avoid_ignite_% + /// + MapMonstersAvoidIgnitePct = 3265, + + /// + /// map_monsters_avoid_shock_% + /// + MapMonstersAvoidShockPct = 3266, + + /// + /// map_monsters_avoid_elemental_ailments_% + /// + MapMonstersAvoidElementalAilmentsPct = 3267, + + /// + /// map_monsters_critical_strike_chance_+% + /// + MapMonstersCriticalStrikeChancePct = 3268, + + /// + /// map_monsters_critical_strike_multiplier_+ + /// + MapMonstersCriticalStrikeMultiplier = 3269, + + /// + /// map_monsters_life_leech_resistance_% + /// + MapMonstersLifeLeechResistancePct = 3270, + + /// + /// map_monsters_mana_leech_resistance_% + /// + MapMonstersManaLeechResistancePct = 3271, + + /// + /// map_boss_maximum_life_+% + /// + MapBossMaximumLifePct = 3272, + + /// + /// map_boss_area_of_effect_+% + /// + MapBossAreaOfEffectPct = 3273, + + /// + /// map_hidden_experience_gain_+% + /// + MapHiddenExperienceGainPct = 3274, + + /// + /// map_hidden_rare_monsters_have_nemesis_mod + /// + MapHiddenRareMonstersHaveNemesisMod = 3275, + + /// + /// map_hidden_spawn_extra_exiles + /// + MapHiddenSpawnExtraExiles = 3276, + + /// + /// map_hidden_spawn_extra_torment_spirits + /// + MapHiddenSpawnExtraTormentSpirits = 3277, + + /// + /// map_hidden_magic_pack_mod_rules + /// + MapHiddenMagicPackModRules = 3278, + + /// + /// map_hidden_monsters_additional_fire_resistance + /// + MapHiddenMonstersAdditionalFireResistance = 3279, + + /// + /// map_hidden_monsters_additional_cold_resistance + /// + MapHiddenMonstersAdditionalColdResistance = 3280, + + /// + /// map_hidden_monsters_additional_lightning_resistance + /// + MapHiddenMonstersAdditionalLightningResistance = 3281, + + /// + /// map_hidden_monsters_poison_on_hit + /// + MapHiddenMonstersPoisonOnHit = 3282, + + /// + /// map_hidden_monsters_%_physical_damage_to_add_as_fire + /// + MapHiddenMonstersPctPhysicalDamageToAddAsFire = 3283, + + /// + /// map_hidden_monsters_%_physical_damage_to_add_as_cold + /// + MapHiddenMonstersPctPhysicalDamageToAddAsCold = 3284, + + /// + /// map_hidden_monsters_%_physical_damage_to_add_as_lightning + /// + MapHiddenMonstersPctPhysicalDamageToAddAsLightning = 3285, + + /// + /// map_hidden_monsters_%_physical_damage_to_add_as_chaos + /// + MapHiddenMonstersPctPhysicalDamageToAddAsChaos = 3286, + + /// + /// map_hidden_packs_are_totems + /// + MapHiddenPacksAreTotems = 3287, + + /// + /// skill_effect_duration_per_100_int_+% + /// + SkillEffectDurationPer100IntPct = 3288, + + /// + /// map_equipment_drops_identified + /// + MapEquipmentDropsIdentified = 3289, + + /// + /// player_found_equipment_drops_identified + /// + PlayerFoundEquipmentDropsIdentified = 3290, + + /// + /// monster_equipment_drops_identified + /// + MonsterEquipmentDropsIdentified = 3291, + + /// + /// flask_charges_gained_+%_during_flask_effect + /// + FlaskChargesGainedPctDuringFlaskEffect = 3292, + + /// + /// mana_regeneration_rate_+%_during_flask_effect + /// + ManaRegenerationRatePctDuringFlaskEffect = 3293, + + /// + /// movement_speed_+%_during_flask_effect + /// + MovementSpeedPctDuringFlaskEffect = 3294, + + /// + /// map_player_has_level_X_punishment + /// + MapPlayerHasLevelXPunishment = 3295, + + /// + /// item_found_quantity_+%_per_white_socket_on_item + /// + ItemFoundQuantityPctPerWhiteSocketOnItem = 3296, + + /// + /// monster_number_of_additional_players + /// + MonsterNumberOfAdditionalPlayers = 3297, + + /// + /// local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius + /// + LocalUniqueJewelPhysicalAttackDamage1PctPerXStrengthInRadius = 3298, + + /// + /// local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius + /// + LocalUniqueJewelFortifyDuration1PctPerXIntInRadius = 3299, + + /// + /// local_unique_jewel_fire_damage_+1%_per_x_int_in_radius + /// + LocalUniqueJewelFireDamage1PctPerXIntInRadius = 3300, + + /// + /// local_unique_jewel_cold_damage_+1%_per_x_int_in_radius + /// + LocalUniqueJewelColdDamage1PctPerXIntInRadius = 3301, + + /// + /// local_unique_jewel_physical_damage_+1%_per_int_in_radius + /// + LocalUniqueJewelPhysicalDamage1PctPerIntInRadius = 3302, + + /// + /// local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius + /// + LocalUniqueJewelPhysicalAttackDamage1PctPerXDexInRadius = 3303, + + /// + /// local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius + /// + LocalUniqueJewelProjectileDamage1PctPerXDexInRadius = 3304, + + /// + /// local_unique_jewel_fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range_with_x_int_in_radius + /// + LocalUniqueJewelFireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRangeWithXIntInRadius = 3305, + + /// + /// local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius + /// + LocalUniqueJewelGlacialCascadeAdditionalSequenceWithXIntInRadius = 3306, + + /// + /// local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius + /// + LocalUniqueJewelAnimateWeaponAnimatesBowsAndWandsWithXDexInRadius = 3307, + + /// + /// local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius + /// + LocalUniqueJewelSplitArrowFiresAdditionalArrowWithXDexInRadius = 3308, + + /// + /// vigilant_strike_applies_to_nearby_allies_for_X_seconds + /// + VigilantStrikeAppliesToNearbyAlliesForXSeconds = 3309, + + /// + /// split_arrow_number_of_additional_arrows + /// + SplitArrowNumberOfAdditionalArrows = 3310, + + /// + /// animate_weapon_can_animate_bows + /// + AnimateWeaponCanAnimateBows = 3311, + + /// + /// animate_weapon_can_animate_wands + /// + AnimateWeaponCanAnimateWands = 3312, + + /// + /// fireball_explosion_radius_20%_less_at_close_range_50%_more_at_long_range + /// + FireballExplosionRadius20PctLessAtCloseRange50PctMoreAtLongRange = 3313, + + /// + /// total_physical_damage_taken_per_minute + /// + TotalPhysicalDamageTakenPerMinute = 3314, + + /// + /// total_fire_damage_taken_per_minute + /// + TotalFireDamageTakenPerMinute = 3315, + + /// + /// total_cold_damage_taken_per_minute + /// + TotalColdDamageTakenPerMinute = 3316, + + /// + /// total_lightning_damage_taken_per_minute + /// + TotalLightningDamageTakenPerMinute = 3317, + + /// + /// total_chaos_damage_taken_per_minute + /// + TotalChaosDamageTakenPerMinute = 3318, + + /// + /// total_nonlethal_fire_damage_taken_per_minute + /// + TotalNonlethalFireDamageTakenPerMinute = 3319, + + /// + /// total_damage_taken_per_minute_to_energy_shield + /// + TotalDamageTakenPerMinuteToEnergyShield = 3320, + + /// + /// total_damage_taken_per_minute_to_life + /// + TotalDamageTakenPerMinuteToLife = 3321, + + /// + /// total_nonlethal_damage_taken_per_minute_to_energy_shield + /// + TotalNonlethalDamageTakenPerMinuteToEnergyShield = 3322, + + /// + /// total_nonlethal_damage_taken_per_minute_to_life + /// + TotalNonlethalDamageTakenPerMinuteToLife = 3323, + + /// + /// total_healing_from_damage_taken_per_minute + /// + TotalHealingFromDamageTakenPerMinute = 3324, + + /// + /// chance_to_gain_unholy_might_on_kill_for_3_seconds_% + /// + ChanceToGainUnholyMightOnKillFor3SecondsPct = 3325, + + /// + /// chance_to_grant_nearby_enemies_onslaught_on_kill_% + /// + ChanceToGrantNearbyEnemiesOnslaughtOnKillPct = 3326, + + /// + /// chance_to_grant_nearby_enemies_unholy_might_on_kill_% + /// + ChanceToGrantNearbyEnemiesUnholyMightOnKillPct = 3327, + + /// + /// recover_%_maximum_life_on_kill + /// + RecoverPctMaximumLifeOnKill = 3328, + + /// + /// chance_to_cast_on_kill_%_target_self + /// + ChanceToCastOnKillPctTargetSelf = 3329, + + /// + /// socketed_trap_skills_create_smoke_cloud + /// + SocketedTrapSkillsCreateSmokeCloud = 3330, + + /// + /// fire_damage_+%_to_blinded_enemies + /// + FireDamagePctToBlindedEnemies = 3331, + + /// + /// spell_damage_taken_+%_from_blinded_enemies + /// + SpellDamageTakenPctFromBlindedEnemies = 3332, + + /// + /// curse_enemies_with_level_x_assassins_mark_when_curse_cast + /// + CurseEnemiesWithLevelXAssassinsMarkWhenCurseCast = 3333, + + /// + /// disable_weapons + /// + DisableWeapons = 3334, + + /// + /// shock_dispelled_on_full_energy_shield + /// + ShockDispelledOnFullEnergyShield = 3335, + + /// + /// local_display_nearby_enemies_take_X_lightning_damage_per_minute + /// + LocalDisplayNearbyEnemiesTakeXLightningDamagePerMinute = 3336, + + /// + /// item_destroyed_on_death + /// + ItemDestroyedOnDeath = 3337, + + /// + /// summoned_monsters_set_parent + /// + SummonedMonstersSetParent = 3338, + + /// + /// maximum_number_of_spinning_blades + /// + MaximumNumberOfSpinningBlades = 3339, + + /// + /// ball_lightning_damage_+% + /// + BallLightningDamagePct = 3340, + + /// + /// cast_when_critically_hit_% + /// + CastWhenCriticallyHitPct = 3341, + + /// + /// attack_trigger_on_hit_% + /// + AttackTriggerOnHitPct = 3342, + + /// + /// cast_on_hit_% + /// + CastOnHitPct = 3343, + + /// + /// map_spawn_talismans + /// + MapSpawnTalismans = 3344, + + /// + /// map_spawn_extra_talismans + /// + MapSpawnExtraTalismans = 3345, + + /// + /// map_hidden_num_extra_invasion_bosses + /// + MapHiddenNumExtraInvasionBosses = 3346, + + /// + /// monster_no_talismans + /// + MonsterNoTalismans = 3347, + + /// + /// enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit + /// + EnchantmentBootsLifeRegenPerMinutePctFor4SecondsWhenHit = 3348, + + /// + /// fire_damage_taken_%_as_lightning + /// + FireDamageTakenPctAsLightning = 3349, + + /// + /// fire_damage_taken_%_as_cold + /// + FireDamageTakenPctAsCold = 3350, + + /// + /// lightning_damage_taken_%_as_cold + /// + LightningDamageTakenPctAsCold = 3351, + + /// + /// lightning_damage_taken_%_as_fire + /// + LightningDamageTakenPctAsFire = 3352, + + /// + /// cold_damage_taken_%_as_lightning + /// + ColdDamageTakenPctAsLightning = 3353, + + /// + /// cold_damage_taken_%_as_fire + /// + ColdDamageTakenPctAsFire = 3354, + + /// + /// all_attributes_+% + /// + AllAttributesPct = 3355, + + /// + /// base_cooldown_speed_+% + /// + BaseCooldownSpeedPct = 3356, + + /// + /// virtual_cooldown_speed_+% + /// + VirtualCooldownSpeedPct = 3357, + + /// + /// base_righteous_lightning_%_of_max_mana_to_deal_to_nearby_per_minute + /// + BaseRighteousLightningPctOfMaxManaToDealToNearbyPerMinute = 3358, + + /// + /// righteous_lightning_critical_strike_chance_+% + /// + RighteousLightningCriticalStrikeChancePct = 3359, + + /// + /// mana_degeneration_per_minute_% + /// + ManaDegenerationPerMinutePct = 3360, + + /// + /// active_skill_index + /// + ActiveSkillIndex = 3361, + + /// + /// stun_threshold_based_on_%_mana_instead_of_life + /// + StunThresholdBasedOnPctManaInsteadOfLife = 3362, + + /// + /// local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge + /// + LocalFlaskGainXSecondsOfOnslaughtPerFrenzyCharge = 3363, + + /// + /// life_leech_applies_to_enemies_% + /// + LifeLeechAppliesToEnemiesPct = 3364, + + /// + /// enchantment_boots_minimum_added_fire_damage_on_kill_4s + /// + EnchantmentBootsMinimumAddedFireDamageOnKill4S = 3365, + + /// + /// enchantment_boots_maximum_added_fire_damage_on_kill_4s + /// + EnchantmentBootsMaximumAddedFireDamageOnKill4S = 3366, + + /// + /// enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds + /// + EnchantmentBootsMovementSpeedPctWhenNotHitFor4Seconds = 3367, + + /// + /// enchantment_boots_dodge_chance_when_critically_hit_% + /// + EnchantmentBootsDodgeChanceWhenCriticallyHitPct = 3368, + + /// + /// enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds + /// + EnchantmentBootsStatusAilmentChancePctWhenHaventCritFor4Seconds = 3369, + + /// + /// base_chance_to_stun_% + /// + BaseChanceToStunPct = 3370, + + /// + /// display_cast_word_of_flames_on_kill_% + /// + DisplayCastWordOfFlamesOnKillPct = 3371, + + /// + /// display_cast_word_of_blades_on_kill_% + /// + DisplayCastWordOfBladesOnKillPct = 3372, + + /// + /// display_cast_word_of_reflection_on_kill_% + /// + DisplayCastWordOfReflectionOnKillPct = 3373, + + /// + /// display_cast_word_of_force_on_hit_% + /// + DisplayCastWordOfForceOnHitPct = 3374, + + /// + /// display_cast_word_of_light_when_hit_% + /// + DisplayCastWordOfLightWhenHitPct = 3375, + + /// + /// display_cast_word_of_thunder_on_hit_% + /// + DisplayCastWordOfThunderOnHitPct = 3376, + + /// + /// display_cast_word_of_the_grave_on_kill_% + /// + DisplayCastWordOfTheGraveOnKillPct = 3377, + + /// + /// display_cast_word_of_war_on_kill_% + /// + DisplayCastWordOfWarOnKillPct = 3378, + + /// + /// map_spawn_stone_circles + /// + MapSpawnStoneCircles = 3379, + + /// + /// map_force_stone_circle + /// + MapForceStoneCircle = 3380, + + /// + /// base_poison_damage_+% + /// + BasePoisonDamagePct = 3381, + + /// + /// base_poison_duration_+% + /// + BasePoisonDurationPct = 3382, + + /// + /// poison_duration_+% + /// + PoisonDurationPct = 3383, + + /// + /// poison_skill_effect_duration + /// + PoisonSkillEffectDuration = 3384, + + /// + /// base_chance_to_poison_on_hit_% + /// + BaseChanceToPoisonOnHitPct = 3385, + + /// + /// quake_slam_fully_charged_explosion_damage_+%_final + /// + QuakeSlamFullyChargedExplosionDamagePctFinal = 3386, + + /// + /// local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius + /// + LocalUniqueJewelGlacialHammerItemRarityOnShatteringEnemyPctWith50StrengthInRadius = 3387, + + /// + /// local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius + /// + LocalUniqueJewelSpectralThrowDamageForEachEnemyHitWithSpectralWeaponPctWith50DexterityInRadius = 3388, + + /// + /// local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius + /// + LocalUniqueJewelDoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePctWith50DexterityInRadius = 3389, + + /// + /// local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius + /// + LocalUniqueJewelViperStrikeAttackDamagePerPoisonOnEnemyPctWith50DexterityInRadius = 3390, + + /// + /// local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius + /// + LocalUniqueJewelHeavyStrikeChanceToDealDoubleDamagePctWith50StrengthInRadius = 3391, + + /// + /// enchantment_boots_mana_costs_when_hit_+% + /// + EnchantmentBootsManaCostsWhenHitPct = 3392, + + /// + /// enchantment_boots_stun_avoid_%_on_kill + /// + EnchantmentBootsStunAvoidPctOnKill = 3393, + + /// + /// enchantment_boots_spell_dodge_when_hit_by_spells_% + /// + EnchantmentBootsSpellDodgeWhenHitBySpellsPct = 3394, + + /// + /// enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill + /// + EnchantmentBootsAttackAndCastSpeedPctFor4SecondsOnKill = 3395, + + /// + /// enchantment_boots_added_cold_damage_when_hit_minimum + /// + EnchantmentBootsAddedColdDamageWhenHitMinimum = 3396, + + /// + /// enchantment_boots_added_cold_damage_when_hit_maximum + /// + EnchantmentBootsAddedColdDamageWhenHitMaximum = 3397, + + /// + /// enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds + /// + EnchantmentBootsMinimumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3398, + + /// + /// enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds + /// + EnchantmentBootsMaximumAddedLightningDamageWhenYouHaventKilledFor4Seconds = 3399, + + /// + /// enchantment_boots_life_leech_on_kill_permyriad + /// + EnchantmentBootsLifeLeechOnKillPermyriad = 3400, + + /// + /// enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds + /// + EnchantmentCriticalStrikeChancePctIfYouHaventCritFor4Seconds = 3401, + + /// + /// no_extra_bleed_damage_while_moving + /// + NoExtraBleedDamageWhileMoving = 3402, + + /// + /// action_speed_cannot_be_reduced_below_base + /// + ActionSpeedCannotBeReducedBelowBase = 3403, + + /// + /// movement_speed_cannot_be_reduced_below_base + /// + MovementSpeedCannotBeReducedBelowBase = 3404, + + /// + /// damage_+%_while_fortified + /// + DamagePctWhileFortified = 3405, + + /// + /// life_regeneration_per_minute_%_while_fortified + /// + LifeRegenerationPerMinutePctWhileFortified = 3406, + + /// + /// damage_+%_per_endurance_charge + /// + DamagePctPerEnduranceCharge = 3407, + + /// + /// warcry_duration_+% + /// + WarcryDurationPct = 3408, + + /// + /// restore_life_and_mana_on_warcry_% + /// + RestoreLifeAndManaOnWarcryPct = 3409, + + /// + /// attack_speed_+%_when_hit + /// + AttackSpeedPctWhenHit = 3410, + + /// + /// movement_velocity_while_not_hit_+% + /// + MovementVelocityWhileNotHitPct = 3411, + + /// + /// is_warcry + /// + IsWarcry = 3412, + + /// + /// map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack + /// + MapPlayerCorruptBloodWhenHitPctAverageDamageToDealPerMinutePerStack = 3413, + + /// + /// damage_+%_when_not_on_low_life + /// + DamagePctWhenNotOnLowLife = 3414, + + /// + /// gain_life_and_mana_leech_on_kill_permyriad + /// + GainLifeAndManaLeechOnKillPermyriad = 3415, + + /// + /// number_of_active_minions + /// + NumberOfActiveMinions = 3416, + + /// + /// number_of_active_totems + /// + NumberOfActiveTotems = 3417, + + /// + /// damage_+%_while_totem_active + /// + DamagePctWhileTotemActive = 3418, + + /// + /// physical_damage_%_added_as_fire_damage_on_kill + /// + PhysicalDamagePctAddedAsFireDamageOnKill = 3419, + + /// + /// totems_gain_%_of_players_armour + /// + TotemsGainPctOfPlayersArmour = 3420, + + /// + /// attack_and_cast_speed_+%_on_placing_totem + /// + AttackAndCastSpeedPctOnPlacingTotem = 3421, + + /// + /// damage_+%_to_rare_and_unique_enemies + /// + DamagePctToRareAndUniqueEnemies = 3422, + + /// + /// life_leech_on_overkill_damage_% + /// + LifeLeechOnOverkillDamagePct = 3423, + + /// + /// attack_speed_+%_while_leeching + /// + AttackSpeedPctWhileLeeching = 3424, + + /// + /// life_leech_does_not_stop_at_full_life + /// + LifeLeechDoesNotStopAtFullLife = 3425, + + /// + /// cannot_be_stunned_while_leeching + /// + CannotBeStunnedWhileLeeching = 3426, + + /// + /// attacks_use_life_in_place_of_mana + /// + AttacksUseLifeInPlaceOfMana = 3427, + + /// + /// chance_to_taunt_on_hit_% + /// + ChanceToTauntOnHitPct = 3428, + + /// + /// bleeding_enemies_explode_for_%_life_as_physical_damage + /// + BleedingEnemiesExplodeForPctLifeAsPhysicalDamage = 3429, + + /// + /// attack_and_cast_speed_when_hit_+% + /// + AttackAndCastSpeedWhenHitPct = 3430, + + /// + /// physical_damage_on_block_+% + /// + PhysicalDamageOnBlockPct = 3431, + + /// + /// block_chance_on_damage_taken_% + /// + BlockChanceOnDamageTakenPct = 3432, + + /// + /// damage_while_no_damage_taken_+% + /// + DamageWhileNoDamageTakenPct = 3433, + + /// + /// attack_speed_while_fortified_+% + /// + AttackSpeedWhileFortifiedPct = 3434, + + /// + /// taunted_enemies_damage_taken_+% + /// + TauntedEnemiesDamageTakenPct = 3435, + + /// + /// taunted_enemies_chance_to_be_stunned_+% + /// + TauntedEnemiesChanceToBeStunnedPct = 3436, + + /// + /// armour_and_evasion_on_low_life_+% + /// + ArmourAndEvasionOnLowLifePct = 3437, + + /// + /// is_taunted + /// + IsTaunted = 3438, + + /// + /// summoned_monsters_set_monster_mortar_parent + /// + SummonedMonstersSetMonsterMortarParent = 3439, + + /// + /// storm_cloud_charged_damage_+%_final + /// + StormCloudChargedDamagePctFinal = 3440, + + /// + /// chaos_damage_taken_+% + /// + ChaosDamageTakenPct = 3441, + + /// + /// number_of_melee_skeletons_to_summon_as_mage_skeletons + /// + NumberOfMeleeSkeletonsToSummonAsMageSkeletons = 3442, + + /// + /// local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons + /// + LocalUniqueJewelWith50IntInRadiusSummonXMeleeSkeletonsAsMageSkeletons = 3443, + + /// + /// local_display_socketed_trap_skills_create_smoke_cloud + /// + LocalDisplaySocketedTrapSkillsCreateSmokeCloud = 3444, + + /// + /// glacial_hammer_item_rarity_on_shattering_enemy_+% + /// + GlacialHammerItemRarityOnShatteringEnemyPct = 3445, + + /// + /// spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+% + /// + SpectralThrowDamageForEachEnemyHitWithSpectralWeaponPct = 3446, + + /// + /// double_strike_chance_to_trigger_on_kill_effects_an_additional_time_% + /// + DoubleStrikeChanceToTriggerOnKillEffectsAnAdditionalTimePct = 3447, + + /// + /// viper_strike_attack_damage_per_poison_on_enemy_+% + /// + ViperStrikeAttackDamagePerPoisonOnEnemyPct = 3448, + + /// + /// heavy_strike_chance_to_deal_double_damage_% + /// + HeavyStrikeChanceToDealDoubleDamagePct = 3449, + + /// + /// local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius + /// + LocalUniqueJewelVigilantStrikeFortifiesNearbyAlliesForXSecondsWith50StrInRadius = 3450, + + /// + /// local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius + /// + LocalUniqueJewelFireballRadiusUpToPctAtLongerRangesWith50IntInRadius = 3451, + + /// + /// fireball_radius_up_to_+%_at_longer_ranges + /// + FireballRadiusUpToPctAtLongerRanges = 3452, + + /// + /// local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius + /// + LocalUniqueJewelAnimateWeaponCanAnimateUpToXAdditionalRangedWeaponsWith50DexInRadius = 3453, + + /// + /// animate_weapon_can_animate_up_to_x_additional_ranged_weapons + /// + AnimateWeaponCanAnimateUpToXAdditionalRangedWeapons = 3454, + + /// + /// local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius + /// + LocalUniqueJewelGroundSlamAnglePctWith50StrInRadius = 3455, + + /// + /// ground_slam_angle_+% + /// + GroundSlamAnglePct = 3456, + + /// + /// local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius + /// + LocalUniqueJewelColdSnapGainPowerChargeOnKillPctWith50IntInRadius = 3457, + + /// + /// cold_snap_gain_power_charge_on_kill_% + /// + ColdSnapGainPowerChargeOnKillPct = 3458, + + /// + /// local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius + /// + LocalUniqueJewelWarcryDamageTakenGoesToManaPctWith40IntInRadius = 3459, + + /// + /// warcry_damage_taken_goes_to_mana_% + /// + WarcryDamageTakenGoesToManaPct = 3460, + + /// + /// local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius + /// + LocalUniqueJewelBarrageFinalVolleyFiresXAdditionalProjectilesSimultaneouslyWith50DexInRadius = 3461, + + /// + /// barrage_final_volley_fires_x_additional_projectiles_simultaneously + /// + BarrageFinalVolleyFiresXAdditionalProjectilesSimultaneously = 3462, + + /// + /// never_block + /// + NeverBlock = 3463, + + /// + /// mana_cost_-%_per_endurance_charge + /// + ManaCostPctPerEnduranceCharge = 3464, + + /// + /// gain_rampage_while_at_maximum_endurance_charges + /// + GainRampageWhileAtMaximumEnduranceCharges = 3465, + + /// + /// lose_endurance_charges_on_rampage_end + /// + LoseEnduranceChargesOnRampageEnd = 3466, + + /// + /// physical_attack_damage_+%_while_holding_a_shield + /// + PhysicalAttackDamagePctWhileHoldingAShield = 3467, + + /// + /// cold_attack_damage_+%_while_holding_a_shield + /// + ColdAttackDamagePctWhileHoldingAShield = 3468, + + /// + /// fire_attack_damage_+%_while_holding_a_shield + /// + FireAttackDamagePctWhileHoldingAShield = 3469, + + /// + /// base_number_of_ranged_animated_weapons_allowed + /// + BaseNumberOfRangedAnimatedWeaponsAllowed = 3470, + + /// + /// virtual_number_of_ranged_animated_weapons_allowed + /// + VirtualNumberOfRangedAnimatedWeaponsAllowed = 3471, + + /// + /// virtual_player_gain_rampage_stacks + /// + VirtualPlayerGainRampageStacks = 3472, + + /// + /// minion_does_not_equip_quiver + /// + MinionDoesNotEquipQuiver = 3473, + + /// + /// number_of_grasping_ornaments + /// + NumberOfGraspingOrnaments = 3474, + + /// + /// grasping_ornament_placement_radius + /// + GraspingOrnamentPlacementRadius = 3475, + + /// + /// local_no_block_chance + /// + LocalNoBlockChance = 3476, + + /// + /// support_controlled_destruction_spell_damage_+%_final + /// + SupportControlledDestructionSpellDamagePctFinal = 3477, + + /// + /// support_void_manipulation_chaos_damage_+%_final + /// + SupportVoidManipulationChaosDamagePctFinal = 3478, + + /// + /// support_rapid_decay_damage_over_time_+%_final + /// + SupportRapidDecayDamageOverTimePctFinal = 3479, + + /// + /// cast_on_any_damage_taken_% + /// + CastOnAnyDamageTakenPct = 3480, + + /// + /// stun_threshold_+% + /// + StunThresholdPct = 3481, + + /// + /// number_of_active_spectres + /// + NumberOfActiveSpectres = 3482, + + /// + /// number_of_active_skeletons + /// + NumberOfActiveSkeletons = 3483, + + /// + /// number_of_active_raging_spirits + /// + NumberOfActiveRagingSpirits = 3484, + + /// + /// number_of_active_zombies + /// + NumberOfActiveZombies = 3485, + + /// + /// minion_attack_and_cast_speed_+%_per_active_skeleton + /// + MinionAttackAndCastSpeedPctPerActiveSkeleton = 3486, + + /// + /// minion_duration_+%_per_active_zombie + /// + MinionDurationPctPerActiveZombie = 3487, + + /// + /// minion_damage_+%_per_active_spectre + /// + MinionDamagePctPerActiveSpectre = 3488, + + /// + /// minion_life_regeneration_per_minute_per_active_raging_spirit + /// + MinionLifeRegenerationPerMinutePerActiveRagingSpirit = 3489, + + /// + /// virtual_skill_effect_duration_pluspercent_final + /// + VirtualSkillEffectDurationPluspercentFinal = 3490, + + /// + /// virtual_additional_skill_effect_duration + /// + VirtualAdditionalSkillEffectDuration = 3491, + + /// + /// offering_of_judgement_counter + /// + OfferingOfJudgementCounter = 3492, + + /// + /// gain_her_blessing_for_3_seconds_on_ignite_% + /// + GainHerBlessingFor3SecondsOnIgnitePct = 3493, + + /// + /// blind_nearby_enemies_when_gaining_her_blessing_% + /// + BlindNearbyEnemiesWhenGainingHerBlessingPct = 3494, + + /// + /// have_her_blessing + /// + HaveHerBlessing = 3495, + + /// + /// avoid_freeze_chill_ignite_%_with_her_blessing + /// + AvoidFreezeChillIgnitePctWithHerBlessing = 3496, + + /// + /// attack_and_movement_speed_+%_with_her_blessing + /// + AttackAndMovementSpeedPctWithHerBlessing = 3497, + + /// + /// warcry_speed_+% + /// + WarcrySpeedPct = 3498, + + /// + /// gain_power_charge_on_non_critical_strike_% + /// + GainPowerChargeOnNonCriticalStrikePct = 3499, + + /// + /// critical_strike_multiplier_+_per_power_charge + /// + CriticalStrikeMultiplierPerPowerCharge = 3500, + + /// + /// apply_poison_on_hit_vs_bleeding_enemies_% + /// + ApplyPoisonOnHitVsBleedingEnemiesPct = 3501, + + /// + /// avoid_blind_% + /// + AvoidBlindPct = 3502, + + /// + /// damage_taken_+%_from_blinded_enemies + /// + DamageTakenPctFromBlindedEnemies = 3503, + + /// + /// attack_damage_+%_per_frenzy_charge + /// + AttackDamagePctPerFrenzyCharge = 3504, + + /// + /// attack_damage_+%_while_onslaught_active + /// + AttackDamagePctWhileOnslaughtActive = 3505, + + /// + /// onslaught_effect_+% + /// + OnslaughtEffectPct = 3506, + + /// + /// critical_strike_multiplier_+_vs_bleeding_enemies + /// + CriticalStrikeMultiplierVsBleedingEnemies = 3507, + + /// + /// critical_strike_chance_+%_vs_poisoned_enemies + /// + CriticalStrikeChancePctVsPoisonedEnemies = 3508, + + /// + /// elemental_damage_taken_+% + /// + ElementalDamageTakenPct = 3509, + + /// + /// damage_taken_from_traps_and_mines_+% + /// + DamageTakenFromTrapsAndMinesPct = 3510, + + /// + /// maim_on_hit_%_vs_poisoned_enemies + /// + MaimOnHitPctVsPoisonedEnemies = 3511, + + /// + /// raider_passive_evade_melee_attacks_while_onslaughted_+%_final + /// + RaiderPassiveEvadeMeleeAttacksWhileOnslaughtedPctFinal = 3512, + + /// + /// raider_passive_evade_projectile_attacks_while_onslaughted_+%_final + /// + RaiderPassiveEvadeProjectileAttacksWhileOnslaughtedPctFinal = 3513, + + /// + /// dispel_status_ailments_on_flask_use + /// + DispelStatusAilmentsOnFlaskUse = 3514, + + /// + /// avoid_status_ailments_%_during_flask_effect + /// + AvoidStatusAilmentsPctDuringFlaskEffect = 3515, + + /// + /// attack_speed_+%_during_flask_effect + /// + AttackSpeedPctDuringFlaskEffect = 3516, + + /// + /// poison_on_hit_during_flask_effect_% + /// + PoisonOnHitDuringFlaskEffectPct = 3517, + + /// + /// cyclone_places_ground_lightning + /// + CyclonePlacesGroundLightning = 3518, + + /// + /// cyclone_lightning_path_radius + /// + CycloneLightningPathRadius = 3519, + + /// + /// local_unique_flask_shock_nearby_enemies_during_flask_effect + /// + LocalUniqueFlaskShockNearbyEnemiesDuringFlaskEffect = 3520, + + /// + /// local_unique_flask_shocked_during_flask_effect + /// + LocalUniqueFlaskShockedDuringFlaskEffect = 3521, + + /// + /// local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect + /// + LocalUniqueFlaskLeechLightningDamagePctAsLifeDuringFlaskEffect = 3522, + + /// + /// local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect + /// + LocalUniqueFlaskLeechLightningDamagePctAsManaDuringFlaskEffect = 3523, + + /// + /// local_unique_flask_leech_is_instant_during_flask_effect + /// + LocalUniqueFlaskLeechIsInstantDuringFlaskEffect = 3524, + + /// + /// local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect + /// + LocalUniqueFlaskMinimumAddedLightningDamageToAttacksDuringFlaskEffect = 3525, + + /// + /// local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect + /// + LocalUniqueFlaskMaximumAddedLightningDamageToAttacksDuringFlaskEffect = 3526, + + /// + /// local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect + /// + LocalUniqueFlaskMinimumAddedLightningDamageToSpellsDuringFlaskEffect = 3527, + + /// + /// local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect + /// + LocalUniqueFlaskMaximumAddedLightningDamageToSpellsDuringFlaskEffect = 3528, + + /// + /// local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect + /// + LocalUniqueFlaskPhysicalDamagePctConvertedToLightningDuringFlaskEffect = 3529, + + /// + /// local_unique_flask_lightning_resistance_penetration_%_during_flask_effect + /// + LocalUniqueFlaskLightningResistancePenetrationPctDuringFlaskEffect = 3530, + + /// + /// leech_is_instant + /// + LeechIsInstant = 3531, + + /// + /// mana_leech_is_instant + /// + ManaLeechIsInstant = 3532, + + /// + /// projectiles_drop_ground_fire + /// + ProjectilesDropGroundFire = 3533, + + /// + /// projectiles_drop_ground_lightning + /// + ProjectilesDropGroundLightning = 3534, + + /// + /// projectiles_drop_ground_ice + /// + ProjectilesDropGroundIce = 3535, + + /// + /// projectiles_drop_ground_effects_on_client + /// + ProjectilesDropGroundEffectsOnClient = 3536, + + /// + /// base_projectile_ground_effect_duration + /// + BaseProjectileGroundEffectDuration = 3537, + + /// + /// base_projectile_skill_dot_ground_fire_area_damage_per_minute + /// + BaseProjectileSkillDotGroundFireAreaDamagePerMinute = 3538, + + /// + /// projectile_ground_effect_duration + /// + ProjectileGroundEffectDuration = 3539, + + /// + /// projectile_skill_dot_ground_fire_area_damage_per_minute + /// + ProjectileSkillDotGroundFireAreaDamagePerMinute = 3540, + + /// + /// chaos_damage_can_chill + /// + ChaosDamageCanChill = 3541, + + /// + /// explode_on_kill_%_chaos_damage_to_deal + /// + ExplodeOnKillPctChaosDamageToDeal = 3542, + + /// + /// enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds + /// + EnchantmentBootsDamagePenetratesElementalResistancePctWhileYouHaventKilledFor4Seconds = 3543, + + /// + /// enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds + /// + EnchantmentBootsPhysicalDamagePctAddedAsElementsInSpellsThatHitYouInPast4Seconds = 3544, + + /// + /// enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s + /// + EnchantmentBootsMinimumAddedChaosDamageFor4SecondsWhenCrit4S = 3545, + + /// + /// enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s + /// + EnchantmentBootsMaximumAddedChaosDamageFor4SecondsWhenCrit4S = 3546, + + /// + /// life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments + /// + LifeLeechPermyriadFromElementalDamageAgainstEnemiesWithElementalStatusAilments = 3547, + + /// + /// movement_speed_+%_while_not_affected_by_status_ailments + /// + MovementSpeedPctWhileNotAffectedByStatusAilments = 3548, + + /// + /// stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds + /// + StackingSpellDamagePctWhenYouOrYourTotemsKillAnEnemyFor2Seconds = 3549, + + /// + /// give_parent_stacking_spell_damage_+%_for_2_seconds_on_kill + /// + GiveParentStackingSpellDamagePctFor2SecondsOnKill = 3550, + + /// + /// totems_explode_for_%_of_max_life_as_fire_damage_on_low_life + /// + TotemsExplodeForPctOfMaxLifeAsFireDamageOnLowLife = 3551, + + /// + /// chance_to_avoid_stun_%_aura_while_wielding_a_staff + /// + ChanceToAvoidStunPctAuraWhileWieldingAStaff = 3552, + + /// + /// map_monsters_have_onslaught + /// + MapMonstersHaveOnslaught = 3553, + + /// + /// monster_is_invasion_boss + /// + MonsterIsInvasionBoss = 3554, + + /// + /// virtual_minion_attack_speed_+% + /// + VirtualMinionAttackSpeedPct = 3555, + + /// + /// virtual_minion_cast_speed_+% + /// + VirtualMinionCastSpeedPct = 3556, + + /// + /// virtual_minion_life_regeneration_per_minute + /// + VirtualMinionLifeRegenerationPerMinute = 3557, + + /// + /// dropbear_desecration_area_of_effect_+% + /// + DropbearDesecrationAreaOfEffectPct = 3558, + + /// + /// Physical Damage To Return To Melee Attacker + /// + PhysicalDamageToReturnToMeleeAttacker = 3559, + + /// + /// cold_damage_to_return_to_melee_attacker + /// + ColdDamageToReturnToMeleeAttacker = 3560, + + /// + /// fire_damage_to_return_to_melee_attacker + /// + FireDamageToReturnToMeleeAttacker = 3561, + + /// + /// lightning_damage_to_return_to_melee_attacker + /// + LightningDamageToReturnToMeleeAttacker = 3562, + + /// + /// chaos_damage_to_return_to_melee_attacker + /// + ChaosDamageToReturnToMeleeAttacker = 3563, + + /// + /// physical_damage_to_return_when_hit + /// + PhysicalDamageToReturnWhenHit = 3564, + + /// + /// cold_damage_to_return_when_hit + /// + ColdDamageToReturnWhenHit = 3565, + + /// + /// fire_damage_to_return_when_hit + /// + FireDamageToReturnWhenHit = 3566, + + /// + /// lightning_damage_to_return_when_hit + /// + LightningDamageToReturnWhenHit = 3567, + + /// + /// chaos_damage_to_return_when_hit + /// + ChaosDamageToReturnWhenHit = 3568, + + /// + /// trap_idle_duration + /// + TrapIdleDuration = 3569, + + /// + /// trap_retracts + /// + TrapRetracts = 3570, + + /// + /// physical_damage_taken_+%_while_frozen + /// + PhysicalDamageTakenPctWhileFrozen = 3571, + + /// + /// damage_+%_for_4_seconds_on_crit + /// + DamagePctFor4SecondsOnCrit = 3572, + + /// + /// damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse + /// + DamageAndMinionDamagePctFor4SecondsOnConsumeCorpse = 3573, + + /// + /// enemies_damage_taken_+%_while_cursed + /// + EnemiesDamageTakenPctWhileCursed = 3574, + + /// + /// spectre_damage_+% + /// + SpectreDamagePct = 3575, + + /// + /// critical_strike_chance_+%_for_4_seconds_on_kill + /// + CriticalStrikeChancePctFor4SecondsOnKill = 3576, + + /// + /// ignite_effect_+% + /// + IgniteEffectPct = 3577, + + /// + /// chill_effect_+% + /// + ChillEffectPct = 3578, + + /// + /// shock_effect_+% + /// + ShockEffectPct = 3579, + + /// + /// frozen_effect_+% + /// + FrozenEffectPct = 3580, + + /// + /// critical_strikes_ignore_elemental_resistances + /// + CriticalStrikesIgnoreElementalResistances = 3581, + + /// + /// physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie + /// + PhysicalDamageReductionAndMinionPhysicalDamageReductionPctPerRaisedZombie = 3582, + + /// + /// damage_taken_+%_from_bleeding_enemies + /// + DamageTakenPctFromBleedingEnemies = 3583, + + /// + /// maim_bleeding_enemies_on_hit_% + /// + MaimBleedingEnemiesOnHitPct = 3584, + + /// + /// one_handed_attack_speed_+% + /// + OneHandedAttackSpeedPct = 3585, + + /// + /// movement_speed_+%_for_4_seconds_on_block + /// + MovementSpeedPctFor4SecondsOnBlock = 3586, + + /// + /// movement_speed_+%_while_fortified + /// + MovementSpeedPctWhileFortified = 3587, + + /// + /// elemental_damage_taken_+%_at_maximum_endurance_charges + /// + ElementalDamageTakenPctAtMaximumEnduranceCharges = 3588, + + /// + /// status_ailments_removed_at_low_life + /// + StatusAilmentsRemovedAtLowLife = 3589, + + /// + /// gain_frenzy_charge_on_main_hand_kill_% + /// + GainFrenzyChargeOnMainHandKillPct = 3590, + + /// + /// gain_endurance_charge_on_main_hand_kill_% + /// + GainEnduranceChargeOnMainHandKillPct = 3591, + + /// + /// damage_taken_+%_for_4_seconds_on_kill + /// + DamageTakenPctFor4SecondsOnKill = 3592, + + /// + /// avoid_stun_%_for_4_seconds_on_kill + /// + AvoidStunPctFor4SecondsOnKill = 3593, + + /// + /// damage_taken_+%_for_4_seconds_on_killing_taunted_enemy + /// + DamageTakenPctFor4SecondsOnKillingTauntedEnemy = 3594, + + /// + /// warcry_cooldown_speed_+% + /// + WarcryCooldownSpeedPct = 3595, + + /// + /// always_stun_enemies_that_are_on_full_life + /// + AlwaysStunEnemiesThatAreOnFullLife = 3596, + + /// + /// stun_duration_+%_vs_enemies_that_are_on_full_life + /// + StunDurationPctVsEnemiesThatAreOnFullLife = 3597, + + /// + /// stun_duration_+%_vs_enemies_that_are_on_low_life + /// + StunDurationPctVsEnemiesThatAreOnLowLife = 3598, + + /// + /// damage_+%_with_one_handed_weapons + /// + DamagePctWithOneHandedWeapons = 3599, + + /// + /// damage_+%_with_two_handed_weapons + /// + DamagePctWithTwoHandedWeapons = 3600, + + /// + /// damage_reduction_rating_from_body_armour_doubled + /// + DamageReductionRatingFromBodyArmourDoubled = 3601, + + /// + /// damage_reduction_rating_%_with_active_totem + /// + DamageReductionRatingPctWithActiveTotem = 3602, + + /// + /// virtual_physical_damage_taken_+% + /// + VirtualPhysicalDamageTakenPct = 3603, + + /// + /// virtual_elemental_damage_taken_+% + /// + VirtualElementalDamageTakenPct = 3604, + + /// + /// is_burning + /// + IsBurning = 3605, + + /// + /// ignite_effect_on_self_+% + /// + IgniteEffectOnSelfPct = 3606, + + /// + /// shocked_effect_on_self_+% + /// + ShockedEffectOnSelfPct = 3607, + + /// + /// ancestor_totem_parent_activiation_range + /// + AncestorTotemParentActiviationRange = 3608, + + /// + /// support_clustertrap_damage_+%_final + /// + SupportClustertrapDamagePctFinal = 3609, + + /// + /// local_display_cast_level_x_manifest_rageblade + /// + LocalDisplayCastLevelXManifestRageblade = 3610, + + /// + /// local_display_manifest_rageblade_disables_weapons + /// + LocalDisplayManifestRagebladeDisablesWeapons = 3611, + + /// + /// local_display_manifest_rageblade_destroy_on_end_rampage + /// + LocalDisplayManifestRagebladeDestroyOnEndRampage = 3612, + + /// + /// minions_grant_onslaught + /// + MinionsGrantOnslaught = 3613, + + /// + /// ground_fire_art_variation + /// + GroundFireArtVariation = 3614, + + /// + /// frost_blades_damage_+% + /// + FrostBladesDamagePct = 3615, + + /// + /// frost_blades_projectile_speed_+% + /// + FrostBladesProjectileSpeedPct = 3616, + + /// + /// frost_blades_number_of_additional_projectiles_in_chain + /// + FrostBladesNumberOfAdditionalProjectilesInChain = 3617, + + /// + /// summoned_raging_spirit_duration_+% + /// + SummonedRagingSpiritDurationPct = 3618, + + /// + /// summoned_raging_spirit_chance_to_spawn_additional_minion_% + /// + SummonedRagingSpiritChanceToSpawnAdditionalMinionPct = 3619, + + /// + /// discharge_damage_+% + /// + DischargeDamagePct = 3620, + + /// + /// discharge_radius_+% + /// + DischargeRadiusPct = 3621, + + /// + /// discharge_chance_not_to_consume_charges_% + /// + DischargeChanceNotToConsumeChargesPct = 3622, + + /// + /// anger_mana_reservation_+% + /// + AngerManaReservationPct = 3623, + + /// + /// anger_aura_effect_+% + /// + AngerAuraEffectPct = 3624, + + /// + /// lightning_trap_damage_+% + /// + LightningTrapDamagePct = 3625, + + /// + /// lightning_trap_number_of_additional_projectiles + /// + LightningTrapNumberOfAdditionalProjectiles = 3626, + + /// + /// lightning_trap_cooldown_speed_+% + /// + LightningTrapCooldownSpeedPct = 3627, + + /// + /// virtual_number_of_chains + /// + VirtualNumberOfChains = 3628, + + /// + /// ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final + /// + AmbushPassiveCriticalStrikeChanceVsEnemiesOnFullLifePctFinal = 3629, + + /// + /// critical_strike_multiplier_vs_enemies_on_full_life_+ + /// + CriticalStrikeMultiplierVsEnemiesOnFullLife = 3630, + + /// + /// assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final + /// + AssassinatePassiveCriticalStrikeChanceVsEnemiesOnLowLifePctFinal = 3631, + + /// + /// ambush_passive_critical_strike_chance_+%_final + /// + AmbushPassiveCriticalStrikeChancePctFinal = 3632, + + /// + /// assassinate_passive_critical_strike_chance_+%_final + /// + AssassinatePassiveCriticalStrikeChancePctFinal = 3633, + + /// + /// immune_to_lava_damage + /// + ImmuneToLavaDamage = 3634, + + /// + /// number_of_additional_storm_clouds_allowed + /// + NumberOfAdditionalStormCloudsAllowed = 3635, + + /// + /// local_flask_consumes_x_frenzy_charges_on_use + /// + LocalFlaskConsumesXFrenzyChargesOnUse = 3636, + + /// + /// local_flask_consumes_x_endurance_charges_on_use + /// + LocalFlaskConsumesXEnduranceChargesOnUse = 3637, + + /// + /// local_flask_consumes_x_power_charges_on_use + /// + LocalFlaskConsumesXPowerChargesOnUse = 3638, + + /// + /// map_shrines_are_darkshrines + /// + MapShrinesAreDarkshrines = 3639, + + /// + /// physical_damage_+%_while_frozen + /// + PhysicalDamagePctWhileFrozen = 3640, + + /// + /// local_recharge_on_crit_% + /// + LocalRechargeOnCritPct = 3641, + + /// + /// mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy + /// + ManaAndEsRegenerationPerMinutePctWhenYouFreezeShockOrIgniteAnEnemy = 3642, + + /// + /// damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element + /// + DamageTakenPctToAnElementFor4SecondsWhenHitByDamageFromAnElement = 3643, + + /// + /// cold_damage_taken_+% + /// + ColdDamageTakenPct = 3644, + + /// + /// lightning_damage_taken_+% + /// + LightningDamageTakenPct = 3645, + + /// + /// burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_% + /// + BurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3646, + + /// + /// burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_% + /// + BurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3647, + + /// + /// local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius + /// + LocalUniqueJewelBurningArrowSpreadBurningGroundWhenIgnitingEnemyOnHitPctWith50DexterityInRadius = 3648, + + /// + /// local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius + /// + LocalUniqueJewelBurningArrowSpreadTarGroundWhenNotIgnitingEnemyOnHitPctWith50DexterityInRadius = 3649, + + /// + /// bleed_on_hit_with_attacks_% + /// + BleedOnHitWithAttacksPct = 3650, + + /// + /// gain_flask_chance_on_crit_% + /// + GainFlaskChanceOnCritPct = 3651, + + /// + /// player_far_shot + /// + PlayerFarShot = 3652, + + /// + /// fire_elemental_meteor_landing_range + /// + FireElementalMeteorLandingRange = 3653, + + /// + /// virtual_aura_effect_pluspercent + /// + VirtualAuraEffectPluspercent = 3654, + + /// + /// cannot_be_poisoned + /// + CannotBePoisoned = 3655, + + /// + /// avoid_fire_damage_% + /// + AvoidFireDamagePct = 3656, + + /// + /// avoid_cold_damage_% + /// + AvoidColdDamagePct = 3657, + + /// + /// avoid_lightning_damage_% + /// + AvoidLightningDamagePct = 3658, + + /// + /// avoid_chaos_damage_% + /// + AvoidChaosDamagePct = 3659, + + /// + /// avoid_physical_damage_% + /// + AvoidPhysicalDamagePct = 3660, + + /// + /// remove_bleed_on_flask_use + /// + RemoveBleedOnFlaskUse = 3661, + + /// + /// slayer_ascendancy_melee_splash_damage_+%_final + /// + SlayerAscendancyMeleeSplashDamagePctFinal = 3662, + + /// + /// slayer_ascendancy_melee_splash_damage_+%_final_for_splash + /// + SlayerAscendancyMeleeSplashDamagePctFinalForSplash = 3663, + + /// + /// guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield + /// + GuardianReservedManaPctGivenToYouAndNearbyAlliesAsBaseMaximumEnergyShield = 3664, + + /// + /// virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies + /// + VirtualBaseMaximumEnergyShieldToGrantToYouAndNearbyAllies = 3665, + + /// + /// virtual_armour_to_grant_to_you_and_nearby_allies + /// + VirtualArmourToGrantToYouAndNearbyAllies = 3666, + + /// + /// number_of_additional_siege_ballistae_per_200_dexterity + /// + NumberOfAdditionalSiegeBallistaePer200Dexterity = 3667, + + /// + /// attack_minimum_added_physical_damage_per_25_dexterity + /// + AttackMinimumAddedPhysicalDamagePer25Dexterity = 3668, + + /// + /// attack_maximum_added_physical_damage_per_25_dexterity + /// + AttackMaximumAddedPhysicalDamagePer25Dexterity = 3669, + + /// + /// local_display_nearby_enemies_are_blinded + /// + LocalDisplayNearbyEnemiesAreBlinded = 3670, + + /// + /// local_display_nearby_enemies_movement_speed_+% + /// + LocalDisplayNearbyEnemiesMovementSpeedPct = 3671, + + /// + /// local_display_socketed_gems_supported_by_x_hypothermia + /// + LocalDisplaySocketedGemsSupportedByXHypothermia = 3672, + + /// + /// local_display_socketed_gems_supported_by_x_ice_bite + /// + LocalDisplaySocketedGemsSupportedByXIceBite = 3673, + + /// + /// local_display_socketed_gems_supported_by_x_cold_penetration + /// + LocalDisplaySocketedGemsSupportedByXColdPenetration = 3674, + + /// + /// local_display_socketed_gems_supported_by_x_mana_leech + /// + LocalDisplaySocketedGemsSupportedByXManaLeech = 3675, + + /// + /// local_display_socketed_gems_supported_by_x_added_cold_damage + /// + LocalDisplaySocketedGemsSupportedByXAddedColdDamage = 3676, + + /// + /// local_display_socketed_gems_supported_by_x_reduced_mana_cost + /// + LocalDisplaySocketedGemsSupportedByXReducedManaCost = 3677, + + /// + /// projectile_nova_extend_projectiles_forward_by_x_units + /// + ProjectileNovaExtendProjectilesForwardByXUnits = 3678, + + /// + /// storm_cloud_destroy_when_caster_dies + /// + StormCloudDestroyWhenCasterDies = 3679, + + /// + /// chance_to_gain_onslaught_on_kill_for_4_seconds_% + /// + ChanceToGainOnslaughtOnKillFor4SecondsPct = 3680, + + /// + /// chance_to_cast_on_rampage_tier_% + /// + ChanceToCastOnRampageTierPct = 3681, + + /// + /// local_display_minions_grant_onslaught + /// + LocalDisplayMinionsGrantOnslaught = 3682, + + /// + /// %_of_life_and_energy_shield_to_deal_as_damage + /// + PctOfLifeAndEnergyShieldToDealAsDamage = 3683, + + /// + /// critical_strike_chance_+%_vs_blinded_enemies + /// + CriticalStrikeChancePctVsBlindedEnemies = 3684, + + /// + /// is_in_singularity + /// + IsInSingularity = 3685, + + /// + /// chilled_ground_on_freeze_%_chance_for_3_seconds + /// + ChilledGroundOnFreezePctChanceFor3Seconds = 3686, + + /// + /// consecrate_ground_on_kill_%_for_3_seconds + /// + ConsecrateGroundOnKillPctFor3Seconds = 3687, + + /// + /// in_symbol + /// + InSymbol = 3688, + + /// + /// damage_taken_+%_from_enemies_in_symbols + /// + DamageTakenPctFromEnemiesInSymbols = 3689, + + /// + /// local_display_socketed_aura_gems_reserve_no_mana + /// + LocalDisplaySocketedAuraGemsReserveNoMana = 3690, + + /// + /// no_mana_reserved + /// + NoManaReserved = 3691, + + /// + /// piercing_attacks_cause_bleeding + /// + PiercingAttacksCauseBleeding = 3692, + + /// + /// spell_damage_modifiers_apply_to_skill_dot + /// + SpellDamageModifiersApplyToSkillDot = 3693, + + /// + /// shadow_blades_projectile_spread + /// + ShadowBladesProjectileSpread = 3694, + + /// + /// map_disable_bloodlines + /// + MapDisableBloodlines = 3695, + + /// + /// map_disable_nemesis + /// + MapDisableNemesis = 3696, + + /// + /// is_poisoned + /// + IsPoisoned = 3697, + + /// + /// is_vinktar_lightning_bond_source + /// + IsVinktarLightningBondSource = 3698, + + /// + /// is_vinktar_lightning_bond_target + /// + IsVinktarLightningBondTarget = 3699, + + /// + /// energy_shield_recharges_on_block_% + /// + EnergyShieldRechargesOnBlockPct = 3700, + + /// + /// dropped_weapons_have_20_quality + /// + DroppedWeaponsHave20Quality = 3701, + + /// + /// drop_additional_20_quality_gems + /// + DropAdditional20QualityGems = 3702, + + /// + /// killed_rare_monsters_drop_additional_unique_items + /// + KilledRareMonstersDropAdditionalUniqueItems = 3703, + + /// + /// poison_duration_is_skill_duration + /// + PoisonDurationIsSkillDuration = 3704, + + /// + /// map_players_gain_rare_monster_mods_on_kill_ms + /// + MapPlayersGainRareMonsterModsOnKillMs = 3705, + + /// + /// soul_eater_on_rare_kill_ms + /// + SoulEaterOnRareKillMs = 3706, + + /// + /// map_players_gain_soul_eater_on_rare_kill_ms + /// + MapPlayersGainSoulEaterOnRareKillMs = 3707, + + /// + /// gain_soul_eater_during_flask_effect + /// + GainSoulEaterDuringFlaskEffect = 3708, + + /// + /// lose_soul_eater_souls_on_flask_use + /// + LoseSoulEaterSoulsOnFlaskUse = 3709, + + /// + /// totemified_skills_taunt_on_hit_% + /// + TotemifiedSkillsTauntOnHitPct = 3710, + + /// + /// virtual_chance_to_taunt_on_hit_% + /// + VirtualChanceToTauntOnHitPct = 3711, + + /// + /// offerings_also_buff_you + /// + OfferingsAlsoBuffYou = 3712, + + /// + /// caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% + /// + CausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3713, + + /// + /// minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% + /// + MinionCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 3714, + + /// + /// storm_cloud_charge_count + /// + StormCloudChargeCount = 3715, + + /// + /// monster_is_duplicated + /// + MonsterIsDuplicated = 3716, + + /// + /// gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit + /// + GainLifeLeechFromAnyDamagePermyriadAsLifeFor4SecondsIfTakenSavageHit = 3717, + + /// + /// gain_damage_+%_for_4_seconds_if_taken_savage_hit + /// + GainDamagePctFor4SecondsIfTakenSavageHit = 3718, + + /// + /// gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit + /// + GainAttackSpeedPctFor4SecondsIfTakenSavageHit = 3719, + + /// + /// damage_+%_vs_burning_enemies + /// + DamagePctVsBurningEnemies = 3720, + + /// + /// endurance_charge_on_off_hand_kill_% + /// + EnduranceChargeOnOffHandKillPct = 3721, + + /// + /// aura_melee_physical_damage_+%_per_10_strength + /// + AuraMeleePhysicalDamagePctPer10Strength = 3722, + + /// + /// attack_on_death_% + /// + AttackOnDeathPct = 3723, + + /// + /// siphon_life_leech_from_damage_permyriad + /// + SiphonLifeLeechFromDamagePermyriad = 3724, + + /// + /// total_base_maximum_mana + /// + TotalBaseMaximumMana = 3725, + + /// + /// combined_mana_+% + /// + CombinedManaPct = 3726, + + /// + /// combined_mana_+%_final + /// + CombinedManaPctFinal = 3727, + + /// + /// you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_% + /// + YouAndYourTotemsGainAnEnduranceChargeOnBurningEnemyKillPct = 3728, + + /// + /// minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_% + /// + MinionsGrantOwnerAndOwnersTotemsGainsEnduranceChargeOnBurningEnemyKillPct = 3729, + + /// + /// grant_owner_and_owners_totems_an_endurance_charge_on_burning_enemy_kill_% + /// + GrantOwnerAndOwnersTotemsAnEnduranceChargeOnBurningEnemyKillPct = 3730, + + /// + /// auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies + /// + AurasGrantAdditionalPhysicalDamageReductionPctToYouAndYourAllies = 3731, + + /// + /// auras_grant_damage_+%_to_you_and_your_allies + /// + AurasGrantDamagePctToYouAndYourAllies = 3732, + + /// + /// auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies + /// + AurasGrantAttackAndCastSpeedPctToYouAndYourAllies = 3733, + + /// + /// placing_traps_cooldown_recovery_+% + /// + PlacingTrapsCooldownRecoveryPct = 3734, + + /// + /// damage_+%_vs_enemies_affected_by_status_ailments + /// + DamagePctVsEnemiesAffectedByStatusAilments = 3735, + + /// + /// warcries_are_instant + /// + WarcriesAreInstant = 3736, + + /// + /// aura_grant_shield_defences_to_nearby_allies + /// + AuraGrantShieldDefencesToNearbyAllies = 3737, + + /// + /// minion_additional_physical_damage_reduction_% + /// + MinionAdditionalPhysicalDamageReductionPct = 3738, + + /// + /// phasing_for_4_seconds_on_kill_% + /// + PhasingFor4SecondsOnKillPct = 3739, + + /// + /// skill_area_of_effect_+%_per_active_mine + /// + SkillAreaOfEffectPctPerActiveMine = 3740, + + /// + /// damage_+%_per_active_trap + /// + DamagePctPerActiveTrap = 3741, + + /// + /// immune_to_status_ailments_while_phased + /// + ImmuneToStatusAilmentsWhilePhased = 3742, + + /// + /// chance_to_dodge_spells_%_while_phased + /// + ChanceToDodgeSpellsPctWhilePhased = 3743, + + /// + /// additional_critical_strike_chance_per_power_charge_permyriad + /// + AdditionalCriticalStrikeChancePerPowerChargePermyriad = 3744, + + /// + /// movement_skills_cost_no_mana + /// + MovementSkillsCostNoMana = 3745, + + /// + /// attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use + /// + AttackAndCastSpeedPctFor4SecondsOnMovementSkillUse = 3746, + + /// + /// recover_10%_of_maximum_mana_on_skill_use_% + /// + Recover10PctOfMaximumManaOnSkillUsePct = 3747, + + /// + /// mine_laying_speed_+%_for_4_seconds_on_detonation + /// + MineLayingSpeedPctFor4SecondsOnDetonation = 3748, + + /// + /// damage_+%_for_4_seconds_on_detonation + /// + DamagePctFor4SecondsOnDetonation = 3749, + + /// + /// flask_charges_recovered_per_3_seconds + /// + FlaskChargesRecoveredPer3Seconds = 3750, + + /// + /// trap_skill_area_of_effect_+% + /// + TrapSkillAreaOfEffectPct = 3751, + + /// + /// number_of_active_mines + /// + NumberOfActiveMines = 3752, + + /// + /// number_of_active_traps + /// + NumberOfActiveTraps = 3753, + + /// + /// is_spike_trap + /// + IsSpikeTrap = 3754, + + /// + /// is_arrow_trap + /// + IsArrowTrap = 3755, + + /// + /// damage_taken_+%_from_spike_traps_final + /// + DamageTakenPctFromSpikeTrapsFinal = 3756, + + /// + /// damage_taken_+%_from_arrow_traps_final + /// + DamageTakenPctFromArrowTrapsFinal = 3757, + + /// + /// minion_damage_taken_+%_from_spike_traps_final + /// + MinionDamageTakenPctFromSpikeTrapsFinal = 3758, + + /// + /// minion_damage_taken_+%_from_arrow_traps_final + /// + MinionDamageTakenPctFromArrowTrapsFinal = 3759, + + /// + /// labyrinth_trap_degen_effect_on_self_+% + /// + LabyrinthTrapDegenEffectOnSelfPct = 3760, + + /// + /// minions_have_labyrinth_trap_degen_effect_+% + /// + MinionsHaveLabyrinthTrapDegenEffectPct = 3761, + + /// + /// immune_to_labyrinth_degen_effect + /// + ImmuneToLabyrinthDegenEffect = 3762, + + /// + /// minions_are_immune_to_labyrinth_degen_effect + /// + MinionsAreImmuneToLabyrinthDegenEffect = 3763, + + /// + /// nearby_traps_within_x_units_also_trigger_on_triggering_trap + /// + NearbyTrapsWithinXUnitsAlsoTriggerOnTriggeringTrap = 3764, + + /// + /// number_of_additional_mines_to_place + /// + NumberOfAdditionalMinesToPlace = 3765, + + /// + /// chance_to_place_an_additional_mine_% + /// + ChanceToPlaceAnAdditionalMinePct = 3766, + + /// + /// immune_to_shunt_geal + /// + ImmuneToShuntGeal = 3767, + + /// + /// chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_% + /// + ChanceForElementalDamageToBeAddedAsAdditionalChaosDamagePct = 3768, + + /// + /// critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments + /// + CriticalStrikeChancePctVsEnemiesWithoutElementalStatusAilments = 3769, + + /// + /// spell_damage_+%_for_4_seconds_on_cast + /// + SpellDamagePctFor4SecondsOnCast = 3770, + + /// + /// attack_damage_+%_for_4_seconds_on_cast + /// + AttackDamagePctFor4SecondsOnCast = 3771, + + /// + /// attack_speed_+%_for_4_seconds_on_attack + /// + AttackSpeedPctFor4SecondsOnAttack = 3772, + + /// + /// cast_speed_+%_for_4_seconds_on_attack + /// + CastSpeedPctFor4SecondsOnAttack = 3773, + + /// + /// attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge + /// + AttackAndCastSpeedPctFor4SecondsOnBeginEsRecharge = 3774, + + /// + /// display_attack_with_commandment_of_force_on_hit_% + /// + DisplayAttackWithCommandmentOfForceOnHitPct = 3775, + + /// + /// display_attack_with_commandment_of_fury_on_hit_% + /// + DisplayAttackWithCommandmentOfFuryOnHitPct = 3776, + + /// + /// display_attack_with_commandment_of_light_when_critically_hit_% + /// + DisplayAttackWithCommandmentOfLightWhenCriticallyHitPct = 3777, + + /// + /// display_attack_with_commandment_of_spite_when_hit_% + /// + DisplayAttackWithCommandmentOfSpiteWhenHitPct = 3778, + + /// + /// display_attack_with_decree_of_force_on_hit_% + /// + DisplayAttackWithDecreeOfForceOnHitPct = 3779, + + /// + /// display_attack_with_decree_of_fury_on_hit_% + /// + DisplayAttackWithDecreeOfFuryOnHitPct = 3780, + + /// + /// display_attack_with_decree_of_light_when_critically_hit_% + /// + DisplayAttackWithDecreeOfLightWhenCriticallyHitPct = 3781, + + /// + /// display_attack_with_decree_of_spite_when_hit_% + /// + DisplayAttackWithDecreeOfSpiteWhenHitPct = 3782, + + /// + /// display_attack_with_edict_of_force_on_hit_% + /// + DisplayAttackWithEdictOfForceOnHitPct = 3783, + + /// + /// display_attack_with_edict_of_fury_on_hit_% + /// + DisplayAttackWithEdictOfFuryOnHitPct = 3784, + + /// + /// display_attack_with_edict_of_ire_when_hit_% + /// + DisplayAttackWithEdictOfIreWhenHitPct = 3785, + + /// + /// display_attack_with_edict_of_light_when_critically_hit_% + /// + DisplayAttackWithEdictOfLightWhenCriticallyHitPct = 3786, + + /// + /// display_attack_with_edict_of_spite_when_hit_% + /// + DisplayAttackWithEdictOfSpiteWhenHitPct = 3787, + + /// + /// display_attack_with_word_of_force_on_hit_% + /// + DisplayAttackWithWordOfForceOnHitPct = 3788, + + /// + /// display_attack_with_word_of_fury_on_hit_% + /// + DisplayAttackWithWordOfFuryOnHitPct = 3789, + + /// + /// display_attack_with_word_of_light_when_critically_hit_% + /// + DisplayAttackWithWordOfLightWhenCriticallyHitPct = 3790, + + /// + /// display_attack_with_word_of_ire_when_hit_% + /// + DisplayAttackWithWordOfIreWhenHitPct = 3791, + + /// + /// display_attack_with_word_of_spite_when_hit_% + /// + DisplayAttackWithWordOfSpiteWhenHitPct = 3792, + + /// + /// display_cast_commandment_of_blades_on_hit_%_ + /// + DisplayCastCommandmentOfBladesOnHitPct = 3793, + + /// + /// display_cast_commandment_of_inferno_on_kill_% + /// + DisplayCastCommandmentOfInfernoOnKillPct = 3794, + + /// + /// display_cast_commandment_of_reflection_when_hit_% + /// + DisplayCastCommandmentOfReflectionWhenHitPct = 3795, + + /// + /// display_cast_commandment_of_tempest_on_hit_% + /// + DisplayCastCommandmentOfTempestOnHitPct = 3796, + + /// + /// display_cast_commandment_of_the_grave_on_kill_% + /// + DisplayCastCommandmentOfTheGraveOnKillPct = 3797, + + /// + /// display_cast_commandment_of_war_on_kill_% + /// + DisplayCastCommandmentOfWarOnKillPct = 3798, + + /// + /// display_cast_commandment_of_winter_when_hit_% + /// + DisplayCastCommandmentOfWinterWhenHitPct = 3799, + + /// + /// display_cast_decree_of_blades_on_hit_%__ + /// + DisplayCastDecreeOfBladesOnHitPct = 3800, + + /// + /// display_cast_decree_of_inferno_on_kill_% + /// + DisplayCastDecreeOfInfernoOnKillPct = 3801, + + /// + /// display_cast_decree_of_reflection_when_hit_% + /// + DisplayCastDecreeOfReflectionWhenHitPct = 3802, + + /// + /// display_cast_decree_of_tempest_on_hit_% + /// + DisplayCastDecreeOfTempestOnHitPct = 3803, + + /// + /// display_cast_decree_of_the_grave_on_kill_% + /// + DisplayCastDecreeOfTheGraveOnKillPct = 3804, + + /// + /// display_cast_decree_of_war_on_kill_% + /// + DisplayCastDecreeOfWarOnKillPct = 3805, + + /// + /// display_cast_decree_of_winter_when_hit_% + /// + DisplayCastDecreeOfWinterWhenHitPct = 3806, + + /// + /// display_cast_edict_of_blades_on_hit_%_ + /// + DisplayCastEdictOfBladesOnHitPct = 3807, + + /// + /// display_cast_edict_of_inferno_on_kill_% + /// + DisplayCastEdictOfInfernoOnKillPct = 3808, + + /// + /// display_cast_edict_of_reflection_when_hit_% + /// + DisplayCastEdictOfReflectionWhenHitPct = 3809, + + /// + /// display_cast_edict_of_tempest_on_hit_% + /// + DisplayCastEdictOfTempestOnHitPct = 3810, + + /// + /// display_cast_edict_of_the_grave_on_kill_% + /// + DisplayCastEdictOfTheGraveOnKillPct = 3811, + + /// + /// display_cast_edict_of_war_on_kill_% + /// + DisplayCastEdictOfWarOnKillPct = 3812, + + /// + /// display_cast_edict_of_winter_when_hit_% + /// + DisplayCastEdictOfWinterWhenHitPct = 3813, + + /// + /// display_cast_word_of_blades_on_hit_% + /// + DisplayCastWordOfBladesOnHitPct = 3814, + + /// + /// display_cast_word_of_inferno_on_kill_% + /// + DisplayCastWordOfInfernoOnKillPct = 3815, + + /// + /// display_cast_word_of_reflection_when_hit_% + /// + DisplayCastWordOfReflectionWhenHitPct = 3816, + + /// + /// display_cast_word_of_tempest_on_hit_% + /// + DisplayCastWordOfTempestOnHitPct = 3817, + + /// + /// display_cast_word_of_winter_when_hit_% + /// + DisplayCastWordOfWinterWhenHitPct = 3818, + + /// + /// life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen + /// + LifeEsAndManaRecoveryPctFor4SecondsOnKillingEnemiesAffectedByYourDegen = 3819, + + /// + /// trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final + /// + TricksterPassiveChanceToEvadeAttacksWhileNotOnFullEnergyShieldPctFinal = 3820, + + /// + /// display_cast_word_of_flames_on_hit_% + /// + DisplayCastWordOfFlamesOnHitPct = 3821, + + /// + /// display_cast_edict_of_flames_on_hit_% + /// + DisplayCastEdictOfFlamesOnHitPct = 3822, + + /// + /// display_cast_decree_of_flames_on_hit_% + /// + DisplayCastDecreeOfFlamesOnHitPct = 3823, + + /// + /// display_cast_commandment_of_flames_on_hit_% + /// + DisplayCastCommandmentOfFlamesOnHitPct = 3824, + + /// + /// display_cast_word_of_frost_on_kill_% + /// + DisplayCastWordOfFrostOnKillPct = 3825, + + /// + /// display_cast_edict_of_frost_on_kill_% + /// + DisplayCastEdictOfFrostOnKillPct = 3826, + + /// + /// display_cast_decree_of_frost_on_kill_% + /// + DisplayCastDecreeOfFrostOnKillPct = 3827, + + /// + /// display_cast_commandment_of_frost_on_kill_% + /// + DisplayCastCommandmentOfFrostOnKillPct = 3828, + + /// + /// display_cast_word_of_thunder_on_kill_% + /// + DisplayCastWordOfThunderOnKillPct = 3829, + + /// + /// display_cast_edict_of_thunder_on_kill_% + /// + DisplayCastEdictOfThunderOnKillPct = 3830, + + /// + /// display_cast_decree_of_thunder_on_kill_% + /// + DisplayCastDecreeOfThunderOnKillPct = 3831, + + /// + /// display_cast_commandment_of_thunder_on_kill_% + /// + DisplayCastCommandmentOfThunderOnKillPct = 3832, + + /// + /// display_cast_fire_burst_on_kill + /// + DisplayCastFireBurstOnKill = 3833, + + /// + /// local_stat_monsters_pick_up_item + /// + LocalStatMonstersPickUpItem = 3834, + + /// + /// stone_golem_grants_base_life_regeneration_rate_per_minute + /// + StoneGolemGrantsBaseLifeRegenerationRatePerMinute = 3835, + + /// + /// bladefall_damage_per_stage_+%_final + /// + BladefallDamagePerStagePctFinal = 3836, + + /// + /// global_maim_on_hit + /// + GlobalMaimOnHit = 3837, + + /// + /// consecrate_ground_for_3_seconds_when_hit_% + /// + ConsecrateGroundFor3SecondsWhenHitPct = 3838, + + /// + /// damage_+%_on_consecrated_ground + /// + DamagePctOnConsecratedGround = 3839, + + /// + /// mana_cost_+%_on_consecrated_ground + /// + ManaCostPctOnConsecratedGround = 3840, + + /// + /// avoid_ailments_%_on_consecrated_ground + /// + AvoidAilmentsPctOnConsecratedGround = 3841, + + /// + /// on_consecrated_ground + /// + OnConsecratedGround = 3842, + + /// + /// inquisitor_aura_elemental_damage_+%_final + /// + InquisitorAuraElementalDamagePctFinal = 3843, + + /// + /// critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment + /// + CriticalStrikeMultiplierVsEnemiesAffectedByElementalStatusAilment = 3844, + + /// + /// non_critical_strikes_penetrate_elemental_resistances_% + /// + NonCriticalStrikesPenetrateElementalResistancesPct = 3845, + + /// + /// virtual_penetrate_elemental_resistances_% + /// + VirtualPenetrateElementalResistancesPct = 3846, + + /// + /// base_penetrate_elemental_resistances_% + /// + BasePenetrateElementalResistancesPct = 3847, + + /// + /// virtual_minion_additional_physical_damage_reduction_percent + /// + VirtualMinionAdditionalPhysicalDamageReductionPercent = 3848, + + /// + /// chance_to_poison_on_hit_with_attacks_% + /// + ChanceToPoisonOnHitWithAttacksPct = 3849, + + /// + /// chance_to_double_stun_duration_% + /// + ChanceToDoubleStunDurationPct = 3850, + + /// + /// is_guillotine_trap + /// + IsGuillotineTrap = 3851, + + /// + /// damage_taken_+%_from_guillotine_traps_final + /// + DamageTakenPctFromGuillotineTrapsFinal = 3852, + + /// + /// minion_damage_taken_+%_from_guillotine_traps_final + /// + MinionDamageTakenPctFromGuillotineTrapsFinal = 3853, + + /// + /// labyrinth_arrow_movement_speed_+%_final + /// + LabyrinthArrowMovementSpeedPctFinal = 3854, + + /// + /// map_disable_portal_use + /// + MapDisablePortalUse = 3855, + + /// + /// jorrhasts_blacksteel_animate_weapon_duration_+%_final + /// + JorrhastsBlacksteelAnimateWeaponDurationPctFinal = 3856, + + /// + /// shockwave_slam_explosion_damage_+%_final + /// + ShockwaveSlamExplosionDamagePctFinal = 3857, + + /// + /// display_monster_casts_wither + /// + DisplayMonsterCastsWither = 3858, + + /// + /// display_monster_causes_ground_desecration + /// + DisplayMonsterCausesGroundDesecration = 3859, + + /// + /// spread_tar_ground_when_not_igniting_enemy_on_hit_% + /// + SpreadTarGroundWhenNotIgnitingEnemyOnHitPct = 3860, + + /// + /// spread_burning_ground_when_igniting_enemy_on_hit_% + /// + SpreadBurningGroundWhenIgnitingEnemyOnHitPct = 3861, + + /// + /// non_curse_aura_effect_+% + /// + NonCurseAuraEffectPct = 3862, + + /// + /// max_talisman_degen_stacks + /// + MaxTalismanDegenStacks = 3863, + + /// + /// current_talisman_degen_stacks + /// + CurrentTalismanDegenStacks = 3864, + + /// + /// base_physical_damage_taken_per_minute_per_talisman_degen_stack + /// + BasePhysicalDamageTakenPerMinutePerTalismanDegenStack = 3865, + + /// + /// melee_splash_area_of_effect_+%_final + /// + MeleeSplashAreaOfEffectPctFinal = 3866, + + /// + /// unarmed_damage_+%_vs_bleeding_enemies + /// + UnarmedDamagePctVsBleedingEnemies = 3867, + + /// + /// life_gained_on_bleeding_enemy_hit + /// + LifeGainedOnBleedingEnemyHit = 3868, + + /// + /// base_critical_strike_chance_while_unarmed_% + /// + BaseCriticalStrikeChanceWhileUnarmedPct = 3869, + + /// + /// modifiers_to_claw_damage_also_affect_unarmed_damage + /// + ModifiersToClawDamageAlsoAffectUnarmedDamage = 3870, + + /// + /// damage_+%_while_unarmed + /// + DamagePctWhileUnarmed = 3871, + + /// + /// bloodworm_on_damage_taken_% + /// + BloodwormOnDamageTakenPct = 3872, + + /// + /// map_sidearea_level_override + /// + MapSideareaLevelOverride = 3873, + + /// + /// map_boss_talisman_tier + /// + MapBossTalismanTier = 3874, + + /// + /// map_boss_talisman_rarity + /// + MapBossTalismanRarity = 3875, + + /// + /// local_display_illusory_warp_level + /// + LocalDisplayIllusoryWarpLevel = 3876, + + /// + /// fortify_effect_on_self_+% + /// + FortifyEffectOnSelfPct = 3877, + + /// + /// local_implicit_stat_magnitude_+% + /// + LocalImplicitStatMagnitudePct = 3878, + + /// + /// using_flask + /// + UsingFlask = 3879, + + /// + /// chance_to_poison_on_hit_% + /// + ChanceToPoisonOnHitPct = 3880, + + /// + /// flask_charges_gained_+% + /// + FlaskChargesGainedPct = 3881, + + /// + /// soul_eater_from_stat + /// + SoulEaterFromStat = 3882, + + /// + /// gain_power_charge_on_kill_with_hit_% + /// + GainPowerChargeOnKillWithHitPct = 3883, + + /// + /// killed_monster_dropped_item_rarity_+%_when_shattered + /// + KilledMonsterDroppedItemRarityPctWhenShattered = 3884, + + /// + /// Energy Shield Delay Recovery Increase + /// + EnergyShieldDelayDuringFlaskEffectPct = 3885, + + /// + /// Energy Shield Delay Recovery Increase + /// + VirtualEnergyShieldDelayPct = 3886, + + /// + /// energy_shield_recharge_rate_during_flask_effect_+% + /// + EnergyShieldRechargeRateDuringFlaskEffectPct = 3887, + + /// + /// virtual_energy_shield_recharge_rate_+% + /// + VirtualEnergyShieldRechargeRatePct = 3888, + + /// + /// base_cold_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute + /// + BaseColdDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3889, + + /// + /// base_lightning_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute + /// + BaseLightningDamagePctOfMaximumLifePlusMaximumESTakenPerMinute = 3890, + + /// + /// modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed + /// + ModifiersToClawAttackSpeedAlsoAffectUnarmedAttackSpeed = 3891, + + /// + /// modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance + /// + ModifiersToClawCriticalStrikeChanceAlsoAffectUnarmedCriticalStrikeChance = 3892, + + /// + /// main_hand_chance_to_poison_on_critical_strike_% + /// + MainHandChanceToPoisonOnCriticalStrikePct = 3893, + + /// + /// off_hand_chance_to_poison_on_critical_strike_% + /// + OffHandChanceToPoisonOnCriticalStrikePct = 3894, + + /// + /// chance_to_poison_on_critical_strike_with_dagger_% + /// + ChanceToPoisonOnCriticalStrikeWithDaggerPct = 3895, + + /// + /// minion_duration + /// + MinionDuration = 3896, + + /// + /// number_of_wolves_allowed + /// + NumberOfWolvesAllowed = 3897, + + /// + /// whirling_leap_bloodworms_to_spawn + /// + WhirlingLeapBloodwormsToSpawn = 3898, + + /// + /// map_display_unique_boss_drops_X_maps + /// + MapDisplayUniqueBossDropsXMaps = 3899, + + /// + /// endurance_charge_on_kill_% + /// + EnduranceChargeOnKillPct = 3900, + + /// + /// fishing_bite_sensitivity_+% + /// + FishingBiteSensitivityPct = 3901, + + /// + /// local_display_summon_wolf_on_kill_% + /// + LocalDisplaySummonWolfOnKillPct = 3902, + + /// + /// corrupted_blood_on_hit_%_average_damage_to_deal_per_minute_per_stack + /// + CorruptedBloodOnHitPctAverageDamageToDealPerMinutePerStack = 3903, + + /// + /// maim_on_hit_%_with_at_least_3_stacks_of_corrupted_blood + /// + MaimOnHitPctWithAtLeast3StacksOfCorruptedBlood = 3904, + + /// + /// monster_can_spawn_with_talisman + /// + MonsterCanSpawnWithTalisman = 3905, + + /// + /// monster_explodes_on_death_text + /// + MonsterExplodesOnDeathText = 3906, + + /// + /// number_of_active_wolves + /// + NumberOfActiveWolves = 3907, + + /// + /// active_skill_area_of_effect_+%_final + /// + ActiveSkillAreaOfEffectPctFinal = 3908, + + /// + /// cold_damage_+%_per_1%_block_chance + /// + ColdDamagePctPer1PctBlockChance = 3909, + + /// + /// maximum_mana_+%_per_2%_spell_block_chance + /// + MaximumManaPctPer2PctSpellBlockChance = 3910, + + /// + /// physical_damage_reduction_rating_+%_while_chilled_or_frozen + /// + PhysicalDamageReductionRatingPctWhileChilledOrFrozen = 3911, + + /// + /// support_reduced_duration_damage_+%_final + /// + SupportReducedDurationDamagePctFinal = 3912, + + /// + /// map_players_action_speed_+%_while_chilled + /// + MapPlayersActionSpeedPctWhileChilled = 3913, + + /// + /// action_speed_+%_while_chilled + /// + ActionSpeedPctWhileChilled = 3914, + + /// + /// extra_gore_chance_override_% + /// + ExtraGoreChanceOverridePct = 3915, + + /// + /// siphon_base_chaos_damage_to_deal_per_minute + /// + SiphonBaseChaosDamageToDealPerMinute = 3916, + + /// + /// blade_vortex_buff_range + /// + BladeVortexBuffRange = 3917, + + /// + /// spell_and_attack_minimum_added_cold_damage + /// + SpellAndAttackMinimumAddedColdDamage = 3918, + + /// + /// spell_and_attack_maximum_added_cold_damage + /// + SpellAndAttackMaximumAddedColdDamage = 3919, + + /// + /// reduce_enemy_cold_resistance_with_weapons_% + /// + ReduceEnemyColdResistanceWithWeaponsPct = 3920, + + /// + /// reduce_enemy_fire_resistance_with_weapons_% + /// + ReduceEnemyFireResistanceWithWeaponsPct = 3921, + + /// + /// reduce_enemy_lightning_resistance_with_weapons_% + /// + ReduceEnemyLightningResistanceWithWeaponsPct = 3922, + + /// + /// reduce_enemy_chaos_resistance_with_weapons_% + /// + ReduceEnemyChaosResistanceWithWeaponsPct = 3923, + + /// + /// support_minefield_mine_damage_+%_final + /// + SupportMinefieldMineDamagePctFinal = 3924, + + /// + /// modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity + /// + ModifiersToMapItemDropQuantityAlsoApplyToMapItemDropRarity = 3925, + + /// + /// map_monster_drop_higher_level_gear + /// + MapMonsterDropHigherLevelGear = 3926, + + /// + /// support_gem_elemental_damage_+%_final + /// + SupportGemElementalDamagePctFinal = 3927, + + /// + /// keystone_elemental_overload_damage_+%_final + /// + KeystoneElementalOverloadDamagePctFinal = 3928, + + /// + /// keystone_elemental_overload + /// + KeystoneElementalOverload = 3929, + + /// + /// local_smoke_ground_on_flask_use_radius + /// + LocalSmokeGroundOnFlaskUseRadius = 3930, + + /// + /// local_consecrate_ground_on_flask_use_radius + /// + LocalConsecrateGroundOnFlaskUseRadius = 3931, + + /// + /// gain_onslaught_during_flask_effect + /// + GainOnslaughtDuringFlaskEffect = 3932, + + /// + /// cast_linked_curses_on_curse + /// + CastLinkedCursesOnCurse = 3933, + + /// + /// reduce_enemy_elemental_resistance_with_weapons_% + /// + ReduceEnemyElementalResistanceWithWeaponsPct = 3934, + + /// + /// %_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy + /// + PctChanceToGainFrenzyChargeOnTrapTriggeredByAnEnemy = 3935, + + /// + /// %_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy + /// + PctChanceToGainEnduranceChargeOnTrapTriggeredByAnEnemy = 3936, + + /// + /// local_number_of_bloodworms_to_spawn_on_flask_use + /// + LocalNumberOfBloodwormsToSpawnOnFlaskUse = 3937, + + /// + /// add_power_charge_on_hit_% + /// + AddPowerChargeOnHitPct = 3938, + + /// + /// lose_all_power_charges_on_reaching_maximum_power_charges + /// + LoseAllPowerChargesOnReachingMaximumPowerCharges = 3939, + + /// + /// shocked_for_4_seconds_on_reaching_maximum_power_charges + /// + ShockedFor4SecondsOnReachingMaximumPowerCharges = 3940, + + /// + /// local_display_molten_burst_on_melee_hit_% + /// + LocalDisplayMoltenBurstOnMeleeHitPct = 3941, + + /// + /// max_frost_nova_stacks + /// + MaxFrostNovaStacks = 3942, + + /// + /// current_frost_nova_stacks + /// + CurrentFrostNovaStacks = 3943, + + /// + /// reverse_projectile_spread + /// + ReverseProjectileSpread = 3944, + + /// + /// base_cold_damage_+%_per_frost_nova_stack + /// + BaseColdDamagePctPerFrostNovaStack = 3945, + + /// + /// frost_nova_cold_damage_+%_per_frost_nova_stack + /// + FrostNovaColdDamagePctPerFrostNovaStack = 3946, + + /// + /// is_petrified + /// + IsPetrified = 3947, + + /// + /// cast_on_melee_hit_% + /// + CastOnMeleeHitPct = 3948, + + /// + /// izaro_curse_on_hit_level_temporal_chains + /// + IzaroCurseOnHitLevelTemporalChains = 3949, + + /// + /// izaro_curse_on_hit_level_elemental_weakness + /// + IzaroCurseOnHitLevelElementalWeakness = 3950, + + /// + /// izaro_curse_on_hit_level_vulnerability + /// + IzaroCurseOnHitLevelVulnerability = 3951, + + /// + /// labyrinth_trinket_instantly_kill_next_pylon + /// + LabyrinthTrinketInstantlyKillNextPylon = 3952, + + /// + /// labyrinth_trinket_instantly_kill_next_lieutenant + /// + LabyrinthTrinketInstantlyKillNextLieutenant = 3953, + + /// + /// labyrinth_trinket_instantly_kill_next_elemental + /// + LabyrinthTrinketInstantlyKillNextElemental = 3954, + + /// + /// labyrinth_trinket_instantly_kill_next_gargoyle + /// + LabyrinthTrinketInstantlyKillNextGargoyle = 3955, + + /// + /// labyrinth_trinket_permanently_disable_next_statue + /// + LabyrinthTrinketPermanentlyDisableNextStatue = 3956, + + /// + /// labyrinth_trinket_permanently_disable_next_symbol + /// + LabyrinthTrinketPermanentlyDisableNextSymbol = 3957, + + /// + /// labyrinth_trinket_reactivate_next_charge_disruptor_after_5_seconds + /// + LabyrinthTrinketReactivateNextChargeDisruptorAfter5Seconds = 3958, + + /// + /// add_endurance_charge_on_gain_power_charge_% + /// + AddEnduranceChargeOnGainPowerChargePct = 3959, + + /// + /// stacking_damage_+%_on_kill_for_4_seconds + /// + StackingDamagePctOnKillFor4Seconds = 3960, + + /// + /// grant_owner_stacking_damage_+%_on_kill_for_4_seconds + /// + GrantOwnerStackingDamagePctOnKillFor4Seconds = 3961, + + /// + /// attack_and_cast_speed_+%_while_totem_active + /// + AttackAndCastSpeedPctWhileTotemActive = 3962, + + /// + /// number_of_additional_totems_allowed_on_kill_for_8_seconds + /// + NumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3963, + + /// + /// owner_number_of_additional_totems_allowed_on_kill_for_8_seconds + /// + OwnerNumberOfAdditionalTotemsAllowedOnKillFor8Seconds = 3964, + + /// + /// map_monsters_base_self_critical_strike_multiplier_-% + /// + MapMonstersBaseSelfCriticalStrikeMultiplierPct = 3965, + + /// + /// local_flask_is_petrified + /// + LocalFlaskIsPetrified = 3966, + + /// + /// hierophant_helmet_supported_by_elemental_penetration + /// + HierophantHelmetSupportedByElementalPenetration = 3967, + + /// + /// hierophant_gloves_supported_by_increased_area_of_effect + /// + HierophantGlovesSupportedByIncreasedAreaOfEffect = 3968, + + /// + /// hierophant_boots_supported_by_life_leech + /// + HierophantBootsSupportedByLifeLeech = 3969, + + /// + /// power_frenzy_or_endurance_charge_on_kill_% + /// + PowerFrenzyOrEnduranceChargeOnKillPct = 3970, + + /// + /// local_flask_effect_+% + /// + LocalFlaskEffectPct = 3971, + + /// + /// local_flask_poison_immunity_during_flask_effect + /// + LocalFlaskPoisonImmunityDuringFlaskEffect = 3972, + + /// + /// immune_to_poison + /// + ImmuneToPoison = 3973, + + /// + /// local_flask_additional_physical_damage_reduction_% + /// + LocalFlaskAdditionalPhysicalDamageReductionPct = 3974, + + /// + /// unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill + /// + UniqueSpreadPoisonToNearbyAlliesAs200LifeRegenerationPerSecondOnKill = 3975, + + /// + /// support_pierce_projectile_damage_+%_final + /// + SupportPierceProjectileDamagePctFinal = 3976, + + /// + /// elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element + /// + ElementalistDamageWithAnElementPctFor4SecondsAfterBeingHitByAnElement = 3977, + + /// + /// elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds + /// + ElementalistElementalDamagePctFor4SecondsEvery10Seconds = 3978, + + /// + /// elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill + /// + ElementalistColdPenetrationPctFor4SecondsOnUsingFireSkill = 3979, + + /// + /// elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill + /// + ElementalistLightningPenetrationPctFor4SecondsOnUsingColdSkill = 3980, + + /// + /// elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill + /// + ElementalistFirePenetrationPctFor4SecondsOnUsingLightningSkill = 3981, + + /// + /// elementalist_summon_elemental_golem_on_killing_enemy_with_element_% + /// + ElementalistSummonElementalGolemOnKillingEnemyWithElementPct = 3982, + + /// + /// elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_% + /// + ElementalistAllDamageCausesChillShockAndIgniteFor4SecondsOnKillPct = 3983, + + /// + /// elementalist_elemental_status_effect_aura_radius + /// + ElementalistElementalStatusEffectAuraRadius = 3984, + + /// + /// elementalist_elemental_damage_rotation + /// + ElementalistElementalDamageRotation = 3985, + + /// + /// virtual_elemental_status_effect_aura_radius + /// + VirtualElementalStatusEffectAuraRadius = 3986, + + /// + /// all_damage_can_chill_ignite_shock + /// + AllDamageCanChillIgniteShock = 3987, + + /// + /// is_blighted + /// + IsBlighted = 3988, + + /// + /// virtual_life_leech_permyriad_on_crit + /// + VirtualLifeLeechPermyriadOnCrit = 3989, + + /// + /// occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds + /// + OccultistGainPctOfNonChaosDamageAsChaosDamagePerCurseOnTargetOnKillFor4Seconds = 3990, + + /// + /// occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery + /// + OccultistEnergyShieldAlwaysRecoversFor4SecondsAfterStartingRecovery = 3991, + + /// + /// occultist_stun_threshold_is_based_on_energy_shield_instead_of_life + /// + OccultistStunThresholdIsBasedOnEnergyShieldInsteadOfLife = 3992, + + /// + /// is_counterattack + /// + IsCounterattack = 3993, + + /// + /// knockback_on_counterattack_% + /// + KnockbackOnCounterattackPct = 3994, + + /// + /// local_flask_chilled_ground_on_flask_use_radius + /// + LocalFlaskChilledGroundOnFlaskUseRadius = 3995, + + /// + /// local_flask_duration_+% + /// + LocalFlaskDurationPct = 3996, + + /// + /// max_charged_attack_stacks + /// + MaxChargedAttackStacks = 3997, + + /// + /// current_charged_attack_stacks + /// + CurrentChargedAttackStacks = 3998, + + /// + /// local_display_socketed_curse_gems_supported_by_level_x_blasphemy + /// + LocalDisplaySocketedCurseGemsSupportedByLevelXBlasphemy = 3999, + + /// + /// chill_on_you_proliferates_to_nearby_enemies_within_x_radius + /// + ChillOnYouProliferatesToNearbyEnemiesWithinXRadius = 4000, + + /// + /// freeze_on_you_proliferates_to_nearby_enemies_within_x_radius + /// + FreezeOnYouProliferatesToNearbyEnemiesWithinXRadius = 4001, + + /// + /// animate_weapon_damage_+% + /// + AnimateWeaponDamagePct = 4002, + + /// + /// burning_arrow_damage_+% + /// + BurningArrowDamagePct = 4003, + + /// + /// cleave_damage_+% + /// + CleaveDamagePct = 4004, + + /// + /// double_strike_damage_+% + /// + DoubleStrikeDamagePct = 4005, + + /// + /// dual_strike_damage_+% + /// + DualStrikeDamagePct = 4006, + + /// + /// fire_trap_damage_+% + /// + FireTrapDamagePct = 4007, + + /// + /// fireball_damage_+% + /// + FireballDamagePct = 4008, + + /// + /// freezing_pulse_damage_+% + /// + FreezingPulseDamagePct = 4009, + + /// + /// glacial_hammer_damage_+% + /// + GlacialHammerDamagePct = 4010, + + /// + /// ground_slam_damage_+% + /// + GroundSlamDamagePct = 4011, + + /// + /// heavy_strike_damage_+% + /// + HeavyStrikeDamagePct = 4012, + + /// + /// infernal_blow_damage_+% + /// + InfernalBlowDamagePct = 4013, + + /// + /// lightning_strike_damage_+% + /// + LightningStrikeDamagePct = 4014, + + /// + /// lightning_tendrils_damage_+% + /// + LightningTendrilsDamagePct = 4015, + + /// + /// magma_orb_damage_+% + /// + MagmaOrbDamagePct = 4016, + + /// + /// molten_strike_damage_+% + /// + MoltenStrikeDamagePct = 4017, + + /// + /// zombie_damage_+% + /// + ZombieDamagePct = 4018, + + /// + /// reave_damage_+% + /// + ReaveDamagePct = 4019, + + /// + /// spark_damage_+% + /// + SparkDamagePct = 4020, + + /// + /// spectral_throw_damage_+% + /// + SpectralThrowDamagePct = 4021, + + /// + /// split_arrow_damage_+% + /// + SplitArrowDamagePct = 4022, + + /// + /// ethereal_knives_damage_+% + /// + EtherealKnivesDamagePct = 4023, + + /// + /// ice_shot_damage_+% + /// + IceShotDamagePct = 4024, + + /// + /// rain_of_arrows_damage_+% + /// + RainOfArrowsDamagePct = 4025, + + /// + /// raging_spirit_damage_+% + /// + RagingSpiritDamagePct = 4026, + + /// + /// viper_strike_damage_+% + /// + ViperStrikeDamagePct = 4027, + + /// + /// flicker_strike_damage_+% + /// + FlickerStrikeDamagePct = 4028, + + /// + /// leap_slam_damage_+% + /// + LeapSlamDamagePct = 4029, + + /// + /// lightning_arrow_damage_+% + /// + LightningArrowDamagePct = 4030, + + /// + /// lightning_warp_damage_+% + /// + LightningWarpDamagePct = 4031, + + /// + /// puncture_damage_+% + /// + PunctureDamagePct = 4032, + + /// + /// shield_charge_damage_+% + /// + ShieldChargeDamagePct = 4033, + + /// + /// skeletons_damage_+% + /// + SkeletonsDamagePct = 4034, + + /// + /// arc_damage_+% + /// + ArcDamagePct = 4035, + + /// + /// barrage_damage_+% + /// + BarrageDamagePct = 4036, + + /// + /// fire_nova_mine_damage_+% + /// + FireNovaMineDamagePct = 4037, + + /// + /// fire_storm_damage_+% + /// + FireStormDamagePct = 4038, + + /// + /// flame_surge_damage_+% + /// + FlameSurgeDamagePct = 4039, + + /// + /// ice_nova_damage_+% + /// + IceNovaDamagePct = 4040, + + /// + /// ice_spear_damage_+% + /// + IceSpearDamagePct = 4041, + + /// + /// incinerate_damage_+% + /// + IncinerateDamagePct = 4042, + + /// + /// power_siphon_damage_+% + /// + PowerSiphonDamagePct = 4043, + + /// + /// searing_bond_damage_+% + /// + SearingBondDamagePct = 4044, + + /// + /// static_strike_damage_+% + /// + StaticStrikeDamagePct = 4045, + + /// + /// storm_call_damage_+% + /// + StormCallDamagePct = 4046, + + /// + /// sweep_damage_+% + /// + SweepDamagePct = 4047, + + /// + /// frenzy_damage_+% + /// + FrenzyDamagePct = 4048, + + /// + /// righteous_fire_damage_+% + /// + RighteousFireDamagePct = 4049, + + /// + /// elemental_hit_damage_+% + /// + ElementalHitDamagePct = 4050, + + /// + /// cyclone_damage_+% + /// + CycloneDamagePct = 4051, + + /// + /// tornado_shot_damage_+% + /// + TornadoShotDamagePct = 4052, + + /// + /// arctic_breath_damage_+% + /// + ArcticBreathDamagePct = 4053, + + /// + /// explosive_arrow_damage_+% + /// + ExplosiveArrowDamagePct = 4054, + + /// + /// flameblast_damage_+% + /// + FlameblastDamagePct = 4055, + + /// + /// glacial_cascade_damage_+% + /// + GlacialCascadeDamagePct = 4056, + + /// + /// ice_crash_damage_+% + /// + IceCrashDamagePct = 4057, + + /// + /// kinetic_blast_damage_+% + /// + KineticBlastDamagePct = 4058, + + /// + /// shock_nova_damage_+% + /// + ShockNovaDamagePct = 4059, + + /// + /// shockwave_totem_damage_+% + /// + ShockwaveTotemDamagePct = 4060, + + /// + /// wild_strike_damage_+% + /// + WildStrikeDamagePct = 4061, + + /// + /// detonate_dead_damage_+% + /// + DetonateDeadDamagePct = 4062, + + /// + /// caustic_arrow_damage_+% + /// + CausticArrowDamagePct = 4063, + + /// + /// chaos_golem_damage_+% + /// + ChaosGolemDamagePct = 4064, + + /// + /// flame_golem_damage_+% + /// + FlameGolemDamagePct = 4065, + + /// + /// ice_golem_damage_+% + /// + IceGolemDamagePct = 4066, + + /// + /// cold_snap_damage_+% + /// + ColdSnapDamagePct = 4067, + + /// + /// flame_totem_damage_+% + /// + FlameTotemDamagePct = 4068, + + /// + /// animate_guardian_damage_+% + /// + AnimateGuardianDamagePct = 4069, + + /// + /// bear_trap_damage_+% + /// + BearTrapDamagePct = 4070, + + /// + /// frost_wall_damage_+% + /// + FrostWallDamagePct = 4071, + + /// + /// molten_shell_damage_+% + /// + MoltenShellDamagePct = 4072, + + /// + /// reckoning_damage_+% + /// + ReckoningDamagePct = 4073, + + /// + /// vigilant_strike_damage_+% + /// + VigilantStrikeDamagePct = 4074, + + /// + /// whirling_blades_damage_+% + /// + WhirlingBladesDamagePct = 4075, + + /// + /// flame_dash_damage_+% + /// + FlameDashDamagePct = 4076, + + /// + /// freeze_mine_damage_+% + /// + FreezeMineDamagePct = 4077, + + /// + /// herald_of_ash_damage_+% + /// + HeraldOfAshDamagePct = 4078, + + /// + /// herald_of_ice_damage_+% + /// + HeraldOfIceDamagePct = 4079, + + /// + /// herald_of_thunder_damage_+% + /// + HeraldOfThunderDamagePct = 4080, + + /// + /// tempest_shield_damage_+% + /// + TempestShieldDamagePct = 4081, + + /// + /// desecrate_damage_+% + /// + DesecrateDamagePct = 4082, + + /// + /// blink_arrow_and_blink_arrow_clone_damage_+% + /// + BlinkArrowAndBlinkArrowCloneDamagePct = 4083, + + /// + /// mirror_arrow_and_mirror_arrow_clone_damage_+% + /// + MirrorArrowAndMirrorArrowCloneDamagePct = 4084, + + /// + /// riposte_damage_+% + /// + RiposteDamagePct = 4085, + + /// + /// vengeance_damage_+% + /// + VengeanceDamagePct = 4086, + + /// + /// converted_enemies_damage_+% + /// + ConvertedEnemiesDamagePct = 4087, + + /// + /// abyssal_cry_damage_+% + /// + AbyssalCryDamagePct = 4088, + + /// + /// shrapnel_shot_damage_+% + /// + ShrapnelShotDamagePct = 4089, + + /// + /// blast_rain_damage_+% + /// + BlastRainDamagePct = 4090, + + /// + /// essence_drain_damage_+% + /// + EssenceDrainDamagePct = 4091, + + /// + /// contagion_damage_+% + /// + ContagionDamagePct = 4092, + + /// + /// blade_vortex_damage_+% + /// + BladeVortexDamagePct = 4093, + + /// + /// bladefall_damage_+% + /// + BladefallDamagePct = 4094, + + /// + /// ice_trap_damage_+% + /// + IceTrapDamagePct = 4095, + + /// + /// earthquake_damage_+% + /// + EarthquakeDamagePct = 4096, + + /// + /// stone_golem_damage_+% + /// + StoneGolemDamagePct = 4097, + + /// + /// frost_bomb_damage_+% + /// + FrostBombDamagePct = 4098, + + /// + /// orb_of_storms_damage_+% + /// + OrbOfStormsDamagePct = 4099, + + /// + /// siege_ballista_damage_+% + /// + SiegeBallistaDamagePct = 4100, + + /// + /// blight_damage_+% + /// + BlightDamagePct = 4101, + + /// + /// shockwave_slam_damage_+% + /// + ShockwaveSlamDamagePct = 4102, + + /// + /// fire_beam_damage_+% + /// + FireBeamDamagePct = 4103, + + /// + /// life_regeneration_per_minute_%_while_frozen + /// + LifeRegenerationPerMinutePctWhileFrozen = 4104, + + /// + /// occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds + /// + OccultistStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 4105, + + /// + /// occultist_immune_to_stun_while_has_energy_shield + /// + OccultistImmuneToStunWhileHasEnergyShield = 4106, + + /// + /// totem_damage_+%_final_per_active_totem + /// + TotemDamagePctFinalPerActiveTotem = 4107, + + /// + /// totem_damage_+%_final + /// + TotemDamagePctFinal = 4108, + + /// + /// cannot_be_affected_by_flasks + /// + CannotBeAffectedByFlasks = 4109, + + /// + /// flasks_apply_to_your_zombies_and_spectres + /// + FlasksApplyToYourZombiesAndSpectres = 4110, + + /// + /// modifiers_to_minion_damage_also_affect_you + /// + ModifiersToMinionDamageAlsoAffectYou = 4111, + + /// + /// additive_modifiers_to_minion_attack_speed_also_affect_you + /// + AdditiveModifiersToMinionAttackSpeedAlsoAffectYou = 4112, + + /// + /// modifiers_to_minion_cast_speed_also_affect_you + /// + ModifiersToMinionCastSpeedAlsoAffectYou = 4113, + + /// + /// modifiers_to_minion_life_regeneration_also_affect_you + /// + ModifiersToMinionLifeRegenerationAlsoAffectYou = 4114, + + /// + /// modifiers_to_minion_movement_speed_also_affect_you + /// + ModifiersToMinionMovementSpeedAlsoAffectYou = 4115, + + /// + /// modifiers_to_minion_resistances_also_affect_you + /// + ModifiersToMinionResistancesAlsoAffectYou = 4116, + + /// + /// cast_on_gain_skill + /// + CastOnGainSkill = 4117, + + /// + /// base_lightning_damage_taken_per_second + /// + BaseLightningDamageTakenPerSecond = 4118, + + /// + /// Super Endurance Charges + /// + CurrentIzaroCharges = 4119, + + /// + /// attack_speed_+%_per_izaro_charge + /// + AttackSpeedPctPerIzaroCharge = 4120, + + /// + /// cast_speed_+%_per_izaro_charge + /// + CastSpeedPctPerIzaroCharge = 4121, + + /// + /// damage_+%_per_izaro_charge_final + /// + DamagePctPerIzaroChargeFinal = 4122, + + /// + /// physical_damage_reduction_%_per_izaro_charge + /// + PhysicalDamageReductionPctPerIzaroCharge = 4123, + + /// + /// resist_all_elements_%_per_izaro_charge + /// + ResistAllElementsPctPerIzaroCharge = 4124, + + /// + /// critical_strike_chance_+%_per_izaro_charge + /// + CriticalStrikeChancePctPerIzaroCharge = 4125, + + /// + /// shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range + /// + ShieldChargeScalingStunThresholdReductionPctAtMaximumRange = 4126, + + /// + /// map_spawn_perandus_chests + /// + MapSpawnPerandusChests = 4127, + + /// + /// set_user_life_to_1_on_skill_use + /// + SetUserLifeTo1OnSkillUse = 4128, + + /// + /// grant_izaro_buff_on_skill_use + /// + GrantIzaroBuffOnSkillUse = 4129, + + /// + /// local_double_damage_to_chilled_enemies + /// + LocalDoubleDamageToChilledEnemies = 4130, + + /// + /// main_hand_double_damage_to_chilled_enemies + /// + MainHandDoubleDamageToChilledEnemies = 4131, + + /// + /// off_hand_double_damage_to_chilled_enemies + /// + OffHandDoubleDamageToChilledEnemies = 4132, + + /// + /// global_number_of_times_damage_is_doubled + /// + GlobalNumberOfTimesDamageIsDoubled = 4133, + + /// + /// main_hand_number_of_times_damage_is_doubled + /// + MainHandNumberOfTimesDamageIsDoubled = 4134, + + /// + /// off_hand_number_of_times_damage_is_doubled + /// + OffHandNumberOfTimesDamageIsDoubled = 4135, + + /// + /// base_main_hand_number_of_times_damage_is_doubled + /// + BaseMainHandNumberOfTimesDamageIsDoubled = 4136, + + /// + /// base_off_hand_number_of_times_damage_is_doubled + /// + BaseOffHandNumberOfTimesDamageIsDoubled = 4137, + + /// + /// local_elemental_penetration_% + /// + LocalElementalPenetrationPct = 4138, + + /// + /// main_hand_elemental_penetration_% + /// + MainHandElementalPenetrationPct = 4139, + + /// + /// off_hand_elemental_penetration_% + /// + OffHandElementalPenetrationPct = 4140, + + /// + /// damage_while_no_frenzy_charges_+% + /// + DamageWhileNoFrenzyChargesPct = 4141, + + /// + /// local_flask_ghost_reaver + /// + LocalFlaskGhostReaver = 4142, + + /// + /// local_flask_zealots_oath + /// + LocalFlaskZealotsOath = 4143, + + /// + /// critical_strike_chance_against_enemies_on_full_life_+% + /// + CriticalStrikeChanceAgainstEnemiesOnFullLifePct = 4144, + + /// + /// spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed + /// + SpiritOfferingLifePctAddedAsBaseMaximumEnergyShieldPerCorpseConsumed = 4145, + + /// + /// minions_deal_%_of_physical_damage_as_additional_chaos_damage + /// + MinionsDealPctOfPhysicalDamageAsAdditionalChaosDamage = 4146, + + /// + /// attack_critical_strike_damage_life_leech_permyriad + /// + AttackCriticalStrikeDamageLifeLeechPermyriad = 4147, + + /// + /// minion_attack_minimum_added_physical_damage + /// + MinionAttackMinimumAddedPhysicalDamage = 4148, + + /// + /// minion_attack_maximum_added_physical_damage + /// + MinionAttackMaximumAddedPhysicalDamage = 4149, + + /// + /// attack_physical_damage_%_to_add_as_lightning + /// + AttackPhysicalDamagePctToAddAsLightning = 4150, + + /// + /// attack_physical_damage_%_to_add_as_fire + /// + AttackPhysicalDamagePctToAddAsFire = 4151, + + /// + /// maximum_energy_shield_+_per_5_strength + /// + MaximumEnergyShieldPer5Strength = 4152, + + /// + /// attack_always_crit + /// + AttackAlwaysCrit = 4153, + + /// + /// totem_aura_enemy_damage_+%_final + /// + TotemAuraEnemyDamagePctFinal = 4154, + + /// + /// totem_aura_enemy_fire_and_physical_damage_taken_+% + /// + TotemAuraEnemyFireAndPhysicalDamageTakenPct = 4155, + + /// + /// local_varunastra_weapon_counts_as_all_1h_melee_weapon_types + /// + LocalVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4156, + + /// + /// main_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types + /// + MainHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4157, + + /// + /// off_hand_varunastra_weapon_counts_as_all_1h_melee_weapon_types + /// + OffHandVarunastraWeaponCountsAsAll1HMeleeWeaponTypes = 4158, + + /// + /// guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+% + /// + GuardianWarcryGrantAttackCastAndMovementSpeedToYouAndNearbyAlliesPct = 4159, + + /// + /// guardian_auras_grant_life_regeneration_per_minute_% + /// + GuardianAurasGrantLifeRegenerationPerMinutePct = 4160, + + /// + /// guardian_nearby_enemies_cannot_gain_charges + /// + GuardianNearbyEnemiesCannotGainCharges = 4161, + + /// + /// guardian_reserved_life_granted_to_you_and_allies_as_armour_% + /// + GuardianReservedLifeGrantedToYouAndAlliesAsArmourPct = 4162, + + /// + /// guardian_remove_curses_and_status_ailments_every_10_seconds + /// + GuardianRemoveCursesAndStatusAilmentsEvery10Seconds = 4163, + + /// + /// guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds + /// + GuardianGainLifeRegenerationPerMinutePctFor1SecondEvery10Seconds = 4164, + + /// + /// life_reserved + /// + LifeReserved = 4165, + + /// + /// cannot_gain_charges + /// + CannotGainCharges = 4166, + + /// + /// max_izaro_charges + /// + MaxIzaroCharges = 4167, + + /// + /// local_display_socketed_gems_supported_by_level_x_fortify + /// + LocalDisplaySocketedGemsSupportedByLevelXFortify = 4168, + + /// + /// base_fire_immunity + /// + BaseFireImmunity = 4169, + + /// + /// totem_fire_immunity + /// + TotemFireImmunity = 4170, + + /// + /// base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit + /// + BasePctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4171, + + /// + /// totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit + /// + TotemPctMaximumLifeInflictedAsAoeFireDamageWhenHit = 4172, + + /// + /// active_skill_attack_speed_+%_final_per_frenzy_charge + /// + ActiveSkillAttackSpeedPctFinalPerFrenzyCharge = 4173, + + /// + /// trap_damage_buildup_damage_+%_final + /// + TrapDamageBuildupDamagePctFinal = 4174, + + /// + /// trap_damage_buildup_damage_+%_final_when_first_set + /// + TrapDamageBuildupDamagePctFinalWhenFirstSet = 4175, + + /// + /// trap_damage_buildup_damage_+%_final_after_4_seconds + /// + TrapDamageBuildupDamagePctFinalAfter4Seconds = 4176, + + /// + /// local_display_grants_level_x_summon_stone_golem + /// + LocalDisplayGrantsLevelXSummonStoneGolem = 4177, + + /// + /// global_total_minimum_added_physical_damage + /// + GlobalTotalMinimumAddedPhysicalDamage = 4178, + + /// + /// global_total_maximum_added_physical_damage + /// + GlobalTotalMaximumAddedPhysicalDamage = 4179, + + /// + /// local_flask_immune_to_damage + /// + LocalFlaskImmuneToDamage = 4180, + + /// + /// local_weapon_always_crit + /// + LocalWeaponAlwaysCrit = 4181, + + /// + /// main_hand_weapon_always_crit + /// + MainHandWeaponAlwaysCrit = 4182, + + /// + /// off_hand_weapon_always_crit + /// + OffHandWeaponAlwaysCrit = 4183, + + /// + /// trap_and_mine_minimum_added_physical_damage + /// + TrapAndMineMinimumAddedPhysicalDamage = 4184, + + /// + /// trap_and_mine_maximum_added_physical_damage + /// + TrapAndMineMaximumAddedPhysicalDamage = 4185, + + /// + /// trap_%_chance_to_trigger_twice + /// + TrapPctChanceToTriggerTwice = 4186, + + /// + /// trap_has_triggered + /// + TrapHasTriggered = 4187, + + /// + /// physical_damage_over_time_per_10_dexterity_+% + /// + PhysicalDamageOverTimePer10DexterityPct = 4188, + + /// + /// bleed_duration_per_12_intelligence_+% + /// + BleedDurationPer12IntelligencePct = 4189, + + /// + /// %_chance_to_cause_bleeding_enemies_to_flee_on_hit + /// + PctChanceToCauseBleedingEnemiesToFleeOnHit = 4190, + + /// + /// labyrinth_trinket_permanently_disable_statue_healing + /// + LabyrinthTrinketPermanentlyDisableStatueHealing = 4191, + + /// + /// labyrinth_trinket_instantly_kill_next_pedestal + /// + LabyrinthTrinketInstantlyKillNextPedestal = 4192, + + /// + /// labyrinth_trinket_instantly_kill_next_portal + /// + LabyrinthTrinketInstantlyKillNextPortal = 4193, + + /// + /// number_of_perandus_coin_stacks_to_drop + /// + NumberOfPerandusCoinStacksToDrop = 4194, + + /// + /// melee_ancestor_totem_grant_owner_attack_speed_+%_final + /// + MeleeAncestorTotemGrantOwnerAttackSpeedPctFinal = 4195, + + /// + /// gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius + /// + GainCannotBeStunnedAuraFor4SecondsOnBlockRadius = 4196, + + /// + /// cleave_radius_+% + /// + CleaveRadiusPct = 4197, + + /// + /// ground_slam_radius_+% + /// + GroundSlamRadiusPct = 4198, + + /// + /// infernal_blow_radius_+% + /// + InfernalBlowRadiusPct = 4199, + + /// + /// lightning_tendrils_radius_+% + /// + LightningTendrilsRadiusPct = 4200, + + /// + /// magma_orb_radius_+% + /// + MagmaOrbRadiusPct = 4201, + + /// + /// reave_radius_+% + /// + ReaveRadiusPct = 4202, + + /// + /// molten_strike_radius_+% + /// + MoltenStrikeRadiusPct = 4203, + + /// + /// ice_shot_radius_+% + /// + IceShotRadiusPct = 4204, + + /// + /// rain_of_arrows_radius_+% + /// + RainOfArrowsRadiusPct = 4205, + + /// + /// leap_slam_radius_+% + /// + LeapSlamRadiusPct = 4206, + + /// + /// lightning_arrow_radius_+% + /// + LightningArrowRadiusPct = 4207, + + /// + /// ice_nova_radius_+% + /// + IceNovaRadiusPct = 4208, + + /// + /// static_strike_radius_+% + /// + StaticStrikeRadiusPct = 4209, + + /// + /// storm_call_radius_+% + /// + StormCallRadiusPct = 4210, + + /// + /// sweep_radius_+% + /// + SweepRadiusPct = 4211, + + /// + /// righteous_fire_radius_+% + /// + RighteousFireRadiusPct = 4212, + + /// + /// arctic_breath_radius_+% + /// + ArcticBreathRadiusPct = 4213, + + /// + /// ball_lightning_radius_+% + /// + BallLightningRadiusPct = 4214, + + /// + /// explosive_arrow_radius_+% + /// + ExplosiveArrowRadiusPct = 4215, + + /// + /// flameblast_radius_+% + /// + FlameblastRadiusPct = 4216, + + /// + /// glacial_cascade_radius_+% + /// + GlacialCascadeRadiusPct = 4217, + + /// + /// wild_strike_radius_+% + /// + WildStrikeRadiusPct = 4218, + + /// + /// detonate_dead_radius_+% + /// + DetonateDeadRadiusPct = 4219, + + /// + /// ice_crash_radius_+% + /// + IceCrashRadiusPct = 4220, + + /// + /// kinetic_blast_radius_+% + /// + KineticBlastRadiusPct = 4221, + + /// + /// caustic_arrow_radius_+% + /// + CausticArrowRadiusPct = 4222, + + /// + /// cold_snap_radius_+% + /// + ColdSnapRadiusPct = 4223, + + /// + /// decoy_totem_radius_+% + /// + DecoyTotemRadiusPct = 4224, + + /// + /// shock_nova_radius_+% + /// + ShockNovaRadiusPct = 4225, + + /// + /// shockwave_totem_radius_+% + /// + ShockwaveTotemRadiusPct = 4226, + + /// + /// cleave_attack_speed_+% + /// + CleaveAttackSpeedPct = 4227, + + /// + /// double_strike_attack_speed_+% + /// + DoubleStrikeAttackSpeedPct = 4228, + + /// + /// dual_strike_attack_speed_+% + /// + DualStrikeAttackSpeedPct = 4229, + + /// + /// heavy_strike_attack_speed_+% + /// + HeavyStrikeAttackSpeedPct = 4230, + + /// + /// zombie_attack_speed_+% + /// + ZombieAttackSpeedPct = 4231, + + /// + /// rain_of_arrows_attack_speed_+% + /// + RainOfArrowsAttackSpeedPct = 4232, + + /// + /// leap_slam_attack_speed_+% + /// + LeapSlamAttackSpeedPct = 4233, + + /// + /// shield_charge_attack_speed_+% + /// + ShieldChargeAttackSpeedPct = 4234, + + /// + /// barrage_attack_speed_+% + /// + BarrageAttackSpeedPct = 4235, + + /// + /// elemental_hit_attack_speed_+% + /// + ElementalHitAttackSpeedPct = 4236, + + /// + /// cyclone_attack_speed_+% + /// + CycloneAttackSpeedPct = 4237, + + /// + /// power_siphon_attack_speed_+% + /// + PowerSiphonAttackSpeedPct = 4238, + + /// + /// spectre_attack_and_cast_speed_+% + /// + SpectreAttackAndCastSpeedPct = 4239, + + /// + /// freezing_pulse_cast_speed_+% + /// + FreezingPulseCastSpeedPct = 4240, + + /// + /// fireball_cast_speed_+% + /// + FireballCastSpeedPct = 4241, + + /// + /// fire_nova_mine_cast_speed_+% + /// + FireNovaMineCastSpeedPct = 4242, + + /// + /// lightning_warp_cast_speed_+% + /// + LightningWarpCastSpeedPct = 4243, + + /// + /// fire_trap_cooldown_speed_+% + /// + FireTrapCooldownSpeedPct = 4244, + + /// + /// flicker_strike_cooldown_speed_+% + /// + FlickerStrikeCooldownSpeedPct = 4245, + + /// + /// cold_snap_cooldown_speed_+% + /// + ColdSnapCooldownSpeedPct = 4246, + + /// + /// ball_lightning_projectile_speed_+% + /// + BallLightningProjectileSpeedPct = 4247, + + /// + /// freezing_pulse_projectile_speed_+% + /// + FreezingPulseProjectileSpeedPct = 4248, + + /// + /// spark_projectile_speed_+% + /// + SparkProjectileSpeedPct = 4249, + + /// + /// spectral_throw_projectile_speed_+% + /// + SpectralThrowProjectileSpeedPct = 4250, + + /// + /// ethereal_knives_projectile_speed_+% + /// + EtherealKnivesProjectileSpeedPct = 4251, + + /// + /// flame_totem_projectile_speed_+% + /// + FlameTotemProjectileSpeedPct = 4252, + + /// + /// incinerate_projectile_speed_+% + /// + IncinerateProjectileSpeedPct = 4253, + + /// + /// dominating_blow_duration_+% + /// + DominatingBlowDurationPct = 4254, + + /// + /// puncture_duration_+% + /// + PunctureDurationPct = 4255, + + /// + /// viper_strike_poison_duration_+% + /// + ViperStrikePoisonDurationPct = 4256, + + /// + /// firestorm_duration_+% + /// + FirestormDurationPct = 4257, + + /// + /// static_strike_duration_+% + /// + StaticStrikeDurationPct = 4258, + + /// + /// storm_call_duration_+% + /// + StormCallDurationPct = 4259, + + /// + /// arctic_breath_duration_+% + /// + ArcticBreathDurationPct = 4260, + + /// + /// lightning_warp_duration_+% + /// + LightningWarpDurationPct = 4261, + + /// + /// ice_shot_duration_+% + /// + IceShotDurationPct = 4262, + + /// + /// caustic_arrow_duration_+% + /// + CausticArrowDurationPct = 4263, + + /// + /// double_strike_critical_strike_chance_+% + /// + DoubleStrikeCriticalStrikeChancePct = 4264, + + /// + /// dual_strike_critical_strike_chance_+% + /// + DualStrikeCriticalStrikeChancePct = 4265, + + /// + /// split_arrow_critical_strike_chance_+% + /// + SplitArrowCriticalStrikeChancePct = 4266, + + /// + /// viper_strike_critical_strike_chance_+% + /// + ViperStrikeCriticalStrikeChancePct = 4267, + + /// + /// flameblast_critical_strike_chance_+% + /// + FlameblastCriticalStrikeChancePct = 4268, + + /// + /// flame_surge_critical_strike_chance_+% + /// + FlameSurgeCriticalStrikeChancePct = 4269, + + /// + /// tornado_shot_critical_strike_chance_+% + /// + TornadoShotCriticalStrikeChancePct = 4270, + + /// + /// lightning_strike_num_of_additional_projectiles + /// + LightningStrikeNumOfAdditionalProjectiles = 4271, + + /// + /// molten_strike_num_of_additional_projectiles + /// + MoltenStrikeNumOfAdditionalProjectiles = 4272, + + /// + /// spark_num_of_additional_projectiles + /// + SparkNumOfAdditionalProjectiles = 4273, + + /// + /// split_arrow_num_of_additional_projectiles + /// + SplitArrowNumOfAdditionalProjectiles = 4274, + + /// + /// barrage_num_of_additional_projectiles + /// + BarrageNumOfAdditionalProjectiles = 4275, + + /// + /// tornado_shot_num_of_secondary_projectiles + /// + TornadoShotNumOfSecondaryProjectiles = 4276, + + /// + /// magma_orb_num_of_additional_projectiles_in_chain + /// + MagmaOrbNumOfAdditionalProjectilesInChain = 4277, + + /// + /// arc_num_of_additional_projectiles_in_chain + /// + ArcNumOfAdditionalProjectilesInChain = 4278, + + /// + /// flame_totem_num_of_additional_projectiles + /// + FlameTotemNumOfAdditionalProjectiles = 4279, + + /// + /// burning_arrow_ignite_chance_% + /// + BurningArrowIgniteChancePct = 4280, + + /// + /// burning_arrow_physical_damage_%_to_add_as_fire_damage + /// + BurningArrowPhysicalDamagePctToAddAsFireDamage = 4281, + + /// + /// infernal_blow_physical_damage_%_to_add_as_fire_damage + /// + InfernalBlowPhysicalDamagePctToAddAsFireDamage = 4282, + + /// + /// fire_trap_burning_damage_+% + /// + FireTrapBurningDamagePct = 4283, + + /// + /// fireball_ignite_chance_% + /// + FireballIgniteChancePct = 4284, + + /// + /// glacial_hammer_freeze_chance_% + /// + GlacialHammerFreezeChancePct = 4285, + + /// + /// ice_nova_freeze_chance_% + /// + IceNovaFreezeChancePct = 4286, + + /// + /// reave_attack_speed_per_reave_stack_+% + /// + ReaveAttackSpeedPerReaveStackPct = 4287, + + /// + /// spectral_throw_projectile_deceleration_+% + /// + SpectralThrowProjectileDecelerationPct = 4288, + + /// + /// flicker_strike_damage_+%_per_frenzy_charge + /// + FlickerStrikeDamagePctPerFrenzyCharge = 4289, + + /// + /// puncture_maim_on_hit_%_chance + /// + PunctureMaimOnHitPctChance = 4290, + + /// + /// arc_shock_chance_% + /// + ArcShockChancePct = 4291, + + /// + /// fire_nova_mine_num_of_additional_repeats + /// + FireNovaMineNumOfAdditionalRepeats = 4292, + + /// + /// firestorm_explosion_area_of_effect_+% + /// + FirestormExplosionAreaOfEffectPct = 4293, + + /// + /// flame_surge_damage_+%_vs_burning_enemies + /// + FlameSurgeDamagePctVsBurningEnemies = 4294, + + /// + /// ice_spear_%_chance_to_gain_power_charge_on_critical_strike + /// + IceSpearPctChanceToGainPowerChargeOnCriticalStrike = 4295, + + /// + /// power_siphon_%_chance_to_gain_power_charge_on_kill + /// + PowerSiphonPctChanceToGainPowerChargeOnKill = 4296, + + /// + /// searing_bond_totem_placement_speed_+% + /// + SearingBondTotemPlacementSpeedPct = 4297, + + /// + /// sweep_knockback_chance_% + /// + SweepKnockbackChancePct = 4298, + + /// + /// frenzy_damage_+%_per_frenzy_charge + /// + FrenzyDamagePctPerFrenzyCharge = 4299, + + /// + /// frenzy_%_chance_to_gain_additional_frenzy_charge + /// + FrenzyPctChanceToGainAdditionalFrenzyCharge = 4300, + + /// + /// elemental_hit_chance_to_freeze_shock_ignite_% + /// + ElementalHitChanceToFreezeShockIgnitePct = 4301, + + /// + /// glacial_cascade_physical_damage_%_to_convert_to_cold + /// + GlacialCascadePhysicalDamagePctToConvertToCold = 4302, + + /// + /// glacial_hammer_physical_damage_%_to_add_as_cold_damage + /// + GlacialHammerPhysicalDamagePctToAddAsColdDamage = 4303, + + /// + /// ice_crash_physical_damage_%_to_add_as_cold_damage + /// + IceCrashPhysicalDamagePctToAddAsColdDamage = 4304, + + /// + /// spectre_elemental_resistances_% + /// + SpectreElementalResistancesPct = 4305, + + /// + /// zombie_elemental_resistances_% + /// + ZombieElementalResistancesPct = 4306, + + /// + /// flame_golem_elemental_resistances_% + /// + FlameGolemElementalResistancesPct = 4307, + + /// + /// chaos_golem_elemental_resistances_% + /// + ChaosGolemElementalResistancesPct = 4308, + + /// + /// ice_golem_elemental_resistances_% + /// + IceGolemElementalResistancesPct = 4309, + + /// + /// shock_nova_ring_damage_+% + /// + ShockNovaRingDamagePct = 4310, + + /// + /// detonate_dead_%_chance_to_detonate_additional_corpse + /// + DetonateDeadPctChanceToDetonateAdditionalCorpse = 4311, + + /// + /// animate_weapon_chance_to_create_additional_copy_% + /// + AnimateWeaponChanceToCreateAdditionalCopyPct = 4312, + + /// + /// decoy_totem_life_+% + /// + DecoyTotemLifePct = 4313, + + /// + /// devouring_totem_leech_per_second_+% + /// + DevouringTotemLeechPerSecondPct = 4314, + + /// + /// rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration + /// + RejuvenationTotemPctLifeRegenerationAddedAsManaRegeneration = 4315, + + /// + /// rejuvenation_totem_aura_effect_+% + /// + RejuvenationTotemAuraEffectPct = 4316, + + /// + /// summon_skeletons_num_additional_warrior_skeletons + /// + SummonSkeletonsNumAdditionalWarriorSkeletons = 4317, + + /// + /// wild_strike_num_of_additional_projectiles_in_chain + /// + WildStrikeNumOfAdditionalProjectilesInChain = 4318, + + /// + /// shockwave_totem_cast_speed_+% + /// + ShockwaveTotemCastSpeedPct = 4319, + + /// + /// devouring_totem_%_chance_to_consume_additional_corpse + /// + DevouringTotemPctChanceToConsumeAdditionalCorpse = 4320, + + /// + /// incinerate_damage_+%_per_stage + /// + IncinerateDamagePctPerStage = 4321, + + /// + /// siege_ballista_totem_placement_speed_+% + /// + SiegeBallistaTotemPlacementSpeedPct = 4322, + + /// + /// virtual_curse_effect_+% + /// + VirtualCurseEffectPct = 4323, + + /// + /// poachers_mark_curse_effect_+% + /// + PoachersMarkCurseEffectPct = 4324, + + /// + /// projectile_weakness_curse_effect_+% + /// + ProjectileWeaknessCurseEffectPct = 4325, + + /// + /// temporal_chains_curse_effect_+% + /// + TemporalChainsCurseEffectPct = 4326, + + /// + /// assassins_mark_curse_effect_+% + /// + AssassinsMarkCurseEffectPct = 4327, + + /// + /// conductivity_curse_effect_+% + /// + ConductivityCurseEffectPct = 4328, + + /// + /// elemental_weakness_curse_effect_+% + /// + ElementalWeaknessCurseEffectPct = 4329, + + /// + /// enfeeble_curse_effect_+% + /// + EnfeebleCurseEffectPct = 4330, + + /// + /// flammability_curse_effect_+% + /// + FlammabilityCurseEffectPct = 4331, + + /// + /// frostbite_curse_effect_+% + /// + FrostbiteCurseEffectPct = 4332, + + /// + /// punishment_curse_effect_+% + /// + PunishmentCurseEffectPct = 4333, + + /// + /// vulnerability_curse_effect_+% + /// + VulnerabilityCurseEffectPct = 4334, + + /// + /// warlords_mark_curse_effect_+% + /// + WarlordsMarkCurseEffectPct = 4335, + + /// + /// lightning_golem_grants_attack_and_cast_speed_+% + /// + LightningGolemGrantsAttackAndCastSpeedPct = 4336, + + /// + /// lightning_golem_grants_added_lightning_damage + /// + LightningGolemGrantsAddedLightningDamage = 4337, + + /// + /// arctic_armour_mana_reservation_+% + /// + ArcticArmourManaReservationPct = 4338, + + /// + /// herald_of_ash_mana_reservation_+% + /// + HeraldOfAshManaReservationPct = 4339, + + /// + /// herald_of_ice_mana_reservation_+% + /// + HeraldOfIceManaReservationPct = 4340, + + /// + /// herald_of_thunder_mana_reservation_+% + /// + HeraldOfThunderManaReservationPct = 4341, + + /// + /// clarity_mana_reservation_+% + /// + ClarityManaReservationPct = 4342, + + /// + /// hatred_mana_reservation_+% + /// + HatredManaReservationPct = 4343, + + /// + /// purity_of_ice_mana_reservation_+% + /// + PurityOfIceManaReservationPct = 4344, + + /// + /// determination_mana_reservation_+% + /// + DeterminationManaReservationPct = 4345, + + /// + /// discipline_mana_reservation_+% + /// + DisciplineManaReservationPct = 4346, + + /// + /// purity_of_elements_mana_reservation_+% + /// + PurityOfElementsManaReservationPct = 4347, + + /// + /// purity_of_fire_mana_reservation_+% + /// + PurityOfFireManaReservationPct = 4348, + + /// + /// purity_of_lightning_mana_reservation_+% + /// + PurityOfLightningManaReservationPct = 4349, + + /// + /// vitality_mana_reservation_+% + /// + VitalityManaReservationPct = 4350, + + /// + /// wrath_mana_reservation_+% + /// + WrathManaReservationPct = 4351, + + /// + /// grace_mana_reservation_+% + /// + GraceManaReservationPct = 4352, + + /// + /// haste_mana_reservation_+% + /// + HasteManaReservationPct = 4353, + + /// + /// immortal_call_duration_+% + /// + ImmortalCallDurationPct = 4354, + + /// + /// bone_offering_duration_+% + /// + BoneOfferingDurationPct = 4355, + + /// + /// flesh_offering_duration_+% + /// + FleshOfferingDurationPct = 4356, + + /// + /// smoke_mine_duration_+% + /// + SmokeMineDurationPct = 4357, + + /// + /// frost_wall_duration_+% + /// + FrostWallDurationPct = 4358, + + /// + /// vigilant_strike_fortify_duration_+% + /// + VigilantStrikeFortifyDurationPct = 4359, + + /// + /// poachers_mark_duration_+% + /// + PoachersMarkDurationPct = 4360, + + /// + /// projectile_weakness_duration_+% + /// + ProjectileWeaknessDurationPct = 4361, + + /// + /// temporal_chains_duration_+% + /// + TemporalChainsDurationPct = 4362, + + /// + /// warlords_mark_duration_+% + /// + WarlordsMarkDurationPct = 4363, + + /// + /// vulnerability_duration_+% + /// + VulnerabilityDurationPct = 4364, + + /// + /// punishment_duration_+% + /// + PunishmentDurationPct = 4365, + + /// + /// frostbite_duration_+% + /// + FrostbiteDurationPct = 4366, + + /// + /// flammability_duration_+% + /// + FlammabilityDurationPct = 4367, + + /// + /// enfeeble_duration_+% + /// + EnfeebleDurationPct = 4368, + + /// + /// elemental_weakness_duration_+% + /// + ElementalWeaknessDurationPct = 4369, + + /// + /// conductivity_duration_+% + /// + ConductivityDurationPct = 4370, + + /// + /// assassins_mark_duration_+% + /// + AssassinsMarkDurationPct = 4371, + + /// + /// rallying_cry_duration_+% + /// + RallyingCryDurationPct = 4372, + + /// + /// abyssal_cry_duration_+% + /// + AbyssalCryDurationPct = 4373, + + /// + /// contagion_duration_+% + /// + ContagionDurationPct = 4374, + + /// + /// siphon_duration_+% + /// + SiphonDurationPct = 4375, + + /// + /// wither_duration_+% + /// + WitherDurationPct = 4376, + + /// + /// blade_vortex_duration_+% + /// + BladeVortexDurationPct = 4377, + + /// + /// earthquake_duration_+% + /// + EarthquakeDurationPct = 4378, + + /// + /// blight_duration_+% + /// + BlightDurationPct = 4379, + + /// + /// blight_secondary_skill_effect_duration_+% + /// + BlightSecondarySkillEffectDurationPct = 4380, + + /// + /// convocation_cooldown_speed_+% + /// + ConvocationCooldownSpeedPct = 4381, + + /// + /// bear_trap_cooldown_speed_+% + /// + BearTrapCooldownSpeedPct = 4382, + + /// + /// frost_wall_cooldown_speed_+% + /// + FrostWallCooldownSpeedPct = 4383, + + /// + /// reckoning_cooldown_speed_+% + /// + ReckoningCooldownSpeedPct = 4384, + + /// + /// flame_dash_cooldown_speed_+% + /// + FlameDashCooldownSpeedPct = 4385, + + /// + /// desecrate_cooldown_speed_+% + /// + DesecrateCooldownSpeedPct = 4386, + + /// + /// blink_arrow_cooldown_speed_+% + /// + BlinkArrowCooldownSpeedPct = 4387, + + /// + /// mirror_arrow_cooldown_speed_+% + /// + MirrorArrowCooldownSpeedPct = 4388, + + /// + /// riposte_cooldown_speed_+% + /// + RiposteCooldownSpeedPct = 4389, + + /// + /// vengeance_cooldown_speed_+% + /// + VengeanceCooldownSpeedPct = 4390, + + /// + /// enduring_cry_cooldown_speed_+% + /// + EnduringCryCooldownSpeedPct = 4391, + + /// + /// frost_bomb_cooldown_speed_+% + /// + FrostBombCooldownSpeedPct = 4392, + + /// + /// conversion_trap_cooldown_speed_+% + /// + ConversionTrapCooldownSpeedPct = 4393, + + /// + /// ice_trap_cooldown_speed_+% + /// + IceTrapCooldownSpeedPct = 4394, + + /// + /// siege_ballista_attack_speed_+% + /// + SiegeBallistaAttackSpeedPct = 4395, + + /// + /// shockwave_slam_attack_speed_+% + /// + ShockwaveSlamAttackSpeedPct = 4396, + + /// + /// mirror_arrow_and_mirror_arrow_clone_attack_speed_+% + /// + MirrorArrowAndMirrorArrowCloneAttackSpeedPct = 4397, + + /// + /// freeze_mine_radius_+% + /// + FreezeMineRadiusPct = 4398, + + /// + /// shrapnel_shot_radius_+% + /// + ShrapnelShotRadiusPct = 4399, + + /// + /// blast_rain_radius_+% + /// + BlastRainRadiusPct = 4400, + + /// + /// contagion_radius_+% + /// + ContagionRadiusPct = 4401, + + /// + /// wither_radius_+% + /// + WitherRadiusPct = 4402, + + /// + /// blade_vortex_radius_+% + /// + BladeVortexRadiusPct = 4403, + + /// + /// bladefall_radius_+% + /// + BladefallRadiusPct = 4404, + + /// + /// ice_trap_radius_+% + /// + IceTrapRadiusPct = 4405, + + /// + /// earthquake_radius_+% + /// + EarthquakeRadiusPct = 4406, + + /// + /// frost_bomb_radius_+% + /// + FrostBombRadiusPct = 4407, + + /// + /// storm_cloud_radius_+% + /// + StormCloudRadiusPct = 4408, + + /// + /// blight_radius_+% + /// + BlightRadiusPct = 4409, + + /// + /// shockwave_slam_radius_+% + /// + ShockwaveSlamRadiusPct = 4410, + + /// + /// display_attack_with_decree_of_ire_when_hit_% + /// + DisplayAttackWithDecreeOfIreWhenHitPct = 4411, + + /// + /// display_attack_with_commandment_of_ire_when_hit_% + /// + DisplayAttackWithCommandmentOfIreWhenHitPct = 4412, + + /// + /// blink_arrow_and_blink_arrow_clone_attack_speed_+% + /// + BlinkArrowAndBlinkArrowCloneAttackSpeedPct = 4413, + + /// + /// whirling_blades_attack_speed_+% + /// + WhirlingBladesAttackSpeedPct = 4414, + + /// + /// arctic_armour_buff_effect_+% + /// + ArcticArmourBuffEffectPct = 4415, + + /// + /// immortal_call_%_chance_to_not_consume_endurance_charges + /// + ImmortalCallPctChanceToNotConsumeEnduranceCharges = 4416, + + /// + /// phase_run_%_chance_to_not_consume_frenzy_charges + /// + PhaseRunPctChanceToNotConsumeFrenzyCharges = 4417, + + /// + /// animate_guardian_elemental_resistances_% + /// + AnimateGuardianElementalResistancesPct = 4418, + + /// + /// shrapnel_shot_physical_damage_%_to_add_as_lightning_damage + /// + ShrapnelShotPhysicalDamagePctToAddAsLightningDamage = 4419, + + /// + /// bladefall_critical_strike_chance_+% + /// + BladefallCriticalStrikeChancePct = 4420, + + /// + /// storm_cloud_critical_strike_chance_+% + /// + StormCloudCriticalStrikeChancePct = 4421, + + /// + /// tempest_shield_num_of_additional_projectiles_in_chain + /// + TempestShieldNumOfAdditionalProjectilesInChain = 4422, + + /// + /// map_labyrinth_secret1_override + /// + MapLabyrinthSecret1Override = 4423, + + /// + /// map_labyrinth_secret2_override + /// + MapLabyrinthSecret2Override = 4424, + + /// + /// melee_ancestor_totem_granted_attack_speed_+%_final + /// + MeleeAncestorTotemGrantedAttackSpeedPctFinal = 4425, + + /// + /// cannot_be_stunned_while_at_max_endurance_charges + /// + CannotBeStunnedWhileAtMaxEnduranceCharges = 4426, + + /// + /// life_regenerate_rate_per_second_%_while_totem_active + /// + LifeRegenerateRatePerSecondPctWhileTotemActive = 4427, + + /// + /// gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit + /// + GainAttackAndCastSpeedPctFor4SecondsIfTakenSavageHit = 4428, + + /// + /// berserker_damage_+%_final + /// + BerserkerDamagePctFinal = 4429, + + /// + /// elemental_damage_taken_+%_while_on_consecrated_ground + /// + ElementalDamageTakenPctWhileOnConsecratedGround = 4430, + + /// + /// critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments + /// + CriticalStrikeChancePctVsEnemiesWithElementalStatusAilments = 4431, + + /// + /// scion_helmet_skill_maximum_totems_+ + /// + ScionHelmetSkillMaximumTotems = 4432, + + /// + /// %_chance_to_gain_power_charge_on_placing_a_totem + /// + PctChanceToGainPowerChargeOnPlacingATotem = 4433, + + /// + /// attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras + /// + AttackAndCastSpeedPctForYouAndAlliesAffectedByYourAuras = 4434, + + /// + /// gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy + /// + GainElementalConfluxForXMsWhenYouKillARareOrUniqueEnemy = 4435, + + /// + /// enemies_chaos_resistance_%_while_cursed + /// + EnemiesChaosResistancePctWhileCursed = 4436, + + /// + /// damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy + /// + DamagePctFor4SecondsWhenYouKillACursedEnemy = 4437, + + /// + /// physical_damage_reduction_and_minion_physical_damage_reduction_% + /// + PhysicalDamageReductionAndMinionPhysicalDamageReductionPct = 4438, + + /// + /// offering_spells_effect_+% + /// + OfferingSpellsEffectPct = 4439, + + /// + /// damage_+%_for_you_and_allies_affected_by_your_auras + /// + DamagePctForYouAndAlliesAffectedByYourAuras = 4440, + + /// + /// you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed + /// + YouAndMinionAttackAndCastSpeedPctFor4SecondsWhenCorpseDestroyed = 4441, + + /// + /// %_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life + /// + PctChanceToGainPowerChargeOnHitAgainstEnemiesOnFullLife = 4442, + + /// + /// cause_maim_on_critical_strike_attack + /// + CauseMaimOnCriticalStrikeAttack = 4443, + + /// + /// %_chance_to_create_smoke_cloud_on_mine_or_trap_creation + /// + PctChanceToCreateSmokeCloudOnMineOrTrapCreation = 4444, + + /// + /// damage_+%_for_each_trap_and_mine_active + /// + DamagePctForEachTrapAndMineActive = 4445, + + /// + /// evasion_rating_while_es_full_+%_final + /// + EvasionRatingWhileEsFullPctFinal = 4446, + + /// + /// damage_+%_while_es_not_full + /// + DamagePctWhileEsNotFull = 4447, + + /// + /// mana_regeneration_+%_for_4_seconds_on_movement_skill_use + /// + ManaRegenerationPctFor4SecondsOnMovementSkillUse = 4448, + + /// + /// gain_onslaught_while_frenzy_charges_full + /// + GainOnslaughtWhileFrenzyChargesFull = 4449, + + /// + /// projectile_damage_+%_max_as_distance_travelled_increases + /// + ProjectileDamagePctMaxAsDistanceTravelledIncreases = 4450, + + /// + /// damage_+%_during_flask_effect + /// + DamagePctDuringFlaskEffect = 4451, + + /// + /// avoid_freeze_shock_ignite_bleed_%_during_flask_effect + /// + AvoidFreezeShockIgniteBleedPctDuringFlaskEffect = 4452, + + /// + /// elemental_damage_taken_+%_during_flask_effect + /// + ElementalDamageTakenPctDuringFlaskEffect = 4453, + + /// + /// damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy + /// + DamagePctFor4SecondsWhenYouKillABleedingEnemy = 4454, + + /// + /// damage_+%_to_you_and_nearby_allies_while_you_have_fortify + /// + DamagePctToYouAndNearbyAlliesWhileYouHaveFortify = 4455, + + /// + /// damage_taken_+%_from_taunted_enemies + /// + DamageTakenPctFromTauntedEnemies = 4456, + + /// + /// attack_and_cast_speed_+%_while_leeching + /// + AttackAndCastSpeedPctWhileLeeching = 4457, + + /// + /// base_avoid_bleed_% + /// + BaseAvoidBleedPct = 4458, + + /// + /// avoid_bleed_% + /// + AvoidBleedPct = 4459, + + /// + /// virtual_phase_through_objects + /// + VirtualPhaseThroughObjects = 4460, + + /// + /// virtual_has_onslaught + /// + VirtualHasOnslaught = 4461, + + /// + /// shield_charge_damage_per_target_hit_+% + /// + ShieldChargeDamagePerTargetHitPct = 4462, + + /// + /// number_of_mines_to_place + /// + NumberOfMinesToPlace = 4463, + + /// + /// local_flask_life_gain_on_skill_use_%_mana_cost + /// + LocalFlaskLifeGainOnSkillUsePctManaCost = 4464, + + /// + /// life_gain_on_skill_use_percent_mana_cost + /// + LifeGainOnSkillUsePercentManaCost = 4465, + + /// + /// traps_and_mines_%_chance_to_poison + /// + TrapsAndMinesPctChanceToPoison = 4466, + + /// + /// damage_+%_of_each_type_that_you_have_an_active_golem_of + /// + DamagePctOfEachTypeThatYouHaveAnActiveGolemOf = 4467, + + /// + /// elemental_golem_immunity_to_elemental_damage + /// + ElementalGolemImmunityToElementalDamage = 4468, + + /// + /// elemental_golem_granted_buff_effect_+% + /// + ElementalGolemGrantedBuffEffectPct = 4469, + + /// + /// current_number_of_fire_golems + /// + CurrentNumberOfFireGolems = 4470, + + /// + /// current_number_of_ice_golems + /// + CurrentNumberOfIceGolems = 4471, + + /// + /// current_number_of_lightning_golems + /// + CurrentNumberOfLightningGolems = 4472, + + /// + /// current_number_of_stone_golems + /// + CurrentNumberOfStoneGolems = 4473, + + /// + /// current_number_of_chaos_golems + /// + CurrentNumberOfChaosGolems = 4474, + + /// + /// base_cold_immunity + /// + BaseColdImmunity = 4475, + + /// + /// base_lightning_immunity + /// + BaseLightningImmunity = 4476, + + /// + /// gain_elemental_penetration_for_4_seconds_on_mine_detonation + /// + GainElementalPenetrationFor4SecondsOnMineDetonation = 4477, + + /// + /// display_can_take_character_start_point + /// + DisplayCanTakeCharacterStartPoint = 4478, + + /// + /// fire_damage_immunity + /// + FireDamageImmunity = 4479, + + /// + /// cold_damage_immunity + /// + ColdDamageImmunity = 4480, + + /// + /// lightning_damage_immunity + /// + LightningDamageImmunity = 4481, + + /// + /// chaos_damage_immunity + /// + ChaosDamageImmunity = 4482, + + /// + /// elemental_damage_immunity + /// + ElementalDamageImmunity = 4483, + + /// + /// global_total_minimum_added_lightning_damage + /// + GlobalTotalMinimumAddedLightningDamage = 4484, + + /// + /// global_total_maximum_added_lightning_damage + /// + GlobalTotalMaximumAddedLightningDamage = 4485, + + /// + /// have_killed_recently + /// + HaveKilledRecently = 4486, + + /// + /// track_have_killed_recently + /// + TrackHaveKilledRecently = 4487, + + /// + /// number_of_times_have_been_hit_recently + /// + NumberOfTimesHaveBeenHitRecently = 4488, + + /// + /// track_have_been_hit_recently + /// + TrackHaveBeenHitRecently = 4489, + + /// + /// have_crit_recently + /// + HaveCritRecently = 4490, + + /// + /// track_have_crit_recently + /// + TrackHaveCritRecently = 4491, + + /// + /// base_body_armour_physical_damage_reduction_rating + /// + BaseBodyArmourPhysicalDamageReductionRating = 4492, + + /// + /// chance_to_grant_power_charge_to_nearby_allies_on_kill_% + /// + ChanceToGrantPowerChargeToNearbyAlliesOnKillPct = 4493, + + /// + /// chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_% + /// + ChanceToGrantFrenzyChargeToNearbyAlliesOnHitPct = 4494, + + /// + /// blood_rage_grants_additional_attack_speed_+% + /// + BloodRageGrantsAdditionalAttackSpeedPct = 4495, + + /// + /// blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill + /// + BloodRageGrantsAdditionalPctChanceToGainFrenzyOnKill = 4496, + + /// + /// play_tempestuous_steel_sounds + /// + PlayTempestuousSteelSounds = 4497, + + /// + /// from_totem_aura_damage_+%_final + /// + FromTotemAuraDamagePctFinal = 4498, + + /// + /// explode_enemies_for_25%_life_as_chaos_on_kill_chance_% + /// + ExplodeEnemiesFor25PctLifeAsChaosOnKillChancePct = 4499, + + /// + /// explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_% + /// + ExplodeCursedEnemiesFor25PctLifeAsChaosOnKillChancePct = 4500, + + /// + /// base_minion_duration_+% + /// + BaseMinionDurationPct = 4501, + + /// + /// skill_specific_minion_duration_+%_final + /// + SkillSpecificMinionDurationPctFinal = 4502, + + /// + /// base_chaos_golem_granted_buff_effect_+% + /// + BaseChaosGolemGrantedBuffEffectPct = 4503, + + /// + /// base_stone_golem_granted_buff_effect_+% + /// + BaseStoneGolemGrantedBuffEffectPct = 4504, + + /// + /// base_fire_golem_granted_buff_effect_+% + /// + BaseFireGolemGrantedBuffEffectPct = 4505, + + /// + /// base_ice_golem_granted_buff_effect_+% + /// + BaseIceGolemGrantedBuffEffectPct = 4506, + + /// + /// base_lightning_golem_granted_buff_effect_+% + /// + BaseLightningGolemGrantedBuffEffectPct = 4507, + + /// + /// stone_golem_elemental_resistances_% + /// + StoneGolemElementalResistancesPct = 4508, + + /// + /// dominating_blow_minion_damage_+% + /// + DominatingBlowMinionDamagePct = 4509, + + /// + /// dominating_blow_skill_attack_damage_+% + /// + DominatingBlowSkillAttackDamagePct = 4510, + + /// + /// lightning_golem_elemental_resistances_% + /// + LightningGolemElementalResistancesPct = 4511, + + /// + /// lightning_golem_damage_+% + /// + LightningGolemDamagePct = 4512, + + /// + /// is_hindered + /// + IsHindered = 4513, + + /// + /// damage_+%_vs_hindered_enemies + /// + DamagePctVsHinderedEnemies = 4514, + + /// + /// blast_rain_number_of_blasts + /// + BlastRainNumberOfBlasts = 4515, + + /// + /// local_display_socketed_curse_gems_have_mana_reservation_+% + /// + LocalDisplaySocketedCurseGemsHaveManaReservationPct = 4516, + + /// + /// bone_offering_block_chance_+% + /// + BoneOfferingBlockChancePct = 4517, + + /// + /// map_number_of_explicit_mods + /// + MapNumberOfExplicitMods = 4518, + + /// + /// curse_orb_additional_height + /// + CurseOrbAdditionalHeight = 4519, + + /// + /// curse_orb_additional_radius + /// + CurseOrbAdditionalRadius = 4520, + + /// + /// phase_run_skill_effect_duration_+% + /// + PhaseRunSkillEffectDurationPct = 4521, + + /// + /// lightning_tendrils_critical_strike_chance_+% + /// + LightningTendrilsCriticalStrikeChancePct = 4522, + + /// + /// searing_totem_elemental_resistance_+% + /// + SearingTotemElementalResistancePct = 4523, + + /// + /// flesh_offering_attack_speed_+% + /// + FleshOfferingAttackSpeedPct = 4524, + + /// + /// smoke_mine_base_movement_velocity_+% + /// + SmokeMineBaseMovementVelocityPct = 4525, + + /// + /// convocation_buff_effect_+% + /// + ConvocationBuffEffectPct = 4526, + + /// + /// molten_shell_buff_effect_+% + /// + MoltenShellBuffEffectPct = 4527, + + /// + /// enduring_cry_buff_effect_+% + /// + EnduringCryBuffEffectPct = 4528, + + /// + /// righteous_fire_spell_damage_+% + /// + RighteousFireSpellDamagePct = 4529, + + /// + /// rallying_cry_buff_effect_+% + /// + RallyingCryBuffEffectPct = 4530, + + /// + /// attack_trigger_when_critically_hit_% + /// + AttackTriggerWhenCriticallyHitPct = 4531, + + /// + /// cast_when_hit_% + /// + CastWhenHitPct = 4532, + + /// + /// attack_trigger_when_hit_% + /// + AttackTriggerWhenHitPct = 4533, + + /// + /// attack_trigger_on_kill_% + /// + AttackTriggerOnKillPct = 4534, + + /// + /// decrement_parent_counter_on_death + /// + DecrementParentCounterOnDeath = 4535, + + /// + /// minions_explode_on_death_for_%_max_life_at_end_of_duration + /// + MinionsExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4536, + + /// + /// explode_on_death_for_%_max_life_at_end_of_duration + /// + ExplodeOnDeathForPctMaxLifeAtEndOfDuration = 4537, + + /// + /// melee_ancestor_totem_damage_+% + /// + MeleeAncestorTotemDamagePct = 4538, + + /// + /// melee_ancestor_totem_placement_speed_+% + /// + MeleeAncestorTotemPlacementSpeedPct = 4539, + + /// + /// melee_ancestor_totem_elemental_resistance_% + /// + MeleeAncestorTotemElementalResistancePct = 4540, + + /// + /// blast_rain_%_chance_for_additional_blast + /// + BlastRainPctChanceForAdditionalBlast = 4541, + + /// + /// perandus_chest_revive_targeted_monster + /// + PerandusChestReviveTargetedMonster = 4542, + + /// + /// current_difficulty + /// + CurrentDifficulty = 4543, + + /// + /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_cruel + /// + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInCruel = 4544, + + /// + /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_merciless + /// + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInMerciless = 4545, + + /// + /// kinetic_blast_%_chance_for_additional_blast + /// + KineticBlastPctChanceForAdditionalBlast = 4546, + + /// + /// share_charges_with_party_members_in_aura + /// + ShareChargesWithPartyMembersInAura = 4547, + + /// + /// guardian_nearby_allies_share_charges + /// + GuardianNearbyAlliesShareCharges = 4548, + + /// + /// bleed_duration_+% + /// + BleedDurationPct = 4549, + + /// + /// summoned_monsters_are_parented_to_my_parent + /// + SummonedMonstersAreParentedToMyParent = 4550, + + /// + /// monster_grants_no_experience_after_x_revives + /// + MonsterGrantsNoExperienceAfterXRevives = 4551, + + /// + /// consecrate_ground_on_shatter_%_chance_for_3_seconds + /// + ConsecrateGroundOnShatterPctChanceFor3Seconds = 4552, + + /// + /// summoned_monsters_decrement_parent_counter + /// + SummonedMonstersDecrementParentCounter = 4553, + + /// + /// skill_buff_effect_+% + /// + SkillBuffEffectPct = 4554, + + /// + /// glows_in_area_with_unique_fish + /// + GlowsInAreaWithUniqueFish = 4555, + + /// + /// local_display_summon_raging_spirit_on_kill_% + /// + LocalDisplaySummonRagingSpiritOnKillPct = 4556, + + /// + /// attacks_num_of_additional_chains + /// + AttacksNumOfAdditionalChains = 4557, + + /// + /// monster_do_not_give_soul_to_soul_eater + /// + MonsterDoNotGiveSoulToSoulEater = 4558, + + /// + /// monster_grants_no_flask_charges + /// + MonsterGrantsNoFlaskCharges = 4559, + + /// + /// used_teleports + /// + UsedTeleports = 4560, + + /// + /// explosive_arrow_attack_speed_+% + /// + ExplosiveArrowAttackSpeedPct = 4561, + + /// + /// slam_ancestor_totem_grant_owner_melee_damage_+%_final + /// + SlamAncestorTotemGrantOwnerMeleeDamagePctFinal = 4562, + + /// + /// slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+% + /// + SlashAncestorTotemGrantOwnerPhysicalDamageAddedAsFirePct = 4563, + + /// + /// slam_ancestor_totem_granted_melee_damage_+%_final + /// + SlamAncestorTotemGrantedMeleeDamagePctFinal = 4564, + + /// + /// perandus_chest_spawned_bosses + /// + PerandusChestSpawnedBosses = 4565, + + /// + /// lightning_damage_+%_per_10_intelligence + /// + LightningDamagePctPer10Intelligence = 4566, + + /// + /// shield_charge_range_+% + /// + ShieldChargeRangePct = 4567, + + /// + /// local_maim_on_hit + /// + LocalMaimOnHit = 4568, + + /// + /// main_hand_maim_on_hit + /// + MainHandMaimOnHit = 4569, + + /// + /// off_hand_maim_on_hit + /// + OffHandMaimOnHit = 4570, + + /// + /// warcries_cost_no_mana + /// + WarcriesCostNoMana = 4571, + + /// + /// is_on_ground_maelstrom + /// + IsOnGroundMaelstrom = 4572, + + /// + /// gain_a_power_charge_when_you_or_your_totems_kill_%_chance + /// + GainAPowerChargeWhenYouOrYourTotemsKillPctChance = 4573, + + /// + /// give_parent_power_charge_on_kill_%_chance + /// + GiveParentPowerChargeOnKillPctChance = 4574, + + /// + /// buff_visuals_show_while_hidden_override + /// + BuffVisualsShowWhileHiddenOverride = 4575, + + /// + /// always_pierce + /// + AlwaysPierce = 4576, + + /// + /// always_crit_shocked_enemies + /// + AlwaysCritShockedEnemies = 4577, + + /// + /// cannot_crit_non_shocked_enemies + /// + CannotCritNonShockedEnemies = 4578, + + /// + /// map_prophecy + /// + MapProphecy = 4579, + + /// + /// frost_bolt_damage_+% + /// + FrostBoltDamagePct = 4580, + + /// + /// frost_bolt_nova_damage_+% + /// + FrostBoltNovaDamagePct = 4581, + + /// + /// double_slash_damage_+% + /// + DoubleSlashDamagePct = 4582, + + /// + /// charged_attack_damage_+% + /// + ChargedAttackDamagePct = 4583, + + /// + /// slam_ancestor_totem_damage_+% + /// + SlamAncestorTotemDamagePct = 4584, + + /// + /// slash_ancestor_totem_damage_+% + /// + SlashAncestorTotemDamagePct = 4585, + + /// + /// slash_ancestor_totem_radius_+% + /// + SlashAncestorTotemRadiusPct = 4586, + + /// + /// slam_ancestor_totem_radius_+% + /// + SlamAncestorTotemRadiusPct = 4587, + + /// + /// frost_bolt_nova_radius_+% + /// + FrostBoltNovaRadiusPct = 4588, + + /// + /// double_slash_critical_strike_chance_+% + /// + DoubleSlashCriticalStrikeChancePct = 4589, + + /// + /// charged_attack_radius_+% + /// + ChargedAttackRadiusPct = 4590, + + /// + /// double_slash_radius_+% + /// + DoubleSlashRadiusPct = 4591, + + /// + /// charged_attack_damage_per_stack_+%_final + /// + ChargedAttackDamagePerStackPctFinal = 4592, + + /// + /// %_of_life_and_energy_shield_to_take_as_damage_on_using_a_movement_skill + /// + PctOfLifeAndEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4593, + + /// + /// remove_%_of_targets_current_flask_charges_on_hit + /// + RemovePctOfTargetsCurrentFlaskChargesOnHit = 4594, + + /// + /// virtual_reduce_enemy_cold_resistance_with_weapons_% + /// + VirtualReduceEnemyColdResistanceWithWeaponsPct = 4595, + + /// + /// virtual_reduce_enemy_fire_resistance_with_weapons_% + /// + VirtualReduceEnemyFireResistanceWithWeaponsPct = 4596, + + /// + /// virtual_reduce_enemy_lightning_resistance_with_weapons_% + /// + VirtualReduceEnemyLightningResistanceWithWeaponsPct = 4597, + + /// + /// minions_%_chance_to_blind_on_hit + /// + MinionsPctChanceToBlindOnHit = 4598, + + /// + /// minions_cannot_be_blinded + /// + MinionsCannotBeBlinded = 4599, + + /// + /// display_socketed_minion_gems_supported_by_level_X_life_leech + /// + DisplaySocketedMinionGemsSupportedByLevelXLifeLeech = 4600, + + /// + /// magic_items_drop_identified + /// + MagicItemsDropIdentified = 4601, + + /// + /// number_of_stackable_unique_jewels + /// + NumberOfStackableUniqueJewels = 4602, + + /// + /// X_mana_per_stackable_unique_jewel + /// + XManaPerStackableUniqueJewel = 4603, + + /// + /// X_armour_per_stackable_unique_jewel + /// + XArmourPerStackableUniqueJewel = 4604, + + /// + /// elemental_damage_+%_per_stackable_unique_jewel + /// + ElementalDamagePctPerStackableUniqueJewel = 4605, + + /// + /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_taken_per_minute_in_normal + /// + BaseFireDamagePctOfMaximumLifePlusMaximumESTakenPerMinuteInNormal = 4606, + + /// + /// projectile_uses_contact_position + /// + ProjectileUsesContactPosition = 4607, + + /// + /// skeletal_chains_aoe_%_health_dealt_as_chaos_damage + /// + SkeletalChainsAoePctHealthDealtAsChaosDamage = 4608, + + /// + /// virtual_number_of_inca_minions_allowed + /// + VirtualNumberOfIncaMinionsAllowed = 4609, + + /// + /// virtual_number_of_insects_allowed + /// + VirtualNumberOfInsectsAllowed = 4610, + + /// + /// virtual_number_of_taniwha_tails_allowed + /// + VirtualNumberOfTaniwhaTailsAllowed = 4611, + + /// + /// virtual_number_of_wolves_allowed + /// + VirtualNumberOfWolvesAllowed = 4612, + + /// + /// you_cannot_have_non_golem_minions + /// + YouCannotHaveNonGolemMinions = 4613, + + /// + /// lightning_damage_%_taken_from_mana_before_life + /// + LightningDamagePctTakenFromManaBeforeLife = 4614, + + /// + /// recover_%_maximum_mana_when_enemy_shocked + /// + RecoverPctMaximumManaWhenEnemyShocked = 4615, + + /// + /// ground_caustic_art_variation + /// + GroundCausticArtVariation = 4616, + + /// + /// global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad + /// + GlobalLifeLeechFromPhysicalAttackDamagePerRedSocketOnItemPermyriad = 4617, + + /// + /// spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently + /// + SpellDodgeChancePctIfYouHaveTakenAttackDamageRecently = 4618, + + /// + /// dodge_chance_+%_if_you_have_taken_spell_damage_recently + /// + DodgeChancePctIfYouHaveTakenSpellDamageRecently = 4619, + + /// + /// quantity_of_items_dropped_by_maimed_enemies_+% + /// + QuantityOfItemsDroppedByMaimedEnemiesPct = 4620, + + /// + /// rarity_of_items_dropped_by_maimed_enemies_+% + /// + RarityOfItemsDroppedByMaimedEnemiesPct = 4621, + + /// + /// damage_taken_+%_if_you_have_taken_a_savage_hit_recently + /// + DamageTakenPctIfYouHaveTakenASavageHitRecently = 4622, + + /// + /// is_maimed + /// + IsMaimed = 4623, + + /// + /// track_have_been_savage_hit_recently + /// + TrackHaveBeenSavageHitRecently = 4624, + + /// + /// have_been_savage_hit_recently + /// + HaveBeenSavageHitRecently = 4625, + + /// + /// track_have_taken_attack_damage_recently + /// + TrackHaveTakenAttackDamageRecently = 4626, + + /// + /// have_taken_attack_damage_recently + /// + HaveTakenAttackDamageRecently = 4627, + + /// + /// track_have_taken_spell_damage_recently + /// + TrackHaveTakenSpellDamageRecently = 4628, + + /// + /// have_taken_spell_damage_recently + /// + HaveTakenSpellDamageRecently = 4629, + + /// + /// stun_duration_on_self_+% + /// + StunDurationOnSelfPct = 4630, + + /// + /// melee_damage_+%_per_endurance_charge + /// + MeleeDamagePctPerEnduranceCharge = 4631, + + /// + /// totems_resist_all_elements_+%_per_active_totem + /// + TotemsResistAllElementsPctPerActiveTotem = 4632, + + /// + /// summon_your_maximum_number_of_totems_in_formation + /// + SummonYourMaximumNumberOfTotemsInFormation = 4633, + + /// + /// gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit + /// + GainLifeRegenerationPctPerSecondFor1SecondIfTakenSavageHit = 4634, + + /// + /// maximum_life_%_to_add_as_maximum_energy_shield + /// + MaximumLifePctToAddAsMaximumEnergyShield = 4635, + + /// + /// total_base_maximum_life + /// + TotalBaseMaximumLife = 4636, + + /// + /// combined_life_+% + /// + CombinedLifePct = 4637, + + /// + /// combined_life_+%_final + /// + CombinedLifePctFinal = 4638, + + /// + /// cannot_be_shocked_while_at_maximum_endurance_charges + /// + CannotBeShockedWhileAtMaximumEnduranceCharges = 4639, + + /// + /// movement_speed_+%_if_used_a_warcry_recently + /// + MovementSpeedPctIfUsedAWarcryRecently = 4640, + + /// + /// mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies + /// + ManaLeechFromAttackDamagePermyriadVsPoisonedEnemies = 4641, + + /// + /// num_warcries_used_recently + /// + NumWarcriesUsedRecently = 4642, + + /// + /// track_have_used_a_warcry_recently + /// + TrackHaveUsedAWarcryRecently = 4643, + + /// + /// totems_spells_cast_speed_+%_per_active_totem + /// + TotemsSpellsCastSpeedPctPerActiveTotem = 4644, + + /// + /// movement_skills_mana_cost_+% + /// + MovementSkillsManaCostPct = 4645, + + /// + /// global_critical_strike_mulitplier_+_per_green_socket_on_item + /// + GlobalCriticalStrikeMulitplierPerGreenSocketOnItem = 4646, + + /// + /// additional_block_chance_%_when_in_off_hand + /// + AdditionalBlockChancePctWhenInOffHand = 4647, + + /// + /// critical_strike_chance_+%_when_in_main_hand + /// + CriticalStrikeChancePctWhenInMainHand = 4648, + + /// + /// spirit_offering_duration_+% + /// + SpiritOfferingDurationPct = 4649, + + /// + /// spirit_offering_physical_damage_%_to_add_as_chaos + /// + SpiritOfferingPhysicalDamagePctToAddAsChaos = 4650, + + /// + /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_normal + /// + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInNormal = 4651, + + /// + /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_normal + /// + BaseFireDamagePctOfMaximumEsTakenPerMinuteInNormal = 4652, + + /// + /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_cruel + /// + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInCruel = 4653, + + /// + /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_cruel + /// + BaseFireDamagePctOfMaximumEsTakenPerMinuteInCruel = 4654, + + /// + /// base_fire_damage_%_of_maximum_life_taken_per_minute_in_merciless + /// + BaseFireDamagePctOfMaximumLifeTakenPerMinuteInMerciless = 4655, + + /// + /// base_fire_damage_%_of_maximum_es_taken_per_minute_in_merciless + /// + BaseFireDamagePctOfMaximumEsTakenPerMinuteInMerciless = 4656, + + /// + /// %_of_life_to_deal_as_damage + /// + PctOfLifeToDealAsDamage = 4657, + + /// + /// %_of_es_to_deal_as_damage + /// + PctOfEsToDealAsDamage = 4658, + + /// + /// %_of_life_to_take_as_damage_on_using_a_movement_skill + /// + PctOfLifeToTakeAsDamageOnUsingAMovementSkill = 4659, + + /// + /// %_of_energy_shield_to_take_as_damage_on_using_a_movement_skill + /// + PctOfEnergyShieldToTakeAsDamageOnUsingAMovementSkill = 4660, + + /// + /// %_of_life_to_deal_as_damage_on_using_a_movement_skill + /// + PctOfLifeToDealAsDamageOnUsingAMovementSkill = 4661, + + /// + /// %_of_energy_shield_to_deal_as_damage_on_using_a_movement_skill + /// + PctOfEnergyShieldToDealAsDamageOnUsingAMovementSkill = 4662, + + /// + /// local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect + /// + LocalUniqueOverflowingChaliceFlaskCannotGainFlaskChargesDuringFlaskEffect = 4663, + + /// + /// using_flask_overflowing_chalice + /// + UsingFlaskOverflowingChalice = 4664, + + /// + /// cannot_be_chained_from + /// + CannotBeChainedFrom = 4665, + + /// + /// damage_taken_+%_if_not_hit_recently_final + /// + DamageTakenPctIfNotHitRecentlyFinal = 4666, + + /// + /// evasion_+%_if_hit_recently + /// + EvasionPctIfHitRecently = 4667, + + /// + /// cast_socketed_spells_on_X_mana_spent + /// + CastSocketedSpellsOnXManaSpent = 4668, + + /// + /// cast_socketed_spells_on_mana_spent_%_chance + /// + CastSocketedSpellsOnManaSpentPctChance = 4669, + + /// + /// block_chance_%_vs_taunted_enemies + /// + BlockChancePctVsTauntedEnemies = 4670, + + /// + /// minion_cold_damage_resistance_% + /// + MinionColdDamageResistancePct = 4671, + + /// + /// minion_physical_damage_%_to_add_as_cold + /// + MinionPhysicalDamagePctToAddAsCold = 4672, + + /// + /// armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently + /// + ArmourAndEvasionRatingPctIfKilledATauntedEnemyRecently = 4673, + + /// + /// have_killed_a_taunted_enemy_recently + /// + HaveKilledATauntedEnemyRecently = 4674, + + /// + /// map_owner_master_exp_favour_+% + /// + MapOwnerMasterExpFavourPct = 4675, + + /// + /// support_cast_on_mana_spent + /// + SupportCastOnManaSpent = 4676, + + /// + /// num_of_additional_chains_at_max_frenzy_charges + /// + NumOfAdditionalChainsAtMaxFrenzyCharges = 4677, + + /// + /// critical_strikes_do_not_always_freeze + /// + CriticalStrikesDoNotAlwaysFreeze = 4678, + + /// + /// damage_+%_for_each_level_the_enemy_is_higher_than_you + /// + DamagePctForEachLevelTheEnemyIsHigherThanYou = 4679, + + /// + /// local_unique_flask_charges_gained_+%_during_flask_effect + /// + LocalUniqueFlaskChargesGainedPctDuringFlaskEffect = 4680, + + /// + /// gain_phasing_for_4_seconds_on_begin_es_recharge + /// + GainPhasingFor4SecondsOnBeginEsRecharge = 4681, + + /// + /// chance_to_dodge_attacks_%_while_phasing + /// + ChanceToDodgeAttacksPctWhilePhasing = 4682, + + /// + /// item_found_rarity_+%_while_phasing + /// + ItemFoundRarityPctWhilePhasing = 4683, + + /// + /// hexproof + /// + Hexproof = 4684, + + /// + /// map_monsters_are_hexproof + /// + MapMonstersAreHexproof = 4685, + + /// + /// ignore_hexproof + /// + IgnoreHexproof = 4686, + + /// + /// totems_attack_speed_+%_per_active_totem + /// + TotemsAttackSpeedPctPerActiveTotem = 4687, + + /// + /// attacks_num_of_additional_chains_when_in_main_hand + /// + AttacksNumOfAdditionalChainsWhenInMainHand = 4688, + + /// + /// attacks_number_of_additional_projectiles + /// + AttacksNumberOfAdditionalProjectiles = 4689, + + /// + /// attacks_number_of_additional_projectiles_when_in_off_hand + /// + AttacksNumberOfAdditionalProjectilesWhenInOffHand = 4690, + + /// + /// counter_attacks_minimum_added_physical_damage + /// + CounterAttacksMinimumAddedPhysicalDamage = 4691, + + /// + /// counter_attacks_maximum_added_physical_damage + /// + CounterAttacksMaximumAddedPhysicalDamage = 4692, + + /// + /// golem_damage_+%_per_active_golem_type + /// + GolemDamagePctPerActiveGolemType = 4693, + + /// + /// life_+%_with_no_corrupted_equipped_items + /// + LifePctWithNoCorruptedEquippedItems = 4694, + + /// + /// life_regeneration_per_minute_with_no_corrupted_equipped_items + /// + LifeRegenerationPerMinuteWithNoCorruptedEquippedItems = 4695, + + /// + /// energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items + /// + EnergyShieldRechargeRatePerMinuteWithAllCorruptedEquippedItems = 4696, + + /// + /// local_display_nearby_enemies_take_X_chaos_damage_per_minute + /// + LocalDisplayNearbyEnemiesTakeXChaosDamagePerMinute = 4697, + + /// + /// number_of_equipped_items + /// + NumberOfEquippedItems = 4698, + + /// + /// virtual_mana_leech_from_any_damage_permyriad + /// + VirtualManaLeechFromAnyDamagePermyriad = 4699, + + /// + /// virtual_current_number_of_golem_types + /// + VirtualCurrentNumberOfGolemTypes = 4700, + + /// + /// local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation + /// + LocalDisplaySocketedSkillsSummonYourMaximumNumberOfTotemsInFormation = 4701, + + /// + /// energy_shield_regeneration_rate_per_minute_%_while_on_low_life + /// + EnergyShieldRegenerationRatePerMinutePctWhileOnLowLife = 4702, + + /// + /// counter_attacks_minimum_added_cold_damage + /// + CounterAttacksMinimumAddedColdDamage = 4703, + + /// + /// counter_attacks_maximum_added_cold_damage + /// + CounterAttacksMaximumAddedColdDamage = 4704, + + /// + /// movement_speed_+%_if_pierced_recently + /// + MovementSpeedPctIfPiercedRecently = 4705, + + /// + /// have_pierced_recently + /// + HavePiercedRecently = 4706, + + /// + /// track_have_pierced_recently + /// + TrackHavePiercedRecently = 4707, + + /// + /// item_found_quantity_+%_if_wearing_a_magic_item + /// + ItemFoundQuantityPctIfWearingAMagicItem = 4708, + + /// + /// item_found_rarity_+%_if_wearing_a_normal_item + /// + ItemFoundRarityPctIfWearingANormalItem = 4709, + + /// + /// number_of_equipped_normal_items + /// + NumberOfEquippedNormalItems = 4710, + + /// + /// poison_cursed_enemies_on_hit + /// + PoisonCursedEnemiesOnHit = 4711, + + /// + /// base_fire_damage_%_to_convert_to_chaos_60%_value + /// + BaseFireDamagePctToConvertToChaos60PctValue = 4712, + + /// + /// base_lightning_damage_%_to_convert_to_chaos_60%_value + /// + BaseLightningDamagePctToConvertToChaos60PctValue = 4713, + + /// + /// gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster + /// + GainOnslaughtForXMsOnKillingRareOrUniqueMonster = 4714, + + /// + /// kill_enemy_on_hit_if_under_20%_life + /// + KillEnemyOnHitIfUnder20PctLife = 4715, + + /// + /// immune_to_bleeding_while_leeching + /// + ImmuneToBleedingWhileLeeching = 4716, + + /// + /// damage_+%_if_enemy_killed_recently_final + /// + DamagePctIfEnemyKilledRecentlyFinal = 4717, + + /// + /// skill_area_of_effect_+%_if_enemy_killed_recently + /// + SkillAreaOfEffectPctIfEnemyKilledRecently = 4718, + + /// + /// virtual_immune_to_bleeding + /// + VirtualImmuneToBleeding = 4719, + + /// + /// have_killed_a_maimed_enemy_recently + /// + HaveKilledAMaimedEnemyRecently = 4720, + + /// + /// track_have_killed_a_maimed_enemy_recently + /// + TrackHaveKilledAMaimedEnemyRecently = 4721, + + /// + /// skill_effect_duration_+%_if_killed_maimed_enemy_recently + /// + SkillEffectDurationPctIfKilledMaimedEnemyRecently = 4722, + + /// + /// have_taunted_an_enemy_recently + /// + HaveTauntedAnEnemyRecently = 4723, + + /// + /// track_have_taunted_an_enemy_recently + /// + TrackHaveTauntedAnEnemyRecently = 4724, + + /// + /// damage_taken_+%_if_taunted_an_enemy_recently + /// + DamageTakenPctIfTauntedAnEnemyRecently = 4725, + + /// + /// life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently + /// + LifeRegenerationRatePerMinutePctIfTauntedAnEnemyRecently = 4726, + + /// + /// immune_to_elemental_status_ailments_during_flask_effect + /// + ImmuneToElementalStatusAilmentsDuringFlaskEffect = 4727, + + /// + /// elemental_damage_+%_during_flask_effect + /// + ElementalDamagePctDuringFlaskEffect = 4728, + + /// + /// chance_to_freeze_shock_ignite_%_during_flask_effect + /// + ChanceToFreezeShockIgnitePctDuringFlaskEffect = 4729, + + /// + /// summoned_monster_types_arent_duplicated + /// + SummonedMonsterTypesArentDuplicated = 4730, + + /// + /// slash_ancestor_totem_elemental_resistance_% + /// + SlashAncestorTotemElementalResistancePct = 4731, + + /// + /// melee_ancestor_totem_grant_owner_attack_speed_+% + /// + MeleeAncestorTotemGrantOwnerAttackSpeedPct = 4732, + + /// + /// slam_ancestor_totem_grant_owner_melee_damage_+% + /// + SlamAncestorTotemGrantOwnerMeleeDamagePct = 4733, + + /// + /// frost_bolt_cast_speed_+% + /// + FrostBoltCastSpeedPct = 4734, + + /// + /// frost_bolt_freeze_chance_% + /// + FrostBoltFreezeChancePct = 4735, + + /// + /// frost_bolt_nova_duration_+% + /// + FrostBoltNovaDurationPct = 4736, + + /// + /// chest_drop_additional_fire_warband_uniques + /// + ChestDropAdditionalFireWarbandUniques = 4737, + + /// + /// chest_drop_additional_cold_warband_uniques + /// + ChestDropAdditionalColdWarbandUniques = 4738, + + /// + /// chest_drop_additional_lightning_warband_uniques + /// + ChestDropAdditionalLightningWarbandUniques = 4739, + + /// + /// chest_drop_additional_chaos_warband_uniques + /// + ChestDropAdditionalChaosWarbandUniques = 4740, + + /// + /// weapons_drop_animated + /// + WeaponsDropAnimated = 4741, + + /// + /// es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground + /// + EsAndManaRegenerationRatePerMinutePctWhileOnConsecratedGround = 4742, + + /// + /// attack_and_cast_speed_+%_while_on_consecrated_ground + /// + AttackAndCastSpeedPctWhileOnConsecratedGround = 4743, + + /// + /// chest_display_summons_fire_warband + /// + ChestDisplaySummonsFireWarband = 4744, + + /// + /// chest_display_summons_cold_warband + /// + ChestDisplaySummonsColdWarband = 4745, + + /// + /// chest_display_summons_lightning_warband + /// + ChestDisplaySummonsLightningWarband = 4746, + + /// + /// chest_display_summons_chaos_warband + /// + ChestDisplaySummonsChaosWarband = 4747, + + /// + /// is_dominated + /// + IsDominated = 4748, + + /// + /// blast_rain_arrow_delay_ms + /// + BlastRainArrowDelayMs = 4749, + + /// + /// additional_block_chance_%_for_1_second_every_5_seconds + /// + AdditionalBlockChancePctFor1SecondEvery5Seconds = 4750, + + /// + /// mine_arming_speed_+% + /// + MineArmingSpeedPct = 4751, + + /// + /// flasks_%_chance_to_not_consume_charges + /// + FlasksPctChanceToNotConsumeCharges = 4752, + + /// + /// critical_strike_chance_+%_vs_bleeding_enemies + /// + CriticalStrikeChancePctVsBleedingEnemies = 4753, + + /// + /// physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit + /// + PhysicalDamagePctFor4SecondsWhenYouBlockAUniqueEnemyHit = 4754, + + /// + /// your_consecrated_ground_grants_damage_+% + /// + YourConsecratedGroundGrantsDamagePct = 4755, + + /// + /// attack_speed_+%_if_enemy_not_killed_recently + /// + AttackSpeedPctIfEnemyNotKilledRecently = 4756, + + /// + /// physical_damage_+%_while_at_maximum_frenzy_charges_final + /// + PhysicalDamagePctWhileAtMaximumFrenzyChargesFinal = 4757, + + /// + /// physical_damage_taken_+%_while_at_maximum_endurance_charges + /// + PhysicalDamageTakenPctWhileAtMaximumEnduranceCharges = 4758, + + /// + /// totem_damage_leeched_as_life_to_you_permyriad + /// + TotemDamageLeechedAsLifeToYouPermyriad = 4759, + + /// + /// damage_leeched_as_life_to_parent_permyriad + /// + DamageLeechedAsLifeToParentPermyriad = 4760, + + /// + /// attack_speed_+%_per_200_accuracy_rating + /// + AttackSpeedPctPer200AccuracyRating = 4761, + + /// + /// gain_phasing_while_at_maximum_frenzy_charges + /// + GainPhasingWhileAtMaximumFrenzyCharges = 4762, + + /// + /// gain_phasing_while_you_have_onslaught + /// + GainPhasingWhileYouHaveOnslaught = 4763, + + /// + /// gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance + /// + GainMaximumEnduranceChargesOnEnduranceChargeGainedPctChance = 4764, + + /// + /// elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds + /// + ElementalistSkillAreaOfEffectPctFor4SecondsEvery10Seconds = 4765, + + /// + /// physical_damage_%_to_add_as_chaos_vs_bleeding_enemies + /// + PhysicalDamagePctToAddAsChaosVsBleedingEnemies = 4766, + + /// + /// elemental_resistances_+%_for_you_and_allies_affected_by_your_auras + /// + ElementalResistancesPctForYouAndAlliesAffectedByYourAuras = 4767, + + /// + /// gain_x_life_on_trap_triggered_by_an_enemy + /// + GainXLifeOnTrapTriggeredByAnEnemy = 4768, + + /// + /// gain_x_es_on_trap_triggered_by_an_enemy + /// + GainXEsOnTrapTriggeredByAnEnemy = 4769, + + /// + /// phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy + /// + PhasingPctFor3SecondsOnTrapTriggeredByAnEnemy = 4770, + + /// + /// visual_always_use_smallest_blood_effect + /// + VisualAlwaysUseSmallestBloodEffect = 4771, + + /// + /// attack_skills_additional_totems_allowed + /// + AttackSkillsAdditionalTotemsAllowed = 4772, + + /// + /// global_defences_+%_per_white_socket_on_item + /// + GlobalDefencesPctPerWhiteSocketOnItem = 4773, + + /// + /// global_total_minimum_added_cold_damage + /// + GlobalTotalMinimumAddedColdDamage = 4774, + + /// + /// global_total_maximum_added_cold_damage + /// + GlobalTotalMaximumAddedColdDamage = 4775, + + /// + /// poison_from_critical_strikes_damage_+%_final + /// + PoisonFromCriticalStrikesDamagePctFinal = 4776, + + /// + /// bleed_damage_+%_vs_maimed_enemies_final + /// + BleedDamagePctVsMaimedEnemiesFinal = 4777, + + /// + /// flask_charges_+%_from_enemies_with_status_ailments + /// + FlaskChargesPctFromEnemiesWithStatusAilments = 4778, + + /// + /// mana_cost_+%_while_on_full_energy_shield + /// + ManaCostPctWhileOnFullEnergyShield = 4779, + + /// + /// permanently_intimidate_enemies_you_hit_on_full_life + /// + PermanentlyIntimidateEnemiesYouHitOnFullLife = 4780, + + /// + /// number_of_corpses_consumed_recently + /// + NumberOfCorpsesConsumedRecently = 4781, + + /// + /// track_number_of_corpses_consumed_recently + /// + TrackNumberOfCorpsesConsumedRecently = 4782, + + /// + /// damage_+%_if_you_have_consumed_a_corpse_recently + /// + DamagePctIfYouHaveConsumedACorpseRecently = 4783, + + /// + /// attack_and_cast_speed_+%_per_corpse_consumed_recently + /// + AttackAndCastSpeedPctPerCorpseConsumedRecently = 4784, + + /// + /// armour_and_evasion_+%_while_fortified + /// + ArmourAndEvasionPctWhileFortified = 4785, + + /// + /// melee_damage_+%_while_fortified + /// + MeleeDamagePctWhileFortified = 4786, + + /// + /// desecrate_creates_X_additional_corpses + /// + DesecrateCreatesXAdditionalCorpses = 4787, + + /// + /// mana_regeneration_rate_+%_while_phasing + /// + ManaRegenerationRatePctWhilePhasing = 4788, + + /// + /// chaos_skill_effect_duration_+% + /// + ChaosSkillEffectDurationPct = 4789, + + /// + /// damage_+%_final_vs_non_taunt_target_from_ot + /// + DamagePctFinalVsNonTauntTargetFromOt = 4790, + + /// + /// damage_+%_final_vs_non_taunt_target_from_passive + /// + DamagePctFinalVsNonTauntTargetFromPassive = 4791, + + /// + /// damage_+%_final_from_damaging_non_taunt_target + /// + DamagePctFinalFromDamagingNonTauntTarget = 4792, + + /// + /// taunted_enemies_damage_+%_final_vs_non_taunt_target + /// + TauntedEnemiesDamagePctFinalVsNonTauntTarget = 4793, + + /// + /// chest_drop_additional_deshret_uniques + /// + ChestDropAdditionalDeshretUniques = 4794, + + /// + /// chest_drop_additional_rare_maraketh_weapons + /// + ChestDropAdditionalRareMarakethWeapons = 4795, + + /// + /// chest_display_spawns_torment_spirits_continuously + /// + ChestDisplaySpawnsTormentSpiritsContinuously = 4796, + + /// + /// chance_to_cast_on_owned_kill_% + /// + ChanceToCastOnOwnedKillPct = 4797, + + /// + /// local_flask_cannot_be_stunned_during_flask_effect + /// + LocalFlaskCannotBeStunnedDuringFlaskEffect = 4798, + + /// + /// local_flask_lose_all_charges_on_entering_new_area + /// + LocalFlaskLoseAllChargesOnEnteringNewArea = 4799, + + /// + /// summon_specific_monsters_radius_+% + /// + SummonSpecificMonstersRadiusPct = 4800, + + /// + /// monster_drop_additional_currency_items_with_quality + /// + MonsterDropAdditionalCurrencyItemsWithQuality = 4801, + + /// + /// prophecy_spawned_monster_magic_minimum_rarity + /// + ProphecySpawnedMonsterMagicMinimumRarity = 4802, + + /// + /// gain_life_leech_on_kill_permyriad + /// + GainLifeLeechOnKillPermyriad = 4803, + + /// + /// immune_to_shock + /// + ImmuneToShock = 4804, + + /// + /// poison_on_melee_hit + /// + PoisonOnMeleeHit = 4805, + + /// + /// life_leech_permyriad_vs_cursed_enemies + /// + LifeLeechPermyriadVsCursedEnemies = 4806, + + /// + /// movement_speed_+%_if_enemy_killed_recently + /// + MovementSpeedPctIfEnemyKilledRecently = 4807, + + /// + /// local_display_socketed_gems_supported_by_x_controlled_destruction + /// + LocalDisplaySocketedGemsSupportedByXControlledDestruction = 4808, + + /// + /// local_unique_flask_kiaras_determination + /// + LocalUniqueFlaskKiarasDetermination = 4809, + + /// + /// map_items_dropped_are_mirrored + /// + MapItemsDroppedAreMirrored = 4810, + + /// + /// monster_is_corrupted_display + /// + MonsterIsCorruptedDisplay = 4811, + + /// + /// monster_casts_fire_nova_text + /// + MonsterCastsFireNovaText = 4812, + + /// + /// monster_casts_flask_charge_nova_text + /// + MonsterCastsFlaskChargeNovaText = 4813, + + /// + /// monster_has_damage_taken_aura_text + /// + MonsterHasDamageTakenAuraText = 4814, + + /// + /// monster_has_temporal_chains_aura_text + /// + MonsterHasTemporalChainsAuraText = 4815, + + /// + /// monster_has_movement_skill_damage_aura_text + /// + MonsterHasMovementSkillDamageAuraText = 4816, + + /// + /// monster_casts_bleed_nova_text + /// + MonsterCastsBleedNovaText = 4817, + + /// + /// weapon_physical_damage_%_to_add_as_each_element + /// + WeaponPhysicalDamagePctToAddAsEachElement = 4818, + + /// + /// map_force_labyrinth_trial + /// + MapForceLabyrinthTrial = 4819, + + /// + /// unique_cold_damage_can_also_ignite + /// + UniqueColdDamageCanAlsoIgnite = 4820, + + /// + /// monster_throws_chaos_bombs_text + /// + MonsterThrowsChaosBombsText = 4821, + + /// + /// attack_trigger_on_melee_hit_% + /// + AttackTriggerOnMeleeHitPct = 4822, + + /// + /// physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems + /// + PhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecentlyByYouOrYourTotems = 4823, + + /// + /// give_parent_physical_damage_%_added_as_fire_damage_if_enemy_killed_recently + /// + GiveParentPhysicalDamagePctAddedAsFireDamageIfEnemyKilledRecently = 4824, + + /// + /// unique_boss_curse_effect_on_self_+%_final + /// + UniqueBossCurseEffectOnSelfPctFinal = 4825, + + /// + /// chest_drop_additional_unique_item_divination_cards + /// + ChestDropAdditionalUniqueItemDivinationCards = 4826, + + /// + /// chest_drop_additional_corrupted_item_divination_cards + /// + ChestDropAdditionalCorruptedItemDivinationCards = 4827, + + /// + /// chest_drop_additional_currency_item_divination_cards + /// + ChestDropAdditionalCurrencyItemDivinationCards = 4828, + + /// + /// chest_drop_additional_divination_cards_from_current_world_area + /// + ChestDropAdditionalDivinationCardsFromCurrentWorldArea = 4829, + + /// + /// chest_drop_additional_divination_cards_from_same_set + /// + ChestDropAdditionalDivinationCardsFromSameSet = 4830, + + /// + /// global_critical_strike_chance_while_dual_wielding_+% + /// + GlobalCriticalStrikeChanceWhileDualWieldingPct = 4831, + + /// + /// global_critical_strike_multiplier_while_dual_wielding_+ + /// + GlobalCriticalStrikeMultiplierWhileDualWielding = 4832, + + /// + /// doom_arrow_number_of_arrows + /// + DoomArrowNumberOfArrows = 4833, + + /// + /// stance_movement_speed_+%_final + /// + StanceMovementSpeedPctFinal = 4834, + + /// + /// Base Physical Damage Reduction and Evasion Rating + /// + BasePhysicalDamageReductionAndEvasionRating = 4835, + + /// + /// first_blood_extra_gore + /// + FirstBloodExtraGore = 4836, + + /// + /// cast_when_triggered_by_other_skill_% + /// + CastWhenTriggeredByOtherSkillPct = 4837, + + /// + /// local_display_socketed_gems_minimum_added_fire_damage + /// + LocalDisplaySocketedGemsMinimumAddedFireDamage = 4838, + + /// + /// local_display_socketed_gems_maximum_added_fire_damage + /// + LocalDisplaySocketedGemsMaximumAddedFireDamage = 4839, + + /// + /// local_display_socketed_gems_attack_and_cast_speed_+%_final + /// + LocalDisplaySocketedGemsAttackAndCastSpeedPctFinal = 4840, + + /// + /// local_display_socketed_gems_physical_damage_%_to_add_as_lightning + /// + LocalDisplaySocketedGemsPhysicalDamagePctToAddAsLightning = 4841, + + /// + /// local_display_socketed_gems_elemental_damage_+%_final + /// + LocalDisplaySocketedGemsElementalDamagePctFinal = 4842, + + /// + /// curse_nova_damage_+%_final_per_curse_removed + /// + CurseNovaDamagePctFinalPerCurseRemoved = 4843, + + /// + /// elemental_penetration_%_during_flask_effect + /// + ElementalPenetrationPctDuringFlaskEffect = 4844, + + /// + /// additional_physical_damage_reduction_%_during_flask_effect + /// + AdditionalPhysicalDamageReductionPctDuringFlaskEffect = 4845, + + /// + /// reflect_damage_taken_+% + /// + ReflectDamageTakenPct = 4846, + + /// + /// power_charge_on_block_%_chance + /// + PowerChargeOnBlockPctChance = 4847, + + /// + /// nearby_enemies_chilled_on_block + /// + NearbyEnemiesChilledOnBlock = 4848, + + /// + /// arrow_projectile_variation + /// + ArrowProjectileVariation = 4849, + + /// + /// essence_buff_elemental_damage_taken_+% + /// + EssenceBuffElementalDamageTakenPct = 4850, + + /// + /// essence_buff_ground_fire_damage_to_deal_per_second + /// + EssenceBuffGroundFireDamageToDealPerSecond = 4851, + + /// + /// essence_buff_ground_fire_duration_ms + /// + EssenceBuffGroundFireDurationMs = 4852, + + /// + /// trigger_spawners_override_row + /// + TriggerSpawnersOverrideRow = 4853, + + /// + /// trigger_spawners_max_count + /// + TriggerSpawnersMaxCount = 4854, + + /// + /// map_race_data + /// + MapRaceData = 4855, + + /// + /// map_packs_have_pop_up_traps + /// + MapPacksHavePopUpTraps = 4856, + + /// + /// permanent_damage_taken_+%_on_minion_death + /// + PermanentDamageTakenPctOnMinionDeath = 4857, + + /// + /// permanent_actor_scale_+%_on_minion_death + /// + PermanentActorScalePctOnMinionDeath = 4858, + + /// + /// permanent_item_quantity_+%_on_minion_death + /// + PermanentItemQuantityPctOnMinionDeath = 4859, + + /// + /// permanent_item_rarity_+%_on_minion_death + /// + PermanentItemRarityPctOnMinionDeath = 4860, + + /// + /// ground_maelstrom_art_variation + /// + GroundMaelstromArtVariation = 4861, + + /// + /// do_not_revive_after_time + /// + DoNotReviveAfterTime = 4862, + + /// + /// chaos_damage_taken_over_time_+% + /// + ChaosDamageTakenOverTimePct = 4863, + + /// + /// local_display_socketed_gems_additional_critical_strike_chance_% + /// + LocalDisplaySocketedGemsAdditionalCriticalStrikeChancePct = 4864, + + /// + /// attack_and_cast_speed_+%_during_flask_effect + /// + AttackAndCastSpeedPctDuringFlaskEffect = 4865, + + /// + /// minimum_added_cold_damage_per_frenzy_charge + /// + MinimumAddedColdDamagePerFrenzyCharge = 4866, + + /// + /// maximum_added_cold_damage_per_frenzy_charge + /// + MaximumAddedColdDamagePerFrenzyCharge = 4867, + + /// + /// minimum_added_fire_damage_if_blocked_recently + /// + MinimumAddedFireDamageIfBlockedRecently = 4868, + + /// + /// maximum_added_fire_damage_if_blocked_recently + /// + MaximumAddedFireDamageIfBlockedRecently = 4869, + + /// + /// track_have_blocked_attack_recently + /// + TrackHaveBlockedAttackRecently = 4870, + + /// + /// have_blocked_attack_recently + /// + HaveBlockedAttackRecently = 4871, + + /// + /// global_total_minimum_added_fire_damage + /// + GlobalTotalMinimumAddedFireDamage = 4872, + + /// + /// global_total_maximum_added_fire_damage + /// + GlobalTotalMaximumAddedFireDamage = 4873, + + /// + /// stun_threshold_based_on_energy_shield_instead_of_life + /// + StunThresholdBasedOnEnergyShieldInsteadOfLife = 4874, + + /// + /// cannot_leech_life_from_critical_strikes + /// + CannotLeechLifeFromCriticalStrikes = 4875, + + /// + /// %_chance_to_blind_on_critical_strike + /// + PctChanceToBlindOnCriticalStrike = 4876, + + /// + /// bleed_on_melee_critical_strike + /// + BleedOnMeleeCriticalStrike = 4877, + + /// + /// map_has_monoliths + /// + MapHasMonoliths = 4878, + + /// + /// in_lava + /// + InLava = 4879, + + /// + /// base_life_regeneration_per_minute_%_while_in_lava + /// + BaseLifeRegenerationPerMinutePctWhileInLava = 4880, + + /// + /// lava_buff_effect_on_self_+% + /// + LavaBuffEffectOnSelfPct = 4881, + + /// + /// current_fire_beam_stacks + /// + CurrentFireBeamStacks = 4882, + + /// + /// max_fire_beam_stacks + /// + MaxFireBeamStacks = 4883, + + /// + /// marker_warp_marker_variation + /// + MarkerWarpMarkerVariation = 4884, + + /// + /// self_take_no_extra_damage_from_critical_strikes + /// + SelfTakeNoExtraDamageFromCriticalStrikes = 4885, + + /// + /// enemies_you_shock_cast_speed_+% + /// + EnemiesYouShockCastSpeedPct = 4886, + + /// + /// enemies_you_shock_movement_speed_+% + /// + EnemiesYouShockMovementSpeedPct = 4887, + + /// + /// burning_damage_+%_if_ignited_an_enemy_recently + /// + BurningDamagePctIfIgnitedAnEnemyRecently = 4888, + + /// + /// recover_%_maximum_life_on_enemy_ignited + /// + RecoverPctMaximumLifeOnEnemyIgnited = 4889, + + /// + /// melee_physical_damage_+%_vs_ignited_enemies + /// + MeleePhysicalDamagePctVsIgnitedEnemies = 4890, + + /// + /// critical_strike_chance_+%_for_forking_arrows + /// + CriticalStrikeChancePctForForkingArrows = 4891, + + /// + /// arrows_always_pierce_after_chaining + /// + ArrowsAlwaysPierceAfterChaining = 4892, + + /// + /// arrows_that_pierce_cause_bleeding + /// + ArrowsThatPierceCauseBleeding = 4893, + + /// + /// spells_number_of_additional_projectiles + /// + SpellsNumberOfAdditionalProjectiles = 4894, + + /// + /// minion_damage_+%_if_enemy_hit_recently + /// + MinionDamagePctIfEnemyHitRecently = 4895, + + /// + /// have_hit_an_enemy_recently + /// + HaveHitAnEnemyRecently = 4896, + + /// + /// track_have_hit_an_enemy_recently + /// + TrackHaveHitAnEnemyRecently = 4897, + + /// + /// minion_damage_increases_and_reductions_also_affects_you + /// + MinionDamageIncreasesAndReductionsAlsoAffectsYou = 4898, + + /// + /// projectile_attack_damage_+%_per_200_accuracy + /// + ProjectileAttackDamagePctPer200Accuracy = 4899, + + /// + /// map_bosses_have_union_of_souls + /// + MapBossesHaveUnionOfSouls = 4900, + + /// + /// map_extra_monoliths + /// + MapExtraMonoliths = 4901, + + /// + /// minion_dies_when_parent_deleted + /// + MinionDiesWhenParentDeleted = 4902, + + /// + /// spectral_throw_projectile_scale_+% + /// + SpectralThrowProjectileScalePct = 4903, + + /// + /// gain_onslaught_for_3_seconds_%_chance_when_hit + /// + GainOnslaughtFor3SecondsPctChanceWhenHit = 4904, + + /// + /// local_display_socketed_gems_damage_over_time_+%_final + /// + LocalDisplaySocketedGemsDamageOverTimePctFinal = 4905, + + /// + /// deal_chaos_damage_per_second_for_10_seconds_on_hit + /// + DealChaosDamagePerSecondFor10SecondsOnHit = 4906, + + /// + /// movement_speed_+%_while_on_burning_chilled_shocked_ground + /// + MovementSpeedPctWhileOnBurningChilledShockedGround = 4907, + + /// + /// mana_%_gained_on_block + /// + ManaPctGainedOnBlock = 4908, + + /// + /// projectiles_drop_caustic_cloud + /// + ProjectilesDropCausticCloud = 4909, + + /// + /// base_projectile_ground_caustic_cloud_damage_per_minute + /// + BaseProjectileGroundCausticCloudDamagePerMinute = 4910, + + /// + /// local_display_socketed_non_curse_aura_gems_effect_+% + /// + LocalDisplaySocketedNonCurseAuraGemsEffectPct = 4911, + + /// + /// local_display_fire_burst_on_hit_% + /// + LocalDisplayFireBurstOnHitPct = 4912, + + /// + /// essence_support_attack_and_cast_speed_+%_final + /// + EssenceSupportAttackAndCastSpeedPctFinal = 4913, + + /// + /// essence_support_elemental_damage_+%_final + /// + EssenceSupportElementalDamagePctFinal = 4914, + + /// + /// base_number_of_essence_spirits_allowed + /// + BaseNumberOfEssenceSpiritsAllowed = 4915, + + /// + /// number_of_essence_spirits_allowed + /// + NumberOfEssenceSpiritsAllowed = 4916, + + /// + /// number_of_active_essence_spirits + /// + NumberOfActiveEssenceSpirits = 4917, + + /// + /// chest_drop_additional_prophecy_coins + /// + ChestDropAdditionalProphecyCoins = 4918, + + /// + /// ground_effect_variation + /// + GroundEffectVariation = 4919, + + /// + /// essence_support_damage_over_time_+%_final + /// + EssenceSupportDamageOverTimePctFinal = 4920, + + /// + /// local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius + /// + LocalUniqueJewelSpectresGainSoulEaterOnKillPctChanceWith50IntInRadius = 4921, + + /// + /// spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance + /// + SpectresGainSoulEaterFor20SecondsOnKillPctChance = 4922, + + /// + /// gain_soul_eater_for_20_seconds_on_kill_%_chance + /// + GainSoulEaterFor20SecondsOnKillPctChance = 4923, + + /// + /// local_unique_cast_socketed_cold_skills_on_melee_critical_strike + /// + LocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4924, + + /// + /// main_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike + /// + MainHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4925, + + /// + /// off_hand_local_unique_cast_socketed_cold_skills_on_melee_critical_strike + /// + OffHandLocalUniqueCastSocketedColdSkillsOnMeleeCriticalStrike = 4926, + + /// + /// global_critical_strike_chance_+%_vs_chilled_enemies + /// + GlobalCriticalStrikeChancePctVsChilledEnemies = 4927, + + /// + /// unique_cospris_malice_cold_spells_triggered + /// + UniqueCosprisMaliceColdSpellsTriggered = 4928, + + /// + /// projectile_ground_caustic_cloud_radius + /// + ProjectileGroundCausticCloudRadius = 4929, + + /// + /// gain_phasing_if_enemy_killed_recently + /// + GainPhasingIfEnemyKilledRecently = 4930, + + /// + /// movement_skills_deal_no_physical_damage + /// + MovementSkillsDealNoPhysicalDamage = 4931, + + /// + /// X_mana_per_4_strength + /// + XManaPer4Strength = 4932, + + /// + /// energy_shield_+%_per_10_strength + /// + EnergyShieldPctPer10Strength = 4933, + + /// + /// X_life_per_4_dexterity + /// + XLifePer4Dexterity = 4934, + + /// + /// melee_physical_damage_+%_per_10_dexterity + /// + MeleePhysicalDamagePctPer10Dexterity = 4935, + + /// + /// X_accuracy_per_2_intelligence + /// + XAccuracyPer2Intelligence = 4936, + + /// + /// evasion_+%_per_10_intelligence + /// + EvasionPctPer10Intelligence = 4937, + + /// + /// maximum_life_%_to_add_as_maximum_armour + /// + MaximumLifePctToAddAsMaximumArmour = 4938, + + /// + /// monster_no_drops_if_death_timer_expired + /// + MonsterNoDropsIfDeathTimerExpired = 4939, + + /// + /// attack_area_of_effect_+% + /// + AttackAreaOfEffectPct = 4940, + + /// + /// physical_damage_can_shock + /// + PhysicalDamageCanShock = 4941, + + /// + /// deal_no_elemental_damage + /// + DealNoElementalDamage = 4942, + + /// + /// immune_to_freeze + /// + ImmuneToFreeze = 4943, + + /// + /// immune_to_ignite + /// + ImmuneToIgnite = 4944, + + /// + /// immune_to_chill + /// + ImmuneToChill = 4945, + + /// + /// monster_drop_no_essences + /// + MonsterDropNoEssences = 4946, + + /// + /// base_immune_to_freeze + /// + BaseImmuneToFreeze = 4947, + + /// + /// base_immune_to_chill + /// + BaseImmuneToChill = 4948, + + /// + /// base_immune_to_ignite + /// + BaseImmuneToIgnite = 4949, + + /// + /// base_immune_to_shock + /// + BaseImmuneToShock = 4950, + + /// + /// base_cannot_gain_bleeding + /// + BaseCannotGainBleeding = 4951, + + /// + /// map_boss_dropped_unique_items_+ + /// + MapBossDroppedUniqueItems = 4952, + + /// + /// map_boss_drops_corrupted_items + /// + MapBossDropsCorruptedItems = 4953, + + /// + /// map_players_and_monsters_damage_+%_per_curse + /// + MapPlayersAndMonstersDamagePctPerCurse = 4954, + + /// + /// map_players_and_monsters_critical_strike_chance_+% + /// + MapPlayersAndMonstersCriticalStrikeChancePct = 4955, + + /// + /// map_monsters_steal_charges + /// + MapMonstersStealCharges = 4956, + + /// + /// map_unidentified_maps_item_quantity_+% + /// + MapUnidentifiedMapsItemQuantityPct = 4957, + + /// + /// map_boss_dropped_item_quantity_+% + /// + MapBossDroppedItemQuantityPct = 4958, + + /// + /// map_number_of_additional_mods + /// + MapNumberOfAdditionalMods = 4959, + + /// + /// map_nemesis_dropped_items_+ + /// + MapNemesisDroppedItems = 4960, + + /// + /// map_contains_master + /// + MapContainsMaster = 4961, + + /// + /// buff_impl_stat + /// + BuffImplStat = 4962, + + /// + /// cannot_be_shocked + /// + CannotBeShocked = 4963, + + /// + /// restore_skill_life_% + /// + RestoreSkillLifePct = 4964, + + /// + /// restore_skill_mana_% + /// + RestoreSkillManaPct = 4965, + + /// + /// restore_skill_es_% + /// + RestoreSkillEsPct = 4966, + + /// + /// ground_tar_art_variation + /// + GroundTarArtVariation = 4967, + + /// + /// fire_damage_taken_when_enemy_ignited + /// + FireDamageTakenWhenEnemyIgnited = 4968, + + /// + /// life_leech_from_fire_damage_while_ignited_permyriad + /// + LifeLeechFromFireDamageWhileIgnitedPermyriad = 4969, + + /// + /// action_ignores_crit_tracking + /// + ActionIgnoresCritTracking = 4970, + + /// + /// movement_velocity_while_spider_+% + /// + MovementVelocityWhileSpiderPct = 4971, + + /// + /// is_spider + /// + IsSpider = 4972, + + /// + /// Projectile Attack Damage +% + /// + ProjectileAttackDamagePct = 4973, + + /// + /// covered_in_spiders_damage_+%_final + /// + CoveredInSpidersDamagePctFinal = 4974, + + /// + /// covered_in_spiders_attack_and_cast_speed_+%_final + /// + CoveredInSpidersAttackAndCastSpeedPctFinal = 4975, + + /// + /// map_create_instance_terrain_plugin + /// + MapCreateInstanceTerrainPlugin = 4976, + + /// + /// map_create_subarea + /// + MapCreateSubarea = 4977, + + /// + /// monster_map_boss_take_critical_strike_chance_+%_final + /// + MonsterMapBossTakeCriticalStrikeChancePctFinal = 4978, + + /// + /// monster_map_boss_extra_damage_taken_from_crit_+%_final + /// + MonsterMapBossExtraDamageTakenFromCritPctFinal = 4979, + + /// + /// extra_damage_taken_from_crit_+% + /// + ExtraDamageTakenFromCritPct = 4980, + + /// + /// chance_to_gain_frenzy_charge_on_stun_% + /// + ChanceToGainFrenzyChargeOnStunPct = 4981, + + /// + /// local_unique_flask_damage_over_time_+%_during_flask_effect + /// + LocalUniqueFlaskDamageOverTimePctDuringFlaskEffect = 4982, + + /// + /// local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect + /// + LocalUniqueFlaskNearbyEnemiesCursedWithLevelXDespairDuringFlaskEffect = 4983, + + /// + /// restore_skill_life_regeneration_rate_per_minute_% + /// + RestoreSkillLifeRegenerationRatePerMinutePct = 4984, + + /// + /// restore_skill_mana_regeneration_rate_per_minute_% + /// + RestoreSkillManaRegenerationRatePerMinutePct = 4985, + + /// + /// restore_skill_es_regeneration_rate_per_minute_% + /// + RestoreSkillEsRegenerationRatePerMinutePct = 4986, + + /// + /// projectiles_pierce_while_phasing + /// + ProjectilesPierceWhilePhasing = 4987, + + /// + /// avoid_projectiles_while_phasing_%_chance + /// + AvoidProjectilesWhilePhasingPctChance = 4988, + + /// + /// essence_display_drop_burning_ground_while_moving_fire_damage_per_second + /// + EssenceDisplayDropBurningGroundWhileMovingFireDamagePerSecond = 4989, + + /// + /// essence_display_elemental_damage_taken_while_not_moving_+% + /// + EssenceDisplayElementalDamageTakenWhileNotMovingPct = 4990, + + /// + /// local_flask_area_of_effect_+%_during_flask_effect + /// + LocalFlaskAreaOfEffectPctDuringFlaskEffect = 4991, + + /// + /// local_flask_number_of_additional_projectiles_during_flask_effect + /// + LocalFlaskNumberOfAdditionalProjectilesDuringFlaskEffect = 4992, + + /// + /// corrupted_blood_on_hit_duration + /// + CorruptedBloodOnHitDuration = 4993, + + /// + /// corrupted_blood_on_hit_num_stacks + /// + CorruptedBloodOnHitNumStacks = 4994, + + /// + /// take_no_actions_while_parent_dead + /// + TakeNoActionsWhileParentDead = 4995, + + /// + /// cast_on_hide_% + /// + CastOnHidePct = 4996, + + /// + /// map_item_level_override + /// + MapItemLevelOverride = 4997, + + /// + /// hallowed_ground_boss_use_clone_attack + /// + HallowedGroundBossUseCloneAttack = 4998, + + /// + /// hallowed_ground_boss_drop_tar_on_ground_slam + /// + HallowedGroundBossDropTarOnGroundSlam = 4999, + + /// + /// drop_ground_tar_on_hit_% + /// + DropGroundTarOnHitPct = 5000, + + /// + /// map_drop_stacked_deck_on_death_permyriad + /// + MapDropStackedDeckOnDeathPermyriad = 5001, + + /// + /// magic_monster_dropped_item_rarity_+% + /// + MagicMonsterDroppedItemRarityPct = 5002, + + /// + /// normal_monster_dropped_item_quantity_+% + /// + NormalMonsterDroppedItemQuantityPct = 5003, + + /// + /// map_player_has_level_X_projectile_weakness + /// + MapPlayerHasLevelXProjectileWeakness = 5004, + + /// + /// map_player_has_level_X_conductivity + /// + MapPlayerHasLevelXConductivity = 5005, + + /// + /// map_player_has_level_X_flammability + /// + MapPlayerHasLevelXFlammability = 5006, + + /// + /// map_player_has_level_X_frostbite + /// + MapPlayerHasLevelXFrostbite = 5007, + + /// + /// support_cast_on_crit_spell_damage_+%_final + /// + SupportCastOnCritSpellDamagePctFinal = 5008, + + /// + /// support_cast_on_melee_kill_spell_damage_+%_final + /// + SupportCastOnMeleeKillSpellDamagePctFinal = 5009, + + /// + /// avoid_projectiles_%_chance + /// + AvoidProjectilesPctChance = 5010, + + /// + /// monster_inside_monolith + /// + MonsterInsideMonolith = 5011, + + /// + /// map_spawn_extra_perandus_chests + /// + MapSpawnExtraPerandusChests = 5012, + + /// + /// map_spawn_cadiro_%_chance + /// + MapSpawnCadiroPctChance = 5013, + + /// + /// cast_on_unhide_% + /// + CastOnUnhidePct = 5014, + + /// + /// map_players_and_monsters_have_resolute_technique + /// + MapPlayersAndMonstersHaveResoluteTechnique = 5015, + + /// + /// map_resolute_technique + /// + MapResoluteTechnique = 5016, + + /// + /// map_unique_boss_drops_divination_cards + /// + MapUniqueBossDropsDivinationCards = 5017, + + /// + /// all_damage_can_chill + /// + AllDamageCanChill = 5018, + + /// + /// all_damage_can_shock + /// + AllDamageCanShock = 5019, + + /// + /// all_damage_can_ignite + /// + AllDamageCanIgnite = 5020, + + /// + /// elementalist_gain_shaper_of_desolation_every_10_seconds + /// + ElementalistGainShaperOfDesolationEvery10Seconds = 5021, + + /// + /// monster_delay_item_drops_millis + /// + MonsterDelayItemDropsMillis = 5022, + + /// + /// map_area_contains_grandmaster_ally + /// + MapAreaContainsGrandmasterAlly = 5023, + + /// + /// map_contains_creeping_agony + /// + MapContainsCreepingAgony = 5024, + + /// + /// map_portals_do_not_expire + /// + MapPortalsDoNotExpire = 5025, + + /// + /// map_monsters_are_converted_on_kill + /// + MapMonstersAreConvertedOnKill = 5026, + + /// + /// map_contains_x_fewer_portals + /// + MapContainsXFewerPortals = 5027, + + /// + /// monsters_are_converted_on_kill + /// + MonstersAreConvertedOnKill = 5028, + + /// + /// map_no_uniques_drop_randomly + /// + MapNoUniquesDropRandomly = 5029, + + /// + /// map_players_additional_number_of_projectiles + /// + MapPlayersAdditionalNumberOfProjectiles = 5030, + + /// + /// map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on + /// + MapDamagePctOfTypeInflictedByCurrentGroundEffectYouAreOn = 5031, + + /// + /// on_desecrated_ground + /// + OnDesecratedGround = 5032, + + /// + /// map_players_and_monsters_curses_are_reflected + /// + MapPlayersAndMonstersCursesAreReflected = 5033, + + /// + /// map_player_has_level_X_silence + /// + MapPlayerHasLevelXSilence = 5034, + + /// + /// map_strongbox_items_dropped_are_mirrored + /// + MapStrongboxItemsDroppedAreMirrored = 5035, + + /// + /// map_players_are_poisoned_while_moving_chaos_damage_per_second + /// + MapPlayersArePoisonedWhileMovingChaosDamagePerSecond = 5036, + + /// + /// discharge_triggered_damage_+%_final + /// + DischargeTriggeredDamagePctFinal = 5037, + + /// + /// map_normal_items_drop_as_magic + /// + MapNormalItemsDropAsMagic = 5038, + + /// + /// monster_no_additional_player_scaling + /// + MonsterNoAdditionalPlayerScaling = 5039, + + /// + /// phase_through_objects_while_spider + /// + PhaseThroughObjectsWhileSpider = 5040, + + /// + /// map_flask_charges_recovered_per_3_seconds_% + /// + MapFlaskChargesRecoveredPer3SecondsPct = 5041, + + /// + /// virtual_flask_charges_recovered_per_3_seconds_% + /// + VirtualFlaskChargesRecoveredPer3SecondsPct = 5042, + + /// + /// combined_hit_all_damage_+%_final + /// + CombinedHitAllDamagePctFinal = 5043, + + /// + /// support_remote_mine_hit_damage_+%_final + /// + SupportRemoteMineHitDamagePctFinal = 5044, + + /// + /// map_magic_items_drop_as_normal + /// + MapMagicItemsDropAsNormal = 5045, + + /// + /// flask_charges_recovered_per_3_seconds_% + /// + FlaskChargesRecoveredPer3SecondsPct = 5046, + + /// + /// support_trap_hit_damage_+%_final + /// + SupportTrapHitDamagePctFinal = 5047, + + /// + /// damage_vs_tiki_totems_+% + /// + DamageVsTikiTotemsPct = 5048, + + /// + /// is_tiki_totem + /// + IsTikiTotem = 5049, + + /// + /// self_ignite_duration_+%_final + /// + SelfIgniteDurationPctFinal = 5050, + + /// + /// self_bleed_duration_+%_final + /// + SelfBleedDurationPctFinal = 5051, + + /// + /// self_poison_duration_+%_final + /// + SelfPoisonDurationPctFinal = 5052, + + /// + /// treasure_pile_damage_+%_final + /// + TreasurePileDamagePctFinal = 5053, + + /// + /// map_contains_additional_packs_of_fire_monsters + /// + MapContainsAdditionalPacksOfFireMonsters = 5054, + + /// + /// map_contains_additional_packs_of_chaos_monsters + /// + MapContainsAdditionalPacksOfChaosMonsters = 5055, + + /// + /// map_contains_additional_packs_of_physical_monsters + /// + MapContainsAdditionalPacksOfPhysicalMonsters = 5056, + + /// + /// map_contains_additional_packs_of_lightning_monsters + /// + MapContainsAdditionalPacksOfLightningMonsters = 5057, + + /// + /// map_contains_additional_packs_of_cold_monsters + /// + MapContainsAdditionalPacksOfColdMonsters = 5058, + + /// + /// map_players_and_monsters_fire_damage_taken_+% + /// + MapPlayersAndMonstersFireDamageTakenPct = 5059, + + /// + /// map_players_and_monsters_chaos_damage_taken_+% + /// + MapPlayersAndMonstersChaosDamageTakenPct = 5060, + + /// + /// map_players_and_monsters_physical_damage_taken_+% + /// + MapPlayersAndMonstersPhysicalDamageTakenPct = 5061, + + /// + /// map_players_and_monsters_lightning_damage_taken_+% + /// + MapPlayersAndMonstersLightningDamageTakenPct = 5062, + + /// + /// map_players_and_monsters_cold_damage_taken_+% + /// + MapPlayersAndMonstersColdDamageTakenPct = 5063, + + /// + /// map_players_and_monsters_have_onslaught_if_hit_recently + /// + MapPlayersAndMonstersHaveOnslaughtIfHitRecently = 5064, + + /// + /// map_players_and_monsters_damage_taken_+%_while_stationary + /// + MapPlayersAndMonstersDamageTakenPctWhileStationary = 5065, + + /// + /// chance_to_poison_on_melee_hit_% + /// + ChanceToPoisonOnMeleeHitPct = 5066, + + /// + /// chilled_ground_effect_+% + /// + ChilledGroundEffectPct = 5067, + + /// + /// damage_vs_spiders_while_spider_+% + /// + DamageVsSpidersWhileSpiderPct = 5068, + + /// + /// damage_taken_from_spiders_while_spider_+% + /// + DamageTakenFromSpidersWhileSpiderPct = 5069, + + /// + /// map_players_and_monsters_movement_speed_+% + /// + MapPlayersAndMonstersMovementSpeedPct = 5070, + + /// + /// damage_taken_+%_for_4_seconds_after_spending_200_mana + /// + DamageTakenPctFor4SecondsAfterSpending200Mana = 5071, + + /// + /// life_regeneration_per_minute_per_active_buff + /// + LifeRegenerationPerMinutePerActiveBuff = 5072, + + /// + /// buff_effect_+%_on_low_energy_shield + /// + BuffEffectPctOnLowEnergyShield = 5073, + + /// + /// on_low_energy_shield + /// + OnLowEnergyShield = 5074, + + /// + /// map_ground_haste_action_speed_+% + /// + MapGroundHasteActionSpeedPct = 5075, + + /// + /// map_drops_all_maps + /// + MapDropsAllMaps = 5076, + + /// + /// essence_delirium_spawn_monster_on_death_variation + /// + EssenceDeliriumSpawnMonsterOnDeathVariation = 5077, + + /// + /// essence_anguish_spawn_monster_on_death_variation + /// + EssenceAnguishSpawnMonsterOnDeathVariation = 5078, + + /// + /// essence_suffering_spawn_monster_on_death_variation + /// + EssenceSufferingSpawnMonsterOnDeathVariation = 5079, + + /// + /// essence_corrupt_spawn_monster_on_death_variation + /// + EssenceCorruptSpawnMonsterOnDeathVariation = 5080, + + /// + /// map_ground_haste_effect_patches_per_100_tiles + /// + MapGroundHasteEffectPatchesPer100Tiles = 5081, + + /// + /// map_ground_haste_effect_radius + /// + MapGroundHasteEffectRadius = 5082, + + /// + /// map_breach_rules + /// + MapBreachRules = 5083, + + /// + /// cannot_regenerate_energy_shield + /// + CannotRegenerateEnergyShield = 5084, + + /// + /// cannot_recharge_energy_shield + /// + CannotRechargeEnergyShield = 5085, + + /// + /// energy_shield_lost_per_minute_% + /// + EnergyShieldLostPerMinutePct = 5086, + + /// + /// life_leech_applies_to_energy_shield_on_full_life + /// + LifeLeechAppliesToEnergyShieldOnFullLife = 5087, + + /// + /// virtual_leech_energy_shield_instead_of_life + /// + VirtualLeechEnergyShieldInsteadOfLife = 5088, + + /// + /// current_number_of_spinning_blades + /// + CurrentNumberOfSpinningBlades = 5089, + + /// + /// virtual_current_number_of_spinning_blades + /// + VirtualCurrentNumberOfSpinningBlades = 5090, + + /// + /// vaal_blade_vortex_has_10_spinning_blades + /// + VaalBladeVortexHas10SpinningBlades = 5091, + + /// + /// fire_beam_additional_stack_damage_+%_final + /// + FireBeamAdditionalStackDamagePctFinal = 5092, + + /// + /// number_of_blood_ravens_to_summon + /// + NumberOfBloodRavensToSummon = 5093, + + /// + /// map_fishy_effect_0 + /// + MapFishyEffect0 = 5094, + + /// + /// map_hidden_players_have_insanity + /// + MapHiddenPlayersHaveInsanity = 5095, + + /// + /// map_monster_and_player_onslaught_effect_+% + /// + MapMonsterAndPlayerOnslaughtEffectPct = 5096, + + /// + /// map_damage_while_stationary_+% + /// + MapDamageWhileStationaryPct = 5097, + + /// + /// map_damage_taken_while_stationary_+% + /// + MapDamageTakenWhileStationaryPct = 5098, + + /// + /// map_item_drop_quality_also_applies_to_map_item_drop_rarity + /// + MapItemDropQualityAlsoAppliesToMapItemDropRarity = 5099, + + /// + /// map_has_x%_quality + /// + MapHasXpctQuality = 5100, + + /// + /// map_unique_monsters_drop_corrupted_items + /// + MapUniqueMonstersDropCorruptedItems = 5101, + + /// + /// fire_beam_degen_spread_to_enemies_in_radius_on_kill + /// + FireBeamDegenSpreadToEnemiesInRadiusOnKill = 5102, + + /// + /// fire_beam_enemy_fire_resistance_%_per_stack + /// + FireBeamEnemyFireResistancePctPerStack = 5103, + + /// + /// fire_beam_cast_speed_+% + /// + FireBeamCastSpeedPct = 5104, + + /// + /// map_corrupted_bosses_drop_x_additional_vaal_items + /// + MapCorruptedBossesDropXAdditionalVaalItems = 5105, + + /// + /// map_strongboxes_are_corrupted + /// + MapStrongboxesAreCorrupted = 5106, + + /// + /// map_players_cannot_take_reflected_damage + /// + MapPlayersCannotTakeReflectedDamage = 5107, + + /// + /// map_player_flask_recovery_is_instant + /// + MapPlayerFlaskRecoveryIsInstant = 5108, + + /// + /// map_contains_x_additional_packs_with_mirrored_rare_monsters + /// + MapContainsXAdditionalPacksWithMirroredRareMonsters = 5109, + + /// + /// map_contains_x_additional_healing_packs + /// + MapContainsXAdditionalHealingPacks = 5110, + + /// + /// map_contains_x_additional_normal_packs + /// + MapContainsXAdditionalNormalPacks = 5111, + + /// + /// map_contains_x_additional_magic_packs + /// + MapContainsXAdditionalMagicPacks = 5112, + + /// + /// map_contains_x_additional_rare_packs + /// + MapContainsXAdditionalRarePacks = 5113, + + /// + /// map_contains_x_additional_packs_that_convert_on_death + /// + MapContainsXAdditionalPacksThatConvertOnDeath = 5114, + + /// + /// map_contains_x_additional_packs_on_their_own_team + /// + MapContainsXAdditionalPacksOnTheirOwnTeam = 5115, + + /// + /// map_on_complete_drop_x_additional_maps + /// + MapOnCompleteDropXAdditionalMaps = 5116, + + /// + /// monster_converts_on_death + /// + MonsterConvertsOnDeath = 5117, + + /// + /// flask_recovery_is_instant + /// + FlaskRecoveryIsInstant = 5118, + + /// + /// map_fishy_effect_1 + /// + MapFishyEffect1 = 5119, + + /// + /// map_fishy_effect_2 + /// + MapFishyEffect2 = 5120, + + /// + /// map_fishy_effect_3 + /// + MapFishyEffect3 = 5121, + + /// + /// map_magic_pack_size_+% + /// + MapMagicPackSizePct = 5122, + + /// + /// map_rogue_exiles_damage_+% + /// + MapRogueExilesDamagePct = 5123, + + /// + /// map_rogue_exiles_maximum_life_+% + /// + MapRogueExilesMaximumLifePct = 5124, + + /// + /// map_rogue_exiles_drop_x_additional_jewels + /// + MapRogueExilesDropXAdditionalJewels = 5125, + + /// + /// monster_drop_additional_jewels + /// + MonsterDropAdditionalJewels = 5126, + + /// + /// map_strongbox_monsters_item_quantity_+% + /// + MapStrongboxMonstersItemQuantityPct = 5127, + + /// + /// map_strongbox_monsters_actor_scale_+% + /// + MapStrongboxMonstersActorScalePct = 5128, + + /// + /// map_strongbox_monsters_attack_speed_+% + /// + MapStrongboxMonstersAttackSpeedPct = 5129, + + /// + /// map_strongbox_monsters_movement_velocity_+% + /// + MapStrongboxMonstersMovementVelocityPct = 5130, + + /// + /// strongbox_monsters_item_quantity_+% + /// + StrongboxMonstersItemQuantityPct = 5131, + + /// + /// strongbox_monsters_actor_scale_+% + /// + StrongboxMonstersActorScalePct = 5132, + + /// + /// strongbox_monsters_attack_speed_+% + /// + StrongboxMonstersAttackSpeedPct = 5133, + + /// + /// strongbox_monsters_movement_velocity_+% + /// + StrongboxMonstersMovementVelocityPct = 5134, + + /// + /// damage_+%_per_poison_stack + /// + DamagePctPerPoisonStack = 5135, + + /// + /// movement_velocity_+%_per_poison_stack + /// + MovementVelocityPctPerPoisonStack = 5136, + + /// + /// map_damage_+%_per_poison_stack + /// + MapDamagePctPerPoisonStack = 5137, + + /// + /// map_movement_velocity_+%_per_poison_stack + /// + MapMovementVelocityPctPerPoisonStack = 5138, + + /// + /// map_contains_x_additional_poison_packs + /// + MapContainsXAdditionalPoisonPacks = 5139, + + /// + /// inspiring_cry_enemy_count_override + /// + InspiringCryEnemyCountOverride = 5140, + + /// + /// map_area_contains_x_additional_clusters_of_explosive_barrels + /// + MapAreaContainsXAdditionalClustersOfExplosiveBarrels = 5141, + + /// + /// map_bonus_barrel_% + /// + MapBonusBarrelPct = 5142, + + /// + /// empowering_cry_physical_damage_added_as_fire_damage_% + /// + EmpoweringCryPhysicalDamageAddedAsFireDamagePct = 5143, + + /// + /// map_boss_accompanied_by_bodyguards + /// + MapBossAccompaniedByBodyguards = 5144, + + /// + /// blade_vortex_hit_rate_+%_per_blade + /// + BladeVortexHitRatePctPerBlade = 5145, + + /// + /// blade_vortex_damage_+%_per_blade_final + /// + BladeVortexDamagePctPerBladeFinal = 5146, + + /// + /// golem_maximum_life_+% + /// + GolemMaximumLifePct = 5147, + + /// + /// golem_life_regeneration_per_minute_% + /// + GolemLifeRegenerationPerMinutePct = 5148, + + /// + /// have_summoned_a_golem_in_past_8_seconds + /// + HaveSummonedAGolemInPast8Seconds = 5149, + + /// + /// damage_+%_if_golem_summoned_in_past_8_seconds + /// + DamagePctIfGolemSummonedInPast8Seconds = 5150, + + /// + /// golem_damage_+%_if_summoned_in_past_8_seconds + /// + GolemDamagePctIfSummonedInPast8Seconds = 5151, + + /// + /// golem_skill_cooldown_recovery_+% + /// + GolemSkillCooldownRecoveryPct = 5152, + + /// + /// golem_cooldown_recovery_+% + /// + GolemCooldownRecoveryPct = 5153, + + /// + /// golem_buff_effect_+% + /// + GolemBuffEffectPct = 5154, + + /// + /// golem_attack_and_cast_speed_+% + /// + GolemAttackAndCastSpeedPct = 5155, + + /// + /// golem_physical_damage_reduction_rating + /// + GolemPhysicalDamageReductionRating = 5156, + + /// + /// primordial_jewel_count + /// + PrimordialJewelCount = 5157, + + /// + /// number_of_golems_allowed_with_3_primordial_jewels + /// + NumberOfGolemsAllowedWith3PrimordialJewels = 5158, + + /// + /// map_monster_curse_effect_on_self_+% + /// + MapMonsterCurseEffectOnSelfPct = 5159, + + /// + /// map_player_curse_effect_on_self_+% + /// + MapPlayerCurseEffectOnSelfPct = 5160, + + /// + /// thrown_shield_num_additional_projectiles + /// + ThrownShieldNumAdditionalProjectiles = 5161, + + /// + /// buff_damage_while_stationery_+% + /// + BuffDamageWhileStationeryPct = 5162, + + /// + /// buff_damage_taken_while_stationery_+% + /// + BuffDamageTakenWhileStationeryPct = 5163, + + /// + /// map_display_strongbox_monsters_are_enraged + /// + MapDisplayStrongboxMonstersAreEnraged = 5164, + + /// + /// celestial_footprints_from_item + /// + CelestialFootprintsFromItem = 5165, + + /// + /// deal_1000_chaos_damage_per_second_for_10_seconds_on_hit + /// + Deal1000ChaosDamagePerSecondFor10SecondsOnHit = 5166, + + /// + /// map_strongboxes_minimum_rarity + /// + MapStrongboxesMinimumRarity = 5167, + + /// + /// map_area_contains_x_additional_clusters_of_wealthy_barrels + /// + MapAreaContainsXAdditionalClustersOfWealthyBarrels = 5168, + + /// + /// map_area_contains_x_additional_clusters_of_volatile_barrels + /// + MapAreaContainsXAdditionalClustersOfVolatileBarrels = 5169, + + /// + /// map_area_contains_x_additional_clusters_of_bloodworm_barrels + /// + MapAreaContainsXAdditionalClustersOfBloodwormBarrels = 5170, + + /// + /// map_area_contains_x_additional_clusters_of_parasite_barrels + /// + MapAreaContainsXAdditionalClustersOfParasiteBarrels = 5171, + + /// + /// map_area_contains_x_additional_clusters_of_beacon_barrels + /// + MapAreaContainsXAdditionalClustersOfBeaconBarrels = 5172, + + /// + /// map_contains_x_additional_rare_packs_if_rare + /// + MapContainsXAdditionalRarePacksIfRare = 5173, + + /// + /// map_contains_x_additional_magic_packs_if_magic + /// + MapContainsXAdditionalMagicPacksIfMagic = 5174, + + /// + /// map_contains_x_additional_normal_packs_if_normal + /// + MapContainsXAdditionalNormalPacksIfNormal = 5175, + + /// + /// map_boss_drops_x_additional_vaal_items + /// + MapBossDropsXAdditionalVaalItems = 5176, + + /// + /// fire_beam_length_+% + /// + FireBeamLengthPct = 5177, + + /// + /// is_breach_monster + /// + IsBreachMonster = 5178, + + /// + /// cast_linked_spells_on_shocked_enemy_kill_% + /// + CastLinkedSpellsOnShockedEnemyKillPct = 5179, + + /// + /// map_equipment_drops_identified_in_identified_areas + /// + MapEquipmentDropsIdentifiedInIdentifiedAreas = 5180, + + /// + /// map_items_drop_corrupted_% + /// + MapItemsDropCorruptedPct = 5181, + + /// + /// doom_arrow_area_of_effect_+%_final_per_frenzy_charge + /// + DoomArrowAreaOfEffectPctFinalPerFrenzyCharge = 5182, + + /// + /// bonespire_number_of_bone_piles_to_spawn + /// + BonespireNumberOfBonePilesToSpawn = 5183, + + /// + /// mortar_cone_angle + /// + MortarConeAngle = 5184, + + /// + /// current_consume_charges + /// + CurrentConsumeCharges = 5185, + + /// + /// maximum_consume_charges + /// + MaximumConsumeCharges = 5186, + + /// + /// expend_consume_charges_on_skill_use + /// + ExpendConsumeChargesOnSkillUse = 5187, + + /// + /// gain_consume_charges_on_skill_use + /// + GainConsumeChargesOnSkillUse = 5188, + + /// + /// secondary_skill_effect_duration_+% + /// + SecondarySkillEffectDurationPct = 5189, + + /// + /// X_armour_per_active_totem + /// + XArmourPerActiveTotem = 5190, + + /// + /// map_pack_size_+%_in_unidentified_areas + /// + MapPackSizePctInUnidentifiedAreas = 5191, + + /// + /// chance_to_dodge_%_at_max_charged_attack_stacks + /// + ChanceToDodgePctAtMaxChargedAttackStacks = 5192, + + /// + /// critical_strikes_deal_no_damage + /// + CriticalStrikesDealNoDamage = 5193, + + /// + /// spell_damage_+%_if_have_crit_recently + /// + SpellDamagePctIfHaveCritRecently = 5194, + + /// + /// critical_strike_multiplier_+_if_have_dealt_non_crit_recently + /// + CriticalStrikeMultiplierIfHaveDealtNonCritRecently = 5195, + + /// + /// track_have_dealt_non_crit_recently + /// + TrackHaveDealtNonCritRecently = 5196, + + /// + /// have_dealt_non_crit_recently + /// + HaveDealtNonCritRecently = 5197, + + /// + /// total_base_armour_rating + /// + TotalBaseArmourRating = 5198, + + /// + /// combined_only_armour_+% + /// + CombinedOnlyArmourPct = 5199, + + /// + /// combined_armour_+% + /// + CombinedArmourPct = 5200, + + /// + /// combined_only_armour_+%_final + /// + CombinedOnlyArmourPctFinal = 5201, + + /// + /// combined_evasion_rating_+%_final + /// + CombinedEvasionRatingPctFinal = 5202, + + /// + /// combined_only_armour_from_shield_+% + /// + CombinedOnlyArmourFromShieldPct = 5203, + + /// + /// combined_armour_from_shield_+% + /// + CombinedArmourFromShieldPct = 5204, + + /// + /// armour_differs_against_projectiles + /// + ArmourDiffersAgainstProjectiles = 5205, + + /// + /// armour_while_stationary + /// + ArmourWhileStationary = 5206, + + /// + /// mana_regeneration_rate_+%_while_stationary + /// + ManaRegenerationRatePctWhileStationary = 5207, + + /// + /// non_critical_strikes_deal_no_damage + /// + NonCriticalStrikesDealNoDamage = 5208, + + /// + /// chilled_ground_when_hit_with_attack_% + /// + ChilledGroundWhenHitWithAttackPct = 5209, + + /// + /// critical_strike_multiplier_+_per_1%_block_chance + /// + CriticalStrikeMultiplierPer1PctBlockChance = 5210, + + /// + /// local_flask_unholy_might_during_flask_effect + /// + LocalFlaskUnholyMightDuringFlaskEffect = 5211, + + /// + /// spell_minimum_added_cold_damage_per_power_charge + /// + SpellMinimumAddedColdDamagePerPowerCharge = 5212, + + /// + /// spell_maximum_added_cold_damage_per_power_charge + /// + SpellMaximumAddedColdDamagePerPowerCharge = 5213, + + /// + /// recover_X_mana_on_killing_frozen_enemy + /// + RecoverXManaOnKillingFrozenEnemy = 5214, + + /// + /// chance_to_gain_power_charge_on_killing_frozen_enemy_% + /// + ChanceToGainPowerChargeOnKillingFrozenEnemyPct = 5215, + + /// + /// damage_+%_if_you_have_frozen_enemy_recently + /// + DamagePctIfYouHaveFrozenEnemyRecently = 5216, + + /// + /// track_have_frozen_enemy_recently + /// + TrackHaveFrozenEnemyRecently = 5217, + + /// + /// have_frozen_enemy_recently + /// + HaveFrozenEnemyRecently = 5218, + + /// + /// maximum_added_lightning_damage_per_10_int + /// + MaximumAddedLightningDamagePer10Int = 5219, + + /// + /// attack_speed_+%_per_25_dex + /// + AttackSpeedPctPer25Dex = 5220, + + /// + /// number_of_shocked_enemies_killed_recently + /// + NumberOfShockedEnemiesKilledRecently = 5221, + + /// + /// minimum_added_lightning_damage_per_shocked_enemy_killed_recently + /// + MinimumAddedLightningDamagePerShockedEnemyKilledRecently = 5222, + + /// + /// maximum_added_lightning_damage_per_shocked_enemy_killed_recently + /// + MaximumAddedLightningDamagePerShockedEnemyKilledRecently = 5223, + + /// + /// reflect_shocks + /// + ReflectShocks = 5224, + + /// + /// movement_speed_+%_while_bleeding + /// + MovementSpeedPctWhileBleeding = 5225, + + /// + /// physical_damage_taken_+%_while_moving + /// + PhysicalDamageTakenPctWhileMoving = 5226, + + /// + /// physical_damage_reduction_rating_%_while_not_moving + /// + PhysicalDamageReductionRatingPctWhileNotMoving = 5227, + + /// + /// display_max_fire_beam_stacks + /// + DisplayMaxFireBeamStacks = 5228, + + /// + /// display_max_blight_stacks + /// + DisplayMaxBlightStacks = 5229, + + /// + /// virtual_track_movement + /// + VirtualTrackMovement = 5230, + + /// + /// is_moving + /// + IsMoving = 5231, + + /// + /// mass_flicker_strike_number_of_teleports + /// + MassFlickerStrikeNumberOfTeleports = 5232, + + /// + /// blind_chilled_enemies_on_hit_% + /// + BlindChilledEnemiesOnHitPct = 5233, + + /// + /// cold_damage_+%_per_frenzy_charge + /// + ColdDamagePctPerFrenzyCharge = 5234, + + /// + /// gain_frenzy_charge_on_reaching_maximum_power_charges + /// + GainFrenzyChargeOnReachingMaximumPowerCharges = 5235, + + /// + /// gain_frenzy_charge_on_hit_while_bleeding + /// + GainFrenzyChargeOnHitWhileBleeding = 5236, + + /// + /// virtual_chaos_damage_does_not_bypass_energy_shield + /// + VirtualChaosDamageDoesNotBypassEnergyShield = 5237, + + /// + /// chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana + /// + ChaosDamageDoesNotBypassEnergyShieldWhileNotLowLifeOrMana = 5238, + + /// + /// local_display_grants_level_X_reckoning + /// + LocalDisplayGrantsLevelXReckoning = 5239, + + /// + /// reflect_shocks_to_enemies_in_radius + /// + ReflectShocksToEnemiesInRadius = 5240, + + /// + /// recover_%_maximum_life_on_killing_poisoned_enemy + /// + RecoverPctMaximumLifeOnKillingPoisonedEnemy = 5241, + + /// + /// minions_recover_%_maximum_life_on_killing_poisoned_enemy + /// + MinionsRecoverPctMaximumLifeOnKillingPoisonedEnemy = 5242, + + /// + /// recover_X_life_on_enemy_ignited + /// + RecoverXLifeOnEnemyIgnited = 5243, + + /// + /// cold_penetration_%_vs_chilled_enemies + /// + ColdPenetrationPctVsChilledEnemies = 5244, + + /// + /// local_display_grants_level_X_envy + /// + LocalDisplayGrantsLevelXEnvy = 5245, + + /// + /// cast_on_cyclone_contact_% + /// + CastOnCycloneContactPct = 5246, + + /// + /// cyclone_has_triggered_skill + /// + CycloneHasTriggeredSkill = 5247, + + /// + /// minions_chance_to_poison_on_hit_% + /// + MinionsChanceToPoisonOnHitPct = 5248, + + /// + /// X_armour_if_you_have_blocked_recently + /// + XArmourIfYouHaveBlockedRecently = 5249, + + /// + /// enemies_explode_on_kill + /// + EnemiesExplodeOnKill = 5250, + + /// + /// local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill + /// + LocalDisplayAttackWithLevelXBoneNovaOnBleedingEnemyKill = 5251, + + /// + /// attack_trigger_on_hitting_bleeding_enemy_% + /// + AttackTriggerOnHittingBleedingEnemyPct = 5252, + + /// + /// permanently_intimidate_enemy_on_block + /// + PermanentlyIntimidateEnemyOnBlock = 5253, + + /// + /// receive_bleeding_chance_%_when_hit_by_attack + /// + ReceiveBleedingChancePctWhenHitByAttack = 5254, + + /// + /// attacks_cause_bleeding_vs_cursed_enemies + /// + AttacksCauseBleedingVsCursedEnemies = 5255, + + /// + /// armour_increased_by_uncapped_fire_resistance + /// + ArmourIncreasedByUncappedFireResistance = 5256, + + /// + /// evasion_rating_increased_by_uncapped_cold_resistance + /// + EvasionRatingIncreasedByUncappedColdResistance = 5257, + + /// + /// critical_strike_chance_increased_by_uncapped_lightning_resistance + /// + CriticalStrikeChanceIncreasedByUncappedLightningResistance = 5258, + + /// + /// combined_critical_strike_chance_+% + /// + CombinedCriticalStrikeChancePct = 5259, + + /// + /// combined_critical_strike_chance_+%_final + /// + CombinedCriticalStrikeChancePctFinal = 5260, + + /// + /// totems_cannot_evade + /// + TotemsCannotEvade = 5261, + + /// + /// disable_seek_seal_prophecies + /// + DisableSeekSealProphecies = 5262, + + /// + /// mortar_distance_in_front_of_target + /// + MortarDistanceInFrontOfTarget = 5263, + + /// + /// apply_covered_in_ash_to_attacker_when_hit_% + /// + ApplyCoveredInAshToAttackerWhenHitPct = 5264, + + /// + /// covered_in_ash_movement_speed_+%_final + /// + CoveredInAshMovementSpeedPctFinal = 5265, + + /// + /// secondary_total_minimum_base_physical_damage + /// + SecondaryTotalMinimumBasePhysicalDamage = 5266, + + /// + /// secondary_total_maximum_base_physical_damage + /// + SecondaryTotalMaximumBasePhysicalDamage = 5267, + + /// + /// minimum_secondary_physical_damage_per_15_strength + /// + MinimumSecondaryPhysicalDamagePer15Strength = 5268, + + /// + /// maximum_secondary_physical_damage_per_15_strength + /// + MaximumSecondaryPhysicalDamagePer15Strength = 5269, + + /// + /// flame_geyser_number_of_splits + /// + FlameGeyserNumberOfSplits = 5270, + + /// + /// keystone_avatar_of_fire + /// + KeystoneAvatarOfFire = 5271, + + /// + /// keystone_eldritch_battery + /// + KeystoneEldritchBattery = 5272, + + /// + /// keystone_ancestral_bond + /// + KeystoneAncestralBond = 5273, + + /// + /// skeletal_chains_no_minions_damage_+%_final + /// + SkeletalChainsNoMinionsDamagePctFinal = 5274, + + /// + /// virtual_energy_shield_protects_mana + /// + VirtualEnergyShieldProtectsMana = 5275, + + /// + /// virtual_spend_energy_shield_for_costs_before_mana + /// + VirtualSpendEnergyShieldForCostsBeforeMana = 5276, + + /// + /// shock_nova_skill_area_of_effect_+%_per_contact_point + /// + ShockNovaSkillAreaOfEffectPctPerContactPoint = 5277, + + /// + /// spell_skills_deal_no_damage + /// + SpellSkillsDealNoDamage = 5278, + + /// + /// ignite_proliferation_radius + /// + IgniteProliferationRadius = 5279, + + /// + /// base_ignite_proliferation_radius + /// + BaseIgniteProliferationRadius = 5280, + + /// + /// transition_objects_at_state + /// + TransitionObjectsAtState = 5281, + + /// + /// fire_beam_enemy_fire_resistance_%_at_max_stacks + /// + FireBeamEnemyFireResistancePctAtMaxStacks = 5282, + + /// + /// attack_damage_+1%_per_300_of_min_of_armour_or_evasion + /// + AttackDamage1PctPer300OfMinOfArmourOrEvasion = 5283, + + /// + /// chance_to_fortify_on_melee_stun_% + /// + ChanceToFortifyOnMeleeStunPct = 5284, + + /// + /// gain_onslaught_while_you_have_fortify + /// + GainOnslaughtWhileYouHaveFortify = 5285, + + /// + /// local_six_linked_random_sockets + /// + LocalSixLinkedRandomSockets = 5286, + + /// + /// local_can_only_socket_corrupted_gems + /// + LocalCanOnlySocketCorruptedGems = 5287, + + /// + /// fire_beam_enemy_fire_resistance_%_maximum + /// + FireBeamEnemyFireResistancePctMaximum = 5288, + + /// + /// proximity_shield_ground_lightning_duration_ms + /// + ProximityShieldGroundLightningDurationMs = 5289, + + /// + /// map_player_charges_gained_+% + /// + MapPlayerChargesGainedPct = 5290, + + /// + /// curse_effect_on_self_+%_final + /// + CurseEffectOnSelfPctFinal = 5291, + + /// + /// map_monsters_curse_effect_on_self_+%_final + /// + MapMonstersCurseEffectOnSelfPctFinal = 5292, + + /// + /// map_monsters_%_chance_to_inflict_status_ailments + /// + MapMonstersPctChanceToInflictStatusAilments = 5293, + + /// + /// map_monsters_movement_speed_cannot_be_reduced_below_base + /// + MapMonstersMovementSpeedCannotBeReducedBelowBase = 5294, + + /// + /// map_monsters_cannot_be_taunted + /// + MapMonstersCannotBeTaunted = 5295, + + /// + /// map_monsters_always_ignite + /// + MapMonstersAlwaysIgnite = 5296, + + /// + /// map_monsters_additional_chaos_resistance + /// + MapMonstersAdditionalChaosResistance = 5297, + + /// + /// map_monsters_avoid_poison_blind_bleed_% + /// + MapMonstersAvoidPoisonBlindBleedPct = 5298, + + /// + /// base_avoid_poison_% + /// + BaseAvoidPoisonPct = 5299, + + /// + /// map_players_have_point_blank + /// + MapPlayersHavePointBlank = 5300, + + /// + /// map_players_block_chance_+% + /// + MapPlayersBlockChancePct = 5301, + + /// + /// map_players_armour_+%_final + /// + MapPlayersArmourPctFinal = 5302, + + /// + /// map_monsters_accuracy_rating_+% + /// + MapMonstersAccuracyRatingPct = 5303, + + /// + /// map_players_extra_dodge_rolls + /// + MapPlayersExtraDodgeRolls = 5304, + + /// + /// extra_dodge_rolls + /// + ExtraDodgeRolls = 5305, + + /// + /// map_players_skill_area_of_effect_+%_final + /// + MapPlayersSkillAreaOfEffectPctFinal = 5306, + + /// + /// cannot_gain_frenzy_charges + /// + CannotGainFrenzyCharges = 5307, + + /// + /// cannot_gain_power_charges + /// + CannotGainPowerCharges = 5308, + + /// + /// map_players_cannot_gain_power_charges + /// + MapPlayersCannotGainPowerCharges = 5309, + + /// + /// map_players_cannot_gain_frenzy_charges + /// + MapPlayersCannotGainFrenzyCharges = 5310, + + /// + /// map_players_cannot_gain_endurance_charges + /// + MapPlayersCannotGainEnduranceCharges = 5311, + + /// + /// map_players_no_regeneration_including_es + /// + MapPlayersNoRegenerationIncludingEs = 5312, + + /// + /// map_player_life_and_es_recovery_speed_+%_final + /// + MapPlayerLifeAndEsRecoverySpeedPctFinal = 5313, + + /// + /// armour_+%_final + /// + ArmourPctFinal = 5314, + + /// + /// map_packs_are_abomination_monsters + /// + MapPacksAreAbominationMonsters = 5315, + + /// + /// gain_frenzy_charge_on_hitting_rare_or_unique_enemy_% + /// + GainFrenzyChargeOnHittingRareOrUniqueEnemyPct = 5316, + + /// + /// onslaught_duration_+% + /// + OnslaughtDurationPct = 5317, + + /// + /// curse_on_hit_level_10_vulnerability_% + /// + CurseOnHitLevel10VulnerabilityPct = 5318, + + /// + /// local_item_stats_are_doubled_in_breach + /// + LocalItemStatsAreDoubledInBreach = 5319, + + /// + /// cast_on_crit_% + /// + CastOnCritPct = 5320, + + /// + /// local_unique_jewel_cold_and_lightning_resistance_to_melee_damage + /// + LocalUniqueJewelColdAndLightningResistanceToMeleeDamage = 5321, + + /// + /// local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage + /// + LocalUniqueJewelFireAndLightningResistanceToProjectileAttackDamage = 5322, + + /// + /// local_unique_jewel_fire_and_cold_resistance_to_spell_damage + /// + LocalUniqueJewelFireAndColdResistanceToSpellDamage = 5323, + + /// + /// local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_% + /// + LocalUniqueJewelFireResistanceAlsoGrantsBlockChanceScaledPct = 5324, + + /// + /// local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_% + /// + LocalUniqueJewelColdResistanceAlsoGrantsDodgeChanceScaledPct = 5325, + + /// + /// local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_% + /// + LocalUniqueJewelLightningResistanceAlsoGrantsBlockSpellsChanceScaledPct = 5326, + + /// + /// local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance + /// + LocalUniqueJewelFireResistanceAlsoGrantsEnduranceChargeOnKillChance = 5327, + + /// + /// local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance + /// + LocalUniqueJewelColdResistanceAlsoGrantsFrenzyChargeOnKillChance = 5328, + + /// + /// local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance + /// + LocalUniqueJewelLightningResistanceAlsoGrantsPowerChargeOnKillChance = 5329, + + /// + /// cast_while_channelling_time_ms + /// + CastWhileChannellingTimeMs = 5330, + + /// + /// support_cast_while_channelling_triggered_skill_damage_+%_final + /// + SupportCastWhileChannellingTriggeredSkillDamagePctFinal = 5331, + + /// + /// number_of_spider_minions_allowed + /// + NumberOfSpiderMinionsAllowed = 5332, + + /// + /// number_of_active_spider_minions + /// + NumberOfActiveSpiderMinions = 5333, + + /// + /// local_display_raise_spider_on_kill_%_chance + /// + LocalDisplayRaiseSpiderOnKillPctChance = 5334, + + /// + /// local_display_cast_lightning_on_critical_strike + /// + LocalDisplayCastLightningOnCriticalStrike = 5335, + + /// + /// your_spells_are_disabled + /// + YourSpellsAreDisabled = 5336, + + /// + /// monster_ruleset_id + /// + MonsterRulesetId = 5337, + + /// + /// map_monsters_additional_elemental_resistance + /// + MapMonstersAdditionalElementalResistance = 5338, + + /// + /// support_minion_totem_resistance_elemental_damage_+%_final + /// + SupportMinionTotemResistanceElementalDamagePctFinal = 5339, + + /// + /// elemental_damage_+%_final_on_minion_from_resistance_support + /// + ElementalDamagePctFinalOnMinionFromResistanceSupport = 5340, + + /// + /// goat_footprints_from_item + /// + GoatFootprintsFromItem = 5341, + + /// + /// totem_ignores_cooldown + /// + TotemIgnoresCooldown = 5342, + + /// + /// totem_ignores_vaal_skill_cost + /// + TotemIgnoresVaalSkillCost = 5343, + + /// + /// attack_minimum_added_lightning_damage_per_10_int + /// + AttackMinimumAddedLightningDamagePer10Int = 5344, + + /// + /// attack_maximum_added_lightning_damage_per_10_int + /// + AttackMaximumAddedLightningDamagePer10Int = 5345, + + /// + /// fire_damage_+%_per_20_strength + /// + FireDamagePctPer20Strength = 5346, + + /// + /// mana_recharge_rate_per_minute_with_all_corrupted_equipped_items + /// + ManaRechargeRatePerMinuteWithAllCorruptedEquippedItems = 5347, + + /// + /// life_leech_permyriad_vs_poisoned_enemies + /// + LifeLeechPermyriadVsPoisonedEnemies = 5348, + + /// + /// minion_life_leech_permyriad_vs_poisoned_enemies + /// + MinionLifeLeechPermyriadVsPoisonedEnemies = 5349, + + /// + /// display_vaal_breach_no_drops_xp + /// + DisplayVaalBreachNoDropsXp = 5350, + + /// + /// golems_larger_aggro_radius + /// + GolemsLargerAggroRadius = 5351, + + /// + /// maximum_life_%_to_convert_to_maximum_energy_shield + /// + MaximumLifePctToConvertToMaximumEnergyShield = 5352, + + /// + /// display_abberaths_hooves_skill_level + /// + DisplayAbberathsHoovesSkillLevel = 5353, + + /// + /// cannot_be_used_as_minion + /// + CannotBeUsedAsMinion = 5354, + + /// + /// breach_map_time_to_portal_ms + /// + BreachMapTimeToPortalMs = 5355, + + /// + /// breach_map_initial_time_ms + /// + BreachMapInitialTimeMs = 5356, + + /// + /// breach_team_warp_buff_damage_taken_+% + /// + BreachTeamWarpBuffDamageTakenPct = 5357, + + /// + /// local_poison_on_hit_% + /// + LocalPoisonOnHitPct = 5358, + + /// + /// main_hand_local_poison_on_hit_% + /// + MainHandLocalPoisonOnHitPct = 5359, + + /// + /// off_hand_local_poison_on_hit_% + /// + OffHandLocalPoisonOnHitPct = 5360, + + /// + /// breach_team_warp_buff_movement_velocity_+% + /// + BreachTeamWarpBuffMovementVelocityPct = 5361, + + /// + /// breach_team_warp_buff_lightning_damage_+% + /// + BreachTeamWarpBuffLightningDamagePct = 5362, + + /// + /// base_blade_vortex_hit_rate_ms + /// + BaseBladeVortexHitRateMs = 5363, + + /// + /// blade_vortex_hit_rate_ms + /// + BladeVortexHitRateMs = 5364, + + /// + /// additional_maximum_all_resistances_%_with_no_endurance_charges + /// + AdditionalMaximumAllResistancesPctWithNoEnduranceCharges = 5365, + + /// + /// spell_damage_+%_while_shocked + /// + SpellDamagePctWhileShocked = 5366, + + /// + /// monster_beyond_portal_chance_+% + /// + MonsterBeyondPortalChancePct = 5367, + + /// + /// life_leech_uses_chaos_damage + /// + LifeLeechUsesChaosDamage = 5368, + + /// + /// base_cannot_gain_endurance_charges + /// + BaseCannotGainEnduranceCharges = 5369, + + /// + /// gain_onslaught_while_at_maximum_endurance_charges + /// + GainOnslaughtWhileAtMaximumEnduranceCharges = 5370, + + /// + /// number_of_zombies_allowed_+1_per_X_strength + /// + NumberOfZombiesAllowed1PerXStrength = 5371, + + /// + /// minions_gain_your_strength + /// + MinionsGainYourStrength = 5372, + + /// + /// avarius_cast_on_charge_contact + /// + AvariusCastOnChargeContact = 5373, + + /// + /// zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength + /// + ZombieDamageLeechedAsLifeToYouPermyriadIfOver1000Strength = 5374, + + /// + /// virtual_minion_additional_strength + /// + VirtualMinionAdditionalStrength = 5375, + + /// + /// virtual_zombie_damage_leeched_as_life_to_you_permyriad + /// + VirtualZombieDamageLeechedAsLifeToYouPermyriad = 5376, + + /// + /// base_bleed_duration_+% + /// + BaseBleedDurationPct = 5377, + + /// + /// item_found_rarity_+1%_per_X_rampage_stacks + /// + ItemFoundRarity1PctPerXRampageStacks = 5378, + + /// + /// is_channelling + /// + IsChannelling = 5379, + + /// + /// warcries_knock_back_enemies + /// + WarcriesKnockBackEnemies = 5380, + + /// + /// map_monsters_no_drops_or_experience + /// + MapMonstersNoDropsOrExperience = 5381, + + /// + /// off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating + /// + OffHandMinimumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5382, + + /// + /// off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating + /// + OffHandMaximumAddedPhysicalDamagePer15ShieldArmourAndEvasionRating = 5383, + + /// + /// off_hand_minimum_added_physical_damage_per_5_shield_armour + /// + OffHandMinimumAddedPhysicalDamagePer5ShieldArmour = 5384, + + /// + /// off_hand_maximum_added_physical_damage_per_5_shield_armour + /// + OffHandMaximumAddedPhysicalDamagePer5ShieldArmour = 5385, + + /// + /// off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating + /// + OffHandMinimumAddedPhysicalDamagePer5ShieldEvasionRating = 5386, + + /// + /// off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating + /// + OffHandMaximumAddedPhysicalDamagePer5ShieldEvasionRating = 5387, + + /// + /// gain_vaal_soul_on_hit_cooldown_ms + /// + GainVaalSoulOnHitCooldownMs = 5388, + + /// + /// unique_spells_triggered_on_shocked_kill + /// + UniqueSpellsTriggeredOnShockedKill = 5389, + + /// + /// maximum_life_per_2%_increased_item_found_rarity + /// + MaximumLifePer2PctIncreasedItemFoundRarity = 5390, + + /// + /// damage_+%_per_1%_increased_item_found_quantity + /// + DamagePctPer1PctIncreasedItemFoundQuantity = 5391, + + /// + /// item_found_quantity_+%_per_chest_opened_recently + /// + ItemFoundQuantityPctPerChestOpenedRecently = 5392, + + /// + /// number_of_chests_opened_recently + /// + NumberOfChestsOpenedRecently = 5393, + + /// + /// track_number_of_chests_opened_recently + /// + TrackNumberOfChestsOpenedRecently = 5394, + + /// + /// movement_speed_+%_per_chest_opened_recently + /// + MovementSpeedPctPerChestOpenedRecently = 5395, + + /// + /// immune_to_burning_shocks_and_chilled_ground + /// + ImmuneToBurningShocksAndChilledGround = 5396, + + /// + /// maximum_life_per_10_dexterity + /// + MaximumLifePer10Dexterity = 5397, + + /// + /// life_regeneration_per_minute_while_moving + /// + LifeRegenerationPerMinuteWhileMoving = 5398, + + /// + /// chest_number_of_additional_pirate_uniques_to_drop + /// + ChestNumberOfAdditionalPirateUniquesToDrop = 5399, + + /// + /// shrapnel_shot_number_of_additional_cones + /// + ShrapnelShotNumberOfAdditionalCones = 5400, + + /// + /// local_unique_jewel_shrapnel_shot_number_of_additional_cones_with_50_dex_in_radius + /// + LocalUniqueJewelShrapnelShotNumberOfAdditionalConesWith50DexInRadius = 5401, + + /// + /// burning_arrow_additional_ignite_stacks + /// + BurningArrowAdditionalIgniteStacks = 5402, + + /// + /// local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius + /// + LocalUniqueJewelBurningArrowAdditionalIgniteStacksWith50DexInRadius = 5403, + + /// + /// cleave_fortify_on_hit + /// + CleaveFortifyOnHit = 5404, + + /// + /// local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius + /// + LocalUniqueJewelCleaveFortifyOnHitWith50StrInRadius = 5405, + + /// + /// cleave_+1_base_radius_per_nearby_enemy_up_to_10 + /// + Cleave1BaseRadiusPerNearbyEnemyUpTo10 = 5406, + + /// + /// local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius + /// + LocalUniqueJewelCleave1BaseRadiusPerNearbyEnemyUpTo10With40StrInRadius = 5407, + + /// + /// freezing_pulse_number_of_additional_projectiles + /// + FreezingPulseNumberOfAdditionalProjectiles = 5408, + + /// + /// local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius + /// + LocalUniqueJewelFreezingPulseNumberOfAdditionalProjectilesWith50IntInRadius = 5409, + + /// + /// freezing_pulse_damage_+%_if_enemy_shattered_recently + /// + FreezingPulseDamagePctIfEnemyShatteredRecently = 5410, + + /// + /// local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius + /// + LocalUniqueJewelFreezingPulseDamagePctIfEnemyShatteredRecentlyWith50IntInRadius = 5411, + + /// + /// local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius + /// + LocalUniqueJewelIceShotExplosionSkillAreaOfEffectPctWith50DexInRadius = 5412, + + /// + /// ice_shot_damage_+%_to_chilled_enemies + /// + IceShotDamagePctToChilledEnemies = 5413, + + /// + /// local_unique_jewel_ice_shot_damage_+%_to_chilled_enemies_with_50_dex_in_radius + /// + LocalUniqueJewelIceShotDamagePctToChilledEnemiesWith50DexInRadius = 5414, + + /// + /// local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius + /// + LocalUniqueJewelMoltenStrikeNumberOfAdditionalProjectilesWith50StrInRadius = 5415, + + /// + /// local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius + /// + LocalUniqueJewelMoltenStrikeSkillAreaOfEffectPctWith50StrInRadius = 5416, + + /// + /// frost_blades_melee_cold_damage_+%_per_frenzy_charge + /// + FrostBladesMeleeColdDamagePctPerFrenzyCharge = 5417, + + /// + /// local_unique_jewel_frost_blades_melee_cold_damage_+%_per_frenzy_charge_with_50_dex_in_radius + /// + LocalUniqueJewelFrostBladesMeleeColdDamagePctPerFrenzyChargeWith50DexInRadius = 5418, + + /// + /// dual_strike_melee_splash_with_off_hand_weapon + /// + DualStrikeMeleeSplashWithOffHandWeapon = 5419, + + /// + /// local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius + /// + LocalUniqueJewelDualStrikeMeleeSplashWithOffHandWeaponWith50DexInRadius = 5420, + + /// + /// frostbolt_projectile_acceleration + /// + FrostboltProjectileAcceleration = 5421, + + /// + /// local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius + /// + LocalUniqueJewelFrostboltProjectileAccelerationWith50IntInRadius = 5422, + + /// + /// ethereal_knives_projectiles_nova + /// + EtherealKnivesProjectilesNova = 5423, + + /// + /// local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius + /// + LocalUniqueJewelEtherealKnivesProjectilesNovaWith50DexInRadius = 5424, + + /// + /// ethereal_knives_number_of_additional_projectiles + /// + EtherealKnivesNumberOfAdditionalProjectiles = 5425, + + /// + /// local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius + /// + LocalUniqueJewelEtherealKnivesNumberOfAdditionalProjectilesWith50DexInRadius = 5426, + + /// + /// ethereal_knives_projectile_speed_+%_per_frenzy_charge + /// + EtherealKnivesProjectileSpeedPctPerFrenzyCharge = 5427, + + /// + /// local_unique_jewel_ethereal_knives_projectile_speed_+%_per_frenzy_charge_with_50_dex_in_radius + /// + LocalUniqueJewelEtherealKnivesProjectileSpeedPctPerFrenzyChargeWith50DexInRadius = 5428, + + /// + /// ethereal_knives_grant_frenzy_charge_on_kill + /// + EtherealKnivesGrantFrenzyChargeOnKill = 5429, + + /// + /// local_unique_jewel_ethereal_knives_grant_frenzy_charge_on_kill_with_50_dex_in_radius + /// + LocalUniqueJewelEtherealKnivesGrantFrenzyChargeOnKillWith50DexInRadius = 5430, + + /// + /// lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit + /// + LightningTendrilsSkillAreaOfEffectPctPerEnemyHit = 5431, + + /// + /// local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius + /// + LocalUniqueJewelLightningTendrilsSkillAreaOfEffectPctPerEnemyHitWith50IntInRadius = 5432, + + /// + /// magma_orb_skill_area_of_effect_+%_per_bounce + /// + MagmaOrbSkillAreaOfEffectPctPerBounce = 5433, + + /// + /// local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius + /// + LocalUniqueJewelMagmaOrbSkillAreaOfEffectPctPerBounceWith50IntInRadius = 5434, + + /// + /// glacial_hammer_melee_splash_with_cold_damage + /// + GlacialHammerMeleeSplashWithColdDamage = 5435, + + /// + /// local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius + /// + LocalUniqueJewelGlacialHammerMeleeSplashWithColdDamageWith50StrInRadius = 5436, + + /// + /// glacial_hammer_physical_damage_%_to_convert_to_cold + /// + GlacialHammerPhysicalDamagePctToConvertToCold = 5437, + + /// + /// local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius + /// + LocalUniqueJewelGlacialHammerPhysicalDamagePctToConvertToColdWith50StrInRadius = 5438, + + /// + /// blight_skill_area_of_effect_+%_after_1_second_channelling + /// + BlightSkillAreaOfEffectPctAfter1SecondChannelling = 5439, + + /// + /// local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius + /// + LocalUniqueJewelBlightSkillAreaOfEffectPctAfter1SecondChannellingWith50IntInRadius = 5440, + + /// + /// fortify_on_hit + /// + FortifyOnHit = 5441, + + /// + /// melee_splash_cold_damage_only + /// + MeleeSplashColdDamageOnly = 5442, + + /// + /// track_have_shattered_recently + /// + TrackHaveShatteredRecently = 5443, + + /// + /// have_shattered_recently + /// + HaveShatteredRecently = 5444, + + /// + /// can_gain_vaal_souls_from_no_experience_monsters + /// + CanGainVaalSoulsFromNoExperienceMonsters = 5445, + + /// + /// maim_on_hit_% + /// + MaimOnHitPct = 5446, + + /// + /// total_skill_area_of_effect_radius_+%_including_final + /// + TotalSkillAreaOfEffectRadiusPctIncludingFinal = 5447, + + /// + /// melee_splash_off_hand_only + /// + MeleeSplashOffHandOnly = 5448, + + /// + /// classic_remaining_areas_to_apply_leaguestone + /// + ClassicRemainingAreasToApplyLeaguestone = 5449, + + /// + /// map_spawn_leaguestones + /// + MapSpawnLeaguestones = 5450, + + /// + /// monster_can_spawn_with_leaguestone + /// + MonsterCanSpawnWithLeaguestone = 5451, + + /// + /// monster_no_leaguestone + /// + MonsterNoLeaguestone = 5452, + + /// + /// local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius + /// + LocalUniqueJewelGalvanicArrowAreaDamagePctWith40DexInRadius = 5453, + + /// + /// galvanic_arrow_area_damage_+% + /// + GalvanicArrowAreaDamagePct = 5454, + + /// + /// local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius + /// + LocalUniqueJewelShrapnelShotRadiusPctWith50DexInRadius = 5455, + + /// + /// endurance_charge_on_kill_percent_chance_while_holding_shield + /// + EnduranceChargeOnKillPercentChanceWhileHoldingShield = 5456, + + /// + /// frenzy_charge_on_kill_percent_chance_while_holding_shield + /// + FrenzyChargeOnKillPercentChanceWhileHoldingShield = 5457, + + /// + /// power_charge_on_kill_percent_chance_while_holding_shield + /// + PowerChargeOnKillPercentChanceWhileHoldingShield = 5458, + + /// + /// block_chance_%_while_holding_shield + /// + BlockChancePctWhileHoldingShield = 5459, + + /// + /// dodge_chance_%_while_holding_shield + /// + DodgeChancePctWhileHoldingShield = 5460, + + /// + /// block_spells_chance_%_while_holding_shield + /// + BlockSpellsChancePctWhileHoldingShield = 5461, + + /// + /// local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type + /// + LocalUniqueFlaskElementalDamageTakenPctOfLowestUncappedResistanceType = 5462, + + /// + /// local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type + /// + LocalUniqueFlaskElementalPenetrationPctOfHighestUncappedResistanceType = 5463, + + /// + /// elemental_damage_taken_+%_of_lowest_uncapped_resistance_type + /// + ElementalDamageTakenPctOfLowestUncappedResistanceType = 5464, + + /// + /// elemental_penetration_%_of_highest_uncapped_resistance_type + /// + ElementalPenetrationPctOfHighestUncappedResistanceType = 5465, + + /// + /// virtual_fire_damage_taken_+%_from_lowest_uncapped_resistance_type + /// + VirtualFireDamageTakenPctFromLowestUncappedResistanceType = 5466, + + /// + /// virtual_cold_damage_taken_+%_from_lowest_uncapped_resistance_type + /// + VirtualColdDamageTakenPctFromLowestUncappedResistanceType = 5467, + + /// + /// virtual_lightning_damage_taken_+%_from_lowest_uncapped_resistance_type + /// + VirtualLightningDamageTakenPctFromLowestUncappedResistanceType = 5468, + + /// + /// virtual_fire_penetration_%_from_highest_uncapped_resistance_type + /// + VirtualFirePenetrationPctFromHighestUncappedResistanceType = 5469, + + /// + /// virtual_cold_penetration_%_from_highest_uncapped_resistance_type + /// + VirtualColdPenetrationPctFromHighestUncappedResistanceType = 5470, + + /// + /// virtual_lightning_penetration_%_from_highest_uncapped_resistance_type + /// + VirtualLightningPenetrationPctFromHighestUncappedResistanceType = 5471, + + /// + /// start_at_zero_energy_shield + /// + StartAtZeroEnergyShield = 5472, + + /// + /// map_number_of_additional_silver_coin_drops + /// + MapNumberOfAdditionalSilverCoinDrops = 5473, + + /// + /// map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins + /// + MapMonstersThatDropSilverCoinDropXAdditionalSilverCoins = 5474, + + /// + /// map_item_quantity_from_monsters_that_drop_silver_coin_+% + /// + MapItemQuantityFromMonstersThatDropSilverCoinPct = 5475, + + /// + /// local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius + /// + LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith50IntInRadius = 5476, + + /// + /// spark_num_of_additional_projectiles_in_chain + /// + SparkNumOfAdditionalProjectilesInChain = 5477, + + /// + /// local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius + /// + LocalUniqueJewelSparkNumberOfAdditionalChainsWith50IntInRadius = 5478, + + /// + /// monster_slam_cooldown_speed_+% + /// + MonsterSlamCooldownSpeedPct = 5479, + + /// + /// zombie_slam_cooldown_speed_+% + /// + ZombieSlamCooldownSpeedPct = 5480, + + /// + /// local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius + /// + LocalUniqueJewelZombieSlamCooldownSpeedPctWith50IntInRadius = 5481, + + /// + /// monster_slam_damage_+% + /// + MonsterSlamDamagePct = 5482, + + /// + /// zombie_slam_damage_+% + /// + ZombieSlamDamagePct = 5483, + + /// + /// local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius + /// + LocalUniqueJewelZombieSlamDamagePctWith50IntInRadius = 5484, + + /// + /// map_leaguestone_override_base_num_rogue_exiles + /// + MapLeaguestoneOverrideBaseNumRogueExiles = 5485, + + /// + /// map_rogue_exiles_are_doubled + /// + MapRogueExilesAreDoubled = 5486, + + /// + /// map_rogue_exile_drop_skill_gem_with_quality + /// + MapRogueExileDropSkillGemWithQuality = 5487, + + /// + /// map_rogue_exile_attack_cast_and_movement_speed_+% + /// + MapRogueExileAttackCastAndMovementSpeedPct = 5488, + + /// + /// map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final + /// + MapLeaguestoneRogueExilesDroppedItemRarityPctFinal = 5489, + + /// + /// monster_drop_skill_gem_with_quality + /// + MonsterDropSkillGemWithQuality = 5490, + + /// + /// map_leaguestone_override_base_num_breaches + /// + MapLeaguestoneOverrideBaseNumBreaches = 5491, + + /// + /// map_contains_additional_breaches + /// + MapContainsAdditionalBreaches = 5492, + + /// + /// map_rare_breach_monsters_drop_additional_shards + /// + MapRareBreachMonstersDropAdditionalShards = 5493, + + /// + /// map_breach_has_boss + /// + MapBreachHasBoss = 5494, + + /// + /// map_breach_has_large_chest + /// + MapBreachHasLargeChest = 5495, + + /// + /// map_breach_monster_quantity_+% + /// + MapBreachMonsterQuantityPct = 5496, + + /// + /// map_leaguestone_override_base_num_monoliths + /// + MapLeaguestoneOverrideBaseNumMonoliths = 5497, + + /// + /// map_essence_monsters_have_additional_essences + /// + MapEssenceMonstersHaveAdditionalEssences = 5498, + + /// + /// map_essence_monsters_are_corrupted + /// + MapEssenceMonstersAreCorrupted = 5499, + + /// + /// map_essence_monsters_higher_tier + /// + MapEssenceMonstersHigherTier = 5500, + + /// + /// fire_beam_rotation_speed_+% + /// + FireBeamRotationSpeedPct = 5501, + + /// + /// fire_beam_charge_up_time_ms + /// + FireBeamChargeUpTimeMs = 5502, + + /// + /// map_leaguestone_override_base_num_talismans + /// + MapLeaguestoneOverrideBaseNumTalismans = 5503, + + /// + /// map_talismans_higher_tier + /// + MapTalismansHigherTier = 5504, + + /// + /// map_talismans_dropped_as_rare + /// + MapTalismansDroppedAsRare = 5505, + + /// + /// map_contains_talisman_boss_with_higher_tier + /// + MapContainsTalismanBossWithHigherTier = 5506, + + /// + /// virtual_fire_damage_taken_+% + /// + VirtualFireDamageTakenPct = 5507, + + /// + /// virtual_chaos_damage_taken_+% + /// + VirtualChaosDamageTakenPct = 5508, + + /// + /// virtual_lightning_damage_taken_+% + /// + VirtualLightningDamageTakenPct = 5509, + + /// + /// virtual_cold_damage_taken_+% + /// + VirtualColdDamageTakenPct = 5510, + + /// + /// local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun + /// + LocalDisplaySocketedGemsSupportedByLevelXEnduranceChargeOnStun = 5511, + + /// + /// number_of_generic_limited_minions_allowed + /// + NumberOfGenericLimitedMinionsAllowed = 5512, + + /// + /// number_of_active_generic_limited_minions + /// + NumberOfActiveGenericLimitedMinions = 5513, + + /// + /// local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius + /// + LocalUniqueJewelViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemyWith50DexInRadius = 5514, + + /// + /// local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius + /// + LocalUniqueJewelGroundSlamChanceToGainEnduranceChargePctOnStunWith50StrInRadius = 5515, + + /// + /// viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy + /// + ViperStrikeChanceToGainUnholyMightPctOnHitPerPoisonStackOnEnemy = 5516, + + /// + /// ground_slam_chance_to_gain_endurance_charge_%_on_stun + /// + GroundSlamChanceToGainEnduranceChargePctOnStun = 5517, + + /// + /// classic_next_area_contains_talisman + /// + ClassicNextAreaContainsTalisman = 5518, + + /// + /// classic_next_area_contains_anarchy + /// + ClassicNextAreaContainsAnarchy = 5519, + + /// + /// map_area_contains_avatar_of_prophecy + /// + MapAreaContainsAvatarOfProphecy = 5520, + + /// + /// map_area_contains_avatar_of_breach + /// + MapAreaContainsAvatarOfBreach = 5521, + + /// + /// map_area_contains_avatar_of_essence + /// + MapAreaContainsAvatarOfEssence = 5522, + + /// + /// map_area_contains_avatar_of_perandus + /// + MapAreaContainsAvatarOfPerandus = 5523, + + /// + /// map_area_contains_avatar_of_anarchy + /// + MapAreaContainsAvatarOfAnarchy = 5524, + + /// + /// map_area_contains_avatar_of_talisman + /// + MapAreaContainsAvatarOfTalisman = 5525, + + /// + /// map_area_contains_avatar_of_tempest + /// + MapAreaContainsAvatarOfTempest = 5526, + + /// + /// map_random_area_prophecy + /// + MapRandomAreaProphecy = 5527, + + /// + /// map_contains_nevalis_monkey + /// + MapContainsNevalisMonkey = 5528, + + /// + /// armour_+%_while_no_energy_shield + /// + ArmourPctWhileNoEnergyShield = 5529, + + /// + /// life_leech_from_attack_damage_permyriad_vs_taunted_enemies + /// + LifeLeechFromAttackDamagePermyriadVsTauntedEnemies = 5530, + + /// + /// random_curse_on_hit_%_against_uncursed_enemies + /// + RandomCurseOnHitPctAgainstUncursedEnemies = 5531, + + /// + /// mana_leech_from_attack_damage_permyriad_per_power_charge + /// + ManaLeechFromAttackDamagePermyriadPerPowerCharge = 5532, + + /// + /// virtual_life_leech_from_attack_damage_permyriad + /// + VirtualLifeLeechFromAttackDamagePermyriad = 5533, + + /// + /// virtual_mana_leech_from_attack_damage_permyriad + /// + VirtualManaLeechFromAttackDamagePermyriad = 5534, + + /// + /// gain_X_life_on_stun + /// + GainXLifeOnStun = 5535, + + /// + /// blood_offering_%_of_life_to_lose + /// + BloodOfferingPctOfLifeToLose = 5536, + + /// + /// blood_offering_%_of_lost_life_to_regenerate_as_life_per_second + /// + BloodOfferingPctOfLostLifeToRegenerateAsLifePerSecond = 5537, + + /// + /// blood_offering_life_regenerated_+%_final_per_corpse + /// + BloodOfferingLifeRegeneratedPctFinalPerCorpse = 5538, + + /// + /// damage_+%_vs_chilled_enemies + /// + DamagePctVsChilledEnemies = 5539, + + /// + /// additional_block_%_while_on_consecrated_ground + /// + AdditionalBlockPctWhileOnConsecratedGround = 5540, + + /// + /// warcry_buff_effect_+% + /// + WarcryBuffEffectPct = 5541, + + /// + /// spell_and_attack_minimum_added_fire_damage + /// + SpellAndAttackMinimumAddedFireDamage = 5542, + + /// + /// spell_and_attack_maximum_added_fire_damage + /// + SpellAndAttackMaximumAddedFireDamage = 5543, + + /// + /// resist_all_elements_%_with_200_or_more_strength + /// + ResistAllElementsPctWith200OrMoreStrength = 5544, + + /// + /// spell_block_%_if_blocked_an_attack_recently + /// + SpellBlockPctIfBlockedAnAttackRecently = 5545, + + /// + /// track_have_blocked_spell_recently + /// + TrackHaveBlockedSpellRecently = 5546, + + /// + /// have_blocked_spell_recently + /// + HaveBlockedSpellRecently = 5547, + + /// + /// attack_block_%_if_blocked_a_spell_recently + /// + AttackBlockPctIfBlockedASpellRecently = 5548, + + /// + /// life_regeneration_rate_per_minute_%_if_have_been_hit_recently + /// + LifeRegenerationRatePerMinutePctIfHaveBeenHitRecently = 5549, + + /// + /// life_regeneration_rate_per_minute_%_with_400_or_more_strength + /// + LifeRegenerationRatePerMinutePctWith400OrMoreStrength = 5550, + + /// + /// ground_tar_when_hit_%_chance + /// + GroundTarWhenHitPctChance = 5551, + + /// + /// spell_and_attack_minimum_added_chaos_damage_during_flask_effect + /// + SpellAndAttackMinimumAddedChaosDamageDuringFlaskEffect = 5552, + + /// + /// spell_and_attack_maximum_added_chaos_damage_during_flask_effect + /// + SpellAndAttackMaximumAddedChaosDamageDuringFlaskEffect = 5553, + + /// + /// fire_damage_+%_if_you_have_been_hit_recently + /// + FireDamagePctIfYouHaveBeenHitRecently = 5554, + + /// + /// immune_to_freeze_and_chill_while_ignited + /// + ImmuneToFreezeAndChillWhileIgnited = 5555, + + /// + /// fire_penetration_%_if_you_have_blocked_recently + /// + FirePenetrationPctIfYouHaveBlockedRecently = 5556, + + /// + /// local_display_grants_level_X_vengeance + /// + LocalDisplayGrantsLevelXVengeance = 5557, + + /// + /// gain_X_power_charges_on_using_a_warcry + /// + GainXPowerChargesOnUsingAWarcry = 5558, + + /// + /// gain_onslaught_ms_on_using_a_warcry + /// + GainOnslaughtMsOnUsingAWarcry = 5559, + + /// + /// local_display_socketed_golem_buff_effect_+% + /// + LocalDisplaySocketedGolemBuffEffectPct = 5560, + + /// + /// local_display_socketed_golem_chance_to_taunt_% + /// + LocalDisplaySocketedGolemChanceToTauntPct = 5561, + + /// + /// local_display_socketed_golem_life_regeneration_rate_per_minute_% + /// + LocalDisplaySocketedGolemLifeRegenerationRatePerMinutePct = 5562, + + /// + /// minimum_added_cold_damage_vs_chilled_enemies + /// + MinimumAddedColdDamageVsChilledEnemies = 5563, + + /// + /// maximum_added_cold_damage_vs_chilled_enemies + /// + MaximumAddedColdDamageVsChilledEnemies = 5564, + + /// + /// map_area_contains_avatar_of_rampage + /// + MapAreaContainsAvatarOfRampage = 5565, + + /// + /// map_area_contains_avatar_of_beyond + /// + MapAreaContainsAvatarOfBeyond = 5566, + + /// + /// map_area_contains_avatar_of_onslaught + /// + MapAreaContainsAvatarOfOnslaught = 5567, + + /// + /// map_area_contains_avatar_of_ambush + /// + MapAreaContainsAvatarOfAmbush = 5568, + + /// + /// map_area_contains_avatar_of_bloodlines + /// + MapAreaContainsAvatarOfBloodlines = 5569, + + /// + /// map_area_contains_avatar_of_nemesis + /// + MapAreaContainsAvatarOfNemesis = 5570, + + /// + /// map_area_contains_avatar_of_torment + /// + MapAreaContainsAvatarOfTorment = 5571, + + /// + /// map_area_contains_avatar_of_domination + /// + MapAreaContainsAvatarOfDomination = 5572, + + /// + /// map_area_contains_avatar_of_invasion + /// + MapAreaContainsAvatarOfInvasion = 5573, + + /// + /// map_area_contains_avatar_of_warbands + /// + MapAreaContainsAvatarOfWarbands = 5574, + + /// + /// avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently + /// + AvoidFreezeAndChillPctIfYouHaveUsedAFireSkillRecently = 5575, + + /// + /// track_have_used_a_fire_skill_recently + /// + TrackHaveUsedAFireSkillRecently = 5576, + + /// + /// have_used_a_fire_skill_recently + /// + HaveUsedAFireSkillRecently = 5577, + + /// + /// avoid_shock_%_while_chilled + /// + AvoidShockPctWhileChilled = 5578, + + /// + /// local_display_nearby_enemies_are_intimidated + /// + LocalDisplayNearbyEnemiesAreIntimidated = 5579, + + /// + /// chance_to_shock_chilled_enemies_% + /// + ChanceToShockChilledEnemiesPct = 5580, + + /// + /// map_area_contains_map_chest + /// + MapAreaContainsMapChest = 5581, + + /// + /// map_area_contains_unique_item_chest + /// + MapAreaContainsUniqueItemChest = 5582, + + /// + /// map_area_contains_currency_chest + /// + MapAreaContainsCurrencyChest = 5583, + + /// + /// map_area_contains_perandus_coin_chest + /// + MapAreaContainsPerandusCoinChest = 5584, + + /// + /// map_area_contains_jewellery_chest + /// + MapAreaContainsJewelleryChest = 5585, + + /// + /// perandus_double_number_of_coins_found + /// + PerandusDoubleNumberOfCoinsFound = 5586, + + /// + /// local_chill_on_hit_ms_if_in_off_hand + /// + LocalChillOnHitMsIfInOffHand = 5587, + + /// + /// off_hand_local_chill_on_hit_ms + /// + OffHandLocalChillOnHitMs = 5588, + + /// + /// movement_speed_+%_on_throwing_trap + /// + MovementSpeedPctOnThrowingTrap = 5589, + + /// + /// herald_of_thunder_buff_effect_+% + /// + HeraldOfThunderBuffEffectPct = 5590, + + /// + /// local_display_movement_speed_+%_for_you_and_nearby_allies + /// + LocalDisplayMovementSpeedPctForYouAndNearbyAllies = 5591, + + /// + /// curse_on_hit_level_flammability + /// + CurseOnHitLevelFlammability = 5592, + + /// + /// phasing_on_trap_triggered_by_an_enemy_ms + /// + PhasingOnTrapTriggeredByAnEnemyMs = 5593, + + /// + /// global_attack_speed_+%_per_level + /// + GlobalAttackSpeedPctPerLevel = 5594, + + /// + /// physical_damage_+%_final_for_minion + /// + PhysicalDamagePctFinalForMinion = 5595, + + /// + /// zombie_physical_damage_+%_final + /// + ZombiePhysicalDamagePctFinal = 5596, + + /// + /// ground_tar_when_hit_base_area_of_effect_radius + /// + GroundTarWhenHitBaseAreaOfEffectRadius = 5597, + + /// + /// ground_tar_when_hit_duration_ms + /// + GroundTarWhenHitDurationMs = 5598, + + /// + /// ground_tar_when_hit_movement_speed_+% + /// + GroundTarWhenHitMovementSpeedPct = 5599, + + /// + /// chance_to_gain_unholy_might_on_block_ms + /// + ChanceToGainUnholyMightOnBlockMs = 5600, + + /// + /// old_dagger_implicit_critical_strike_chance_+30% + /// + OldDaggerImplicitCriticalStrikeChance30Pct = 5601, + + /// + /// old_dagger_implicit_critical_strike_chance_+40% + /// + OldDaggerImplicitCriticalStrikeChance40Pct = 5602, + + /// + /// old_dagger_implicit_critical_strike_chance_+50% + /// + OldDaggerImplicitCriticalStrikeChance50Pct = 5603, + + /// + /// old_dagger_implicit_critical_strike_chance_+30%_from_main_hand + /// + OldDaggerImplicitCriticalStrikeChance30PctFromMainHand = 5604, + + /// + /// old_dagger_implicit_critical_strike_chance_+40%_from_main_hand + /// + OldDaggerImplicitCriticalStrikeChance40PctFromMainHand = 5605, + + /// + /// old_dagger_implicit_critical_strike_chance_+50%_from_main_hand + /// + OldDaggerImplicitCriticalStrikeChance50PctFromMainHand = 5606, + + /// + /// old_dagger_implicit_critical_strike_chance_+30%_from_off_hand + /// + OldDaggerImplicitCriticalStrikeChance30PctFromOffHand = 5607, + + /// + /// old_dagger_implicit_critical_strike_chance_+40%_from_off_hand + /// + OldDaggerImplicitCriticalStrikeChance40PctFromOffHand = 5608, + + /// + /// old_dagger_implicit_critical_strike_chance_+50%_from_off_hand + /// + OldDaggerImplicitCriticalStrikeChance50PctFromOffHand = 5609, + + /// + /// has_defender_conditional_damage_stats + /// + HasDefenderConditionalDamageStats = 5610, + + /// + /// area_transition_animation_index + /// + AreaTransitionAnimationIndex = 5611, + + /// + /// map_leaguestone_override_base_num_tormented_spirits + /// + MapLeaguestoneOverrideBaseNumTormentedSpirits = 5612, + + /// + /// map_leaguestone_additional_tormented_spirits + /// + MapLeaguestoneAdditionalTormentedSpirits = 5613, + + /// + /// map_random_unique_monster_is_possessed + /// + MapRandomUniqueMonsterIsPossessed = 5614, + + /// + /// map_tormented_spirits_drop_x_additional_rare_items + /// + MapTormentedSpiritsDropXAdditionalRareItems = 5615, + + /// + /// map_area_contains_tormented_vaal_cultist + /// + MapAreaContainsTormentedVaalCultist = 5616, + + /// + /// map_area_contains_tormented_seditionist + /// + MapAreaContainsTormentedSeditionist = 5617, + + /// + /// map_area_contains_tormented_embezzler + /// + MapAreaContainsTormentedEmbezzler = 5618, + + /// + /// map_leaguestone_override_base_num_perandus_chests + /// + MapLeaguestoneOverrideBaseNumPerandusChests = 5619, + + /// + /// display_monster_uses_vaal_burning_arrow + /// + DisplayMonsterUsesVaalBurningArrow = 5620, + + /// + /// remove_parent_life_on_death_permyriad + /// + RemoveParentLifeOnDeathPermyriad = 5621, + + /// + /// curse_on_hit_level_projectile_weakness + /// + CurseOnHitLevelProjectileWeakness = 5622, + + /// + /// local_left_ring_slot_maximum_mana + /// + LocalLeftRingSlotMaximumMana = 5623, + + /// + /// local_right_ring_slot_energy_shield + /// + LocalRightRingSlotEnergyShield = 5624, + + /// + /// map_leaguestone_additional_breaches + /// + MapLeaguestoneAdditionalBreaches = 5625, + + /// + /// map_leaguestone_additional_monoliths + /// + MapLeaguestoneAdditionalMonoliths = 5626, + + /// + /// map_leaguestone_additional_talismans + /// + MapLeaguestoneAdditionalTalismans = 5627, + + /// + /// map_leaguestone_additional_rogue_exiles + /// + MapLeaguestoneAdditionalRogueExiles = 5628, + + /// + /// map_leaguestone_additional_perandus_chests + /// + MapLeaguestoneAdditionalPerandusChests = 5629, + + /// + /// local_left_ring_slot_mana_regeneration_rate_per_minute + /// + LocalLeftRingSlotManaRegenerationRatePerMinute = 5630, + + /// + /// local_right_ring_slot_maximum_mana + /// + LocalRightRingSlotMaximumMana = 5631, + + /// + /// local_left_ring_slot_energy_shield + /// + LocalLeftRingSlotEnergyShield = 5632, + + /// + /// local_display_cast_level_X_consecrate_on_crit + /// + LocalDisplayCastLevelXConsecrateOnCrit = 5633, + + /// + /// is_tormented_spirit + /// + IsTormentedSpirit = 5634, + + /// + /// shavronne_teleport_number_of_markers + /// + ShavronneTeleportNumberOfMarkers = 5635, + + /// + /// map_packs_are_spiders + /// + MapPacksAreSpiders = 5636, + + /// + /// map_packs_are_blackguards + /// + MapPacksAreBlackguards = 5637, + + /// + /// local_display_cast_level_1_summon_lesser_shrine_on_kill_% + /// + LocalDisplayCastLevel1SummonLesserShrineOnKillPct = 5638, + + /// + /// shavronne_teleport_no_teleport + /// + ShavronneTeleportNoTeleport = 5639, + + /// + /// debug_projectile_index_override + /// + DebugProjectileIndexOverride = 5640, + + /// + /// ground_slam_retarget_after_contact_point + /// + GroundSlamRetargetAfterContactPoint = 5641, + + /// + /// map_leaguestone_override_base_num_warband_packs + /// + MapLeaguestoneOverrideBaseNumWarbandPacks = 5642, + + /// + /// map_leaguestone_additional_warband_packs + /// + MapLeaguestoneAdditionalWarbandPacks = 5643, + + /// + /// map_leaguestone_explicit_warband_type_override + /// + MapLeaguestoneExplicitWarbandTypeOverride = 5644, + + /// + /// map_leaguestone_contains_warband_leader + /// + MapLeaguestoneContainsWarbandLeader = 5645, + + /// + /// map_leaguestone_override_base_num_shrines + /// + MapLeaguestoneOverrideBaseNumShrines = 5646, + + /// + /// map_leaguestone_shrine_monster_rarity_override + /// + MapLeaguestoneShrineMonsterRarityOverride = 5647, + + /// + /// map_leaguestone_shrine_override_type + /// + MapLeaguestoneShrineOverrideType = 5648, + + /// + /// map_rampage_time_+% + /// + MapRampageTimePct = 5649, + + /// + /// map_contains_x_additional_animated_weapon_packs + /// + MapContainsXAdditionalAnimatedWeaponPacks = 5650, + + /// + /// map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks + /// + MapLeaguestonesCurrencyItemsDropWhenFirstReachingXRampageStacks = 5651, + + /// + /// map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks + /// + MapLeaguestonesSpawnPowerfulMonsterWhenReachingXRampageStacks = 5652, + + /// + /// map_contains_keepers_of_the_trove_bloodline_pack + /// + MapContainsKeepersOfTheTroveBloodlinePack = 5653, + + /// + /// map_contains_wealthy_pack + /// + MapContainsWealthyPack = 5654, + + /// + /// map_leaguestone_implicit_tempest_random + /// + MapLeaguestoneImplicitTempestRandom = 5655, + + /// + /// map_leaguestone_explicit_tempest_type_override + /// + MapLeaguestoneExplicitTempestTypeOverride = 5656, + + /// + /// local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius + /// + LocalUniqueJewelFrostboltAdditionalProjectilesWith40IntInRadius = 5657, + + /// + /// frostbolt_number_of_additional_projectiles + /// + FrostboltNumberOfAdditionalProjectiles = 5658, + + /// + /// skill_area_of_effect_+%_final + /// + SkillAreaOfEffectPctFinal = 5659, + + /// + /// total_skill_area_of_effect_+%_including_final + /// + TotalSkillAreaOfEffectPctIncludingFinal = 5660, + + /// + /// local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius + /// + LocalUniqueJewelMagmaOrbAdditionalProjectilesWith40IntInRadius = 5661, + + /// + /// magma_orb_number_of_additional_projectiles + /// + MagmaOrbNumberOfAdditionalProjectiles = 5662, + + /// + /// curse_on_hit_level_cold_weakness + /// + CurseOnHitLevelColdWeakness = 5663, + + /// + /// elemental_damage_+%_if_used_a_warcry_recently + /// + ElementalDamagePctIfUsedAWarcryRecently = 5664, + + /// + /// local_display_socketed_golem_attack_and_cast_speed_+% + /// + LocalDisplaySocketedGolemAttackAndCastSpeedPct = 5665, + + /// + /// local_display_cast_animate_weapon_on_kill_%_chance + /// + LocalDisplayCastAnimateWeaponOnKillPctChance = 5666, + + /// + /// gain_onslaught_ms_on_skill_use + /// + GainOnslaughtMsOnSkillUse = 5667, + + /// + /// local_display_socketed_golem_skill_grants_onslaught_when_summoned + /// + LocalDisplaySocketedGolemSkillGrantsOnslaughtWhenSummoned = 5668, + + /// + /// has_unholy_might + /// + HasUnholyMight = 5669, + + /// + /// chest_drop_reliquary_items + /// + ChestDropReliquaryItems = 5670, + + /// + /// deal_no_skill_dot_damage_over_time + /// + DealNoSkillDotDamageOverTime = 5671, + + /// + /// combined_all_projectile_damage_+% + /// + CombinedAllProjectileDamagePct = 5672, + + /// + /// combined_all_projectile_damage_+%_final + /// + CombinedAllProjectileDamagePctFinal = 5673, + + /// + /// combined_all_area_damage_+% + /// + CombinedAllAreaDamagePct = 5674, + + /// + /// combined_all_area_damage_+%_final + /// + CombinedAllAreaDamagePctFinal = 5675, + + /// + /// combined_all_added_damage_+%_final + /// + CombinedAllAddedDamagePctFinal = 5676, + + /// + /// combined_hit_all_damage_+% + /// + CombinedHitAllDamagePct = 5677, + + /// + /// combined_skill_dot_all_damage_over_time_+% + /// + CombinedSkillDotAllDamageOverTimePct = 5678, + + /// + /// combined_skill_dot_all_damage_over_time_+%_final + /// + CombinedSkillDotAllDamageOverTimePctFinal = 5679, + + /// + /// projectile_damage_modifiers_apply_to_skill_dot + /// + ProjectileDamageModifiersApplyToSkillDot = 5680, + + /// + /// fire_beam_max_rotation_speed_+% + /// + FireBeamMaxRotationSpeedPct = 5681, + + /// + /// map_player_onslaught_on_kill_% + /// + MapPlayerOnslaughtOnKillPct = 5682, + + /// + /// map_monster_attack_cast_and_movement_speed_+% + /// + MapMonsterAttackCastAndMovementSpeedPct = 5683, + + /// + /// map_rare_monsters_drop_x_additional_rare_items + /// + MapRareMonstersDropXAdditionalRareItems = 5684, + + /// + /// map_area_contains_x_rare_monsters_with_inner_treasure + /// + MapAreaContainsXRareMonstersWithInnerTreasure = 5685, + + /// + /// map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final + /// + MapLeaguestoneInvasionBossItemQuantityAndRarityPctFinal = 5686, + + /// + /// map_first_invasion_boss_killed_drops_x_additional_currency + /// + MapFirstInvasionBossKilledDropsXAdditionalCurrency = 5687, + + /// + /// map_invasion_monsters_guarded_by_x_magic_packs + /// + MapInvasionMonstersGuardedByXMagicPacks = 5688, + + /// + /// map_leaguestone_override_base_num_strongboxes + /// + MapLeaguestoneOverrideBaseNumStrongboxes = 5689, + + /// + /// map_leaguestone_additional_strongboxes + /// + MapLeaguestoneAdditionalStrongboxes = 5690, + + /// + /// map_first_strongbox_contains_x_additional_rare_monsters + /// + MapFirstStrongboxContainsXAdditionalRareMonsters = 5691, + + /// + /// map_area_contains_gemcutters_strongbox + /// + MapAreaContainsGemcuttersStrongbox = 5692, + + /// + /// map_area_contains_cartographers_strongbox + /// + MapAreaContainsCartographersStrongbox = 5693, + + /// + /// map_area_contains_unique_strongbox + /// + MapAreaContainsUniqueStrongbox = 5694, + + /// + /// map_area_contains_arcanists_strongbox + /// + MapAreaContainsArcanistsStrongbox = 5695, + + /// + /// map_strongboxes_drop_x_additional_rare_items + /// + MapStrongboxesDropXAdditionalRareItems = 5696, + + /// + /// map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final + /// + MapLeaguestoneBeyondMonsterItemQuantityAndRarityPctFinal = 5697, + + /// + /// map_first_unique_beyond_boss_slain_drops_x_beyond_uniques + /// + MapFirstUniqueBeyondBossSlainDropsXBeyondUniques = 5698, + + /// + /// map_leaguestone_x_monsters_spawn_random_beyond_boss + /// + MapLeaguestoneXMonstersSpawnRandomBeyondBoss = 5699, + + /// + /// map_leaguestone_x_monsters_spawn_abaxoth + /// + MapLeaguestoneXMonstersSpawnAbaxoth = 5700, + + /// + /// map_item_found_rarity_+%_per_15_rampage_stacks + /// + MapItemFoundRarityPctPer15RampageStacks = 5701, + + /// + /// item_found_rarity_+%_per_15_rampage_stacks + /// + ItemFoundRarityPctPer15RampageStacks = 5702, + + /// + /// leaguestone_spawn_beyond_monster_on_death_index + /// + LeaguestoneSpawnBeyondMonsterOnDeathIndex = 5703, + + /// + /// map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+% + /// + MapContainsThreeMagicPacksWithAttackCastAndMovementSpeedPct = 5704, + + /// + /// map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final + /// + MapContainsThreeMagicPacksWithItemQuantityOfDroppedItemsPctFinal = 5705, + + /// + /// leaguestone_maximum_area_level + /// + LeaguestoneMaximumAreaLevel = 5706, + + /// + /// attack_minimum_added_physical_damage_per_level + /// + AttackMinimumAddedPhysicalDamagePerLevel = 5707, + + /// + /// attack_maximum_added_physical_damage_per_level + /// + AttackMaximumAddedPhysicalDamagePerLevel = 5708, + + /// + /// attack_minimum_added_fire_damage_per_10_strength + /// + AttackMinimumAddedFireDamagePer10Strength = 5709, + + /// + /// attack_maximum_added_fire_damage_per_10_strength + /// + AttackMaximumAddedFireDamagePer10Strength = 5710, + + /// + /// unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final + /// + UniqueRyuslathasClutchesMinimumPhysicalAttackDamagePctFinal = 5711, + + /// + /// unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final + /// + UniqueRyuslathasClutchesMaximumPhysicalAttackDamagePctFinal = 5712, + + /// + /// is_intimidated + /// + IsIntimidated = 5713, + + /// + /// local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius + /// + LocalUniqueJewelFrostBladesMeleeDamagePenetratesPctColdResistanceWith40DexInRadius = 5714, + + /// + /// frost_blades_melee_damage_penetrates_%_cold_resistance + /// + FrostBladesMeleeDamagePenetratesPctColdResistance = 5715, + + /// + /// melee_damage_penetrates_%_cold_resistance + /// + MeleeDamagePenetratesPctColdResistance = 5716, + + /// + /// local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield + /// + LocalDisplaySocketedGolemSkillsMinionsLifePctToAddAsEnergyShield = 5717, + + /// + /// mana_leech_permyriad_vs_frozen_enemies + /// + ManaLeechPermyriadVsFrozenEnemies = 5718, + + /// + /// map_mini_monolith_monsters_are_magic + /// + MapMiniMonolithMonstersAreMagic = 5719, + + /// + /// map_shrines_grant_a_random_additional_effect + /// + MapShrinesGrantARandomAdditionalEffect = 5720, + + /// + /// map_shrines_drop_x_currency_items_on_activation + /// + MapShrinesDropXCurrencyItemsOnActivation = 5721, + + /// + /// map_monsters_spawned_with_talisman_drop_additional_rare_items + /// + MapMonstersSpawnedWithTalismanDropAdditionalRareItems = 5722, + + /// + /// chance_to_cast_on_kill_% + /// + ChanceToCastOnKillPct = 5723, + + /// + /// map_warbands_packs_have_additional_grunts + /// + MapWarbandsPacksHaveAdditionalGrunts = 5724, + + /// + /// map_warbands_packs_have_additional_supports + /// + MapWarbandsPacksHaveAdditionalSupports = 5725, + + /// + /// map_warbands_packs_have_additional_elites + /// + MapWarbandsPacksHaveAdditionalElites = 5726, + + /// + /// map_leaguestone_warbands_packs_have_item_rarity_+%_final + /// + MapLeaguestoneWarbandsPacksHaveItemRarityPctFinal = 5727, + + /// + /// map_leaguestone_warbands_packs_have_item_quantity_+%_final + /// + MapLeaguestoneWarbandsPacksHaveItemQuantityPctFinal = 5728, + + /// + /// map_monsters_near_shrines_are_chilled + /// + MapMonstersNearShrinesAreChilled = 5729, + + /// + /// map_imprisoned_monsters_damage_taken_+% + /// + MapImprisonedMonstersDamageTakenPct = 5730, + + /// + /// map_imprisoned_monsters_damage_+% + /// + MapImprisonedMonstersDamagePct = 5731, + + /// + /// map_leaguestone_imprisoned_monsters_item_rarity_+%_final + /// + MapLeaguestoneImprisonedMonstersItemRarityPctFinal = 5732, + + /// + /// map_leaguestone_imprisoned_monsters_item_quantity_+%_final + /// + MapLeaguestoneImprisonedMonstersItemQuantityPctFinal = 5733, + + /// + /// map_leaguestone_strongboxes_rarity_override + /// + MapLeaguestoneStrongboxesRarityOverride = 5734, + + /// + /// has_shrine_effect + /// + HasShrineEffect = 5735, + + /// + /// map_player_dodge_chance_%_during_shrine_effect + /// + MapPlayerDodgeChancePctDuringShrineEffect = 5736, + + /// + /// dodge_chance_%_during_shrine_effect + /// + DodgeChancePctDuringShrineEffect = 5737, + + /// + /// map_player_damage_+%_vs_breach_monsters + /// + MapPlayerDamagePctVsBreachMonsters = 5738, + + /// + /// map_player_damage_taken_+%_vs_breach_monsters + /// + MapPlayerDamageTakenPctVsBreachMonsters = 5739, + + /// + /// damage_+%_vs_breach_monsters + /// + DamagePctVsBreachMonsters = 5740, + + /// + /// damage_taken_+%_vs_breach_monsters + /// + DamageTakenPctVsBreachMonsters = 5741, + + /// + /// map_rare_breach_monster_additional_breach_ring_drop_chance_% + /// + MapRareBreachMonsterAdditionalBreachRingDropChancePct = 5742, + + /// + /// map_strongboxes_vaal_orb_drop_chance_% + /// + MapStrongboxesVaalOrbDropChancePct = 5743, + + /// + /// map_player_shrine_effect_duration_+% + /// + MapPlayerShrineEffectDurationPct = 5744, + + /// + /// monster_is_beyond_boss + /// + MonsterIsBeyondBoss = 5745, + + /// + /// active_skill_base_radius_+ + /// + ActiveSkillBaseRadius = 5746, + + /// + /// map_leaguestone_area_contains_x_additional_leaguestones + /// + MapLeaguestoneAreaContainsXAdditionalLeaguestones = 5747, + + /// + /// map_leaguestone_monolith_contains_essence_type + /// + MapLeaguestoneMonolithContainsEssenceType = 5748, + + /// + /// map_contains_uul_netol_breach + /// + MapContainsUulNetolBreach = 5749, + + /// + /// map_contains_chayula_breach + /// + MapContainsChayulaBreach = 5750, + + /// + /// number_of_animated_weapons_allowed + /// + NumberOfAnimatedWeaponsAllowed = 5751, + + /// + /// number_of_active_animated_weapons + /// + NumberOfActiveAnimatedWeapons = 5752, + + /// + /// map_leaguestone_perandus_chests_have_item_rarity_+%_final + /// + MapLeaguestonePerandusChestsHaveItemRarityPctFinal = 5753, + + /// + /// map_leaguestone_perandus_chests_have_item_quantity_+%_final + /// + MapLeaguestonePerandusChestsHaveItemQuantityPctFinal = 5754, + + /// + /// map_perandus_monsters_drop_perandus_coin_stack_% + /// + MapPerandusMonstersDropPerandusCoinStackPct = 5755, + + /// + /// map_perandus_guards_are_rare + /// + MapPerandusGuardsAreRare = 5756, + + /// + /// map_contains_perandus_boss + /// + MapContainsPerandusBoss = 5757, + + /// + /// drop_perandus_coin_stack_% + /// + DropPerandusCoinStackPct = 5758, + + /// + /// kills_count_twice_for_rampage_% + /// + KillsCountTwiceForRampagePct = 5759, + + /// + /// map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs + /// + MapNextAreaContainsXAdditionalVoidspawnOfAbaxothPacks = 5760, + + /// + /// map_next_area_contains_x_additional_bearers_of_the_guardian_packs + /// + MapNextAreaContainsXAdditionalBearersOfTheGuardianPacks = 5761, + + /// + /// map_gain_onslaught_for_x_ms_on_killing_rare_monster + /// + MapGainOnslaughtForXMsOnKillingRareMonster = 5762, + + /// + /// gain_onslaught_for_x_ms_on_killing_rare_monster + /// + GainOnslaughtForXMsOnKillingRareMonster = 5763, + + /// + /// monster_held_item_force_no_drop_penalty + /// + MonsterHeldItemForceNoDropPenalty = 5764, + + /// + /// leaguestone_prefix_minimum_area_level + /// + LeaguestonePrefixMinimumAreaLevel = 5765, + + /// + /// leaguestone_suffix_minimum_area_level + /// + LeaguestoneSuffixMinimumAreaLevel = 5766, + + /// + /// map_rare_monsters_drop_rare_prismatic_ring_on_death_% + /// + MapRareMonstersDropRarePrismaticRingOnDeathPct = 5767, + + /// + /// drop_rare_prismatic_ring_on_death_% + /// + DropRarePrismaticRingOnDeathPct = 5768, + + /// + /// map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_% + /// + MapPlayersGain1RareMonsterModsOnKillFor20SecondsPct = 5769, + + /// + /// gain_1_rare_monster_mods_on_kill_for_20_seconds_% + /// + Gain1RareMonsterModsOnKillFor20SecondsPct = 5770, + + /// + /// monster_is_beyond_monster + /// + MonsterIsBeyondMonster = 5771, + + /// + /// map_spawn_beyond_boss_when_beyond_boss_slain_% + /// + MapSpawnBeyondBossWhenBeyondBossSlainPct = 5772, + + /// + /// map_damage_taken_+%_from_beyond_monsters + /// + MapDamageTakenPctFromBeyondMonsters = 5773, + + /// + /// damage_taken_+%_from_beyond_monsters + /// + DamageTakenPctFromBeyondMonsters = 5774, + + /// + /// map_monster_damage_taken_+%_while_possessed + /// + MapMonsterDamageTakenPctWhilePossessed = 5775, + + /// + /// monster_damage_taken_+%_while_possessed + /// + MonsterDamageTakenPctWhilePossessed = 5776, + + /// + /// map_invasion_bosses_drop_x_additional_vaal_orbs + /// + MapInvasionBossesDropXAdditionalVaalOrbs = 5777, + + /// + /// map_invasion_bosses_dropped_items_are_fully_linked + /// + MapInvasionBossesDroppedItemsAreFullyLinked = 5778, + + /// + /// map_invasion_bosses_dropped_items_have_x_additional_sockets + /// + MapInvasionBossesDroppedItemsHaveXAdditionalSockets = 5779, + + /// + /// is_holding_silver_coin + /// + IsHoldingSilverCoin = 5780, + + /// + /// map_monsters_with_silver_coins_drop_x_additional_rare_items + /// + MapMonstersWithSilverCoinsDropXAdditionalRareItems = 5781, + + /// + /// map_monsters_with_silver_coins_drop_x_additional_currency_items + /// + MapMonstersWithSilverCoinsDropXAdditionalCurrencyItems = 5782, + + /// + /// map_bloodline_packs_drop_x_additional_rare_items + /// + MapBloodlinePacksDropXAdditionalRareItems = 5783, + + /// + /// map_bloodline_packs_drop_x_additional_currency_items + /// + MapBloodlinePacksDropXAdditionalCurrencyItems = 5784, + + /// + /// map_player_attack_cast_and_movement_speed_+%_during_onslaught + /// + MapPlayerAttackCastAndMovementSpeedPctDuringOnslaught = 5785, + + /// + /// attack_cast_and_movement_speed_+%_during_onslaught + /// + AttackCastAndMovementSpeedPctDuringOnslaught = 5786, + + /// + /// map_leaguestone_additional_shrines + /// + MapLeaguestoneAdditionalShrines = 5787, + + /// + /// active_skill_area_of_effect_radius_+%_final + /// + ActiveSkillAreaOfEffectRadiusPctFinal = 5788, + + /// + /// map_rare_monsters_are_hindered + /// + MapRareMonstersAreHindered = 5789, + + /// + /// map_players_movement_speed_+% + /// + MapPlayersMovementSpeedPct = 5790, + + /// + /// map_magic_monsters_damage_taken_+% + /// + MapMagicMonstersDamageTakenPct = 5791, + + /// + /// map_magic_monsters_are_maimed + /// + MapMagicMonstersAreMaimed = 5792, + + /// + /// map_players_gain_onslaught_during_flask_effect + /// + MapPlayersGainOnslaughtDuringFlaskEffect = 5793, + + /// + /// map_players_gain_rare_monster_mods_on_kill_%_chance + /// + MapPlayersGainRareMonsterModsOnKillPctChance = 5794, + + /// + /// gain_rare_monster_mods_on_kill_%_chance + /// + GainRareMonsterModsOnKillPctChance = 5795, + + /// + /// map_invasion_bosses_are_twinned + /// + MapInvasionBossesAreTwinned = 5796, + + /// + /// map_tormented_spirits_movement_speed_+% + /// + MapTormentedSpiritsMovementSpeedPct = 5797, + + /// + /// map_tormented_spirits_duration_+% + /// + MapTormentedSpiritsDurationPct = 5798, + + /// + /// map_players_gain_onslaught_after_opening_a_strongbox_ms + /// + MapPlayersGainOnslaughtAfterOpeningAStrongboxMs = 5799, + + /// + /// gain_onslaught_after_opening_a_strongbox_ms + /// + GainOnslaughtAfterOpeningAStrongboxMs = 5800, + + /// + /// map_players_additional_spell_dodge_% + /// + MapPlayersAdditionalSpellDodgePct = 5801, + + /// + /// map_rare_monsters_have_inner_treasure + /// + MapRareMonstersHaveInnerTreasure = 5802, + + /// + /// map_leaguestone_override_base_num_prophecy_coins + /// + MapLeaguestoneOverrideBaseNumProphecyCoins = 5803, + + /// + /// map_leaguestone_additional_prophecy_coins + /// + MapLeaguestoneAdditionalProphecyCoins = 5804, + + /// + /// map_leaguestone_override_base_num_invasion_bosses + /// + MapLeaguestoneOverrideBaseNumInvasionBosses = 5805, + + /// + /// map_leaguestone_additional_invasion_bosses + /// + MapLeaguestoneAdditionalInvasionBosses = 5806, + + /// + /// map_monster_beyond_portal_chance_+% + /// + MapMonsterBeyondPortalChancePct = 5807, + + /// + /// local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius + /// + LocalUniqueJewelFireballBaseRadiusUpToAtLongerRangesWith40IntInRadius = 5808, + + /// + /// fireball_base_radius_up_to_+_at_longer_ranges + /// + FireballBaseRadiusUpToAtLongerRanges = 5809, + + /// + /// local_display_cast_level_x_shock_ground_when_hit + /// + LocalDisplayCastLevelXShockGroundWhenHit = 5810, + + /// + /// curse_with_enfeeble_on_hit_%_against_uncursed_enemies + /// + CurseWithEnfeebleOnHitPctAgainstUncursedEnemies = 5811, + + /// + /// map_rogue_exiles_drop_additional_currency_items_with_quality + /// + MapRogueExilesDropAdditionalCurrencyItemsWithQuality = 5812, + + /// + /// map_rogue_exiles_dropped_items_are_duplicated + /// + MapRogueExilesDroppedItemsAreDuplicated = 5813, + + /// + /// map_rogue_exiles_dropped_items_are_corrupted + /// + MapRogueExilesDroppedItemsAreCorrupted = 5814, + + /// + /// map_rogue_exiles_dropped_items_are_fully_linked + /// + MapRogueExilesDroppedItemsAreFullyLinked = 5815, + + /// + /// drop_additional_vaal_orbs + /// + DropAdditionalVaalOrbs = 5816, + + /// + /// map_contains_additional_mandible_talisman + /// + MapContainsAdditionalMandibleTalisman = 5817, + + /// + /// map_contains_additional_chrysalis_talisman + /// + MapContainsAdditionalChrysalisTalisman = 5818, + + /// + /// map_contains_additional_writhing_talisman + /// + MapContainsAdditionalWrithingTalisman = 5819, + + /// + /// map_contains_additional_fangjaw_talisman + /// + MapContainsAdditionalFangjawTalisman = 5820, + + /// + /// map_contains_additional_clutching_talisman + /// + MapContainsAdditionalClutchingTalisman = 5821, + + /// + /// map_contains_additional_three_rat_talisman + /// + MapContainsAdditionalThreeRatTalisman = 5822, + + /// + /// map_contains_additional_unique_talisman + /// + MapContainsAdditionalUniqueTalisman = 5823, + + /// + /// map_tempest_frequency_+% + /// + MapTempestFrequencyPct = 5824, + + /// + /// map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks + /// + MapPlayerLifeRegenerationRatePerMinutePctPer25RampageStacks = 5825, + + /// + /// life_regeneration_rate_per_minute_%_per_25_rampage_stacks + /// + LifeRegenerationRatePerMinutePctPer25RampageStacks = 5826, + + /// + /// map_player_damage_taken_+%_while_rampaging + /// + MapPlayerDamageTakenPctWhileRampaging = 5827, + + /// + /// damage_taken_+%_while_rampaging + /// + DamageTakenPctWhileRampaging = 5828, + + /// + /// map_contains_corrupted_strongbox + /// + MapContainsCorruptedStrongbox = 5829, + + /// + /// number_of_monsters_to_summon_override + /// + NumberOfMonstersToSummonOverride = 5830, + + /// + /// monster_beyond_portal_chance_+%_final + /// + MonsterBeyondPortalChancePctFinal = 5831, + + /// + /// map_num_leaguestones_active + /// + MapNumLeaguestonesActive = 5832, + + /// + /// virtual_monster_dropped_item_rarity_+% + /// + VirtualMonsterDroppedItemRarityPct = 5833, + + /// + /// virtual_monster_dropped_item_quantity_+% + /// + VirtualMonsterDroppedItemQuantityPct = 5834, + + /// + /// virtual_chest_item_quantity_+% + /// + VirtualChestItemQuantityPct = 5835, + + /// + /// virtual_chest_item_rarity_+% + /// + VirtualChestItemRarityPct = 5836, + + /// + /// leaguestone_monster_dropped_item_rarity_+%_final + /// + LeaguestoneMonsterDroppedItemRarityPctFinal = 5837, + + /// + /// leaguestone_monster_dropped_item_quantity_+%_final + /// + LeaguestoneMonsterDroppedItemQuantityPctFinal = 5838, + + /// + /// leaguestone_chest_item_quantity_+%_final + /// + LeaguestoneChestItemQuantityPctFinal = 5839, + + /// + /// leaguestone_chest_item_rarity_+%_final + /// + LeaguestoneChestItemRarityPctFinal = 5840, + + /// + /// map_leaguestone_stone_circle_%_chance + /// + MapLeaguestoneStoneCirclePctChance = 5841, + + /// + /// local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius + /// + LocalUniqueJewelFrostBladesProjectileSpeedPctWith40DexInRadius = 5842, + + /// + /// local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeMainHandDealsDoubleDamagePctWith40DexInRadius = 5843, + + /// + /// dual_strike_main_hand_deals_double_damage_% + /// + DualStrikeMainHandDealsDoubleDamagePct = 5844, + + /// + /// chance_to_deal_double_damage_% + /// + ChanceToDealDoubleDamagePct = 5845, + + /// + /// always_ignite_while_burning + /// + AlwaysIgniteWhileBurning = 5846, + + /// + /// full_life_threshold + /// + FullLifeThreshold = 5847, + + /// + /// unique_rat_cage_chance_to_squeak_when_hit_by_fire_damage + /// + UniqueRatCageChanceToSqueakWhenHitByFireDamage = 5848, + + /// + /// map_monster_slain_experience_+% + /// + MapMonsterSlainExperiencePct = 5849, + + /// + /// map_imprisoned_monsters_action_speed_+% + /// + MapImprisonedMonstersActionSpeedPct = 5850, + + /// + /// is_beyond_monster_daemon + /// + IsBeyondMonsterDaemon = 5851, + + /// + /// map_tempest_area_of_effect_+%_visible + /// + MapTempestAreaOfEffectPctVisible = 5852, + + /// + /// fortify_applies_to_nearby_allies_for_X_seconds + /// + FortifyAppliesToNearbyAlliesForXSeconds = 5853, + + /// + /// suppress_phasing_visual + /// + SuppressPhasingVisual = 5854, + + /// + /// show_phasing_visual + /// + ShowPhasingVisual = 5855, + + /// + /// energy_shield_has_started_recharging_recently + /// + EnergyShieldHasStartedRechargingRecently = 5856, + + /// + /// track_energy_shield_has_started_recharging_recently + /// + TrackEnergyShieldHasStartedRechargingRecently = 5857, + + /// + /// not_affected_by_action_speed_modifiers + /// + NotAffectedByActionSpeedModifiers = 5858, + + /// + /// map_player_movement_velocity_+% + /// + MapPlayerMovementVelocityPct = 5859, + + /// + /// lunaris_glaive_angle + /// + LunarisGlaiveAngle = 5860, + + /// + /// lunaris_glaive_acceleration_x + /// + LunarisGlaiveAccelerationX = 5861, + + /// + /// lunaris_glaive_acceleration_y + /// + LunarisGlaiveAccelerationY = 5862, + + /// + /// maintain_projectile_direction_when_using_contact_position + /// + MaintainProjectileDirectionWhenUsingContactPosition = 5863, + + /// + /// map_force_side_area + /// + MapForceSideArea = 5864, + + /// + /// map_num_sextant_mods + /// + MapNumSextantMods = 5865, + + /// + /// cannot_be_stunned_if_you_have_been_stunned_recently + /// + CannotBeStunnedIfYouHaveBeenStunnedRecently = 5866, + + /// + /// track_have_been_stunned_recently + /// + TrackHaveBeenStunnedRecently = 5867, + + /// + /// have_been_stunned_recently + /// + HaveBeenStunnedRecently = 5868, + + /// + /// cannot_be_frozen_if_you_have_been_frozen_recently + /// + CannotBeFrozenIfYouHaveBeenFrozenRecently = 5869, + + /// + /// track_have_been_frozen_recently + /// + TrackHaveBeenFrozenRecently = 5870, + + /// + /// have_been_frozen_recently + /// + HaveBeenFrozenRecently = 5871, + + /// + /// life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently + /// + LifeAndEnergyShieldRecoveryRatePctIfStoppedTakingDamageOverTimeRecently = 5872, + + /// + /// movement_speed_+%_while_on_burning_ground + /// + MovementSpeedPctWhileOnBurningGround = 5873, + + /// + /// chaos_damage_over_time_resistance_% + /// + ChaosDamageOverTimeResistancePct = 5874, + + /// + /// while_stationary_gain_additional_physical_damage_reduction_% + /// + WhileStationaryGainAdditionalPhysicalDamageReductionPct = 5875, + + /// + /// while_stationary_gain_life_regeneration_rate_per_minute_% + /// + WhileStationaryGainLifeRegenerationRatePerMinutePct = 5876, + + /// + /// fire_damage_taken_+%_while_moving + /// + FireDamageTakenPctWhileMoving = 5877, + + /// + /// life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently + /// + LifeFlasksGainXChargesEvery3SecondsIfYouHaveNotUsedALifeFlaskRecently = 5878, + + /// + /// life_recovery_+%_from_flasks_while_on_low_life + /// + LifeRecoveryPctFromFlasksWhileOnLowLife = 5879, + + /// + /// virtual_flask_life_to_recover_+% + /// + VirtualFlaskLifeToRecoverPct = 5880, + + /// + /// additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently + /// + AdditionalPctChanceToEvadeAttacksIfYouHaveTakenASavageHitRecently = 5881, + + /// + /// physical_damage_reduction_%_per_hit_you_have_taken_recently + /// + PhysicalDamageReductionPctPerHitYouHaveTakenRecently = 5882, + + /// + /// curses_have_no_effect_on_you_for_4_seconds_every_10_seconds + /// + CursesHaveNoEffectOnYouFor4SecondsEvery10Seconds = 5883, + + /// + /// hinder_effect_on_self_+% + /// + HinderEffectOnSelfPct = 5884, + + /// + /// avoid_corrupted_blood_%_chance + /// + AvoidCorruptedBloodPctChance = 5885, + + /// + /// avoid_maim_%_chance + /// + AvoidMaimPctChance = 5886, + + /// + /// monster_ground_fire_on_death_variation + /// + MonsterGroundFireOnDeathVariation = 5887, + + /// + /// traps_explode_on_timeout + /// + TrapsExplodeOnTimeout = 5888, + + /// + /// physical_skill_dot_damage_to_deal_per_minute + /// + PhysicalSkillDotDamageToDealPerMinute = 5889, + + /// + /// fire_skill_dot_damage_to_deal_per_minute + /// + FireSkillDotDamageToDealPerMinute = 5890, + + /// + /// cold_skill_dot_damage_to_deal_per_minute + /// + ColdSkillDotDamageToDealPerMinute = 5891, + + /// + /// lightning_skill_dot_damage_to_deal_per_minute + /// + LightningSkillDotDamageToDealPerMinute = 5892, + + /// + /// chaos_skill_dot_damage_to_deal_per_minute + /// + ChaosSkillDotDamageToDealPerMinute = 5893, + + /// + /// physical_area_damage_to_deal_per_minute + /// + PhysicalAreaDamageToDealPerMinute = 5894, + + /// + /// fire_area_damage_to_deal_per_minute + /// + FireAreaDamageToDealPerMinute = 5895, + + /// + /// cold_area_damage_to_deal_per_minute + /// + ColdAreaDamageToDealPerMinute = 5896, + + /// + /// lightning_area_damage_to_deal_per_minute + /// + LightningAreaDamageToDealPerMinute = 5897, + + /// + /// chaos_area_damage_to_deal_per_minute + /// + ChaosAreaDamageToDealPerMinute = 5898, + + /// + /// physical_skill_dot_area_damage_to_deal_per_minute + /// + PhysicalSkillDotAreaDamageToDealPerMinute = 5899, + + /// + /// fire_skill_dot_area_damage_to_deal_per_minute + /// + FireSkillDotAreaDamageToDealPerMinute = 5900, + + /// + /// cold_skill_dot_area_damage_to_deal_per_minute + /// + ColdSkillDotAreaDamageToDealPerMinute = 5901, + + /// + /// lightning_skill_dot_area_damage_to_deal_per_minute + /// + LightningSkillDotAreaDamageToDealPerMinute = 5902, + + /// + /// chaos_skill_dot_area_damage_to_deal_per_minute + /// + ChaosSkillDotAreaDamageToDealPerMinute = 5903, + + /// + /// combined_attack_elemental_damage_pluspercent + /// + CombinedAttackElementalDamagePluspercent = 5904, + + /// + /// combined_attack_lightning_damage_pluspercent + /// + CombinedAttackLightningDamagePluspercent = 5905, + + /// + /// combined_attack_lightning_damage_pluspercent_final + /// + CombinedAttackLightningDamagePluspercentFinal = 5906, + + /// + /// combined_skill_dot_elemental_damage_over_time_+% + /// + CombinedSkillDotElementalDamageOverTimePct = 5907, + + /// + /// combined_skill_dot_fire_damage_over_time_+% + /// + CombinedSkillDotFireDamageOverTimePct = 5908, + + /// + /// combined_skill_dot_cold_damage_over_time_+% + /// + CombinedSkillDotColdDamageOverTimePct = 5909, + + /// + /// combined_skill_dot_lightning_damage_over_time_+% + /// + CombinedSkillDotLightningDamageOverTimePct = 5910, + + /// + /// combined_skill_dot_lightning_damage_over_time_+%_final + /// + CombinedSkillDotLightningDamageOverTimePctFinal = 5911, + + /// + /// ignite_damage_+% + /// + IgniteDamagePct = 5912, + + /// + /// combined_ignite_damage_over_time_+% + /// + CombinedIgniteDamageOverTimePct = 5913, + + /// + /// bleed_is_skill_dot + /// + BleedIsSkillDot = 5914, + + /// + /// ignite_is_skill_dot + /// + IgniteIsSkillDot = 5915, + + /// + /// poison_is_skill_dot + /// + PoisonIsSkillDot = 5916, + + /// + /// deal_no_bleed_damage_over_time + /// + DealNoBleedDamageOverTime = 5917, + + /// + /// deal_no_ignite_damage_over_time + /// + DealNoIgniteDamageOverTime = 5918, + + /// + /// deal_no_poison_damage_over_time + /// + DealNoPoisonDamageOverTime = 5919, + + /// + /// minimum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MinimumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5920, + + /// + /// maximum_bleed_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MaximumBleedDamageToDealPerMinuteFromMainHandPhysicalDamage = 5921, + + /// + /// keystone_ghost_reaver + /// + KeystoneGhostReaver = 5922, + + /// + /// infest_on_hit_chance_% + /// + InfestOnHitChancePct = 5923, + + /// + /// infest_on_hit_duration_ms + /// + InfestOnHitDurationMs = 5924, + + /// + /// energy_shield_per_level + /// + EnergyShieldPerLevel = 5925, + + /// + /// minimum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MinimumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5926, + + /// + /// maximum_bleed_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MaximumBleedDamageToDealPerMinuteFromOffHandPhysicalDamage = 5927, + + /// + /// virtual_physical_damage_can_ignite + /// + VirtualPhysicalDamageCanIgnite = 5928, + + /// + /// virtual_fire_damage_cannot_ignite + /// + VirtualFireDamageCannotIgnite = 5929, + + /// + /// virtual_cold_damage_can_ignite + /// + VirtualColdDamageCanIgnite = 5930, + + /// + /// virtual_lightning_damage_can_ignite + /// + VirtualLightningDamageCanIgnite = 5931, + + /// + /// virtual_chaos_damage_can_ignite + /// + VirtualChaosDamageCanIgnite = 5932, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MinimumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5933, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MaximumIgniteDamageToDealPerMinuteFromMainHandPhysicalDamage = 5934, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage + /// + MinimumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5935, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_fire_damage + /// + MaximumIgniteDamageToDealPerMinuteFromMainHandFireDamage = 5936, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage + /// + MinimumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5937, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_cold_damage + /// + MaximumIgniteDamageToDealPerMinuteFromMainHandColdDamage = 5938, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage + /// + MinimumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5939, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_lightning_damage + /// + MaximumIgniteDamageToDealPerMinuteFromMainHandLightningDamage = 5940, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage + /// + MinimumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5941, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_main_hand_chaos_damage + /// + MaximumIgniteDamageToDealPerMinuteFromMainHandChaosDamage = 5942, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MinimumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5943, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MaximumIgniteDamageToDealPerMinuteFromOffHandPhysicalDamage = 5944, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage + /// + MinimumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5945, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_fire_damage + /// + MaximumIgniteDamageToDealPerMinuteFromOffHandFireDamage = 5946, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage + /// + MinimumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5947, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_cold_damage + /// + MaximumIgniteDamageToDealPerMinuteFromOffHandColdDamage = 5948, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage + /// + MinimumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5949, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_lightning_damage + /// + MaximumIgniteDamageToDealPerMinuteFromOffHandLightningDamage = 5950, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage + /// + MinimumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5951, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_off_hand_chaos_damage + /// + MaximumIgniteDamageToDealPerMinuteFromOffHandChaosDamage = 5952, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_spell_physical_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5953, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_spell_physical_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSpellPhysicalDamage = 5954, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_spell_fire_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5955, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_spell_fire_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSpellFireDamage = 5956, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_spell_cold_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5957, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_spell_cold_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSpellColdDamage = 5958, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5959, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_spell_lightning_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSpellLightningDamage = 5960, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5961, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_spell_chaos_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSpellChaosDamage = 5962, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5963, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_secondary_physical_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSecondaryPhysicalDamage = 5964, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5965, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_secondary_fire_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSecondaryFireDamage = 5966, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5967, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_secondary_cold_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSecondaryColdDamage = 5968, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5969, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_secondary_lightning_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSecondaryLightningDamage = 5970, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage + /// + MinimumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5971, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_secondary_chaos_damage + /// + MaximumIgniteDamageToDealPerMinuteFromSecondaryChaosDamage = 5972, + + /// + /// global_total_minimum_added_chaos_damage + /// + GlobalTotalMinimumAddedChaosDamage = 5973, + + /// + /// global_total_maximum_added_chaos_damage + /// + GlobalTotalMaximumAddedChaosDamage = 5974, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MinimumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5975, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MaximumIgniteDamageToDealPerMinuteFromNonCriticalMainHandDamage = 5976, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MinimumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5977, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MaximumIgniteDamageToDealPerMinuteFromNonCriticalOffHandDamage = 5978, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage + /// + MinimumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5979, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_spell_damage + /// + MaximumIgniteDamageToDealPerMinuteFromNonCriticalSpellDamage = 5980, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage + /// + MinimumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5981, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_non_critical_secondary_damage + /// + MaximumIgniteDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 5982, + + /// + /// virtual_always_ignite + /// + VirtualAlwaysIgnite = 5983, + + /// + /// trap_additional_random_duration_ms + /// + TrapAdditionalRandomDurationMs = 5984, + + /// + /// minions_hits_can_only_kill_ignited_enemies + /// + MinionsHitsCanOnlyKillIgnitedEnemies = 5985, + + /// + /// hits_can_only_kill_ignited_enemies + /// + HitsCanOnlyKillIgnitedEnemies = 5986, + + /// + /// additional_spell_block_%_while_cursed + /// + AdditionalSpellBlockPctWhileCursed = 5987, + + /// + /// additional_block_%_while_not_cursed + /// + AdditionalBlockPctWhileNotCursed = 5988, + + /// + /// ignite_damage_from_attack_skills_+% + /// + IgniteDamageFromAttackSkillsPct = 5989, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MinimumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5990, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_main_hand_physical_damage + /// + MaximumPoisonDamageToDealPerMinuteFromMainHandPhysicalDamage = 5991, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage + /// + MinimumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5992, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_main_hand_fire_damage + /// + MaximumPoisonDamageToDealPerMinuteFromMainHandFireDamage = 5993, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage + /// + MinimumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5994, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_main_hand_cold_damage + /// + MaximumPoisonDamageToDealPerMinuteFromMainHandColdDamage = 5995, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage + /// + MinimumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 5996, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_main_hand_lightning_damage + /// + MaximumPoisonDamageToDealPerMinuteFromMainHandLightningDamage = 5997, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage + /// + MinimumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 5998, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_main_hand_chaos_damage + /// + MaximumPoisonDamageToDealPerMinuteFromMainHandChaosDamage = 5999, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MinimumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6000, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_off_hand_physical_damage + /// + MaximumPoisonDamageToDealPerMinuteFromOffHandPhysicalDamage = 6001, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage + /// + MinimumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6002, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_off_hand_fire_damage + /// + MaximumPoisonDamageToDealPerMinuteFromOffHandFireDamage = 6003, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage + /// + MinimumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6004, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_off_hand_cold_damage + /// + MaximumPoisonDamageToDealPerMinuteFromOffHandColdDamage = 6005, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage + /// + MinimumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6006, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_off_hand_lightning_damage + /// + MaximumPoisonDamageToDealPerMinuteFromOffHandLightningDamage = 6007, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage + /// + MinimumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6008, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_off_hand_chaos_damage + /// + MaximumPoisonDamageToDealPerMinuteFromOffHandChaosDamage = 6009, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_spell_physical_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6010, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_spell_physical_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSpellPhysicalDamage = 6011, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_spell_fire_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6012, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_spell_fire_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSpellFireDamage = 6013, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_spell_cold_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6014, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_spell_cold_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSpellColdDamage = 6015, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_spell_lightning_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6016, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_spell_lightning_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSpellLightningDamage = 6017, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_spell_chaos_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6018, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_spell_chaos_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSpellChaosDamage = 6019, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_secondary_physical_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6020, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_secondary_physical_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSecondaryPhysicalDamage = 6021, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_secondary_fire_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6022, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_secondary_fire_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSecondaryFireDamage = 6023, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_secondary_cold_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6024, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_secondary_cold_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSecondaryColdDamage = 6025, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6026, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_secondary_lightning_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSecondaryLightningDamage = 6027, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage + /// + MinimumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6028, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_secondary_chaos_damage + /// + MaximumPoisonDamageToDealPerMinuteFromSecondaryChaosDamage = 6029, + + /// + /// combined_poison_damage_over_time_+% + /// + CombinedPoisonDamageOverTimePct = 6030, + + /// + /// poison_damage_from_attack_skills_+% + /// + PoisonDamageFromAttackSkillsPct = 6031, + + /// + /// virtual_physical_damage_cannot_poison + /// + VirtualPhysicalDamageCannotPoison = 6032, + + /// + /// virtual_fire_damage_can_poison + /// + VirtualFireDamageCanPoison = 6033, + + /// + /// virtual_cold_damage_can_poison + /// + VirtualColdDamageCanPoison = 6034, + + /// + /// virtual_lightning_damage_can_poison + /// + VirtualLightningDamageCanPoison = 6035, + + /// + /// virtual_chaos_damage_cannot_poison + /// + VirtualChaosDamageCannotPoison = 6036, + + /// + /// non_chaos_damage_cannot_poison + /// + NonChaosDamageCannotPoison = 6037, + + /// + /// all_damage_can_poison + /// + AllDamageCanPoison = 6038, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MinimumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6039, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MaximumPoisonDamageToDealPerMinuteFromNonCriticalMainHandDamage = 6040, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MinimumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6041, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MaximumPoisonDamageToDealPerMinuteFromNonCriticalOffHandDamage = 6042, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage + /// + MinimumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6043, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_non_critical_spell_damage + /// + MaximumPoisonDamageToDealPerMinuteFromNonCriticalSpellDamage = 6044, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage + /// + MinimumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6045, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_non_critical_secondary_damage + /// + MaximumPoisonDamageToDealPerMinuteFromNonCriticalSecondaryDamage = 6046, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6047, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_main_hand_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalMainHandDamage = 6048, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6049, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_off_hand_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalOffHandDamage = 6050, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6051, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_spell_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSpellDamage = 6052, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6053, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_non_critical_secondary_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromNonCriticalSecondaryDamage = 6054, + + /// + /// ice_spear_second_form_damage_+% + /// + IceSpearSecondFormDamagePct = 6055, + + /// + /// extra_damage_taken_from_crit_while_no_power_charges_+% + /// + ExtraDamageTakenFromCritWhileNoPowerChargesPct = 6056, + + /// + /// chest_display_weylams_war + /// + ChestDisplayWeylamsWar = 6057, + + /// + /// minion_movement_speed_+%_per_50_dex + /// + MinionMovementSpeedPctPer50Dex = 6058, + + /// + /// minion_attack_speed_+%_per_50_dex + /// + MinionAttackSpeedPctPer50Dex = 6059, + + /// + /// main_hand_attack_minimum_added_lightning_damage_per_10_int + /// + MainHandAttackMinimumAddedLightningDamagePer10Int = 6060, + + /// + /// main_hand_attack_maximum_added_lightning_damage_per_10_int + /// + MainHandAttackMaximumAddedLightningDamagePer10Int = 6061, + + /// + /// off_hand_attack_minimum_added_lightning_damage_per_10_int + /// + OffHandAttackMinimumAddedLightningDamagePer10Int = 6062, + + /// + /// off_hand_attack_maximum_added_lightning_damage_per_10_int + /// + OffHandAttackMaximumAddedLightningDamagePer10Int = 6063, + + /// + /// main_hand_attack_minimum_added_fire_damage_per_10_strength + /// + MainHandAttackMinimumAddedFireDamagePer10Strength = 6064, + + /// + /// main_hand_attack_maximum_added_fire_damage_per_10_strength + /// + MainHandAttackMaximumAddedFireDamagePer10Strength = 6065, + + /// + /// off_hand_attack_minimum_added_fire_damage_per_10_strength + /// + OffHandAttackMinimumAddedFireDamagePer10Strength = 6066, + + /// + /// off_hand_attack_maximum_added_fire_damage_per_10_strength + /// + OffHandAttackMaximumAddedFireDamagePer10Strength = 6067, + + /// + /// fire_beam_start_angle_offset_variance + /// + FireBeamStartAngleOffsetVariance = 6068, + + /// + /// display_monster_may_inflict_bleeding + /// + DisplayMonsterMayInflictBleeding = 6069, + + /// + /// combined_bleeding_damage_over_time_+% + /// + CombinedBleedingDamageOverTimePct = 6070, + + /// + /// combined_bleeding_damage_over_time_+%_final + /// + CombinedBleedingDamageOverTimePctFinal = 6071, + + /// + /// bleeding_damage_+% + /// + BleedingDamagePct = 6072, + + /// + /// active_skill_bleeding_damage_+%_final + /// + ActiveSkillBleedingDamagePctFinal = 6073, + + /// + /// frog_god_number_of_orbs_to_summon + /// + FrogGodNumberOfOrbsToSummon = 6074, + + /// + /// combined_ignite_damage_over_time_+%_final + /// + CombinedIgniteDamageOverTimePctFinal = 6075, + + /// + /// physical_damage_with_attack_skills_+% + /// + PhysicalDamageWithAttackSkillsPct = 6076, + + /// + /// Elemental Damage With Attack Skills +% + /// + ElementalDamageWithAttackSkillsPct = 6077, + + /// + /// fire_damage_with_attack_skills_+% + /// + FireDamageWithAttackSkillsPct = 6078, + + /// + /// cold_damage_with_attack_skills_+% + /// + ColdDamageWithAttackSkillsPct = 6079, + + /// + /// lightning_damage_with_attack_skills_+% + /// + LightningDamageWithAttackSkillsPct = 6080, + + /// + /// chaos_damage_with_attack_skills_+% + /// + ChaosDamageWithAttackSkillsPct = 6081, + + /// + /// doedre_aura_damage_+%_final + /// + DoedreAuraDamagePctFinal = 6082, + + /// + /// base_fire_damage_%_of_maximum_life_plus_maximum_ES_to_deal_per_minute + /// + BaseFireDamagePctOfMaximumLifePlusMaximumESToDealPerMinute = 6083, + + /// + /// cast_at_teleport_start_% + /// + CastAtTeleportStartPct = 6084, + + /// + /// cast_at_teleport_end_% + /// + CastAtTeleportEndPct = 6085, + + /// + /// summoned_monsters_are_parented_to_my_target + /// + SummonedMonstersAreParentedToMyTarget = 6086, + + /// + /// cast_at_mortar_impact_% + /// + CastAtMortarImpactPct = 6087, + + /// + /// mortar_has_triggered_skills + /// + MortarHasTriggeredSkills = 6088, + + /// + /// active_skill_base_attack_damage_final_+permyriad + /// + ActiveSkillBaseAttackDamageFinalPermyriad = 6089, + + /// + /// map_bosses_have_summon_zombie_giant + /// + MapBossesHaveSummonZombieGiant = 6090, + + /// + /// monster_spawn_bloodlines_zombie_giant + /// + MonsterSpawnBloodlinesZombieGiant = 6091, + + /// + /// critical_ailment_dot_multiplier_+ + /// + CriticalAilmentDotMultiplier = 6092, + + /// + /// monster_ignite_damage_+%_final + /// + MonsterIgniteDamagePctFinal = 6093, + + /// + /// monster_bleeding_damage_+%_final + /// + MonsterBleedingDamagePctFinal = 6094, + + /// + /// monster_poison_damage_+%_final + /// + MonsterPoisonDamagePctFinal = 6095, + + /// + /// combined_poison_damage_over_time_+%_final + /// + CombinedPoisonDamageOverTimePctFinal = 6096, + + /// + /// bleeding_moving_damage_%_of_base_override + /// + BleedingMovingDamagePctOfBaseOverride = 6097, + + /// + /// active_skill_if_used_through_frostbolt_damage_+%_final + /// + ActiveSkillIfUsedThroughFrostboltDamagePctFinal = 6098, + + /// + /// used_through_frostbolt + /// + UsedThroughFrostbolt = 6099, + + /// + /// display_monster_may_inflict_maim + /// + DisplayMonsterMayInflictMaim = 6100, + + /// + /// support_attack_skills_elemental_damage_+%_final + /// + SupportAttackSkillsElementalDamagePctFinal = 6101, + + /// + /// elemental_damage_with_attack_skills_+%_while_using_flask + /// + ElementalDamageWithAttackSkillsPctWhileUsingFlask = 6102, + + /// + /// support_burning_damage_+%_final + /// + SupportBurningDamagePctFinal = 6103, + + /// + /// bleeding_skill_effect_duration + /// + BleedingSkillEffectDuration = 6104, + + /// + /// bleed_duration_is_skill_duration + /// + BleedDurationIsSkillDuration = 6105, + + /// + /// base_all_ailment_duration_+% + /// + BaseAllAilmentDurationPct = 6106, + + /// + /// shocked_enemies_explode_for_%_life_as_lightning_damage + /// + ShockedEnemiesExplodeForPctLifeAsLightningDamage = 6107, + + /// + /// track_number_of_enemies_shocked_recently + /// + TrackNumberOfEnemiesShockedRecently = 6108, + + /// + /// number_of_enemies_shocked_recently + /// + NumberOfEnemiesShockedRecently = 6109, + + /// + /// damage_+%_if_you_have_shocked_recently + /// + DamagePctIfYouHaveShockedRecently = 6110, + + /// + /// herald_mana_reservation_override_45% + /// + HeraldManaReservationOverride45Pct = 6111, + + /// + /// avoid_stun_35%_per_active_herald + /// + AvoidStun35PctPerActiveHerald = 6112, + + /// + /// number_of_active_heralds + /// + NumberOfActiveHeralds = 6113, + + /// + /// base_avoid_stun_% + /// + BaseAvoidStunPct = 6114, + + /// + /// herald_of_ash_burning_damage_+%_final + /// + HeraldOfAshBurningDamagePctFinal = 6115, + + /// + /// depair_bear_upheaval_movement_speed_+% + /// + DepairBearUpheavalMovementSpeedPct = 6116, + + /// + /// virtual_ignite_faster_burn_% + /// + VirtualIgniteFasterBurnPct = 6117, + + /// + /// kill_traps_mines_and_totems_on_death + /// + KillTrapsMinesAndTotemsOnDeath = 6118, + + /// + /// chest_drop_X_divination_cards + /// + ChestDropXDivinationCards = 6119, + + /// + /// chest_drop_divination_cards_with_full_stack_number_X + /// + ChestDropDivinationCardsWithFullStackNumberX = 6120, + + /// + /// keystone_ailment_crit + /// + KeystoneAilmentCrit = 6121, + + /// + /// fire_beam_prioritise_players_for_targeting + /// + FireBeamPrioritisePlayersForTargeting = 6122, + + /// + /// support_ignite_proliferation_radius + /// + SupportIgniteProliferationRadius = 6123, + + /// + /// support_maimed_enemies_physical_damage_taken_+% + /// + SupportMaimedEnemiesPhysicalDamageTakenPct = 6124, + + /// + /// support_chance_to_ignite_fire_damage_+%_final + /// + SupportChanceToIgniteFireDamagePctFinal = 6125, + + /// + /// support_better_ailments_ailment_damage_+%_final + /// + SupportBetterAilmentsAilmentDamagePctFinal = 6126, + + /// + /// support_better_ailments_hit_damage_+%_final + /// + SupportBetterAilmentsHitDamagePctFinal = 6127, + + /// + /// additional_chaos_resistance_against_damage_over_time_% + /// + AdditionalChaosResistanceAgainstDamageOverTimePct = 6128, + + /// + /// from_code_active_skill_hit_damage_+%_final + /// + FromCodeActiveSkillHitDamagePctFinal = 6129, + + /// + /// hit_damage_+% + /// + HitDamagePct = 6130, + + /// + /// uncapped_chaos_damage_over_time_resistance_% + /// + UncappedChaosDamageOverTimeResistancePct = 6131, + + /// + /// attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently + /// + AttackCastMovementSpeedPctIfTakenASavageHitRecently = 6132, + + /// + /// chaos_resistance_%_for_you_and_allies_affected_by_your_auras + /// + ChaosResistancePctForYouAndAlliesAffectedByYourAuras = 6133, + + /// + /// additional_block_chance_%_for_you_and_allies_affected_by_your_auras + /// + AdditionalBlockChancePctForYouAndAlliesAffectedByYourAuras = 6134, + + /// + /// attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras + /// + AttackCastMovementSpeedPctForYouAndAlliesAffectedByYourAuras = 6135, + + /// + /// mana_regeneration_rate_per_minute_if_used_movement_skill_recently + /// + ManaRegenerationRatePerMinuteIfUsedMovementSkillRecently = 6136, + + /// + /// movement_speed_+%_if_placed_trap_or_mine_recently + /// + MovementSpeedPctIfPlacedTrapOrMineRecently = 6137, + + /// + /// trap_and_mine_damage_+%_if_armed_for_4_seconds + /// + TrapAndMineDamagePctIfArmedFor4Seconds = 6138, + + /// + /// skill_effect_and_damaging_ailment_duration_+% + /// + SkillEffectAndDamagingAilmentDurationPct = 6139, + + /// + /// active_skill_damage_over_time_from_projectile_hits_+%_final + /// + ActiveSkillDamageOverTimeFromProjectileHitsPctFinal = 6140, + + /// + /// trigger_spawners_time_between_min_ms + /// + TriggerSpawnersTimeBetweenMinMs = 6141, + + /// + /// trigger_spawners_time_between_max_ms + /// + TriggerSpawnersTimeBetweenMaxMs = 6142, + + /// + /// cast_on_delayed_skill_trigger_% + /// + CastOnDelayedSkillTriggerPct = 6143, + + /// + /// track_have_used_movement_skill_recently + /// + TrackHaveUsedMovementSkillRecently = 6144, + + /// + /// have_used_movement_skill_recently + /// + HaveUsedMovementSkillRecently = 6145, + + /// + /// track_have_placed_trap_or_mine_recently + /// + TrackHavePlacedTrapOrMineRecently = 6146, + + /// + /// have_placed_trap_or_mine_recently + /// + HavePlacedTrapOrMineRecently = 6147, + + /// + /// blast_rain_no_los_required + /// + BlastRainNoLosRequired = 6148, + + /// + /// despair_bear_upheaval_physical_damage_to_deal_per_minute + /// + DespairBearUpheavalPhysicalDamageToDealPerMinute = 6149, + + /// + /// number_of_additional_ignites_allowed + /// + NumberOfAdditionalIgnitesAllowed = 6150, + + /// + /// cast_on_trigger_charge_event_% + /// + CastOnTriggerChargeEventPct = 6151, + + /// + /// support_efficacy_spell_damage_+%_final + /// + SupportEfficacySpellDamagePctFinal = 6152, + + /// + /// support_efficacy_damage_over_time_+%_final + /// + SupportEfficacyDamageOverTimePctFinal = 6153, + + /// + /// support_debilitate_poison_damage_+%_final + /// + SupportDebilitatePoisonDamagePctFinal = 6154, + + /// + /// support_debilitate_hit_damage_+%_final + /// + SupportDebilitateHitDamagePctFinal = 6155, + + /// + /// support_debilitate_hit_damage_+%_final_per_poison_stack + /// + SupportDebilitateHitDamagePctFinalPerPoisonStack = 6156, + + /// + /// support_debilitate_hit_damage_max_poison_stacks + /// + SupportDebilitateHitDamageMaxPoisonStacks = 6157, + + /// + /// global_minimum_added_fire_damage_vs_burning_enemies + /// + GlobalMinimumAddedFireDamageVsBurningEnemies = 6158, + + /// + /// global_maximum_added_fire_damage_vs_burning_enemies + /// + GlobalMaximumAddedFireDamageVsBurningEnemies = 6159, + + /// + /// support_unbound_ailments_ailment_damage_+%_final + /// + SupportUnboundAilmentsAilmentDamagePctFinal = 6160, + + /// + /// trigger_charge_additional_block_chance_against_projectiles_% + /// + TriggerChargeAdditionalBlockChanceAgainstProjectilesPct = 6161, + + /// + /// chaos_damage_resistance_is_doubled + /// + ChaosDamageResistanceIsDoubled = 6162, + + /// + /// skill_area_of_effect_+%_while_no_frenzy_charges + /// + SkillAreaOfEffectPctWhileNoFrenzyCharges = 6163, + + /// + /// global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges + /// + GlobalCriticalStrikeMultiplierWhileYouHaveNoFrenzyCharges = 6164, + + /// + /// gain_maximum_power_charges_on_power_charge_gained_%_chance + /// + GainMaximumPowerChargesOnPowerChargeGainedPctChance = 6165, + + /// + /// damage_+%_per_power_charge + /// + DamagePctPerPowerCharge = 6166, + + /// + /// base_fire_damage_can_poison + /// + BaseFireDamageCanPoison = 6167, + + /// + /// base_cold_damage_can_poison + /// + BaseColdDamageCanPoison = 6168, + + /// + /// base_lightning_damage_can_poison + /// + BaseLightningDamageCanPoison = 6169, + + /// + /// fire_skills_chance_to_poison_on_hit_% + /// + FireSkillsChanceToPoisonOnHitPct = 6170, + + /// + /// cold_skills_chance_to_poison_on_hit_% + /// + ColdSkillsChanceToPoisonOnHitPct = 6171, + + /// + /// lightning_skills_chance_to_poison_on_hit_% + /// + LightningSkillsChanceToPoisonOnHitPct = 6172, + + /// + /// movement_attack_skills_attack_speed_+% + /// + MovementAttackSkillsAttackSpeedPct = 6173, + + /// + /// local_socketed_herald_gem_level_+ + /// + LocalSocketedHeraldGemLevel = 6174, + + /// + /// cold_damage_+%_if_you_have_used_a_fire_skill_recently + /// + ColdDamagePctIfYouHaveUsedAFireSkillRecently = 6175, + + /// + /// fire_damage_+%_if_you_have_used_a_cold_skill_recently + /// + FireDamagePctIfYouHaveUsedAColdSkillRecently = 6176, + + /// + /// track_have_used_a_cold_skill_recently + /// + TrackHaveUsedAColdSkillRecently = 6177, + + /// + /// have_used_a_cold_skill_recently + /// + HaveUsedAColdSkillRecently = 6178, + + /// + /// support_maim_chance_physical_damage_+%_final + /// + SupportMaimChancePhysicalDamagePctFinal = 6179, + + /// + /// support_brutality_physical_damage_+%_final + /// + SupportBrutalityPhysicalDamagePctFinal = 6180, + + /// + /// summon_specific_monsters_in_front_offset + /// + SummonSpecificMonstersInFrontOffset = 6181, + + /// + /// trap_and_mine_damage_penetrates_%_elemental_resistance + /// + TrapAndMineDamagePenetratesPctElementalResistance = 6182, + + /// + /// cooldown_speed_+%_per_additional_player + /// + CooldownSpeedPctPerAdditionalPlayer = 6183, + + /// + /// total_damage_taken_per_minute_to_mana + /// + TotalDamageTakenPerMinuteToMana = 6184, + + /// + /// enemies_that_hit_you_with_attack_recently_attack_speed_+% + /// + EnemiesThatHitYouWithAttackRecentlyAttackSpeedPct = 6185, + + /// + /// vaal_skill_soul_cost_+% + /// + VaalSkillSoulCostPct = 6186, + + /// + /// has_attacker_projectile_attack_conditional_damage_stats + /// + HasAttackerProjectileAttackConditionalDamageStats = 6187, + + /// + /// has_attacker_conditional_damage_stats + /// + HasAttackerConditionalDamageStats = 6188, + + /// + /// has_attacker_projectile_spell_conditional_damage_stats + /// + HasAttackerProjectileSpellConditionalDamageStats = 6189, + + /// + /// number_of_projectiles_override + /// + NumberOfProjectilesOverride = 6190, + + /// + /// map_pantheon_flask_capture_boss_soul + /// + MapPantheonFlaskCaptureBossSoul = 6191, + + /// + /// physical_damage_over_time_taken_+%_while_moving + /// + PhysicalDamageOverTimeTakenPctWhileMoving = 6192, + + /// + /// physical_damage_reduction_%_if_only_one_enemy_nearby + /// + PhysicalDamageReductionPctIfOnlyOneEnemyNearby = 6193, + + /// + /// take_half_area_damage_from_hit_%_chance + /// + TakeHalfAreaDamageFromHitPctChance = 6194, + + /// + /// elemental_damage_taken_+%_if_not_hit_recently + /// + ElementalDamageTakenPctIfNotHitRecently = 6195, + + /// + /// self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently + /// + SelfTakeNoExtraDamageFromCriticalStrikesIfHaveBeenCritRecently = 6196, + + /// + /// have_been_crit_recently + /// + HaveBeenCritRecently = 6197, + + /// + /// track_have_been_crit_recently + /// + TrackHaveBeenCritRecently = 6198, + + /// + /// avoid_ailments_%_from_crit + /// + AvoidAilmentsPctFromCrit = 6199, + + /// + /// physical_damage_reduction_%_per_nearby_enemy + /// + PhysicalDamageReductionPctPerNearbyEnemy = 6200, + + /// + /// movement_speed_+%_per_nearby_enemy + /// + MovementSpeedPctPerNearbyEnemy = 6201, + + /// + /// base_avoid_projectiles_%_chance + /// + BaseAvoidProjectilesPctChance = 6202, + + /// + /// dodge_attacks_and_spells_%_chance_if_have_been_hit_recently + /// + DodgeAttacksAndSpellsPctChanceIfHaveBeenHitRecently = 6203, + + /// + /// prevent_projectile_chaining_%_chance + /// + PreventProjectileChainingPctChance = 6204, + + /// + /// avoid_chained_projectile_%_chance + /// + AvoidChainedProjectilePctChance = 6205, + + /// + /// cold_damage_taken_+%_if_have_been_hit_recently + /// + ColdDamageTakenPctIfHaveBeenHitRecently = 6206, + + /// + /// reflect_chill_and_freeze_%_chance + /// + ReflectChillAndFreezePctChance = 6207, + + /// + /// virtual_self_take_no_extra_damage_from_critical_strikes + /// + VirtualSelfTakeNoExtraDamageFromCriticalStrikes = 6208, + + /// + /// projectile_spread_radius_per_additional_projectile + /// + ProjectileSpreadRadiusPerAdditionalProjectile = 6209, + + /// + /// trigger_cascade_number_of_spikes + /// + TriggerCascadeNumberOfSpikes = 6210, + + /// + /// trigger_cascade_ms_between_spikes + /// + TriggerCascadeMsBetweenSpikes = 6211, + + /// + /// cast_on_trigger_cascade_event_% + /// + CastOnTriggerCascadeEventPct = 6212, + + /// + /// trigger_cascade_behaviour_variation + /// + TriggerCascadeBehaviourVariation = 6213, + + /// + /// garukhan_number_of_tornadoes + /// + GarukhanNumberOfTornadoes = 6214, + + /// + /// map_pack_subindex_override + /// + MapPackSubindexOverride = 6215, + + /// + /// map_boss_override + /// + MapBossOverride = 6216, + + /// + /// map_daily_mission_master_level + /// + MapDailyMissionMasterLevel = 6217, + + /// + /// number_of_nearby_enemies + /// + NumberOfNearbyEnemies = 6218, + + /// + /// track_number_of_nearby_enemies + /// + TrackNumberOfNearbyEnemies = 6219, + + /// + /// volatile_flameblood_spawn_monster_on_death_variation + /// + VolatileFlamebloodSpawnMonsterOnDeathVariation = 6220, + + /// + /// hit_and_poison_damage_+% + /// + HitAndPoisonDamagePct = 6221, + + /// + /// hit_and_poison_damage_+%_per_poison_on_enemy + /// + HitAndPoisonDamagePctPerPoisonOnEnemy = 6222, + + /// + /// attack_minimum_added_physical_damage_with_weapons + /// + AttackMinimumAddedPhysicalDamageWithWeapons = 6223, + + /// + /// attack_maximum_added_physical_damage_with_weapons + /// + AttackMaximumAddedPhysicalDamageWithWeapons = 6224, + + /// + /// trigger_on_projectile_loop_count + /// + TriggerOnProjectileLoopCount = 6225, + + /// + /// trigger_on_projectile_death + /// + TriggerOnProjectileDeath = 6226, + + /// + /// base_number_of_beast_minions_allowed + /// + BaseNumberOfBeastMinionsAllowed = 6227, + + /// + /// number_of_beast_minions_allowed + /// + NumberOfBeastMinionsAllowed = 6228, + + /// + /// local_display_grants_summon_beast_companion + /// + LocalDisplayGrantsSummonBeastCompanion = 6229, + + /// + /// molten_shell_explosion_cooldown_ms + /// + MoltenShellExplosionCooldownMs = 6230, + + /// + /// from_code_active_skill_hit_and_ailment_damage_+%_final + /// + FromCodeActiveSkillHitAndAilmentDamagePctFinal = 6231, + + /// + /// tornado_movement_velocity_+% + /// + TornadoMovementVelocityPct = 6232, + + /// + /// monster_aggro_radius_+% + /// + MonsterAggroRadiusPct = 6233, + + /// + /// ground_ice_art_variation + /// + GroundIceArtVariation = 6234, + + /// + /// virtual_additional_projectiles_fire_parallel_x_dist + /// + VirtualAdditionalProjectilesFireParallelXDist = 6235, + + /// + /// additional_projectiles_fire_parallel_y_dist + /// + AdditionalProjectilesFireParallelYDist = 6236, + + /// + /// from_code_active_skill_ailment_damage_+%_final + /// + FromCodeActiveSkillAilmentDamagePctFinal = 6237, + + /// + /// flameblast_ailment_damage_+%_final_per_stack + /// + FlameblastAilmentDamagePctFinalPerStack = 6238, + + /// + /// trigger_cascade_A + /// + TriggerCascadeA = 6239, + + /// + /// trigger_cascade_B + /// + TriggerCascadeB = 6240, + + /// + /// trigger_cascade_C + /// + TriggerCascadeC = 6241, + + /// + /// trigger_cascade_D + /// + TriggerCascadeD = 6242, + + /// + /// trigger_cascade_angle + /// + TriggerCascadeAngle = 6243, + + /// + /// local_use_skill_on_hit_% + /// + LocalUseSkillOnHitPct = 6244, + + /// + /// main_hand_use_skill_on_hit_% + /// + MainHandUseSkillOnHitPct = 6245, + + /// + /// off_hand_use_skill_on_hit_% + /// + OffHandUseSkillOnHitPct = 6246, + + /// + /// skill_has_trigger_from_unique_item + /// + SkillHasTriggerFromUniqueItem = 6247, + + /// + /// local_display_use_level_X_abyssal_cry_on_hit + /// + LocalDisplayUseLevelXAbyssalCryOnHit = 6248, + + /// + /// accelerate_min + /// + AccelerateMin = 6249, + + /// + /// accelerate_max + /// + AccelerateMax = 6250, + + /// + /// accelerate_time + /// + AccelerateTime = 6251, + + /// + /// skill_is_minion_skill + /// + SkillIsMinionSkill = 6252, + + /// + /// minion_skill_mana_cost_+% + /// + MinionSkillManaCostPct = 6253, + + /// + /// local_display_grants_skill_doryanis_touch_level + /// + LocalDisplayGrantsSkillDoryanisTouchLevel = 6254, + + /// + /// trigger_cascade_target_variation + /// + TriggerCascadeTargetVariation = 6255, + + /// + /// trigger_cascade_number_of_arms + /// + TriggerCascadeNumberOfArms = 6256, + + /// + /// trigger_cascade_angle_between_arms + /// + TriggerCascadeAngleBetweenArms = 6257, + + /// + /// support_ruthless_big_hit_max_count + /// + SupportRuthlessBigHitMaxCount = 6258, + + /// + /// melee_damage_+%_final_from_ruthless_blow + /// + MeleeDamagePctFinalFromRuthlessBlow = 6259, + + /// + /// stun_base_duration_override_ms + /// + StunBaseDurationOverrideMs = 6260, + + /// + /// support_ruthless_big_hit_stun_base_duration_override_ms + /// + SupportRuthlessBigHitStunBaseDurationOverrideMs = 6261, + + /// + /// support_ruthless_big_hit_damage_+%_final + /// + SupportRuthlessBigHitDamagePctFinal = 6262, + + /// + /// support_scion_onslaught_on_killing_blow_%_chance + /// + SupportScionOnslaughtOnKillingBlowPctChance = 6263, + + /// + /// support_scion_onslaught_on_killing_blow_duration_ms + /// + SupportScionOnslaughtOnKillingBlowDurationMs = 6264, + + /// + /// support_arcane_surge_gain_buff_on_mana_use_threshold + /// + SupportArcaneSurgeGainBuffOnManaUseThreshold = 6265, + + /// + /// support_arcane_surge_spell_damage_+%_final + /// + SupportArcaneSurgeSpellDamagePctFinal = 6266, + + /// + /// spell_damage_+%_final_from_arcane_surge + /// + SpellDamagePctFinalFromArcaneSurge = 6267, + + /// + /// support_arcane_surge_duration_ms + /// + SupportArcaneSurgeDurationMs = 6268, + + /// + /// support_arcane_surge_base_duration_ms + /// + SupportArcaneSurgeBaseDurationMs = 6269, + + /// + /// support_arcane_surge_cast_speed_+% + /// + SupportArcaneSurgeCastSpeedPct = 6270, + + /// + /// support_arcane_surge_mana_regeneration_rate_per_minute_% + /// + SupportArcaneSurgeManaRegenerationRatePerMinutePct = 6271, + + /// + /// hidden_monster_can_have_auras + /// + HiddenMonsterCanHaveAuras = 6272, + + /// + /// projectile_number_of_targets_to_pierce + /// + ProjectileNumberOfTargetsToPierce = 6273, + + /// + /// arrow_number_of_targets_to_pierce + /// + ArrowNumberOfTargetsToPierce = 6274, + + /// + /// projectile_base_number_of_targets_to_pierce + /// + ProjectileBaseNumberOfTargetsToPierce = 6275, + + /// + /// arrow_base_number_of_targets_to_pierce + /// + ArrowBaseNumberOfTargetsToPierce = 6276, + + /// + /// arrows_always_pierce + /// + ArrowsAlwaysPierce = 6277, + + /// + /// base_arrows_always_pierce + /// + BaseArrowsAlwaysPierce = 6278, + + /// + /// virtual_always_pierce + /// + VirtualAlwaysPierce = 6279, + + /// + /// support_ignite_prolif_ignite_damage_+%_final + /// + SupportIgniteProlifIgniteDamagePctFinal = 6280, + + /// + /// combined_ailment_all_damage_over_time_+%_final + /// + CombinedAilmentAllDamageOverTimePctFinal = 6281, + + /// + /// projectiles_always_pierce_you + /// + ProjectilesAlwaysPierceYou = 6282, + + /// + /// arrow_damage_+%_vs_pierced_targets + /// + ArrowDamagePctVsPiercedTargets = 6283, + + /// + /// projectiles_pierce_x_additional_targets_while_you_have_phasing + /// + ProjectilesPierceXAdditionalTargetsWhileYouHavePhasing = 6284, + + /// + /// quiver_projectiles_pierce_1_additional_target + /// + QuiverProjectilesPierce1AdditionalTarget = 6285, + + /// + /// quiver_projectiles_pierce_2_additional_targets + /// + QuiverProjectilesPierce2AdditionalTargets = 6286, + + /// + /// quiver_projectiles_pierce_3_additional_targets + /// + QuiverProjectilesPierce3AdditionalTargets = 6287, + + /// + /// projectiles_pierce_all_nearby_targets + /// + ProjectilesPierceAllNearbyTargets = 6288, + + /// + /// projectiles_pierce_1_additional_target_per_10_stat_value + /// + ProjectilesPierce1AdditionalTargetPer10StatValue = 6289, + + /// + /// projectiles_pierce_1_additional_target_per_15_stat_value + /// + ProjectilesPierce1AdditionalTargetPer15StatValue = 6290, + + /// + /// talisman_implicit_projectiles_pierce_1_additional_target_per_10 + /// + TalismanImplicitProjectilesPierce1AdditionalTargetPer10 = 6291, + + /// + /// blade_vortex_ailment_damage_+%_per_blade_final + /// + BladeVortexAilmentDamagePctPerBladeFinal = 6292, + + /// + /// bladefall_width_+% + /// + BladefallWidthPct = 6293, + + /// + /// lightning_strike_additional_pierce_per_10_old + /// + LightningStrikeAdditionalPiercePer10Old = 6294, + + /// + /// lightning_strike_additional_pierce + /// + LightningStrikeAdditionalPierce = 6295, + + /// + /// lightning_trap_additional_pierce_per_10_old + /// + LightningTrapAdditionalPiercePer10Old = 6296, + + /// + /// lightning_trap_additional_pierce + /// + LightningTrapAdditionalPierce = 6297, + + /// + /// support_poison_poison_damage_+%_final + /// + SupportPoisonPoisonDamagePctFinal = 6298, + + /// + /// attacks_chance_to_poison_%_on_max_frenzy_charges + /// + AttacksChanceToPoisonPctOnMaxFrenzyCharges = 6299, + + /// + /// chance_to_poison_%_vs_cursed_enemies + /// + ChanceToPoisonPctVsCursedEnemies = 6300, + + /// + /// chaos_damage_chance_to_poison_% + /// + ChaosDamageChanceToPoisonPct = 6301, + + /// + /// virtual_chance_to_poison_on_hit_with_attacks_% + /// + VirtualChanceToPoisonOnHitWithAttacksPct = 6302, + + /// + /// support_innervate_minimum_added_lightning_damage + /// + SupportInnervateMinimumAddedLightningDamage = 6303, + + /// + /// support_innervate_maximum_added_lightning_damage + /// + SupportInnervateMaximumAddedLightningDamage = 6304, + + /// + /// support_innervate_buff_duration_ms + /// + SupportInnervateBuffDurationMs = 6305, + + /// + /// support_innervate_buff_base_duration_ms + /// + SupportInnervateBuffBaseDurationMs = 6306, + + /// + /// local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius + /// + LocalUniqueJewelSparkProjectilesNovaWith40IntInRadius = 6307, + + /// + /// spark_projectiles_nova + /// + SparkProjectilesNova = 6308, + + /// + /// local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius + /// + LocalUniqueJewelSparkNumberOfAdditionalProjectilesWith40IntInRadius = 6309, + + /// + /// spark_number_of_additional_projectiles + /// + SparkNumberOfAdditionalProjectiles = 6310, + + /// + /// local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius + /// + LocalUniqueJewelBlightHinderEnemyChaosDamageTakenPctWith40IntInRadius = 6311, + + /// + /// blight_hinder_enemy_chaos_damage_taken_+% + /// + BlightHinderEnemyChaosDamageTakenPct = 6312, + + /// + /// local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius + /// + LocalUniqueJewelBlightHinderDurationPctWith40IntInRadius = 6313, + + /// + /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius + /// + LocalUniqueJewelSplitArrowProjectilesFireInParallelXDistWith40DexInRadius = 6314, + + /// + /// split_arrow_projectiles_fire_in_parallel_x_dist + /// + SplitArrowProjectilesFireInParallelXDist = 6315, + + /// + /// local_unique_jewel_split_arrow_projectiles_fire_in_parallel_y_dist_with_40_dex_in_radius + /// + LocalUniqueJewelSplitArrowProjectilesFireInParallelYDistWith40DexInRadius = 6316, + + /// + /// split_arrow_projectiles_fire_in_parallel_y_dist + /// + SplitArrowProjectilesFireInParallelYDist = 6317, + + /// + /// local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius + /// + LocalUniqueJewelFireTrapNumberOfAdditionalTrapsToThrowWith40DexInRadius = 6318, + + /// + /// fire_trap_number_of_additional_traps_to_throw + /// + FireTrapNumberOfAdditionalTrapsToThrow = 6319, + + /// + /// piercing_projectiles_critical_strike_chance_+% + /// + PiercingProjectilesCriticalStrikeChancePct = 6320, + + /// + /// arrow_damage_+50%_vs_pierced_targets + /// + ArrowDamage50PctVsPiercedTargets = 6321, + + /// + /// arrows_pierce_additional_target + /// + ArrowsPierceAdditionalTarget = 6322, + + /// + /// ice_shot_additional_pierce_per_10_old + /// + IceShotAdditionalPiercePer10Old = 6323, + + /// + /// local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius + /// + LocalUniqueJewelIceShotAdditionalPiercePer10OldWith40DexInRadius = 6324, + + /// + /// virtual_cooldown_modifier_ms + /// + VirtualCooldownModifierMs = 6325, + + /// + /// base_cooldown_modifier_ms + /// + BaseCooldownModifierMs = 6326, + + /// + /// summon_skeletons_cooldown_modifier_ms + /// + SummonSkeletonsCooldownModifierMs = 6327, + + /// + /// trigger_cascade_use_contact_points + /// + TriggerCascadeUseContactPoints = 6328, + + /// + /// arrows_pierce_1_additional_target_per_10_stat_value + /// + ArrowsPierce1AdditionalTargetPer10StatValue = 6329, + + /// + /// summon_skeletons_additional_warrior_skeleton_%_chance + /// + SummonSkeletonsAdditionalWarriorSkeletonPctChance = 6330, + + /// + /// map_spawn_harbingers + /// + MapSpawnHarbingers = 6331, + + /// + /// map_num_extra_harbingers + /// + MapNumExtraHarbingers = 6332, + + /// + /// map_packs_are_lunaris + /// + MapPacksAreLunaris = 6333, + + /// + /// map_packs_are_solaris + /// + MapPacksAreSolaris = 6334, + + /// + /// map_packs_are_ghosts + /// + MapPacksAreGhosts = 6335, + + /// + /// skeletal_chains_no_minions_radius_+ + /// + SkeletalChainsNoMinionsRadius = 6336, + + /// + /// skeletal_chains_no_minions_targets_self + /// + SkeletalChainsNoMinionsTargetsSelf = 6337, + + /// + /// ice_shot_pierce_+ + /// + IceShotPierce = 6338, + + /// + /// local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius + /// + LocalUniqueJewelIceShotPierceWith40DexInRadius = 6339, + + /// + /// non_damaging_ailment_effect_+% + /// + NonDamagingAilmentEffectPct = 6340, + + /// + /// bleeding_stacks_up_to_x_times + /// + BleedingStacksUpToXTimes = 6341, + + /// + /// energy_shield_recharge_start_when_stunned + /// + EnergyShieldRechargeStartWhenStunned = 6342, + + /// + /// no_extra_bleed_damage_while_target_is_moving + /// + NoExtraBleedDamageWhileTargetIsMoving = 6343, + + /// + /// track_which_enemies_hit_index + /// + TrackWhichEnemiesHitIndex = 6344, + + /// + /// track_skill_used_index + /// + TrackSkillUsedIndex = 6345, + + /// + /// skill_behaviour_variation + /// + SkillBehaviourVariation = 6346, + + /// + /// trigger_skill_restriction + /// + TriggerSkillRestriction = 6347, + + /// + /// prophecy_monster_spawn_level + /// + ProphecyMonsterSpawnLevel = 6348, + + /// + /// number_of_skeletons_allowed_per_2_old + /// + NumberOfSkeletonsAllowedPer2Old = 6349, + + /// + /// cast_on_trigger_cascade_event + /// + CastOnTriggerCascadeEvent = 6350, + + /// + /// spark_skill_effect_duration_+% + /// + SparkSkillEffectDurationPct = 6351, + + /// + /// support_innervate_gain_buff_on_killing_shocked_enemy + /// + SupportInnervateGainBuffOnKillingShockedEnemy = 6352, + + /// + /// additional_critical_strike_chance_permyriad_while_at_maximum_power_charges + /// + AdditionalCriticalStrikeChancePermyriadWhileAtMaximumPowerCharges = 6353, + + /// + /// object_inherent_spell_damage_+%_final_per_power_charge + /// + ObjectInherentSpellDamagePctFinalPerPowerCharge = 6354, + + /// + /// damage_over_time_+%_per_frenzy_charge + /// + DamageOverTimePctPerFrenzyCharge = 6355, + + /// + /// damage_over_time_+%_per_power_charge + /// + DamageOverTimePctPerPowerCharge = 6356, + + /// + /// gain_frenzy_and_power_charge_on_kill_% + /// + GainFrenzyAndPowerChargeOnKillPct = 6357, + + /// + /// maximum_power_and_frenzy_charges_+ + /// + MaximumPowerAndFrenzyCharges = 6358, + + /// + /// labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+% + /// + LabyrinthDarkshrinePlayersDamageTakenFromLabyrinthTrapsPct = 6359, + + /// + /// labyrinth_darkshrine_boss_room_traps_are_disabled + /// + LabyrinthDarkshrineBossRoomTrapsAreDisabled = 6360, + + /// + /// labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth + /// + LabyrinthDarkshrinePlayersHaveShrineRowXEffectForThisLabyrinth = 6361, + + /// + /// labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x + /// + LabyrinthDarkshrineDivineFontGrantsOneAdditionalEnchantmentUseToPlayerX = 6362, + + /// + /// labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys + /// + LabyrinthDarkshrineIzaroDropsXAdditionalTreasureKeys = 6363, + + /// + /// damage_taken_from_labyrinth_traps_+% + /// + DamageTakenFromLabyrinthTrapsPct = 6364, + + /// + /// labyrinth_darkshrine_izaro_dropped_unique_items_+ + /// + LabyrinthDarkshrineIzaroDroppedUniqueItems = 6365, + + /// + /// convocation_max_number_of_minions_to_teleport + /// + ConvocationMaxNumberOfMinionsToTeleport = 6366, + + /// + /// local_chance_to_bleed_on_hit_25% + /// + LocalChanceToBleedOnHit25Pct = 6367, + + /// + /// main_hand_local_chance_to_bleed_on_hit_25% + /// + MainHandLocalChanceToBleedOnHit25Pct = 6368, + + /// + /// off_hand_local_chance_to_bleed_on_hit_25% + /// + OffHandLocalChanceToBleedOnHit25Pct = 6369, + + /// + /// recover_%_maximum_mana_on_kill + /// + RecoverPctMaximumManaOnKill = 6370, + + /// + /// arctic_armour_chill_when_hit_duration + /// + ArcticArmourChillWhenHitDuration = 6371, + + /// + /// debuff_time_passed_+% + /// + DebuffTimePassedPct = 6372, + + /// + /// skill_is_channelled + /// + SkillIsChannelled = 6373, + + /// + /// channelled_skill_damage_+% + /// + ChannelledSkillDamagePct = 6374, + + /// + /// local_display_socketed_gems_supported_by_x_innervate_level + /// + LocalDisplaySocketedGemsSupportedByXInnervateLevel = 6375, + + /// + /// local_display_summon_harbinger_x_on_equip + /// + LocalDisplaySummonHarbingerXOnEquip = 6376, + + /// + /// skeleton_movement_speed_+% + /// + SkeletonMovementSpeedPct = 6377, + + /// + /// skeleton_attack_speed_+% + /// + SkeletonAttackSpeedPct = 6378, + + /// + /// skeleton_cast_speed_+% + /// + SkeletonCastSpeedPct = 6379, + + /// + /// physical_damage_over_time_taken_+% + /// + PhysicalDamageOverTimeTakenPct = 6380, + + /// + /// summon_skeletons_additional_warrior_skeleton_one_twentieth_chance + /// + SummonSkeletonsAdditionalWarriorSkeletonOneTwentiethChance = 6381, + + /// + /// leapslam_overshoot_distance + /// + LeapslamOvershootDistance = 6382, + + /// + /// skill_is_projectile_skill + /// + SkillIsProjectileSkill = 6383, + + /// + /// projectile_attack_skill_critical_strike_chance_+% + /// + ProjectileAttackSkillCriticalStrikeChancePct = 6384, + + /// + /// storm_burst_avoid_interruption_while_casting_% + /// + StormBurstAvoidInterruptionWhileCastingPct = 6385, + + /// + /// storm_burst_area_of_effect_+% + /// + StormBurstAreaOfEffectPct = 6386, + + /// + /// skeletal_chains_cast_speed_+% + /// + SkeletalChainsCastSpeedPct = 6387, + + /// + /// skeletal_chains_area_of_effect_+% + /// + SkeletalChainsAreaOfEffectPct = 6388, + + /// + /// unique_volkuurs_clutch_poison_duration_+%_final + /// + UniqueVolkuursClutchPoisonDurationPctFinal = 6389, + + /// + /// combined_poison_duration_+%_final + /// + CombinedPoisonDurationPctFinal = 6390, + + /// + /// local_display_trigger_level_X_darktongue_kiss_on_curse + /// + LocalDisplayTriggerLevelXDarktongueKissOnCurse = 6391, + + /// + /// cast_when_cast_curse_% + /// + CastWhenCastCursePct = 6392, + + /// + /// move_daemon_number_of_daemons_to_spawn + /// + MoveDaemonNumberOfDaemonsToSpawn = 6393, + + /// + /// move_daemon_movement_speed + /// + MoveDaemonMovementSpeed = 6394, + + /// + /// move_daemon_distance_to_travel + /// + MoveDaemonDistanceToTravel = 6395, + + /// + /// move_daemon_delay_between_daemons_ms + /// + MoveDaemonDelayBetweenDaemonsMs = 6396, + + /// + /// move_daemon_rotation + /// + MoveDaemonRotation = 6397, + + /// + /// move_daemon_rotation_per_daemon + /// + MoveDaemonRotationPerDaemon = 6398, + + /// + /// move_daemon_end_rotation + /// + MoveDaemonEndRotation = 6399, + + /// + /// move_daemon_end_rotation_per_daemon + /// + MoveDaemonEndRotationPerDaemon = 6400, + + /// + /// move_daemon_x_offset + /// + MoveDaemonXOffset = 6401, + + /// + /// move_daemon_y_offset + /// + MoveDaemonYOffset = 6402, + + /// + /// move_daemon_x_offset_per_daemon + /// + MoveDaemonXOffsetPerDaemon = 6403, + + /// + /// move_daemon_y_offset_per_daemon + /// + MoveDaemonYOffsetPerDaemon = 6404, + + /// + /// move_daemon_pivot_variation + /// + MoveDaemonPivotVariation = 6405, + + /// + /// monster_damage_taken_lerp_+%_final_min + /// + MonsterDamageTakenLerpPctFinalMin = 6406, + + /// + /// monster_damage_taken_lerp_+%_final_max + /// + MonsterDamageTakenLerpPctFinalMax = 6407, + + /// + /// monster_damage_taken_lerp_+%_final_time + /// + MonsterDamageTakenLerpPctFinalTime = 6408, + + /// + /// harbinger_minion_rare_chance_% + /// + HarbingerMinionRareChancePct = 6409, + + /// + /// harbinger_minion_magic_chance_% + /// + HarbingerMinionMagicChancePct = 6410, + + /// + /// harbinger_minion_remove_parent_life_on_death_permyriad + /// + HarbingerMinionRemoveParentLifeOnDeathPermyriad = 6411, + + /// + /// critical_strike_chance_increased_by_lightning_resistance + /// + CriticalStrikeChanceIncreasedByLightningResistance = 6412, + + /// + /// piercing_projectiles_critical_strike_chance_+100% + /// + PiercingProjectilesCriticalStrikeChance100Pct = 6413, + + /// + /// cast_on_skill_use_% + /// + CastOnSkillUsePct = 6414, + + /// + /// local_display_trigger_level_X_void_gaze_on_skill_use + /// + LocalDisplayTriggerLevelXVoidGazeOnSkillUse = 6415, + + /// + /// cannot_be_stunned_if_you_have_blocked_a_stun_recently + /// + CannotBeStunnedIfYouHaveBlockedAStunRecently = 6416, + + /// + /// track_have_blocked_a_stun_recently + /// + TrackHaveBlockedAStunRecently = 6417, + + /// + /// have_blocked_a_stun_recently + /// + HaveBlockedAStunRecently = 6418, + + /// + /// local_display_trigger_level_x_storm_cascade_on_attack + /// + LocalDisplayTriggerLevelXStormCascadeOnAttack = 6419, + + /// + /// empty_action_state_value + /// + EmptyActionStateValue = 6420, + + /// + /// minimum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + MinimumAddedChaosDamageVsEnemiesWith5Poisons = 6421, + + /// + /// maximum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + MaximumAddedChaosDamageVsEnemiesWith5Poisons = 6422, + + /// + /// main_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + MainHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6423, + + /// + /// main_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + MainHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6424, + + /// + /// off_hand_minimum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + OffHandMinimumAddedChaosDamageVsEnemiesWith5Poisons = 6425, + + /// + /// off_hand_maximum_added_chaos_damage_vs_enemies_with_5+_poisons + /// + OffHandMaximumAddedChaosDamageVsEnemiesWith5Poisons = 6426, + + /// + /// life_leech_from_attack_damage_permyriad_vs_poisoned_enemies + /// + LifeLeechFromAttackDamagePermyriadVsPoisonedEnemies = 6427, + + /// + /// poison_duration_+%_per_power_charge + /// + PoisonDurationPctPerPowerCharge = 6428, + + /// + /// poison_damage_+%_per_frenzy_charge + /// + PoisonDamagePctPerFrenzyCharge = 6429, + + /// + /// gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_% + /// + GainFrenzyChargeOnKillVsEnemiesWith5PoisonsPct = 6430, + + /// + /// gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_% + /// + GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsPct = 6431, + + /// + /// local_display_socketed_gems_supported_by_X_lesser_poison + /// + LocalDisplaySocketedGemsSupportedByXLesserPoison = 6432, + + /// + /// poison_duration_+%_with_over_150_intelligence + /// + PoisonDurationPctWithOver150Intelligence = 6433, + + /// + /// poison_damage_+%_with_over_300_dexterity + /// + PoisonDamagePctWithOver300Dexterity = 6434, + + /// + /// local_display_socketed_gems_supported_by_X_vile_toxins + /// + LocalDisplaySocketedGemsSupportedByXVileToxins = 6435, + + /// + /// local_display_grants_skill_blight_level + /// + LocalDisplayGrantsSkillBlightLevel = 6436, + + /// + /// you_cannot_be_hindered + /// + YouCannotBeHindered = 6437, + + /// + /// support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits + /// + SupportMeleePhysicalDamagePoisonAndBleedingDamagePctFinalFromMeleeHits = 6438, + + /// + /// support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits + /// + SupportPhysProjAttackDamageBleeingAndPoisonDamagePctFinalFromProjectileHits = 6439, + + /// + /// support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final + /// + SupportRuthlessBlowBleedingDamageFromMeleeHitsPctFinal = 6440, + + /// + /// melee_hit_bleeding_damage_+%_final_from_ruthless_blow + /// + MeleeHitBleedingDamagePctFinalFromRuthlessBlow = 6441, + + /// + /// support_chance_to_bleed_bleeding_damage_+%_final + /// + SupportChanceToBleedBleedingDamagePctFinal = 6442, + + /// + /// charged_dash_chance_to_dodge_%_if_finished_channelling_recently + /// + ChargedDashChanceToDodgePctIfFinishedChannellingRecently = 6443, + + /// + /// charged_dash_area_of_effect_radius_+_of_final_explosion + /// + ChargedDashAreaOfEffectRadiusOfFinalExplosion = 6444, + + /// + /// additional_physical_damage_reduction_%_if_not_player + /// + AdditionalPhysicalDamageReductionPctIfNotPlayer = 6445, + + /// + /// resist_all_elements_%_if_not_player + /// + ResistAllElementsPctIfNotPlayer = 6446, + + /// + /// physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges + /// + PhysicalDamagePctToGainAsChaosWhileAtMaximumPowerCharges = 6447, + + /// + /// attack_ailment_damage_+%_while_wielding_dagger + /// + AttackAilmentDamagePctWhileWieldingDagger = 6448, + + /// + /// attack_ailment_damage_+%_while_wielding_claw + /// + AttackAilmentDamagePctWhileWieldingClaw = 6449, + + /// + /// attack_ailment_damage_+%_while_wielding_sword + /// + AttackAilmentDamagePctWhileWieldingSword = 6450, + + /// + /// attack_ailment_damage_+%_while_wielding_bow + /// + AttackAilmentDamagePctWhileWieldingBow = 6451, + + /// + /// attack_ailment_damage_+%_while_wielding_axe + /// + AttackAilmentDamagePctWhileWieldingAxe = 6452, + + /// + /// attack_ailment_damage_+%_while_wielding_mace + /// + AttackAilmentDamagePctWhileWieldingMace = 6453, + + /// + /// attack_ailment_damage_+%_while_wielding_one_handed_weapon + /// + AttackAilmentDamagePctWhileWieldingOneHandedWeapon = 6454, + + /// + /// attack_ailment_damage_+%_while_wielding_two_handed_weapon + /// + AttackAilmentDamagePctWhileWieldingTwoHandedWeapon = 6455, + + /// + /// attack_ailment_damage_+%_while_dual_wielding + /// + AttackAilmentDamagePctWhileDualWielding = 6456, + + /// + /// attack_ailment_damage_+%_while_holding_shield + /// + AttackAilmentDamagePctWhileHoldingShield = 6457, + + /// + /// attack_ailment_damage_+%_while_wielding_melee_weapon + /// + AttackAilmentDamagePctWhileWieldingMeleeWeapon = 6458, + + /// + /// combined_ailment_damage_+%_from_wielding_weapon_types + /// + CombinedAilmentDamagePctFromWieldingWeaponTypes = 6459, + + /// + /// immune_to_status_ailments + /// + ImmuneToStatusAilments = 6460, + + /// + /// chance_to_hit_while_blinded_+%_final + /// + ChanceToHitWhileBlindedPctFinal = 6461, + + /// + /// chance_to_hit_+%_final + /// + ChanceToHitPctFinal = 6462, + + /// + /// is_summoned_harbinger_monster + /// + IsSummonedHarbingerMonster = 6463, + + /// + /// ignored_by_enemy_target_selection + /// + IgnoredByEnemyTargetSelection = 6464, + + /// + /// base_ignored_by_enemy_target_selection + /// + BaseIgnoredByEnemyTargetSelection = 6465, + + /// + /// map_packs_have_belly_totems + /// + MapPacksHaveBellyTotems = 6466, + + /// + /// harbinger_minion_max_magic_count + /// + HarbingerMinionMaxMagicCount = 6467, + + /// + /// harbinger_minion_max_rare_count + /// + HarbingerMinionMaxRareCount = 6468, + + /// + /// cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds + /// + CannotBeStunnedIfHaveBeenStunnedOrBlockedStunningHitInPast2Seconds = 6469, + + /// + /// glacial_cascade_number_of_additional_bursts + /// + GlacialCascadeNumberOfAdditionalBursts = 6470, + + /// + /// local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius + /// + LocalUniqueJewelGlacialCascadeNumberOfAdditionalBurstsWith40IntInRadius = 6471, + + /// + /// number_of_active_beast_minions + /// + NumberOfActiveBeastMinions = 6472, + + /// + /// projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion + /// + ProjectileAttacksChanceToBleedOnHitPctIfYouHaveBeastMinion = 6473, + + /// + /// attack_minimum_added_physical_damage_if_you_have_beast_minion + /// + AttackMinimumAddedPhysicalDamageIfYouHaveBeastMinion = 6474, + + /// + /// attack_maximum_added_physical_damage_if_you_have_beast_minion + /// + AttackMaximumAddedPhysicalDamageIfYouHaveBeastMinion = 6475, + + /// + /// projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion + /// + ProjectileAttacksChanceToMaimOnHitPctIfYouHaveBeastMinion = 6476, + + /// + /// attack_and_movement_speed_+%_if_you_have_beast_minion + /// + AttackAndMovementSpeedPctIfYouHaveBeastMinion = 6477, + + /// + /// projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion + /// + ProjectileAttacksChanceToPoisonOnHitPctIfYouHaveBeastMinion = 6478, + + /// + /// attack_minimum_added_chaos_damage_if_you_have_beast_minion + /// + AttackMinimumAddedChaosDamageIfYouHaveBeastMinion = 6479, + + /// + /// attack_maximum_added_chaos_damage_if_you_have_beast_minion + /// + AttackMaximumAddedChaosDamageIfYouHaveBeastMinion = 6480, + + /// + /// local_bleed_on_critical_strike_chance_% + /// + LocalBleedOnCriticalStrikeChancePct = 6481, + + /// + /// main_hand_local_bleed_on_critical_strike_chance_% + /// + MainHandLocalBleedOnCriticalStrikeChancePct = 6482, + + /// + /// off_hand_local_bleed_on_critical_strike_chance_% + /// + OffHandLocalBleedOnCriticalStrikeChancePct = 6483, + + /// + /// local_poison_on_critical_strike_chance_% + /// + LocalPoisonOnCriticalStrikeChancePct = 6484, + + /// + /// main_hand_local_poison_on_critical_strike_chance_% + /// + MainHandLocalPoisonOnCriticalStrikeChancePct = 6485, + + /// + /// off_hand_local_poison_on_critical_strike_chance_% + /// + OffHandLocalPoisonOnCriticalStrikeChancePct = 6486, + + /// + /// virtual_main_hand_chance_to_bleed_on_critical_strike_% + /// + VirtualMainHandChanceToBleedOnCriticalStrikePct = 6487, + + /// + /// virtual_off_hand_chance_to_bleed_on_critical_strike_% + /// + VirtualOffHandChanceToBleedOnCriticalStrikePct = 6488, + + /// + /// local_chance_to_bleed_on_crit_50% + /// + LocalChanceToBleedOnCrit50Pct = 6489, + + /// + /// main_hand_local_chance_to_bleed_on_crit_50% + /// + MainHandLocalChanceToBleedOnCrit50Pct = 6490, + + /// + /// off_hand_local_chance_to_bleed_on_crit_50% + /// + OffHandLocalChanceToBleedOnCrit50Pct = 6491, + + /// + /// cast_on_attack_use_% + /// + CastOnAttackUsePct = 6492, + + /// + /// ignite_slower_burn_% + /// + IgniteSlowerBurnPct = 6493, + + /// + /// virtual_ignite_duration_+%_final + /// + VirtualIgniteDurationPctFinal = 6494, + + /// + /// object_inherent_damage_+%_final_per_frenzy_charge + /// + ObjectInherentDamagePctFinalPerFrenzyCharge = 6495, + + /// + /// local_maim_on_hit_% + /// + LocalMaimOnHitPct = 6496, + + /// + /// main_hand_local_maim_on_hit_% + /// + MainHandLocalMaimOnHitPct = 6497, + + /// + /// off_hand_local_maim_on_hit_% + /// + OffHandLocalMaimOnHitPct = 6498, + + /// + /// life_leech_from_attack_damage_permyriad_vs_maimed_enemies + /// + LifeLeechFromAttackDamagePermyriadVsMaimedEnemies = 6499, + + /// + /// local_display_grants_skill_death_aura_level + /// + LocalDisplayGrantsSkillDeathAuraLevel = 6500, + + /// + /// chilled_ground_base_magnitude_override + /// + ChilledGroundBaseMagnitudeOverride = 6501, + + /// + /// shocked_ground_base_magnitude_override + /// + ShockedGroundBaseMagnitudeOverride = 6502, + + /// + /// harbinger_base_currency_shard_stack_tenths_to_drop + /// + HarbingerBaseCurrencyShardStackTenthsToDrop = 6503, + + /// + /// charged_dash_damage_+% + /// + ChargedDashDamagePct = 6504, + + /// + /// storm_burst_damage_+% + /// + StormBurstDamagePct = 6505, + + /// + /// skeletal_chains_damage_+% + /// + SkeletalChainsDamagePct = 6506, + + /// + /// whirling_blades_base_ground_chaos_damage_to_deal_per_minute + /// + WhirlingBladesBaseGroundChaosDamageToDealPerMinute = 6507, + + /// + /// chill_and_freeze_duration_+% + /// + ChillAndFreezeDurationPct = 6508, + + /// + /// local_chance_to_bleed_on_hit_50% + /// + LocalChanceToBleedOnHit50Pct = 6509, + + /// + /// main_hand_local_chance_to_bleed_on_hit_50% + /// + MainHandLocalChanceToBleedOnHit50Pct = 6510, + + /// + /// off_hand_local_chance_to_bleed_on_hit_50% + /// + OffHandLocalChanceToBleedOnHit50Pct = 6511, + + /// + /// arrows_that_pierce_chance_to_bleed_25% + /// + ArrowsThatPierceChanceToBleed25Pct = 6512, + + /// + /// attacks_chance_to_bleed_25%_vs_cursed_enemies + /// + AttacksChanceToBleed25PctVsCursedEnemies = 6513, + + /// + /// damage_taken_+%_final + /// + DamageTakenPctFinal = 6514, + + /// + /// display_one_harbinger_allowed + /// + DisplayOneHarbingerAllowed = 6515, + + /// + /// action_speed_+%_minimum_value + /// + ActionSpeedPctMinimumValue = 6516, + + /// + /// shavronne_ball_lightning_held_projectile_damage_+%_final + /// + ShavronneBallLightningHeldProjectileDamagePctFinal = 6517, + + /// + /// grant_rampage_kill_to_parent_on_hitting_unique_enemy_% + /// + GrantRampageKillToParentOnHittingUniqueEnemyPct = 6518, + + /// + /// minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_% + /// + MinionGrantsRampageKillToParentOnHittingUniqueEnemyPct = 6519, + + /// + /// monster_inherent_experience_granted_+%_final_because_deleted_on_death + /// + MonsterInherentExperienceGrantedPctFinalBecauseDeletedOnDeath = 6520, + + /// + /// monster_inherent_experience_granted_+%_final_if_deleted_on_death + /// + MonsterInherentExperienceGrantedPctFinalIfDeletedOnDeath = 6521, + + /// + /// harbinger_minion_extra_monster_chance_% + /// + HarbingerMinionExtraMonsterChancePct = 6522, + + /// + /// harbinger_minion_max_extra_monsters_count + /// + HarbingerMinionMaxExtraMonstersCount = 6523, + + /// + /// virtual_total_main_hand_chance_to_bleed_on_hit_% + /// + VirtualTotalMainHandChanceToBleedOnHitPct = 6524, + + /// + /// virtual_total_off_hand_chance_to_bleed_on_hit_% + /// + VirtualTotalOffHandChanceToBleedOnHitPct = 6525, + + /// + /// virtual_total_main_hand_chance_to_ignite_on_hit_% + /// + VirtualTotalMainHandChanceToIgniteOnHitPct = 6526, + + /// + /// virtual_total_off_hand_chance_to_ignite_on_hit_% + /// + VirtualTotalOffHandChanceToIgniteOnHitPct = 6527, + + /// + /// virtual_total_spell_chance_to_ignite_on_hit_% + /// + VirtualTotalSpellChanceToIgniteOnHitPct = 6528, + + /// + /// virtual_total_secondary_chance_to_ignite_on_hit_% + /// + VirtualTotalSecondaryChanceToIgniteOnHitPct = 6529, + + /// + /// virtual_total_main_hand_chance_to_poison_on_hit_% + /// + VirtualTotalMainHandChanceToPoisonOnHitPct = 6530, + + /// + /// virtual_total_off_hand_chance_to_poison_on_hit_% + /// + VirtualTotalOffHandChanceToPoisonOnHitPct = 6531, + + /// + /// virtual_total_spell_chance_to_poison_on_hit_% + /// + VirtualTotalSpellChanceToPoisonOnHitPct = 6532, + + /// + /// virtual_total_secondary_chance_to_poison_on_hit_% + /// + VirtualTotalSecondaryChanceToPoisonOnHitPct = 6533, + + /// + /// total_number_of_map_mods + /// + TotalNumberOfMapMods = 6534, + + /// + /// harbinger_currency_shard_stack_size_+% + /// + HarbingerCurrencyShardStackSizePct = 6535, + + /// + /// map_force_monster_pack_index + /// + MapForceMonsterPackIndex = 6536, + + /// + /// volatile_dead_base_number_of_corpses_to_consume + /// + VolatileDeadBaseNumberOfCorpsesToConsume = 6537, + + /// + /// chance_to_cast_when_your_trap_is_triggered_% + /// + ChanceToCastWhenYourTrapIsTriggeredPct = 6538, + + /// + /// local_display_gain_power_charge_on_spending_mana + /// + LocalDisplayGainPowerChargeOnSpendingMana = 6539, + + /// + /// is_untethered_pet + /// + IsUntetheredPet = 6540, + + /// + /// walk_emerge_distance + /// + WalkEmergeDistance = 6541, + + /// + /// walk_emerge_extra_distance + /// + WalkEmergeExtraDistance = 6542, + + /// + /// walk_emerge_height_offset + /// + WalkEmergeHeightOffset = 6543, + + /// + /// walk_emerge_tilt + /// + WalkEmergeTilt = 6544, + + /// + /// combined_armour_and_evasion_rating_+% + /// + CombinedArmourAndEvasionRatingPct = 6545, + + /// + /// herald_of_ash_burning_%_overkill_damage_per_minute + /// + HeraldOfAshBurningPctOverkillDamagePerMinute = 6546, + + /// + /// local_display_grants_skill_scorching_ray_level + /// + LocalDisplayGrantsSkillScorchingRayLevel = 6547, + + /// + /// support_minion_maximum_life_+%_final + /// + SupportMinionMaximumLifePctFinal = 6548, + + /// + /// max_life_+%_final_for_minion_from_support + /// + MaxLifePctFinalForMinionFromSupport = 6549, + + /// + /// lightning_tendrils_channelled_larger_pulse_radius_+ + /// + LightningTendrilsChannelledLargerPulseRadius = 6550, + + /// + /// lightning_tendrils_channelled_larger_pulse_damage_+%_final + /// + LightningTendrilsChannelledLargerPulseDamagePctFinal = 6551, + + /// + /// discorectangle_slam_damage_with_endurance_charge_+%_final + /// + DiscorectangleSlamDamageWithEnduranceChargePctFinal = 6552, + + /// + /// discorectangle_slam_radius_with_endurance_charge_+ + /// + DiscorectangleSlamRadiusWithEnduranceCharge = 6553, + + /// + /// unearth_base_corpse_level + /// + UnearthBaseCorpseLevel = 6554, + + /// + /// map_tencent_event_shards_drop_rate + /// + MapTencentEventShardsDropRate = 6555, + + /// + /// map_tencent_event_coins_drop_rate + /// + MapTencentEventCoinsDropRate = 6556, + + /// + /// is_in_caustic_cloud + /// + IsInCausticCloud = 6557, + + /// + /// chaos_damage_taken_over_time_+%_while_in_caustic_cloud + /// + ChaosDamageTakenOverTimePctWhileInCausticCloud = 6558, + + /// + /// local_can_socket_gems_ignoring_colour + /// + LocalCanSocketGemsIgnoringColour = 6559, + + /// + /// local_no_attribute_requirements + /// + LocalNoAttributeRequirements = 6560, + + /// + /// local_socketed_gems_in_red_sockets_get_level_+ + /// + LocalSocketedGemsInRedSocketsGetLevel = 6561, + + /// + /// local_socketed_gems_in_green_sockets_get_quality_% + /// + LocalSocketedGemsInGreenSocketsGetQualityPct = 6562, + + /// + /// local_socketed_gems_in_blue_sockets_experience_gained_+% + /// + LocalSocketedGemsInBlueSocketsExperienceGainedPct = 6563, + + /// + /// local_socketed_gems_in_white_sockets_get_nothing + /// + LocalSocketedGemsInWhiteSocketsGetNothing = 6564, + + /// + /// corpse_erruption_base_maximum_number_of_geyers + /// + CorpseErruptionBaseMaximumNumberOfGeyers = 6565, + + /// + /// thaumaturgy_rotation_active + /// + ThaumaturgyRotationActive = 6566, + + /// + /// thaumaturgy_rotation_buff_exists + /// + ThaumaturgyRotationBuffExists = 6567, + + /// + /// trigger_on_delayed_blast + /// + TriggerOnDelayedBlast = 6568, + + /// + /// trigger_on_delayed_blast_% + /// + TriggerOnDelayedBlastPct = 6569, + + /// + /// delayed_blast_has_trigger + /// + DelayedBlastHasTrigger = 6570, + + /// + /// spirit_charge_tier + /// + SpiritChargeTier = 6571, + + /// + /// current_spirit_charges + /// + CurrentSpiritCharges = 6572, + + /// + /// maximum_spirit_charges + /// + MaximumSpiritCharges = 6573, + + /// + /// recover_%_of_maximum_life_on_gaining_a_spirit_charge + /// + RecoverPctOfMaximumLifeOnGainingASpiritCharge = 6574, + + /// + /// corpse_skill_has_triggers + /// + CorpseSkillHasTriggers = 6575, + + /// + /// cast_on_corpse_consume + /// + CastOnCorpseConsume = 6576, + + /// + /// cast_on_corpse_consume_% + /// + CastOnCorpseConsumePct = 6577, + + /// + /// cast_on_damage_taken_also_tracks_dot + /// + CastOnDamageTakenAlsoTracksDot = 6578, + + /// + /// thrown_shield_projectile_max_distance + /// + ThrownShieldProjectileMaxDistance = 6579, + + /// + /// thrown_shield_projectile_fire_random_directions + /// + ThrownShieldProjectileFireRandomDirections = 6580, + + /// + /// thrown_shield_secondary_projectile_damage_+%_final + /// + ThrownShieldSecondaryProjectileDamagePctFinal = 6581, + + /// + /// cast_on_corpse_consume_id + /// + CastOnCorpseConsumeId = 6582, + + /// + /// gain_random_charge_per_second_while_stationary + /// + GainRandomChargePerSecondWhileStationary = 6583, + + /// + /// lose_all_charges_on_starting_movement + /// + LoseAllChargesOnStartingMovement = 6584, + + /// + /// mana_regeneration_rate_per_minute_per_power_charge + /// + ManaRegenerationRatePerMinutePerPowerCharge = 6585, + + /// + /// spectre_maximum_life_+ + /// + SpectreMaximumLife = 6586, + + /// + /// accuracy_rating_while_at_maximum_frenzy_charges + /// + AccuracyRatingWhileAtMaximumFrenzyCharges = 6587, + + /// + /// display_map_inhabited_by_solaris_fanatics + /// + DisplayMapInhabitedBySolarisFanatics = 6588, + + /// + /// display_map_inhabited_by_lunaris_fanatics + /// + DisplayMapInhabitedByLunarisFanatics = 6589, + + /// + /// map_elder_boss_variation + /// + MapElderBossVariation = 6590, + + /// + /// ignite_triggered_ground_fire_base_damage_per_minute + /// + IgniteTriggeredGroundFireBaseDamagePerMinute = 6591, + + /// + /// virtual_shock_effect_+% + /// + VirtualShockEffectPct = 6592, + + /// + /// virtual_chill_effect_+% + /// + VirtualChillEffectPct = 6593, + + /// + /// local_unique_jewel_non_keystone_passive_in_radius_effect_+% + /// + LocalUniqueJewelNonKeystonePassiveInRadiusEffectPct = 6594, + + /// + /// local_unique_jewel_notable_passive_in_radius_does_nothing + /// + LocalUniqueJewelNotablePassiveInRadiusDoesNothing = 6595, + + /// + /// passive_skill_does_nothing + /// + PassiveSkillDoesNothing = 6596, + + /// + /// local_unique_hungry_loop_number_of_gems_to_consume + /// + LocalUniqueHungryLoopNumberOfGemsToConsume = 6597, + + /// + /// local_unique_hungry_loop_has_consumed_gem + /// + LocalUniqueHungryLoopHasConsumedGem = 6598, + + /// + /// local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles + /// + LocalDisplaySocketedGemsSupportedByLevelXGreaterMultipleProjectiles = 6599, + + /// + /// local_display_socketed_gems_supported_by_level_x_increased_critical_strikes + /// + LocalDisplaySocketedGemsSupportedByLevelXIncreasedCriticalStrikes = 6600, + + /// + /// local_display_socketed_gems_supported_by_level_x_item_quantity + /// + LocalDisplaySocketedGemsSupportedByLevelXItemQuantity = 6601, + + /// + /// local_display_socketed_gems_supported_by_level_x_item_rarity + /// + LocalDisplaySocketedGemsSupportedByLevelXItemRarity = 6602, + + /// + /// local_display_socketed_gems_supported_by_level_x_increased_duration + /// + LocalDisplaySocketedGemsSupportedByLevelXIncreasedDuration = 6603, + + /// + /// local_display_socketed_gems_supported_by_level_x_chance_to_ignite + /// + LocalDisplaySocketedGemsSupportedByLevelXChanceToIgnite = 6604, + + /// + /// local_display_socketed_gems_supported_by_level_x_bloodlust + /// + LocalDisplaySocketedGemsSupportedByLevelXBloodlust = 6605, + + /// + /// local_display_socketed_gems_supported_by_level_x_life_gain_on_hit + /// + LocalDisplaySocketedGemsSupportedByLevelXLifeGainOnHit = 6606, + + /// + /// local_display_socketed_gems_supported_by_level_x_culling_strike + /// + LocalDisplaySocketedGemsSupportedByLevelXCullingStrike = 6607, + + /// + /// local_display_socketed_gems_supported_by_level_x_point_blank + /// + LocalDisplaySocketedGemsSupportedByLevelXPointBlank = 6608, + + /// + /// local_display_socketed_gems_supported_by_level_x_iron_grip + /// + LocalDisplaySocketedGemsSupportedByLevelXIronGrip = 6609, + + /// + /// local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life + /// + LocalDisplaySocketedGemsSupportedByLevelXMeleeDamageOnFullLife = 6610, + + /// + /// local_display_socketed_gems_supported_by_level_x_ranged_attack_totem + /// + LocalDisplaySocketedGemsSupportedByLevelXRangedAttackTotem = 6611, + + /// + /// local_display_socketed_gems_supported_by_level_x_fire_penetration + /// + LocalDisplaySocketedGemsSupportedByLevelXFirePenetration = 6612, + + /// + /// local_display_socketed_gems_supported_by_level_x_lightning_penetration + /// + LocalDisplaySocketedGemsSupportedByLevelXLightningPenetration = 6613, + + /// + /// local_display_socketed_gems_supported_by_level_x_chain + /// + LocalDisplaySocketedGemsSupportedByLevelXChain = 6614, + + /// + /// local_display_socketed_gems_supported_by_level_x_multicast + /// + LocalDisplaySocketedGemsSupportedByLevelXMulticast = 6615, + + /// + /// local_display_socketed_gems_supported_by_level_x_power_charge_on_crit + /// + LocalDisplaySocketedGemsSupportedByLevelXPowerChargeOnCrit = 6616, + + /// + /// local_display_socketed_gems_supported_by_level_x_increased_burning_damage + /// + LocalDisplaySocketedGemsSupportedByLevelXIncreasedBurningDamage = 6617, + + /// + /// local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance + /// + LocalDisplaySocketedGemsSupportedByLevelXSummonElementalResistance = 6618, + + /// + /// local_display_socketed_gems_supported_by_level_x_curse_on_hit + /// + LocalDisplaySocketedGemsSupportedByLevelXCurseOnHit = 6619, + + /// + /// local_display_socketed_gems_supported_by_level_x_cast_on_kill + /// + LocalDisplaySocketedGemsSupportedByLevelXCastOnKill = 6620, + + /// + /// local_display_socketed_gems_supported_by_level_x_multi_trap + /// + LocalDisplaySocketedGemsSupportedByLevelXMultiTrap = 6621, + + /// + /// local_display_socketed_gems_supported_by_level_x_empower + /// + LocalDisplaySocketedGemsSupportedByLevelXEmpower = 6622, + + /// + /// local_display_socketed_gems_supported_by_level_x_slower_projectiles + /// + LocalDisplaySocketedGemsSupportedByLevelXSlowerProjectiles = 6623, + + /// + /// local_display_socketed_gems_supported_by_level_x_reduced_duration + /// + LocalDisplaySocketedGemsSupportedByLevelXReducedDuration = 6624, + + /// + /// local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken + /// + LocalDisplaySocketedGemsSupportedByLevelXCastOnDamageTaken = 6625, + + /// + /// local_display_socketed_gems_supported_by_level_x_enhance + /// + LocalDisplaySocketedGemsSupportedByLevelXEnhance = 6626, + + /// + /// local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage + /// + LocalDisplaySocketedGemsSupportedByLevelXPhysicalProjectileAttackDamage = 6627, + + /// + /// local_display_socketed_gems_supported_by_level_x_enlighten + /// + LocalDisplaySocketedGemsSupportedByLevelXEnlighten = 6628, + + /// + /// local_display_socketed_gems_supported_by_level_x_physical_to_lightning + /// + LocalDisplaySocketedGemsSupportedByLevelXPhysicalToLightning = 6629, + + /// + /// local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage + /// + LocalDisplaySocketedGemsSupportedByLevelXTrapAndMineDamage = 6630, + + /// + /// local_display_socketed_gems_supported_by_level_x_poison + /// + LocalDisplaySocketedGemsSupportedByLevelXPoison = 6631, + + /// + /// local_display_socketed_gems_supported_by_level_x_void_manipulation + /// + LocalDisplaySocketedGemsSupportedByLevelXVoidManipulation = 6632, + + /// + /// local_display_socketed_gems_supported_by_level_x_rapid_decay + /// + LocalDisplaySocketedGemsSupportedByLevelXRapidDecay = 6633, + + /// + /// local_display_socketed_gems_supported_by_level_x_cluster_trap + /// + LocalDisplaySocketedGemsSupportedByLevelXClusterTrap = 6634, + + /// + /// local_display_socketed_gems_supported_by_level_x_elemental_focus + /// + LocalDisplaySocketedGemsSupportedByLevelXElementalFocus = 6635, + + /// + /// local_display_socketed_gems_supported_by_level_x_minefield + /// + LocalDisplaySocketedGemsSupportedByLevelXMinefield = 6636, + + /// + /// local_display_socketed_gems_supported_by_level_x_trap_cooldown + /// + LocalDisplaySocketedGemsSupportedByLevelXTrapCooldown = 6637, + + /// + /// local_display_socketed_gems_supported_by_level_x_cast_while_channelling + /// + LocalDisplaySocketedGemsSupportedByLevelXCastWhileChannelling = 6638, + + /// + /// local_display_socketed_gems_supported_by_level_x_ignite_proliferation + /// + LocalDisplaySocketedGemsSupportedByLevelXIgniteProliferation = 6639, + + /// + /// local_display_socketed_gems_supported_by_level_x_chance_to_bleed + /// + LocalDisplaySocketedGemsSupportedByLevelXChanceToBleed = 6640, + + /// + /// local_display_socketed_gems_supported_by_level_x_deadly_ailments + /// + LocalDisplaySocketedGemsSupportedByLevelXDeadlyAilments = 6641, + + /// + /// local_display_socketed_gems_supported_by_level_x_decay + /// + LocalDisplaySocketedGemsSupportedByLevelXDecay = 6642, + + /// + /// local_display_socketed_gems_supported_by_level_x_efficacy + /// + LocalDisplaySocketedGemsSupportedByLevelXEfficacy = 6643, + + /// + /// local_display_socketed_gems_supported_by_level_x_maim + /// + LocalDisplaySocketedGemsSupportedByLevelXMaim = 6644, + + /// + /// local_display_socketed_gems_supported_by_level_x_immolate + /// + LocalDisplaySocketedGemsSupportedByLevelXImmolate = 6645, + + /// + /// local_display_socketed_gems_supported_by_level_x_unbound_ailments + /// + LocalDisplaySocketedGemsSupportedByLevelXUnboundAilments = 6646, + + /// + /// local_display_socketed_gems_supported_by_level_x_brutality + /// + LocalDisplaySocketedGemsSupportedByLevelXBrutality = 6647, + + /// + /// local_display_socketed_gems_supported_by_level_x_ruthless + /// + LocalDisplaySocketedGemsSupportedByLevelXRuthless = 6648, + + /// + /// local_display_socketed_gems_supported_by_level_x_onslaught + /// + LocalDisplaySocketedGemsSupportedByLevelXOnslaught = 6649, + + /// + /// local_display_socketed_gems_supported_by_level_x_arcane_surge + /// + LocalDisplaySocketedGemsSupportedByLevelXArcaneSurge = 6650, + + /// + /// local_display_socketed_gems_supported_by_level_x_reduced_block_chance + /// + LocalDisplaySocketedGemsSupportedByLevelXReducedBlockChance = 6651, + + /// + /// local_display_socketed_gems_supported_by_level_x_bonechill + /// + LocalDisplaySocketedGemsSupportedByLevelXBonechill = 6652, + + /// + /// local_display_socketed_gems_supported_by_level_x_multi_totem + /// + LocalDisplaySocketedGemsSupportedByLevelXMultiTotem = 6653, + + /// + /// local_display_socketed_gems_supported_by_level_x_barrage + /// + LocalDisplaySocketedGemsSupportedByLevelXBarrage = 6654, + + /// + /// local_display_socketed_gems_supported_by_level_x_rain + /// + LocalDisplaySocketedGemsSupportedByLevelXRain = 6655, + + /// + /// spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_% + /// + SpectralThrowGainVaalSoulForVaalSpectralThrowOnHitPct = 6656, + + /// + /// local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius + /// + LocalUniqueJewelSpectralThrowGainVaalSoulForVaalStOnHitPctWith40DexInRadius = 6657, + + /// + /// trigger_socketed_spell_on_attack_% + /// + TriggerSocketedSpellOnAttackPct = 6658, + + /// + /// main_hand_trigger_socketed_spell_on_attack_% + /// + MainHandTriggerSocketedSpellOnAttackPct = 6659, + + /// + /// off_hand_trigger_socketed_spell_on_attack_% + /// + OffHandTriggerSocketedSpellOnAttackPct = 6660, + + /// + /// local_attack_minimum_added_physical_damage_per_3_levels + /// + LocalAttackMinimumAddedPhysicalDamagePer3Levels = 6661, + + /// + /// local_attack_maximum_added_physical_damage_per_3_levels + /// + LocalAttackMaximumAddedPhysicalDamagePer3Levels = 6662, + + /// + /// main_hand_attack_minimum_added_physical_damage_per_3_levels + /// + MainHandAttackMinimumAddedPhysicalDamagePer3Levels = 6663, + + /// + /// main_hand_attack_maximum_added_physical_damage_per_3_levels + /// + MainHandAttackMaximumAddedPhysicalDamagePer3Levels = 6664, + + /// + /// off_hand_attack_minimum_added_physical_damage_per_3_levels + /// + OffHandAttackMinimumAddedPhysicalDamagePer3Levels = 6665, + + /// + /// off_hand_attack_maximum_added_physical_damage_per_3_levels + /// + OffHandAttackMaximumAddedPhysicalDamagePer3Levels = 6666, + + /// + /// local_poison_duration_+%_during_flask_effect + /// + LocalPoisonDurationPctDuringFlaskEffect = 6667, + + /// + /// local_grant_perfect_agony_during_flask_effect + /// + LocalGrantPerfectAgonyDuringFlaskEffect = 6668, + + /// + /// local_chance_to_poison_on_hit_%_during_flask_effect + /// + LocalChanceToPoisonOnHitPctDuringFlaskEffect = 6669, + + /// + /// local_no_critical_strike_multiplier_during_flask_effect + /// + LocalNoCriticalStrikeMultiplierDuringFlaskEffect = 6670, + + /// + /// local_socketed_skill_gem_level_+1_per_x_player_levels + /// + LocalSocketedSkillGemLevel1PerXPlayerLevels = 6671, + + /// + /// map_spawn_abysses + /// + MapSpawnAbysses = 6672, + + /// + /// map_num_extra_abysses + /// + MapNumExtraAbysses = 6673, + + /// + /// lightning_tendrils_channelled_larger_pulse_interval + /// + LightningTendrilsChannelledLargerPulseInterval = 6674, + + /// + /// local_has_X_abyss_sockets + /// + LocalHasXAbyssSockets = 6675, + + /// + /// melee_skills_area_of_effect_+% + /// + MeleeSkillsAreaOfEffectPct = 6676, + + /// + /// skill_is_melee_skill + /// + SkillIsMeleeSkill = 6677, + + /// + /// local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start + /// + LocalUniqueJewelMeleeSkillsAreaOfEffectPctWithPassiveTreeConnectedToMarauderStart = 6678, + + /// + /// local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start + /// + LocalUniqueJewelLifeLeechFromAttackDamagePermyriadWithPassiveTreeConnectedToDuelistStart = 6679, + + /// + /// local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start + /// + LocalUniqueJewelMovementSpeedPctWithPassiveTreeConnectedToRangerStart = 6680, + + /// + /// local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start + /// + LocalUniqueJewelAdditionalCriticalStrikeChancePermyriadWithPassiveTreeConnectedToShadowStart = 6681, + + /// + /// local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start + /// + LocalUniqueJewelManaRegenerationRatePerMinutePctWithPassiveTreeConnectedToWitchStart = 6682, + + /// + /// local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start + /// + LocalUniqueJewelElementalPenetrationPctWithPassiveTreeConnectedToTemplarStart = 6683, + + /// + /// local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start + /// + LocalUniqueJewelAdditionalAllAttributesWithPassiveTreeConnectedToScionStart = 6684, + + /// + /// local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius + /// + LocalUniqueJewelGlacialCascadePhysicalDamagePctToConvertToColdWith40IntInRadius = 6685, + + /// + /// attack_critical_strike_chance_+%_per_200_accuracy_rating + /// + AttackCriticalStrikeChancePctPer200AccuracyRating = 6686, + + /// + /// attack_minimum_added_physical_damage_with_wands + /// + AttackMinimumAddedPhysicalDamageWithWands = 6687, + + /// + /// attack_maximum_added_physical_damage_with_wands + /// + AttackMaximumAddedPhysicalDamageWithWands = 6688, + + /// + /// attack_minimum_added_physical_damage_with_daggers + /// + AttackMinimumAddedPhysicalDamageWithDaggers = 6689, + + /// + /// attack_maximum_added_physical_damage_with_daggers + /// + AttackMaximumAddedPhysicalDamageWithDaggers = 6690, + + /// + /// attack_minimum_added_physical_damage_with_claws + /// + AttackMinimumAddedPhysicalDamageWithClaws = 6691, + + /// + /// attack_maximum_added_physical_damage_with_claws + /// + AttackMaximumAddedPhysicalDamageWithClaws = 6692, + + /// + /// attack_minimum_added_physical_damage_with_swords + /// + AttackMinimumAddedPhysicalDamageWithSwords = 6693, + + /// + /// attack_maximum_added_physical_damage_with_swords + /// + AttackMaximumAddedPhysicalDamageWithSwords = 6694, + + /// + /// attack_minimum_added_physical_damage_with_axes + /// + AttackMinimumAddedPhysicalDamageWithAxes = 6695, + + /// + /// attack_maximum_added_physical_damage_with_axes + /// + AttackMaximumAddedPhysicalDamageWithAxes = 6696, + + /// + /// attack_minimum_added_physical_damage_with_maces + /// + AttackMinimumAddedPhysicalDamageWithMaces = 6697, + + /// + /// attack_maximum_added_physical_damage_with_maces + /// + AttackMaximumAddedPhysicalDamageWithMaces = 6698, + + /// + /// attack_minimum_added_physical_damage_with_staves + /// + AttackMinimumAddedPhysicalDamageWithStaves = 6699, + + /// + /// attack_maximum_added_physical_damage_with_staves + /// + AttackMaximumAddedPhysicalDamageWithStaves = 6700, + + /// + /// attack_minimum_added_lightning_damage_with_daggers + /// + AttackMinimumAddedLightningDamageWithDaggers = 6701, + + /// + /// attack_maximum_added_lightning_damage_with_daggers + /// + AttackMaximumAddedLightningDamageWithDaggers = 6702, + + /// + /// attack_minimum_added_lightning_damage_with_claws + /// + AttackMinimumAddedLightningDamageWithClaws = 6703, + + /// + /// attack_maximum_added_lightning_damage_with_claws + /// + AttackMaximumAddedLightningDamageWithClaws = 6704, + + /// + /// attack_minimum_added_lightning_damage_with_bows + /// + AttackMinimumAddedLightningDamageWithBows = 6705, + + /// + /// attack_maximum_added_lightning_damage_with_bows + /// + AttackMaximumAddedLightningDamageWithBows = 6706, + + /// + /// attack_minimum_added_lightning_damage_with_swords + /// + AttackMinimumAddedLightningDamageWithSwords = 6707, + + /// + /// attack_maximum_added_lightning_damage_with_swords + /// + AttackMaximumAddedLightningDamageWithSwords = 6708, + + /// + /// attack_minimum_added_lightning_damage_with_axes + /// + AttackMinimumAddedLightningDamageWithAxes = 6709, + + /// + /// attack_maximum_added_lightning_damage_with_axes + /// + AttackMaximumAddedLightningDamageWithAxes = 6710, + + /// + /// attack_minimum_added_lightning_damage_with_maces + /// + AttackMinimumAddedLightningDamageWithMaces = 6711, + + /// + /// attack_maximum_added_lightning_damage_with_maces + /// + AttackMaximumAddedLightningDamageWithMaces = 6712, + + /// + /// attack_minimum_added_lightning_damage_with_staves + /// + AttackMinimumAddedLightningDamageWithStaves = 6713, + + /// + /// attack_maximum_added_lightning_damage_with_staves + /// + AttackMaximumAddedLightningDamageWithStaves = 6714, + + /// + /// attack_minimum_added_fire_damage_with_daggers + /// + AttackMinimumAddedFireDamageWithDaggers = 6715, + + /// + /// attack_maximum_added_fire_damage_with_daggers + /// + AttackMaximumAddedFireDamageWithDaggers = 6716, + + /// + /// attack_minimum_added_fire_damage_with_claws + /// + AttackMinimumAddedFireDamageWithClaws = 6717, + + /// + /// attack_maximum_added_fire_damage_with_claws + /// + AttackMaximumAddedFireDamageWithClaws = 6718, + + /// + /// attack_minimum_added_fire_damage_with_swords + /// + AttackMinimumAddedFireDamageWithSwords = 6719, + + /// + /// attack_maximum_added_fire_damage_with_swords + /// + AttackMaximumAddedFireDamageWithSwords = 6720, + + /// + /// attack_minimum_added_fire_damage_with_axes + /// + AttackMinimumAddedFireDamageWithAxes = 6721, + + /// + /// attack_maximum_added_fire_damage_with_axes + /// + AttackMaximumAddedFireDamageWithAxes = 6722, + + /// + /// attack_minimum_added_fire_damage_with_maces + /// + AttackMinimumAddedFireDamageWithMaces = 6723, + + /// + /// attack_maximum_added_fire_damage_with_maces + /// + AttackMaximumAddedFireDamageWithMaces = 6724, + + /// + /// attack_minimum_added_fire_damage_with_staves + /// + AttackMinimumAddedFireDamageWithStaves = 6725, + + /// + /// attack_maximum_added_fire_damage_with_staves + /// + AttackMaximumAddedFireDamageWithStaves = 6726, + + /// + /// attack_minimum_added_cold_damage_with_daggers + /// + AttackMinimumAddedColdDamageWithDaggers = 6727, + + /// + /// attack_maximum_added_cold_damage_with_daggers + /// + AttackMaximumAddedColdDamageWithDaggers = 6728, + + /// + /// attack_minimum_added_cold_damage_with_claws + /// + AttackMinimumAddedColdDamageWithClaws = 6729, + + /// + /// attack_maximum_added_cold_damage_with_claws + /// + AttackMaximumAddedColdDamageWithClaws = 6730, + + /// + /// attack_minimum_added_cold_damage_with_bows + /// + AttackMinimumAddedColdDamageWithBows = 6731, + + /// + /// attack_maximum_added_cold_damage_with_bows + /// + AttackMaximumAddedColdDamageWithBows = 6732, + + /// + /// attack_minimum_added_cold_damage_with_swords + /// + AttackMinimumAddedColdDamageWithSwords = 6733, + + /// + /// attack_maximum_added_cold_damage_with_swords + /// + AttackMaximumAddedColdDamageWithSwords = 6734, + + /// + /// attack_minimum_added_cold_damage_with_axes + /// + AttackMinimumAddedColdDamageWithAxes = 6735, + + /// + /// attack_maximum_added_cold_damage_with_axes + /// + AttackMaximumAddedColdDamageWithAxes = 6736, + + /// + /// attack_minimum_added_cold_damage_with_maces + /// + AttackMinimumAddedColdDamageWithMaces = 6737, + + /// + /// attack_maximum_added_cold_damage_with_maces + /// + AttackMaximumAddedColdDamageWithMaces = 6738, + + /// + /// attack_minimum_added_cold_damage_with_staves + /// + AttackMinimumAddedColdDamageWithStaves = 6739, + + /// + /// attack_maximum_added_cold_damage_with_staves + /// + AttackMaximumAddedColdDamageWithStaves = 6740, + + /// + /// attack_minimum_added_physical_damage_while_unarmed + /// + AttackMinimumAddedPhysicalDamageWhileUnarmed = 6741, + + /// + /// attack_maximum_added_physical_damage_while_unarmed + /// + AttackMaximumAddedPhysicalDamageWhileUnarmed = 6742, + + /// + /// attack_minimum_added_physical_damage_while_holding_a_shield + /// + AttackMinimumAddedPhysicalDamageWhileHoldingAShield = 6743, + + /// + /// attack_maximum_added_physical_damage_while_holding_a_shield + /// + AttackMaximumAddedPhysicalDamageWhileHoldingAShield = 6744, + + /// + /// spell_minimum_added_fire_damage_while_dual_wielding + /// + SpellMinimumAddedFireDamageWhileDualWielding = 6745, + + /// + /// spell_maximum_added_fire_damage_while_dual_wielding + /// + SpellMaximumAddedFireDamageWhileDualWielding = 6746, + + /// + /// spell_minimum_added_cold_damage_while_dual_wielding + /// + SpellMinimumAddedColdDamageWhileDualWielding = 6747, + + /// + /// spell_maximum_added_cold_damage_while_dual_wielding + /// + SpellMaximumAddedColdDamageWhileDualWielding = 6748, + + /// + /// spell_minimum_added_lightning_damage_while_dual_wielding + /// + SpellMinimumAddedLightningDamageWhileDualWielding = 6749, + + /// + /// spell_maximum_added_lightning_damage_while_dual_wielding + /// + SpellMaximumAddedLightningDamageWhileDualWielding = 6750, + + /// + /// spell_minimum_added_physical_damage_while_dual_wielding + /// + SpellMinimumAddedPhysicalDamageWhileDualWielding = 6751, + + /// + /// spell_maximum_added_physical_damage_while_dual_wielding + /// + SpellMaximumAddedPhysicalDamageWhileDualWielding = 6752, + + /// + /// spell_minimum_added_chaos_damage_while_dual_wielding + /// + SpellMinimumAddedChaosDamageWhileDualWielding = 6753, + + /// + /// spell_maximum_added_chaos_damage_while_dual_wielding + /// + SpellMaximumAddedChaosDamageWhileDualWielding = 6754, + + /// + /// spell_minimum_added_fire_damage_while_wielding_two_handed_weapon + /// + SpellMinimumAddedFireDamageWhileWieldingTwoHandedWeapon = 6755, + + /// + /// spell_maximum_added_fire_damage_while_wielding_two_handed_weapon + /// + SpellMaximumAddedFireDamageWhileWieldingTwoHandedWeapon = 6756, + + /// + /// spell_minimum_added_cold_damage_while_wielding_two_handed_weapon + /// + SpellMinimumAddedColdDamageWhileWieldingTwoHandedWeapon = 6757, + + /// + /// spell_maximum_added_cold_damage_while_wielding_two_handed_weapon + /// + SpellMaximumAddedColdDamageWhileWieldingTwoHandedWeapon = 6758, + + /// + /// spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon + /// + SpellMinimumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6759, + + /// + /// spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon + /// + SpellMaximumAddedLightningDamageWhileWieldingTwoHandedWeapon = 6760, + + /// + /// spell_minimum_added_physical_damage_while_wielding_two_handed_weapon + /// + SpellMinimumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6761, + + /// + /// spell_maximum_added_physical_damage_while_wielding_two_handed_weapon + /// + SpellMaximumAddedPhysicalDamageWhileWieldingTwoHandedWeapon = 6762, + + /// + /// spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon + /// + SpellMinimumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6763, + + /// + /// spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon + /// + SpellMaximumAddedChaosDamageWhileWieldingTwoHandedWeapon = 6764, + + /// + /// spell_minimum_added_fire_damage_while_holding_a_shield + /// + SpellMinimumAddedFireDamageWhileHoldingAShield = 6765, + + /// + /// spell_maximum_added_fire_damage_while_holding_a_shield + /// + SpellMaximumAddedFireDamageWhileHoldingAShield = 6766, + + /// + /// spell_minimum_added_cold_damage_while_holding_a_shield + /// + SpellMinimumAddedColdDamageWhileHoldingAShield = 6767, + + /// + /// spell_maximum_added_cold_damage_while_holding_a_shield + /// + SpellMaximumAddedColdDamageWhileHoldingAShield = 6768, + + /// + /// spell_minimum_added_lightning_damage_while_holding_a_shield + /// + SpellMinimumAddedLightningDamageWhileHoldingAShield = 6769, + + /// + /// spell_maximum_added_lightning_damage_while_holding_a_shield + /// + SpellMaximumAddedLightningDamageWhileHoldingAShield = 6770, + + /// + /// spell_minimum_added_physical_damage_while_holding_a_shield + /// + SpellMinimumAddedPhysicalDamageWhileHoldingAShield = 6771, + + /// + /// spell_maximum_added_physical_damage_while_holding_a_shield + /// + SpellMaximumAddedPhysicalDamageWhileHoldingAShield = 6772, + + /// + /// spell_minimum_added_chaos_damage_while_holding_a_shield + /// + SpellMinimumAddedChaosDamageWhileHoldingAShield = 6773, + + /// + /// spell_maximum_added_chaos_damage_while_holding_a_shield + /// + SpellMaximumAddedChaosDamageWhileHoldingAShield = 6774, + + /// + /// damage_over_time_+%_while_dual_wielding + /// + DamageOverTimePctWhileDualWielding = 6775, + + /// + /// damage_over_time_+%_while_wielding_two_handed_weapon + /// + DamageOverTimePctWhileWieldingTwoHandedWeapon = 6776, + + /// + /// damage_over_time_+%_while_holding_a_shield + /// + DamageOverTimePctWhileHoldingAShield = 6777, + + /// + /// minion_global_minimum_added_fire_damage + /// + MinionGlobalMinimumAddedFireDamage = 6778, + + /// + /// minion_global_maximum_added_fire_damage + /// + MinionGlobalMaximumAddedFireDamage = 6779, + + /// + /// minion_global_minimum_added_cold_damage + /// + MinionGlobalMinimumAddedColdDamage = 6780, + + /// + /// minion_global_maximum_added_cold_damage + /// + MinionGlobalMaximumAddedColdDamage = 6781, + + /// + /// minion_global_minimum_added_lightning_damage + /// + MinionGlobalMinimumAddedLightningDamage = 6782, + + /// + /// minion_global_maximum_added_lightning_damage + /// + MinionGlobalMaximumAddedLightningDamage = 6783, + + /// + /// minion_global_minimum_added_physical_damage + /// + MinionGlobalMinimumAddedPhysicalDamage = 6784, + + /// + /// minion_global_maximum_added_physical_damage + /// + MinionGlobalMaximumAddedPhysicalDamage = 6785, + + /// + /// minion_global_minimum_added_chaos_damage + /// + MinionGlobalMinimumAddedChaosDamage = 6786, + + /// + /// minion_global_maximum_added_chaos_damage + /// + MinionGlobalMaximumAddedChaosDamage = 6787, + + /// + /// minion_life_regeneration_rate_per_second + /// + MinionLifeRegenerationRatePerSecond = 6788, + + /// + /// energy_shield_regeneration_rate_per_second + /// + EnergyShieldRegenerationRatePerSecond = 6789, + + /// + /// local_attack_cast_movement_speed_+%_during_flask_effect + /// + LocalAttackCastMovementSpeedPctDuringFlaskEffect = 6790, + + /// + /// local_attack_cast_movement_speed_+%_per_second_during_flask_effect + /// + LocalAttackCastMovementSpeedPctPerSecondDuringFlaskEffect = 6791, + + /// + /// damage_+%_vs_abyssal_monsters + /// + DamagePctVsAbyssalMonsters = 6792, + + /// + /// minion_damage_+%_vs_abyssal_monsters + /// + MinionDamagePctVsAbyssalMonsters = 6793, + + /// + /// additional_physical_damage_reduction_%_vs_abyssal_monsters + /// + AdditionalPhysicalDamageReductionPctVsAbyssalMonsters = 6794, + + /// + /// attacker_conditional_damage_stats_requires_tags + /// + AttackerConditionalDamageStatsRequiresTags = 6795, + + /// + /// defender_conditional_damage_stats_requires_tags + /// + DefenderConditionalDamageStatsRequiresTags = 6796, + + /// + /// chance_to_block_spells_%_if_damaged_by_a_hit_recently + /// + ChanceToBlockSpellsPctIfDamagedByAHitRecently = 6797, + + /// + /// track_have_been_damaged_by_a_hit_recently + /// + TrackHaveBeenDamagedByAHitRecently = 6798, + + /// + /// have_been_damaged_by_a_hit_recently + /// + HaveBeenDamagedByAHitRecently = 6799, + + /// + /// movement_speed_+%_if_have_not_taken_damage_recently + /// + MovementSpeedPctIfHaveNotTakenDamageRecently = 6800, + + /// + /// track_have_stopped_taking_damage_over_time_recently + /// + TrackHaveStoppedTakingDamageOverTimeRecently = 6801, + + /// + /// have_stopped_taking_damage_over_time_recently + /// + HaveStoppedTakingDamageOverTimeRecently = 6802, + + /// + /// is_currently_taking_damage_over_time + /// + IsCurrentlyTakingDamageOverTime = 6803, + + /// + /// damage_+%_if_enemy_killed_recently + /// + DamagePctIfEnemyKilledRecently = 6804, + + /// + /// critical_strike_multiplier_+_if_enemy_killed_recently + /// + CriticalStrikeMultiplierIfEnemyKilledRecently = 6805, + + /// + /// armour_+%_if_enemy_not_killed_recently + /// + ArmourPctIfEnemyNotKilledRecently = 6806, + + /// + /// accuracy_rating_+%_if_enemy_not_killed_recently + /// + AccuracyRatingPctIfEnemyNotKilledRecently = 6807, + + /// + /// damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently + /// + DamagePenetratesPctElementalResistanceIfEnemyNotKilledRecently = 6808, + + /// + /// cast_speed_+%_if_player_minion_has_been_killed_recently + /// + CastSpeedPctIfPlayerMinionHasBeenKilledRecently = 6809, + + /// + /// track_has_player_minion_been_killed_recently + /// + TrackHasPlayerMinionBeenKilledRecently = 6810, + + /// + /// has_player_minion_been_killed_recently + /// + HasPlayerMinionBeenKilledRecently = 6811, + + /// + /// minion_damage_+%_if_have_used_a_minion_skill_recently + /// + MinionDamagePctIfHaveUsedAMinionSkillRecently = 6812, + + /// + /// track_have_used_a_minion_skill_recently + /// + TrackHaveUsedAMinionSkillRecently = 6813, + + /// + /// have_used_a_minion_skill_recently + /// + HaveUsedAMinionSkillRecently = 6814, + + /// + /// evasion_rating_+%_while_moving + /// + EvasionRatingPctWhileMoving = 6815, + + /// + /// mana_regeneration_rate_+%_while_moving + /// + ManaRegenerationRatePctWhileMoving = 6816, + + /// + /// life_regeneration_rate_per_minute_%_while_moving + /// + LifeRegenerationRatePerMinutePctWhileMoving = 6817, + + /// + /// physical_damage_%_to_add_as_fire_if_have_crit_recently + /// + PhysicalDamagePctToAddAsFireIfHaveCritRecently = 6818, + + /// + /// attack_speed_+%_if_have_crit_recently + /// + AttackSpeedPctIfHaveCritRecently = 6819, + + /// + /// cast_speed_+%_if_have_crit_recently + /// + CastSpeedPctIfHaveCritRecently = 6820, + + /// + /// critical_strike_chance_+%_if_have_not_crit_recently + /// + CriticalStrikeChancePctIfHaveNotCritRecently = 6821, + + /// + /// minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently + /// + MinionAttackAndCastSpeedPctIfYouOrMinionsHaveKilledEnemyRecently = 6822, + + /// + /// notify_parent_have_killed_enemy_recently + /// + NotifyParentHaveKilledEnemyRecently = 6823, + + /// + /// minion_has_killed_enemy_recently + /// + MinionHasKilledEnemyRecently = 6824, + + /// + /// attacks_chance_to_blind_on_hit_% + /// + AttacksChanceToBlindOnHitPct = 6825, + + /// + /// attacks_chance_to_taunt_on_hit_% + /// + AttacksChanceToTauntOnHitPct = 6826, + + /// + /// spells_chance_to_hinder_on_hit_% + /// + SpellsChanceToHinderOnHitPct = 6827, + + /// + /// minion_attacks_chance_to_blind_on_hit_% + /// + MinionAttacksChanceToBlindOnHitPct = 6828, + + /// + /// minion_attacks_chance_to_taunt_on_hit_% + /// + MinionAttacksChanceToTauntOnHitPct = 6829, + + /// + /// minion_spells_chance_to_hinder_on_hit_% + /// + MinionSpellsChanceToHinderOnHitPct = 6830, + + /// + /// desecrate_maximum_number_of_corpses + /// + DesecrateMaximumNumberOfCorpses = 6831, + + /// + /// additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently + /// + AdditionalPhysicalDamageReductionPctIfNotDamagedByAHitRecently = 6832, + + /// + /// has_aegis_shield_type + /// + HasAegisShieldType = 6833, + + /// + /// local_display_cast_fire_aegis_on_gain_skill + /// + LocalDisplayCastFireAegisOnGainSkill = 6834, + + /// + /// local_display_cast_cold_aegis_on_gain_skill + /// + LocalDisplayCastColdAegisOnGainSkill = 6835, + + /// + /// local_display_cast_elemental_aegis_on_gain_skill + /// + LocalDisplayCastElementalAegisOnGainSkill = 6836, + + /// + /// poison_reflected_to_self + /// + PoisonReflectedToSelf = 6837, + + /// + /// bleeding_reflected_to_self + /// + BleedingReflectedToSelf = 6838, + + /// + /// chaos_damage_resistance_%_per_poison_stack + /// + ChaosDamageResistancePctPerPoisonStack = 6839, + + /// + /// armour_+%_while_bleeding + /// + ArmourPctWhileBleeding = 6840, + + /// + /// avoid_poison_% + /// + AvoidPoisonPct = 6841, + + /// + /// cannot_be_frozen + /// + CannotBeFrozen = 6842, + + /// + /// local_display_grants_level_x_curse_pillar_skill + /// + LocalDisplayGrantsLevelXCursePillarSkill = 6843, + + /// + /// local_socketed_active_skill_gem_level_+ + /// + LocalSocketedActiveSkillGemLevel = 6844, + + /// + /// local_socketed_active_skill_gem_quality_+ + /// + LocalSocketedActiveSkillGemQuality = 6845, + + /// + /// aegis_unique_shield_max_value + /// + AegisUniqueShieldMaxValue = 6846, + + /// + /// move_daemon_rotation_per_repeat + /// + MoveDaemonRotationPerRepeat = 6847, + + /// + /// move_daemon_end_rotation_per_repeat + /// + MoveDaemonEndRotationPerRepeat = 6848, + + /// + /// move_daemon_x_offset_per_repeat + /// + MoveDaemonXOffsetPerRepeat = 6849, + + /// + /// move_daemon_y_offset_per_repeat + /// + MoveDaemonYOffsetPerRepeat = 6850, + + /// + /// map_tier_+5 + /// + MapTier5 = 6851, + + /// + /// map_tier_16 + /// + MapTier16 = 6852, + + /// + /// raised_spectre_level + /// + RaisedSpectreLevel = 6853, + + /// + /// summon_specific_monsters_in_front_angle_offset + /// + SummonSpecificMonstersInFrontAngleOffset = 6854, + + /// + /// move_daemon_random_xy_offset + /// + MoveDaemonRandomXyOffset = 6855, + + /// + /// move_daemon_random_x_offset + /// + MoveDaemonRandomXOffset = 6856, + + /// + /// move_daemon_random_y_offset + /// + MoveDaemonRandomYOffset = 6857, + + /// + /// endurance_charge_slam_damage_+%_final_with_endurance_charge + /// + EnduranceChargeSlamDamagePctFinalWithEnduranceCharge = 6858, + + /// + /// generic_skill_trigger_skills_with_id + /// + GenericSkillTriggerSkillsWithId = 6859, + + /// + /// generic_skill_trigger_id + /// + GenericSkillTriggerId = 6860, + + /// + /// generic_skill_trigger_% + /// + GenericSkillTriggerPct = 6861, + + /// + /// projectile_swap_from_to_locations + /// + ProjectileSwapFromToLocations = 6862, + + /// + /// projectile_angle_variance + /// + ProjectileAngleVariance = 6863, + + /// + /// maligaro_combo_attack_third_hit_damage_+%_final + /// + MaligaroComboAttackThirdHitDamagePctFinal = 6864, + + /// + /// minions_cannot_be_damaged + /// + MinionsCannotBeDamaged = 6865, + + /// + /// minions_deal_no_damage + /// + MinionsDealNoDamage = 6866, + + /// + /// curse_on_hit_level_assassins_mark + /// + CurseOnHitLevelAssassinsMark = 6867, + + /// + /// projectile_distance_override + /// + ProjectileDistanceOverride = 6868, + + /// + /// mortar_projectile_distance_override + /// + MortarProjectileDistanceOverride = 6869, + + /// + /// triggered_skill_use_animation_event + /// + TriggeredSkillUseAnimationEvent = 6870, + + /// + /// map_atlas_influence_type + /// + MapAtlasInfluenceType = 6871, + + /// + /// combo_attack_first_hit_damage_+%_final + /// + ComboAttackFirstHitDamagePctFinal = 6872, + + /// + /// support_storm_barrier_physical_damage_taken_when_hit_+%_final + /// + SupportStormBarrierPhysicalDamageTakenWhenHitPctFinal = 6873, + + /// + /// support_storm_barrier_lightning_damage_taken_when_hit_+%_final + /// + SupportStormBarrierLightningDamageTakenWhenHitPctFinal = 6874, + + /// + /// support_storm_barrier_gain_power_charge_when_hit_% + /// + SupportStormBarrierGainPowerChargeWhenHitPct = 6875, + + /// + /// gain_power_charge_when_hit_% + /// + GainPowerChargeWhenHitPct = 6876, + + /// + /// local_display_socketed_gems_supported_by_level_x_storm_barrier + /// + LocalDisplaySocketedGemsSupportedByLevelXStormBarrier = 6877, + + /// + /// gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana + /// + GainCriticalStrikeChancePctFor2SecondsWhenYouSpend800Mana = 6878, + + /// + /// virtual_maximum_life_leech_rate_permyriad_per_minute + /// + VirtualMaximumLifeLeechRatePermyriadPerMinute = 6879, + + /// + /// keystone_vaal_pact + /// + KeystoneVaalPact = 6880, + + /// + /// life_leech_speed_is_doubled + /// + LifeLeechSpeedIsDoubled = 6881, + + /// + /// maximum_life_leech_rate_%_per_minute_is_doubled + /// + MaximumLifeLeechRatePctPerMinuteIsDoubled = 6882, + + /// + /// spectres_have_base_duration_ms + /// + SpectresHaveBaseDurationMs = 6883, + + /// + /// spectres_critical_strike_chance_+% + /// + SpectresCriticalStrikeChancePct = 6884, + + /// + /// gain_her_embrace_for_x_ms_on_enemy_ignited + /// + GainHerEmbraceForXMsOnEnemyIgnited = 6885, + + /// + /// has_her_embrace + /// + HasHerEmbrace = 6886, + + /// + /// %_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace + /// + PctMaximumEsAndLifeTakenAsFireDamagePerMinutePerLevelWhileInHerEmbrace = 6887, + + /// + /// projectile_uses_contact_direction + /// + ProjectileUsesContactDirection = 6888, + + /// + /// spell_base_fire_damage_%_maximum_life + /// + SpellBaseFireDamagePctMaximumLife = 6889, + + /// + /// additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad + /// + AdditionalCriticalStrikeChancePer10ShieldMaximumEnergyShieldPermyriad = 6890, + + /// + /// bone_lance_skill_behaviour_variation + /// + BoneLanceSkillBehaviourVariation = 6891, + + /// + /// gain_armour_equal_to_mana_reserved + /// + GainArmourEqualToManaReserved = 6892, + + /// + /// gain_vaal_pact_if_you_have_crit_recently + /// + GainVaalPactIfYouHaveCritRecently = 6893, + + /// + /// virtual_keystone_vaal_pact + /// + VirtualKeystoneVaalPact = 6894, + + /// + /// support_parallel_projectile_number_of_points_per_side + /// + SupportParallelProjectileNumberOfPointsPerSide = 6895, + + /// + /// support_spell_cascade_number_of_cascades_per_side + /// + SupportSpellCascadeNumberOfCascadesPerSide = 6896, + + /// + /// support_spell_cascade_area_of_effect_+%_per_cascade + /// + SupportSpellCascadeAreaOfEffectPctPerCascade = 6897, + + /// + /// support_spell_cascade_area_of_effect_+%_final + /// + SupportSpellCascadeAreaOfEffectPctFinal = 6898, + + /// + /// local_display_socketed_gems_supported_by_level_x_parallel_projectiles + /// + LocalDisplaySocketedGemsSupportedByLevelXParallelProjectiles = 6899, + + /// + /// local_display_socketed_gems_supported_by_level_x_spell_cascade + /// + LocalDisplaySocketedGemsSupportedByLevelXSpellCascade = 6900, + + /// + /// map_display_area_contains_unbridged_gaps_to_cross + /// + MapDisplayAreaContainsUnbridgedGapsToCross = 6901, + + /// + /// map_players_movement_skills_cooldown_speed_+% + /// + MapPlayersMovementSkillsCooldownSpeedPct = 6902, + + /// + /// movement_skills_cooldown_speed_+% + /// + MovementSkillsCooldownSpeedPct = 6903, + + /// + /// map_packs_are_kitava + /// + MapPacksAreKitava = 6904, + + /// + /// map_packs_have_anomalies + /// + MapPacksHaveAnomalies = 6905, + + /// + /// map_shaper_influence_spawn_shaper_clone + /// + MapShaperInfluenceSpawnShaperClone = 6906, + + /// + /// map_shaper_influence_additional_packs_of_space_monsters + /// + MapShaperInfluenceAdditionalPacksOfSpaceMonsters = 6907, + + /// + /// map_shaper_influence_spawn_boss_pack + /// + MapShaperInfluenceSpawnBossPack = 6908, + + /// + /// map_shaper_influence_spawn_maelstrom_cell + /// + MapShaperInfluenceSpawnMaelstromCell = 6909, + + /// + /// grasping_vines_movement_speed_+%_final + /// + GraspingVinesMovementSpeedPctFinal = 6910, + + /// + /// support_parallel_projectiles_damage_+%_final + /// + SupportParallelProjectilesDamagePctFinal = 6911, + + /// + /// is_trigger_daemon_when_hit_triggered_skill + /// + IsTriggerDaemonWhenHitTriggeredSkill = 6912, + + /// + /// trigger_daemon_when_hit_triggered_skill_chance_% + /// + TriggerDaemonWhenHitTriggeredSkillChancePct = 6913, + + /// + /// cannot_be_ignited_with_strength_higher_than_dex + /// + CannotBeIgnitedWithStrengthHigherThanDex = 6914, + + /// + /// cannot_be_frozen_with_dex_higher_than_int + /// + CannotBeFrozenWithDexHigherThanInt = 6915, + + /// + /// cannot_be_shocked_with_int_higher_than_strength + /// + CannotBeShockedWithIntHigherThanStrength = 6916, + + /// + /// damage_+%_per_5_of_your_lowest_attribute + /// + DamagePctPer5OfYourLowestAttribute = 6917, + + /// + /// cannot_be_ignited + /// + CannotBeIgnited = 6918, + + /// + /// attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity + /// + AttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6919, + + /// + /// attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity + /// + AttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6920, + + /// + /// main_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity + /// + MainHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6921, + + /// + /// main_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity + /// + MainHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6922, + + /// + /// off_hand_attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity + /// + OffHandAttacksWithThisWeaponMinimumAddedColdDamagePer10Dexterity = 6923, + + /// + /// off_hand_attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity + /// + OffHandAttacksWithThisWeaponMaximumAddedColdDamagePer10Dexterity = 6924, + + /// + /// local_chaos_damage_taken_per_minute_during_flask_effect + /// + LocalChaosDamageTakenPerMinuteDuringFlaskEffect = 6925, + + /// + /// melee_attack_number_of_spirit_strikes + /// + MeleeAttackNumberOfSpiritStrikes = 6926, + + /// + /// cannot_taunt_enemies + /// + CannotTauntEnemies = 6927, + + /// + /// minions_cannot_taunt_enemies + /// + MinionsCannotTauntEnemies = 6928, + + /// + /// base_number_of_support_ghosts_allowed + /// + BaseNumberOfSupportGhostsAllowed = 6929, + + /// + /// chance_to_summon_support_ghost_on_killing_blow_% + /// + ChanceToSummonSupportGhostOnKillingBlowPct = 6930, + + /// + /// support_ghost_base_duration + /// + SupportGhostBaseDuration = 6931, + + /// + /// support_ghost_duration + /// + SupportGhostDuration = 6932, + + /// + /// skill_can_own_support_ghosts + /// + SkillCanOwnSupportGhosts = 6933, + + /// + /// local_display_socketed_gems_supported_by_level_x_spirit_strike + /// + LocalDisplaySocketedGemsSupportedByLevelXSpiritStrike = 6934, + + /// + /// local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill + /// + LocalDisplaySocketedGemsSupportedByLevelXSummonGhostOnKill = 6935, + + /// + /// support_spirit_strike_damage_+%_final + /// + SupportSpiritStrikeDamagePctFinal = 6936, + + /// + /// local_display_socketed_attacks_additional_critical_strike_chance + /// + LocalDisplaySocketedAttacksAdditionalCriticalStrikeChance = 6937, + + /// + /// local_display_socketed_attacks_critical_strike_multiplier_+ + /// + LocalDisplaySocketedAttacksCriticalStrikeMultiplier = 6938, + + /// + /// local_display_socketed_spells_additional_critical_strike_chance + /// + LocalDisplaySocketedSpellsAdditionalCriticalStrikeChance = 6939, + + /// + /// local_display_socketed_spells_critical_strike_multiplier_+ + /// + LocalDisplaySocketedSpellsCriticalStrikeMultiplier = 6940, + + /// + /// keystone_shared_suffering + /// + KeystoneSharedSuffering = 6941, + + /// + /// all_damage_can_cause_elemental_ailments_you_are_suffering_from + /// + AllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6942, + + /// + /// base_all_damage_can_cause_elemental_ailments_you_are_suffering_from + /// + BaseAllDamageCanCauseElementalAilmentsYouAreSufferingFrom = 6943, + + /// + /// always_inflict_elemental_ailments_you_are_suffering_from + /// + AlwaysInflictElementalAilmentsYouAreSufferingFrom = 6944, + + /// + /// base_always_inflict_elemental_ailments_you_are_suffering_from + /// + BaseAlwaysInflictElementalAilmentsYouAreSufferingFrom = 6945, + + /// + /// remove_elemental_ailments_from_you_when_you_inflict_them + /// + RemoveElementalAilmentsFromYouWhenYouInflictThem = 6946, + + /// + /// base_remove_elemental_ailments_from_you_when_you_inflict_them + /// + BaseRemoveElementalAilmentsFromYouWhenYouInflictThem = 6947, + + /// + /// geometry_attack_shape + /// + GeometryAttackShape = 6948, + + /// + /// geometry_attack_length + /// + GeometryAttackLength = 6949, + + /// + /// geometry_attack_width + /// + GeometryAttackWidth = 6950, + + /// + /// geometry_attack_arc_angle + /// + GeometryAttackArcAngle = 6951, + + /// + /// map_packs_have_tentacle_fiends + /// + MapPacksHaveTentacleFiends = 6952, + + /// + /// no_movement_speed + /// + NoMovementSpeed = 6953, + + /// + /// unaffected_by_shock + /// + UnaffectedByShock = 6954, + + /// + /// unaffected_by_shocked_ground + /// + UnaffectedByShockedGround = 6955, + + /// + /// unaffected_by_burning_ground + /// + UnaffectedByBurningGround = 6956, + + /// + /// unaffected_by_chilled_ground + /// + UnaffectedByChilledGround = 6957, + + /// + /// unaffected_by_desecrated_ground + /// + UnaffectedByDesecratedGround = 6958, + + /// + /// flammability_mana_reservation_+% + /// + FlammabilityManaReservationPct = 6959, + + /// + /// frostbite_mana_reservation_+% + /// + FrostbiteManaReservationPct = 6960, + + /// + /// conductivity_mana_reservation_+% + /// + ConductivityManaReservationPct = 6961, + + /// + /// vulnerability_mana_reservation_+% + /// + VulnerabilityManaReservationPct = 6962, + + /// + /// chaos_weakness_mana_reservation_+% + /// + ChaosWeaknessManaReservationPct = 6963, + + /// + /// local_display_grants_skill_decoy_totem_level + /// + LocalDisplayGrantsSkillDecoyTotemLevel = 6964, + + /// + /// local_display_grants_skill_enduring_cry_level + /// + LocalDisplayGrantsSkillEnduringCryLevel = 6965, + + /// + /// local_display_grants_skill_rallying_cry_level + /// + LocalDisplayGrantsSkillRallyingCryLevel = 6966, + + /// + /// local_display_grants_skill_abyssal_cry_level + /// + LocalDisplayGrantsSkillAbyssalCryLevel = 6967, + + /// + /// local_display_grants_skill_herald_of_ash_level + /// + LocalDisplayGrantsSkillHeraldOfAshLevel = 6968, + + /// + /// local_display_grants_skill_herald_of_ice_level + /// + LocalDisplayGrantsSkillHeraldOfIceLevel = 6969, + + /// + /// local_display_grants_skill_herald_of_thunder_level + /// + LocalDisplayGrantsSkillHeraldOfThunderLevel = 6970, + + /// + /// curse_on_hit_level_poachers_mark + /// + CurseOnHitLevelPoachersMark = 6971, + + /// + /// curse_on_hit_level_warlords_mark + /// + CurseOnHitLevelWarlordsMark = 6972, + + /// + /// elemental_damage_can_shock + /// + ElementalDamageCanShock = 6973, + + /// + /// ailment_types_apply_damage_taken_+% + /// + AilmentTypesApplyDamageTakenPct = 6974, + + /// + /// evasion_rating_+%_while_leeching + /// + EvasionRatingPctWhileLeeching = 6975, + + /// + /// blind_enemies_when_hit_%_chance + /// + BlindEnemiesWhenHitPctChance = 6976, + + /// + /// evasion_rating_+%_if_you_have_hit_an_enemy_recently + /// + EvasionRatingPctIfYouHaveHitAnEnemyRecently = 6977, + + /// + /// gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance + /// + Gain1RareMonsterModOnKillFor10SecondsPctChance = 6978, + + /// + /// enemy_evasion_+%_if_you_have_hit_them_recently + /// + EnemyEvasionPctIfYouHaveHitThemRecently = 6979, + + /// + /// critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently + /// + CriticalStrikeMultiplierIfHaveNotDealtCriticalStrikeRecently = 6980, + + /// + /// number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more + /// + NumberOfAdditionalArrowsWhileMainHandAccuracyIs3000OrMore = 6981, + + /// + /// accuracy_rating_is_doubled + /// + AccuracyRatingIsDoubled = 6982, + + /// + /// melee_physical_damage_+%_per_10_strength_while_fortified + /// + MeleePhysicalDamagePctPer10StrengthWhileFortified = 6983, + + /// + /// chance_to_dodge_attacks_%_while_off_hand_is_empty + /// + ChanceToDodgeAttacksPctWhileOffHandIsEmpty = 6984, + + /// + /// cold_damage_+%_while_off_hand_is_empty + /// + ColdDamagePctWhileOffHandIsEmpty = 6985, + + /// + /// iron_reflexes_rotation_active + /// + IronReflexesRotationActive = 6986, + + /// + /// unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes + /// + UniqueBowArborixCloseRangeBowDamagePctFinalWhileHaveIronReflexes = 6987, + + /// + /// unique_bow_arborix_close_range_bow_damage_+%_final + /// + UniqueBowArborixCloseRangeBowDamagePctFinal = 6988, + + /// + /// virtual_player_far_shot + /// + VirtualPlayerFarShot = 6989, + + /// + /// gain_player_far_shot_while_do_not_have_iron_reflexes + /// + GainPlayerFarShotWhileDoNotHaveIronReflexes = 6990, + + /// + /// attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes + /// + AttackCastAndMovementSpeedPctWhileDoNotHaveIronReflexes = 6991, + + /// + /// local_display_trigger_death_walk_on_equip_level + /// + LocalDisplayTriggerDeathWalkOnEquipLevel = 6992, + + /// + /// number_of_melee_abyss_jewels + /// + NumberOfMeleeAbyssJewels = 6993, + + /// + /// number_of_ranged_abyss_jewels + /// + NumberOfRangedAbyssJewels = 6994, + + /// + /// number_of_caster_abyss_jewels + /// + NumberOfCasterAbyssJewels = 6995, + + /// + /// number_of_minion_abyss_jewels + /// + NumberOfMinionAbyssJewels = 6996, + + /// + /// number_of_abyss_jewels + /// + NumberOfAbyssJewels = 6997, + + /// + /// number_of_abyss_jewel_types + /// + NumberOfAbyssJewelTypes = 6998, + + /// + /// damage_+%_per_abyss_jewel_type + /// + DamagePctPerAbyssJewelType = 6999, + + /// + /// support_spell_cascade_damage_+%_final + /// + SupportSpellCascadeDamagePctFinal = 7000, + + /// + /// virtual_physical_damage_can_chill + /// + VirtualPhysicalDamageCanChill = 7001, + + /// + /// virtual_fire_damage_can_chill + /// + VirtualFireDamageCanChill = 7002, + + /// + /// virtual_cold_damage_cannot_chill + /// + VirtualColdDamageCannotChill = 7003, + + /// + /// virtual_lightning_damage_can_chill + /// + VirtualLightningDamageCanChill = 7004, + + /// + /// virtual_chaos_damage_can_chill + /// + VirtualChaosDamageCanChill = 7005, + + /// + /// fire_damage_can_chill + /// + FireDamageCanChill = 7006, + + /// + /// lightning_damage_can_chill + /// + LightningDamageCanChill = 7007, + + /// + /// virtual_physical_damage_can_freeze + /// + VirtualPhysicalDamageCanFreeze = 7008, + + /// + /// virtual_fire_damage_can_freeze + /// + VirtualFireDamageCanFreeze = 7009, + + /// + /// virtual_cold_damage_cannot_freeze + /// + VirtualColdDamageCannotFreeze = 7010, + + /// + /// virtual_lightning_damage_can_freeze + /// + VirtualLightningDamageCanFreeze = 7011, + + /// + /// virtual_chaos_damage_can_freeze + /// + VirtualChaosDamageCanFreeze = 7012, + + /// + /// physical_damage_can_freeze + /// + PhysicalDamageCanFreeze = 7013, + + /// + /// fire_damage_can_freeze + /// + FireDamageCanFreeze = 7014, + + /// + /// chaos_damage_can_freeze + /// + ChaosDamageCanFreeze = 7015, + + /// + /// all_damage_can_freeze + /// + AllDamageCanFreeze = 7016, + + /// + /// virtual_physical_damage_can_shock + /// + VirtualPhysicalDamageCanShock = 7017, + + /// + /// virtual_fire_damage_can_shock + /// + VirtualFireDamageCanShock = 7018, + + /// + /// virtual_cold_damage_can_shock + /// + VirtualColdDamageCanShock = 7019, + + /// + /// virtual_lightning_damage_cannot_shock + /// + VirtualLightningDamageCannotShock = 7020, + + /// + /// virtual_chaos_damage_can_shock + /// + VirtualChaosDamageCanShock = 7021, + + /// + /// cold_damage_can_shock + /// + ColdDamageCanShock = 7022, + + /// + /// chaos_damage_cannot_poison + /// + ChaosDamageCannotPoison = 7023, + + /// + /// physical_damage_cannot_poison + /// + PhysicalDamageCannotPoison = 7024, + + /// + /// area_of_effect_+%_with_500_or_more_strength + /// + AreaOfEffectPctWith500OrMoreStrength = 7025, + + /// + /// area_of_effect_+%_if_have_stunned_an_enemy_recently + /// + AreaOfEffectPctIfHaveStunnedAnEnemyRecently = 7026, + + /// + /// track_have_stunned_an_enemy_recently + /// + TrackHaveStunnedAnEnemyRecently = 7027, + + /// + /// have_stunned_an_enemy_recently + /// + HaveStunnedAnEnemyRecently = 7028, + + /// + /// chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy + /// + ChanceToGainEnduranceChargeOnHitPctVsBleedingEnemy = 7029, + + /// + /// local_display_socketed_movement_skills_have_no_mana_cost + /// + LocalDisplaySocketedMovementSkillsHaveNoManaCost = 7030, + + /// + /// local_hits_with_this_weapon_always_hit_if_have_blocked_recently + /// + LocalHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7031, + + /// + /// main_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently + /// + MainHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7032, + + /// + /// off_hand_hits_with_this_weapon_always_hit_if_have_blocked_recently + /// + OffHandHitsWithThisWeaponAlwaysHitIfHaveBlockedRecently = 7033, + + /// + /// additional_block_%_per_endurance_charge + /// + AdditionalBlockPctPerEnduranceCharge = 7034, + + /// + /// attack_speed_+%_if_have_blocked_recently + /// + AttackSpeedPctIfHaveBlockedRecently = 7035, + + /// + /// local_display_trigger_level_x_smoke_cloud_on_trap_triggered + /// + LocalDisplayTriggerLevelXSmokeCloudOnTrapTriggered = 7036, + + /// + /// area_of_effect_+%_while_fortified + /// + AreaOfEffectPctWhileFortified = 7037, + + /// + /// melee_weapon_range_+_if_you_have_killed_recently + /// + MeleeWeaponRangeIfYouHaveKilledRecently = 7038, + + /// + /// melee_weapon_range_+_while_fortified + /// + MeleeWeaponRangeWhileFortified = 7039, + + /// + /// stun_duration_+%_per_15_strength + /// + StunDurationPctPer15Strength = 7040, + + /// + /// stun_threshold_reduction_+%_with_500_or_more_strength + /// + StunThresholdReductionPctWith500OrMoreStrength = 7041, + + /// + /// area_of_effect_+%_per_endurance_charge + /// + AreaOfEffectPctPerEnduranceCharge = 7042, + + /// + /// area_damage_+%_per_12_strength + /// + AreaDamagePctPer12Strength = 7043, + + /// + /// damage_+%_vs_taunted_enemies + /// + DamagePctVsTauntedEnemies = 7044, + + /// + /// chance_to_gain_endurance_charge_when_you_taunt_enemy_% + /// + ChanceToGainEnduranceChargeWhenYouTauntEnemyPct = 7045, + + /// + /// attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies + /// + AttacksChanceToBleedOnHitPctVsTauntedEnemies = 7046, + + /// + /// bleed_damage_+%_per_endurance_charge + /// + BleedDamagePctPerEnduranceCharge = 7047, + + /// + /// melee_movement_skill_chance_to_fortify_on_hit_% + /// + MeleeMovementSkillChanceToFortifyOnHitPct = 7048, + + /// + /// melee_weapon_range_+_while_at_maximum_frenzy_charges + /// + MeleeWeaponRangeWhileAtMaximumFrenzyCharges = 7049, + + /// + /// poison_damage_+%_vs_bleeding_enemies + /// + PoisonDamagePctVsBleedingEnemies = 7050, + + /// + /// additional_physical_damage_reduction_%_while_moving + /// + AdditionalPhysicalDamageReductionPctWhileMoving = 7051, + + /// + /// elemental_damage_taken_+%_while_stationary + /// + ElementalDamageTakenPctWhileStationary = 7052, + + /// + /// map_monsters_avoid_ailments_% + /// + MapMonstersAvoidAilmentsPct = 7053, + + /// + /// number_of_endurance_charges_to_gain_every_4_seconds_while_stationary + /// + NumberOfEnduranceChargesToGainEvery4SecondsWhileStationary = 7054, + + /// + /// maximum_life_+%_per_abyssal_jewel_affecting_you + /// + MaximumLifePctPerAbyssalJewelAffectingYou = 7055, + + /// + /// maximum_mana_+%_per_abyssal_jewel_affecting_you + /// + MaximumManaPctPerAbyssalJewelAffectingYou = 7056, + + /// + /// cast_speed_+%_during_flask_effect + /// + CastSpeedPctDuringFlaskEffect = 7057, + + /// + /// melee_damage_+%_during_flask_effect + /// + MeleeDamagePctDuringFlaskEffect = 7058, + + /// + /// projectile_attack_damage_+%_during_flask_effect + /// + ProjectileAttackDamagePctDuringFlaskEffect = 7059, + + /// + /// spell_damage_+%_during_flask_effect + /// + SpellDamagePctDuringFlaskEffect = 7060, + + /// + /// local_crits_have_culling_strike + /// + LocalCritsHaveCullingStrike = 7061, + + /// + /// main_hand_local_crits_have_culling_strike + /// + MainHandLocalCritsHaveCullingStrike = 7062, + + /// + /// off_hand_local_crits_have_culling_strike + /// + OffHandLocalCritsHaveCullingStrike = 7063, + + /// + /// global_minimum_added_fire_damage_vs_ignited_enemies + /// + GlobalMinimumAddedFireDamageVsIgnitedEnemies = 7064, + + /// + /// global_maximum_added_fire_damage_vs_ignited_enemies + /// + GlobalMaximumAddedFireDamageVsIgnitedEnemies = 7065, + + /// + /// global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies + /// + GlobalMinimumAddedColdDamageVsChilledOrFrozenEnemies = 7066, + + /// + /// global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies + /// + GlobalMaximumAddedColdDamageVsChilledOrFrozenEnemies = 7067, + + /// + /// global_minimum_added_lightning_damage_vs_shocked_enemies + /// + GlobalMinimumAddedLightningDamageVsShockedEnemies = 7068, + + /// + /// global_maximum_added_lightning_damage_vs_shocked_enemies + /// + GlobalMaximumAddedLightningDamageVsShockedEnemies = 7069, + + /// + /// chill_attackers_for_4_seconds_on_block_%_chance + /// + ChillAttackersFor4SecondsOnBlockPctChance = 7070, + + /// + /// shock_attackers_for_4_seconds_on_block_%_chance + /// + ShockAttackersFor4SecondsOnBlockPctChance = 7071, + + /// + /// damage_+%_per_1%_block_chance + /// + DamagePctPer1PctBlockChance = 7072, + + /// + /// dodge_attacks_chance_%_if_you_have_blocked_recently + /// + DodgeAttacksChancePctIfYouHaveBlockedRecently = 7073, + + /// + /// damage_+%_per_15_strength + /// + DamagePctPer15Strength = 7074, + + /// + /// damage_+%_per_15_dex + /// + DamagePctPer15Dex = 7075, + + /// + /// damage_+%_per_15_int + /// + DamagePctPer15Int = 7076, + + /// + /// additional_block_%_with_5_or_more_nearby_enemies + /// + AdditionalBlockPctWith5OrMoreNearbyEnemies = 7077, + + /// + /// gain_random_charge_on_block + /// + GainRandomChargeOnBlock = 7078, + + /// + /// chance_to_evade_attacks_% + /// + ChanceToEvadeAttacksPct = 7079, + + /// + /// mana_gained_on_spell_hit + /// + ManaGainedOnSpellHit = 7080, + + /// + /// remove_ignite_and_burning_on_flask_use + /// + RemoveIgniteAndBurningOnFlaskUse = 7081, + + /// + /// remove_chill_and_freeze_on_flask_use + /// + RemoveChillAndFreezeOnFlaskUse = 7082, + + /// + /// remove_shock_on_flask_use + /// + RemoveShockOnFlaskUse = 7083, + + /// + /// number_of_equipped_elder_items + /// + NumberOfEquippedElderItems = 7084, + + /// + /// maximum_life_per_equipped_elder_item + /// + MaximumLifePerEquippedElderItem = 7085, + + /// + /// non_damaging_ailment_effect_+%_per_equipped_elder_item + /// + NonDamagingAilmentEffectPctPerEquippedElderItem = 7086, + + /// + /// ailment_damage_+%_per_equipped_elder_item + /// + AilmentDamagePctPerEquippedElderItem = 7087, + + /// + /// remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder + /// + RemoveRandomAilmentOnFlaskUseIfAllEquippedItemsAreElder = 7088, + + /// + /// virtual_freeze_effect_+% + /// + VirtualFreezeEffectPct = 7089, + + /// + /// virtual_ignite_effect_+% + /// + VirtualIgniteEffectPct = 7090, + + /// + /// virtual_poison_effect_+% + /// + VirtualPoisonEffectPct = 7091, + + /// + /// virtual_bleed_effect_+% + /// + VirtualBleedEffectPct = 7092, + + /// + /// virtual_minion_elemental_resistance_% + /// + VirtualMinionElementalResistancePct = 7093, + + /// + /// minion_elemental_resistance_30% + /// + MinionElementalResistance30Pct = 7094, + + /// + /// strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead + /// + StrengthDamageBonusGrantsMeleePhysicalDamage3PctPer10StrengthInstead = 7095, + + /// + /// fortify_duration_+%_per_10_strength + /// + FortifyDurationPctPer10Strength = 7096, + + /// + /// attack_additional_critical_strike_chance_permyriad + /// + AttackAdditionalCriticalStrikeChancePermyriad = 7097, + + /// + /// spell_additional_critical_strike_chance_permyriad + /// + SpellAdditionalCriticalStrikeChancePermyriad = 7098, + + /// + /// virtual_fortify_duration_+% + /// + VirtualFortifyDurationPct = 7099, + + /// + /// virtual_fortify_effect_on_self_+% + /// + VirtualFortifyEffectOnSelfPct = 7100, + + /// + /// fortify_effect_on_self_+%_while_stationary + /// + FortifyEffectOnSelfPctWhileStationary = 7101, + + /// + /// remove_bleeding_on_warcry + /// + RemoveBleedingOnWarcry = 7102, + + /// + /// chance_to_gain_endurance_charge_when_you_stun_enemy_% + /// + ChanceToGainEnduranceChargeWhenYouStunEnemyPct = 7103, + + /// + /// critical_strike_multiplier_+_if_you_have_blocked_recently + /// + CriticalStrikeMultiplierIfYouHaveBlockedRecently = 7104, + + /// + /// bleeding_damage_+%_vs_poisoned_enemies + /// + BleedingDamagePctVsPoisonedEnemies = 7105, + + /// + /// area_of_effect_+%_if_you_have_blocked_recently + /// + AreaOfEffectPctIfYouHaveBlockedRecently = 7106, + + /// + /// elemental_damage_+%_per_power_charge + /// + ElementalDamagePctPerPowerCharge = 7107, + + /// + /// elemental_damage_+%_per_12_int + /// + ElementalDamagePctPer12Int = 7108, + + /// + /// elemental_damage_+%_per_12_strength + /// + ElementalDamagePctPer12Strength = 7109, + + /// + /// elemental_damage_taken_+%_per_endurance_charge + /// + ElementalDamageTakenPctPerEnduranceCharge = 7110, + + /// + /// additional_block_%_if_you_have_crit_recently + /// + AdditionalBlockPctIfYouHaveCritRecently = 7111, + + /// + /// area_of_effect_+%_per_50_strength + /// + AreaOfEffectPctPer50Strength = 7112, + + /// + /// local_life_gain_per_target_vs_blinded_enemies + /// + LocalLifeGainPerTargetVsBlindedEnemies = 7113, + + /// + /// main_hand_local_life_gain_per_target_vs_blinded_enemies + /// + MainHandLocalLifeGainPerTargetVsBlindedEnemies = 7114, + + /// + /// off_hand_local_life_gain_per_target_vs_blinded_enemies + /// + OffHandLocalLifeGainPerTargetVsBlindedEnemies = 7115, + + /// + /// local_culling_strike_if_crit_recently + /// + LocalCullingStrikeIfCritRecently = 7116, + + /// + /// main_hand_culling_strike_if_crit_recently + /// + MainHandCullingStrikeIfCritRecently = 7117, + + /// + /// off_hand_culling_strike_if_crit_recently + /// + OffHandCullingStrikeIfCritRecently = 7118, + + /// + /// support_mirage_archer_base_duration + /// + SupportMirageArcherBaseDuration = 7119, + + /// + /// support_mirage_archer_duration + /// + SupportMirageArcherDuration = 7120, + + /// + /// summon_mirage_archer_on_hit + /// + SummonMirageArcherOnHit = 7121, + + /// + /// skill_can_own_mirage_archers + /// + SkillCanOwnMirageArchers = 7122, + + /// + /// number_of_mirage_archers_allowed + /// + NumberOfMirageArchersAllowed = 7123, + + /// + /// support_mirage_archer_damage_+%_final + /// + SupportMirageArcherDamagePctFinal = 7124, + + /// + /// use_scaled_contact_offset + /// + UseScaledContactOffset = 7125, + + /// + /// local_culling_strike_vs_bleeding_enemies + /// + LocalCullingStrikeVsBleedingEnemies = 7126, + + /// + /// main_hand_culling_strike_vs_bleeding_enemies + /// + MainHandCullingStrikeVsBleedingEnemies = 7127, + + /// + /// off_hand_culling_strike_vs_bleeding_enemies + /// + OffHandCullingStrikeVsBleedingEnemies = 7128, + + /// + /// local_display_grants_level_x_blood_offering_skill + /// + LocalDisplayGrantsLevelXBloodOfferingSkill = 7129, + + /// + /// active_skill_projectile_speed_+%_variation_final + /// + ActiveSkillProjectileSpeedPctVariationFinal = 7130, + + /// + /// local_socketed_abyss_jewel_effect_+% + /// + LocalSocketedAbyssJewelEffectPct = 7131, + + /// + /// non_piercing_projectiles_critical_strike_chance_+% + /// + NonPiercingProjectilesCriticalStrikeChancePct = 7132, + + /// + /// local_evasion_rating_and_energy_shield + /// + LocalEvasionRatingAndEnergyShield = 7133, + + /// + /// number_of_additional_projectiles_if_you_have_been_hit_recently + /// + NumberOfAdditionalProjectilesIfYouHaveBeenHitRecently = 7134, + + /// + /// gain_iron_reflexes_while_stationary + /// + GainIronReflexesWhileStationary = 7135, + + /// + /// armour_+%_while_stationary + /// + ArmourPctWhileStationary = 7136, + + /// + /// number_of_additional_projectiles_if_you_have_used_movement_skill_recently + /// + NumberOfAdditionalProjectilesIfYouHaveUsedMovementSkillRecently = 7137, + + /// + /// virtual_keystone_iron_reflexes + /// + VirtualKeystoneIronReflexes = 7138, + + /// + /// attacks_intimidate_on_hit_% + /// + AttacksIntimidateOnHitPct = 7139, + + /// + /// local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed + /// + LocalAttacksIntimidateOnHitFor4SecondsWithMeleeAbyssJewelSocketed = 7140, + + /// + /// local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed + /// + LocalAttacksMaimOnHitFor4SecondsWithRangedAbyssJewelSocketed = 7141, + + /// + /// elemental_overload_rotation_active + /// + ElementalOverloadRotationActive = 7142, + + /// + /// gain_resolute_technique_while_do_not_have_elemental_overload + /// + GainResoluteTechniqueWhileDoNotHaveElementalOverload = 7143, + + /// + /// virtual_keystone_resolute_technique + /// + VirtualKeystoneResoluteTechnique = 7144, + + /// + /// local_minimum_added_physical_damage_vs_ignited_enemies + /// + LocalMinimumAddedPhysicalDamageVsIgnitedEnemies = 7145, + + /// + /// local_maximum_added_physical_damage_vs_ignited_enemies + /// + LocalMaximumAddedPhysicalDamageVsIgnitedEnemies = 7146, + + /// + /// local_minimum_added_fire_damage_vs_bleeding_enemies + /// + LocalMinimumAddedFireDamageVsBleedingEnemies = 7147, + + /// + /// local_maximum_added_fire_damage_vs_bleeding_enemies + /// + LocalMaximumAddedFireDamageVsBleedingEnemies = 7148, + + /// + /// main_hand_minimum_added_physical_damage_vs_ignited_enemies + /// + MainHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7149, + + /// + /// main_hand_maximum_added_physical_damage_vs_ignited_enemies + /// + MainHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7150, + + /// + /// main_hand_minimum_added_fire_damage_vs_bleeding_enemies + /// + MainHandMinimumAddedFireDamageVsBleedingEnemies = 7151, + + /// + /// main_hand_maximum_added_fire_damage_vs_bleeding_enemies + /// + MainHandMaximumAddedFireDamageVsBleedingEnemies = 7152, + + /// + /// off_hand_minimum_added_physical_damage_vs_ignited_enemies + /// + OffHandMinimumAddedPhysicalDamageVsIgnitedEnemies = 7153, + + /// + /// off_hand_maximum_added_physical_damage_vs_ignited_enemies + /// + OffHandMaximumAddedPhysicalDamageVsIgnitedEnemies = 7154, + + /// + /// off_hand_minimum_added_fire_damage_vs_bleeding_enemies + /// + OffHandMinimumAddedFireDamageVsBleedingEnemies = 7155, + + /// + /// off_hand_maximum_added_fire_damage_vs_bleeding_enemies + /// + OffHandMaximumAddedFireDamageVsBleedingEnemies = 7156, + + /// + /// local_chance_bleed_on_hit_%_vs_ignited_enemies + /// + LocalChanceBleedOnHitPctVsIgnitedEnemies = 7157, + + /// + /// main_hand_chance_bleed_on_hit_%_vs_ignited_enemies + /// + MainHandChanceBleedOnHitPctVsIgnitedEnemies = 7158, + + /// + /// off_hand_chance_bleed_on_hit_%_vs_ignited_enemies + /// + OffHandChanceBleedOnHitPctVsIgnitedEnemies = 7159, + + /// + /// avatar_of_fire_rotation_active + /// + AvatarOfFireRotationActive = 7160, + + /// + /// critical_strike_chance_+%_while_you_have_avatar_of_fire + /// + CriticalStrikeChancePctWhileYouHaveAvatarOfFire = 7161, + + /// + /// physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire + /// + PhysicalDamagePctToConvertToFireWhileYouHaveAvatarOfFire = 7162, + + /// + /// armour_while_you_do_not_have_avatar_of_fire + /// + ArmourWhileYouDoNotHaveAvatarOfFire = 7163, + + /// + /// non_chaos_damage_to_add_as_chaos_damage_% + /// + NonChaosDamageToAddAsChaosDamagePct = 7164, + + /// + /// projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain + /// + ProjectileNonChaosDamageToAddAsChaosDamagePctPerChain = 7165, + + /// + /// attack_speed_+%_if_enemy_killed_recently + /// + AttackSpeedPctIfEnemyKilledRecently = 7166, + + /// + /// critical_strike_chance_+%_if_enemy_killed_recently + /// + CriticalStrikeChancePctIfEnemyKilledRecently = 7167, + + /// + /// projectile_damage_+%_per_pierced_enemy + /// + ProjectileDamagePctPerPiercedEnemy = 7168, + + /// + /// recover_energy_shield_%_on_kill + /// + RecoverEnergyShieldPctOnKill = 7169, + + /// + /// map_monsters_add_power_charge_on_hit_% + /// + MapMonstersAddPowerChargeOnHitPct = 7170, + + /// + /// map_monsters_add_frenzy_charge_on_hit_% + /// + MapMonstersAddFrenzyChargeOnHitPct = 7171, + + /// + /// map_monsters_add_endurance_charge_on_hit_% + /// + MapMonstersAddEnduranceChargeOnHitPct = 7172, + + /// + /// local_life_gain_per_target_while_leeching + /// + LocalLifeGainPerTargetWhileLeeching = 7173, + + /// + /// main_hand_life_gain_per_target_while_leeching + /// + MainHandLifeGainPerTargetWhileLeeching = 7174, + + /// + /// off_hand_life_gain_per_target_while_leeching + /// + OffHandLifeGainPerTargetWhileLeeching = 7175, + + /// + /// local_display_socketed_gems_supported_by_level_x_mirage_archer + /// + LocalDisplaySocketedGemsSupportedByLevelXMirageArcher = 7176, + + /// + /// spectre_duration + /// + SpectreDuration = 7177, + + /// + /// arrows_that_pierce_also_return + /// + ArrowsThatPierceAlsoReturn = 7178, + + /// + /// predict_totem_maximum_life + /// + PredictTotemMaximumLife = 7179, + + /// + /// unique_monster_dropped_item_rarity_+% + /// + UniqueMonsterDroppedItemRarityPct = 7180, + + /// + /// cannot_block_spells + /// + CannotBlockSpells = 7181, + + /// + /// gain_endurance_charge_%_chance_when_you_lose_fortify + /// + GainEnduranceChargePctChanceWhenYouLoseFortify = 7182, + + /// + /// affected_by_determination + /// + AffectedByDetermination = 7183, + + /// + /// affected_by_grace + /// + AffectedByGrace = 7184, + + /// + /// affected_by_discipline + /// + AffectedByDiscipline = 7185, + + /// + /// affected_by_wrath + /// + AffectedByWrath = 7186, + + /// + /// affected_by_anger + /// + AffectedByAnger = 7187, + + /// + /// affected_by_hatred + /// + AffectedByHatred = 7188, + + /// + /// affected_by_vitality + /// + AffectedByVitality = 7189, + + /// + /// affected_by_clarity + /// + AffectedByClarity = 7190, + + /// + /// affected_by_haste + /// + AffectedByHaste = 7191, + + /// + /// affected_by_purity_of_fire + /// + AffectedByPurityOfFire = 7192, + + /// + /// affected_by_purity_of_ice + /// + AffectedByPurityOfIce = 7193, + + /// + /// affected_by_purity_of_lightning + /// + AffectedByPurityOfLightning = 7194, + + /// + /// affected_by_purity_of_elements + /// + AffectedByPurityOfElements = 7195, + + /// + /// additional_physical_damage_reduction_%_while_affected_by_determination + /// + AdditionalPhysicalDamageReductionPctWhileAffectedByDetermination = 7196, + + /// + /// block_%_while_affected_by_determination + /// + BlockPctWhileAffectedByDetermination = 7197, + + /// + /// extra_damage_taken_from_crit_+%_while_affected_by_determination + /// + ExtraDamageTakenFromCritPctWhileAffectedByDetermination = 7198, + + /// + /// chance_to_evade_attacks_%_while_affected_by_grace + /// + ChanceToEvadeAttacksPctWhileAffectedByGrace = 7199, + + /// + /// chance_to_dodge_attacks_%_while_affected_by_grace + /// + ChanceToDodgeAttacksPctWhileAffectedByGrace = 7200, + + /// + /// movement_speed_+%_while_affected_by_grace + /// + MovementSpeedPctWhileAffectedByGrace = 7201, + + /// + /// unaffected_by_vulnerability_while_affected_by_determination + /// + UnaffectedByVulnerabilityWhileAffectedByDetermination = 7202, + + /// + /// unaffected_by_enfeeble_while_affected_by_grace + /// + UnaffectedByEnfeebleWhileAffectedByGrace = 7203, + + /// + /// unaffected_by_temporal_chains_while_affected_by_haste + /// + UnaffectedByTemporalChainsWhileAffectedByHaste = 7204, + + /// + /// unaffected_by_burning_ground_while_affected_by_purity_of_fire + /// + UnaffectedByBurningGroundWhileAffectedByPurityOfFire = 7205, + + /// + /// unaffected_by_flammability_while_affected_by_purity_of_fire + /// + UnaffectedByFlammabilityWhileAffectedByPurityOfFire = 7206, + + /// + /// unaffected_by_chilled_ground_while_affected_by_purity_of_ice + /// + UnaffectedByChilledGroundWhileAffectedByPurityOfIce = 7207, + + /// + /// unaffected_by_frostbite_while_affected_by_purity_of_ice + /// + UnaffectedByFrostbiteWhileAffectedByPurityOfIce = 7208, + + /// + /// unaffected_by_shocked_ground_while_affected_by_purity_of_lightning + /// + UnaffectedByShockedGroundWhileAffectedByPurityOfLightning = 7209, + + /// + /// unaffected_by_conductivity_while_affected_by_purity_of_lightning + /// + UnaffectedByConductivityWhileAffectedByPurityOfLightning = 7210, + + /// + /// unaffected_by_elemental_weakness_while_affected_by_purity_of_elements + /// + UnaffectedByElementalWeaknessWhileAffectedByPurityOfElements = 7211, + + /// + /// reduce_enemy_cold_resistance_%_while_affected_by_hatred + /// + ReduceEnemyColdResistancePctWhileAffectedByHatred = 7212, + + /// + /// reduce_enemy_fire_resistance_%_while_affected_by_anger + /// + ReduceEnemyFireResistancePctWhileAffectedByAnger = 7213, + + /// + /// reduce_enemy_lightning_resistance_%_while_affected_by_wrath + /// + ReduceEnemyLightningResistancePctWhileAffectedByWrath = 7214, + + /// + /// energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline + /// + EnergyShieldRegenerationRatePerMinutePctWhileAffectedByDiscipline = 7215, + + /// + /// chance_to_block_spells_%_while_affected_by_discipline + /// + ChanceToBlockSpellsPctWhileAffectedByDiscipline = 7216, + + /// + /// energy_shield_delay_-%_while_affected_by_discipline + /// + EnergyShieldDelayPctWhileAffectedByDiscipline = 7217, + + /// + /// energy_shield_gain_per_target_hit_while_affected_by_discipline + /// + EnergyShieldGainPerTargetHitWhileAffectedByDiscipline = 7218, + + /// + /// mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath + /// + ManaLeechFromLightningDamagePermyriadWhileAffectedByWrath = 7219, + + /// + /// physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath + /// + PhysicalDamagePctToAddAsLightningDamageWhileAffectedByWrath = 7220, + + /// + /// base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath + /// + BasePhysicalDamagePctToConvertToLightningWhileAffectedByWrath = 7221, + + /// + /// virtual_non_skill_physical_damage_%_to_convert_to_fire + /// + VirtualNonSkillPhysicalDamagePctToConvertToFire = 7222, + + /// + /// virtual_non_skill_physical_damage_%_to_convert_to_cold + /// + VirtualNonSkillPhysicalDamagePctToConvertToCold = 7223, + + /// + /// virtual_non_skill_physical_damage_%_to_convert_to_lightning + /// + VirtualNonSkillPhysicalDamagePctToConvertToLightning = 7224, + + /// + /// virtual_non_skill_physical_damage_%_to_convert_to_chaos + /// + VirtualNonSkillPhysicalDamagePctToConvertToChaos = 7225, + + /// + /// virtual_non_skill_lightning_damage_%_to_convert_to_fire + /// + VirtualNonSkillLightningDamagePctToConvertToFire = 7226, + + /// + /// virtual_non_skill_lightning_damage_%_to_convert_to_cold + /// + VirtualNonSkillLightningDamagePctToConvertToCold = 7227, + + /// + /// virtual_non_skill_lightning_damage_%_to_convert_to_chaos + /// + VirtualNonSkillLightningDamagePctToConvertToChaos = 7228, + + /// + /// virtual_non_skill_cold_damage_%_to_convert_to_fire + /// + VirtualNonSkillColdDamagePctToConvertToFire = 7229, + + /// + /// virtual_non_skill_cold_damage_%_to_convert_to_chaos + /// + VirtualNonSkillColdDamagePctToConvertToChaos = 7230, + + /// + /// virtual_non_skill_fire_damage_%_to_convert_to_chaos + /// + VirtualNonSkillFireDamagePctToConvertToChaos = 7231, + + /// + /// base_physical_damage_%_to_convert_to_fire_while_affected_by_anger + /// + BasePhysicalDamagePctToConvertToFireWhileAffectedByAnger = 7232, + + /// + /// physical_damage_%_to_add_as_fire_damage_while_affected_by_anger + /// + PhysicalDamagePctToAddAsFireDamageWhileAffectedByAnger = 7233, + + /// + /// life_leech_from_fire_damage_permyriad_while_affected_by_anger + /// + LifeLeechFromFireDamagePermyriadWhileAffectedByAnger = 7234, + + /// + /// minimum_added_cold_damage_while_affected_by_hatred + /// + MinimumAddedColdDamageWhileAffectedByHatred = 7235, + + /// + /// maximum_added_cold_damage_while_affected_by_hatred + /// + MaximumAddedColdDamageWhileAffectedByHatred = 7236, + + /// + /// base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred + /// + BasePhysicalDamagePctToConvertToColdWhileAffectedByHatred = 7237, + + /// + /// additional_critical_strike_chance_permyriad_while_affected_by_hatred + /// + AdditionalCriticalStrikeChancePermyriadWhileAffectedByHatred = 7238, + + /// + /// life_leech_from_any_damage_permyriad_while_affected_by_vitality + /// + LifeLeechFromAnyDamagePermyriadWhileAffectedByVitality = 7239, + + /// + /// life_regeneration_per_minute_while_affected_by_vitality + /// + LifeRegenerationPerMinuteWhileAffectedByVitality = 7240, + + /// + /// life_recovery_rate_+%_while_affected_by_vitality + /// + LifeRecoveryRatePctWhileAffectedByVitality = 7241, + + /// + /// life_gain_per_target_hit_while_affected_by_vitality + /// + LifeGainPerTargetHitWhileAffectedByVitality = 7242, + + /// + /// virtual_skill_mana_cost_+ + /// + VirtualSkillManaCost = 7243, + + /// + /// skill_mana_cost_+_while_affected_by_clarity + /// + SkillManaCostWhileAffectedByClarity = 7244, + + /// + /// damage_removed_from_mana_before_life_%_while_affected_by_clarity + /// + DamageRemovedFromManaBeforeLifePctWhileAffectedByClarity = 7245, + + /// + /// recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity + /// + Recover10PctManaOnSkillUsePctChanceWhileAffectedByClarity = 7246, + + /// + /// maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity + /// + MaximumManaPctToAddToEnergyShieldWhileAffectedByClarity = 7247, + + /// + /// chance_to_dodge_spells_%_while_affected_by_haste + /// + ChanceToDodgeSpellsPctWhileAffectedByHaste = 7248, + + /// + /// gain_onslaught_on_kill_ms_while_affected_by_haste + /// + GainOnslaughtOnKillMsWhileAffectedByHaste = 7249, + + /// + /// gain_phasing_while_affected_by_haste + /// + GainPhasingWhileAffectedByHaste = 7250, + + /// + /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire + /// + PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfFire = 7251, + + /// + /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice + /// + PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfIce = 7252, + + /// + /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning + /// + PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfLightning = 7253, + + /// + /// physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements + /// + PhysicalDamageTakenPctAsFireWhileAffectedByPurityOfElements = 7254, + + /// + /// physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements + /// + PhysicalDamageTakenPctAsColdWhileAffectedByPurityOfElements = 7255, + + /// + /// physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements + /// + PhysicalDamageTakenPctAsLightningWhileAffectedByPurityOfElements = 7256, + + /// + /// immune_to_ignite_while_affected_by_purity_of_fire + /// + ImmuneToIgniteWhileAffectedByPurityOfFire = 7257, + + /// + /// immune_to_freeze_while_affected_by_purity_of_ice + /// + ImmuneToFreezeWhileAffectedByPurityOfIce = 7258, + + /// + /// immune_to_shock_while_affected_by_purity_of_lightning + /// + ImmuneToShockWhileAffectedByPurityOfLightning = 7259, + + /// + /// virtual_physical_damage_taken_%_as_fire + /// + VirtualPhysicalDamageTakenPctAsFire = 7260, + + /// + /// virtual_physical_damage_taken_%_as_cold + /// + VirtualPhysicalDamageTakenPctAsCold = 7261, + + /// + /// virtual_physical_damage_taken_%_as_lightning + /// + VirtualPhysicalDamageTakenPctAsLightning = 7262, + + /// + /// disable_rarity_epk + /// + DisableRarityEpk = 7263, + + /// + /// cannot_spawn_support_ghosts + /// + CannotSpawnSupportGhosts = 7264, + + /// + /// chance_to_gain_frenzy_charge_on_block_% + /// + ChanceToGainFrenzyChargeOnBlockPct = 7265, + + /// + /// spell_damage_+%_per_10_strength + /// + SpellDamagePctPer10Strength = 7266, + + /// + /// spell_damage_+%_per_16_dex + /// + SpellDamagePctPer16Dex = 7267, + + /// + /// spell_damage_+%_per_16_strength + /// + SpellDamagePctPer16Strength = 7268, + + /// + /// spell_damage_+%_per_16_int + /// + SpellDamagePctPer16Int = 7269, + + /// + /// deal_no_non_elemental_damage + /// + DealNoNonElementalDamage = 7270, + + /// + /// cast_speed_+%_if_enemy_killed_recently + /// + CastSpeedPctIfEnemyKilledRecently = 7271, + + /// + /// trigger_on_skill_use_%_if_you_have_a_spirit_charge + /// + TriggerOnSkillUsePctIfYouHaveASpiritCharge = 7272, + + /// + /// map_force_private_seed_debug + /// + MapForcePrivateSeedDebug = 7273, + + /// + /// active_skill_display_aegis_variation + /// + ActiveSkillDisplayAegisVariation = 7274, + + /// + /// volatile_dead_number_of_corpses_to_consume + /// + VolatileDeadNumberOfCorpsesToConsume = 7275, + + /// + /// unearth_additional_corpse_level + /// + UnearthAdditionalCorpseLevel = 7276, + + /// + /// unearth_corpse_level + /// + UnearthCorpseLevel = 7277, + + /// + /// corpse_erruption_maximum_number_of_geyers + /// + CorpseErruptionMaximumNumberOfGeyers = 7278, + + /// + /// base_number_of_effigies_allowed + /// + BaseNumberOfEffigiesAllowed = 7279, + + /// + /// visual_attached_elder_tentacles + /// + VisualAttachedElderTentacles = 7280, + + /// + /// map_elder_influence_additional_packs_of_elder_monsters + /// + MapElderInfluenceAdditionalPacksOfElderMonsters = 7281, + + /// + /// bone_lance_damage_+% + /// + BoneLanceDamagePct = 7282, + + /// + /// corpse_eruption_damage_+% + /// + CorpseEruptionDamagePct = 7283, + + /// + /// volatile_dead_damage_+% + /// + VolatileDeadDamagePct = 7284, + + /// + /// corpse_warp_damage_+% + /// + CorpseWarpDamagePct = 7285, + + /// + /// bone_lance_cast_speed_+% + /// + BoneLanceCastSpeedPct = 7286, + + /// + /// corpse_eruption_cast_speed_+% + /// + CorpseEruptionCastSpeedPct = 7287, + + /// + /// volatile_dead_cast_speed_+% + /// + VolatileDeadCastSpeedPct = 7288, + + /// + /// corpse_warp_cast_speed_+% + /// + CorpseWarpCastSpeedPct = 7289, + + /// + /// display_attack_block_chance + /// + DisplayAttackBlockChance = 7290, + + /// + /// display_spell_block_chance + /// + DisplaySpellBlockChance = 7291, + + /// + /// minimum_added_chaos_damage_taken + /// + MinimumAddedChaosDamageTaken = 7292, + + /// + /// maximum_added_chaos_damage_taken + /// + MaximumAddedChaosDamageTaken = 7293, + + /// + /// chance_to_be_maimed_when_hit_% + /// + ChanceToBeMaimedWhenHitPct = 7294, + + /// + /// energy_shield_gained_on_spell_hit + /// + EnergyShieldGainedOnSpellHit = 7295, + + /// + /// monster_spirit_charges_are_infinite + /// + MonsterSpiritChargesAreInfinite = 7296, + + /// + /// gain_spirit_charge_on_kill_%_chance + /// + GainSpiritChargeOnKillPctChance = 7297, + + /// + /// gain_%_life_when_spirit_charge_expires_or_consumed + /// + GainPctLifeWhenSpiritChargeExpiresOrConsumed = 7298, + + /// + /// local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge + /// + LocalDisplayTriggerLevelXSpiritBurstOnSkillUseIfHaveSpiritCharge = 7299, + + /// + /// maximum_spirit_charges_per_abyss_jewel_equipped + /// + MaximumSpiritChargesPerAbyssJewelEquipped = 7300, + + /// + /// local_display_socketed_gems_supported_by_level_x_elemental_penetration + /// + LocalDisplaySocketedGemsSupportedByLevelXElementalPenetration = 7301, + + /// + /// skill_used_by_mirage_archer + /// + SkillUsedByMirageArcher = 7302, + + /// + /// support_mirage_archer_attack_speed_+%_final + /// + SupportMirageArcherAttackSpeedPctFinal = 7303, + + /// + /// virtual_maximum_spirit_charges + /// + VirtualMaximumSpiritCharges = 7304, + + /// + /// gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy + /// + GainDebilitatingPresenceMsOnKillVsRareOrUniqueEnemy = 7305, + + /// + /// cast_speed_+%_from_grasping_tentacles + /// + CastSpeedPctFromGraspingTentacles = 7306, + + /// + /// charge_elder_art_variation + /// + ChargeElderArtVariation = 7307, + + /// + /// virtual_projectile_additional_height_offset + /// + VirtualProjectileAdditionalHeightOffset = 7308, + + /// + /// local_display_trigger_level_20_shade_form_on_skill_use_% + /// + LocalDisplayTriggerLevel20ShadeFormOnSkillUsePct = 7309, + + /// + /// mirage_archer_projectile_additional_height_offset + /// + MirageArcherProjectileAdditionalHeightOffset = 7310, + + /// + /// minimum_added_physical_damage_per_endurance_charge + /// + MinimumAddedPhysicalDamagePerEnduranceCharge = 7311, + + /// + /// maximum_added_physical_damage_per_endurance_charge + /// + MaximumAddedPhysicalDamagePerEnduranceCharge = 7312, + + /// + /// chaos_damage_resistance_%_per_endurance_charge + /// + ChaosDamageResistancePctPerEnduranceCharge = 7313, + + /// + /// elemental_damage_taken_from_hits_+%_per_endurance_charge + /// + ElementalDamageTakenFromHitsPctPerEnduranceCharge = 7314, + + /// + /// physical_damage_reduction_rating_per_endurance_charge + /// + PhysicalDamageReductionRatingPerEnduranceCharge = 7315, + + /// + /// fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently + /// + FireDamageTakenPerMinutePerEnduranceChargeIfYouHaveBeenHitRecently = 7316, + + /// + /// minimum_added_lightning_damage_to_spells_per_power_charge + /// + MinimumAddedLightningDamageToSpellsPerPowerCharge = 7317, + + /// + /// maximum_added_lightning_damage_to_spells_per_power_charge + /// + MaximumAddedLightningDamageToSpellsPerPowerCharge = 7318, + + /// + /// additional_spell_block_%_per_power_charge + /// + AdditionalSpellBlockPctPerPowerCharge = 7319, + + /// + /// lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently + /// + LightningDamageTakenPerMinutePerPowerChargeIfHaveCritRecently = 7320, + + /// + /// avoid_elemental_damage_%_per_frenzy_charge + /// + AvoidElementalDamagePctPerFrenzyCharge = 7321, + + /// + /// life_leech_from_attack_damage_permyriad_per_frenzy_charge + /// + LifeLeechFromAttackDamagePermyriadPerFrenzyCharge = 7322, + + /// + /// cold_damage_taken_per_minute_per_frenzy_charge_while_moving + /// + ColdDamageTakenPerMinutePerFrenzyChargeWhileMoving = 7323, + + /// + /// raise_spectre_mana_cost_+% + /// + RaiseSpectreManaCostPct = 7324, + + /// + /// map_packs_have_tentacle_minions + /// + MapPacksHaveTentacleMinions = 7325, + + /// + /// map_elder_influence_spawn_daemon + /// + MapElderInfluenceSpawnDaemon = 7326, + + /// + /// monster_has_oni_goroshi + /// + MonsterHasOniGoroshi = 7327, + + /// + /// skill_user_maximum_life + /// + SkillUserMaximumLife = 7328, + + /// + /// local_display_grant_level_x_petrification_statue + /// + LocalDisplayGrantLevelXPetrificationStatue = 7329, + + /// + /// chest_display_guarded_by_dario + /// + ChestDisplayGuardedByDario = 7330, + + /// + /// base_physical_damage_over_time_taken_+% + /// + BasePhysicalDamageOverTimeTakenPct = 7331, + + /// + /// ground_spores_art_variation + /// + GroundSporesArtVariation = 7332, + + /// + /// move_daemon_use_random_direction + /// + MoveDaemonUseRandomDirection = 7333, + + /// + /// disable_skill_if_weapon_not_bow + /// + DisableSkillIfWeaponNotBow = 7334, + + /// + /// trigger_on_skill_use_from_chest_% + /// + TriggerOnSkillUseFromChestPct = 7335, + + /// + /// thrown_weapon_on_return_trigger_skills_with_id + /// + ThrownWeaponOnReturnTriggerSkillsWithId = 7336, + + /// + /// thrown_weapon_on_return_trigger_id + /// + ThrownWeaponOnReturnTriggerId = 7337, + + /// + /// thrown_weapon_on_return_trigger_% + /// + ThrownWeaponOnReturnTriggerPct = 7338, + + /// + /// skill_cannot_be_interrupted + /// + SkillCannotBeInterrupted = 7339, + + /// + /// skill_cannot_be_stunned + /// + SkillCannotBeStunned = 7340, + + /// + /// skill_cannot_be_knocked_back + /// + SkillCannotBeKnockedBack = 7341, + + /// + /// immobilised_by_elder_% + /// + ImmobilisedByElderPct = 7342, + + /// + /// recover_%_maximum_life_on_mana_flask_use + /// + RecoverPctMaximumLifeOnManaFlaskUse = 7343, + + /// + /// non_instant_mana_recovery_from_flasks_also_recovers_life + /// + NonInstantManaRecoveryFromFlasksAlsoRecoversLife = 7344, + + /// + /// spell_damage_+%_per_200_mana_spent_recently + /// + SpellDamagePctPer200ManaSpentRecently = 7345, + + /// + /// mana_cost_+%_per_200_mana_spent_recently + /// + ManaCostPctPer200ManaSpentRecently = 7346, + + /// + /// virtual_track_mana_spent_recently + /// + VirtualTrackManaSpentRecently = 7347, + + /// + /// total_mana_spent_recently + /// + TotalManaSpentRecently = 7348, + + /// + /// left_ring_is_shaper_item + /// + LeftRingIsShaperItem = 7349, + + /// + /// left_ring_is_elder_item + /// + LeftRingIsElderItem = 7350, + + /// + /// right_ring_is_shaper_item + /// + RightRingIsShaperItem = 7351, + + /// + /// right_ring_is_elder_item + /// + RightRingIsElderItem = 7352, + + /// + /// cannot_be_stunned_by_attacks_if_other_ring_is_elder_item + /// + CannotBeStunnedByAttacksIfOtherRingIsElderItem = 7353, + + /// + /// cannot_be_stunned_by_attacks_if_left_ring_is_elder_item + /// + CannotBeStunnedByAttacksIfLeftRingIsElderItem = 7354, + + /// + /// cannot_be_stunned_by_attacks_if_right_ring_is_elder_item + /// + CannotBeStunnedByAttacksIfRightRingIsElderItem = 7355, + + /// + /// attack_damage_+%_if_other_ring_is_shaper_item + /// + AttackDamagePctIfOtherRingIsShaperItem = 7356, + + /// + /// attack_damage_+%_if_left_ring_is_shaper_item + /// + AttackDamagePctIfLeftRingIsShaperItem = 7357, + + /// + /// attack_damage_+%_if_right_ring_is_shaper_item + /// + AttackDamagePctIfRightRingIsShaperItem = 7358, + + /// + /// spell_damage_+%_if_other_ring_is_elder_item + /// + SpellDamagePctIfOtherRingIsElderItem = 7359, + + /// + /// spell_damage_+%_if_left_ring_is_elder_item + /// + SpellDamagePctIfLeftRingIsElderItem = 7360, + + /// + /// spell_damage_+%_if_right_ring_is_elder_item + /// + SpellDamagePctIfRightRingIsElderItem = 7361, + + /// + /// cannot_be_stunned_by_spells_if_other_ring_is_shaper_item + /// + CannotBeStunnedBySpellsIfOtherRingIsShaperItem = 7362, + + /// + /// cannot_be_stunned_by_spells_if_left_ring_is_shaper_item + /// + CannotBeStunnedBySpellsIfLeftRingIsShaperItem = 7363, + + /// + /// cannot_be_stunned_by_spells_if_right_ring_is_shaper_item + /// + CannotBeStunnedBySpellsIfRightRingIsShaperItem = 7364, + + /// + /// current_siphoning_charges + /// + CurrentSiphoningCharges = 7365, + + /// + /// virtual_maximum_siphoning_charges + /// + VirtualMaximumSiphoningCharges = 7366, + + /// + /// gain_siphoning_charge_on_skill_use_%_chance + /// + GainSiphoningChargeOnSkillUsePctChance = 7367, + + /// + /// maximum_siphoning_charges_per_elder_or_shaper_item_equipped + /// + MaximumSiphoningChargesPerElderOrShaperItemEquipped = 7368, + + /// + /// attack_and_spell_minimum_added_physical_damage_per_siphoning_charge + /// + AttackAndSpellMinimumAddedPhysicalDamagePerSiphoningCharge = 7369, + + /// + /// attack_and_spell_maximum_added_physical_damage_per_siphoning_charge + /// + AttackAndSpellMaximumAddedPhysicalDamagePerSiphoningCharge = 7370, + + /// + /// life_leech_from_any_damage_permyriad_per_siphoning_charge + /// + LifeLeechFromAnyDamagePermyriadPerSiphoningCharge = 7371, + + /// + /// non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge + /// + NonChaosDamagePctToAddAsChaosDamagePerSiphoningCharge = 7372, + + /// + /// additional_physical_damage_reduction_against_hits_%_per_siphoning_charge + /// + AdditionalPhysicalDamageReductionAgainstHitsPctPerSiphoningCharge = 7373, + + /// + /// additional_physical_damage_reduction_%_against_hits + /// + AdditionalPhysicalDamageReductionPctAgainstHits = 7374, + + /// + /// armour_differs_against_hits + /// + ArmourDiffersAgainstHits = 7375, + + /// + /// display_estimated_physical_damage_reduction_against_hits_% + /// + DisplayEstimatedPhysicalDamageReductionAgainstHitsPct = 7376, + + /// + /// physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently + /// + PhysicalDamageTakenPerMinutePerSiphoningChargeIfHaveUsedASkillRecently = 7377, + + /// + /// track_have_used_a_skill_recently + /// + TrackHaveUsedASkillRecently = 7378, + + /// + /// have_used_a_skill_recently + /// + HaveUsedASkillRecently = 7379, + + /// + /// number_of_equipped_shaper_items + /// + NumberOfEquippedShaperItems = 7380, + + /// + /// virtual_physical_damage_taken_per_minute_per_siphoning_charge + /// + VirtualPhysicalDamageTakenPerMinutePerSiphoningCharge = 7381, + + /// + /// map_force_terrain_feature + /// + MapForceTerrainFeature = 7382, + + /// + /// local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow + /// + LocalDisplayTriggerLevelXVoidShotOnArrowFireWhileYouHaveVoidArrow = 7383, + + /// + /// trigger_on_skill_use_%_if_you_have_a_void_arrow + /// + TriggerOnSkillUsePctIfYouHaveAVoidArrow = 7384, + + /// + /// current_void_arrows + /// + CurrentVoidArrows = 7385, + + /// + /// maximum_void_arrows + /// + MaximumVoidArrows = 7386, + + /// + /// local_display_grant_void_arrow_every_x_ms + /// + LocalDisplayGrantVoidArrowEveryXMs = 7387, + + /// + /// local_display_trigger_tentacle_smash_on_kill_%_chance + /// + LocalDisplayTriggerTentacleSmashOnKillPctChance = 7388, + + /// + /// local_display_trigger_temporal_anomaly_when_hit_%_chance + /// + LocalDisplayTriggerTemporalAnomalyWhenHitPctChance = 7389, + + /// + /// local_display_trigger_void_sphere_on_kill_%_chance + /// + LocalDisplayTriggerVoidSphereOnKillPctChance = 7390, + + /// + /// despair_duration_+% + /// + DespairDurationPct = 7391, + + /// + /// despair_curse_effect_+% + /// + DespairCurseEffectPct = 7392, + + /// + /// inca_rock_spawn_chance_% + /// + IncaRockSpawnChancePct = 7393, + + /// + /// inca_rock_spawn_limit + /// + IncaRockSpawnLimit = 7394, + + /// + /// volatile_dead_consume_additional_corpse + /// + VolatileDeadConsumeAdditionalCorpse = 7395, + + /// + /// virtual_chance_to_evade_attacks_% + /// + VirtualChanceToEvadeAttacksPct = 7396, + + /// + /// projectile_skill_dot_ground_caustic_area_damage_per_minute + /// + ProjectileSkillDotGroundCausticAreaDamagePerMinute = 7397, + + /// + /// cannot_be_stunned_by_spells + /// + CannotBeStunnedBySpells = 7398, + + /// + /// cannot_be_stunned_by_attacks + /// + CannotBeStunnedByAttacks = 7399, + + /// + /// reflected_physical_damage_taken_+%_while_affected_by_determination + /// + ReflectedPhysicalDamageTakenPctWhileAffectedByDetermination = 7400, + + /// + /// virtual_physical_reflect_damage_taken_+% + /// + VirtualPhysicalReflectDamageTakenPct = 7401, + + /// + /// armour_+_while_affected_by_determination + /// + ArmourWhileAffectedByDetermination = 7402, + + /// + /// virtual_blind_enemies_when_hit_%_chance + /// + VirtualBlindEnemiesWhenHitPctChance = 7403, + + /// + /// blind_enemies_when_hit_while_affected_by_grace_%_chance + /// + BlindEnemiesWhenHitWhileAffectedByGracePctChance = 7404, + + /// + /// energy_shield_recovery_rate_while_affected_by_discipline_+% + /// + EnergyShieldRecoveryRateWhileAffectedByDisciplinePct = 7405, + + /// + /// fire_damage_+%_while_affected_by_anger + /// + FireDamagePctWhileAffectedByAnger = 7406, + + /// + /// critical_strike_multiplier_+_while_affected_by_anger + /// + CriticalStrikeMultiplierWhileAffectedByAnger = 7407, + + /// + /// lightning_damage_+%_while_affected_by_wrath + /// + LightningDamagePctWhileAffectedByWrath = 7408, + + /// + /// critical_strike_chance_+%_while_affected_by_wrath + /// + CriticalStrikeChancePctWhileAffectedByWrath = 7409, + + /// + /// cold_damage_+%_while_affected_by_hatred + /// + ColdDamagePctWhileAffectedByHatred = 7410, + + /// + /// flask_life_recovery_+%_while_affected_by_vitality + /// + FlaskLifeRecoveryPctWhileAffectedByVitality = 7411, + + /// + /// mana_recovery_rate_+%_while_affected_by_clarity + /// + ManaRecoveryRatePctWhileAffectedByClarity = 7412, + + /// + /// virtual_damage_taken_goes_to_mana_over_4_seconds_% + /// + VirtualDamageTakenGoesToManaOver4SecondsPct = 7413, + + /// + /// damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity + /// + DamageTakenGoesToManaOver4SecondsPctWhileAffectedByClarity = 7414, + + /// + /// virtual_debuff_time_passed_+% + /// + VirtualDebuffTimePassedPct = 7415, + + /// + /// debuff_time_passed_-%_while_affected_by_haste + /// + DebuffTimePassedPctWhileAffectedByHaste = 7416, + + /// + /// movement_skills_cooldown_speed_+%_while_affected_by_haste + /// + MovementSkillsCooldownSpeedPctWhileAffectedByHaste = 7417, + + /// + /// virtual_fire_reflect_damage_taken_+% + /// + VirtualFireReflectDamageTakenPct = 7418, + + /// + /// virtual_lightning_reflect_damage_taken_+% + /// + VirtualLightningReflectDamageTakenPct = 7419, + + /// + /// virtual_cold_reflect_damage_taken_+% + /// + VirtualColdReflectDamageTakenPct = 7420, + + /// + /// fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire + /// + FireReflectDamageTakenPctWhileAffectedByPurityOfFire = 7421, + + /// + /// lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning + /// + LightningReflectDamageTakenPctWhileAffectedByPurityOfLightning = 7422, + + /// + /// cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice + /// + ColdReflectDamageTakenPctWhileAffectedByPurityOfIce = 7423, + + /// + /// elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements + /// + ElementalReflectDamageTakenPctWhileAffectedByPurityOfElements = 7424, + + /// + /// chaos_damage_resistance_%_while_affected_by_purity_of_elements + /// + ChaosDamageResistancePctWhileAffectedByPurityOfElements = 7425, + + /// + /// intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP + /// + IntimidatingCryEnemyPhysReductionPctPenaltyVsHitPer5MP = 7426, + + /// + /// local_display_grants_skill_intimidating_cry_level + /// + LocalDisplayGrantsSkillIntimidatingCryLevel = 7427, + + /// + /// map_spawn_bestiary_encounters + /// + MapSpawnBestiaryEncounters = 7428, + + /// + /// map_force_bestiary_encounter + /// + MapForceBestiaryEncounter = 7429, + + /// + /// local_display_grants_skill_cat_aspect_level + /// + LocalDisplayGrantsSkillCatAspectLevel = 7430, + + /// + /// local_display_grants_skill_bird_aspect_level + /// + LocalDisplayGrantsSkillBirdAspectLevel = 7431, + + /// + /// avoid_damage_% + /// + AvoidDamagePct = 7432, + + /// + /// minion_chance_to_deal_double_damage_% + /// + MinionChanceToDealDoubleDamagePct = 7433, + + /// + /// local_display_grants_skill_spider_aspect_level + /// + LocalDisplayGrantsSkillSpiderAspectLevel = 7434, + + /// + /// damage_+%_per_10_dex + /// + DamagePctPer10Dex = 7435, + + /// + /// life_regeneration_per_minute_while_ignited + /// + LifeRegenerationPerMinuteWhileIgnited = 7436, + + /// + /// chance_to_deal_double_damage_%_per_500_strength + /// + ChanceToDealDoubleDamagePctPer500Strength = 7437, + + /// + /// virtual_chance_to_deal_double_damage_% + /// + VirtualChanceToDealDoubleDamagePct = 7438, + + /// + /// track_have_killed_cursed_enemy_recently + /// + TrackHaveKilledCursedEnemyRecently = 7439, + + /// + /// have_killed_cursed_enemy_recently + /// + HaveKilledCursedEnemyRecently = 7440, + + /// + /// elemental_damage_+%_if_cursed_enemy_killed_recently + /// + ElementalDamagePctIfCursedEnemyKilledRecently = 7441, + + /// + /// local_display_grants_skill_crab_aspect_level + /// + LocalDisplayGrantsSkillCrabAspectLevel = 7442, + + /// + /// current_crab_aspect_stacks + /// + CurrentCrabAspectStacks = 7443, + + /// + /// max_crab_aspect_stacks + /// + MaxCrabAspectStacks = 7444, + + /// + /// physical_damage_reduction_%_per_crab_aspect_stack + /// + PhysicalDamageReductionPctPerCrabAspectStack = 7445, + + /// + /// raging_spirits_refresh_duration_when_they_kill_ignited_enemy + /// + RagingSpiritsRefreshDurationWhenTheyKillIgnitedEnemy = 7446, + + /// + /// add_frenzy_charge_every_50_rampage_stacks + /// + AddFrenzyChargeEvery50RampageStacks = 7447, + + /// + /// area_of_effect_+%_per_25_rampage_stacks + /// + AreaOfEffectPctPer25RampageStacks = 7448, + + /// + /// traps_do_not_explode_on_timeout + /// + TrapsDoNotExplodeOnTimeout = 7449, + + /// + /// cannot_be_ignited_while_flame_golem_summoned + /// + CannotBeIgnitedWhileFlameGolemSummoned = 7450, + + /// + /// cannot_be_shocked_while_lightning_golem_summoned + /// + CannotBeShockedWhileLightningGolemSummoned = 7451, + + /// + /// cannot_be_chilled_or_frozen_while_ice_golem_summoned + /// + CannotBeChilledOrFrozenWhileIceGolemSummoned = 7452, + + /// + /// cannot_be_chilled + /// + CannotBeChilled = 7453, + + /// + /// attach_vines_to_defender_on_hit_%_chance + /// + AttachVinesToDefenderOnHitPctChance = 7454, + + /// + /// unaffected_by_curses + /// + UnaffectedByCurses = 7455, + + /// + /// chill_minimum_slow_% + /// + ChillMinimumSlowPct = 7456, + + /// + /// shock_minimum_damage_taken_increase_% + /// + ShockMinimumDamageTakenIncreasePct = 7457, + + /// + /// has_avians_flight + /// + HasAviansFlight = 7458, + + /// + /// has_avians_might + /// + HasAviansMight = 7459, + + /// + /// life_regeneration_per_minute_while_you_have_avians_flight + /// + LifeRegenerationPerMinuteWhileYouHaveAviansFlight = 7460, + + /// + /// mana_regeneration_rate_per_minute_while_you_have_avians_flight + /// + ManaRegenerationRatePerMinuteWhileYouHaveAviansFlight = 7461, + + /// + /// avians_flight_duration_ms_+ + /// + AviansFlightDurationMs = 7462, + + /// + /// avians_might_duration_ms_+ + /// + AviansMightDurationMs = 7463, + + /// + /// minimum_added_cold_damage_while_you_have_avians_might + /// + MinimumAddedColdDamageWhileYouHaveAviansMight = 7464, + + /// + /// maximum_added_cold_damage_while_you_have_avians_might + /// + MaximumAddedColdDamageWhileYouHaveAviansMight = 7465, + + /// + /// minimum_added_lightning_damage_while_you_have_avians_might + /// + MinimumAddedLightningDamageWhileYouHaveAviansMight = 7466, + + /// + /// maximum_added_lightning_damage_while_you_have_avians_might + /// + MaximumAddedLightningDamageWhileYouHaveAviansMight = 7467, + + /// + /// aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies + /// + AspectOfTheAvianGrantsAviansMightAndAviansFlightToNearbyAllies = 7468, + + /// + /// aspect_of_the_avian_buff_effect_+% + /// + AspectOfTheAvianBuffEffectPct = 7469, + + /// + /// retaliation_godmode_ghost_duration_ms + /// + RetaliationGodmodeGhostDurationMs = 7470, + + /// + /// has_cats_stealth + /// + HasCatsStealth = 7471, + + /// + /// local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_% + /// + LocalDisplayTriggerLevel20TornadoWhenYouGainAviansFlightOrAviansMightPct = 7472, + + /// + /// cast_on_gain_avians_flight_or_avians_might_% + /// + CastOnGainAviansFlightOrAviansMightPct = 7473, + + /// + /// gain_phasing_while_you_have_cats_stealth + /// + GainPhasingWhileYouHaveCatsStealth = 7474, + + /// + /// cats_stealth_duration_ms_+ + /// + CatsStealthDurationMs = 7475, + + /// + /// cat_aspect_reserves_no_mana + /// + CatAspectReservesNoMana = 7476, + + /// + /// gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth + /// + GainMaximumFrenzyAndPowerChargesWhenYouGainCatsStealth = 7477, + + /// + /// override_off_hand_base_critical_strike_chance_to_5% + /// + OverrideOffHandBaseCriticalStrikeChanceTo5Pct = 7478, + + /// + /// cannot_be_stunned_if_you_have_10_or_more_crab_charges + /// + CannotBeStunnedIfYouHave10OrMoreCrabCharges = 7479, + + /// + /// number_of_crab_charges_lost_recently + /// + NumberOfCrabChargesLostRecently = 7480, + + /// + /// cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently + /// + CannotLoseCrabChargesIfYouHaveLostCrabChargesRecently = 7481, + + /// + /// do_not_lose_crab_charges_when_hit + /// + DoNotLoseCrabChargesWhenHit = 7482, + + /// + /// damage_+%_per_crab_charge + /// + DamagePctPerCrabCharge = 7483, + + /// + /// chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_% + /// + ChanceToGainMaxCrabStacksWhenYouWouldGainACrabStackPct = 7484, + + /// + /// additional_block_%_while_you_have_at_least_5_crab_charges + /// + AdditionalBlockPctWhileYouHaveAtLeast5CrabCharges = 7485, + + /// + /// additional_block_%_while_you_have_at_least_10_crab_charges + /// + AdditionalBlockPctWhileYouHaveAtLeast10CrabCharges = 7486, + + /// + /// number_of_crab_charges_lost_when_hit + /// + NumberOfCrabChargesLostWhenHit = 7487, + + /// + /// life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently + /// + LifeAndManaLeechFromAttackDamagePermyriadIfKilledRecently = 7488, + + /// + /// monster_mortar_number_of_forks + /// + MonsterMortarNumberOfForks = 7489, + + /// + /// local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth + /// + LocalDisplayTriggerLevelXIntimidatingCryWhenYouLoseCatsStealth = 7490, + + /// + /// cast_on_lose_cats_stealth + /// + CastOnLoseCatsStealth = 7491, + + /// + /// movement_speed_+%_while_you_have_cats_stealth + /// + MovementSpeedPctWhileYouHaveCatsStealth = 7492, + + /// + /// minimum_added_fire_damage_to_attacks_per_10_strength + /// + MinimumAddedFireDamageToAttacksPer10Strength = 7493, + + /// + /// maximum_added_fire_damage_to_attacks_per_10_strength + /// + MaximumAddedFireDamageToAttacksPer10Strength = 7494, + + /// + /// minimum_added_cold_damage_to_attacks_per_10_dexterity + /// + MinimumAddedColdDamageToAttacksPer10Dexterity = 7495, + + /// + /// maximum_added_cold_damage_to_attacks_per_10_dexterity + /// + MaximumAddedColdDamageToAttacksPer10Dexterity = 7496, + + /// + /// minimum_added_lightning_damage_to_attacks_per_10_intelligence + /// + MinimumAddedLightningDamageToAttacksPer10Intelligence = 7497, + + /// + /// maximum_added_lightning_damage_to_attacks_per_10_intelligence + /// + MaximumAddedLightningDamageToAttacksPer10Intelligence = 7498, + + /// + /// gain_rage_on_kill + /// + GainRageOnKill = 7499, + + /// + /// maximum_rage + /// + MaximumRage = 7500, + + /// + /// current_rage + /// + CurrentRage = 7501, + + /// + /// attack_damage_+%_from_rage + /// + AttackDamagePctFromRage = 7502, + + /// + /// attack_speed_+%_from_rage + /// + AttackSpeedPctFromRage = 7503, + + /// + /// movement_speed_+%_from_rage + /// + MovementSpeedPctFromRage = 7504, + + /// + /// life_loss_%_per_minute_from_rage + /// + LifeLossPctPerMinuteFromRage = 7505, + + /// + /// gain_rage_when_you_use_a_warcry + /// + GainRageWhenYouUseAWarcry = 7506, + + /// + /// rage_effects_doubled + /// + RageEffectsDoubled = 7507, + + /// + /// virtual_life_degeneration_per_minute + /// + VirtualLifeDegenerationPerMinute = 7508, + + /// + /// gain_rage_on_hitting_rare_unique_enemy_% + /// + GainRageOnHittingRareUniqueEnemyPct = 7509, + + /// + /// spectral_shield_throw_secondary_projectiles_pierce + /// + SpectralShieldThrowSecondaryProjectilesPierce = 7510, + + /// + /// herald_skills_mana_reservation_+% + /// + HeraldSkillsManaReservationPct = 7511, + + /// + /// herald_effect_on_self_+% + /// + HeraldEffectOnSelfPct = 7512, + + /// + /// affected_by_herald_of_ash + /// + AffectedByHeraldOfAsh = 7513, + + /// + /// affected_by_herald_of_ice + /// + AffectedByHeraldOfIce = 7514, + + /// + /// affected_by_herald_of_thunder + /// + AffectedByHeraldOfThunder = 7515, + + /// + /// damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash + /// + DamagePenetratesPctFireResistanceWhileAffectedByHeraldOfAsh = 7516, + + /// + /// damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice + /// + DamagePenetratesPctColdResistanceWhileAffectedByHeraldOfIce = 7517, + + /// + /// damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder + /// + DamagePenetratesPctLightningResistanceWhileAffectedByHeraldOfThunder = 7518, + + /// + /// cannot_be_stunned_with_25_rage + /// + CannotBeStunnedWith25Rage = 7519, + + /// + /// monster_rarity_damage_+%_final + /// + MonsterRarityDamagePctFinal = 7520, + + /// + /// counterattacks_deal_double_damage + /// + CounterattacksDealDoubleDamage = 7521, + + /// + /// owner_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds + /// + OwnerStackingEnergyShieldRegenerationRatePerMinutePctOnKillFor4Seconds = 7522, + + /// + /// chance_to_gain_random_standard_charge_on_hit_% + /// + ChanceToGainRandomStandardChargeOnHitPct = 7523, + + /// + /// blink_and_mirror_arrow_cooldown_speed_+% + /// + BlinkAndMirrorArrowCooldownSpeedPct = 7524, + + /// + /// elementalist_elemental_damage_+%_for_5_seconds + /// + ElementalistElementalDamagePctFor5Seconds = 7525, + + /// + /// elementalist_area_of_effect_+%_for_5_seconds + /// + ElementalistAreaOfEffectPctFor5Seconds = 7526, + + /// + /// immune_to_elemental_ailments_while_on_consecrated_ground + /// + ImmuneToElementalAilmentsWhileOnConsecratedGround = 7527, + + /// + /// create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy + /// + CreateConsecratedGroundOnHitPctVsRareOrUniqueEnemy = 7528, + + /// + /// cannot_be_stunned_while_fortified + /// + CannotBeStunnedWhileFortified = 7529, + + /// + /// armour_and_evasion_rating_+_while_fortified + /// + ArmourAndEvasionRatingWhileFortified = 7530, + + /// + /// global_chance_to_blind_on_hit_%_vs_bleeding_enemies + /// + GlobalChanceToBlindOnHitPctVsBleedingEnemies = 7531, + + /// + /// cannot_be_stunned_by_blocked_hits + /// + CannotBeStunnedByBlockedHits = 7532, + + /// + /// gratuitous_violence_bleeding_damage_+%_final + /// + GratuitousViolenceBleedingDamagePctFinal = 7533, + + /// + /// chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy + /// + ChanceToGainOnslaughtOnHitPctVsRareOrUniqueEnemy = 7534, + + /// + /// unaffected_by_temporal_chains + /// + UnaffectedByTemporalChains = 7535, + + /// + /// apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy + /// + ApplyCoveredInAshToAttackerOnHitPctVsRareOrUniqueEnemy = 7536, + + /// + /// gain_endurance_charge_per_second_if_have_been_hit_recently + /// + GainEnduranceChargePerSecondIfHaveBeenHitRecently = 7537, + + /// + /// stun_duration_+%_per_endurance_charge + /// + StunDurationPctPerEnduranceCharge = 7538, + + /// + /// chance_to_gain_endurance_charge_on_stun_% + /// + ChanceToGainEnduranceChargeOnStunPct = 7539, + + /// + /// totem_maximum_energy_shield + /// + TotemMaximumEnergyShield = 7540, + + /// + /// you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem + /// + YouAndTotemLifeRegenerationRatePerMinutePctPerActiveTotem = 7541, + + /// + /// mana_regeneration_rate_per_minute_%_per_active_totem + /// + ManaRegenerationRatePerMinutePctPerActiveTotem = 7542, + + /// + /// fire_damage_+%_per_endurance_charge + /// + FireDamagePctPerEnduranceCharge = 7543, + + /// + /// track_have_taken_fire_damage_from_an_enemy_hit_recently + /// + TrackHaveTakenFireDamageFromAnEnemyHitRecently = 7544, + + /// + /// have_taken_fire_damage_from_an_enemy_hit_recently + /// + HaveTakenFireDamageFromAnEnemyHitRecently = 7545, + + /// + /// life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently + /// + LifeRegenerationRatePerMinutePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 7546, + + /// + /// local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds + /// + LocalDisplayEvery10SecondsPhysicalDamagePctToAddAsFireFor3Seconds = 7547, + + /// + /// critical_strike_damage_cannot_be_reflected + /// + CriticalStrikeDamageCannotBeReflected = 7548, + + /// + /// damage_+%_if_only_one_enemy_nearby + /// + DamagePctIfOnlyOneEnemyNearby = 7549, + + /// + /// self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy + /// + SelfTakeNoExtraDamageFromCriticalStrikesIfOnlyOneNearbyEnemy = 7550, + + /// + /// poison_duration_+%_per_poison_applied_recently + /// + PoisonDurationPctPerPoisonAppliedRecently = 7551, + + /// + /// additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2% + /// + AdditionalCriticalStrikeChancePermyriadPerPoisonOnEnemyUpTo2Pct = 7552, + + /// + /// physical_damage_%_to_add_as_chaos_vs_poisoned_enemies + /// + PhysicalDamagePctToAddAsChaosVsPoisonedEnemies = 7553, + + /// + /// recover_permyriad_maximum_life_per_poison_on_enemy_on_kill + /// + RecoverPermyriadMaximumLifePerPoisonOnEnemyOnKill = 7554, + + /// + /// zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_% + /// + ZombieCausticCloudOnDeathMaximumLifePerMinuteToDealAsChaosDamagePct = 7555, + + /// + /// self_offering_effect_+% + /// + SelfOfferingEffectPct = 7556, + + /// + /// %_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage + /// + PctChanceToGain25PctNonChaosDamageToAddAsChaosDamage = 7557, + + /// + /// %_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage + /// + PctChanceToGain50PctNonChaosDamageToAddAsChaosDamage = 7558, + + /// + /// %_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage + /// + PctChanceToGain100PctNonChaosDamageToAddAsChaosDamage = 7559, + + /// + /// damage_+%_per_active_golem + /// + DamagePctPerActiveGolem = 7560, + + /// + /// virtual_total_number_of_active_golems + /// + VirtualTotalNumberOfActiveGolems = 7561, + + /// + /// unaffected_by_ignite + /// + UnaffectedByIgnite = 7562, + + /// + /// gain_accuracy_rating_equal_to_strength + /// + GainAccuracyRatingEqualToStrength = 7563, + + /// + /// accuracy_rating_+%_if_have_crit_in_past_8_seconds + /// + AccuracyRatingPctIfHaveCritInPast8Seconds = 7564, + + /// + /// damage_+%_if_have_crit_in_past_8_seconds + /// + DamagePctIfHaveCritInPast8Seconds = 7565, + + /// + /// track_have_crit_in_past_8_seconds + /// + TrackHaveCritInPast8Seconds = 7566, + + /// + /// have_crit_in_past_8_seconds + /// + HaveCritInPast8Seconds = 7567, + + /// + /// virtual_accuracy_rating_+% + /// + VirtualAccuracyRatingPct = 7568, + + /// + /// hierophant_mana_reservation_+%_final + /// + HierophantManaReservationPctFinal = 7569, + + /// + /// elemental_penetration_%_if_you_have_a_power_charge + /// + ElementalPenetrationPctIfYouHaveAPowerCharge = 7570, + + /// + /// elemental_damage_taken_+%_if_you_have_an_endurance_charge + /// + ElementalDamageTakenPctIfYouHaveAnEnduranceCharge = 7571, + + /// + /// track_number_of_traps_triggered_recently + /// + TrackNumberOfTrapsTriggeredRecently = 7572, + + /// + /// number_of_traps_triggered_recently + /// + NumberOfTrapsTriggeredRecently = 7573, + + /// + /// track_number_of_mines_detonated_recently + /// + TrackNumberOfMinesDetonatedRecently = 7574, + + /// + /// number_of_mines_detonated_recently + /// + NumberOfMinesDetonatedRecently = 7575, + + /// + /// life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20% + /// + LifeRegenerationRatePerMinutePctPerTrapTriggeredRecentlyUpTo20Pct = 7576, + + /// + /// life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20% + /// + LifeRegenerationRatePerMinutePctPerMineDetonatedRecentlyUpTo20Pct = 7577, + + /// + /// you_and_allies_additional_block_%_if_have_attacked_recently + /// + YouAndAlliesAdditionalBlockPctIfHaveAttackedRecently = 7578, + + /// + /// you_and_allies_additional_spell_block_%_if_cast_spell_recently + /// + YouAndAlliesAdditionalSpellBlockPctIfCastSpellRecently = 7579, + + /// + /// movement_speed_+%_while_you_have_energy_shield + /// + MovementSpeedPctWhileYouHaveEnergyShield = 7580, + + /// + /// chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield + /// + ChanceToDodgeAttacksAndSpellsPctWhileYouHaveEnergyShield = 7581, + + /// + /// trickster_damage_over_time_+%_final + /// + TricksterDamageOverTimePctFinal = 7582, + + /// + /// object_cannot_taunt_enemies + /// + ObjectCannotTauntEnemies = 7583, + + /// + /// cold_beam_retaliation_chilled_ground_in_beam_duration_ms + /// + ColdBeamRetaliationChilledGroundInBeamDurationMs = 7584, + + /// + /// cold_beam_retaliation_chilled_ground_in_area_duration_ms + /// + ColdBeamRetaliationChilledGroundInAreaDurationMs = 7585, + + /// + /// enemy_extra_damage_rolls_when_on_full_life + /// + EnemyExtraDamageRollsWhenOnFullLife = 7586, + + /// + /// burning_damage_+%_per_non_shocked_enemy_shocked_recently + /// + BurningDamagePctPerNonShockedEnemyShockedRecently = 7587, + + /// + /// global_minimum_added_lightning_damage_vs_ignited_enemies + /// + GlobalMinimumAddedLightningDamageVsIgnitedEnemies = 7588, + + /// + /// global_maximum_added_lightning_damage_vs_ignited_enemies + /// + GlobalMaximumAddedLightningDamageVsIgnitedEnemies = 7589, + + /// + /// lightning_damage_can_ignite + /// + LightningDamageCanIgnite = 7590, + + /// + /// minimum_added_spell_fire_damage_while_no_life_is_reserved + /// + MinimumAddedSpellFireDamageWhileNoLifeIsReserved = 7591, + + /// + /// maximum_added_spell_fire_damage_while_no_life_is_reserved + /// + MaximumAddedSpellFireDamageWhileNoLifeIsReserved = 7592, + + /// + /// minimum_added_spell_cold_damage_while_no_life_is_reserved + /// + MinimumAddedSpellColdDamageWhileNoLifeIsReserved = 7593, + + /// + /// maximum_added_spell_cold_damage_while_no_life_is_reserved + /// + MaximumAddedSpellColdDamageWhileNoLifeIsReserved = 7594, + + /// + /// minimum_added_spell_lightning_damage_while_no_life_is_reserved + /// + MinimumAddedSpellLightningDamageWhileNoLifeIsReserved = 7595, + + /// + /// maximum_added_spell_lightning_damage_while_no_life_is_reserved + /// + MaximumAddedSpellLightningDamageWhileNoLifeIsReserved = 7596, + + /// + /// projectile_attack_damage_+%_with_at_least_200_dex + /// + ProjectileAttackDamagePctWithAtLeast200Dex = 7597, + + /// + /// critical_strike_chance_+%_with_at_least_200_int + /// + CriticalStrikeChancePctWithAtLeast200Int = 7598, + + /// + /// virtual_keystone_crimson_dance + /// + VirtualKeystoneCrimsonDance = 7599, + + /// + /// keystone_crimson_dance + /// + KeystoneCrimsonDance = 7600, + + /// + /// gain_crimson_dance_if_have_dealt_critical_strike_recently + /// + GainCrimsonDanceIfHaveDealtCriticalStrikeRecently = 7601, + + /// + /// gain_crimson_dance_while_you_have_cat_stealth + /// + GainCrimsonDanceWhileYouHaveCatStealth = 7602, + + /// + /// virtual_bleeding_stacks_up_to_x_times + /// + VirtualBleedingStacksUpToXTimes = 7603, + + /// + /// gain_onslaught_while_on_low_life + /// + GainOnslaughtWhileOnLowLife = 7604, + + /// + /// hits_ignore_enemy_fire_resistance_while_you_are_ignited + /// + HitsIgnoreEnemyFireResistanceWhileYouAreIgnited = 7605, + + /// + /// virtual_hits_ignore_enemy_fire_resistance + /// + VirtualHitsIgnoreEnemyFireResistance = 7606, + + /// + /// override_maximum_damage_resistance_% + /// + OverrideMaximumDamageResistancePct = 7607, + + /// + /// local_display_trigger_commandment_of_inferno_on_crit_% + /// + LocalDisplayTriggerCommandmentOfInfernoOnCritPct = 7608, + + /// + /// local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy + /// + LocalDisplayTriggerLevelXIcicleNovaOnKillVsFrozenEnemy = 7609, + + /// + /// trigger_on_kill_vs_frozen_enemy_% + /// + TriggerOnKillVsFrozenEnemyPct = 7610, + + /// + /// attacks_bleed_on_hit_while_you_have_cat_stealth + /// + AttacksBleedOnHitWhileYouHaveCatStealth = 7611, + + /// + /// hit_and_ailment_damage_+%_vs_bleeding_enemies + /// + HitAndAilmentDamagePctVsBleedingEnemies = 7612, + + /// + /// base_ailment_damage_+% + /// + BaseAilmentDamagePct = 7613, + + /// + /// accuracy_rating_vs_bleeding_enemies + /// + AccuracyRatingVsBleedingEnemies = 7614, + + /// + /// gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec + /// + GainPctTotalPhysDamagePreventedInThePast10SecAsLifeRegenPerSec = 7615, + + /// + /// total_armour_of_animated_guardians_items + /// + TotalArmourOfAnimatedGuardiansItems = 7616, + + /// + /// total_evasion_rating_of_animated_guardians_items + /// + TotalEvasionRatingOfAnimatedGuardiansItems = 7617, + + /// + /// total_maximum_energy_shield_of_animated_guardians_items + /// + TotalMaximumEnergyShieldOfAnimatedGuardiansItems = 7618, + + /// + /// animated_weapon_armour + /// + AnimatedWeaponArmour = 7619, + + /// + /// animated_weapon_evasion_rating + /// + AnimatedWeaponEvasionRating = 7620, + + /// + /// aniamted_weapon_maximum_energy_shield + /// + AniamtedWeaponMaximumEnergyShield = 7621, + + /// + /// defences_from_animated_guardians_items_apply_to_animated_weapon + /// + DefencesFromAnimatedGuardiansItemsApplyToAnimatedWeapon = 7622, + + /// + /// fire_projectile_retaliation_skill_visual_scale_+%_when_hit_while_charging + /// + FireProjectileRetaliationSkillVisualScalePctWhenHitWhileCharging = 7623, + + /// + /// fire_projectile_retaliation_area_of_effect_+%_when_hit_while_charging + /// + FireProjectileRetaliationAreaOfEffectPctWhenHitWhileCharging = 7624, + + /// + /// fire_projectile_retaliation_projectile_speed_and_damage_+%_when_hit_while_charging + /// + FireProjectileRetaliationProjectileSpeedAndDamagePctWhenHitWhileCharging = 7625, + + /// + /// gained_rage_recently + /// + GainedRageRecently = 7626, + + /// + /// local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance + /// + LocalDisplayTriggerLevel20AnimateGuardianWeaponOnGuardianKillPctChance = 7627, + + /// + /// chance_to_trigger_on_animate_guardian_kill_% + /// + ChanceToTriggerOnAnimateGuardianKillPct = 7628, + + /// + /// animate_guardian_and_weapon_track_on_kill + /// + AnimateGuardianAndWeaponTrackOnKill = 7629, + + /// + /// local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance + /// + LocalDisplayTriggerLevel20AnimateGuardianWeaponOnWeaponKillPctChance = 7630, + + /// + /// chance_to_trigger_on_animate_weapon_kill_% + /// + ChanceToTriggerOnAnimateWeaponKillPct = 7631, + + /// + /// you_cannot_have_non_animated_minions + /// + YouCannotHaveNonAnimatedMinions = 7632, + + /// + /// animate_guardian_damage_+%_per_animated_weapon + /// + AnimateGuardianDamagePctPerAnimatedWeapon = 7633, + + /// + /// animated_minions_melee_splash + /// + AnimatedMinionsMeleeSplash = 7634, + + /// + /// grant_animated_minion_melee_splash_damage_+%_final_for_splash + /// + GrantAnimatedMinionMeleeSplashDamagePctFinalForSplash = 7635, + + /// + /// animated_minion_melee_splash_damage_+%_final_for_splash + /// + AnimatedMinionMeleeSplashDamagePctFinalForSplash = 7636, + + /// + /// animated_minion_melee_splash_damage_+%_final + /// + AnimatedMinionMeleeSplashDamagePctFinal = 7637, + + /// + /// number_of_active_animated_armour + /// + NumberOfActiveAnimatedArmour = 7638, + + /// + /// geometry_attack_use_orientation_direction + /// + GeometryAttackUseOrientationDirection = 7639, + + /// + /// virtual_elemental_reflect_damage_taken_+% + /// + VirtualElementalReflectDamageTakenPct = 7640, + + /// + /// additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect + /// + AdditionalCriticalStrikeChancePermyriadWhileAffectedByCatAspect = 7641, + + /// + /// virtual_%_chance_to_blind_on_critical_strike + /// + VirtualPctChanceToBlindOnCriticalStrike = 7642, + + /// + /// %_chance_to_blind_on_critical_strike_while_you_have_cats_stealth + /// + PctChanceToBlindOnCriticalStrikeWhileYouHaveCatsStealth = 7643, + + /// + /// has_cat_aspect + /// + HasCatAspect = 7644, + + /// + /// hit_and_ailment_damage_+%_vs_blinded_enemies + /// + HitAndAilmentDamagePctVsBlindedEnemies = 7645, + + /// + /// has_adrenaline + /// + HasAdrenaline = 7646, + + /// + /// gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline + /// + GainAdrenalineForXSecondsOnLowLifeUnlessYouHaveAdrenaline = 7647, + + /// + /// remove_ailments_and_burning_on_gaining_adrenaline + /// + RemoveAilmentsAndBurningOnGainingAdrenaline = 7648, + + /// + /// attack_ailment_damage_+%_while_wielding_staff + /// + AttackAilmentDamagePctWhileWieldingStaff = 7649, + + /// + /// attack_ailment_damage_+%_while_wielding_wand + /// + AttackAilmentDamagePctWhileWieldingWand = 7650, + + /// + /// enemies_taunted_by_you_cannot_evade_attacks + /// + EnemiesTauntedByYouCannotEvadeAttacks = 7651, + + /// + /// spider_aspect_web_interval_ms + /// + SpiderAspectWebIntervalMs = 7652, + + /// + /// spider_aspect_max_web_count + /// + SpiderAspectMaxWebCount = 7653, + + /// + /// spider_aspect_debuff_duration_+% + /// + SpiderAspectDebuffDurationPct = 7654, + + /// + /// energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web + /// + EnergyShieldGainWhenYouHitEnemyAffectedBySpidersWeb = 7655, + + /// + /// chill_effect_is_reversed + /// + ChillEffectIsReversed = 7656, + + /// + /// virtual_on_low_life + /// + VirtualOnLowLife = 7657, + + /// + /// you_count_as_low_life_while_not_on_full_life + /// + YouCountAsLowLifeWhileNotOnFullLife = 7658, + + /// + /// mana_cost_+%_for_trap_and_mine_skills + /// + ManaCostPctForTrapAndMineSkills = 7659, + + /// + /// gain_arcane_surge_on_spell_hit_by_you_or_your_totems + /// + GainArcaneSurgeOnSpellHitByYouOrYourTotems = 7660, + + /// + /// spell_damage_+%_while_you_have_arcane_surge + /// + SpellDamagePctWhileYouHaveArcaneSurge = 7661, + + /// + /// area_of_effect_+%_while_you_have_arcane_surge + /// + AreaOfEffectPctWhileYouHaveArcaneSurge = 7662, + + /// + /// immune_to_elemental_ailments_while_you_have_arcane_surge + /// + ImmuneToElementalAilmentsWhileYouHaveArcaneSurge = 7663, + + /// + /// chance_to_gain_onslaught_on_kill_for_10_seconds_% + /// + ChanceToGainOnslaughtOnKillFor10SecondsPct = 7664, + + /// + /// curse_on_hit_level_poachers_mark_bypass_hexproof + /// + CurseOnHitLevelPoachersMarkBypassHexproof = 7665, + + /// + /// you_have_no_armour_or_energy_shield + /// + YouHaveNoArmourOrEnergyShield = 7666, + + /// + /// chance_to_trigger_socketed_spell_on_bow_attack_% + /// + ChanceToTriggerSocketedSpellOnBowAttackPct = 7667, + + /// + /// culling_strike_on_enemies_affected_by_poachers_mark + /// + CullingStrikeOnEnemiesAffectedByPoachersMark = 7668, + + /// + /// self_physical_damage_on_movement_skill_use + /// + SelfPhysicalDamageOnMovementSkillUse = 7669, + + /// + /// grant_tailwind_to_nearby_allies_if_used_skill_recently + /// + GrantTailwindToNearbyAlliesIfUsedSkillRecently = 7670, + + /// + /// evasion_rating_+_while_you_have_tailwind + /// + EvasionRatingWhileYouHaveTailwind = 7671, + + /// + /// tailwind_effect_on_self_+% + /// + TailwindEffectOnSelfPct = 7672, + + /// + /// enemies_you_curse_have_malediction + /// + EnemiesYouCurseHaveMalediction = 7673, + + /// + /// has_arcane_surge + /// + HasArcaneSurge = 7674, + + /// + /// virtual_light_radius_+% + /// + VirtualLightRadiusPct = 7675, + + /// + /// light_radius_increases_apply_to_area_of_effect + /// + LightRadiusIncreasesApplyToAreaOfEffect = 7676, + + /// + /// local_display_trigger_level_X_blinding_aura_skill_on_equip + /// + LocalDisplayTriggerLevelXBlindingAuraSkillOnEquip = 7677, + + /// + /// minimum_added_chaos_damage_per_spiders_web_on_enemy + /// + MinimumAddedChaosDamagePerSpidersWebOnEnemy = 7678, + + /// + /// maximum_added_chaos_damage_per_spiders_web_on_enemy + /// + MaximumAddedChaosDamagePerSpidersWebOnEnemy = 7679, + + /// + /// hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs + /// + HitAndAilmentDamagePctVsEnemiesAffectedByAtLeast3SpidersWebs = 7680, + + /// + /// damage_+%_for_enemies_you_inflict_spiders_web_upon + /// + DamagePctForEnemiesYouInflictSpidersWebUpon = 7681, + + /// + /// spider_aspect_skill_area_of_effect_+% + /// + SpiderAspectSkillAreaOfEffectPct = 7682, + + /// + /// resist_all_%_for_enemies_you_inflict_spiders_web_upon + /// + ResistAllPctForEnemiesYouInflictSpidersWebUpon = 7683, + + /// + /// resist_all_% + /// + ResistAllPct = 7684, + + /// + /// chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_% + /// + ChanceToGainPowerChargeOnHittingEnemyAffectedBySpidersWebPct = 7685, + + /// + /// chance_to_poison_on_hit_%_per_power_charge + /// + ChanceToPoisonOnHitPctPerPowerCharge = 7686, + + /// + /// poison_damage_+%_per_power_charge + /// + PoisonDamagePctPerPowerCharge = 7687, + + /// + /// spider_aspect_web_interval_ms_override + /// + SpiderAspectWebIntervalMsOverride = 7688, + + /// + /// bestiary_net_variation + /// + BestiaryNetVariation = 7689, + + /// + /// virtual_golem_buff_effect_+% + /// + VirtualGolemBuffEffectPct = 7690, + + /// + /// golem_buff_effect_+%_per_summoned_golem + /// + GolemBuffEffectPctPerSummonedGolem = 7691, + + /// + /// has_tailwind + /// + HasTailwind = 7692, + + /// + /// summoned_skeletons_hits_cant_be_evaded + /// + SummonedSkeletonsHitsCantBeEvaded = 7693, + + /// + /// zombie_slam_area_of_effect_+% + /// + ZombieSlamAreaOfEffectPct = 7694, + + /// + /// monster_slam_area_of_effect_+% + /// + MonsterSlamAreaOfEffectPct = 7695, + + /// + /// additional_block_%_per_hit_you_have_blocked_in_past_10_seconds + /// + AdditionalBlockPctPerHitYouHaveBlockedInPast10Seconds = 7696, + + /// + /// herald_of_ash_spell_fire_damage_+%_final + /// + HeraldOfAshSpellFireDamagePctFinal = 7697, + + /// + /// skill_uses_main_hand + /// + SkillUsesMainHand = 7698, + + /// + /// skill_uses_off_hand + /// + SkillUsesOffHand = 7699, + + /// + /// hundred_times_average_damage_per_spell_hit + /// + HundredTimesAverageDamagePerSpellHit = 7700, + + /// + /// hundred_times_average_damage_per_secondary_hit + /// + HundredTimesAverageDamagePerSecondaryHit = 7701, + + /// + /// hundred_times_average_damage_per_main_hand_hit + /// + HundredTimesAverageDamagePerMainHandHit = 7702, + + /// + /// hundred_times_average_damage_per_off_hand_hit + /// + HundredTimesAverageDamagePerOffHandHit = 7703, + + /// + /// life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge + /// + LifeLeechFromSpellDamagePermyriadWhileYouHaveArcaneSurge = 7704, + + /// + /// additional_spell_block_% + /// + AdditionalSpellBlockPct = 7705, + + /// + /// cannot_pierce + /// + CannotPierce = 7706, + + /// + /// deadeye_projectile_damage_+%_final_for_each_remaining_chain + /// + DeadeyeProjectileDamagePctFinalForEachRemainingChain = 7707, + + /// + /// raging_spirits_always_ignite + /// + RagingSpiritsAlwaysIgnite = 7708, + + /// + /// reduce_enemy_fire_resistance_%_vs_blinded_enemies + /// + ReduceEnemyFireResistancePctVsBlindedEnemies = 7709, + + /// + /// hits_cannot_be_evaded_vs_blinded_enemies + /// + HitsCannotBeEvadedVsBlindedEnemies = 7710, + + /// + /// base_body_armour_evasion_rating + /// + BaseBodyArmourEvasionRating = 7711, + + /// + /// base_helmet_maximum_energy_shield + /// + BaseHelmetMaximumEnergyShield = 7712, + + /// + /// evasion_rating_+_per_1_helmet_energy_shield + /// + EvasionRatingPer1HelmetEnergyShield = 7713, + + /// + /// maximum_energy_shield_+_per_6_body_armour_evasion_rating + /// + MaximumEnergyShieldPer6BodyArmourEvasionRating = 7714, + + /// + /// damage_taken_+%_if_have_not_been_hit_recently + /// + DamageTakenPctIfHaveNotBeenHitRecently = 7715, + + /// + /// cannot_be_stunned_if_have_not_been_hit_recently + /// + CannotBeStunnedIfHaveNotBeenHitRecently = 7716, + + /// + /// map_num_grandmasters + /// + MapNumGrandmasters = 7717, + + /// + /// map_grandmaster_seed + /// + MapGrandmasterSeed = 7718, + + /// + /// minimum_added_fire_damage_to_hits_vs_blinded_enemies + /// + MinimumAddedFireDamageToHitsVsBlindedEnemies = 7719, + + /// + /// maximum_added_fire_damage_to_hits_vs_blinded_enemies + /// + MaximumAddedFireDamageToHitsVsBlindedEnemies = 7720, + + /// + /// main_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies + /// + MainHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7721, + + /// + /// main_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies + /// + MainHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7722, + + /// + /// off_hand_minimum_added_fire_damage_to_hits_vs_blinded_enemies + /// + OffHandMinimumAddedFireDamageToHitsVsBlindedEnemies = 7723, + + /// + /// off_hand_maximum_added_fire_damage_to_hits_vs_blinded_enemies + /// + OffHandMaximumAddedFireDamageToHitsVsBlindedEnemies = 7724, + + /// + /// light_radius_increases_apply_to_accuracy + /// + LightRadiusIncreasesApplyToAccuracy = 7725, + + /// + /// endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge + /// + EnduranceChargeOnMeleeStunDamagePctFinalPerEnduranceCharge = 7726, + + /// + /// tectonic_slam_chance_to_use_endurance_charge_% + /// + TectonicSlamChanceToUseEnduranceChargePct = 7727, + + /// + /// tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value + /// + TectonicSlam1PctChanceToDoChargedSlamPer2StatValue = 7728, + + /// + /// tectonic_slam_%_chance_to_do_charged_slam + /// + TectonicSlamPctChanceToDoChargedSlam = 7729, + + /// + /// virtual_tectonic_slam_%_chance_to_do_charged_slam + /// + VirtualTectonicSlamPctChanceToDoChargedSlam = 7730, + + /// + /// %_number_of_raging_spirits_allowed + /// + PctNumberOfRagingSpiritsAllowed = 7731, + + /// + /// manifest_dancing_dervish_number_of_additional_copies + /// + ManifestDancingDervishNumberOfAdditionalCopies = 7732, + + /// + /// map_is_zana_map + /// + MapIsZanaMap = 7733, + + /// + /// map_num_zana_mods + /// + MapNumZanaMods = 7734, + + /// + /// local_display_trigger_level_x_curse_nova_on_hit_while_cursed + /// + LocalDisplayTriggerLevelXCurseNovaOnHitWhileCursed = 7735, + + /// + /// cast_on_hit_if_cursed_% + /// + CastOnHitIfCursedPct = 7736, + + /// + /// base_life_recovery_per_minute_from_flask + /// + BaseLifeRecoveryPerMinuteFromFlask = 7737, + + /// + /// base_mana_recovery_per_minute_from_flask + /// + BaseManaRecoveryPerMinuteFromFlask = 7738, + + /// + /// tectonic_slam_damage_+% + /// + TectonicSlamDamagePct = 7739, + + /// + /// tectonic_slam_area_of_effect_+% + /// + TectonicSlamAreaOfEffectPct = 7740, + + /// + /// spectral_shield_throw_damage_+% + /// + SpectralShieldThrowDamagePct = 7741, + + /// + /// spectral_shield_throw_projectile_speed_+% + /// + SpectralShieldThrowProjectileSpeedPct = 7742, + + /// + /// spectral_shield_throw_num_of_additional_projectiles + /// + SpectralShieldThrowNumOfAdditionalProjectiles = 7743, + + /// + /// cannot_take_reflected_elemental_damage + /// + CannotTakeReflectedElementalDamage = 7744, + + /// + /// cannot_take_reflected_physical_damage + /// + CannotTakeReflectedPhysicalDamage = 7745, + + /// + /// golem_damage_+%_per_active_golem + /// + GolemDamagePctPerActiveGolem = 7746, + + /// + /// tailwind_effect_on_self_+%_for_each_skill_used_recently + /// + TailwindEffectOnSelfPctForEachSkillUsedRecently = 7747, + + /// + /// virtual_spider_aspect_web_interval_ms + /// + VirtualSpiderAspectWebIntervalMs = 7748, + + /// + /// aspect_of_the_spider_web_count_+ + /// + AspectOfTheSpiderWebCount = 7749, + + /// + /// crab_aspect_crab_barrier_max_+ + /// + CrabAspectCrabBarrierMax = 7750, + + /// + /// combined_skill_dot_fire_damage_over_time_+%_final + /// + CombinedSkillDotFireDamageOverTimePctFinal = 7751, + + /// + /// shrapnel_trap_number_of_secondary_explosions + /// + ShrapnelTrapNumberOfSecondaryExplosions = 7752, + + /// + /// shrapnel_trap_number_of_additional_secondary_explosions + /// + ShrapnelTrapNumberOfAdditionalSecondaryExplosions = 7753, + + /// + /// virtual_no_mana_cost + /// + VirtualNoManaCost = 7754, + + /// + /// life_loss_%_per_minute + /// + LifeLossPctPerMinute = 7755, + + /// + /// map_spawn_incursion_encounters + /// + MapSpawnIncursionEncounters = 7756, + + /// + /// prevent_vaal_souls_on_hit + /// + PreventVaalSoulsOnHit = 7757, + + /// + /// ignores_enemy_fire_resistance + /// + IgnoresEnemyFireResistance = 7758, + + /// + /// ignores_enemy_cold_resistance + /// + IgnoresEnemyColdResistance = 7759, + + /// + /// ignores_enemy_lightning_resistance + /// + IgnoresEnemyLightningResistance = 7760, + + /// + /// groundslam_damage_to_close_targets_+%_final + /// + GroundslamDamageToCloseTargetsPctFinal = 7761, + + /// + /// keystone_vaal_attacks + /// + KeystoneVaalAttacks = 7762, + + /// + /// grant_vaal_attack_soul_on_hitting_rare_or_unique_with_non_vaal_skill_every_x_ms + /// + GrantVaalAttackSoulOnHittingRareOrUniqueWithNonVaalSkillEveryXMs = 7763, + + /// + /// grant_vaal_skill_use_on_kill_%_with_non_vaal_skill + /// + GrantVaalSkillUseOnKillPctWithNonVaalSkill = 7764, + + /// + /// keystone_vaal_spells + /// + KeystoneVaalSpells = 7765, + + /// + /// non_vaal_skills_damage_+%_final + /// + NonVaalSkillsDamagePctFinal = 7766, + + /// + /// gain_soul_regeneration_for_x_seconds_on_hit_every_500_ms + /// + GainSoulRegenerationForXSecondsOnHitEvery500Ms = 7767, + + /// + /// shrapnel_trap_damage_+% + /// + ShrapnelTrapDamagePct = 7768, + + /// + /// shrapnel_trap_area_of_effect_+% + /// + ShrapnelTrapAreaOfEffectPct = 7769, + + /// + /// lightning_tower_trap_damage_+% + /// + LightningTowerTrapDamagePct = 7770, + + /// + /// lightning_tower_trap_duration_+% + /// + LightningTowerTrapDurationPct = 7771, + + /// + /// lightning_tower_trap_cooldown_speed_+% + /// + LightningTowerTrapCooldownSpeedPct = 7772, + + /// + /// lightning_tower_trap_base_interval_duration_ms + /// + LightningTowerTrapBaseIntervalDurationMs = 7773, + + /// + /// lightning_tower_trap_interval_duration_ms + /// + LightningTowerTrapIntervalDurationMs = 7774, + + /// + /// lightning_tower_trap_number_of_beams + /// + LightningTowerTrapNumberOfBeams = 7775, + + /// + /// lightning_tower_trap_additional_number_of_beams + /// + LightningTowerTrapAdditionalNumberOfBeams = 7776, + + /// + /// flamethrower_tower_trap_damage_+% + /// + FlamethrowerTowerTrapDamagePct = 7777, + + /// + /// flamethrower_tower_trap_cooldown_speed_+% + /// + FlamethrowerTowerTrapCooldownSpeedPct = 7778, + + /// + /// flamethrower_tower_trap_duration_+% + /// + FlamethrowerTowerTrapDurationPct = 7779, + + /// + /// flamethrower_tower_trap_number_of_flamethrowers + /// + FlamethrowerTowerTrapNumberOfFlamethrowers = 7780, + + /// + /// flamethrower_tower_trap_number_of_additional_flamethrowers + /// + FlamethrowerTowerTrapNumberOfAdditionalFlamethrowers = 7781, + + /// + /// flamethrower_tower_trap_display_cast_speed_affects_rotation + /// + FlamethrowerTowerTrapDisplayCastSpeedAffectsRotation = 7782, + + /// + /// phys_cascade_trap_damage_+% + /// + PhysCascadeTrapDamagePct = 7783, + + /// + /// phys_cascade_trap_cooldown_speed_+% + /// + PhysCascadeTrapCooldownSpeedPct = 7784, + + /// + /// phys_cascade_trap_duration_+% + /// + PhysCascadeTrapDurationPct = 7785, + + /// + /// phys_cascade_trap_number_of_cascades + /// + PhysCascadeTrapNumberOfCascades = 7786, + + /// + /// phys_cascade_trap_number_of_additional_cascades + /// + PhysCascadeTrapNumberOfAdditionalCascades = 7787, + + /// + /// phys_cascade_trap_base_interval_duration_ms + /// + PhysCascadeTrapBaseIntervalDurationMs = 7788, + + /// + /// phys_cascade_trap_interval_duration_ms + /// + PhysCascadeTrapIntervalDurationMs = 7789, + + /// + /// ice_siphon_trap_damage_+% + /// + IceSiphonTrapDamagePct = 7790, + + /// + /// ice_siphon_trap_duration_+% + /// + IceSiphonTrapDurationPct = 7791, + + /// + /// ice_siphon_trap_damage_taken_+%_per_beam + /// + IceSiphonTrapDamageTakenPctPerBeam = 7792, + + /// + /// ice_siphon_trap_chill_effect_+% + /// + IceSiphonTrapChillEffectPct = 7793, + + /// + /// ice_siphon_trap_max_beam_targets + /// + IceSiphonTrapMaxBeamTargets = 7794, + + /// + /// bear_trap_damage_taken_+%_from_traps_and_mines + /// + BearTrapDamageTakenPctFromTrapsAndMines = 7795, + + /// + /// bear_trap_additional_damage_taken_+%_from_traps_and_mines + /// + BearTrapAdditionalDamageTakenPctFromTrapsAndMines = 7796, + + /// + /// lightning_trap_lightning_resistance_penetration_% + /// + LightningTrapLightningResistancePenetrationPct = 7797, + + /// + /// lightning_trap_shock_effect_+% + /// + LightningTrapShockEffectPct = 7798, + + /// + /// fire_trap_burning_ground_duration_+% + /// + FireTrapBurningGroundDurationPct = 7799, + + /// + /// charged_dash_damage_+%_final + /// + ChargedDashDamagePctFinal = 7800, + + /// + /// charged_dash_damage_+%_final_per_stack + /// + ChargedDashDamagePctFinalPerStack = 7801, + + /// + /// vaal_earthquake_number_of_aftershocks + /// + VaalEarthquakeNumberOfAftershocks = 7802, + + /// + /// vaal_earthquake_aftershock_delay_ms + /// + VaalEarthquakeAftershockDelayMs = 7803, + + /// + /// maim_effect_+% + /// + MaimEffectPct = 7804, + + /// + /// hits_ignore_my_fire_resistance + /// + HitsIgnoreMyFireResistance = 7805, + + /// + /// hits_ignore_my_cold_resistance + /// + HitsIgnoreMyColdResistance = 7806, + + /// + /// hits_ignore_my_lightning_resistance + /// + HitsIgnoreMyLightningResistance = 7807, + + /// + /// spectating + /// + Spectating = 7808, + + /// + /// bear_trap_movement_speed_+%_final + /// + BearTrapMovementSpeedPctFinal = 7809, + + /// + /// map_incursion_temple_room_state + /// + MapIncursionTempleRoomState = 7810, + + /// + /// map_incursion_temple_room_state2 + /// + MapIncursionTempleRoomState2 = 7811, + + /// + /// map_incursion_temple_room_state3 + /// + MapIncursionTempleRoomState3 = 7812, + + /// + /// skill_hide_user_buff_effects + /// + SkillHideUserBuffEffects = 7813, + + /// + /// critical_strike_chance_+%_vs_shocked_enemies + /// + CriticalStrikeChancePctVsShockedEnemies = 7814, + + /// + /// flamethrower_trap_damage_+%_final_vs_burning_enemies + /// + FlamethrowerTrapDamagePctFinalVsBurningEnemies = 7815, + + /// + /// flamethrower_trap_damage_+%_final + /// + FlamethrowerTrapDamagePctFinal = 7816, + + /// + /// local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger + /// + LocalDisplaySocketedGemsSupportedByLevelXFrenzyPowerOnTrapTrigger = 7817, + + /// + /// trap_throwing_speed_+%_per_frenzy_charge + /// + TrapThrowingSpeedPctPerFrenzyCharge = 7818, + + /// + /// virtual_trap_throwing_speed_+% + /// + VirtualTrapThrowingSpeedPct = 7819, + + /// + /// ancestral_call_art_variation + /// + AncestralCallArtVariation = 7820, + + /// + /// expanding_fire_cone_maximum_number_of_stages + /// + ExpandingFireConeMaximumNumberOfStages = 7821, + + /// + /// grant_expanding_fire_cone_release_ignite_damage_+%_final + /// + GrantExpandingFireConeReleaseIgniteDamagePctFinal = 7822, + + /// + /// expanding_fire_cone_release_ignite_damage_+%_final + /// + ExpandingFireConeReleaseIgniteDamagePctFinal = 7823, + + /// + /// expanding_fire_cone_release_hit_damage_+%_final + /// + ExpandingFireConeReleaseHitDamagePctFinal = 7824, + + /// + /// trigger_on_corpse_consume_%_chance + /// + TriggerOnCorpseConsumePctChance = 7825, + + /// + /// local_display_trigger_level_x_summon_phantasm_on_corpse_consume + /// + LocalDisplayTriggerLevelXSummonPhantasmOnCorpseConsume = 7826, + + /// + /// cast_speed_+%_per_corpse_consumed_recently + /// + CastSpeedPctPerCorpseConsumedRecently = 7827, + + /// + /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently + /// + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfCorpseConsumedRecently = 7828, + + /// + /// infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack + /// + InfernalBlowInfernalBlowExplosionDamagePctOfTotalPerStack = 7829, + + /// + /// infernal_blow_explosion_damage_%_of_total_per_stack + /// + InfernalBlowExplosionDamagePctOfTotalPerStack = 7830, + + /// + /// doubles_have_movement_speed_+% + /// + DoublesHaveMovementSpeedPct = 7831, + + /// + /// lightning_tower_trap_cast_speed_+% + /// + LightningTowerTrapCastSpeedPct = 7832, + + /// + /// flamethrower_tower_trap_cast_speed_+% + /// + FlamethrowerTowerTrapCastSpeedPct = 7833, + + /// + /// vaal_righteous_fire_life_and_es_%_to_lose_on_use + /// + VaalRighteousFireLifeAndEsPctToLoseOnUse = 7834, + + /// + /// rain_of_arrows_additional_sequences + /// + RainOfArrowsAdditionalSequences = 7835, + + /// + /// cannot_gain_souls + /// + CannotGainSouls = 7836, + + /// + /// local_flask_gain_x_vaal_souls_on_use + /// + LocalFlaskGainXVaalSoulsOnUse = 7837, + + /// + /// local_flask_no_mana_recovery_during_effect + /// + LocalFlaskNoManaRecoveryDuringEffect = 7838, + + /// + /// local_flask_vaal_souls_gained_per_minute_during_effect + /// + LocalFlaskVaalSoulsGainedPerMinuteDuringEffect = 7839, + + /// + /// ignites_apply_fire_resistance_+ + /// + IgnitesApplyFireResistance = 7840, + + /// + /// ignite_damage_+%_vs_chilled_enemies + /// + IgniteDamagePctVsChilledEnemies = 7841, + + /// + /// flameblast_ignite_chance_+%_per_stage + /// + FlameblastIgniteChancePctPerStage = 7842, + + /// + /// gain_x_vaal_souls_at_2%_life_thresholds + /// + GainXVaalSoulsAt2PctLifeThresholds = 7843, + + /// + /// disable_vaal_soul_gain_at_2%_life_thresholds + /// + DisableVaalSoulGainAt2PctLifeThresholds = 7844, + + /// + /// local_physical_damage_%_to_convert_to_a_random_element + /// + LocalPhysicalDamagePctToConvertToARandomElement = 7845, + + /// + /// main_hand_physical_damage_%_to_convert_to_a_random_element + /// + MainHandPhysicalDamagePctToConvertToARandomElement = 7846, + + /// + /// off_hand_physical_damage_%_to_convert_to_a_random_element + /// + OffHandPhysicalDamagePctToConvertToARandomElement = 7847, + + /// + /// local_hits_always_inflict_elemental_ailments + /// + LocalHitsAlwaysInflictElementalAilments = 7848, + + /// + /// main_hand_hits_always_inflict_elemental_ailments + /// + MainHandHitsAlwaysInflictElementalAilments = 7849, + + /// + /// off_hand_hits_always_inflict_elemental_ailments + /// + OffHandHitsAlwaysInflictElementalAilments = 7850, + + /// + /// no_mana_recovery + /// + NoManaRecovery = 7851, + + /// + /// active_skill_ignite_damage_+%_final + /// + ActiveSkillIgniteDamagePctFinal = 7852, + + /// + /// chance_to_be_poisoned_% + /// + ChanceToBePoisonedPct = 7853, + + /// + /// poison_time_passed_+% + /// + PoisonTimePassedPct = 7854, + + /// + /// additional_maximum_all_resistances_%_while_poisoned + /// + AdditionalMaximumAllResistancesPctWhilePoisoned = 7855, + + /// + /// energy_shield_regeneration_rate_per_minute_per_poison_stack + /// + EnergyShieldRegenerationRatePerMinutePerPoisonStack = 7856, + + /// + /// bleeding_damage_on_self_converted_to_chaos + /// + BleedingDamageOnSelfConvertedToChaos = 7857, + + /// + /// maximum_life_+%_per_equipped_corrupted_item + /// + MaximumLifePctPerEquippedCorruptedItem = 7858, + + /// + /// maximum_es_+%_per_equipped_corrupted_item + /// + MaximumEsPctPerEquippedCorruptedItem = 7859, + + /// + /// all_resistances_%_per_equipped_corrupted_item + /// + AllResistancesPctPerEquippedCorruptedItem = 7860, + + /// + /// bleeding_damage_taken_per_minute + /// + BleedingDamageTakenPerMinute = 7861, + + /// + /// area_of_effect_+%_per_enemy_killed_recently + /// + AreaOfEffectPctPerEnemyKilledRecently = 7862, + + /// + /// you_have_zealots_oath_if_you_havent_been_hit_recently + /// + YouHaveZealotsOathIfYouHaventBeenHitRecently = 7863, + + /// + /// no_energy_shield_recovery + /// + NoEnergyShieldRecovery = 7864, + + /// + /// life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield + /// + LifeRegenerationPerMinuteIfYouHaveAtLeast500MaximumEnergyShield = 7865, + + /// + /// life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield + /// + LifeRegenerationPerMinuteIfYouHaveAtLeast1000MaximumEnergyShield = 7866, + + /// + /// life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield + /// + LifeRegenerationPerMinuteIfYouHaveAtLeast1500MaximumEnergyShield = 7867, + + /// + /// x_to_maximum_life_per_2_intelligence + /// + XToMaximumLifePer2Intelligence = 7868, + + /// + /// gain_no_maximum_life_from_strength + /// + GainNoMaximumLifeFromStrength = 7869, + + /// + /// gain_no_maximum_mana_from_intelligence + /// + GainNoMaximumManaFromIntelligence = 7870, + + /// + /// life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield + /// + LifeRegenerationRatePerMinutePctPer500MaximumEnergyShield = 7871, + + /// + /// keystone_zealots_oath + /// + KeystoneZealotsOath = 7872, + + /// + /// number_of_enemies_killed_recently + /// + NumberOfEnemiesKilledRecently = 7873, + + /// + /// combined_cast_speed_+% + /// + CombinedCastSpeedPct = 7874, + + /// + /// combined_cast_speed_+%_final + /// + CombinedCastSpeedPctFinal = 7875, + + /// + /// additive_cast_speed_modifiers_apply_to_trap_throwing_speed + /// + AdditiveCastSpeedModifiersApplyToTrapThrowingSpeed = 7876, + + /// + /// %_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy + /// + PctChanceToGainRandomChargeOnTrapTriggeredByAnEnemy = 7877, + + /// + /// trap_throw_skills_have_blood_magic + /// + TrapThrowSkillsHaveBloodMagic = 7878, + + /// + /// affected_by_vulnerability + /// + AffectedByVulnerability = 7879, + + /// + /// enemy_extra_damage_rolls_while_affected_by_vulnerability + /// + EnemyExtraDamageRollsWhileAffectedByVulnerability = 7880, + + /// + /// you_count_as_low_life_while_affected_by_vulnerability + /// + YouCountAsLowLifeWhileAffectedByVulnerability = 7881, + + /// + /// self_cursed_with_level_x_vulnerability + /// + SelfCursedWithLevelXVulnerability = 7882, + + /// + /// ice_trap_cold_resistance_penetration_% + /// + IceTrapColdResistancePenetrationPct = 7883, + + /// + /// life_gain_per_target_if_have_used_a_vaal_skill_recently + /// + LifeGainPerTargetIfHaveUsedAVaalSkillRecently = 7884, + + /// + /// movement_speed_+%_if_have_used_a_vaal_skill_recently + /// + MovementSpeedPctIfHaveUsedAVaalSkillRecently = 7885, + + /// + /// have_used_a_vaal_skill_recently + /// + HaveUsedAVaalSkillRecently = 7886, + + /// + /// track_have_used_a_vaal_skill_recently + /// + TrackHaveUsedAVaalSkillRecently = 7887, + + /// + /// gain_power_charge_on_vaal_skill_use_% + /// + GainPowerChargeOnVaalSkillUsePct = 7888, + + /// + /// chaos_damage_can_ignite_chill_and_shock + /// + ChaosDamageCanIgniteChillAndShock = 7889, + + /// + /// gain_soul_eater_for_x_ms_on_vaal_skill_use + /// + GainSoulEaterForXMsOnVaalSkillUse = 7890, + + /// + /// local_hit_damage_+%_vs_ignited_enemies + /// + LocalHitDamagePctVsIgnitedEnemies = 7891, + + /// + /// main_hand_hit_damage_+%_vs_ignited_enemies + /// + MainHandHitDamagePctVsIgnitedEnemies = 7892, + + /// + /// off_hand_hit_damage_+%_vs_ignited_enemies + /// + OffHandHitDamagePctVsIgnitedEnemies = 7893, + + /// + /// local_hit_damage_+%_vs_frozen_enemies + /// + LocalHitDamagePctVsFrozenEnemies = 7894, + + /// + /// main_hand_hit_damage_+%_vs_frozen_enemies + /// + MainHandHitDamagePctVsFrozenEnemies = 7895, + + /// + /// off_hand_hit_damage_+%_vs_frozen_enemies + /// + OffHandHitDamagePctVsFrozenEnemies = 7896, + + /// + /// local_hit_damage_+%_vs_shocked_enemies + /// + LocalHitDamagePctVsShockedEnemies = 7897, + + /// + /// main_hand_hit_damage_+%_vs_shocked_enemies + /// + MainHandHitDamagePctVsShockedEnemies = 7898, + + /// + /// off_hand_hit_damage_+%_vs_shocked_enemies + /// + OffHandHitDamagePctVsShockedEnemies = 7899, + + /// + /// summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute + /// + SummonedSkeletonsFireDamagePctOfMaximumLifeTakenPerMinute = 7900, + + /// + /// summoned_skeletons_cover_in_ash_on_hit_% + /// + SummonedSkeletonsCoverInAshOnHitPct = 7901, + + /// + /// summoned_skeletons_have_avatar_of_fire + /// + SummonedSkeletonsHaveAvatarOfFire = 7902, + + /// + /// cover_in_ash_on_hit_% + /// + CoverInAshOnHitPct = 7903, + + /// + /// Local Socketed Trap or Mine Gem Level + + /// + LocalSocketedTrapAndMineGemLevel = 7904, + + /// + /// wrath_aura_effect_+% + /// + WrathAuraEffectPct = 7905, + + /// + /// hatred_aura_effect_+% + /// + HatredAuraEffectPct = 7906, + + /// + /// determination_aura_effect_+% + /// + DeterminationAuraEffectPct = 7907, + + /// + /// discipline_aura_effect_+% + /// + DisciplineAuraEffectPct = 7908, + + /// + /// grace_aura_effect_+% + /// + GraceAuraEffectPct = 7909, + + /// + /// local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius + /// + LocalUniqueJewelCriticalStrikeMultiplierPer10StrUnallocatedInRadius = 7910, + + /// + /// local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius + /// + LocalUniqueJewelAdditionalPhysicalDamageReductionPctPer10StrAllocatedInRadius = 7911, + + /// + /// local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius + /// + LocalUniqueJewelMaximumManaPer10DexUnallocatedInRadius = 7912, + + /// + /// local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius + /// + LocalUniqueJewelMovementSpeedPctPer10DexAllocatedInRadius = 7913, + + /// + /// local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius + /// + LocalUniqueJewelAccuracyRatingPer10IntUnallocatedInRadius = 7914, + + /// + /// local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius + /// + LocalUniqueJewelEnergyShieldRegenerationRatePerMinutePctPer10IntAllocatedInRadius = 7915, + + /// + /// local_unique_jewel_X_strength_per_1_strength_allocated_in_radius + /// + LocalUniqueJewelXStrengthPer1StrengthAllocatedInRadius = 7916, + + /// + /// local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius + /// + LocalUniqueJewelXDexterityPer1DexterityAllocatedInRadius = 7917, + + /// + /// local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius + /// + LocalUniqueJewelXIntelligencePer1IntelligenceAllocatedInRadius = 7918, + + /// + /// ground_vaal_cold_snap_art_variation + /// + GroundVaalColdSnapArtVariation = 7919, + + /// + /// elementalist_ignite_damage_+%_final + /// + ElementalistIgniteDamagePctFinal = 7920, + + /// + /// ancestor_totem_ignores_stances + /// + AncestorTotemIgnoresStances = 7921, + + /// + /// skill_life_regeneration_per_minute_per_affected_enemy + /// + SkillLifeRegenerationPerMinutePerAffectedEnemy = 7922, + + /// + /// skill_mana_regeneration_per_minute_per_affected_enemy + /// + SkillManaRegenerationPerMinutePerAffectedEnemy = 7923, + + /// + /// skill_life_regeneration_per_minute_with_at_least_1_affected_enemy + /// + SkillLifeRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7924, + + /// + /// skill_mana_regeneration_per_minute_with_at_least_1_affected_enemy + /// + SkillManaRegenerationPerMinuteWithAtLeast1AffectedEnemy = 7925, + + /// + /// skill_damage_taken_+%_per_affected_enemy + /// + SkillDamageTakenPctPerAffectedEnemy = 7926, + + /// + /// blade_vortex_critical_strike_chance_+%_per_blade + /// + BladeVortexCriticalStrikeChancePctPerBlade = 7927, + + /// + /// bladefall_critical_strike_chance_+%_per_stage + /// + BladefallCriticalStrikeChancePctPerStage = 7928, + + /// + /// global_minimum_added_physical_damage_vs_bleeding_enemies + /// + GlobalMinimumAddedPhysicalDamageVsBleedingEnemies = 7929, + + /// + /// global_maximum_added_physical_damage_vs_bleeding_enemies + /// + GlobalMaximumAddedPhysicalDamageVsBleedingEnemies = 7930, + + /// + /// lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies + /// + LacerateHitAndAilmentDamagePctFinalVsBleedingEnemies = 7931, + + /// + /// cast_speed_+%_final_per_frostbolt_destroyed_recently + /// + CastSpeedPctFinalPerFrostboltDestroyedRecently = 7932, + + /// + /// mana_cost_+%_final_per_frostbolt_destroyed_recently + /// + ManaCostPctFinalPerFrostboltDestroyedRecently = 7933, + + /// + /// number_of_frostbolts_destroyed_recently + /// + NumberOfFrostboltsDestroyedRecently = 7934, + + /// + /// lacerate_hit_and_ailment_damage_+%_final + /// + LacerateHitAndAilmentDamagePctFinal = 7935, + + /// + /// dodge_attacks_chance_%_while_moving + /// + DodgeAttacksChancePctWhileMoving = 7936, + + /// + /// dodge_spells_chance_%_while_moving + /// + DodgeSpellsChancePctWhileMoving = 7937, + + /// + /// global_evasion_rating_+_while_moving + /// + GlobalEvasionRatingWhileMoving = 7938, + + /// + /// global_physical_damage_reduction_rating_while_moving + /// + GlobalPhysicalDamageReductionRatingWhileMoving = 7939, + + /// + /// curse_on_hit_level_despair + /// + CurseOnHitLevelDespair = 7940, + + /// + /// curse_on_hit_level_enfeeble + /// + CurseOnHitLevelEnfeeble = 7941, + + /// + /// area_damage_taken_from_hits_+% + /// + AreaDamageTakenFromHitsPct = 7942, + + /// + /// projectile_damage_+%_per_chain + /// + ProjectileDamagePctPerChain = 7943, + + /// + /// local_display_grants_level_x_despair + /// + LocalDisplayGrantsLevelXDespair = 7944, + + /// + /// critical_strike_chance_+%_during_any_flask_effect + /// + CriticalStrikeChancePctDuringAnyFlaskEffect = 7945, + + /// + /// critical_strike_multiplier_+_during_any_flask_effect + /// + CriticalStrikeMultiplierDuringAnyFlaskEffect = 7946, + + /// + /// cannot_be_inflicted_by_corrupted_blood + /// + CannotBeInflictedByCorruptedBlood = 7947, + + /// + /// gain_X_frenzy_charges_after_spending_200_mana + /// + GainXFrenzyChargesAfterSpending200Mana = 7948, + + /// + /// Local Socketed Duration Gem Level + + /// + LocalSocketedDurationGemLevel = 7949, + + /// + /// Local Socketed AoE Gem Level + + /// + LocalSocketedAreaOfEffectGemLevel = 7950, + + /// + /// map_incursion_monster_data + /// + MapIncursionMonsterData = 7951, + + /// + /// local_display_has_additional_implicit_mod + /// + LocalDisplayHasAdditionalImplicitMod = 7952, + + /// + /// spark_chance_to_force_alternate_angle_side_% + /// + SparkChanceToForceAlternateAngleSidePct = 7953, + + /// + /// gain_onslaught_while_not_on_low_mana + /// + GainOnslaughtWhileNotOnLowMana = 7954, + + /// + /// dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20 + /// + DodgeAttacksAndSpellChancePctPer500MaximumManaUpTo20 = 7955, + + /// + /// ball_lightning_projectile_speed_and_hit_frequency_+%_final + /// + BallLightningProjectileSpeedAndHitFrequencyPctFinal = 7956, + + /// + /// arc_damage_+%_final_per_chain + /// + ArcDamagePctFinalPerChain = 7957, + + /// + /// arc_damage_+%_final_for_each_remaining_chain + /// + ArcDamagePctFinalForEachRemainingChain = 7958, + + /// + /// chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_% + /// + ChanceToGainPowerChargeOnRareOrUniqueEnemyHitPct = 7959, + + /// + /// expanding_fire_cone_additional_maximum_number_of_stages + /// + ExpandingFireConeAdditionalMaximumNumberOfStages = 7960, + + /// + /// expanding_fire_cone_area_of_effect_+% + /// + ExpandingFireConeAreaOfEffectPct = 7961, + + /// + /// elemental_hit_cannot_roll_fire_damage + /// + ElementalHitCannotRollFireDamage = 7962, + + /// + /// elemental_hit_cannot_roll_cold_damage + /// + ElementalHitCannotRollColdDamage = 7963, + + /// + /// elemental_hit_cannot_roll_lightning_damage + /// + ElementalHitCannotRollLightningDamage = 7964, + + /// + /// expanding_fire_cone_radius_+_per_stage + /// + ExpandingFireConeRadiusPerStage = 7965, + + /// + /// expanding_fire_cone_angle_+%_per_stage + /// + ExpandingFireConeAnglePctPerStage = 7966, + + /// + /// expanding_fire_cone_final_wave_always_ignite + /// + ExpandingFireConeFinalWaveAlwaysIgnite = 7967, + + /// + /// kill_and_delete_on_hit + /// + KillAndDeleteOnHit = 7968, + + /// + /// elemental_hit_damage_+10%_final_per_enemy_elemental_ailment + /// + ElementalHitDamage10PctFinalPerEnemyElementalAilment = 7969, + + /// + /// elemental_hit_damage_+%_final + /// + ElementalHitDamagePctFinal = 7970, + + /// + /// elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment + /// + ElementalHitAreaOfEffect100PctFinalVsEnemyWithAssociatedAilment = 7971, + + /// + /// support_power_charge_on_crit_damage_+%_final_per_power_charge + /// + SupportPowerChargeOnCritDamagePctFinalPerPowerCharge = 7972, + + /// + /// hinder_enemy_chaos_damage_taken_+% + /// + HinderEnemyChaosDamageTakenPct = 7973, + + /// + /// local_display_grants_skill_vaal_impurity_of_fire_level + /// + LocalDisplayGrantsSkillVaalImpurityOfFireLevel = 7974, + + /// + /// local_display_grants_skill_vaal_impurity_of_ice_level + /// + LocalDisplayGrantsSkillVaalImpurityOfIceLevel = 7975, + + /// + /// local_display_grants_skill_vaal_impurity_of_lightning_level + /// + LocalDisplayGrantsSkillVaalImpurityOfLightningLevel = 7976, + + /// + /// support_hypothermia_cold_damage_over_time_+%_final + /// + SupportHypothermiaColdDamageOverTimePctFinal = 7977, + + /// + /// ground_quicksand_art_variation + /// + GroundQuicksandArtVariation = 7978, + + /// + /// map_area_contains_x_additional_clusters_of_explosive_eggs + /// + MapAreaContainsXAdditionalClustersOfExplosiveEggs = 7979, + + /// + /// trap_critical_strike_multiplier_+_per_power_charge + /// + TrapCriticalStrikeMultiplierPerPowerCharge = 7980, + + /// + /// ignores_trap_and_mine_cooldown_limit + /// + IgnoresTrapAndMineCooldownLimit = 7981, + + /// + /// vaal_righteous_fire_life_and_es_%_as_damage_per_second + /// + VaalRighteousFireLifeAndEsPctAsDamagePerSecond = 7982, + + /// + /// molten_strike_projectile_animation_speed_+% + /// + MoltenStrikeProjectileAnimationSpeedPct = 7983, + + /// + /// orb_of_storms_base_bolt_frequency_ms + /// + OrbOfStormsBaseBoltFrequencyMs = 7984, + + /// + /// orb_of_storms_bolt_frequency_ms + /// + OrbOfStormsBoltFrequencyMs = 7985, + + /// + /// orb_of_storms_cast_speed_+% + /// + OrbOfStormsCastSpeedPct = 7986, + + /// + /// area_of_effect_+%_when_cast_on_frostbolt + /// + AreaOfEffectPctWhenCastOnFrostbolt = 7987, + + /// + /// vortex_area_of_effect_+%_when_cast_on_frostbolt + /// + VortexAreaOfEffectPctWhenCastOnFrostbolt = 7988, + + /// + /// skill_code_movement_speed_+%_final + /// + SkillCodeMovementSpeedPctFinal = 7989, + + /// + /// charged_dash_movement_speed_+%_final + /// + ChargedDashMovementSpeedPctFinal = 7990, + + /// + /// virtual_bladefall_number_of_volleys + /// + VirtualBladefallNumberOfVolleys = 7991, + + /// + /// bladefall_number_of_volleys + /// + BladefallNumberOfVolleys = 7992, + + /// + /// blade_vortex_critical_strike_multiplier_+_per_blade + /// + BladeVortexCriticalStrikeMultiplierPerBlade = 7993, + + /// + /// critical_strike_multiplier_+_per_blade + /// + CriticalStrikeMultiplierPerBlade = 7994, + + /// + /// double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies + /// + DoubleStrikeChanceToDealDoubleDamagePctVsBleedingEnemies = 7995, + + /// + /// chance_to_deal_double_damage_%_vs_bleeding_enemies + /// + ChanceToDealDoubleDamagePctVsBleedingEnemies = 7996, + + /// + /// arc_damage_+%_per_chain + /// + ArcDamagePctPerChain = 7997, + + /// + /// damage_+%_per_chain + /// + DamagePctPerChain = 7998, + + /// + /// petrification_statue_target_action_speed_-% + /// + PetrificationStatueTargetActionSpeedPct = 7999, + + /// + /// petrification_statue_pertrify_duration_ms + /// + PetrificationStatuePertrifyDurationMs = 8000, + + /// + /// arc_enhanced_behaviour + /// + ArcEnhancedBehaviour = 8001, + + /// + /// storm_burst_number_of_additional_projectiles + /// + StormBurstNumberOfAdditionalProjectiles = 8002, + + /// + /// ball_lightning_number_of_additional_projectiles + /// + BallLightningNumberOfAdditionalProjectiles = 8003, + + /// + /// power_siphon_number_of_additional_projectiles + /// + PowerSiphonNumberOfAdditionalProjectiles = 8004, + + /// + /// ethereal_knives_projectile_base_number_of_targets_to_pierce + /// + EtherealKnivesProjectileBaseNumberOfTargetsToPierce = 8005, + + /// + /// frost_bomb_buff_duration_+% + /// + FrostBombBuffDurationPct = 8006, + + /// + /// chest_drop_additional_weapon_item_divination_cards + /// + ChestDropAdditionalWeaponItemDivinationCards = 8007, + + /// + /// chest_drop_additional_armour_item_divination_cards + /// + ChestDropAdditionalArmourItemDivinationCards = 8008, + + /// + /// map_non_unique_monster_life_regeneration_rate_per_minute_% + /// + MapNonUniqueMonsterLifeRegenerationRatePerMinutePct = 8009, + + /// + /// map_packs_are_vaal + /// + MapPacksAreVaal = 8010, + + /// + /// translate_rotate_translate_speed_+% + /// + TranslateRotateTranslateSpeedPct = 8011, + + /// + /// translate_rotate_rotation_angle_rate + /// + TranslateRotateRotationAngleRate = 8012, + + /// + /// chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_% + /// + ChanceToGainFrenzyChargeOnKillingEnemyAffectedByColdSnapGroundPct = 8013, + + /// + /// is_on_ground_cold_snap + /// + IsOnGroundColdSnap = 8014, + + /// + /// translate_rotate_curvature_scale + /// + TranslateRotateCurvatureScale = 8015, + + /// + /// translate_rotate_curvature_path_distance + /// + TranslateRotateCurvaturePathDistance = 8016, + + /// + /// monster_uses_map_boss_difficulty_scaling + /// + MonsterUsesMapBossDifficultyScaling = 8017, + + /// + /// double_slash_minimum_added_physical_damage_vs_bleeding_enemies + /// + DoubleSlashMinimumAddedPhysicalDamageVsBleedingEnemies = 8018, + + /// + /// double_slash_maximum_added_physical_damage_vs_bleeding_enemies + /// + DoubleSlashMaximumAddedPhysicalDamageVsBleedingEnemies = 8019, + + /// + /// arc_extra_damage_rolls + /// + ArcExtraDamageRolls = 8020, + + /// + /// base_enemy_extra_damage_rolls + /// + BaseEnemyExtraDamageRolls = 8021, + + /// + /// charged_dash_channelling_damage_at_full_stacks_+%_final + /// + ChargedDashChannellingDamageAtFullStacksPctFinal = 8022, + + /// + /// map_tempest_massive_storm_weight + /// + MapTempestMassiveStormWeight = 8023, + + /// + /// map_tempest_tiny_storm_weight + /// + MapTempestTinyStormWeight = 8024, + + /// + /// map_tempest_crit_storm_weight + /// + MapTempestCritStormWeight = 8025, + + /// + /// map_tempest_replenishing_storm_weight + /// + MapTempestReplenishingStormWeight = 8026, + + /// + /// map_tempest_status_immunity_storm_weight + /// + MapTempestStatusImmunityStormWeight = 8027, + + /// + /// map_tempest_corrupted_drops_weight + /// + MapTempestCorruptedDropsWeight = 8028, + + /// + /// map_tempest_uber_rarity_storm_weight + /// + MapTempestUberRarityStormWeight = 8029, + + /// + /// local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius + /// + LocalUniqueJewelElementalHitCannotRollColdDamageWith40IntStrInRadius = 8030, + + /// + /// local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius + /// + LocalUniqueJewelElementalHitCannotRollFireDamageWith40IntDexInRadius = 8031, + + /// + /// local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius + /// + LocalUniqueJewelElementalHitCannotRollLightningDamageWith40DexStrInRadius = 8032, + + /// + /// minion_do_not_remove_skill_specific_stats + /// + MinionDoNotRemoveSkillSpecificStats = 8033, + + /// + /// map_packs_are_mechanical_totems + /// + MapPacksAreMechanicalTotems = 8034, + + /// + /// vaal_earthquake_maximum_aftershocks + /// + VaalEarthquakeMaximumAftershocks = 8035, + + /// + /// rain_of_arrows_rain_of_arrows_additional_sequence_chance_% + /// + RainOfArrowsRainOfArrowsAdditionalSequenceChancePct = 8036, + + /// + /// rain_of_arrows_additional_sequence_chance_% + /// + RainOfArrowsAdditionalSequenceChancePct = 8037, + + /// + /// rain_of_arrows_sequences_to_fire + /// + RainOfArrowsSequencesToFire = 8038, + + /// + /// local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius + /// + LocalUniqueJewelColdSnapUsesGainsPowerChargesInsteadOfFrenzyWith40IntInRadius = 8039, + + /// + /// cold_snap_uses_and_gains_power_charges_instead_of_frenzy + /// + ColdSnapUsesAndGainsPowerChargesInsteadOfFrenzy = 8040, + + /// + /// active_skill_cooldown_bypass_type_override_to_power_charge + /// + ActiveSkillCooldownBypassTypeOverrideToPowerCharge = 8041, + + /// + /// Local Socketed Trap Gem Level + + /// + LocalSocketedTrapGemLevel = 8042, + + /// + /// elemental_hit_no_physical_chaos_damage + /// + ElementalHitNoPhysicalChaosDamage = 8043, + + /// + /// elemental_hit_number_of_options + /// + ElementalHitNumberOfOptions = 8044, + + /// + /// local_unique_flask_vaal_skill_damage_+%_during_flask_effect + /// + LocalUniqueFlaskVaalSkillDamagePctDuringFlaskEffect = 8045, + + /// + /// local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect + /// + LocalUniqueFlaskVaalSkillSoulCostPctDuringFlaskEffect = 8046, + + /// + /// local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect + /// + LocalUniqueFlaskVaalSkillSoulGainPreventationDurationPctDuringFlaskEffect = 8047, + + /// + /// vaal_skill_soul_gain_preventation_duration_+% + /// + VaalSkillSoulGainPreventationDurationPct = 8048, + + /// + /// vaal_skill_does_not_apply_soul_gain_prevention + /// + VaalSkillDoesNotApplySoulGainPrevention = 8049, + + /// + /// local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect + /// + LocalUniqueFlaskVaalSkillDoesNotApplySoulGainPreventionDuringFlaskEffect = 8050, + + /// + /// local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect + /// + LocalUniqueSoulRipperFlaskCannotGainFlaskChargesDuringFlaskEffect = 8051, + + /// + /// using_flask_soul_ripper + /// + UsingFlaskSoulRipper = 8052, + + /// + /// additional_life_scaling_index + /// + AdditionalLifeScalingIndex = 8053, + + /// + /// summon_specific_monsters_cannot_fail + /// + SummonSpecificMonstersCannotFail = 8054, + + /// + /// vaal_flameblast_radius_+_per_stage + /// + VaalFlameblastRadiusPerStage = 8055, + + /// + /// vaal_righteous_fire_spell_damage_+%_final + /// + VaalRighteousFireSpellDamagePctFinal = 8056, + + /// + /// vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura + /// + VaalColdSnapGainFrenzyChargeEverySecondIfEnemyInAura = 8057, + + /// + /// trigger_cascade_arm_angle_offset + /// + TriggerCascadeArmAngleOffset = 8058, + + /// + /// geometry_attack_%_target_life_to_deal_as_additional_damage + /// + GeometryAttackPctTargetLifeToDealAsAdditionalDamage = 8059, + + /// + /// firestorm_target_radius_affected_only_by_self + /// + FirestormTargetRadiusAffectedOnlyBySelf = 8060, + + /// + /// firestorm_explosion_radius_affected_only_by_self + /// + FirestormExplosionRadiusAffectedOnlyBySelf = 8061, + + /// + /// omnitect_thruster_damage_+%_final + /// + OmnitectThrusterDamagePctFinal = 8062, + + /// + /// skill_granted_omnitect_thruster_damage_+%_final + /// + SkillGrantedOmnitectThrusterDamagePctFinal = 8063, + + /// + /// charged_dash_skill_inherent_movement_speed_+%_final + /// + ChargedDashSkillInherentMovementSpeedPctFinal = 8064, + + /// + /// local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect + /// + LocalUniqueFlaskVaalSkillDamagePctFinalDuringFlaskEffect = 8065, + + /// + /// soul_ripper_vaal_skill_damage_+%_final + /// + SoulRipperVaalSkillDamagePctFinal = 8066, + + /// + /// vaal_storm_call_base_delay_ms + /// + VaalStormCallBaseDelayMs = 8067, + + /// + /// vaal_storm_call_delay_ms + /// + VaalStormCallDelayMs = 8068, + + /// + /// modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration + /// + ModifiersToSkillEffectDurationAlsoAffectSoulPreventionDuration = 8069, + + /// + /// modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration + /// + ModifiersToBuffEffectDurationAlsoAffectSoulPreventionDuration = 8070, + + /// + /// base_soul_prevention_time_ms + /// + BaseSoulPreventionTimeMs = 8071, + + /// + /// virtual_soul_prevention_time_ms + /// + VirtualSoulPreventionTimeMs = 8072, + + /// + /// map_atlas_influence_hash + /// + MapAtlasInfluenceHash = 8073, + + /// + /// effective_level + /// + EffectiveLevel = 8074, + + /// + /// effective_level_override + /// + EffectiveLevelOverride = 8075, + + /// + /// virtual_damage_+%_final_from_effective_level_permyriad + /// + VirtualDamagePctFinalFromEffectiveLevelPermyriad = 8076, + + /// + /// virtual_damage_taken_+%_final_from_effective_level + /// + VirtualDamageTakenPctFinalFromEffectiveLevel = 8077, + + /// + /// virtual_accuracy_rating_+%_final_from_effective_level + /// + VirtualAccuracyRatingPctFinalFromEffectiveLevel = 8078, + + /// + /// virtual_evasion_rating_+%_final_from_effective_level + /// + VirtualEvasionRatingPctFinalFromEffectiveLevel = 8079, + + /// + /// virtual_curse_effect_+%_final_from_effective_level + /// + VirtualCurseEffectPctFinalFromEffectiveLevel = 8080, + + /// + /// ignore_attacker_effective_level_modifiers + /// + IgnoreAttackerEffectiveLevelModifiers = 8081, + + /// + /// ignore_defender_effective_level_modifiers + /// + IgnoreDefenderEffectiveLevelModifiers = 8082, + + /// + /// Taking DoT based on a % of max life should not be scaled by this stat. + /// + PhysicalDamageTakenPerMinuteUnaffectedByLevelScaling = 8083, + + /// + /// Taking DoT based on a % of max life should not be scaled by this stat. + /// + FireDamageTakenPerMinuteUnaffectedByLevelScaling = 8084, + + /// + /// Taking DoT based on a % of max life should not be scaled by this stat. + /// + ColdDamageTakenPerMinuteUnaffectedByLevelScaling = 8085, + + /// + /// Taking DoT based on a % of max life should not be scaled by this stat. + /// + LightningDamageTakenPerMinuteUnaffectedByLevelScaling = 8086, + + /// + /// Taking DoT based on a % of max life should not be scaled by this stat. + /// + ChaosDamageTakenPerMinuteUnaffectedByLevelScaling = 8087, + + /// + /// minion_owner_actual_level + /// + MinionOwnerActualLevel = 8088, + + /// + /// minion_owner_effective_level_override + /// + MinionOwnerEffectiveLevelOverride = 8089, + + /// + /// minion_owner_effective_level + /// + MinionOwnerEffectiveLevel = 8090, + + /// + /// map_delve_%_degeneration_per_minute + /// + MapDelvePctDegenerationPerMinute = 8091, + + /// + /// base_unaffected_by_delve_degeneration + /// + BaseUnaffectedByDelveDegeneration = 8092, + + /// + /// map_delve_rules + /// + MapDelveRules = 8093, + + /// + /// gain_endurance_charge_on_melee_stun_% + /// + GainEnduranceChargeOnMeleeStunPct = 8094, + + /// + /// intermediary_physical_damage_to_deal_per_minute + /// + IntermediaryPhysicalDamageToDealPerMinute = 8095, + + /// + /// intermediary_physical_skill_dot_damage_to_deal_per_minute + /// + IntermediaryPhysicalSkillDotDamageToDealPerMinute = 8096, + + /// + /// intermediary_physical_area_damage_to_deal_per_minute + /// + IntermediaryPhysicalAreaDamageToDealPerMinute = 8097, + + /// + /// intermediary_physical_skill_dot_area_damage_to_deal_per_minute + /// + IntermediaryPhysicalSkillDotAreaDamageToDealPerMinute = 8098, + + /// + /// intermediary_fire_damage_to_deal_per_minute + /// + IntermediaryFireDamageToDealPerMinute = 8099, + + /// + /// intermediary_fire_skill_dot_damage_to_deal_per_minute + /// + IntermediaryFireSkillDotDamageToDealPerMinute = 8100, + + /// + /// intermediary_fire_area_damage_to_deal_per_minute + /// + IntermediaryFireAreaDamageToDealPerMinute = 8101, + + /// + /// intermediary_fire_skill_dot_area_damage_to_deal_per_minute + /// + IntermediaryFireSkillDotAreaDamageToDealPerMinute = 8102, + + /// + /// intermediary_projectile_skill_dot_ground_fire_area_damage_per_minute + /// + IntermediaryProjectileSkillDotGroundFireAreaDamagePerMinute = 8103, + + /// + /// intermediary_cold_damage_to_deal_per_minute + /// + IntermediaryColdDamageToDealPerMinute = 8104, + + /// + /// intermediary_cold_skill_dot_damage_to_deal_per_minute + /// + IntermediaryColdSkillDotDamageToDealPerMinute = 8105, + + /// + /// intermediary_cold_area_damage_to_deal_per_minute + /// + IntermediaryColdAreaDamageToDealPerMinute = 8106, + + /// + /// intermediary_cold_skill_dot_area_damage_to_deal_per_minute + /// + IntermediaryColdSkillDotAreaDamageToDealPerMinute = 8107, + + /// + /// intermediary_lightning_damage_to_deal_per_minute + /// + IntermediaryLightningDamageToDealPerMinute = 8108, + + /// + /// intermediary_lightning_skill_dot_damage_to_deal_per_minute + /// + IntermediaryLightningSkillDotDamageToDealPerMinute = 8109, + + /// + /// intermediary_lightning_area_damage_to_deal_per_minute + /// + IntermediaryLightningAreaDamageToDealPerMinute = 8110, + + /// + /// intermediary_lightning_skill_dot_area_damage_to_deal_per_minute + /// + IntermediaryLightningSkillDotAreaDamageToDealPerMinute = 8111, + + /// + /// intermediary_chaos_damage_to_deal_per_minute + /// + IntermediaryChaosDamageToDealPerMinute = 8112, + + /// + /// intermediary_chaos_skill_dot_damage_to_deal_per_minute + /// + IntermediaryChaosSkillDotDamageToDealPerMinute = 8113, + + /// + /// intermediary_chaos_area_damage_to_deal_per_minute + /// + IntermediaryChaosAreaDamageToDealPerMinute = 8114, + + /// + /// intermediary_chaos_skill_dot_area_damage_to_deal_per_minute + /// + IntermediaryChaosSkillDotAreaDamageToDealPerMinute = 8115, + + /// + /// intermediary_projectile_skill_dot_ground_caustic_area_damage_per_minute + /// + IntermediaryProjectileSkillDotGroundCausticAreaDamagePerMinute = 8116, + + /// + /// map_area_underlevelled + /// + MapAreaUnderlevelled = 8117, + + /// + /// delve_monster_damage_taken_+%_final + /// + DelveMonsterDamageTakenPctFinal = 8118, + + /// + /// base_ignite_damage_taken_per_minute + /// + BaseIgniteDamageTakenPerMinute = 8119, + + /// + /// base_poison_damage_taken_per_minute + /// + BasePoisonDamageTakenPerMinute = 8120, + + /// + /// base_self_chaos_damage_taken_per_minute + /// + BaseSelfChaosDamageTakenPerMinute = 8121, + + /// + /// base_number_of_clones_allowed + /// + BaseNumberOfClonesAllowed = 8122, + + /// + /// max_number_of_dominated_normal_monsters + /// + MaxNumberOfDominatedNormalMonsters = 8123, + + /// + /// max_number_of_dominated_magic_monsters + /// + MaxNumberOfDominatedMagicMonsters = 8124, + + /// + /// max_number_of_dominated_rare_monsters + /// + MaxNumberOfDominatedRareMonsters = 8125, + + /// + /// additional_max_number_of_dominated_magic_monsters + /// + AdditionalMaxNumberOfDominatedMagicMonsters = 8126, + + /// + /// additional_max_number_of_dominated_rare_monsters + /// + AdditionalMaxNumberOfDominatedRareMonsters = 8127, + + /// + /// number_of_dominated_monsters + /// + NumberOfDominatedMonsters = 8128, + + /// + /// number_of_dominated_normal_monsters + /// + NumberOfDominatedNormalMonsters = 8129, + + /// + /// number_of_dominated_magic_monsters + /// + NumberOfDominatedMagicMonsters = 8130, + + /// + /// number_of_dominated_rare_monsters + /// + NumberOfDominatedRareMonsters = 8131, + + /// + /// geometry_attack_%_target_es_to_deal_as_additional_damage + /// + GeometryAttackPctTargetEsToDealAsAdditionalDamage = 8132, + + /// + /// minimum_added_lightning_damage_from_skill + /// + MinimumAddedLightningDamageFromSkill = 8133, + + /// + /// maximum_added_lightning_damage_from_skill + /// + MaximumAddedLightningDamageFromSkill = 8134, + + /// + /// base_chance_to_shock_%_from_skill + /// + BaseChanceToShockPctFromSkill = 8135, + + /// + /// static_strike_number_of_beam_targets + /// + StaticStrikeNumberOfBeamTargets = 8136, + + /// + /// static_strike_additional_number_of_beam_targets + /// + StaticStrikeAdditionalNumberOfBeamTargets = 8137, + + /// + /// static_strike_base_zap_frequency_ms + /// + StaticStrikeBaseZapFrequencyMs = 8138, + + /// + /// static_strike_zap_speed_+%_per_stack + /// + StaticStrikeZapSpeedPctPerStack = 8139, + + /// + /// local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius + /// + LocalJewelCopyStatsFromUnallocatedNonNotablePassivesInRadius = 8140, + + /// + /// local_jewel_allocated_non_notable_passives_in_radius_grant_nothing + /// + LocalJewelAllocatedNonNotablePassivesInRadiusGrantNothing = 8141, + + /// + /// caustic_arrow_explode_on_hit_base_area_of_effect_radius + /// + CausticArrowExplodeOnHitBaseAreaOfEffectRadius = 8142, + + /// + /// damage_over_time_+%_with_bow_skills + /// + DamageOverTimePctWithBowSkills = 8143, + + /// + /// damage_over_time_+%_with_attack_skills + /// + DamageOverTimePctWithAttackSkills = 8144, + + /// + /// skill_is_bow_skill + /// + SkillIsBowSkill = 8145, + + /// + /// map_players_cannot_gain_flask_charges + /// + MapPlayersCannotGainFlaskCharges = 8146, + + /// + /// cannot_gain_flask_charges + /// + CannotGainFlaskCharges = 8147, + + /// + /// trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance + /// + TriggerSocketedWarcryWhenEnduranceChargeExpiresOrConsumedPctChance = 8148, + + /// + /// unique_socketed_warcry_triggered + /// + UniqueSocketedWarcryTriggered = 8149, + + /// + /// sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast + /// + SacrificePctMaximumLifeToGainAsEsOnSpellCast = 8150, + + /// + /// unique_primordial_tether_golem_life_+%_final + /// + UniquePrimordialTetherGolemLifePctFinal = 8151, + + /// + /// unique_primordial_tether_golem_damage_+%_final + /// + UniquePrimordialTetherGolemDamagePctFinal = 8152, + + /// + /// golem_life_+%_final_from_unique_primordial_tether + /// + GolemLifePctFinalFromUniquePrimordialTether = 8153, + + /// + /// golem_damage_+%_final_from_unique_primordial_tether + /// + GolemDamagePctFinalFromUniquePrimordialTether = 8154, + + /// + /// golem_scale_+% + /// + GolemScalePct = 8155, + + /// + /// virtual_current_number_of_keystones + /// + VirtualCurrentNumberOfKeystones = 8156, + + /// + /// additional_physical_damage_reduction_%_per_keystone + /// + AdditionalPhysicalDamageReductionPctPerKeystone = 8157, + + /// + /// local_display_curse_enemies_with_socketed_curse_on_hit_%_chance + /// + LocalDisplayCurseEnemiesWithSocketedCurseOnHitPctChance = 8158, + + /// + /// unique_curse_enemies_with_socketed_curse_on_hit_%_chance + /// + UniqueCurseEnemiesWithSocketedCurseOnHitPctChance = 8159, + + /// + /// local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed + /// + LocalSpellsGainArcaneSurgeOnHitWithCasterAbyssJewelSocketed = 8160, + + /// + /// gain_arcane_surge_on_hit_%_chance + /// + GainArcaneSurgeOnHitPctChance = 8161, + + /// + /// local_minion_accuracy_rating_with_minion_abyss_jewel_socketed + /// + LocalMinionAccuracyRatingWithMinionAbyssJewelSocketed = 8162, + + /// + /// minion_accuracy_rating + /// + MinionAccuracyRating = 8163, + + /// + /// cannot_gain_bleeding + /// + CannotGainBleeding = 8164, + + /// + /// local_display_nearby_allies_extra_damage_rolls + /// + LocalDisplayNearbyAlliesExtraDamageRolls = 8165, + + /// + /// enemies_extra_damage_rolls_with_lightning_damage + /// + EnemiesExtraDamageRollsWithLightningDamage = 8166, + + /// + /// number_of_additional_mines_to_place_with_at_least_500_int + /// + NumberOfAdditionalMinesToPlaceWithAtLeast500Int = 8167, + + /// + /// number_of_additional_mines_to_place_with_at_least_500_dex + /// + NumberOfAdditionalMinesToPlaceWithAtLeast500Dex = 8168, + + /// + /// delve_in_antilight + /// + DelveInAntilight = 8169, + + /// + /// virtual_unaffected_by_delve_degeneration + /// + VirtualUnaffectedByDelveDegeneration = 8170, + + /// + /// base_extra_damage_rolls + /// + BaseExtraDamageRolls = 8171, + + /// + /// delve_depth + /// + DelveDepth = 8172, + + /// + /// static_strike_beam_damage_+%_final + /// + StaticStrikeBeamDamagePctFinal = 8173, + + /// + /// static_strike_beam_damage_+%_final_while_moving + /// + StaticStrikeBeamDamagePctFinalWhileMoving = 8174, + + /// + /// herald_of_agony_poison_damage_+%_final + /// + HeraldOfAgonyPoisonDamagePctFinal = 8175, + + /// + /// herald_of_agony_add_stack_on_poison + /// + HeraldOfAgonyAddStackOnPoison = 8176, + + /// + /// scorpion_minion_physical_damage_+% + /// + ScorpionMinionPhysicalDamagePct = 8177, + + /// + /// scorpion_minion_attack_speed_+% + /// + ScorpionMinionAttackSpeedPct = 8178, + + /// + /// scorpion_minion_minimum_added_physical_damage + /// + ScorpionMinionMinimumAddedPhysicalDamage = 8179, + + /// + /// scorpion_minion_maximum_added_physical_damage + /// + ScorpionMinionMaximumAddedPhysicalDamage = 8180, + + /// + /// base_number_of_herald_scorpions_allowed + /// + BaseNumberOfHeraldScorpionsAllowed = 8181, + + /// + /// number_of_herald_scorpions_allowed + /// + NumberOfHeraldScorpionsAllowed = 8182, + + /// + /// immune_to_cheats + /// + ImmuneToCheats = 8183, + + /// + /// virulent_arrow_maximum_number_of_stacks + /// + VirulentArrowMaximumNumberOfStacks = 8184, + + /// + /// energy_shield_regeneration_rate_+% + /// + EnergyShieldRegenerationRatePct = 8185, + + /// + /// is_dynamite_wall + /// + IsDynamiteWall = 8186, + + /// + /// dynamite_damage_+% + /// + DynamiteDamagePct = 8187, + + /// + /// base_dynamite_damage_resistance_% + /// + BaseDynamiteDamageResistancePct = 8188, + + /// + /// virtual_dynamite_damage_resistance_% + /// + VirtualDynamiteDamageResistancePct = 8189, + + /// + /// base_skill_is_instant + /// + BaseSkillIsInstant = 8190, + + /// + /// skill_is_instant + /// + SkillIsInstant = 8191, + + /// + /// golem_movement_speed_+% + /// + GolemMovementSpeedPct = 8192, + + /// + /// base_number_of_champions_of_light_allowed + /// + BaseNumberOfChampionsOfLightAllowed = 8193, + + /// + /// number_of_champions_of_light_allowed + /// + NumberOfChampionsOfLightAllowed = 8194, + + /// + /// herald_of_light_summon_champion_on_kill + /// + HeraldOfLightSummonChampionOnKill = 8195, + + /// + /// herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_% + /// + HeraldOfLightSummonChampionOnUniqueOrRareEnemyHitPct = 8196, + + /// + /// rain_of_spores_vines_movement_speed_+%_final + /// + RainOfSporesVinesMovementSpeedPctFinal = 8197, + + /// + /// dominating_blow_chance_to_summon_on_hitting_unqiue_% + /// + DominatingBlowChanceToSummonOnHittingUnqiuePct = 8198, + + /// + /// virulent_arrow_pod_projectile_damage_+%_final + /// + VirulentArrowPodProjectileDamagePctFinal = 8199, + + /// + /// virulent_arrow_damage_+%_final_per_stage + /// + VirulentArrowDamagePctFinalPerStage = 8200, + + /// + /// virulent_arrow_number_of_pod_projectiles + /// + VirulentArrowNumberOfPodProjectiles = 8201, + + /// + /// delve_flare_id + /// + DelveFlareId = 8202, + + /// + /// delve_dynamite_id + /// + DelveDynamiteId = 8203, + + /// + /// maximum_spell_block_% + /// + MaximumSpellBlockPct = 8204, + + /// + /// minion_accuracy_rating_+% + /// + MinionAccuracyRatingPct = 8205, + + /// + /// modifiers_to_totem_duration_also_affect_soul_prevention_duration + /// + ModifiersToTotemDurationAlsoAffectSoulPreventionDuration = 8206, + + /// + /// in_grace_period + /// + InGracePeriod = 8207, + + /// + /// combined_base_spell_block_% + /// + CombinedBaseSpellBlockPct = 8208, + + /// + /// spell_block_equals_attack_block + /// + SpellBlockEqualsAttackBlock = 8209, + + /// + /// local_item_sell_price_doubled + /// + LocalItemSellPriceDoubled = 8210, + + /// + /// base_number_of_relics_allowed + /// + BaseNumberOfRelicsAllowed = 8211, + + /// + /// number_of_relics_allowed + /// + NumberOfRelicsAllowed = 8212, + + /// + /// number_of_active_relics + /// + NumberOfActiveRelics = 8213, + + /// + /// holy_relic_trigger_on_parent_attack_% + /// + HolyRelicTriggerOnParentAttackPct = 8214, + + /// + /// local_display_nearby_enemy_fire_damage_resistance_% + /// + LocalDisplayNearbyEnemyFireDamageResistancePct = 8215, + + /// + /// local_display_nearby_enemy_cold_damage_resistance_% + /// + LocalDisplayNearbyEnemyColdDamageResistancePct = 8216, + + /// + /// local_display_nearby_enemy_lightning_damage_resistance_% + /// + LocalDisplayNearbyEnemyLightningDamageResistancePct = 8217, + + /// + /// local_display_nearby_enemy_chaos_damage_resistance_% + /// + LocalDisplayNearbyEnemyChaosDamageResistancePct = 8218, + + /// + /// local_display_nearby_enemy_physical_damage_taken_+% + /// + LocalDisplayNearbyEnemyPhysicalDamageTakenPct = 8219, + + /// + /// chance_to_intimidate_on_hit_% + /// + ChanceToIntimidateOnHitPct = 8220, + + /// + /// physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently + /// + PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently = 8221, + + /// + /// evasion_rating_+_if_you_have_hit_an_enemy_recently + /// + EvasionRatingIfYouHaveHitAnEnemyRecently = 8222, + + /// + /// energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently + /// + EnergyShieldRegenerationRatePerMinutePctIfYouHaveHitAnEnemyRecently = 8223, + + /// + /// maximum_energy_shield_from_body_armour_+% + /// + MaximumEnergyShieldFromBodyArmourPct = 8224, + + /// + /// base_body_armour_maximum_energy_shield + /// + BaseBodyArmourMaximumEnergyShield = 8225, + + /// + /// local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon + /// + LocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 8226, + + /// + /// local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon + /// + LocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 8227, + + /// + /// local_display_socketed_spell_damage_+%_final + /// + LocalDisplaySocketedSpellDamagePctFinal = 8228, + + /// + /// local_display_socketed_attack_damage_+%_final + /// + LocalDisplaySocketedAttackDamagePctFinal = 8229, + + /// + /// minimum_added_physical_damage_vs_poisoned_enemies + /// + MinimumAddedPhysicalDamageVsPoisonedEnemies = 8230, + + /// + /// maximum_added_physical_damage_vs_poisoned_enemies + /// + MaximumAddedPhysicalDamageVsPoisonedEnemies = 8231, + + /// + /// minimum_added_physical_damage_vs_bleeding_enemies + /// + MinimumAddedPhysicalDamageVsBleedingEnemies = 8232, + + /// + /// maximum_added_physical_damage_vs_bleeding_enemies + /// + MaximumAddedPhysicalDamageVsBleedingEnemies = 8233, + + /// + /// local_display_socketed_skills_cast_speed_+% + /// + LocalDisplaySocketedSkillsCastSpeedPct = 8234, + + /// + /// local_display_socketed_spells_mana_cost_+% + /// + LocalDisplaySocketedSpellsManaCostPct = 8235, + + /// + /// local_display_socketed_skills_attack_speed_+% + /// + LocalDisplaySocketedSkillsAttackSpeedPct = 8236, + + /// + /// local_display_socketed_attacks_mana_cost_+ + /// + LocalDisplaySocketedAttacksManaCost = 8237, + + /// + /// maximum_spell_block_chance_per_50_strength + /// + MaximumSpellBlockChancePer50Strength = 8238, + + /// + /// block_chance_%_per_50_strength + /// + BlockChancePctPer50Strength = 8239, + + /// + /// base_maximum_spell_block_% + /// + BaseMaximumSpellBlockPct = 8240, + + /// + /// local_display_nearby_enemies_stun_and_block_recovery_+% + /// + LocalDisplayNearbyEnemiesStunAndBlockRecoveryPct = 8241, + + /// + /// local_display_nearby_enemies_flask_charges_granted_+% + /// + LocalDisplayNearbyEnemiesFlaskChargesGrantedPct = 8242, + + /// + /// local_display_hits_against_nearby_enemies_critical_strike_chance_+50% + /// + LocalDisplayHitsAgainstNearbyEnemiesCriticalStrikeChance50Pct = 8243, + + /// + /// virtual_gain_flask_charge_on_crit_chance_% + /// + VirtualGainFlaskChargeOnCritChancePct = 8244, + + /// + /// gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges + /// + GainFlaskChargeOnCritChancePctWhileAtMaximumFrenzyCharges = 8245, + + /// + /// movement_speed_+%_per_endurance_charge + /// + MovementSpeedPctPerEnduranceCharge = 8246, + + /// + /// movement_speed_+%_per_power_charge + /// + MovementSpeedPctPerPowerCharge = 8247, + + /// + /// life_regeneration_rate_per_minute_%_per_power_charge + /// + LifeRegenerationRatePerMinutePctPerPowerCharge = 8248, + + /// + /// minimum_added_fire_damage_per_endurance_charge + /// + MinimumAddedFireDamagePerEnduranceCharge = 8249, + + /// + /// maximum_added_fire_damage_per_endurance_charge + /// + MaximumAddedFireDamagePerEnduranceCharge = 8250, + + /// + /// minimum_added_lightning_damage_per_power_charge + /// + MinimumAddedLightningDamagePerPowerCharge = 8251, + + /// + /// maximum_added_lightning_damage_per_power_charge + /// + MaximumAddedLightningDamagePerPowerCharge = 8252, + + /// + /// additional_attack_block_%_per_endurance_charge + /// + AdditionalAttackBlockPctPerEnduranceCharge = 8253, + + /// + /// additional_attack_block_%_per_frenzy_charge + /// + AdditionalAttackBlockPctPerFrenzyCharge = 8254, + + /// + /// additional_attack_block_%_per_power_charge + /// + AdditionalAttackBlockPctPerPowerCharge = 8255, + + /// + /// chance_to_dodge_attacks_%_per_endurance_charge + /// + ChanceToDodgeAttacksPctPerEnduranceCharge = 8256, + + /// + /// chance_to_dodge_attacks_%_per_power_charge + /// + ChanceToDodgeAttacksPctPerPowerCharge = 8257, + + /// + /// fire_damage_%_to_add_as_chaos_per_endurance_charge + /// + FireDamagePctToAddAsChaosPerEnduranceCharge = 8258, + + /// + /// cold_damage_%_to_add_as_chaos_per_frenzy_charge + /// + ColdDamagePctToAddAsChaosPerFrenzyCharge = 8259, + + /// + /// lightning_damage_%_to_add_as_chaos_per_power_charge + /// + LightningDamagePctToAddAsChaosPerPowerCharge = 8260, + + /// + /// physical_damage_reduction_rating_+%_per_endurance_charge + /// + PhysicalDamageReductionRatingPctPerEnduranceCharge = 8261, + + /// + /// energy_shield_+%_per_power_charge + /// + EnergyShieldPctPerPowerCharge = 8262, + + /// + /// gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance + /// + GainMaximumFrenzyChargesOnFrenzyChargeGainedPctChance = 8263, + + /// + /// attack_and_cast_speed_+%_per_endurance_charge + /// + AttackAndCastSpeedPctPerEnduranceCharge = 8264, + + /// + /// attack_and_cast_speed_+%_per_power_charge + /// + AttackAndCastSpeedPctPerPowerCharge = 8265, + + /// + /// critical_strike_chance_+%_per_endurance_charge + /// + CriticalStrikeChancePctPerEnduranceCharge = 8266, + + /// + /// critical_strike_chance_+%_per_frenzy_charge + /// + CriticalStrikeChancePctPerFrenzyCharge = 8267, + + /// + /// physical_damage_reduction_percent_per_frenzy_charge + /// + PhysicalDamageReductionPercentPerFrenzyCharge = 8268, + + /// + /// physical_damage_reduction_percent_per_power_charge + /// + PhysicalDamageReductionPercentPerPowerCharge = 8269, + + /// + /// gain_vaal_pact_while_at_maximum_endurance_charges + /// + GainVaalPactWhileAtMaximumEnduranceCharges = 8270, + + /// + /// gain_iron_reflexes_while_at_maximum_frenzy_charges + /// + GainIronReflexesWhileAtMaximumFrenzyCharges = 8271, + + /// + /// gain_mind_over_matter_while_at_maximum_power_charges + /// + GainMindOverMatterWhileAtMaximumPowerCharges = 8272, + + /// + /// local_grants_aura_minimum_added_fire_damage_per_red_socket + /// + LocalGrantsAuraMinimumAddedFireDamagePerRedSocket = 8273, + + /// + /// local_grants_aura_maximum_added_fire_damage_per_red_socket + /// + LocalGrantsAuraMaximumAddedFireDamagePerRedSocket = 8274, + + /// + /// local_grants_aura_minimum_added_cold_damage_per_green_socket + /// + LocalGrantsAuraMinimumAddedColdDamagePerGreenSocket = 8275, + + /// + /// local_grants_aura_maximum_added_cold_damage_per_green_socket + /// + LocalGrantsAuraMaximumAddedColdDamagePerGreenSocket = 8276, + + /// + /// local_grants_aura_minimum_added_lightning_damage_per_blue_socket + /// + LocalGrantsAuraMinimumAddedLightningDamagePerBlueSocket = 8277, + + /// + /// local_grants_aura_maximum_added_lightning_damage_per_blue_socket + /// + LocalGrantsAuraMaximumAddedLightningDamagePerBlueSocket = 8278, + + /// + /// local_grants_aura_minimum_added_chaos_damage_per_white_socket + /// + LocalGrantsAuraMinimumAddedChaosDamagePerWhiteSocket = 8279, + + /// + /// local_grants_aura_maximum_added_chaos_damage_per_white_socket + /// + LocalGrantsAuraMaximumAddedChaosDamagePerWhiteSocket = 8280, + + /// + /// virtual_keystone_mind_over_matter + /// + VirtualKeystoneMindOverMatter = 8281, + + /// + /// delve_mod_spell_damage_+%_final + /// + DelveModSpellDamagePctFinal = 8282, + + /// + /// delve_mod_attack_damage_+%_final + /// + DelveModAttackDamagePctFinal = 8283, + + /// + /// delve_sulphite_capacity + /// + DelveSulphiteCapacity = 8284, + + /// + /// delve_flare_capacity + /// + DelveFlareCapacity = 8285, + + /// + /// delve_dynamite_capacity + /// + DelveDynamiteCapacity = 8286, + + /// + /// delve_light_radius_+% + /// + DelveLightRadiusPct = 8287, + + /// + /// delve_flare_radius_+% + /// + DelveFlareRadiusPct = 8288, + + /// + /// delve_dynamite_radius_+% + /// + DelveDynamiteRadiusPct = 8289, + + /// + /// delve_dynamite_damage_+% + /// + DelveDynamiteDamagePct = 8290, + + /// + /// delve_darkness_resistance_% + /// + DelveDarknessResistancePct = 8291, + + /// + /// delve_flare_duration_+% + /// + DelveFlareDurationPct = 8292, + + /// + /// physical_damage_reduction_rating_per_5_evasion_on_shield + /// + PhysicalDamageReductionRatingPer5EvasionOnShield = 8293, + + /// + /// evasion_rating_+_per_5_maximum_energy_shield_on_shield + /// + EvasionRatingPer5MaximumEnergyShieldOnShield = 8294, + + /// + /// maximum_energy_shield_+_per_5_armour_on_shield + /// + MaximumEnergyShieldPer5ArmourOnShield = 8295, + + /// + /// life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance + /// + LifeLeechFromSpellDamagePermyriadIfShieldHas30PctBlockChance = 8296, + + /// + /// local_display_nearby_enemies_all_resistances_% + /// + LocalDisplayNearbyEnemiesAllResistancesPct = 8297, + + /// + /// support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final + /// + SupportPhysChaosProjectileSpellPhysicalProjectileDamagePctFinal = 8298, + + /// + /// support_phys_chaos_projectile_physical_damage_over_time_+%_final + /// + SupportPhysChaosProjectilePhysicalDamageOverTimePctFinal = 8299, + + /// + /// support_phys_chaos_projectile_chaos_damage_over_time_+%_final + /// + SupportPhysChaosProjectileChaosDamageOverTimePctFinal = 8300, + + /// + /// combined_spell_physical_damage_pluspercent_final + /// + CombinedSpellPhysicalDamagePluspercentFinal = 8301, + + /// + /// chance_to_double_armour_effect_on_hit_% + /// + ChanceToDoubleArmourEffectOnHitPct = 8302, + + /// + /// minion_targeting_use_parent_location + /// + MinionTargetingUseParentLocation = 8303, + + /// + /// minion_aggro_range_scaled_by_distance_to_parent_target + /// + MinionAggroRangeScaledByDistanceToParentTarget = 8304, + + /// + /// support_chaos_attacks_damage_+%_final + /// + SupportChaosAttacksDamagePctFinal = 8305, + + /// + /// intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_% + /// + IntimidateOnHitChanceWithAttacksWhileAtMaximumEnduranceChargesPct = 8306, + + /// + /// gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_% + /// + GainOnslaughtOnHitChanceWhileAtMaximumFrenzyChargesPct = 8307, + + /// + /// gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_% + /// + GainArcaneSurgeOnHitChanceWithSpellsWhileAtMaximumPowerChargesPct = 8308, + + /// + /// number_of_additional_curses_allowed_while_at_maximum_power_charges + /// + NumberOfAdditionalCursesAllowedWhileAtMaximumPowerCharges = 8309, + + /// + /// virtual_number_of_additional_curses_allowed + /// + VirtualNumberOfAdditionalCursesAllowed = 8310, + + /// + /// on_weapon_global_damage_+% + /// + OnWeaponGlobalDamagePct = 8311, + + /// + /// anger_reserves_no_mana + /// + AngerReservesNoMana = 8312, + + /// + /// clarity_reserves_no_mana + /// + ClarityReservesNoMana = 8313, + + /// + /// determination_reserves_no_mana + /// + DeterminationReservesNoMana = 8314, + + /// + /// discipline_reserves_no_mana + /// + DisciplineReservesNoMana = 8315, + + /// + /// grace_reserves_no_mana + /// + GraceReservesNoMana = 8316, + + /// + /// haste_reserves_no_mana + /// + HasteReservesNoMana = 8317, + + /// + /// hatred_reserves_no_mana + /// + HatredReservesNoMana = 8318, + + /// + /// purity_of_elements_reserves_no_mana + /// + PurityOfElementsReservesNoMana = 8319, + + /// + /// purity_of_fire_reserves_no_mana + /// + PurityOfFireReservesNoMana = 8320, + + /// + /// purity_of_ice_reserves_no_mana + /// + PurityOfIceReservesNoMana = 8321, + + /// + /// purity_of_lightning_reserves_no_mana + /// + PurityOfLightningReservesNoMana = 8322, + + /// + /// vitality_reserves_no_mana + /// + VitalityReservesNoMana = 8323, + + /// + /// wrath_reserves_no_mana + /// + WrathReservesNoMana = 8324, + + /// + /// envy_reserves_no_mana + /// + EnvyReservesNoMana = 8325, + + /// + /// local_display_socketed_gems_supported_by_level_x_chaos_attacks + /// + LocalDisplaySocketedGemsSupportedByLevelXChaosAttacks = 8326, + + /// + /// have_your_skills_crit_recently + /// + HaveYourSkillsCritRecently = 8327, + + /// + /// track_have_your_skills_crit_recently + /// + TrackHaveYourSkillsCritRecently = 8328, + + /// + /// delve_flare_duration_ms_+ + /// + DelveFlareDurationMs = 8329, + + /// + /// display_map_augmentable_boss + /// + DisplayMapAugmentableBoss = 8330, + + /// + /// virtual_poison_damage_+100%_final_chance + /// + VirtualPoisonDamage100PctFinalChance = 8331, + + /// + /// pathfinder_poison_damage_+100%_final_chance_during_flask_effect + /// + PathfinderPoisonDamage100PctFinalChanceDuringFlaskEffect = 8332, + + /// + /// chaos_skills_area_of_effect_+% + /// + ChaosSkillsAreaOfEffectPct = 8333, + + /// + /// minions_chance_to_intimidate_on_hit_% + /// + MinionsChanceToIntimidateOnHitPct = 8334, + + /// + /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently + /// + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfYouHitAnEnemyRecently = 8335, + + /// + /// herald_of_light_buff_effect_+% + /// + HeraldOfLightBuffEffectPct = 8336, + + /// + /// herald_of_light_minion_area_of_effect_+% + /// + HeraldOfLightMinionAreaOfEffectPct = 8337, + + /// + /// area_of_effect_+%_per_active_herald_of_light_minion + /// + AreaOfEffectPctPerActiveHeraldOfLightMinion = 8338, + + /// + /// herald_of_light_and_dominating_blow_minions_use_holy_slam + /// + HeraldOfLightAndDominatingBlowMinionsUseHolySlam = 8339, + + /// + /// herald_of_agony_buff_drop_off_speed_+% + /// + HeraldOfAgonyBuffDropOffSpeedPct = 8340, + + /// + /// damage_+%_final_with_at_least_1_nearby_ally + /// + DamagePctFinalWithAtLeast1NearbyAlly = 8341, + + /// + /// number_of_nearby_allies + /// + NumberOfNearbyAllies = 8342, + + /// + /// track_number_of_nearby_allies + /// + TrackNumberOfNearbyAllies = 8343, + + /// + /// override_turn_duration_ms + /// + OverrideTurnDurationMs = 8344, + + /// + /// minimum_rain_of_spores_movement_speed_+%_final_cap + /// + MinimumRainOfSporesMovementSpeedPctFinalCap = 8345, + + /// + /// number_of_active_herald_of_light_minions + /// + NumberOfActiveHeraldOfLightMinions = 8346, + + /// + /// uses_holy_slam_skill + /// + UsesHolySlamSkill = 8347, + + /// + /// secondary_minion_duration + /// + SecondaryMinionDuration = 8348, + + /// + /// apply_azurite_debuff_on_hit_ms + /// + ApplyAzuriteDebuffOnHitMs = 8349, + + /// + /// delve_monster_life_+%_final + /// + DelveMonsterLifePctFinal = 8350, + + /// + /// delve_monster_damage_+%_final + /// + DelveMonsterDamagePctFinal = 8351, + + /// + /// additive_modifiers_to_bow_damage_also_apply_to_minions + /// + AdditiveModifiersToBowDamageAlsoApplyToMinions = 8352, + + /// + /// minion_bow_damage_+% + /// + MinionBowDamagePct = 8353, + + /// + /// minion_physical_bow_damage_+% + /// + MinionPhysicalBowDamagePct = 8354, + + /// + /// minion_fire_bow_damage_+% + /// + MinionFireBowDamagePct = 8355, + + /// + /// minion_cold_bow_damage_+% + /// + MinionColdBowDamagePct = 8356, + + /// + /// minion_lightning_bow_damage_+% + /// + MinionLightningBowDamagePct = 8357, + + /// + /// minion_chaos_bow_damage_+% + /// + MinionChaosBowDamagePct = 8358, + + /// + /// minion_elemental_bow_damage_+% + /// + MinionElementalBowDamagePct = 8359, + + /// + /// lightning_bow_damage_+% + /// + LightningBowDamagePct = 8360, + + /// + /// chaos_bow_damage_+% + /// + ChaosBowDamagePct = 8361, + + /// + /// current_delve_degen_stacks + /// + CurrentDelveDegenStacks = 8362, + + /// + /// max_delve_degen_stacks + /// + MaxDelveDegenStacks = 8363, + + /// + /// spell_block_luck + /// + SpellBlockLuck = 8364, + + /// + /// base_spell_block_luck + /// + BaseSpellBlockLuck = 8365, + + /// + /// current_azurite_debuff_stacks + /// + CurrentAzuriteDebuffStacks = 8366, + + /// + /// max_azurite_debuff_stacks + /// + MaxAzuriteDebuffStacks = 8367, + + /// + /// ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final + /// + AscendancyPathfinderChaosDamageWithAttackSkillsPctFinal = 8368, + + /// + /// monster_ignores_delve_darkness_mechanic + /// + MonsterIgnoresDelveDarknessMechanic = 8369, + + /// + /// skill_withered_duration_ms + /// + SkillWitheredDurationMs = 8370, + + /// + /// support_withered_base_duration_ms + /// + SupportWitheredBaseDurationMs = 8371, + + /// + /// withered_on_hit_chance_% + /// + WitheredOnHitChancePct = 8372, + + /// + /// combined_attack_speed_+% + /// + CombinedAttackSpeedPct = 8373, + + /// + /// combined_main_hand_attack_speed_+% + /// + CombinedMainHandAttackSpeedPct = 8374, + + /// + /// combined_off_hand_attack_speed_+% + /// + CombinedOffHandAttackSpeedPct = 8375, + + /// + /// combined_attack_speed_+%_final + /// + CombinedAttackSpeedPctFinal = 8376, + + /// + /// distribute_additional_projectiles_over_contact_points + /// + DistributeAdditionalProjectilesOverContactPoints = 8377, + + /// + /// number_of_blood_meteors_to_create + /// + NumberOfBloodMeteorsToCreate = 8378, + + /// + /// number_of_blood_meteors_to_fire + /// + NumberOfBloodMeteorsToFire = 8379, + + /// + /// no_experience_gain + /// + NoExperienceGain = 8380, + + /// + /// delve_darkness_damage_taken_per_minute + /// + DelveDarknessDamageTakenPerMinute = 8381, + + /// + /// delve_base_darkness_damage_percent_of_maximum_life_taken_per_minute + /// + DelveBaseDarknessDamagePercentOfMaximumLifeTakenPerMinute = 8382, + + /// + /// delve_base_darkness_damage_percent_of_maximum_energy_shield_taken_per_minute + /// + DelveBaseDarknessDamagePercentOfMaximumEnergyShieldTakenPerMinute = 8383, + + /// + /// delve_total_darkness_damage_taken_per_minute + /// + DelveTotalDarknessDamageTakenPerMinute = 8384, + + /// + /// holy_relic_cooldown_recovery_+% + /// + HolyRelicCooldownRecoveryPct = 8385, + + /// + /// smite_chance_for_lighting_to_strike_extra_target_% + /// + SmiteChanceForLightingToStrikeExtraTargetPct = 8386, + + /// + /// smite_aura_effect_+% + /// + SmiteAuraEffectPct = 8387, + + /// + /// holy_path_teleport_range_+% + /// + HolyPathTeleportRangePct = 8388, + + /// + /// holy_relic_area_of_effect_+% + /// + HolyRelicAreaOfEffectPct = 8389, + + /// + /// holy_relic_damage_+% + /// + HolyRelicDamagePct = 8390, + + /// + /// holy_relic_buff_effect_+% + /// + HolyRelicBuffEffectPct = 8391, + + /// + /// mana_regeneration_rate_per_minute_%_if_enemy_hit_recently + /// + ManaRegenerationRatePerMinutePctIfEnemyHitRecently = 8392, + + /// + /// movement_speed_+%_if_enemy_hit_recently + /// + MovementSpeedPctIfEnemyHitRecently = 8393, + + /// + /// attack_and_cast_speed_+%_if_enemy_hit_recently + /// + AttackAndCastSpeedPctIfEnemyHitRecently = 8394, + + /// + /// cannot_be_shocked_or_ignited_while_moving + /// + CannotBeShockedOrIgnitedWhileMoving = 8395, + + /// + /// cannot_be_chilled_or_frozen_while_moving + /// + CannotBeChilledOrFrozenWhileMoving = 8396, + + /// + /// chance_to_gain_onslaught_on_flask_use_% + /// + ChanceToGainOnslaughtOnFlaskUsePct = 8397, + + /// + /// add_frenzy_charge_when_hit_% + /// + AddFrenzyChargeWhenHitPct = 8398, + + /// + /// mana_regeneration_rate_per_minute_if_enemy_hit_recently + /// + ManaRegenerationRatePerMinuteIfEnemyHitRecently = 8399, + + /// + /// curse_on_hit_level_frostbite + /// + CurseOnHitLevelFrostbite = 8400, + + /// + /// curse_on_hit_level_conductivity + /// + CurseOnHitLevelConductivity = 8401, + + /// + /// gain_spirit_charge_every_x_ms + /// + GainSpiritChargeEveryXMs = 8402, + + /// + /// lose_spirit_charges_on_savage_hit_taken + /// + LoseSpiritChargesOnSavageHitTaken = 8403, + + /// + /// gain_%_es_when_spirit_charge_expires_or_consumed + /// + GainPctEsWhenSpiritChargeExpiresOrConsumed = 8404, + + /// + /// skill_buff_grants_chance_to_poison_% + /// + SkillBuffGrantsChanceToPoisonPct = 8405, + + /// + /// active_skill_withered_base_duration_ms + /// + ActiveSkillWitheredBaseDurationMs = 8406, + + /// + /// caustic_arrow_withered_base_duration_ms + /// + CausticArrowWitheredBaseDurationMs = 8407, + + /// + /// caustic_arrow_withered_on_hit_% + /// + CausticArrowWitheredOnHitPct = 8408, + + /// + /// herald_scorpion_number_of_additional_projectiles + /// + HeraldScorpionNumberOfAdditionalProjectiles = 8409, + + /// + /// virulent_arrow_chance_to_poison_%_per_stage + /// + VirulentArrowChanceToPoisonPctPerStage = 8410, + + /// + /// virulent_arrow_additional_spores_at_max_stages + /// + VirulentArrowAdditionalSporesAtMaxStages = 8411, + + /// + /// smite_damage_+% + /// + SmiteDamagePct = 8412, + + /// + /// consecrated_path_damage_+% + /// + ConsecratedPathDamagePct = 8413, + + /// + /// consecrated_path_area_of_effect_+% + /// + ConsecratedPathAreaOfEffectPct = 8414, + + /// + /// herald_of_purity_mana_reservation_+% + /// + HeraldOfPurityManaReservationPct = 8415, + + /// + /// herald_of_agony_mana_reservation_+% + /// + HeraldOfAgonyManaReservationPct = 8416, + + /// + /// scourge_arrow_damage_+% + /// + ScourgeArrowDamagePct = 8417, + + /// + /// toxic_rain_damage_+% + /// + ToxicRainDamagePct = 8418, + + /// + /// toxic_rain_num_of_additional_projectiles + /// + ToxicRainNumOfAdditionalProjectiles = 8419, + + /// + /// toxic_rain_physical_damage_%_to_add_as_chaos + /// + ToxicRainPhysicalDamagePctToAddAsChaos = 8420, + + /// + /// number_of_support_ghosts_allowed + /// + NumberOfSupportGhostsAllowed = 8421, + + /// + /// player_in_breach + /// + PlayerInBreach = 8422, + + /// + /// virtual_spread_poison_to_nearby_enemies_on_kill + /// + VirtualSpreadPoisonToNearbyEnemiesOnKill = 8423, + + /// + /// unique_spread_poison_to_nearby_enemies_during_flask_effect + /// + UniqueSpreadPoisonToNearbyEnemiesDuringFlaskEffect = 8424, + + /// + /// elemental_hit_deals_50%_less_fire_damage + /// + ElementalHitDeals50PctLessFireDamage = 8425, + + /// + /// elemental_hit_deals_50%_less_cold_damage + /// + ElementalHitDeals50PctLessColdDamage = 8426, + + /// + /// elemental_hit_deals_50%_less_lightning_damage + /// + ElementalHitDeals50PctLessLightningDamage = 8427, + + /// + /// local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex + /// + LocalUniqueJewelElementalHit50PctLessFireDamagePer40IntAndDex = 8428, + + /// + /// local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int + /// + LocalUniqueJewelElementalHit50PctLessColdDamagePer40StrAndInt = 8429, + + /// + /// local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex + /// + LocalUniqueJewelElementalHit50PctLessLightningDamagePer40StrAndDex = 8430, + + /// + /// active_skill_fire_damage_+%_final_from_skill_specific_stat + /// + ActiveSkillFireDamagePctFinalFromSkillSpecificStat = 8431, + + /// + /// active_skill_cold_damage_+%_final_from_skill_specific_stat + /// + ActiveSkillColdDamagePctFinalFromSkillSpecificStat = 8432, + + /// + /// active_skill_lightning_damage_+%_final_from_skill_specific_stat + /// + ActiveSkillLightningDamagePctFinalFromSkillSpecificStat = 8433, + + /// + /// spell_block_%_while_on_low_life + /// + SpellBlockPctWhileOnLowLife = 8434, + + /// + /// base_block_chance_%_from_shield + /// + BaseBlockChancePctFromShield = 8435, + + /// + /// skill_deals_50%_less_fire_damage + /// + SkillDeals50PctLessFireDamage = 8436, + + /// + /// skill_deals_50%_less_cold_damage + /// + SkillDeals50PctLessColdDamage = 8437, + + /// + /// skill_deals_50%_less_lightning_damage + /// + SkillDeals50PctLessLightningDamage = 8438, + + /// + /// melee_variation + /// + MeleeVariation = 8439, + + /// + /// map_monsters_penetrate_elemental_resistances_% + /// + MapMonstersPenetrateElementalResistancesPct = 8440, + + /// + /// map_monsters_remove_charges_on_hit_% + /// + MapMonstersRemoveChargesOnHitPct = 8441, + + /// + /// boss_maximum_life_+%_final + /// + BossMaximumLifePctFinal = 8442, + + /// + /// spell_block_with_bow_% + /// + SpellBlockWithBowPct = 8443, + + /// + /// gain_1_random_rare_monster_mod_on_kill_ms + /// + Gain1RandomRareMonsterModOnKillMs = 8444, + + /// + /// map_players_gain_1_random_rare_monster_mod_on_kill_ms + /// + MapPlayersGain1RandomRareMonsterModOnKillMs = 8445, + + /// + /// map_non_unique_items_drop_normal + /// + MapNonUniqueItemsDropNormal = 8446, + + /// + /// skill_socketed_item_inventory_id + /// + SkillSocketedItemInventoryId = 8447, + + /// + /// socketed_triggered_skills_use_weapon_attack_time_for_pvp_scaling + /// + SocketedTriggeredSkillsUseWeaponAttackTimeForPvpScaling = 8448, + + /// + /// from_self_minimum_added_chaos_damage_taken + /// + FromSelfMinimumAddedChaosDamageTaken = 8449, + + /// + /// from_self_maximum_added_chaos_damage_taken + /// + FromSelfMaximumAddedChaosDamageTaken = 8450, + + /// + /// frost_bolt_nova_number_of_frost_bolts_to_detonate + /// + FrostBoltNovaNumberOfFrostBoltsToDetonate = 8451, + + /// + /// ice_nova_number_of_frost_bolts_to_cast_on + /// + IceNovaNumberOfFrostBoltsToCastOn = 8452, + + /// + /// affected_by_herald_of_agony + /// + AffectedByHeraldOfAgony = 8453, + + /// + /// affected_by_herald_of_purity + /// + AffectedByHeraldOfPurity = 8454, + + /// + /// support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount + /// + SupportChillsAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8455, + + /// + /// support_chills_also_grant_cold_damage_taken_per_minute_+% + /// + SupportChillsAlsoGrantColdDamageTakenPerMinutePct = 8456, + + /// + /// cold_damage_taken_per_minute_+% + /// + ColdDamageTakenPerMinutePct = 8457, + + /// + /// map_uses_beast_catcher_rules + /// + MapUsesBeastCatcherRules = 8458, + + /// + /// action_speed_-%_from_chill + /// + ActionSpeedPctFromChill = 8459, + + /// + /// map_spawn_betrayals + /// + MapSpawnBetrayals = 8460, + + /// + /// frost_fury_base_fire_interval_ms + /// + FrostFuryBaseFireIntervalMs = 8461, + + /// + /// frost_fury_fire_speed_+%_per_stage + /// + FrostFuryFireSpeedPctPerStage = 8462, + + /// + /// frost_fury_current_number_of_stages + /// + FrostFuryCurrentNumberOfStages = 8463, + + /// + /// frost_fury_max_number_of_stages + /// + FrostFuryMaxNumberOfStages = 8464, + + /// + /// frost_fury_added_duration_per_stage_ms + /// + FrostFuryAddedDurationPerStageMs = 8465, + + /// + /// impaled_debuff_unmodified_phys_damage_to_deal + /// + ImpaledDebuffUnmodifiedPhysDamageToDeal = 8466, + + /// + /// impaled_debuff_base_duration_ms + /// + ImpaledDebuffBaseDurationMs = 8467, + + /// + /// attacks_impale_on_hit_%_chance + /// + AttacksImpaleOnHitPctChance = 8468, + + /// + /// impaled_debuff_number_of_reflected_hits + /// + ImpaledDebuffNumberOfReflectedHits = 8469, + + /// + /// delve_monster_curse_effect_+%_final + /// + DelveMonsterCurseEffectPctFinal = 8470, + + /// + /// intermediary_maximum_life_for_ailments + /// + IntermediaryMaximumLifeForAilments = 8471, + + /// + /// flicker_thrust_number_of_teleports + /// + FlickerThrustNumberOfTeleports = 8472, + + /// + /// local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius + /// + LocalUniqueJewelCausticArrowHitDamagePctWith40DexInRadius = 8473, + + /// + /// caustic_arrow_hit_damage_+% + /// + CausticArrowHitDamagePct = 8474, + + /// + /// local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius + /// + LocalUniqueJewelCausticArrowDamageOverTimePctWith40DexInRadius = 8475, + + /// + /// caustic_arrow_damage_over_time_+% + /// + CausticArrowDamageOverTimePct = 8476, + + /// + /// local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius + /// + LocalUniqueJewelCausticArrowChanceToPoisonPctVsEnemiesOnCausticGroundWith40DexInRadius = 8477, + + /// + /// caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground + /// + CausticArrowChanceToPoisonPctVsEnemiesOnCausticGround = 8478, + + /// + /// chance_to_poison_%_vs_enemies_on_caustic_ground + /// + ChanceToPoisonPctVsEnemiesOnCausticGround = 8479, + + /// + /// additional_projectiles_fired_with_distance_offset + /// + AdditionalProjectilesFiredWithDistanceOffset = 8480, + + /// + /// projectile_remove_default_spread + /// + ProjectileRemoveDefaultSpread = 8481, + + /// + /// base_sigil_repeat_frequency_ms + /// + BaseSigilRepeatFrequencyMs = 8482, + + /// + /// sigil_repeat_frequency_ms + /// + SigilRepeatFrequencyMs = 8483, + + /// + /// additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency + /// + AdditiveCastSpeedModifiersApplyToSigilRepeatFrequency = 8484, + + /// + /// sigil_repeat_frequency_+% + /// + SigilRepeatFrequencyPct = 8485, + + /// + /// base_total_number_of_sigils_allowed + /// + BaseTotalNumberOfSigilsAllowed = 8486, + + /// + /// base_number_of_sigils_allowed_per_target + /// + BaseNumberOfSigilsAllowedPerTarget = 8487, + + /// + /// conduit_sigil_number_of_beam_targets + /// + ConduitSigilNumberOfBeamTargets = 8488, + + /// + /// unaffected_by_life_modifiers + /// + UnaffectedByLifeModifiers = 8489, + + /// + /// impale_debuff_effect_+% + /// + ImpaleDebuffEffectPct = 8490, + + /// + /// attack_speed_+%_granted_from_skill + /// + AttackSpeedPctGrantedFromSkill = 8491, + + /// + /// physical_damage_from_hits_%_taken_as_random_element + /// + PhysicalDamageFromHitsPctTakenAsRandomElement = 8492, + + /// + /// local_display_socketed_gems_supported_by_level_x_greater_volley + /// + LocalDisplaySocketedGemsSupportedByLevelXGreaterVolley = 8493, + + /// + /// support_greater_volley_projectile_damage_+%_final + /// + SupportGreaterVolleyProjectileDamagePctFinal = 8494, + + /// + /// arrows_always_pierce_after_forking + /// + ArrowsAlwaysPierceAfterForking = 8495, + + /// + /// critical_strike_multiplier_for_arrows_that_pierce_+ + /// + CriticalStrikeMultiplierForArrowsThatPierce = 8496, + + /// + /// physical_damage_+%_while_you_have_resolute_technique + /// + PhysicalDamagePctWhileYouHaveResoluteTechnique = 8497, + + /// + /// chance_to_gain_unholy_might_on_kill_for_10_seconds_% + /// + ChanceToGainUnholyMightOnKillFor10SecondsPct = 8498, + + /// + /// Elemental Damage With Attack Skills +% + /// + ElementalDamageWithAttackSkillsPctPerPowerCharge = 8499, + + /// + /// local_display_nearby_allies_critical_strike_multiplier_+ + /// + LocalDisplayNearbyAlliesCriticalStrikeMultiplier = 8500, + + /// + /// local_display_nearby_allies_have_fortify + /// + LocalDisplayNearbyAlliesHaveFortify = 8501, + + /// + /// base_minimum_endurance_charges + /// + BaseMinimumEnduranceCharges = 8502, + + /// + /// minimum_endurance_charges + /// + MinimumEnduranceCharges = 8503, + + /// + /// base_minimum_frenzy_charges + /// + BaseMinimumFrenzyCharges = 8504, + + /// + /// minimum_frenzy_charges + /// + MinimumFrenzyCharges = 8505, + + /// + /// base_minimum_power_charges + /// + BaseMinimumPowerCharges = 8506, + + /// + /// minimum_power_charges + /// + MinimumPowerCharges = 8507, + + /// + /// betrayal_job_index + /// + BetrayalJobIndex = 8508, + + /// + /// veiled_mod_type + /// + VeiledModType = 8509, + + /// + /// has_focus + /// + HasFocus = 8510, + + /// + /// extra_critical_rolls_during_focus + /// + ExtraCriticalRollsDuringFocus = 8511, + + /// + /// virtual_extra_critical_rolls + /// + VirtualExtraCriticalRolls = 8512, + + /// + /// dodge_attacks_chance_%_during_focus + /// + DodgeAttacksChancePctDuringFocus = 8513, + + /// + /// additional_physical_damage_reduction_%_during_focus + /// + AdditionalPhysicalDamageReductionPctDuringFocus = 8514, + + /// + /// shock_nearby_enemies_for_x_ms_when_you_focus + /// + ShockNearbyEnemiesForXMsWhenYouFocus = 8515, + + /// + /// evasion_rating_%_as_life_regeneration_per_minute_during_focus + /// + EvasionRatingPctAsLifeRegenerationPerMinuteDuringFocus = 8516, + + /// + /// restore_energy_shield_and_mana_when_you_focus_% + /// + RestoreEnergyShieldAndManaWhenYouFocusPct = 8517, + + /// + /// banner_add_stage_on_kill + /// + BannerAddStageOnKill = 8518, + + /// + /// banner_add_stage_on_impale + /// + BannerAddStageOnImpale = 8519, + + /// + /// banner_area_of_effect_+%_per_stage + /// + BannerAreaOfEffectPctPerStage = 8520, + + /// + /// banner_buff_effect_+%_per_stage + /// + BannerBuffEffectPctPerStage = 8521, + + /// + /// banner_additional_base_duration_per_stage_ms + /// + BannerAdditionalBaseDurationPerStageMs = 8522, + + /// + /// bloodstained_banner_adrenaline_duration_per_stage_ms + /// + BloodstainedBannerAdrenalineDurationPerStageMs = 8523, + + /// + /// projectile_random_angle_based_on_distance_to_target_location_% + /// + ProjectileRandomAngleBasedOnDistanceToTargetLocationPct = 8524, + + /// + /// local_attacks_impale_on_hit_%_chance + /// + LocalAttacksImpaleOnHitPctChance = 8525, + + /// + /// main_hand_attacks_impale_on_hit_%_chance + /// + MainHandAttacksImpaleOnHitPctChance = 8526, + + /// + /// off_hand_attacks_impale_on_hit_%_chance + /// + OffHandAttacksImpaleOnHitPctChance = 8527, + + /// + /// active_skill_area_of_effect_+%_final_when_cast_on_frostbolt + /// + ActiveSkillAreaOfEffectPctFinalWhenCastOnFrostbolt = 8528, + + /// + /// ignore_skill_weapon_restrictions + /// + IgnoreSkillWeaponRestrictions = 8529, + + /// + /// puresteel_banner_accuracy_rating_+%_final + /// + PuresteelBannerAccuracyRatingPctFinal = 8530, + + /// + /// puresteel_banner_fortify_duration_per_stage_ms + /// + PuresteelBannerFortifyDurationPerStageMs = 8531, + + /// + /// puresteel_banner_fortify_effect_+%_per_stage + /// + PuresteelBannerFortifyEffectPctPerStage = 8532, + + /// + /// virtual_accuracy_rating_+%_final + /// + VirtualAccuracyRatingPctFinal = 8533, + + /// + /// arctic_breath_maximum_number_of_skulls_allowed + /// + ArcticBreathMaximumNumberOfSkullsAllowed = 8534, + + /// + /// damage_+%_final_vs_unique_monsters + /// + DamagePctFinalVsUniqueMonsters = 8535, + + /// + /// skill_is_shield_skill + /// + SkillIsShieldSkill = 8536, + + /// + /// damage_+%_with_shield_skills + /// + DamagePctWithShieldSkills = 8537, + + /// + /// attack_and_cast_speed_+%_with_shield_skills + /// + AttackAndCastSpeedPctWithShieldSkills = 8538, + + /// + /// additional_attack_block_%_if_used_shield_skill_recently + /// + AdditionalAttackBlockPctIfUsedShieldSkillRecently = 8539, + + /// + /// track_have_used_a_shield_skill_recently + /// + TrackHaveUsedAShieldSkillRecently = 8540, + + /// + /// have_used_a_shield_skill_recently + /// + HaveUsedAShieldSkillRecently = 8541, + + /// + /// damage_+%_with_shield_skills_per_2%_attack_block + /// + DamagePctWithShieldSkillsPer2PctAttackBlock = 8542, + + /// + /// spell_critical_strike_chance_+%_per_raised_spectre + /// + SpellCriticalStrikeChancePctPerRaisedSpectre = 8543, + + /// + /// gain_arcane_surge_on_crit_%_chance + /// + GainArcaneSurgeOnCritPctChance = 8544, + + /// + /// spectres_gain_arcane_surge_when_you_do + /// + SpectresGainArcaneSurgeWhenYouDo = 8545, + + /// + /// local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect + /// + LocalFlaskLifeLeechOnDamageTakenPctPermyriadDuringFlaskEffect = 8546, + + /// + /// life_leech_on_damage_taken_%_permyriad + /// + LifeLeechOnDamageTakenPctPermyriad = 8547, + + /// + /// gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster + /// + GainShapersPresenceFor10SecondsOnKillingRareOrUniqueMonster = 8548, + + /// + /// local_flask_life_regeneration_per_minute_%_during_flask_effect + /// + LocalFlaskLifeRegenerationPerMinutePctDuringFlaskEffect = 8549, + + /// + /// local_flask_avoid_stun_chance_%_during_flask_effect + /// + LocalFlaskAvoidStunChancePctDuringFlaskEffect = 8550, + + /// + /// local_flask_skill_mana_cost_+%_during_flask_effect + /// + LocalFlaskSkillManaCostPctDuringFlaskEffect = 8551, + + /// + /// local_flask_item_found_rarity_+%_during_flask_effect + /// + LocalFlaskItemFoundRarityPctDuringFlaskEffect = 8552, + + /// + /// local_flask_critical_strike_chance_+%_during_flask_effect + /// + LocalFlaskCriticalStrikeChancePctDuringFlaskEffect = 8553, + + /// + /// energy_shield_recharges_on_skill_use_chance_% + /// + EnergyShieldRechargesOnSkillUseChancePct = 8554, + + /// + /// avoid_elemental_damage_chance_%_during_soul_gain_prevention + /// + AvoidElementalDamageChancePctDuringSoulGainPrevention = 8555, + + /// + /// physical_damage_reduction_rating_during_soul_gain_prevention + /// + PhysicalDamageReductionRatingDuringSoulGainPrevention = 8556, + + /// + /// gain_onslaught_during_soul_gain_prevention + /// + GainOnslaughtDuringSoulGainPrevention = 8557, + + /// + /// damage_+%_with_non_vaal_skills_during_soul_gain_prevention + /// + DamagePctWithNonVaalSkillsDuringSoulGainPrevention = 8558, + + /// + /// chance_to_deal_double_damage_%_while_focused + /// + ChanceToDealDoubleDamagePctWhileFocused = 8559, + + /// + /// attack_and_cast_speed_+%_while_focused + /// + AttackAndCastSpeedPctWhileFocused = 8560, + + /// + /// status_ailments_you_inflict_duration_+%_while_focused + /// + StatusAilmentsYouInflictDurationPctWhileFocused = 8561, + + /// + /// immune_to_status_ailments_while_focused + /// + ImmuneToStatusAilmentsWhileFocused = 8562, + + /// + /// life_leech_from_any_damage_permyriad_while_focused + /// + LifeLeechFromAnyDamagePermyriadWhileFocused = 8563, + + /// + /// fortify_effect_+%_while_focused + /// + FortifyEffectPctWhileFocused = 8564, + + /// + /// trigger_socketed_spells_when_you_focus_% + /// + TriggerSocketedSpellsWhenYouFocusPct = 8565, + + /// + /// damage_removed_from_mana_before_life_%_while_focused + /// + DamageRemovedFromManaBeforeLifePctWhileFocused = 8566, + + /// + /// minions_recover_%_maximum_life_when_you_focus + /// + MinionsRecoverPctMaximumLifeWhenYouFocus = 8567, + + /// + /// gain_vaal_pact_while_focused + /// + GainVaalPactWhileFocused = 8568, + + /// + /// skills_cost_no_mana_while_focused + /// + SkillsCostNoManaWhileFocused = 8569, + + /// + /// virtual_spell_critical_strike_chance_+% + /// + VirtualSpellCriticalStrikeChancePct = 8570, + + /// + /// master_damage_+%_final_vs_unique_monsters + /// + MasterDamagePctFinalVsUniqueMonsters = 8571, + + /// + /// grant_focus_skill + /// + GrantFocusSkill = 8572, + + /// + /// local_display_trigger_level_X_offering_every_5_seconds + /// + LocalDisplayTriggerLevelXOfferingEvery5Seconds = 8573, + + /// + /// local_display_trigger_level_X_feast_of_flesh_every_5_seconds + /// + LocalDisplayTriggerLevelXFeastOfFleshEvery5Seconds = 8574, + + /// + /// triggered_by_item_buff + /// + TriggeredByItemBuff = 8575, + + /// + /// number_of_corpses_to_consume + /// + NumberOfCorpsesToConsume = 8576, + + /// + /// feast_of_flesh_gain_X_life_per_corpse_consumed + /// + FeastOfFleshGainXLifePerCorpseConsumed = 8577, + + /// + /// feast_of_flesh_gain_X_mana_per_corpse_consumed + /// + FeastOfFleshGainXManaPerCorpseConsumed = 8578, + + /// + /// feast_of_flesh_gain_X_energy_shield_per_corpse_consumed + /// + FeastOfFleshGainXEnergyShieldPerCorpseConsumed = 8579, + + /// + /// map_music_override + /// + MapMusicOverride = 8580, + + /// + /// summon_2_totems + /// + Summon2Totems = 8581, + + /// + /// support_additional_totem_damage_+%_final + /// + SupportAdditionalTotemDamagePctFinal = 8582, + + /// + /// ignores_totem_cooldown_limit + /// + IgnoresTotemCooldownLimit = 8583, + + /// + /// number_of_additional_totems_to_summon + /// + NumberOfAdditionalTotemsToSummon = 8584, + + /// + /// local_socketed_gem_quality_+ + /// + LocalSocketedGemQuality = 8585, + + /// + /// gain_frenzy_charge_on_critical_strike_% + /// + GainFrenzyChargeOnCriticalStrikePct = 8586, + + /// + /// elemental_damage_+%_if_have_crit_recently + /// + ElementalDamagePctIfHaveCritRecently = 8587, + + /// + /// minimum_added_chaos_damage_if_have_crit_recently + /// + MinimumAddedChaosDamageIfHaveCritRecently = 8588, + + /// + /// maximum_added_chaos_damage_if_have_crit_recently + /// + MaximumAddedChaosDamageIfHaveCritRecently = 8589, + + /// + /// number_of_nearby_rare_monsters + /// + NumberOfNearbyRareMonsters = 8590, + + /// + /// number_of_nearby_unique_monsters + /// + NumberOfNearbyUniqueMonsters = 8591, + + /// + /// critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby + /// + CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby = 8592, + + /// + /// attack_speed_+%_if_rare_or_unique_enemy_nearby + /// + AttackSpeedPctIfRareOrUniqueEnemyNearby = 8593, + + /// + /// energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby + /// + EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby = 8594, + + /// + /// trigger_after_spending_200_mana_%_chance + /// + TriggerAfterSpending200ManaPctChance = 8595, + + /// + /// display_trigger_arcane_wake_after_spending_200_mana_%_chance + /// + DisplayTriggerArcaneWakeAfterSpending200ManaPctChance = 8596, + + /// + /// apply_taser_debuff_action_speed_-%_on_hit + /// + ApplyTaserDebuffActionSpeedPctOnHit = 8597, + + /// + /// sigil_attached_target_damage_+%_final + /// + SigilAttachedTargetDamagePctFinal = 8598, + + /// + /// sigil_attached_target_damage_+% + /// + SigilAttachedTargetDamagePct = 8599, + + /// + /// map_no_magic_items_drop + /// + MapNoMagicItemsDrop = 8600, + + /// + /// map_no_rare_items_drop + /// + MapNoRareItemsDrop = 8601, + + /// + /// map_players_resist_all_% + /// + MapPlayersResistAllPct = 8602, + + /// + /// map_no_stashes + /// + MapNoStashes = 8603, + + /// + /// map_no_vendors + /// + MapNoVendors = 8604, + + /// + /// current_removable_endurance_charges + /// + CurrentRemovableEnduranceCharges = 8605, + + /// + /// current_removable_frenzy_charges + /// + CurrentRemovableFrenzyCharges = 8606, + + /// + /// current_removable_power_charges + /// + CurrentRemovablePowerCharges = 8607, + + /// + /// map_spawn_hideout_subareas + /// + MapSpawnHideoutSubareas = 8608, + + /// + /// support_reduce_enemy_block_and_spell_block_% + /// + SupportReduceEnemyBlockAndSpellBlockPct = 8609, + + /// + /// support_reduce_enemy_dodge_and_spell_dodge_% + /// + SupportReduceEnemyDodgeAndSpellDodgePct = 8610, + + /// + /// two_handed_reduce_enemy_block_and_spell_block_% + /// + TwoHandedReduceEnemyBlockAndSpellBlockPct = 8611, + + /// + /// support_overpowered_base_duration_ms + /// + SupportOverpoweredBaseDurationMs = 8612, + + /// + /// support_overpowered_duration_ms + /// + SupportOverpoweredDurationMs = 8613, + + /// + /// apply_overpowered_on_enemy_block_reduced_block_and_spell_block_% + /// + ApplyOverpoweredOnEnemyBlockReducedBlockAndSpellBlockPct = 8614, + + /// + /// additional_weapon_base_attack_time_ms + /// + AdditionalWeaponBaseAttackTimeMs = 8615, + + /// + /// local_double_damage_with_attacks + /// + LocalDoubleDamageWithAttacks = 8616, + + /// + /// local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire + /// + LocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8617, + + /// + /// main_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire + /// + MainHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8618, + + /// + /// off_hand_local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire + /// + OffHandLocalChanceToBleedPctWhileYouDoNotHaveAvatarOfFire = 8619, + + /// + /// life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item + /// + LifeRegenerationRatePerMinuteForEachEquippedUncorruptedItem = 8620, + + /// + /// skill_mana_cost_+_for_each_equipped_corrupted_item + /// + SkillManaCostForEachEquippedCorruptedItem = 8621, + + /// + /// focus_cooldown_modifier_ms + /// + FocusCooldownModifierMs = 8622, + + /// + /// chill_nearby_enemies_when_you_focus + /// + ChillNearbyEnemiesWhenYouFocus = 8623, + + /// + /// hit_and_ailment_damage_+%_vs_chilled_enemies + /// + HitAndAilmentDamagePctVsChilledEnemies = 8624, + + /// + /// elemental_damage_+%_while_in_area_affected_by_sextant + /// + ElementalDamagePctWhileInAreaAffectedBySextant = 8625, + + /// + /// elemental_damage_+%_per_sextant_affecting_area + /// + ElementalDamagePctPerSextantAffectingArea = 8626, + + /// + /// local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing + /// + LocalUniqueFlaskAdditionalMaximumAllElementalResistancesPctWhileHealing = 8627, + + /// + /// chaos_non_ailment_damage_over_time_multiplier_+ + /// + ChaosNonAilmentDamageOverTimeMultiplier = 8628, + + /// + /// cold_dot_multiplier_+ + /// + ColdDotMultiplier = 8629, + + /// + /// shattering_steel_damage_+%_final_scaled_by_projectile_distance + /// + ShatteringSteelDamagePctFinalScaledByProjectileDistance = 8630, + + /// + /// map_prophecy_plugin_hash + /// + MapProphecyPluginHash = 8631, + + /// + /// map_enable_monster_logging + /// + MapEnableMonsterLogging = 8632, + + /// + /// display_attack_time_+% + /// + DisplayAttackTimePct = 8633, + + /// + /// main_hand_total_base_weapon_attack_duration_ms + /// + MainHandTotalBaseWeaponAttackDurationMs = 8634, + + /// + /// off_hand_total_base_weapon_attack_duration_ms + /// + OffHandTotalBaseWeaponAttackDurationMs = 8635, + + /// + /// sigil_damage_+% + /// + SigilDamagePct = 8636, + + /// + /// sigil_critical_strike_chance_+% + /// + SigilCriticalStrikeChancePct = 8637, + + /// + /// sigil_critical_strike_multiplier_+ + /// + SigilCriticalStrikeMultiplier = 8638, + + /// + /// sigil_duration_+% + /// + SigilDurationPct = 8639, + + /// + /// sigil_target_search_range_+% + /// + SigilTargetSearchRangePct = 8640, + + /// + /// recall_sigil_target_search_range_+% + /// + RecallSigilTargetSearchRangePct = 8641, + + /// + /// attack_speed_+%_per_explicit_map_mod_affecting_area + /// + AttackSpeedPctPerExplicitMapModAffectingArea = 8642, + + /// + /// physical_damage_+%_per_explicit_map_mod_affecting_area + /// + PhysicalDamagePctPerExplicitMapModAffectingArea = 8643, + + /// + /// player_number_of_explicit_map_mods_affecting_area + /// + PlayerNumberOfExplicitMapModsAffectingArea = 8644, + + /// + /// skill_is_brand_skill + /// + SkillIsBrandSkill = 8645, + + /// + /// you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently + /// + YouAndNearbyAlliesLifeRegenerationRatePerMinutePctIfHaveBlockedRecently = 8646, + + /// + /// track_have_rampaged_recently + /// + TrackHaveRampagedRecently = 8647, + + /// + /// have_rampaged_recently + /// + HaveRampagedRecently = 8648, + + /// + /// virtual_number_of_vaal_souls_to_gain_on_kill + /// + VirtualNumberOfVaalSoulsToGainOnKill = 8649, + + /// + /// number_of_vaal_souls_to_gain_on_kill + /// + NumberOfVaalSoulsToGainOnKill = 8650, + + /// + /// gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently + /// + GainAnAdditionalVaalSoulOnKillIfHaveRampagedRecently = 8651, + + /// + /// bleed_on_crit_%_with_attacks + /// + BleedOnCritPctWithAttacks = 8652, + + /// + /// maim_on_crit_%_with_attacks + /// + MaimOnCritPctWithAttacks = 8653, + + /// + /// enemies_you_bleed_grant_flask_charges_+% + /// + EnemiesYouBleedGrantFlaskChargesPct = 8654, + + /// + /// projectile_distance_variance + /// + ProjectileDistanceVariance = 8655, + + /// + /// current_number_of_active_conduit_sigils + /// + CurrentNumberOfActiveConduitSigils = 8656, + + /// + /// current_number_of_inactive_conduit_sigils + /// + CurrentNumberOfInactiveConduitSigils = 8657, + + /// + /// current_number_of_active_cataclysm_sigils + /// + CurrentNumberOfActiveCataclysmSigils = 8658, + + /// + /// current_number_of_inactive_cataclysm_sigils + /// + CurrentNumberOfInactiveCataclysmSigils = 8659, + + /// + /// ground_tar_on_block_base_area_of_effect_radius + /// + GroundTarOnBlockBaseAreaOfEffectRadius = 8660, + + /// + /// ground_tar_on_block_duration_ms + /// + GroundTarOnBlockDurationMs = 8661, + + /// + /// sigil_recall_cooldown_speed_+% + /// + SigilRecallCooldownSpeedPct = 8662, + + /// + /// current_total_number_of_sigils + /// + CurrentTotalNumberOfSigils = 8663, + + /// + /// number_of_totems_to_summon + /// + NumberOfTotemsToSummon = 8664, + + /// + /// temporal_chains_mana_reservation_+% + /// + TemporalChainsManaReservationPct = 8665, + + /// + /// buff_time_passed_+% + /// + BuffTimePassedPct = 8666, + + /// + /// virtual_projectiles_fork + /// + VirtualProjectilesFork = 8667, + + /// + /// projectiles_from_spells_fork + /// + ProjectilesFromSpellsFork = 8668, + + /// + /// virtual_projectiles_cannot_fork + /// + VirtualProjectilesCannotFork = 8669, + + /// + /// projectiles_from_spells_cannot_fork + /// + ProjectilesFromSpellsCannotFork = 8670, + + /// + /// virtual_number_of_chains_for_projectiles + /// + VirtualNumberOfChainsForProjectiles = 8671, + + /// + /// number_of_additional_chains_for_spell_projectiles + /// + NumberOfAdditionalChainsForSpellProjectiles = 8672, + + /// + /// virtual_projectiles_cannot_chain + /// + VirtualProjectilesCannotChain = 8673, + + /// + /// projectiles_from_spells_cannot_chain + /// + ProjectilesFromSpellsCannotChain = 8674, + + /// + /// local_left_ring_slot_projectiles_from_spells_cannot_chain + /// + LocalLeftRingSlotProjectilesFromSpellsCannotChain = 8675, + + /// + /// local_right_ring_slot_projectiles_from_spells_cannot_fork + /// + LocalRightRingSlotProjectilesFromSpellsCannotFork = 8676, + + /// + /// local_left_ring_slot_projectiles_from_spells_fork + /// + LocalLeftRingSlotProjectilesFromSpellsFork = 8677, + + /// + /// local_right_ring_slot_number_of_additional_chains_for_spell_projectiles + /// + LocalRightRingSlotNumberOfAdditionalChainsForSpellProjectiles = 8678, + + /// + /// virtual_projectiles_cannot_pierce + /// + VirtualProjectilesCannotPierce = 8679, + + /// + /// projectiles_from_spells_cannot_pierce + /// + ProjectilesFromSpellsCannotPierce = 8680, + + /// + /// summoned_spider_grants_attack_speed_+% + /// + SummonedSpiderGrantsAttackSpeedPct = 8681, + + /// + /// summoned_spider_grants_poison_damage_+% + /// + SummonedSpiderGrantsPoisonDamagePct = 8682, + + /// + /// skill_triggered_when_you_focus_chance_% + /// + SkillTriggeredWhenYouFocusChancePct = 8683, + + /// + /// volley_additional_projectiles_fire_parallel_x_dist + /// + VolleyAdditionalProjectilesFireParallelXDist = 8684, + + /// + /// greater_volley_additional_projectiles_fire_parallel_x_dist + /// + GreaterVolleyAdditionalProjectilesFireParallelXDist = 8685, + + /// + /// local_flask_enemies_ignited_during_flask_effect_damage_taken_+% + /// + LocalFlaskEnemiesIgnitedDuringFlaskEffectDamageTakenPct = 8686, + + /// + /// local_flask_gain_X_charges_on_consuming_ignited_corpse + /// + LocalFlaskGainXChargesOnConsumingIgnitedCorpse = 8687, + + /// + /// local_flask_recover_%_maximum_life_on_kill_during_flask_effect + /// + LocalFlaskRecoverPctMaximumLifeOnKillDuringFlaskEffect = 8688, + + /// + /// local_flask_recover_%_maximum_mana_on_kill_during_flask_effect + /// + LocalFlaskRecoverPctMaximumManaOnKillDuringFlaskEffect = 8689, + + /// + /// local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect + /// + LocalFlaskRecoverPctMaximumEnergyShieldOnKillDuringFlaskEffect = 8690, + + /// + /// ignited_enemies_damage_taken_+% + /// + IgnitedEnemiesDamageTakenPct = 8691, + + /// + /// betrayal_siege_cannon_beam_damage_+%_final + /// + BetrayalSiegeCannonBeamDamagePctFinal = 8692, + + /// + /// trigger_socketed_spell_on_skill_use_% + /// + TriggerSocketedSpellOnSkillUsePct = 8693, + + /// + /// main_hand_trigger_socketed_spell_on_skill_use_% + /// + MainHandTriggerSocketedSpellOnSkillUsePct = 8694, + + /// + /// off_hand_trigger_socketed_spell_on_skill_use_% + /// + OffHandTriggerSocketedSpellOnSkillUsePct = 8695, + + /// + /// local_item_quality_+ + /// + LocalItemQuality = 8696, + + /// + /// local_display_trigger_level_1_blood_rage_on_kill_chance_% + /// + LocalDisplayTriggerLevel1BloodRageOnKillChancePct = 8697, + + /// + /// gain_arcane_surge_on_kill_chance_% + /// + GainArcaneSurgeOnKillChancePct = 8698, + + /// + /// fire_and_chaos_damage_resistance_% + /// + FireAndChaosDamageResistancePct = 8699, + + /// + /// cold_and_chaos_damage_resistance_% + /// + ColdAndChaosDamageResistancePct = 8700, + + /// + /// lightning_and_chaos_damage_resistance_% + /// + LightningAndChaosDamageResistancePct = 8701, + + /// + /// utility_flask_fire_damage_taken_+%_final + /// + UtilityFlaskFireDamageTakenPctFinal = 8702, + + /// + /// utility_flask_cold_damage_taken_+%_final + /// + UtilityFlaskColdDamageTakenPctFinal = 8703, + + /// + /// utility_flask_lightning_damage_taken_+%_final + /// + UtilityFlaskLightningDamageTakenPctFinal = 8704, + + /// + /// local_life_leech_from_any_damage_permyriad + /// + LocalLifeLeechFromAnyDamagePermyriad = 8705, + + /// + /// main_hand_local_life_leech_from_any_damage_permyriad + /// + MainHandLocalLifeLeechFromAnyDamagePermyriad = 8706, + + /// + /// off_hand_local_life_leech_from_any_damage_permyriad + /// + OffHandLocalLifeLeechFromAnyDamagePermyriad = 8707, + + /// + /// local_mana_leech_from_any_damage_permyriad + /// + LocalManaLeechFromAnyDamagePermyriad = 8708, + + /// + /// main_hand_local_mana_leech_from_any_damage_permyriad + /// + MainHandLocalManaLeechFromAnyDamagePermyriad = 8709, + + /// + /// off_hand_local_mana_leech_from_any_damage_permyriad + /// + OffHandLocalManaLeechFromAnyDamagePermyriad = 8710, + + /// + /// spell_damage_+%_if_have_crit_in_past_8_seconds + /// + SpellDamagePctIfHaveCritInPast8Seconds = 8711, + + /// + /// life_regeneration_rate_per_minute_%_while_using_flask + /// + LifeRegenerationRatePerMinutePctWhileUsingFlask = 8712, + + /// + /// physical_damage_+%_vs_ignited_enemies + /// + PhysicalDamagePctVsIgnitedEnemies = 8713, + + /// + /// fire_damage_+%_vs_bleeding_enemies + /// + FireDamagePctVsBleedingEnemies = 8714, + + /// + /// shattering_steel_fortify_on_hit_close_range + /// + ShatteringSteelFortifyOnHitCloseRange = 8715, + + /// + /// fortify_on_hit_close_range + /// + FortifyOnHitCloseRange = 8716, + + /// + /// is_scorched + /// + IsScorched = 8717, + + /// + /// is_frostburned + /// + IsFrostburned = 8718, + + /// + /// is_sapped + /// + IsSapped = 8719, + + /// + /// chance_to_scorch_% + /// + ChanceToScorchPct = 8720, + + /// + /// chance_to_inflict_frostburn_% + /// + ChanceToInflictFrostburnPct = 8721, + + /// + /// chance_to_inflict_sapped_% + /// + ChanceToInflictSappedPct = 8722, + + /// + /// never_freeze_or_chill + /// + NeverFreezeOrChill = 8723, + + /// + /// virtual_never_freeze + /// + VirtualNeverFreeze = 8724, + + /// + /// virtual_never_chill + /// + VirtualNeverChill = 8725, + + /// + /// sapped_damage_+%_final + /// + SappedDamagePctFinal = 8726, + + /// + /// ground_consecration_art_variation + /// + GroundConsecrationArtVariation = 8727, + + /// + /// additional_chain_chance_% + /// + AdditionalChainChancePct = 8728, + + /// + /// storm_brand_additional_chain_chance_% + /// + StormBrandAdditionalChainChancePct = 8729, + + /// + /// sigil_attached_target_fire_penetration_% + /// + SigilAttachedTargetFirePenetrationPct = 8730, + + /// + /// sigil_attached_target_lightning_penetration_% + /// + SigilAttachedTargetLightningPenetrationPct = 8731, + + /// + /// armageddon_brand_attached_target_fire_penetration_% + /// + ArmageddonBrandAttachedTargetFirePenetrationPct = 8732, + + /// + /// storm_brand_attached_target_lightning_penetration_% + /// + StormBrandAttachedTargetLightningPenetrationPct = 8733, + + /// + /// active_skill_minion_physical_damage_+%_final + /// + ActiveSkillMinionPhysicalDamagePctFinal = 8734, + + /// + /// hit_damage_+%_while_chilled + /// + HitDamagePctWhileChilled = 8735, + + /// + /// damage_over_time_+%_while_hindered + /// + DamageOverTimePctWhileHindered = 8736, + + /// + /// minimum_added_physical_damage_per_impaled_on_enemy + /// + MinimumAddedPhysicalDamagePerImpaledOnEnemy = 8737, + + /// + /// maximum_added_physical_damage_per_impaled_on_enemy + /// + MaximumAddedPhysicalDamagePerImpaledOnEnemy = 8738, + + /// + /// sigil_attached_target_damage_taken_+% + /// + SigilAttachedTargetDamageTakenPct = 8739, + + /// + /// every_1_second_nearby_enemies_withered_for_X_ms + /// + Every1SecondNearbyEnemiesWitheredForXMs = 8740, + + /// + /// current_impaled_stacks + /// + CurrentImpaledStacks = 8741, + + /// + /// every_4_seconds_freeze_chilled_non_unique_enemies_for_X_ms + /// + Every4SecondsFreezeChilledNonUniqueEnemiesForXMs = 8742, + + /// + /// every_4_seconds_33%_chance_freeze_chilled_unique_enemies_for_X_ms + /// + Every4Seconds33PctChanceFreezeChilledUniqueEnemiesForXMs = 8743, + + /// + /// banner_skills_reserve_no_mana + /// + BannerSkillsReserveNoMana = 8744, + + /// + /// you_and_nearby_allies_armour_+_if_have_impaled_recently + /// + YouAndNearbyAlliesArmourIfHaveImpaledRecently = 8745, + + /// + /// frost_fury_damage_+% + /// + FrostFuryDamagePct = 8746, + + /// + /// storm_brand_damage_+% + /// + StormBrandDamagePct = 8747, + + /// + /// armageddon_brand_damage_+% + /// + ArmageddonBrandDamagePct = 8748, + + /// + /// armageddon_brand_repeat_frequency_+% + /// + ArmageddonBrandRepeatFrequencyPct = 8749, + + /// + /// shattering_steel_damage_+% + /// + ShatteringSteelDamagePct = 8750, + + /// + /// shattering_steel_number_of_additional_projectiles + /// + ShatteringSteelNumberOfAdditionalProjectiles = 8751, + + /// + /// lancing_steel_damage_+% + /// + LancingSteelDamagePct = 8752, + + /// + /// frost_bolt_nova_cooldown_speed_+% + /// + FrostBoltNovaCooldownSpeedPct = 8753, + + /// + /// ice_spear_number_of_additional_projectiles + /// + IceSpearNumberOfAdditionalProjectiles = 8754, + + /// + /// virtual_cannot_gain_souls + /// + VirtualCannotGainSouls = 8755, + + /// + /// has_soul_gain_prevention + /// + HasSoulGainPrevention = 8756, + + /// + /// rare_or_unique_monster_dropped_item_rarity_+% + /// + RareOrUniqueMonsterDroppedItemRarityPct = 8757, + + /// + /// critical_strike_multiplier_+_if_enemy_shattered_recently + /// + CriticalStrikeMultiplierIfEnemyShatteredRecently = 8758, + + /// + /// virtual_chill_minimum_slow_% + /// + VirtualChillMinimumSlowPct = 8759, + + /// + /// chill_minimum_slow_%_from_skill + /// + ChillMinimumSlowPctFromSkill = 8760, + + /// + /// ice_nova_chill_minimum_slow_% + /// + IceNovaChillMinimumSlowPct = 8761, + + /// + /// physical_damage_+%_final_for_herald_minion + /// + PhysicalDamagePctFinalForHeraldMinion = 8762, + + /// + /// on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage + /// + OnPlantingBannerYouAndNearbyAlliesRecoverPermyriadMaximumLifePerStage = 8763, + + /// + /// on_casting_banner_recover_%_of_planted_banner_stages + /// + OnCastingBannerRecoverPctOfPlantedBannerStages = 8764, + + /// + /// display_map_mission_id + /// + DisplayMapMissionId = 8765, + + /// + /// distance_before_form_change_+% + /// + DistanceBeforeFormChangePct = 8766, + + /// + /// ice_spear_distance_before_form_change_+% + /// + IceSpearDistanceBeforeFormChangePct = 8767, + + /// + /// fixed_skill_effect_duration + /// + FixedSkillEffectDuration = 8768, + + /// + /// support_chilling_areas_also_grant_cold_damage_taken_per_minute_+% + /// + SupportChillingAreasAlsoGrantColdDamageTakenPerMinutePct = 8769, + + /// + /// support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount + /// + SupportChillingAreasAlsoGrantColdDamageTakenPctEqualToSlowAmount = 8770, + + /// + /// cold_damage_taken_+%_equal_to_chill_slow_amount + /// + ColdDamageTakenPctEqualToChillSlowAmount = 8771, + + /// + /// display_skill_fixed_duration_buff + /// + DisplaySkillFixedDurationBuff = 8772, + + /// + /// attack_damage_+%_per_explicit_map_mod_affecting_area + /// + AttackDamagePctPerExplicitMapModAffectingArea = 8773, + + /// + /// virtual_immune_to_poison + /// + VirtualImmuneToPoison = 8774, + + /// + /// local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance + /// + LocalDisplayTriggerLevel18SummonSpectralWolfOnKill10PctChance = 8775, + + /// + /// dread_banner_aura_effect_+% + /// + DreadBannerAuraEffectPct = 8776, + + /// + /// war_banner_aura_effect_+% + /// + WarBannerAuraEffectPct = 8777, + + /// + /// map_owner_sulphite_gained_+% + /// + MapOwnerSulphiteGainedPct = 8778, + + /// + /// map_shaper_rare_chance_+% + /// + MapShaperRareChancePct = 8779, + + /// + /// map_elder_rare_chance_+% + /// + MapElderRareChancePct = 8780, + + /// + /// map_additional_red_beasts + /// + MapAdditionalRedBeasts = 8781, + + /// + /// focus_cooldown_speed_+% + /// + FocusCooldownSpeedPct = 8782, + + /// + /// map_betrayal_safehouse_data + /// + MapBetrayalSafehouseData = 8783, + + /// + /// lancing_steel_primary_proj_pierce_num + /// + LancingSteelPrimaryProjPierceNum = 8784, + + /// + /// primary_projectile_display_targets_to_pierce + /// + PrimaryProjectileDisplayTargetsToPierce = 8785, + + /// + /// primary_projectile_base_targets_to_pierce_+ + /// + PrimaryProjectileBaseTargetsToPierce = 8786, + + /// + /// lancing_steel_impale_chance_% + /// + LancingSteelImpaleChancePct = 8787, + + /// + /// primary_projectile_impale_chance_% + /// + PrimaryProjectileImpaleChancePct = 8788, + + /// + /// decelerating_projectile_speed_variation_+% + /// + DeceleratingProjectileSpeedVariationPct = 8789, + + /// + /// map_atlas_information + /// + MapAtlasInformation = 8790, + + /// + /// is_capturable_monster + /// + IsCapturableMonster = 8791, + + /// + /// npc_master_damage_+%_final_vs_capturable_monsters + /// + NpcMasterDamagePctFinalVsCapturableMonsters = 8792, + + /// + /// npc_master_damage_+%_final + /// + NpcMasterDamagePctFinal = 8793, + + /// + /// can_be_culled + /// + CanBeCulled = 8794, + + /// + /// map_map_item_drop_chance_+% + /// + MapMapItemDropChancePct = 8795, + + /// + /// map_unique_item_drop_chance_+% + /// + MapUniqueItemDropChancePct = 8796, + + /// + /// map_divination_card_drop_chance_+% + /// + MapDivinationCardDropChancePct = 8797, + + /// + /// sigil_recall_extend_base_skill_effect_duration + /// + SigilRecallExtendBaseSkillEffectDuration = 8798, + + /// + /// sigil_recall_extend_base_secondary_skill_effect_duration + /// + SigilRecallExtendBaseSecondarySkillEffectDuration = 8799, + + /// + /// map_num_terrain_failures + /// + MapNumTerrainFailures = 8800, + + /// + /// base_delve_darkness_damage_taken_per_minute + /// + BaseDelveDarknessDamageTakenPerMinute = 8801, + + /// + /// map_delve_flat_degeneration_per_minute + /// + MapDelveFlatDegenerationPerMinute = 8802, + + /// + /// arctic_breath_chilling_area_movement_velocity_+% + /// + ArcticBreathChillingAreaMovementVelocityPct = 8803, + + /// + /// chilling_area_movement_velocity_+% + /// + ChillingAreaMovementVelocityPct = 8804, + + /// + /// created_slipstream_action_speed_+% + /// + CreatedSlipstreamActionSpeedPct = 8805, + + /// + /// frost_fury_additional_max_number_of_stages + /// + FrostFuryAdditionalMaxNumberOfStages = 8806, + + /// + /// frost_fury_area_of_effect_+%_per_stage + /// + FrostFuryAreaOfEffectPctPerStage = 8807, + + /// + /// area_of_effect_+%_per_frost_fury_stage + /// + AreaOfEffectPctPerFrostFuryStage = 8808, + + /// + /// local_chaos_penetration_% + /// + LocalChaosPenetrationPct = 8809, + + /// + /// main_hand_chaos_penetration_% + /// + MainHandChaosPenetrationPct = 8810, + + /// + /// off_hand_chaos_penetration_% + /// + OffHandChaosPenetrationPct = 8811, + + /// + /// monster_gets_item_stats + /// + MonsterGetsItemStats = 8812, + + /// + /// map_einhar_intro_mission + /// + MapEinharIntroMission = 8813, + + /// + /// hierophant_passive_damage_+%_final_per_totem + /// + HierophantPassiveDamagePctFinalPerTotem = 8814, + + /// + /// avoid_scorch_% + /// + AvoidScorchPct = 8815, + + /// + /// base_avoid_scorch_% + /// + BaseAvoidScorchPct = 8816, + + /// + /// immune_to_scorch + /// + ImmuneToScorch = 8817, + + /// + /// cannot_be_scorched + /// + CannotBeScorched = 8818, + + /// + /// avoid_frostburn_% + /// + AvoidFrostburnPct = 8819, + + /// + /// base_avoid_frostburn_% + /// + BaseAvoidFrostburnPct = 8820, + + /// + /// immune_to_frostburn + /// + ImmuneToFrostburn = 8821, + + /// + /// cannot_be_frostburned + /// + CannotBeFrostburned = 8822, + + /// + /// avoid_sap_% + /// + AvoidSapPct = 8823, + + /// + /// base_avoid_sap_% + /// + BaseAvoidSapPct = 8824, + + /// + /// immune_to_sap + /// + ImmuneToSap = 8825, + + /// + /// cannot_be_sapped + /// + CannotBeSapped = 8826, + + /// + /// virtual_scorch_duration_+% + /// + VirtualScorchDurationPct = 8827, + + /// + /// virtual_scorch_effect_+% + /// + VirtualScorchEffectPct = 8828, + + /// + /// virtual_frostburn_duration_+% + /// + VirtualFrostburnDurationPct = 8829, + + /// + /// virtual_frostburn_effect_+% + /// + VirtualFrostburnEffectPct = 8830, + + /// + /// virtual_sap_duration_+% + /// + VirtualSapDurationPct = 8831, + + /// + /// virtual_sap_effect_+% + /// + VirtualSapEffectPct = 8832, + + /// + /// map_atlas_mission + /// + MapAtlasMission = 8833, + + /// + /// force_reflected_damage_flag + /// + ForceReflectedDamageFlag = 8834, + + /// + /// virtual_damage_+%_vs_abyssal_monsters + /// + VirtualDamagePctVsAbyssalMonsters = 8835, + + /// + /// attack_physical_damage_%_to_add_as_cold + /// + AttackPhysicalDamagePctToAddAsCold = 8836, + + /// + /// virtual_physical_damage_can_scorch + /// + VirtualPhysicalDamageCanScorch = 8837, + + /// + /// virtual_cold_damage_can_scorch + /// + VirtualColdDamageCanScorch = 8838, + + /// + /// virtual_lightning_damage_can_scorch + /// + VirtualLightningDamageCanScorch = 8839, + + /// + /// virtual_chaos_damage_can_scorch + /// + VirtualChaosDamageCanScorch = 8840, + + /// + /// virtual_physical_damage_can_inflict_brittle + /// + VirtualPhysicalDamageCanInflictBrittle = 8841, + + /// + /// virtual_fire_damage_can_inflict_brittle + /// + VirtualFireDamageCanInflictBrittle = 8842, + + /// + /// virtual_lightning_damage_can_inflict_brittle + /// + VirtualLightningDamageCanInflictBrittle = 8843, + + /// + /// virtual_chaos_damage_can_inflict_brittle + /// + VirtualChaosDamageCanInflictBrittle = 8844, + + /// + /// virtual_physical_damage_can_sap + /// + VirtualPhysicalDamageCanSap = 8845, + + /// + /// virtual_fire_damage_can_sap + /// + VirtualFireDamageCanSap = 8846, + + /// + /// virtual_cold_damage_can_sap + /// + VirtualColdDamageCanSap = 8847, + + /// + /// virtual_chaos_damage_can_sap + /// + VirtualChaosDamageCanSap = 8848, + + /// + /// virtual_main_hand_accuracy_rating_+% + /// + VirtualMainHandAccuracyRatingPct = 8849, + + /// + /// virtual_off_hand_accuracy_rating_+% + /// + VirtualOffHandAccuracyRatingPct = 8850, + + /// + /// non_ghost_minion_duration_+% + /// + NonGhostMinionDurationPct = 8851, + + /// + /// keystone_runebinder + /// + KeystoneRunebinder = 8852, + + /// + /// brands_per_target_limit + /// + BrandsPerTargetLimit = 8853, + + /// + /// play_debeons_dirge_sounds + /// + PlayDebeonsDirgeSounds = 8854, + + /// + /// virtual_total_main_hand_impale_on_hit_%_chance + /// + VirtualTotalMainHandImpaleOnHitPctChance = 8855, + + /// + /// virtual_total_off_hand_impale_on_hit_%_chance + /// + VirtualTotalOffHandImpaleOnHitPctChance = 8856, + + /// + /// mirage_archer_art_variation + /// + MirageArcherArtVariation = 8857, + + /// + /// spell_rapid_fire_count + /// + SpellRapidFireCount = 8858, + + /// + /// map_synthesis_league + /// + MapSynthesisLeague = 8859, + + /// + /// mana_regeneration_rate_per_minute_while_on_consecrated_ground + /// + ManaRegenerationRatePerMinuteWhileOnConsecratedGround = 8860, + + /// + /// energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground + /// + EnergyShieldRegenerationRatePerMinuteWhileOnConsecratedGround = 8861, + + /// + /// consecrated_ground_additional_physical_damage_reduction_% + /// + ConsecratedGroundAdditionalPhysicalDamageReductionPct = 8862, + + /// + /// consecrated_ground_immune_to_status_ailments + /// + ConsecratedGroundImmuneToStatusAilments = 8863, + + /// + /// consecrated_ground_enemy_damage_taken_+% + /// + ConsecratedGroundEnemyDamageTakenPct = 8864, + + /// + /// consecrated_ground_while_stationary_radius + /// + ConsecratedGroundWhileStationaryRadius = 8865, + + /// + /// consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds + /// + ConsecratedGroundRadiusOnHitEnemyMagicRareUniqueEvery3Seconds = 8866, + + /// + /// consecrated_ground_on_hit_cooldown + /// + ConsecratedGroundOnHitCooldown = 8867, + + /// + /// chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds + /// + ChanceToDealDoubleDamageFor3SecondsOnSpellCastEvery9Seconds = 8868, + + /// + /// always_deal_double_damage + /// + AlwaysDealDoubleDamage = 8869, + + /// + /// double_damage_on_spell_cast_cooldown + /// + DoubleDamageOnSpellCastCooldown = 8870, + + /// + /// attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds + /// + AttackAndCastSpeedPctFor3SecondsOnAttackEvery9Seconds = 8871, + + /// + /// attack_and_cast_speed_on_attack_cooldown + /// + AttackAndCastSpeedOnAttackCooldown = 8872, + + /// + /// your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area + /// + YourConsecratedGroundEffectLingersForMsAfterLeavingTheArea = 8873, + + /// + /// spell_repeat_count_target_search_range + /// + SpellRepeatCountTargetSearchRange = 8874, + + /// + /// arc_initial_distance + /// + ArcInitialDistance = 8875, + + /// + /// arc_chain_distance + /// + ArcChainDistance = 8876, + + /// + /// virtual_maximum_energy_shield_leech_rate_permyriad_per_minute + /// + VirtualMaximumEnergyShieldLeechRatePermyriadPerMinute = 8877, + + /// + /// maximum_energy_shield_leech_rate_%_per_minute + /// + MaximumEnergyShieldLeechRatePctPerMinute = 8878, + + /// + /// base_energy_shield_leech_from_elemental_damage_permyriad + /// + BaseEnergyShieldLeechFromElementalDamagePermyriad = 8879, + + /// + /// virtual_energy_shield_leech_from_cold_damage_permyriad + /// + VirtualEnergyShieldLeechFromColdDamagePermyriad = 8880, + + /// + /// base_energy_shield_leech_from_cold_damage_permyriad + /// + BaseEnergyShieldLeechFromColdDamagePermyriad = 8881, + + /// + /// virtual_energy_shield_leech_from_lightning_damage_permyriad + /// + VirtualEnergyShieldLeechFromLightningDamagePermyriad = 8882, + + /// + /// base_energy_shield_leech_from_lightning_damage_permyriad + /// + BaseEnergyShieldLeechFromLightningDamagePermyriad = 8883, + + /// + /// virtual_energy_shield_leech_from_fire_damage_permyriad + /// + VirtualEnergyShieldLeechFromFireDamagePermyriad = 8884, + + /// + /// base_energy_shield_leech_from_fire_damage_permyriad + /// + BaseEnergyShieldLeechFromFireDamagePermyriad = 8885, + + /// + /// virtual_energy_shield_leech_from_spell_damage_permyriad + /// + VirtualEnergyShieldLeechFromSpellDamagePermyriad = 8886, + + /// + /// base_energy_shield_leech_from_spell_damage_permyriad + /// + BaseEnergyShieldLeechFromSpellDamagePermyriad = 8887, + + /// + /// Cannot be Energy Shield-Leeched + /// + CannotHaveEnergyShieldLeechedFrom = 8888, + + /// + /// cannot_leech_energy_shield + /// + CannotLeechEnergyShield = 8889, + + /// + /// resist_energy_shield_leech_% + /// + ResistEnergyShieldLeechPct = 8890, + + /// + /// base_energy_shield_leech_from_physical_damage_permyriad + /// + BaseEnergyShieldLeechFromPhysicalDamagePermyriad = 8891, + + /// + /// base_energy_shield_leech_from_chaos_damage_permyriad + /// + BaseEnergyShieldLeechFromChaosDamagePermyriad = 8892, + + /// + /// energy_shield_leech_on_any_damage_when_hit_permyriad + /// + EnergyShieldLeechOnAnyDamageWhenHitPermyriad = 8893, + + /// + /// virtual_energy_shield_leech_speed_+% + /// + VirtualEnergyShieldLeechSpeedPct = 8894, + + /// + /// Energy Shield Leech speed increase + /// + EnergyShieldLeechSpeedPct = 8895, + + /// + /// map_monsters_energy_shield_leech_resistance_% + /// + MapMonstersEnergyShieldLeechResistancePct = 8896, + + /// + /// virtual_damage_+%_while_dead + /// + VirtualDamagePctWhileDead = 8897, + + /// + /// virtual_cast_on_death_damage_+%_final_while_dead + /// + VirtualCastOnDeathDamagePctFinalWhileDead = 8898, + + /// + /// virtual_area_of_effect_+%_while_dead + /// + VirtualAreaOfEffectPctWhileDead = 8899, + + /// + /// dark_ritual_damage_+%_final_per_curse_applied + /// + DarkRitualDamagePctFinalPerCurseApplied = 8900, + + /// + /// apply_linked_curses_with_dark_ritual + /// + ApplyLinkedCursesWithDarkRitual = 8901, + + /// + /// support_storm_barrier_damage_+%_final + /// + SupportStormBarrierDamagePctFinal = 8902, + + /// + /// support_storm_barrier_fire_damage_taken_when_hit_+%_final + /// + SupportStormBarrierFireDamageTakenWhenHitPctFinal = 8903, + + /// + /// support_storm_barrier_cold_damage_taken_when_hit_+%_final + /// + SupportStormBarrierColdDamageTakenWhenHitPctFinal = 8904, + + /// + /// support_storm_barrier_chaos_damage_taken_when_hit_+%_final + /// + SupportStormBarrierChaosDamageTakenWhenHitPctFinal = 8905, + + /// + /// support_storm_barrier_skill_type_damage_taken_when_hit_+%_final + /// + SupportStormBarrierSkillTypeDamageTakenWhenHitPctFinal = 8906, + + /// + /// support_storm_barrier_damage_buff_time_threshold_ms + /// + SupportStormBarrierDamageBuffTimeThresholdMs = 8907, + + /// + /// support_storm_barrier_damage_buff_base_duration_ms + /// + SupportStormBarrierDamageBuffBaseDurationMs = 8908, + + /// + /// support_storm_barrier_damage_buff_duration_ms + /// + SupportStormBarrierDamageBuffDurationMs = 8909, + + /// + /// support_storm_barrier_skill_type_damage_+%_final + /// + SupportStormBarrierSkillTypeDamagePctFinal = 8910, + + /// + /// support_storm_barrier_fire_damage_+%_final + /// + SupportStormBarrierFireDamagePctFinal = 8911, + + /// + /// support_storm_barrier_cold_damage_+%_final + /// + SupportStormBarrierColdDamagePctFinal = 8912, + + /// + /// support_storm_barrier_lightning_damage_+%_final + /// + SupportStormBarrierLightningDamagePctFinal = 8913, + + /// + /// support_storm_barrier_chaos_damage_+%_final + /// + SupportStormBarrierChaosDamagePctFinal = 8914, + + /// + /// sanctify_wave_damage_+%_final + /// + SanctifyWaveDamagePctFinal = 8915, + + /// + /// additional_physical_damage_reduction_%_while_channelling + /// + AdditionalPhysicalDamageReductionPctWhileChannelling = 8916, + + /// + /// attack_and_cast_speed_+%_with_channelling_skills + /// + AttackAndCastSpeedPctWithChannellingSkills = 8917, + + /// + /// avoid_stun_%_while_channelling + /// + AvoidStunPctWhileChannelling = 8918, + + /// + /// skill_mana_cost_+_with_channelling_skills + /// + SkillManaCostWithChannellingSkills = 8919, + + /// + /// local_display_trigger_socketed_curses_on_casting_curse_%_chance + /// + LocalDisplayTriggerSocketedCursesOnCastingCursePctChance = 8920, + + /// + /// energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy + /// + EnergyShieldLeechFromSpellDamagePermyriadPerCurseOnEnemy = 8921, + + /// + /// damage_+%_on_full_energy_shield + /// + DamagePctOnFullEnergyShield = 8922, + + /// + /// attack_and_cast_speed_+%_while_leeching_energy_shield + /// + AttackAndCastSpeedPctWhileLeechingEnergyShield = 8923, + + /// + /// support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final + /// + SupportEnergyShieldLeechDamagePctWhileLeechingEnergyShieldFinal = 8924, + + /// + /// Energy Shield Leech from any Damage + /// + EnergyShieldLeechFromAnyDamagePermyriad = 8925, + + /// + /// support_energy_shield_leech_damage_+%_on_full_energy_shield_final + /// + SupportEnergyShieldLeechDamagePctOnFullEnergyShieldFinal = 8926, + + /// + /// virtual_energy_shield_leech_from_physical_damage_permyriad + /// + VirtualEnergyShieldLeechFromPhysicalDamagePermyriad = 8927, + + /// + /// virtual_energy_shield_leech_from_chaos_damage_permyriad + /// + VirtualEnergyShieldLeechFromChaosDamagePermyriad = 8928, + + /// + /// mortar_projectile_scale_animation_speed_instead_of_projectile_speed + /// + MortarProjectileScaleAnimationSpeedInsteadOfProjectileSpeed = 8929, + + /// + /// create_consecrated_ground_on_kill_% + /// + CreateConsecratedGroundOnKillPct = 8930, + + /// + /// affected_by_spell_damage_aura + /// + AffectedBySpellDamageAura = 8931, + + /// + /// spell_damage_aura_spell_damage_+%_final + /// + SpellDamageAuraSpellDamagePctFinal = 8932, + + /// + /// hatred_aura_cold_damage_+%_final + /// + HatredAuraColdDamagePctFinal = 8933, + + /// + /// storm_burst_new_damage_+%_final_per_remaining_teleport_zap + /// + StormBurstNewDamagePctFinalPerRemainingTeleportZap = 8934, + + /// + /// divine_tempest_base_number_of_nearby_enemies_to_zap + /// + DivineTempestBaseNumberOfNearbyEnemiesToZap = 8935, + + /// + /// divine_tempest_hit_damage_+%_final_per_stage + /// + DivineTempestHitDamagePctFinalPerStage = 8936, + + /// + /// divine_tempest_current_number_of_stages + /// + DivineTempestCurrentNumberOfStages = 8937, + + /// + /// delirium_aura_damage_over_time_+%_final + /// + DeliriumAuraDamageOverTimePctFinal = 8938, + + /// + /// affected_by_delirium + /// + AffectedByDelirium = 8939, + + /// + /// support_rapid_fire_repeat_count + /// + SupportRapidFireRepeatCount = 8940, + + /// + /// is_rogue_exile + /// + IsRogueExile = 8941, + + /// + /// cast_speed_for_elemental_skills_+% + /// + CastSpeedForElementalSkillsPct = 8942, + + /// + /// fire_spell_physical_damage_%_to_convert_to_fire + /// + FireSpellPhysicalDamagePctToConvertToFire = 8943, + + /// + /// lightning_spell_physical_damage_%_to_convert_to_lightning + /// + LightningSpellPhysicalDamagePctToConvertToLightning = 8944, + + /// + /// cold_spell_physical_damage_%_to_convert_to_cold + /// + ColdSpellPhysicalDamagePctToConvertToCold = 8945, + + /// + /// spell_physical_damage_%_to_convert_to_fire + /// + SpellPhysicalDamagePctToConvertToFire = 8946, + + /// + /// energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad + /// + EnergyShieldLeechIfHitIsAtLeast25PctFireDamagePermyriad = 8947, + + /// + /// divine_tempest_stage_on_hitting_normal_magic_%_chance + /// + DivineTempestStageOnHittingNormalMagicPctChance = 8948, + + /// + /// divine_tempest_stage_on_hitting_rare_unique + /// + DivineTempestStageOnHittingRareUnique = 8949, + + /// + /// consecrated_ground_immune_to_curses + /// + ConsecratedGroundImmuneToCurses = 8950, + + /// + /// map_monster_chance_to_drop_item_creation_template_index + /// + MapMonsterChanceToDropItemCreationTemplateIndex = 8951, + + /// + /// support_rapid_fire_damage_+%_final + /// + SupportRapidFireDamagePctFinal = 8952, + + /// + /// monster_chance_to_drop_item_creation_template_index + /// + MonsterChanceToDropItemCreationTemplateIndex = 8953, + + /// + /// map_synthesised_monster_chance_to_drop_item_creation_template_index + /// + MapSynthesisedMonsterChanceToDropItemCreationTemplateIndex = 8954, + + /// + /// map_synthesised_rare_monster_chance_to_drop_item_creation_template_index + /// + MapSynthesisedRareMonsterChanceToDropItemCreationTemplateIndex = 8955, + + /// + /// map_synthesised_magic_monster_chance_to_drop_item_creation_template_index + /// + MapSynthesisedMagicMonsterChanceToDropItemCreationTemplateIndex = 8956, + + /// + /// curse_skill_effect_duration_+% + /// + CurseSkillEffectDurationPct = 8957, + + /// + /// dark_ritual_skill_effect_duration_+%_per_curse_applied + /// + DarkRitualSkillEffectDurationPctPerCurseApplied = 8958, + + /// + /// map_spawn_additional_chests_or_clusters_index + /// + MapSpawnAdditionalChestsOrClustersIndex = 8959, + + /// + /// map_duplicate_x_rare_monsters + /// + MapDuplicateXRareMonsters = 8960, + + /// + /// map_additional_rare_in_rare_pack_%_chance + /// + MapAdditionalRareInRarePackPctChance = 8961, + + /// + /// map_upgrade_pack_to_magic_%_chance + /// + MapUpgradePackToMagicPctChance = 8962, + + /// + /// map_upgrade_pack_to_rare_%_chance + /// + MapUpgradePackToRarePctChance = 8963, + + /// + /// elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped + /// + ElementalDamagePctToAddAsChaosPerShaperItemEquipped = 8964, + + /// + /// hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped + /// + HitsIgnoreEnemyChaosResistanceIfAllShaperItemsEquipped = 8965, + + /// + /// virtual_hits_ignore_enemy_chaos_resistance + /// + VirtualHitsIgnoreEnemyChaosResistance = 8966, + + /// + /// delirium_aura_effect_+% + /// + DeliriumAuraEffectPct = 8967, + + /// + /// delirium_mana_reservation_+% + /// + DeliriumManaReservationPct = 8968, + + /// + /// delirium_reserves_no_mana + /// + DeliriumReservesNoMana = 8969, + + /// + /// display_linked_curse_effect_+% + /// + DisplayLinkedCurseEffectPct = 8970, + + /// + /// local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius + /// + LocalUniqueJewelBlightAppliesWitherForMsWith40IntInRadius = 8971, + + /// + /// support_storm_barrier_fire_damage_+%_final_to_apply + /// + SupportStormBarrierFireDamagePctFinalToApply = 8972, + + /// + /// support_storm_barrier_cold_damage_+%_final_to_apply + /// + SupportStormBarrierColdDamagePctFinalToApply = 8973, + + /// + /// support_storm_barrier_lightning_damage_+%_final_to_apply + /// + SupportStormBarrierLightningDamagePctFinalToApply = 8974, + + /// + /// support_storm_barrier_chaos_damage_+%_final_to_apply + /// + SupportStormBarrierChaosDamagePctFinalToApply = 8975, + + /// + /// support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling + /// + SupportStormBarrierFireDamageTakenPctFinalFromHitsWhileChannelling = 8976, + + /// + /// support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling + /// + SupportStormBarrierColdDamageTakenPctFinalFromHitsWhileChannelling = 8977, + + /// + /// support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling + /// + SupportStormBarrierLightningDamageTakenPctFinalFromHitsWhileChannelling = 8978, + + /// + /// support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling + /// + SupportStormBarrierChaosDamageTakenPctFinalFromHitsWhileChannelling = 8979, + + /// + /// damage_taken_per_250_strength_+% + /// + DamageTakenPer250StrengthPct = 8980, + + /// + /// damage_taken_per_250_dexterity_+% + /// + DamageTakenPer250DexterityPct = 8981, + + /// + /// damage_taken_per_250_intelligence_+% + /// + DamageTakenPer250IntelligencePct = 8982, + + /// + /// enemies_explode_for_%_life_as_physical_damage + /// + EnemiesExplodeForPctLifeAsPhysicalDamage = 8983, + + /// + /// cold_damage_taken_+ + /// + ColdDamageTaken = 8984, + + /// + /// lightning_damage_taken_+ + /// + LightningDamageTaken = 8985, + + /// + /// gain_power_or_frenzy_charge_for_each_second_channeling + /// + GainPowerOrFrenzyChargeForEachSecondChanneling = 8986, + + /// + /// chance_to_evade_%_while_you_have_energy_shield + /// + ChanceToEvadePctWhileYouHaveEnergyShield = 8987, + + /// + /// spell_dodge_while_you_have_energy_shield_+% + /// + SpellDodgeWhileYouHaveEnergyShieldPct = 8988, + + /// + /// ghost_dance_current_stacks + /// + GhostDanceCurrentStacks = 8989, + + /// + /// ghost_dance_max_stacks + /// + GhostDanceMaxStacks = 8990, + + /// + /// damage_taken_per_ghost_dance_stack_+% + /// + DamageTakenPerGhostDanceStackPct = 8991, + + /// + /// attack_and_cast_speed_per_ghost_dance_stack_+% + /// + AttackAndCastSpeedPerGhostDanceStackPct = 8992, + + /// + /// cannot_be_stunned_if_you_have_ghost_dance + /// + CannotBeStunnedIfYouHaveGhostDance = 8993, + + /// + /// ghost_dance_restore_%_evasion_as_energy_shield_when_hit + /// + GhostDanceRestorePctEvasionAsEnergyShieldWhenHit = 8994, + + /// + /// cold_damage_+%_per_cold_resistance_above_75 + /// + ColdDamagePctPerColdResistanceAbove75 = 8995, + + /// + /// lightning_damage_+%_per_lightning_resistance_above_75 + /// + LightningDamagePctPerLightningResistanceAbove75 = 8996, + + /// + /// tertiary_skill_effect_duration + /// + TertiarySkillEffectDuration = 8997, + + /// + /// base_tertiary_skill_effect_duration + /// + BaseTertiarySkillEffectDuration = 8998, + + /// + /// tertiary_skill_effect_duration_pluspercent + /// + TertiarySkillEffectDurationPluspercent = 8999, + + /// + /// support_spell_boost_area_damage_+%_final_per_charge + /// + SupportSpellBoostAreaDamagePctFinalPerCharge = 9000, + + /// + /// support_spell_boost_area_of_effect_+%_final_per_charge + /// + SupportSpellBoostAreaOfEffectPctFinalPerCharge = 9001, + + /// + /// support_spell_boost_skill_visual_scale_+%_per_charge + /// + SupportSpellBoostSkillVisualScalePctPerCharge = 9002, + + /// + /// area_damage_+%_final_from_spell_boost_charges + /// + AreaDamagePctFinalFromSpellBoostCharges = 9003, + + /// + /// map_synthesised_rare_monster_additional_currency_item_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalCurrencyItemDropChancePct = 9004, + + /// + /// map_synthesised_magic_monster_additional_currency_item_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalCurrencyItemDropChancePct = 9005, + + /// + /// map_synthesised_monster_additional_currency_item_drop_chance_% + /// + MapSynthesisedMonsterAdditionalCurrencyItemDropChancePct = 9006, + + /// + /// map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalQualityCurrencyItemDropChancePct = 9007, + + /// + /// map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalQualityCurrencyItemDropChancePct = 9008, + + /// + /// map_synthesised_monster_additional_quality_currency_item_drop_chance_% + /// + MapSynthesisedMonsterAdditionalQualityCurrencyItemDropChancePct = 9009, + + /// + /// map_synthesised_rare_monster_fractured_item_drop_chance_+% + /// + MapSynthesisedRareMonsterFracturedItemDropChancePct = 9010, + + /// + /// map_synthesised_magic_monster_fractured_item_drop_chance_+% + /// + MapSynthesisedMagicMonsterFracturedItemDropChancePct = 9011, + + /// + /// map_synthesised_monster_fractured_item_drop_chance_+% + /// + MapSynthesisedMonsterFracturedItemDropChancePct = 9012, + + /// + /// map_synthesised_rare_monster_items_drop_corrupted_% + /// + MapSynthesisedRareMonsterItemsDropCorruptedPct = 9013, + + /// + /// map_synthesised_magic_monster_items_drop_corrupted_% + /// + MapSynthesisedMagicMonsterItemsDropCorruptedPct = 9014, + + /// + /// map_synthesised_monster_items_drop_corrupted_% + /// + MapSynthesisedMonsterItemsDropCorruptedPct = 9015, + + /// + /// map_synthesised_rare_monster_map_drop_chance_+% + /// + MapSynthesisedRareMonsterMapDropChancePct = 9016, + + /// + /// map_synthesised_magic_monster_map_drop_chance_+% + /// + MapSynthesisedMagicMonsterMapDropChancePct = 9017, + + /// + /// map_synthesised_monster_map_drop_chance_+% + /// + MapSynthesisedMonsterMapDropChancePct = 9018, + + /// + /// map_synthesised_rare_monster_additional_divination_card_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalDivinationCardDropChancePct = 9019, + + /// + /// map_synthesised_magic_monster_additional_divination_card_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalDivinationCardDropChancePct = 9020, + + /// + /// map_synthesised_monster_additional_divination_card_drop_chance_% + /// + MapSynthesisedMonsterAdditionalDivinationCardDropChancePct = 9021, + + /// + /// map_synthesised_rare_monster_unique_item_drop_chance_+% + /// + MapSynthesisedRareMonsterUniqueItemDropChancePct = 9022, + + /// + /// map_synthesised_magic_monster_unique_item_drop_chance_+% + /// + MapSynthesisedMagicMonsterUniqueItemDropChancePct = 9023, + + /// + /// map_synthesised_monster_unique_item_drop_chance_+% + /// + MapSynthesisedMonsterUniqueItemDropChancePct = 9024, + + /// + /// map_synthesised_rare_monster_dropped_item_quantity_+% + /// + MapSynthesisedRareMonsterDroppedItemQuantityPct = 9025, + + /// + /// map_synthesised_magic_monster_dropped_item_quantity_+% + /// + MapSynthesisedMagicMonsterDroppedItemQuantityPct = 9026, + + /// + /// map_synthesised_monster_dropped_item_quantity_+% + /// + MapSynthesisedMonsterDroppedItemQuantityPct = 9027, + + /// + /// map_synthesised_rare_monster_dropped_item_rarity_+% + /// + MapSynthesisedRareMonsterDroppedItemRarityPct = 9028, + + /// + /// map_synthesised_magic_monster_dropped_item_rarity_+% + /// + MapSynthesisedMagicMonsterDroppedItemRarityPct = 9029, + + /// + /// map_synthesised_monster_dropped_item_rarity_+% + /// + MapSynthesisedMonsterDroppedItemRarityPct = 9030, + + /// + /// map_synthesised_rare_monster_slain_experience_+% + /// + MapSynthesisedRareMonsterSlainExperiencePct = 9031, + + /// + /// map_synthesised_magic_monster_slain_experience_+% + /// + MapSynthesisedMagicMonsterSlainExperiencePct = 9032, + + /// + /// map_synthesised_monster_slain_experience_+% + /// + MapSynthesisedMonsterSlainExperiencePct = 9033, + + /// + /// map_synthesised_rare_monster_additional_currency_shard_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalCurrencyShardDropChancePct = 9034, + + /// + /// map_synthesised_magic_monster_additional_currency_shard_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalCurrencyShardDropChancePct = 9035, + + /// + /// map_synthesised_monster_additional_currency_shard_drop_chance_% + /// + MapSynthesisedMonsterAdditionalCurrencyShardDropChancePct = 9036, + + /// + /// map_synthesised_rare_monster_additional_shaper_item_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalShaperItemDropChancePct = 9037, + + /// + /// map_synthesised_magic_monster_additional_shaper_item_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalShaperItemDropChancePct = 9038, + + /// + /// map_synthesised_monster_additional_shaper_item_drop_chance_% + /// + MapSynthesisedMonsterAdditionalShaperItemDropChancePct = 9039, + + /// + /// map_synthesised_rare_monster_additional_elder_item_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalElderItemDropChancePct = 9040, + + /// + /// map_synthesised_magic_monster_additional_elder_item_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalElderItemDropChancePct = 9041, + + /// + /// map_synthesised_monster_additional_elder_item_drop_chance_% + /// + MapSynthesisedMonsterAdditionalElderItemDropChancePct = 9042, + + /// + /// map_synthesised_rare_monster_additional_breach_splinter_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalBreachSplinterDropChancePct = 9043, + + /// + /// map_synthesised_magic_monster_additional_breach_splinter_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalBreachSplinterDropChancePct = 9044, + + /// + /// map_synthesised_monster_additional_breach_splinter_drop_chance_% + /// + MapSynthesisedMonsterAdditionalBreachSplinterDropChancePct = 9045, + + /// + /// map_synthesised_rare_monster_additional_fossil_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalFossilDropChancePct = 9046, + + /// + /// map_synthesised_magic_monster_additional_fossil_drop_chance_% + /// + MapSynthesisedMagicMonsterAdditionalFossilDropChancePct = 9047, + + /// + /// map_synthesised_monster_additional_fossil_drop_chance_% + /// + MapSynthesisedMonsterAdditionalFossilDropChancePct = 9048, + + /// + /// map_synthesised_rare_monster_additional_jewel_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalJewelDropChancePct = 9049, + + /// + /// map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalAbyssJewelDropChancePct = 9050, + + /// + /// map_synthesised_rare_monster_additional_map_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalMapDropChancePct = 9051, + + /// + /// map_synthesised_rare_monster_additional_talisman_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalTalismanDropChancePct = 9052, + + /// + /// map_synthesised_rare_monster_additional_essence_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalEssenceDropChancePct = 9053, + + /// + /// map_synthesised_rare_monster_resurrect_as_ally_chance_% + /// + MapSynthesisedRareMonsterResurrectAsAllyChancePct = 9054, + + /// + /// map_synthesised_rare_monster_gives_mods_to_killer_chance_% + /// + MapSynthesisedRareMonsterGivesModsToKillerChancePct = 9055, + + /// + /// map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalVaalFragmentDropChancePct = 9056, + + /// + /// map_synthesised_rare_monster_additional_veiled_item_drop_chance_% + /// + MapSynthesisedRareMonsterAdditionalVeiledItemDropChancePct = 9057, + + /// + /// visual_hit_effect_index_override + /// + VisualHitEffectIndexOverride = 9058, + + /// + /// support_anticipation_rapid_fire_count + /// + SupportAnticipationRapidFireCount = 9059, + + /// + /// support_anticipation_charge_gain_interval_ms + /// + SupportAnticipationChargeGainIntervalMs = 9060, + + /// + /// local_flask_area_of_consecrated_ground_+% + /// + LocalFlaskAreaOfConsecratedGroundPct = 9061, + + /// + /// local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground + /// + LocalFlaskDuringEffectEnemyDamageTakenPctOnConsecratedGround = 9062, + + /// + /// local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect + /// + LocalFlaskCriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPctDuringEffect = 9063, + + /// + /// map_duplicate_x_synthesised_rare_monsters + /// + MapDuplicateXSynthesisedRareMonsters = 9064, + + /// + /// map_additional_rare_in_synthesised_rare_pack_%_chance + /// + MapAdditionalRareInSynthesisedRarePackPctChance = 9065, + + /// + /// map_upgrade_synthesised_pack_to_magic_%_chance + /// + MapUpgradeSynthesisedPackToMagicPctChance = 9066, + + /// + /// map_upgrade_synthesised_pack_to_rare_%_chance + /// + MapUpgradeSynthesisedPackToRarePctChance = 9067, + + /// + /// support_spell_boost_damage_+%_final_at_max_charges + /// + SupportSpellBoostDamagePctFinalAtMaxCharges = 9068, + + /// + /// synthesis_map_global_mod_values_doubled_on_this_node + /// + SynthesisMapGlobalModValuesDoubledOnThisNode = 9069, + + /// + /// synthesis_map_global_mod_values_tripled_on_this_node + /// + SynthesisMapGlobalModValuesTripledOnThisNode = 9070, + + /// + /// synthesis_map_monster_slain_experience_+%_on_this_node + /// + SynthesisMapMonsterSlainExperiencePctOnThisNode = 9071, + + /// + /// synthesis_map_memories_do_not_collapse_on_this_node + /// + SynthesisMapMemoriesDoNotCollapseOnThisNode = 9072, + + /// + /// synthesis_map_nearby_memories_have_bonus + /// + SynthesisMapNearbyMemoriesHaveBonus = 9073, + + /// + /// base_cannot_leech_energy_shield + /// + BaseCannotLeechEnergyShield = 9074, + + /// + /// monster_resurrect_as_ally_chance_% + /// + MonsterResurrectAsAllyChancePct = 9075, + + /// + /// map_synthesis_spawn_additional_fungal_chest_clusters + /// + MapSynthesisSpawnAdditionalFungalChestClusters = 9076, + + /// + /// map_synthesis_spawn_additional_abyss_bone_chest_clusters + /// + MapSynthesisSpawnAdditionalAbyssBoneChestClusters = 9077, + + /// + /// map_synthesis_spawn_additional_wealthy_barrel_clusters + /// + MapSynthesisSpawnAdditionalWealthyBarrelClusters = 9078, + + /// + /// map_synthesis_spawn_additional_volatile_barrel_clusters + /// + MapSynthesisSpawnAdditionalVolatileBarrelClusters = 9079, + + /// + /// map_synthesis_spawn_additional_bloodworm_barrel_clusters + /// + MapSynthesisSpawnAdditionalBloodwormBarrelClusters = 9080, + + /// + /// map_synthesis_spawn_additional_parasite_barrel_clusters + /// + MapSynthesisSpawnAdditionalParasiteBarrelClusters = 9081, + + /// + /// divination_card_drop_chance_+% + /// + DivinationCardDropChancePct = 9082, + + /// + /// unique_item_drop_chance_+% + /// + UniqueItemDropChancePct = 9083, + + /// + /// map_item_drop_chance_+% + /// + MapItemDropChancePct = 9084, + + /// + /// monster_gives_mods_to_killer_chance_% + /// + MonsterGivesModsToKillerChancePct = 9085, + + /// + /// monster_items_drop_corrupted_% + /// + MonsterItemsDropCorruptedPct = 9086, + + /// + /// support_spell_boost_area_of_effect_+%_final + /// + SupportSpellBoostAreaOfEffectPctFinal = 9087, + + /// + /// support_spell_boost_charge_loss_interval_ms_while_moving + /// + SupportSpellBoostChargeLossIntervalMsWhileMoving = 9088, + + /// + /// local_socketed_minion_gem_quality_+ + /// + LocalSocketedMinionGemQuality = 9089, + + /// + /// local_socketed_fire_gem_quality_+ + /// + LocalSocketedFireGemQuality = 9090, + + /// + /// local_socketed_cold_gem_quality_+ + /// + LocalSocketedColdGemQuality = 9091, + + /// + /// local_socketed_lightning_gem_quality_+ + /// + LocalSocketedLightningGemQuality = 9092, + + /// + /// local_socketed_chaos_gem_quality_+ + /// + LocalSocketedChaosGemQuality = 9093, + + /// + /// local_socketed_melee_gem_quality_+ + /// + LocalSocketedMeleeGemQuality = 9094, + + /// + /// local_socketed_bow_gem_quality_+ + /// + LocalSocketedBowGemQuality = 9095, + + /// + /// local_socketed_aura_gem_quality_+ + /// + LocalSocketedAuraGemQuality = 9096, + + /// + /// local_socketed_strength_gem_quality_+ + /// + LocalSocketedStrengthGemQuality = 9097, + + /// + /// local_socketed_dexterity_gem_quality_+ + /// + LocalSocketedDexterityGemQuality = 9098, + + /// + /// local_socketed_intelligence_gem_quality_+ + /// + LocalSocketedIntelligenceGemQuality = 9099, + + /// + /// local_socketed_area_of_effect_gem_quality_+ + /// + LocalSocketedAreaOfEffectGemQuality = 9100, + + /// + /// local_socketed_projectile_gem_quality_+ + /// + LocalSocketedProjectileGemQuality = 9101, + + /// + /// divine_tempest_beam_width_+ + /// + DivineTempestBeamWidth = 9102, + + /// + /// local_display_grants_skill_malevolence_level + /// + LocalDisplayGrantsSkillMalevolenceLevel = 9103, + + /// + /// local_display_grants_skill_zealotry_level + /// + LocalDisplayGrantsSkillZealotryLevel = 9104, + + /// + /// zealotry_aura_effect_+% + /// + ZealotryAuraEffectPct = 9105, + + /// + /// zealotry_mana_reservation_+% + /// + ZealotryManaReservationPct = 9106, + + /// + /// zealotry_reserves_no_mana + /// + ZealotryReservesNoMana = 9107, + + /// + /// enemy_critical_strike_chance_+%_against_self + /// + EnemyCriticalStrikeChancePctAgainstSelf = 9108, + + /// + /// base_enemy_critical_strike_chance_+%_against_self + /// + BaseEnemyCriticalStrikeChancePctAgainstSelf = 9109, + + /// + /// enemy_additional_critical_strike_chance_against_self + /// + EnemyAdditionalCriticalStrikeChanceAgainstSelf = 9110, + + /// + /// attacker_has_defender_conditional_damage_stats + /// + AttackerHasDefenderConditionalDamageStats = 9111, + + /// + /// defender_has_attacker_conditional_damage_stats + /// + DefenderHasAttackerConditionalDamageStats = 9112, + + /// + /// enemy_+50%_critical_strike_chance_against_self + /// + Enemy50PctCriticalStrikeChanceAgainstSelf = 9113, + + /// + /// monster_fractured_item_drop_chance_+% + /// + MonsterFracturedItemDropChancePct = 9114, + + /// + /// delirium_skill_effect_duration_+% + /// + DeliriumSkillEffectDurationPct = 9115, + + /// + /// damage_+%_while_life_leeching + /// + DamagePctWhileLifeLeeching = 9116, + + /// + /// damage_+%_while_mana_leeching + /// + DamagePctWhileManaLeeching = 9117, + + /// + /// damage_+%_while_es_leeching + /// + DamagePctWhileEsLeeching = 9118, + + /// + /// local_display_nearby_enemies_cannot_crit + /// + LocalDisplayNearbyEnemiesCannotCrit = 9119, + + /// + /// local_display_nearby_allies_action_speed_cannot_be_reduced_below_base + /// + LocalDisplayNearbyAlliesActionSpeedCannotBeReducedBelowBase = 9120, + + /// + /// expanding_fire_cone_radius_limit + /// + ExpandingFireConeRadiusLimit = 9121, + + /// + /// enemy_critical_strike_chance_+%_against_self_20_times_value + /// + EnemyCriticalStrikeChancePctAgainstSelf20TimesValue = 9122, + + /// + /// divine_tempest_ailment_damage_+%_final_per_stage + /// + DivineTempestAilmentDamagePctFinalPerStage = 9123, + + /// + /// local_display_nearby_enemies_critical_strike_chance_+%_against_self + /// + LocalDisplayNearbyEnemiesCriticalStrikeChancePctAgainstSelf = 9124, + + /// + /// base_shock_proliferation_radius + /// + BaseShockProliferationRadius = 9125, + + /// + /// virtual_shock_proliferation_radius + /// + VirtualShockProliferationRadius = 9126, + + /// + /// enemy_shock_on_kill + /// + EnemyShockOnKill = 9127, + + /// + /// support_spell_rapid_fire_repeat_use_damage_+%_final + /// + SupportSpellRapidFireRepeatUseDamagePctFinal = 9128, + + /// + /// damage_+%_final_from_rapid_fire_support + /// + DamagePctFinalFromRapidFireSupport = 9129, + + /// + /// active_skill_base_area_length_+ + /// + ActiveSkillBaseAreaLength = 9130, + + /// + /// consecrated_ground_effect_+% + /// + ConsecratedGroundEffectPct = 9131, + + /// + /// fire_damage_with_spell_skills_+% + /// + FireDamageWithSpellSkillsPct = 9132, + + /// + /// cold_damage_with_spell_skills_+% + /// + ColdDamageWithSpellSkillsPct = 9133, + + /// + /// lightning_damage_with_spell_skills_+% + /// + LightningDamageWithSpellSkillsPct = 9134, + + /// + /// chaos_damage_with_spell_skills_+% + /// + ChaosDamageWithSpellSkillsPct = 9135, + + /// + /// physical_damage_with_spell_skills_+% + /// + PhysicalDamageWithSpellSkillsPct = 9136, + + /// + /// spell_critical_strike_multiplier_+_while_dual_wielding + /// + SpellCriticalStrikeMultiplierWhileDualWielding = 9137, + + /// + /// spell_critical_strike_multiplier_+_while_holding_shield + /// + SpellCriticalStrikeMultiplierWhileHoldingShield = 9138, + + /// + /// spell_critical_strike_multiplier_+_while_wielding_staff + /// + SpellCriticalStrikeMultiplierWhileWieldingStaff = 9139, + + /// + /// spell_critical_strike_chance_+%_while_dual_wielding + /// + SpellCriticalStrikeChancePctWhileDualWielding = 9140, + + /// + /// spell_critical_strike_chance_+%_while_holding_shield + /// + SpellCriticalStrikeChancePctWhileHoldingShield = 9141, + + /// + /// spell_critical_strike_chance_+%_while_wielding_staff + /// + SpellCriticalStrikeChancePctWhileWieldingStaff = 9142, + + /// + /// mana_regeneration_rate_per_minute_while_dual_wielding + /// + ManaRegenerationRatePerMinuteWhileDualWielding = 9143, + + /// + /// mana_regeneration_rate_per_minute_while_holding_shield + /// + ManaRegenerationRatePerMinuteWhileHoldingShield = 9144, + + /// + /// mana_regeneration_rate_per_minute_while_wielding_staff + /// + ManaRegenerationRatePerMinuteWhileWieldingStaff = 9145, + + /// + /// attack_damage_+%_per_500_maximum_mana + /// + AttackDamagePctPer500MaximumMana = 9146, + + /// + /// spell_damage_+%_per_500_maximum_mana + /// + SpellDamagePctPer500MaximumMana = 9147, + + /// + /// faster_poison_% + /// + FasterPoisonPct = 9148, + + /// + /// faster_bleed_% + /// + FasterBleedPct = 9149, + + /// + /// visual_hit_effect_elemental_is_holy + /// + VisualHitEffectElementalIsHoly = 9150, + + /// + /// mana_reservation_+%_per_250_total_attributes + /// + ManaReservationPctPer250TotalAttributes = 9151, + + /// + /// dominance_defences_+%_on_nearby_allies_per_100_strength + /// + DominanceDefencesPctOnNearbyAlliesPer100Strength = 9152, + + /// + /// dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity + /// + DominanceCriticalStrikeMultiplierOnNearbyAlliesPer100Dexterity = 9153, + + /// + /// dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence + /// + DominanceCastSpeedPctOnNearbyAlliesPer100Intelligence = 9154, + + /// + /// virtual_dominance_defences_+%_on_nearby_allies + /// + VirtualDominanceDefencesPctOnNearbyAllies = 9155, + + /// + /// virtual_dominance_critical_strike_multiplier_+%_on_nearby_allies + /// + VirtualDominanceCriticalStrikeMultiplierPctOnNearbyAllies = 9156, + + /// + /// virtual_dominance_cast_speed_+%_on_nearby_allies + /// + VirtualDominanceCastSpeedPctOnNearbyAllies = 9157, + + /// + /// critical_strike_chance_against_enemies_on_consecrated_ground_% + /// + CriticalStrikeChanceAgainstEnemiesOnConsecratedGroundPct = 9158, + + /// + /// map_synthesis_spawn_additional_cursed_pot_clusters + /// + MapSynthesisSpawnAdditionalCursedPotClusters = 9159, + + /// + /// map_synthesis_spawn_additional_zombie_sarcophagi_chest + /// + MapSynthesisSpawnAdditionalZombieSarcophagiChest = 9160, + + /// + /// map_synthesis_spawn_additional_scroll_rack_chest + /// + MapSynthesisSpawnAdditionalScrollRackChest = 9161, + + /// + /// soulrend_damage_+% + /// + SoulrendDamagePct = 9162, + + /// + /// soulrend_number_of_additional_projectiles + /// + SoulrendNumberOfAdditionalProjectiles = 9163, + + /// + /// soulrend_applies_hinder_movement_speed_+% + /// + SoulrendAppliesHinderMovementSpeedPct = 9164, + + /// + /// dark_ritual_damage_+% + /// + DarkRitualDamagePct = 9165, + + /// + /// dark_ritual_area_of_effect_+% + /// + DarkRitualAreaOfEffectPct = 9166, + + /// + /// dark_ritual_linked_curse_effect_+% + /// + DarkRitualLinkedCurseEffectPct = 9167, + + /// + /// sanctify_damage_+% + /// + SanctifyDamagePct = 9168, + + /// + /// sanctify_area_of_effect_+%_when_targeting_consecrated_ground + /// + SanctifyAreaOfEffectPctWhenTargetingConsecratedGround = 9169, + + /// + /// storm_burst_additional_object_chance_% + /// + StormBurstAdditionalObjectChancePct = 9170, + + /// + /// virtual_storm_burst_additional_object_chance_% + /// + VirtualStormBurstAdditionalObjectChancePct = 9171, + + /// + /// divine_tempest_damage_+% + /// + DivineTempestDamagePct = 9172, + + /// + /// divine_tempest_beam_width_+% + /// + DivineTempestBeamWidthPct = 9173, + + /// + /// purge_damage_+% + /// + PurgeDamagePct = 9174, + + /// + /// purge_duration_+% + /// + PurgeDurationPct = 9175, + + /// + /// purge_additional_enemy_resistance_% + /// + PurgeAdditionalEnemyResistancePct = 9176, + + /// + /// virtual_divine_tempest_number_of_nearby_enemies_to_zap + /// + VirtualDivineTempestNumberOfNearbyEnemiesToZap = 9177, + + /// + /// divine_tempest_number_of_additional_nearby_enemies_to_zap + /// + DivineTempestNumberOfAdditionalNearbyEnemiesToZap = 9178, + + /// + /// local_display_socketed_gems_supported_by_level_x_energy_leech + /// + LocalDisplaySocketedGemsSupportedByLevelXEnergyLeech = 9179, + + /// + /// local_display_socketed_gems_supported_by_level_x_spell_focus + /// + LocalDisplaySocketedGemsSupportedByLevelXSpellFocus = 9180, + + /// + /// local_display_socketed_gems_supported_by_level_x_unleash + /// + LocalDisplaySocketedGemsSupportedByLevelXUnleash = 9181, + + /// + /// local_display_socketed_gems_supported_by_level_x_impale + /// + LocalDisplaySocketedGemsSupportedByLevelXImpale = 9182, + + /// + /// map_number_of_global_synthesis_mods + /// + MapNumberOfGlobalSynthesisMods = 9183, + + /// + /// sanctify_consecrated_ground_enemy_damage_taken_+% + /// + SanctifyConsecratedGroundEnemyDamageTakenPct = 9184, + + /// + /// flame_totem_consecrated_ground_enemy_damage_taken_+% + /// + FlameTotemConsecratedGroundEnemyDamageTakenPct = 9185, + + /// + /// elemental_damage_+%_per_divine_charge + /// + ElementalDamagePctPerDivineCharge = 9186, + + /// + /// divinity_elemental_damage_+%_final + /// + DivinityElementalDamagePctFinal = 9187, + + /// + /// divinity_elemental_damage_taken_+%_final + /// + DivinityElementalDamageTakenPctFinal = 9188, + + /// + /// maximum_divine_charges + /// + MaximumDivineCharges = 9189, + + /// + /// current_divine_charges + /// + CurrentDivineCharges = 9190, + + /// + /// cannot_gain_divine_charges + /// + CannotGainDivineCharges = 9191, + + /// + /// gain_divine_charge_on_hit_% + /// + GainDivineChargeOnHitPct = 9192, + + /// + /// gain_divinity_ms_when_reaching_maximum_divine_charges + /// + GainDivinityMsWhenReachingMaximumDivineCharges = 9193, + + /// + /// local_display_grants_skill_accuracy_crits_aura_level + /// + LocalDisplayGrantsSkillAccuracyCritsAuraLevel = 9194, + + /// + /// map_disallow_fractured_item_drops + /// + MapDisallowFracturedItemDrops = 9195, + + /// + /// monster_rarity + /// + MonsterRarity = 9196, + + /// + /// temporal_chains_action_speed_+%_vs_rare_or_unique_final + /// + TemporalChainsActionSpeedPctVsRareOrUniqueFinal = 9197, + + /// + /// enfeeble_damage_+%_vs_rare_or_unique_final + /// + EnfeebleDamagePctVsRareOrUniqueFinal = 9198, + + /// + /// attack_and_cast_speed_+%_during_onslaught + /// + AttackAndCastSpeedPctDuringOnslaught = 9199, + + /// + /// physical_damage_+%_with_unholy_might + /// + PhysicalDamagePctWithUnholyMight = 9200, + + /// + /// support_aura_duration_base_buff_duration + /// + SupportAuraDurationBaseBuffDuration = 9201, + + /// + /// support_aura_duration_base_reserve_duration + /// + SupportAuraDurationBaseReserveDuration = 9202, + + /// + /// support_aura_duration_buff_duration + /// + SupportAuraDurationBuffDuration = 9203, + + /// + /// support_aura_duration_reserve_duration + /// + SupportAuraDurationReserveDuration = 9204, + + /// + /// local_display_socketed_gems_supported_by_level_x_aura_duration + /// + LocalDisplaySocketedGemsSupportedByLevelXAuraDuration = 9205, + + /// + /// lightning_damage_+%_while_affected_by_herald_of_thunder + /// + LightningDamagePctWhileAffectedByHeraldOfThunder = 9206, + + /// + /// fire_damage_+%_while_affected_by_herald_of_ash + /// + FireDamagePctWhileAffectedByHeraldOfAsh = 9207, + + /// + /// cold_damage_+%_while_affected_by_herald_of_ice + /// + ColdDamagePctWhileAffectedByHeraldOfIce = 9208, + + /// + /// physical_damage_+%_while_affected_by_herald_of_purity + /// + PhysicalDamagePctWhileAffectedByHeraldOfPurity = 9209, + + /// + /// chaos_damage_+%_while_affected_by_herald_of_agony + /// + ChaosDamagePctWhileAffectedByHeraldOfAgony = 9210, + + /// + /// herald_of_ice_buff_effect_+% + /// + HeraldOfIceBuffEffectPct = 9211, + + /// + /// herald_of_ash_buff_effect_+% + /// + HeraldOfAshBuffEffectPct = 9212, + + /// + /// herald_of_agony_buff_effect_+% + /// + HeraldOfAgonyBuffEffectPct = 9213, + + /// + /// maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder + /// + MaximumLightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9214, + + /// + /// lightning_damage_resistance_%_while_affected_by_herald_of_thunder + /// + LightningDamageResistancePctWhileAffectedByHeraldOfThunder = 9215, + + /// + /// maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash + /// + MaximumFireDamageResistancePctWhileAffectedByHeraldOfAsh = 9216, + + /// + /// fire_damage_resistance_%_while_affected_by_herald_of_ash + /// + FireDamageResistancePctWhileAffectedByHeraldOfAsh = 9217, + + /// + /// maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice + /// + MaximumColdDamageResistancePctWhileAffectedByHeraldOfIce = 9218, + + /// + /// cold_damage_resistance_%_while_affected_by_herald_of_ice + /// + ColdDamageResistancePctWhileAffectedByHeraldOfIce = 9219, + + /// + /// physical_damage_reduction_%_while_affected_by_herald_of_purity + /// + PhysicalDamageReductionPctWhileAffectedByHeraldOfPurity = 9220, + + /// + /// chaos_damage_resistance_%_while_affected_by_herald_of_agony + /// + ChaosDamageResistancePctWhileAffectedByHeraldOfAgony = 9221, + + /// + /// sentinel_of_purity_damage_+% + /// + SentinelOfPurityDamagePct = 9222, + + /// + /// agony_crawler_damage_+% + /// + AgonyCrawlerDamagePct = 9223, + + /// + /// chance_to_trigger_socketed_bow_skill_on_bow_attack_% + /// + ChanceToTriggerSocketedBowSkillOnBowAttackPct = 9224, + + /// + /// local_apply_extra_herald_mod_when_synthesised + /// + LocalApplyExtraHeraldModWhenSynthesised = 9225, + + /// + /// local_display_cast_lightning_aegis_on_gain_skill + /// + LocalDisplayCastLightningAegisOnGainSkill = 9226, + + /// + /// skill_effect_duration_+%_while_affected_by_malevolence + /// + SkillEffectDurationPctWhileAffectedByMalevolence = 9227, + + /// + /// chaos_damage_over_time_multiplier_+_while_affected_by_malevolence + /// + ChaosDamageOverTimeMultiplierWhileAffectedByMalevolence = 9228, + + /// + /// cold_damage_over_time_multiplier_+_while_affected_by_malevolence + /// + ColdDamageOverTimeMultiplierWhileAffectedByMalevolence = 9229, + + /// + /// life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence + /// + LifeAndEnergyShieldRecoveryRatePctWhileAffectedByMalevolence = 9230, + + /// + /// unaffected_by_poison_while_affected_by_malevolence + /// + UnaffectedByPoisonWhileAffectedByMalevolence = 9231, + + /// + /// unaffected_by_bleeding_while_affected_by_malevolence + /// + UnaffectedByBleedingWhileAffectedByMalevolence = 9232, + + /// + /// your_ailments_deal_damage_faster_%_while_affected_by_malevolence + /// + YourAilmentsDealDamageFasterPctWhileAffectedByMalevolence = 9233, + + /// + /// critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry + /// + CriticalStrikesPenetratesPctElementalResistancesWhileAffectedByZealotry = 9234, + + /// + /// cast_speed_+%_while_affected_by_zealotry + /// + CastSpeedPctWhileAffectedByZealotry = 9235, + + /// + /// consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry + /// + ConsecratedGroundEffectLingersForMsAfterLeavingTheAreaWhileAffectedByZealotry = 9236, + + /// + /// consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry + /// + ConsecratedGroundEnemyDamageTakenPctWhileAffectedByZealotry = 9237, + + /// + /// gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry + /// + GainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGroundWhileAffectedByZealotry = 9238, + + /// + /// maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry + /// + MaximumEnergyShieldLeechRatePctWhileAffectedByZealotry = 9239, + + /// + /// critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry + /// + CriticalStrikeChancePctAgainstEnemiesOnConsecratedGroundWhileAffectedByZealotry = 9240, + + /// + /// virtual_elemental_penetration_%_on_crit + /// + VirtualElementalPenetrationPctOnCrit = 9241, + + /// + /// virtual_faster_poison_% + /// + VirtualFasterPoisonPct = 9242, + + /// + /// virtual_faster_bleed_% + /// + VirtualFasterBleedPct = 9243, + + /// + /// base_unaffected_by_bleeding + /// + BaseUnaffectedByBleeding = 9244, + + /// + /// virtual_unaffected_by_bleeding + /// + VirtualUnaffectedByBleeding = 9245, + + /// + /// base_unaffected_by_poison + /// + BaseUnaffectedByPoison = 9246, + + /// + /// virtual_unaffected_by_poison + /// + VirtualUnaffectedByPoison = 9247, + + /// + /// virtual_consecrated_ground_effect_lingers_after_leaving_the_area_for_ms + /// + VirtualConsecratedGroundEffectLingersAfterLeavingTheAreaForMs = 9248, + + /// + /// virtual_consecrated_ground_enemy_damage_taken_+% + /// + VirtualConsecratedGroundEnemyDamageTakenPct = 9249, + + /// + /// virtual_gain_arcane_surge_for_4_seconds_when_creating_consecrated_ground + /// + VirtualGainArcaneSurgeFor4SecondsWhenCreatingConsecratedGround = 9250, + + /// + /// virtual_critical_strike_chance_+%_while_on_consecrated_ground + /// + VirtualCriticalStrikeChancePctWhileOnConsecratedGround = 9251, + + /// + /// virtual_bleed_duration_+%_final + /// + VirtualBleedDurationPctFinal = 9252, + + /// + /// gain_onslaught_on_hit_duration_ms + /// + GainOnslaughtOnHitDurationMs = 9253, + + /// + /// physical_damage_%_taken_from_mana_before_life + /// + PhysicalDamagePctTakenFromManaBeforeLife = 9254, + + /// + /// local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius + /// + LocalUniqueJewelBlightAppliesWitherForTwoSecondsWith40IntInRadius = 9255, + + /// + /// skill_surge_type_override + /// + SkillSurgeTypeOverride = 9256, + + /// + /// spell_chance_to_deal_double_damage_% + /// + SpellChanceToDealDoubleDamagePct = 9257, + + /// + /// impurity_fire_damage_taken_+%_final + /// + ImpurityFireDamageTakenPctFinal = 9258, + + /// + /// impurity_lightning_damage_taken_+%_final + /// + ImpurityLightningDamageTakenPctFinal = 9259, + + /// + /// impurity_cold_damage_taken_+%_final + /// + ImpurityColdDamageTakenPctFinal = 9260, + + /// + /// maximum_life_leech_amount_per_leech + /// + MaximumLifeLeechAmountPerLeech = 9261, + + /// + /// maximum_mana_leech_amount_per_leech + /// + MaximumManaLeechAmountPerLeech = 9262, + + /// + /// maximum_energy_shield_leech_amount_per_leech + /// + MaximumEnergyShieldLeechAmountPerLeech = 9263, + + /// + /// maximum_total_recovery_per_minute_from_life_leech + /// + MaximumTotalRecoveryPerMinuteFromLifeLeech = 9264, + + /// + /// maximum_total_recovery_per_minute_from_mana_leech + /// + MaximumTotalRecoveryPerMinuteFromManaLeech = 9265, + + /// + /// maximum_total_recovery_per_minute_from_energy_shield_leech + /// + MaximumTotalRecoveryPerMinuteFromEnergyShieldLeech = 9266, + + /// + /// life_leech_rate_per_minute + /// + LifeLeechRatePerMinute = 9267, + + /// + /// mana_leech_rate_per_minute + /// + ManaLeechRatePerMinute = 9268, + + /// + /// energy_shield_leech_rate_per_minute + /// + EnergyShieldLeechRatePerMinute = 9269, + + /// + /// total_recovery_per_minute_from_life_leech + /// + TotalRecoveryPerMinuteFromLifeLeech = 9270, + + /// + /// total_recovery_per_minute_from_mana_leech + /// + TotalRecoveryPerMinuteFromManaLeech = 9271, + + /// + /// total_recovery_per_minute_from_energy_shield_leech + /// + TotalRecoveryPerMinuteFromEnergyShieldLeech = 9272, + + /// + /// virtual_life_leech_does_not_stop_at_full_life + /// + VirtualLifeLeechDoesNotStopAtFullLife = 9273, + + /// + /// life_leech_applies_recovery_to_energy_shield + /// + LifeLeechAppliesRecoveryToEnergyShield = 9274, + + /// + /// base_life_leech_applies_recovery_to_energy_shield + /// + BaseLifeLeechAppliesRecoveryToEnergyShield = 9275, + + /// + /// triggered_skill_uses_main_hand_or_averaged_attack_time_for_pvp_scaling + /// + TriggeredSkillUsesMainHandOrAveragedAttackTimeForPvpScaling = 9276, + + /// + /// active_skill_ground_consecration_radius_+ + /// + ActiveSkillGroundConsecrationRadius = 9277, + + /// + /// support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance + /// + SupportScionOnslaughtFor3SecondsOnHittingUniqueEnemyPctChance = 9278, + + /// + /// support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge + /// + SupportArcaneSurgeSpellDamagePctFinalWhileYouHaveArcaneSurge = 9279, + + /// + /// spell_area_of_effect_+% + /// + SpellAreaOfEffectPct = 9280, + + /// + /// power_charge_on_spell_block_%_chance + /// + PowerChargeOnSpellBlockPctChance = 9281, + + /// + /// area_of_effect_+%_while_wielding_staff + /// + AreaOfEffectPctWhileWieldingStaff = 9282, + + /// + /// spell_damage_+%_if_you_have_blocked_recently + /// + SpellDamagePctIfYouHaveBlockedRecently = 9283, + + /// + /// avoid_stun_%_while_holding_shield + /// + AvoidStunPctWhileHoldingShield = 9284, + + /// + /// avoid_ailments_%_while_holding_shield + /// + AvoidAilmentsPctWhileHoldingShield = 9285, + + /// + /// maximum_life_leech_amount_per_leech_%_max_life + /// + MaximumLifeLeechAmountPerLeechPctMaxLife = 9286, + + /// + /// maximum_mana_leech_amount_per_leech_%_max_mana + /// + MaximumManaLeechAmountPerLeechPctMaxMana = 9287, + + /// + /// maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield + /// + MaximumEnergyShieldLeechAmountPerLeechPctMaxEnergyShield = 9288, + + /// + /// divine_tempest_damage_+%_final_while_channelling + /// + DivineTempestDamagePctFinalWhileChannelling = 9289, + + /// + /// local_movement_speed_+%_if_item_corrupted + /// + LocalMovementSpeedPctIfItemCorrupted = 9290, + + /// + /// local_attack_and_cast_speed_+%_if_item_corrupted + /// + LocalAttackAndCastSpeedPctIfItemCorrupted = 9291, + + /// + /// local_resist_all_elements_%_if_item_corrupted + /// + LocalResistAllElementsPctIfItemCorrupted = 9292, + + /// + /// local_damage_taken_+%_if_item_corrupted + /// + LocalDamageTakenPctIfItemCorrupted = 9293, + + /// + /// local_maximum_life_+%_if_item_corrupted + /// + LocalMaximumLifePctIfItemCorrupted = 9294, + + /// + /// local_maximum_energy_shield_+%_if_item_corrupted + /// + LocalMaximumEnergyShieldPctIfItemCorrupted = 9295, + + /// + /// local_damage_+%_if_item_corrupted + /// + LocalDamagePctIfItemCorrupted = 9296, + + /// + /// local_critical_strike_chance_+%_if_item_corrupted + /// + LocalCriticalStrikeChancePctIfItemCorrupted = 9297, + + /// + /// local_immune_to_curses_if_item_corrupted + /// + LocalImmuneToCursesIfItemCorrupted = 9298, + + /// + /// local_attack_damage_+%_if_item_corrupted + /// + LocalAttackDamagePctIfItemCorrupted = 9299, + + /// + /// local_spell_damage_+%_if_item_corrupted + /// + LocalSpellDamagePctIfItemCorrupted = 9300, + + /// + /// local_chance_to_intimidate_on_hit_% + /// + LocalChanceToIntimidateOnHitPct = 9301, + + /// + /// main_hand_chance_to_intimidate_on_hit_% + /// + MainHandChanceToIntimidateOnHitPct = 9302, + + /// + /// off_hand_chance_to_intimidate_on_hit_% + /// + OffHandChanceToIntimidateOnHitPct = 9303, + + /// + /// synthesis_map_node_grants_no_global_mod + /// + SynthesisMapNodeGrantsNoGlobalMod = 9304, + + /// + /// synthesis_map_adjacent_nodes_global_mod_values_doubled + /// + SynthesisMapAdjacentNodesGlobalModValuesDoubled = 9305, + + /// + /// synthesis_map_node_additional_uses_+ + /// + SynthesisMapNodeAdditionalUses = 9306, + + /// + /// synthesis_map_node_level_+ + /// + SynthesisMapNodeLevel = 9307, + + /// + /// synthesis_map_node_monsters_drop_no_items + /// + SynthesisMapNodeMonstersDropNoItems = 9308, + + /// + /// synthesis_map_node_item_quantity_increases_doubled + /// + SynthesisMapNodeItemQuantityIncreasesDoubled = 9309, + + /// + /// synthesis_map_node_item_rarity_increases_doubled + /// + SynthesisMapNodeItemRarityIncreasesDoubled = 9310, + + /// + /// synthesis_map_node_pack_size_increases_doubled + /// + SynthesisMapNodePackSizeIncreasesDoubled = 9311, + + /// + /// synthesis_map_node_grants_additional_global_mod + /// + SynthesisMapNodeGrantsAdditionalGlobalMod = 9312, + + /// + /// synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters + /// + SynthesisMapNodeGuestMonstersReplacedBySynthesisedMonsters = 9313, + + /// + /// synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories + /// + SynthesisMapNodeGlobalModValuesTripledIfAdjacentSquaresHaveMemories = 9314, + + /// + /// chance_to_summon_support_ghost_on_hitting_rare_or_unique_% + /// + ChanceToSummonSupportGhostOnHittingRareOrUniquePct = 9315, + + /// + /// display_dark_ritual_curse_max_skill_level_requirement + /// + DisplayDarkRitualCurseMaxSkillLevelRequirement = 9316, + + /// + /// map_synthesis_spawn_additional_normal_ambush_chest + /// + MapSynthesisSpawnAdditionalNormalAmbushChest = 9317, + + /// + /// map_synthesis_spawn_additional_magic_ambush_chest + /// + MapSynthesisSpawnAdditionalMagicAmbushChest = 9318, + + /// + /// map_synthesis_spawn_additional_rare_ambush_chest + /// + MapSynthesisSpawnAdditionalRareAmbushChest = 9319, + + /// + /// purge_expose_resist_%_matching_highest_element_damage + /// + PurgeExposeResistPctMatchingHighestElementDamage = 9320, + + /// + /// spell_bow_damage_+% + /// + SpellBowDamagePct = 9321, + + /// + /// chance_to_gain_frenzy_charge_on_block_attack_% + /// + ChanceToGainFrenzyChargeOnBlockAttackPct = 9322, + + /// + /// map_synthesised_monster_pack_size_+% + /// + MapSynthesisedMonsterPackSizePct = 9323, + + /// + /// virtual_base_spell_cast_time_ms + /// + VirtualBaseSpellCastTimeMs = 9324, + + /// + /// base_spell_cast_time_ms_override + /// + BaseSpellCastTimeMsOverride = 9325, + + /// + /// local_strength_and_intelligence_requirement_+ + /// + LocalStrengthAndIntelligenceRequirement = 9326, + + /// + /// storm_burst_15_%_chance_to_create_additional_orb + /// + StormBurst15PctChanceToCreateAdditionalOrb = 9327, + + /// + /// map_monster_tre_+% + /// + MapMonsterTrePct = 9328, + + /// + /// additive_vaal_skill_damage_modifiers_apply_to_all_skills + /// + AdditiveVaalSkillDamageModifiersApplyToAllSkills = 9329, + + /// + /// blight_tertiary_skill_effect_duration + /// + BlightTertiarySkillEffectDuration = 9330, + + /// + /// virtual_maximum_mana_leech_rate_permyriad_per_minute + /// + VirtualMaximumManaLeechRatePermyriadPerMinute = 9331, + + /// + /// maximum_life_leech_rate_+% + /// + MaximumLifeLeechRatePct = 9332, + + /// + /// maximum_mana_leech_rate_+% + /// + MaximumManaLeechRatePct = 9333, + + /// + /// maximum_energy_shield_leech_rate_+% + /// + MaximumEnergyShieldLeechRatePct = 9334, + + /// + /// virtual_maximum_life_leech_amount_per_leech_permyriad_max_life + /// + VirtualMaximumLifeLeechAmountPerLeechPermyriadMaxLife = 9335, + + /// + /// virtual_maximum_mana_leech_amount_per_leech_permyriad_max_mana + /// + VirtualMaximumManaLeechAmountPerLeechPermyriadMaxMana = 9336, + + /// + /// virtual_maximum_energy_shield_leech_amount_per_leech_permyriad_max_energy_shield + /// + VirtualMaximumEnergyShieldLeechAmountPerLeechPermyriadMaxEnergyShield = 9337, + + /// + /// maximum_life_leech_amount_per_leech_+% + /// + MaximumLifeLeechAmountPerLeechPct = 9338, + + /// + /// maximum_mana_leech_amount_per_leech_+% + /// + MaximumManaLeechAmountPerLeechPct = 9339, + + /// + /// maximum_energy_shield_leech_amount_per_leech_+% + /// + MaximumEnergyShieldLeechAmountPerLeechPct = 9340, + + /// + /// display_totems_no_infusion + /// + DisplayTotemsNoInfusion = 9341, + + /// + /// storm_burst_orb_count + /// + StormBurstOrbCount = 9342, + + /// + /// virtual_support_storm_barrier_damage_buff_time_threshold_ms + /// + VirtualSupportStormBarrierDamageBuffTimeThresholdMs = 9343, + + /// + /// console_monster_slain_experience_pluspercent_final + /// + ConsoleMonsterSlainExperiencePluspercentFinal = 9344, + + /// + /// immune_to_synthesis_decay + /// + ImmuneToSynthesisDecay = 9345, + + /// + /// from_table_monster_slain_experience_+%_final + /// + FromTableMonsterSlainExperiencePctFinal = 9346, + + /// + /// maximum_life_leech_rate_+1%_per_12_stat_value + /// + MaximumLifeLeechRate1PctPer12StatValue = 9347, + + /// + /// map_disable_breach_abyss + /// + MapDisableBreachAbyss = 9348, + + /// + /// intermediary_combined_action_speed_+% + /// + IntermediaryCombinedActionSpeedPct = 9349, + + /// + /// skill_is_triggerable + /// + SkillIsTriggerable = 9350, + + /// + /// map_legion_league + /// + MapLegionLeague = 9351, + + /// + /// local_weapon_no_physical_damage + /// + LocalWeaponNoPhysicalDamage = 9352, + + /// + /// main_hand_local_no_physical_damage + /// + MainHandLocalNoPhysicalDamage = 9353, + + /// + /// off_hand_local_no_physical_damage + /// + OffHandLocalNoPhysicalDamage = 9354, + + /// + /// maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry + /// + MaximumEsLeechRate1PctPer6StatValueWhileAffectedByZealotry = 9355, + + /// + /// attack_mini_knockback_chance_% + /// + AttackMiniKnockbackChancePct = 9356, + + /// + /// attack_mini_knockback_on_stun_chance_% + /// + AttackMiniKnockbackOnStunChancePct = 9357, + + /// + /// display_storm_burst_jump_time_ms + /// + DisplayStormBurstJumpTimeMs = 9358, + + /// + /// effect_level_requirement_from_gem + /// + EffectLevelRequirementFromGem = 9359, + + /// + /// virtual_critical_strike_multiplier_+ + /// + VirtualCriticalStrikeMultiplier = 9360, + + /// + /// virtual_attack_critical_strike_multiplier_+ + /// + VirtualAttackCriticalStrikeMultiplier = 9361, + + /// + /// cyclone_current_number_of_stages + /// + CycloneCurrentNumberOfStages = 9362, + + /// + /// cyclone_melee_weapon_range_+_per_stage + /// + CycloneMeleeWeaponRangePerStage = 9363, + + /// + /// cyclone_stage_decay_time_ms + /// + CycloneStageDecayTimeMs = 9364, + + /// + /// skill_is_physical_skill + /// + SkillIsPhysicalSkill = 9365, + + /// + /// map_synthesised_rare_monster_drop_additional_currency + /// + MapSynthesisedRareMonsterDropAdditionalCurrency = 9366, + + /// + /// map_synthesised_magic_monster_drop_additional_currency + /// + MapSynthesisedMagicMonsterDropAdditionalCurrency = 9367, + + /// + /// map_synthesised_rare_monster_drop_additional_quality_currency + /// + MapSynthesisedRareMonsterDropAdditionalQualityCurrency = 9368, + + /// + /// map_synthesised_magic_monster_drop_additional_quality_currency + /// + MapSynthesisedMagicMonsterDropAdditionalQualityCurrency = 9369, + + /// + /// map_synthesised_rare_monster_drop_additional_currency_shard + /// + MapSynthesisedRareMonsterDropAdditionalCurrencyShard = 9370, + + /// + /// map_synthesised_magic_monster_drop_additional_currency_shard + /// + MapSynthesisedMagicMonsterDropAdditionalCurrencyShard = 9371, + + /// + /// map_synthesised_rare_monster_drop_additional_breach_splinter + /// + MapSynthesisedRareMonsterDropAdditionalBreachSplinter = 9372, + + /// + /// support_storm_barrier_physical_damage_+%_final_to_apply + /// + SupportStormBarrierPhysicalDamagePctFinalToApply = 9373, + + /// + /// virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling + /// + VirtualSupportStormBarrierPhysicalDamageTakenPctFinalFromHitsWhileChannelling = 9374, + + /// + /// attack_critical_strike_chance_+% + /// + AttackCriticalStrikeChancePct = 9375, + + /// + /// cast_spell_on_linked_attack_crit + /// + CastSpellOnLinkedAttackCrit = 9376, + + /// + /// cast_spell_on_linked_melee_kill + /// + CastSpellOnLinkedMeleeKill = 9377, + + /// + /// cast_spell_while_linked_skill_channelling + /// + CastSpellWhileLinkedSkillChannelling = 9378, + + /// + /// triggered_skill_damage_+% + /// + TriggeredSkillDamagePct = 9379, + + /// + /// bladestorm_attack_speed_+%_final_while_in_bloodstorm + /// + BladestormAttackSpeedPctFinalWhileInBloodstorm = 9380, + + /// + /// bladestorm_area_of_effect_+%_final_while_in_sandstorm + /// + BladestormAreaOfEffectPctFinalWhileInSandstorm = 9381, + + /// + /// bladestorm_storm_damage_+%_final + /// + BladestormStormDamagePctFinal = 9382, + + /// + /// affected_by_bloodstorm + /// + AffectedByBloodstorm = 9383, + + /// + /// affected_by_sandstorm + /// + AffectedBySandstorm = 9384, + + /// + /// bladestorm_maximum_number_of_storms_allowed + /// + BladestormMaximumNumberOfStormsAllowed = 9385, + + /// + /// in_blood_stance + /// + InBloodStance = 9386, + + /// + /// in_sand_stance + /// + InSandStance = 9387, + + /// + /// chance_to_bleed_on_hit_%_chance_in_blood_stance + /// + ChanceToBleedOnHitPctChanceInBloodStance = 9388, + + /// + /// disable_visual_hit_effect + /// + DisableVisualHitEffect = 9389, + + /// + /// enable_test_hit_epks + /// + EnableTestHitEpks = 9390, + + /// + /// disable_test_hit_animation_slow_down + /// + DisableTestHitAnimationSlowDown = 9391, + + /// + /// berserk_minimum_rage + /// + BerserkMinimumRage = 9392, + + /// + /// affected_by_berserk + /// + AffectedByBerserk = 9393, + + /// + /// berserk_movement_speed_+%_final + /// + BerserkMovementSpeedPctFinal = 9394, + + /// + /// frozen_in_time + /// + FrozenInTime = 9395, + + /// + /// berserk_attack_damage_+%_final + /// + BerserkAttackDamagePctFinal = 9396, + + /// + /// berserk_attack_speed_+%_final + /// + BerserkAttackSpeedPctFinal = 9397, + + /// + /// bladestorm_movement_speed_+%_while_in_sandstorm + /// + BladestormMovementSpeedPctWhileInSandstorm = 9398, + + /// + /// frost_fury_duration_+%_per_stage + /// + FrostFuryDurationPctPerStage = 9399, + + /// + /// supported_attack_skill_granted_to_replicate_clones + /// + SupportedAttackSkillGrantedToReplicateClones = 9400, + + /// + /// blitz_small_rage_explosion_damage_+% + /// + BlitzSmallRageExplosionDamagePct = 9401, + + /// + /// blitz_big_rage_explosion_damage_+% + /// + BlitzBigRageExplosionDamagePct = 9402, + + /// + /// legion_monster_damage_taken_+%_final + /// + LegionMonsterDamageTakenPctFinal = 9403, + + /// + /// map_possessed_monsters_drop_rusted_scarab_chance_% + /// + MapPossessedMonstersDropRustedScarabChancePct = 9404, + + /// + /// map_possessed_monsters_drop_polished_scarab_chance_% + /// + MapPossessedMonstersDropPolishedScarabChancePct = 9405, + + /// + /// map_possessed_monsters_drop_gilded_scarab_chance_% + /// + MapPossessedMonstersDropGildedScarabChancePct = 9406, + + /// + /// map_possessed_monsters_drop_unique_chance_% + /// + MapPossessedMonstersDropUniqueChancePct = 9407, + + /// + /// map_possessed_monsters_drop_map_chance_% + /// + MapPossessedMonstersDropMapChancePct = 9408, + + /// + /// support_slashing_damage_+%_final_from_distance + /// + SupportSlashingDamagePctFinalFromDistance = 9409, + + /// + /// support_slashing_travel_skill_attack_and_cast_speed_+%_final + /// + SupportSlashingTravelSkillAttackAndCastSpeedPctFinal = 9410, + + /// + /// support_blunt_chance_to_trigger_shockwave_on_hit_% + /// + SupportBluntChanceToTriggerShockwaveOnHitPct = 9411, + + /// + /// map_boss_drops_additional_currency_shards + /// + MapBossDropsAdditionalCurrencyShards = 9412, + + /// + /// map_harbingers_drops_additional_currency_shards + /// + MapHarbingersDropsAdditionalCurrencyShards = 9413, + + /// + /// is_harbinger + /// + IsHarbinger = 9414, + + /// + /// blood_spears_base_number_of_spears + /// + BloodSpearsBaseNumberOfSpears = 9415, + + /// + /// chain_strike_cone_radius_+_per_x_rage + /// + ChainStrikeConeRadiusPerXRage = 9416, + + /// + /// map_boss_accompanied_by_harbinger + /// + MapBossAccompaniedByHarbinger = 9417, + + /// + /// quick_guard_damage_absorbed_% + /// + QuickGuardDamageAbsorbedPct = 9418, + + /// + /// quick_guard_damage_absorb_limit + /// + QuickGuardDamageAbsorbLimit = 9419, + + /// + /// monster_drop_item_template_for_veiled_item + /// + MonsterDropItemTemplateForVeiledItem = 9420, + + /// + /// monster_drop_item_template_for_double_veiled_item + /// + MonsterDropItemTemplateForDoubleVeiledItem = 9421, + + /// + /// monster_drop_item_template_for_any_unique_item + /// + MonsterDropItemTemplateForAnyUniqueItem = 9422, + + /// + /// monster_drop_item_template_for_shaped_map + /// + MonsterDropItemTemplateForShapedMap = 9423, + + /// + /// monster_drop_item_template_for_elder_map + /// + MonsterDropItemTemplateForElderMap = 9424, + + /// + /// map_legion_league_extra_spawns + /// + MapLegionLeagueExtraSpawns = 9425, + + /// + /// blood_spears_damage_+%_final_in_blood_stance + /// + BloodSpearsDamagePctFinalInBloodStance = 9426, + + /// + /// gain_rage_on_hit + /// + GainRageOnHit = 9427, + + /// + /// map_beyond_portal_spawn_additional_demon_%_chance + /// + MapBeyondPortalSpawnAdditionalDemonPctChance = 9428, + + /// + /// possessed_monster_drop_item_template_for_rusted_scarab + /// + PossessedMonsterDropItemTemplateForRustedScarab = 9429, + + /// + /// possessed_monster_drop_item_template_for_polished_scarab + /// + PossessedMonsterDropItemTemplateForPolishedScarab = 9430, + + /// + /// possessed_monster_drop_item_template_for_gilded_scarab + /// + PossessedMonsterDropItemTemplateForGildedScarab = 9431, + + /// + /// possessed_monster_drop_item_template_for_unique_item + /// + PossessedMonsterDropItemTemplateForUniqueItem = 9432, + + /// + /// possessed_monster_drop_item_template_for_map + /// + PossessedMonsterDropItemTemplateForMap = 9433, + + /// + /// monster_drop_item_template_for_league_unique + /// + MonsterDropItemTemplateForLeagueUnique = 9434, + + /// + /// display_strongbox_drops_additional_shaper_or_elder_cards + /// + DisplayStrongboxDropsAdditionalShaperOrElderCards = 9435, + + /// + /// map_contains_additional_packs_of_vaal_monsters + /// + MapContainsAdditionalPacksOfVaalMonsters = 9436, + + /// + /// map_vaal_monster_items_drop_corrupted_% + /// + MapVaalMonsterItemsDropCorruptedPct = 9437, + + /// + /// map_contains_vaal_strongbox_for_sacrifice_fragment + /// + MapContainsVaalStrongboxForSacrificeFragment = 9438, + + /// + /// map_contains_vaal_strongbox_for_mortal_fragment + /// + MapContainsVaalStrongboxForMortalFragment = 9439, + + /// + /// melee_damage_+%_final_from_distance + /// + MeleeDamagePctFinalFromDistance = 9440, + + /// + /// ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy + /// + IceDashCooldownRecoveryPerNearbyNormalOrMagicEnemy = 9441, + + /// + /// ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy + /// + IceDashCooldownRecoveryPerNearbyRareOrUniqueEnemy = 9442, + + /// + /// mortal_call_elemental_damage_taken_+%_final + /// + MortalCallElementalDamageTakenPctFinal = 9443, + + /// + /// mortal_call_physical_damage_taken_+%_final + /// + MortalCallPhysicalDamageTakenPctFinal = 9444, + + /// + /// mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad + /// + MortalCallPhysicalDamageTakenPerEnduranceChargeConsumedFinalPermyriad = 9445, + + /// + /// mortal_call_cooldown_does_not_tick + /// + MortalCallCooldownDoesNotTick = 9446, + + /// + /// skill_cooldown_does_not_tick + /// + SkillCooldownDoesNotTick = 9447, + + /// + /// main_hand_chance_to_hit_evasive_monsters_% + /// + MainHandChanceToHitEvasiveMonstersPct = 9448, + + /// + /// off_hand_chance_to_hit_evasive_monsters_% + /// + OffHandChanceToHitEvasiveMonstersPct = 9449, + + /// + /// is_usable_as_corpse_when_alive + /// + IsUsableAsCorpseWhenAlive = 9450, + + /// + /// raised_zombies_are_usable_as_corpses_when_alive + /// + RaisedZombiesAreUsableAsCorpsesWhenAlive = 9451, + + /// + /// blood_sand_stance_melee_skills_area_damage_+%_final + /// + BloodSandStanceMeleeSkillsAreaDamagePctFinal = 9452, + + /// + /// blood_sand_stance_melee_skills_area_of_effect_+%_final + /// + BloodSandStanceMeleeSkillsAreaOfEffectPctFinal = 9453, + + /// + /// blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance + /// + BloodSandStanceMeleeSkillsAreaDamagePctFinalInBloodStance = 9454, + + /// + /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance + /// + BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInBloodStance = 9455, + + /// + /// blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance + /// + BloodSandStanceMeleeSkillsAreaDamagePctFinalInSandStance = 9456, + + /// + /// blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance + /// + BloodSandStanceMeleeSkillsAreaOfEffectPctFinalInSandStance = 9457, + + /// + /// keystone_quiet_might + /// + KeystoneQuietMight = 9458, + + /// + /// quiet_might_keystone_spell_damage_+%_final_per_power_charge + /// + QuietMightKeystoneSpellDamagePctFinalPerPowerCharge = 9459, + + /// + /// map_cowards_trial_extra_rhoas + /// + MapCowardsTrialExtraRhoas = 9460, + + /// + /// gain_frenzy_power_or_endurance_charge_against_self_%_chance + /// + GainFrenzyPowerOrEnduranceChargeAgainstSelfPctChance = 9461, + + /// + /// keystone_magnetic_charge + /// + KeystoneMagneticCharge = 9462, + + /// + /// share_charges_with_magnetic_charge_owner + /// + ShareChargesWithMagneticChargeOwner = 9463, + + /// + /// map_contains_additional_tormented_graverobbers + /// + MapContainsAdditionalTormentedGraverobbers = 9464, + + /// + /// map_contains_additional_tormented_betrayers + /// + MapContainsAdditionalTormentedBetrayers = 9465, + + /// + /// map_contains_additional_tormented_heretics + /// + MapContainsAdditionalTormentedHeretics = 9466, + + /// + /// life_recharge_rate_per_minute + /// + LifeRechargeRatePerMinute = 9467, + + /// + /// keystone_eternal_youth + /// + KeystoneEternalYouth = 9468, + + /// + /// keystone_pressure_points + /// + KeystonePressurePoints = 9469, + + /// + /// virtual_always_crit + /// + VirtualAlwaysCrit = 9470, + + /// + /// virtual_no_critical_strike_multiplier + /// + VirtualNoCriticalStrikeMultiplier = 9471, + + /// + /// maximum_mana_%_to_convert_to_armour_at_doubled_value + /// + MaximumManaPctToConvertToArmourAtDoubledValue = 9472, + + /// + /// keystone_mental_conditioning + /// + KeystoneMentalConditioning = 9473, + + /// + /// tormented_betrayer_spawn_monster_on_death_variation + /// + TormentedBetrayerSpawnMonsterOnDeathVariation = 9474, + + /// + /// map_sacrifice_fragment_count + /// + MapSacrificeFragmentCount = 9475, + + /// + /// map_mortal_fragment_count + /// + MapMortalFragmentCount = 9476, + + /// + /// map_vaal_sacrifice_strongbox_chance_per_fragment_% + /// + MapVaalSacrificeStrongboxChancePerFragmentPct = 9477, + + /// + /// map_vaal_mortal_strongbox_chance_per_fragment_% + /// + MapVaalMortalStrongboxChancePerFragmentPct = 9478, + + /// + /// chest_display_guarded_by_hooded_architect + /// + ChestDisplayGuardedByHoodedArchitect = 9479, + + /// + /// map_cowards_trial_extra_oriath_citizens + /// + MapCowardsTrialExtraOriathCitizens = 9480, + + /// + /// keystone_sharp_and_brittle + /// + KeystoneSharpAndBrittle = 9481, + + /// + /// virtual_extra_crit_damage_rolls + /// + VirtualExtraCritDamageRolls = 9482, + + /// + /// virtual_enemy_extra_crit_damage_rolls + /// + VirtualEnemyExtraCritDamageRolls = 9483, + + /// + /// virtual_disable_helmet_slot + /// + VirtualDisableHelmetSlot = 9484, + + /// + /// enable_movement_skill_animation_skipping + /// + EnableMovementSkillAnimationSkipping = 9485, + + /// + /// map_player_disable_soul_gain_prevention + /// + MapPlayerDisableSoulGainPrevention = 9486, + + /// + /// frost_fury_fire_speed_+%_final_while_channelling + /// + FrostFuryFireSpeedPctFinalWhileChannelling = 9487, + + /// + /// total_base_damage_per_minute_taken_as_physical + /// + TotalBaseDamagePerMinuteTakenAsPhysical = 9488, + + /// + /// total_base_damage_per_minute_taken_as_fire + /// + TotalBaseDamagePerMinuteTakenAsFire = 9489, + + /// + /// total_base_damage_per_minute_taken_as_cold + /// + TotalBaseDamagePerMinuteTakenAsCold = 9490, + + /// + /// total_base_damage_per_minute_taken_as_lightning + /// + TotalBaseDamagePerMinuteTakenAsLightning = 9491, + + /// + /// total_base_damage_per_minute_taken_as_chaos + /// + TotalBaseDamagePerMinuteTakenAsChaos = 9492, + + /// + /// total_base_damage_per_minute_taken_as_physical_unaffected_by_level_scaling + /// + TotalBaseDamagePerMinuteTakenAsPhysicalUnaffectedByLevelScaling = 9493, + + /// + /// total_base_damage_per_minute_taken_as_fire_unaffected_by_level_scaling + /// + TotalBaseDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9494, + + /// + /// total_base_nonlethal_damage_per_minute_taken_as_fire_unaffected_by_level_scaling + /// + TotalBaseNonlethalDamagePerMinuteTakenAsFireUnaffectedByLevelScaling = 9495, + + /// + /// total_base_damage_per_minute_taken_as_cold_unaffected_by_level_scaling + /// + TotalBaseDamagePerMinuteTakenAsColdUnaffectedByLevelScaling = 9496, + + /// + /// total_base_damage_per_minute_taken_as_lightning_unaffected_by_level_scaling + /// + TotalBaseDamagePerMinuteTakenAsLightningUnaffectedByLevelScaling = 9497, + + /// + /// total_base_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling + /// + TotalBaseDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9498, + + /// + /// total_base_nonlethal_damage_per_minute_taken_as_chaos_unaffected_by_level_scaling + /// + TotalBaseNonlethalDamagePerMinuteTakenAsChaosUnaffectedByLevelScaling = 9499, + + /// + /// fire_damage_over_time_%_taken_as_chaos + /// + FireDamageOverTimePctTakenAsChaos = 9500, + + /// + /// cold_damage_over_time_%_taken_as_chaos + /// + ColdDamageOverTimePctTakenAsChaos = 9501, + + /// + /// lightning_damage_over_time_%_taken_as_chaos + /// + LightningDamageOverTimePctTakenAsChaos = 9502, + + /// + /// cold_damage_over_time_%_taken_as_fire + /// + ColdDamageOverTimePctTakenAsFire = 9503, + + /// + /// lightning_damage_over_time_%_taken_as_fire + /// + LightningDamageOverTimePctTakenAsFire = 9504, + + /// + /// physical_damage_over_time_%_taken_as_other_types + /// + PhysicalDamageOverTimePctTakenAsOtherTypes = 9505, + + /// + /// fire_damage_over_time_%_taken_as_other_types + /// + FireDamageOverTimePctTakenAsOtherTypes = 9506, + + /// + /// cold_damage_over_time_%_taken_as_other_types + /// + ColdDamageOverTimePctTakenAsOtherTypes = 9507, + + /// + /// lightning_damage_over_time_%_taken_as_other_types + /// + LightningDamageOverTimePctTakenAsOtherTypes = 9508, + + /// + /// chaos_damage_over_time_%_taken_as_other_types + /// + ChaosDamageOverTimePctTakenAsOtherTypes = 9509, + + /// + /// keystone_corrupted_defences + /// + KeystoneCorruptedDefences = 9510, + + /// + /// keystone_miracle_of_thaumaturgy + /// + KeystoneMiracleOfThaumaturgy = 9511, + + /// + /// keystone_divine_flesh + /// + KeystoneDivineFlesh = 9512, + + /// + /// keystone_tempered_by_war + /// + KeystoneTemperedByWar = 9513, + + /// + /// physical_damage_over_time_%_taken_as_chaos + /// + PhysicalDamageOverTimePctTakenAsChaos = 9514, + + /// + /// chaos_damage_over_time_%_taken_as_physical + /// + ChaosDamageOverTimePctTakenAsPhysical = 9515, + + /// + /// base_physical_damage_over_time_%_taken_as_chaos + /// + BasePhysicalDamageOverTimePctTakenAsChaos = 9516, + + /// + /// base_chaos_damage_over_time_%_taken_as_physical + /// + BaseChaosDamageOverTimePctTakenAsPhysical = 9517, + + /// + /// total_nonlethal_chaos_damage_taken_per_minute + /// + TotalNonlethalChaosDamageTakenPerMinute = 9518, + + /// + /// total_damage_taken_per_minute_towards_life_damaging_es + /// + TotalDamageTakenPerMinuteTowardsLifeDamagingEs = 9519, + + /// + /// total_damage_taken_per_minute_towards_life_bypassing_es + /// + TotalDamageTakenPerMinuteTowardsLifeBypassingEs = 9520, + + /// + /// total_damage_taken_per_minute_towards_mana_damaging_es + /// + TotalDamageTakenPerMinuteTowardsManaDamagingEs = 9521, + + /// + /// total_damage_taken_per_minute_towards_mana_bypassing_es + /// + TotalDamageTakenPerMinuteTowardsManaBypassingEs = 9522, + + /// + /// total_nonlethal_damage_taken_per_minute_towards_life_damaging_es + /// + TotalNonlethalDamageTakenPerMinuteTowardsLifeDamagingEs = 9523, + + /// + /// total_nonlethal_damage_taken_per_minute_towards_life_bypassing_es + /// + TotalNonlethalDamageTakenPerMinuteTowardsLifeBypassingEs = 9524, + + /// + /// total_nonlethal_damage_taken_per_minute_towards_mana_damaging_es + /// + TotalNonlethalDamageTakenPerMinuteTowardsManaDamagingEs = 9525, + + /// + /// total_nonlethal_damage_taken_per_minute_towards_mana_bypassing_es + /// + TotalNonlethalDamageTakenPerMinuteTowardsManaBypassingEs = 9526, + + /// + /// total_nonlethal_damage_taken_per_minute_to_mana + /// + TotalNonlethalDamageTakenPerMinuteToMana = 9527, + + /// + /// physical_damage_taken_per_minute_bypassing_es + /// + PhysicalDamageTakenPerMinuteBypassingEs = 9528, + + /// + /// physical_damage_taken_per_minute_damaging_es + /// + PhysicalDamageTakenPerMinuteDamagingEs = 9529, + + /// + /// physical_damage_taken_per_minute_towards_life_bypassing_es + /// + PhysicalDamageTakenPerMinuteTowardsLifeBypassingEs = 9530, + + /// + /// physical_damage_taken_per_minute_towards_life_damaging_es + /// + PhysicalDamageTakenPerMinuteTowardsLifeDamagingEs = 9531, + + /// + /// physical_damage_taken_per_minute_towards_mana_bypassing_es + /// + PhysicalDamageTakenPerMinuteTowardsManaBypassingEs = 9532, + + /// + /// physical_damage_taken_per_minute_towards_mana_damaging_es + /// + PhysicalDamageTakenPerMinuteTowardsManaDamagingEs = 9533, + + /// + /// fire_damage_bypass_energy_shield_% + /// + FireDamageBypassEnergyShieldPct = 9534, + + /// + /// fire_damage_taken_per_minute_bypassing_es + /// + FireDamageTakenPerMinuteBypassingEs = 9535, + + /// + /// fire_damage_taken_per_minute_damaging_es + /// + FireDamageTakenPerMinuteDamagingEs = 9536, + + /// + /// fire_damage_taken_per_minute_towards_life_bypassing_es + /// + FireDamageTakenPerMinuteTowardsLifeBypassingEs = 9537, + + /// + /// fire_damage_taken_per_minute_towards_life_damaging_es + /// + FireDamageTakenPerMinuteTowardsLifeDamagingEs = 9538, + + /// + /// fire_damage_taken_per_minute_towards_mana_bypassing_es + /// + FireDamageTakenPerMinuteTowardsManaBypassingEs = 9539, + + /// + /// fire_damage_taken_per_minute_towards_mana_damaging_es + /// + FireDamageTakenPerMinuteTowardsManaDamagingEs = 9540, + + /// + /// nonlethal_fire_damage_taken_per_minute_bypassing_es + /// + NonlethalFireDamageTakenPerMinuteBypassingEs = 9541, + + /// + /// nonlethal_fire_damage_taken_per_minute_damaging_es + /// + NonlethalFireDamageTakenPerMinuteDamagingEs = 9542, + + /// + /// nonlethal_fire_damage_taken_per_minute_towards_life_bypassing_es + /// + NonlethalFireDamageTakenPerMinuteTowardsLifeBypassingEs = 9543, + + /// + /// nonlethal_fire_damage_taken_per_minute_towards_life_damaging_es + /// + NonlethalFireDamageTakenPerMinuteTowardsLifeDamagingEs = 9544, + + /// + /// nonlethal_fire_damage_taken_per_minute_towards_mana_bypassing_es + /// + NonlethalFireDamageTakenPerMinuteTowardsManaBypassingEs = 9545, + + /// + /// nonlethal_fire_damage_taken_per_minute_towards_mana_damaging_es + /// + NonlethalFireDamageTakenPerMinuteTowardsManaDamagingEs = 9546, + + /// + /// cold_damage_bypass_energy_shield_% + /// + ColdDamageBypassEnergyShieldPct = 9547, + + /// + /// cold_damage_taken_per_minute_bypassing_es + /// + ColdDamageTakenPerMinuteBypassingEs = 9548, + + /// + /// cold_damage_taken_per_minute_damaging_es + /// + ColdDamageTakenPerMinuteDamagingEs = 9549, + + /// + /// cold_damage_taken_per_minute_towards_life_bypassing_es + /// + ColdDamageTakenPerMinuteTowardsLifeBypassingEs = 9550, + + /// + /// cold_damage_taken_per_minute_towards_life_damaging_es + /// + ColdDamageTakenPerMinuteTowardsLifeDamagingEs = 9551, + + /// + /// cold_damage_taken_per_minute_towards_mana_bypassing_es + /// + ColdDamageTakenPerMinuteTowardsManaBypassingEs = 9552, + + /// + /// cold_damage_taken_per_minute_towards_mana_damaging_es + /// + ColdDamageTakenPerMinuteTowardsManaDamagingEs = 9553, + + /// + /// lightning_damage_bypass_energy_shield_% + /// + LightningDamageBypassEnergyShieldPct = 9554, + + /// + /// lightning_damage_taken_per_minute_bypassing_es + /// + LightningDamageTakenPerMinuteBypassingEs = 9555, + + /// + /// lightning_damage_taken_per_minute_damaging_es + /// + LightningDamageTakenPerMinuteDamagingEs = 9556, + + /// + /// lightning_damage_taken_per_minute_towards_life_bypassing_es + /// + LightningDamageTakenPerMinuteTowardsLifeBypassingEs = 9557, + + /// + /// lightning_damage_taken_per_minute_towards_life_damaging_es + /// + LightningDamageTakenPerMinuteTowardsLifeDamagingEs = 9558, + + /// + /// lightning_damage_taken_per_minute_towards_mana_bypassing_es + /// + LightningDamageTakenPerMinuteTowardsManaBypassingEs = 9559, + + /// + /// lightning_damage_taken_per_minute_towards_mana_damaging_es + /// + LightningDamageTakenPerMinuteTowardsManaDamagingEs = 9560, + + /// + /// chaos_damage_taken_per_minute_bypassing_es + /// + ChaosDamageTakenPerMinuteBypassingEs = 9561, + + /// + /// chaos_damage_taken_per_minute_damaging_es + /// + ChaosDamageTakenPerMinuteDamagingEs = 9562, + + /// + /// chaos_damage_taken_per_minute_towards_life_bypassing_es + /// + ChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9563, + + /// + /// chaos_damage_taken_per_minute_towards_life_damaging_es + /// + ChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9564, + + /// + /// chaos_damage_taken_per_minute_towards_mana_bypassing_es + /// + ChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9565, + + /// + /// chaos_damage_taken_per_minute_towards_mana_damaging_es + /// + ChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9566, + + /// + /// nonlethal_chaos_damage_taken_per_minute_bypassing_es + /// + NonlethalChaosDamageTakenPerMinuteBypassingEs = 9567, + + /// + /// nonlethal_chaos_damage_taken_per_minute_damaging_es + /// + NonlethalChaosDamageTakenPerMinuteDamagingEs = 9568, + + /// + /// nonlethal_chaos_damage_taken_per_minute_towards_life_bypassing_es + /// + NonlethalChaosDamageTakenPerMinuteTowardsLifeBypassingEs = 9569, + + /// + /// nonlethal_chaos_damage_taken_per_minute_towards_life_damaging_es + /// + NonlethalChaosDamageTakenPerMinuteTowardsLifeDamagingEs = 9570, + + /// + /// nonlethal_chaos_damage_taken_per_minute_towards_mana_bypassing_es + /// + NonlethalChaosDamageTakenPerMinuteTowardsManaBypassingEs = 9571, + + /// + /// nonlethal_chaos_damage_taken_per_minute_towards_mana_damaging_es + /// + NonlethalChaosDamageTakenPerMinuteTowardsManaDamagingEs = 9572, + + /// + /// physical_damage_removed_from_mana_before_life_% + /// + PhysicalDamageRemovedFromManaBeforeLifePct = 9573, + + /// + /// fire_damage_removed_from_mana_before_life_% + /// + FireDamageRemovedFromManaBeforeLifePct = 9574, + + /// + /// cold_damage_removed_from_mana_before_life_% + /// + ColdDamageRemovedFromManaBeforeLifePct = 9575, + + /// + /// lightning_damage_removed_from_mana_before_life_% + /// + LightningDamageRemovedFromManaBeforeLifePct = 9576, + + /// + /// chaos_damage_removed_from_mana_before_life_% + /// + ChaosDamageRemovedFromManaBeforeLifePct = 9577, + + /// + /// virtual_lightning_hit_damage_taken_percent_as_fire + /// + VirtualLightningHitDamageTakenPercentAsFire = 9578, + + /// + /// virtual_cold_hit_damage_taken_percent_as_fire + /// + VirtualColdHitDamageTakenPercentAsFire = 9579, + + /// + /// virtual_maximum_life_%_to_add_as_maximum_energy_shield + /// + VirtualMaximumLifePctToAddAsMaximumEnergyShield = 9580, + + /// + /// tempered_by_war_keystone_cold_and_lightning_resistance_+%_final + /// + TemperedByWarKeystoneColdAndLightningResistancePctFinal = 9581, + + /// + /// base_number_of_replicate_minions_allowed + /// + BaseNumberOfReplicateMinionsAllowed = 9582, + + /// + /// number_of_active_replicate_minions + /// + NumberOfActiveReplicateMinions = 9583, + + /// + /// map_legion_fragment_faction_karui + /// + MapLegionFragmentFactionKarui = 9584, + + /// + /// map_legion_fragment_faction_maraketh + /// + MapLegionFragmentFactionMaraketh = 9585, + + /// + /// map_legion_fragment_faction_eternal + /// + MapLegionFragmentFactionEternal = 9586, + + /// + /// map_legion_fragment_faction_templar + /// + MapLegionFragmentFactionTemplar = 9587, + + /// + /// map_legion_fragment_faction_vaal + /// + MapLegionFragmentFactionVaal = 9588, + + /// + /// molten_shell_damage_absorbed_% + /// + MoltenShellDamageAbsorbedPct = 9589, + + /// + /// molten_shell_damage_absorb_limit_%_of_armour + /// + MoltenShellDamageAbsorbLimitPctOfArmour = 9590, + + /// + /// molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire + /// + MoltenShellPctOfAbsorbedDamageDealtAsReflectedFire = 9591, + + /// + /// molten_shell_cooldown_does_not_tick + /// + MoltenShellCooldownDoesNotTick = 9592, + + /// + /// affected_by_sand_armour_debuff + /// + AffectedBySandArmourDebuff = 9593, + + /// + /// attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour + /// + AttackDamageTakenPctFinalFromEnemiesUnaffectedBySandArmour = 9594, + + /// + /// legion_endless_strife_revive_on_death_ms + /// + LegionEndlessStrifeReviveOnDeathMs = 9595, + + /// + /// cannot_cancel_skill_before_contact_point + /// + CannotCancelSkillBeforeContactPoint = 9596, + + /// + /// quick_guard_cooldown_does_not_tick + /// + QuickGuardCooldownDoesNotTick = 9597, + + /// + /// damage_taken_goes_to_life_over_4_seconds_% + /// + DamageTakenGoesToLifeOver4SecondsPct = 9598, + + /// + /// additional_physical_damage_reduction_%_while_bleeding + /// + AdditionalPhysicalDamageReductionPctWhileBleeding = 9599, + + /// + /// blind_art_variation + /// + BlindArtVariation = 9600, + + /// + /// corrupted_defences_keystone_non_chaos_damage_bypass_energy_shield_% + /// + CorruptedDefencesKeystoneNonChaosDamageBypassEnergyShieldPct = 9601, + + /// + /// map_player_chance_to_gain_vaal_soul_on_kill_% + /// + MapPlayerChanceToGainVaalSoulOnKillPct = 9602, + + /// + /// map_cowards_trial_extra_ghosts + /// + MapCowardsTrialExtraGhosts = 9603, + + /// + /// map_cowards_trial_extra_phantasms + /// + MapCowardsTrialExtraPhantasms = 9604, + + /// + /// map_cowards_trial_extra_zombies + /// + MapCowardsTrialExtraZombies = 9605, + + /// + /// map_cowards_trial_extra_raging_spirits + /// + MapCowardsTrialExtraRagingSpirits = 9606, + + /// + /// minimum_endurance_charges_while_on_low_life_+ + /// + MinimumEnduranceChargesWhileOnLowLife = 9607, + + /// + /// minimum_power_charges_while_on_low_life_+ + /// + MinimumPowerChargesWhileOnLowLife = 9608, + + /// + /// precision_mana_reservation_+% + /// + PrecisionManaReservationPct = 9609, + + /// + /// precision_reserves_no_mana + /// + PrecisionReservesNoMana = 9610, + + /// + /// critical_strike_chance_+%_for_spells_if_you_have_killed_recently + /// + CriticalStrikeChancePctForSpellsIfYouHaveKilledRecently = 9611, + + /// + /// critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently + /// + CriticalStrikeMultiplierForSpellsIfYouHaventKilledRecently = 9612, + + /// + /// impale_support_physical_damage_+%_final + /// + ImpaleSupportPhysicalDamagePctFinal = 9613, + + /// + /// damage_+%_per_frenzy_power_or_endurance_charge + /// + DamagePctPerFrenzyPowerOrEnduranceCharge = 9614, + + /// + /// pressure_points_keystone_cooldown_speed_+%_final + /// + PressurePointsKeystoneCooldownSpeedPctFinal = 9615, + + /// + /// override_off_hand_base_critical_strike_chance + /// + OverrideOffHandBaseCriticalStrikeChance = 9616, + + /// + /// virtual_block_%_damage_taken + /// + VirtualBlockPctDamageTaken = 9617, + + /// + /// base_block_%_damage_taken + /// + BaseBlockPctDamageTaken = 9618, + + /// + /// support_greater_spell_echo_spell_damage_+%_final_per_repeat + /// + SupportGreaterSpellEchoSpellDamagePctFinalPerRepeat = 9619, + + /// + /// support_greater_spell_echo_area_of_effect_+%_per_repeat + /// + SupportGreaterSpellEchoAreaOfEffectPctPerRepeat = 9620, + + /// + /// spell_damage_+%_final_from_greater_spell_echo + /// + SpellDamagePctFinalFromGreaterSpellEcho = 9621, + + /// + /// local_display_socketed_gems_supported_by_level_x_greater_spell_echo + /// + LocalDisplaySocketedGemsSupportedByLevelXGreaterSpellEcho = 9622, + + /// + /// spell_damage_+%_per_100_max_life + /// + SpellDamagePctPer100MaxLife = 9623, + + /// + /// spell_critical_strike_chance_+%_per_100_max_life + /// + SpellCriticalStrikeChancePctPer100MaxLife = 9624, + + /// + /// sacrifice_%_life_on_spell_skill + /// + SacrificePctLifeOnSpellSkill = 9625, + + /// + /// dexterity_+%_if_strength_higher_than_intelligence + /// + DexterityPctIfStrengthHigherThanIntelligence = 9626, + + /// + /// critical_strike_multiplier_+_if_dexterity_higher_than_intelligence + /// + CriticalStrikeMultiplierIfDexterityHigherThanIntelligence = 9627, + + /// + /// elemental_damage_+%_per_10_dexterity + /// + ElementalDamagePctPer10Dexterity = 9628, + + /// + /// map_cowards_trial_extra_skeleton_cannons + /// + MapCowardsTrialExtraSkeletonCannons = 9629, + + /// + /// minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage + /// + MinionRagingSpiritPctOfMaximumLifeTakenPerMinuteAsChaosDamage = 9630, + + /// + /// unique_lose_a_power_charge_when_hit + /// + UniqueLoseAPowerChargeWhenHit = 9631, + + /// + /// display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed + /// + DisplayFrostFuryAdditiveCastSpeedModifiersApplyToFireSpeed = 9632, + + /// + /// physical_damage_aura_nearby_enemies_physical_damage_taken_+% + /// + PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPct = 9633, + + /// + /// physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max + /// + PhysicalDamageAuraNearbyEnemiesPhysicalDamageTakenPctMax = 9634, + + /// + /// berserk_cooldown_does_not_tick + /// + BerserkCooldownDoesNotTick = 9635, + + /// + /// keystone_glancing_blows + /// + KeystoneGlancingBlows = 9636, + + /// + /// block_chance_+%_final + /// + BlockChancePctFinal = 9637, + + /// + /// spell_block_chance_+%_final + /// + SpellBlockChancePctFinal = 9638, + + /// + /// support_slashing_buff_duration_ms + /// + SupportSlashingBuffDurationMs = 9639, + + /// + /// support_slashing_buff_base_duration_ms + /// + SupportSlashingBuffBaseDurationMs = 9640, + + /// + /// supported_by_slashing + /// + SupportedBySlashing = 9641, + + /// + /// minion_raging_spirit_maximum_life_+% + /// + MinionRagingSpiritMaximumLifePct = 9642, + + /// + /// draining_lasso_action_speed_+%_final + /// + DrainingLassoActionSpeedPctFinal = 9643, + + /// + /// affected_by_flask_drain + /// + AffectedByFlaskDrain = 9644, + + /// + /// keystone_emperors_heart + /// + KeystoneEmperorsHeart = 9645, + + /// + /// life_recovery_from_flasks_also_recovers_energy_shield + /// + LifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9646, + + /// + /// number_of_attached_retract_arrows + /// + NumberOfAttachedRetractArrows = 9647, + + /// + /// apply_attached_retract_arrow_on_hit + /// + ApplyAttachedRetractArrowOnHit = 9648, + + /// + /// map_is_legion_endgame_map + /// + MapIsLegionEndgameMap = 9649, + + /// + /// display_cowards_trial_waves_of_monsters + /// + DisplayCowardsTrialWavesOfMonsters = 9650, + + /// + /// display_cowards_trial_waves_of_undead_monsters + /// + DisplayCowardsTrialWavesOfUndeadMonsters = 9651, + + /// + /// raise_zombie_does_not_use_corpses + /// + RaiseZombieDoesNotUseCorpses = 9652, + + /// + /// axe_damage_+% + /// + AxeDamagePct = 9653, + + /// + /// staff_damage_+% + /// + StaffDamagePct = 9654, + + /// + /// claw_damage_+% + /// + ClawDamagePct = 9655, + + /// + /// dagger_damage_+% + /// + DaggerDamagePct = 9656, + + /// + /// mace_damage_+% + /// + MaceDamagePct = 9657, + + /// + /// sword_damage_+% + /// + SwordDamagePct = 9658, + + /// + /// damage_while_dual_wielding_+% + /// + DamageWhileDualWieldingPct = 9659, + + /// + /// attack_damage_+%_while_holding_a_shield + /// + AttackDamagePctWhileHoldingAShield = 9660, + + /// + /// affected_by_precision + /// + AffectedByPrecision = 9661, + + /// + /// critical_strike_multiplier_+_while_affected_by_precision + /// + CriticalStrikeMultiplierWhileAffectedByPrecision = 9662, + + /// + /// attack_damage_+%_while_affected_by_precision + /// + AttackDamagePctWhileAffectedByPrecision = 9663, + + /// + /// recharge_flasks_on_crit_while_affected_by_precision + /// + RechargeFlasksOnCritWhileAffectedByPrecision = 9664, + + /// + /// attack_speed_+%_while_affected_by_precision + /// + AttackSpeedPctWhileAffectedByPrecision = 9665, + + /// + /// cannot_be_blinded_while_affected_by_precision + /// + CannotBeBlindedWhileAffectedByPrecision = 9666, + + /// + /// virtual_cannot_be_blinded + /// + VirtualCannotBeBlinded = 9667, + + /// + /// virtual_recharge_flasks_on_crit + /// + VirtualRechargeFlasksOnCrit = 9668, + + /// + /// maximum_life_per_10_intelligence + /// + MaximumLifePer10Intelligence = 9669, + + /// + /// drop_additional_adjacent_maps + /// + DropAdditionalAdjacentMaps = 9670, + + /// + /// local_unique_jewel_alternate_tree_version + /// + LocalUniqueJewelAlternateTreeVersion = 9671, + + /// + /// local_unique_jewel_alternate_tree_seed + /// + LocalUniqueJewelAlternateTreeSeed = 9672, + + /// + /// local_unique_jewel_alternate_tree_keystone + /// + LocalUniqueJewelAlternateTreeKeystone = 9673, + + /// + /// keystone_blind_monk + /// + KeystoneBlindMonk = 9674, + + /// + /// should_be_blind_from_keystone + /// + ShouldBeBlindFromKeystone = 9675, + + /// + /// keystone_blind_monk_melee_critical_strike_chance_+%_final + /// + KeystoneBlindMonkMeleeCriticalStrikeChancePctFinal = 9676, + + /// + /// console_skill_dont_chase + /// + ConsoleSkillDontChase = 9677, + + /// + /// local_display_you_get_elemental_ailments_instead_of_allies + /// + LocalDisplayYouGetElementalAilmentsInsteadOfAllies = 9678, + + /// + /// redirect_elemental_ailments_to_aura_owner + /// + RedirectElementalAilmentsToAuraOwner = 9679, + + /// + /// local_display_grants_skill_smite_level + /// + LocalDisplayGrantsSkillSmiteLevel = 9680, + + /// + /// base_devotion + /// + BaseDevotion = 9681, + + /// + /// light_radius_additive_modifiers_apply_to_damage + /// + LightRadiusAdditiveModifiersApplyToDamage = 9682, + + /// + /// light_radius_additive_modifiers_apply_to_area_%_value + /// + LightRadiusAdditiveModifiersApplyToAreaPctValue = 9683, + + /// + /// slice_and_dice_damage_+%_final_per_5_rage_on_final_strike + /// + SliceAndDiceDamagePctFinalPer5RageOnFinalStrike = 9684, + + /// + /// slice_and_dice_melee_range_+_per_5_rage_on_final_strike + /// + SliceAndDiceMeleeRangePer5RageOnFinalStrike = 9685, + + /// + /// slice_and_dice_attack_speed_+%_final_on_final_strike + /// + SliceAndDiceAttackSpeedPctFinalOnFinalStrike = 9686, + + /// + /// slice_and_dice_minimum_added_physical_damage_on_final_strike + /// + SliceAndDiceMinimumAddedPhysicalDamageOnFinalStrike = 9687, + + /// + /// slice_and_dice_maximum_added_physical_damage_on_final_strike + /// + SliceAndDiceMaximumAddedPhysicalDamageOnFinalStrike = 9688, + + /// + /// keystone_wind_dancer + /// + KeystoneWindDancer = 9689, + + /// + /// keystone_wind_dancer_damage_taken_+%_final_if_have_not_been_hit_recently + /// + KeystoneWindDancerDamageTakenPctFinalIfHaveNotBeenHitRecently = 9690, + + /// + /// keystone_wind_dancer_evasion_rating_+%_final_if_have_not_been_hit_recently + /// + KeystoneWindDancerEvasionRatingPctFinalIfHaveNotBeenHitRecently = 9691, + + /// + /// keystone_wind_dancer_evasion_rating_+%_final_if_have_been_hit_recently + /// + KeystoneWindDancerEvasionRatingPctFinalIfHaveBeenHitRecently = 9692, + + /// + /// map_legion_endless_mode_+_s + /// + MapLegionEndlessModeS = 9693, + + /// + /// map_legion_endless_pack_size_+% + /// + MapLegionEndlessPackSizePct = 9694, + + /// + /// map_legion_endless_monolith_pulse_time_ms + /// + MapLegionEndlessMonolithPulseTimeMs = 9695, + + /// + /// local_flask_life_recovery_from_flasks_also_recovers_energy_shield + /// + LocalFlaskLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9696, + + /// + /// precision_mana_reservation_-50%_final + /// + PrecisionManaReservation50PctFinal = 9697, + + /// + /// multistrike_damage_+%_final_on_first_repeat + /// + MultistrikeDamagePctFinalOnFirstRepeat = 9698, + + /// + /// multistrike_damage_+%_final_on_second_repeat + /// + MultistrikeDamagePctFinalOnSecondRepeat = 9699, + + /// + /// damage_+%_final_from_multistrike_repeat + /// + DamagePctFinalFromMultistrikeRepeat = 9700, + + /// + /// virtual_life_recovery_from_flasks_also_recovers_energy_shield + /// + VirtualLifeRecoveryFromFlasksAlsoRecoversEnergyShield = 9701, + + /// + /// keystone_emperors_heart_flask_life_to_recover_pluspercent_final + /// + KeystoneEmperorsHeartFlaskLifeToRecoverPluspercentFinal = 9702, + + /// + /// gain_unholy_might_for_4_seconds_on_crit + /// + GainUnholyMightFor4SecondsOnCrit = 9703, + + /// + /// keystone_wicked_ward + /// + KeystoneWickedWard = 9704, + + /// + /// wicked_ward_keystone_energy_shield_regeneration_rate_+%_final + /// + WickedWardKeystoneEnergyShieldRegenerationRatePctFinal = 9705, + + /// + /// wicked_ward_keystone_maximum_energy_shield_leech_rate_+%_final + /// + WickedWardKeystoneMaximumEnergyShieldLeechRatePctFinal = 9706, + + /// + /// trigger_on_bow_attack_% + /// + TriggerOnBowAttackPct = 9707, + + /// + /// local_display_trigger_level_x_rain_of_arrows_on_bow_attack + /// + LocalDisplayTriggerLevelXRainOfArrowsOnBowAttack = 9708, + + /// + /// curses_you_inflict_remain_after_death + /// + CursesYouInflictRemainAfterDeath = 9709, + + /// + /// enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage + /// + EnemiesNearCursedCorpsesAreBlindedAndExplodeOnDeathForPctLifeAsPhysicalDamage = 9710, + + /// + /// explode_on_death_for_%_life_as_physical_damage + /// + ExplodeOnDeathForPctLifeAsPhysicalDamage = 9711, + + /// + /// support_pulverise_melee_area_damage_+%_final + /// + SupportPulveriseMeleeAreaDamagePctFinal = 9712, + + /// + /// support_pulverise_area_of_effect_+%_final + /// + SupportPulveriseAreaOfEffectPctFinal = 9713, + + /// + /// support_pulverise_attack_speed_+%_final + /// + SupportPulveriseAttackSpeedPctFinal = 9714, + + /// + /// local_unique_jewel_alternate_tree_internal_revision + /// + LocalUniqueJewelAlternateTreeInternalRevision = 9715, + + /// + /// chest_display_guarded_by_hooded_architect_mortal + /// + ChestDisplayGuardedByHoodedArchitectMortal = 9716, + + /// + /// skill_cooldown_is_4_seconds + /// + SkillCooldownIs4Seconds = 9717, + + /// + /// warcry_skills_cooldown_is_4_seconds + /// + WarcrySkillsCooldownIs4Seconds = 9718, + + /// + /// object_inherent_melee_hit_stun_duration_+%_final + /// + ObjectInherentMeleeHitStunDurationPctFinal = 9719, + + /// + /// melee_hit_damage_stun_multiplier_+% + /// + MeleeHitDamageStunMultiplierPct = 9720, + + /// + /// non_physical_hit_damage_stun_multiplier_+% + /// + NonPhysicalHitDamageStunMultiplierPct = 9721, + + /// + /// attack_damage_+%_while_you_have_fortify + /// + AttackDamagePctWhileYouHaveFortify = 9722, + + /// + /// recover_%_life_when_gaining_adrenaline + /// + RecoverPctLifeWhenGainingAdrenaline = 9723, + + /// + /// you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage + /// + YouAndAlliesAffectedByYourPlacedBannersRegeneratePctLifePerMinutePerStage = 9724, + + /// + /// less_damage_%_taken_from_non_player_sources + /// + LessDamagePctTakenFromNonPlayerSources = 9725, + + /// + /// less_damage_%_dealt_to_non_players + /// + LessDamagePctDealtToNonPlayers = 9726, + + /// + /// use_melee_pattern_range + /// + UseMeleePatternRange = 9727, + + /// + /// scale_melee_range_to_actor_scale + /// + ScaleMeleeRangeToActorScale = 9728, + + /// + /// chieftain_burning_damage_+%_final + /// + ChieftainBurningDamagePctFinal = 9729, + + /// + /// ancestor_totem_parent_activation_range_+% + /// + AncestorTotemParentActivationRangePct = 9730, + + /// + /// virtual_ancestor_totem_parent_activation_range + /// + VirtualAncestorTotemParentActivationRange = 9731, + + /// + /// ancestor_totem_buff_effect_+% + /// + AncestorTotemBuffEffectPct = 9732, + + /// + /// area_of_effect_+%_while_totem_active + /// + AreaOfEffectPctWhileTotemActive = 9733, + + /// + /// gain_endurance_charge_%_chance_on_using_fire_skill + /// + GainEnduranceChargePctChanceOnUsingFireSkill = 9734, + + /// + /// damage_+%_final_if_lost_endurance_charge_in_past_8_seconds + /// + DamagePctFinalIfLostEnduranceChargeInPast8Seconds = 9735, + + /// + /// number_of_endurance_charges_lost_recently + /// + NumberOfEnduranceChargesLostRecently = 9736, + + /// + /// life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently + /// + LifeRecoveryRatePctIfHaveTakenFireDamageFromAnEnemyHitRecently = 9737, + + /// + /// virtual_main_hand_total_attack_distance_+ + /// + VirtualMainHandTotalAttackDistance = 9738, + + /// + /// virtual_off_hand_total_attack_distance_+ + /// + VirtualOffHandTotalAttackDistance = 9739, + + /// + /// berserker_gain_rage_on_attack_hit_cooldown_ms + /// + BerserkerGainRageOnAttackHitCooldownMs = 9740, + + /// + /// chance_to_deal_double_damage_%_per_4_rage + /// + ChanceToDealDoubleDamagePctPer4Rage = 9741, + + /// + /// life_loss_%_per_minute_per_rage_while_not_losing_rage + /// + LifeLossPctPerMinutePerRageWhileNotLosingRage = 9742, + + /// + /// berserker_warcry_grant_damage_+%_to_you_and_nearby_allies + /// + BerserkerWarcryGrantDamagePctToYouAndNearbyAllies = 9743, + + /// + /// berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies + /// + BerserkerWarcryGrantAttackSpeedPctToYouAndNearbyAllies = 9744, + + /// + /// maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently + /// + MaximumLifeLeechRatePctIfHaveTakenASavageHitRecently = 9745, + + /// + /// attack_speed_+%_if_have_been_hit_recently + /// + AttackSpeedPctIfHaveBeenHitRecently = 9746, + + /// + /// attack_minimum_added_physical_damage_if_have_crit_recently + /// + AttackMinimumAddedPhysicalDamageIfHaveCritRecently = 9747, + + /// + /// attack_maximum_added_physical_damage_if_have_crit_recently + /// + AttackMaximumAddedPhysicalDamageIfHaveCritRecently = 9748, + + /// + /// gain_blitz_charge_%_chance_on_crit + /// + GainBlitzChargePctChanceOnCrit = 9749, + + /// + /// attack_speed_+%_final_per_blitz_charge + /// + AttackSpeedPctFinalPerBlitzCharge = 9750, + + /// + /// critical_strike_chance_+%_per_blitz_charge + /// + CriticalStrikeChancePctPerBlitzCharge = 9751, + + /// + /// maximum_blitz_charges + /// + MaximumBlitzCharges = 9752, + + /// + /// current_blitz_charges + /// + CurrentBlitzCharges = 9753, + + /// + /// virtual_should_not_lose_rage + /// + VirtualShouldNotLoseRage = 9754, + + /// + /// virtual_not_losing_rage + /// + VirtualNotLosingRage = 9755, + + /// + /// keystone_strength_of_blood + /// + KeystoneStrengthOfBlood = 9756, + + /// + /// double_slash_bleeding_damage_+%_final_in_blood_stance + /// + DoubleSlashBleedingDamagePctFinalInBloodStance = 9757, + + /// + /// totem_damage_+%_per_10_devotion + /// + TotemDamagePctPer10Devotion = 9758, + + /// + /// sigil_damage_+%_per_10_devotion + /// + SigilDamagePctPer10Devotion = 9759, + + /// + /// channelled_skill_damage_+%_per_10_devotion + /// + ChannelledSkillDamagePctPer10Devotion = 9760, + + /// + /// area_damage_+%_per_10_devotion + /// + AreaDamagePctPer10Devotion = 9761, + + /// + /// elemental_damage_+%_per_10_devotion + /// + ElementalDamagePctPer10Devotion = 9762, + + /// + /// elemental_resistance_%_per_10_devotion + /// + ElementalResistancePctPer10Devotion = 9763, + + /// + /// non_damaging_ailment_effect_+%_per_10_devotion + /// + NonDamagingAilmentEffectPctPer10Devotion = 9764, + + /// + /// self_elemental_status_duration_-%_per_10_devotion + /// + SelfElementalStatusDurationPctPer10Devotion = 9765, + + /// + /// self_curse_duration_+%_per_10_devotion + /// + SelfCurseDurationPctPer10Devotion = 9766, + + /// + /// minion_attack_and_cast_speed_+%_per_10_devotion + /// + MinionAttackAndCastSpeedPctPer10Devotion = 9767, + + /// + /// minion_accuracy_rating_per_10_devotion + /// + MinionAccuracyRatingPer10Devotion = 9768, + + /// + /// mana_regeneration_rate_per_minute_per_10_devotion + /// + ManaRegenerationRatePerMinutePer10Devotion = 9769, + + /// + /// mana_cost_+%_per_10_devotion + /// + ManaCostPctPer10Devotion = 9770, + + /// + /// non_curse_aura_effect_+%_per_10_devotion + /// + NonCurseAuraEffectPctPer10Devotion = 9771, + + /// + /// shield_defences_+%_per_10_devotion + /// + ShieldDefencesPctPer10Devotion = 9772, + + /// + /// physical_damage_%_to_convert_to_fire_at_devotion_threshold + /// + PhysicalDamagePctToConvertToFireAtDevotionThreshold = 9773, + + /// + /// physical_damage_%_to_convert_to_cold_at_devotion_threshold + /// + PhysicalDamagePctToConvertToColdAtDevotionThreshold = 9774, + + /// + /// physical_damage_%_to_convert_to_lightning_at_devotion_threshold + /// + PhysicalDamagePctToConvertToLightningAtDevotionThreshold = 9775, + + /// + /// mana_%_to_add_as_energy_shield_at_devotion_threshold + /// + ManaPctToAddAsEnergyShieldAtDevotionThreshold = 9776, + + /// + /// gain_arcane_surge_on_hit_at_devotion_threshold + /// + GainArcaneSurgeOnHitAtDevotionThreshold = 9777, + + /// + /// minimum_endurance_charges_at_devotion_threshold + /// + MinimumEnduranceChargesAtDevotionThreshold = 9778, + + /// + /// minimum_power_charges_at_devotion_threshold + /// + MinimumPowerChargesAtDevotionThreshold = 9779, + + /// + /// minimum_frenzy_charges_at_devotion_threshold + /// + MinimumFrenzyChargesAtDevotionThreshold = 9780, + + /// + /// immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold + /// + ImmuneToElementalAilmentsWhileOnConsecratedGroundAtDevotionThreshold = 9781, + + /// + /// physical_damage_reduction_%_at_devotion_threshold + /// + PhysicalDamageReductionPctAtDevotionThreshold = 9782, + + /// + /// additional_maximum_all_resistances_%_at_devotion_threshold + /// + AdditionalMaximumAllResistancesPctAtDevotionThreshold = 9783, + + /// + /// inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold + /// + InflictFireExposureOnHitPctChanceAtDevotionThreshold = 9784, + + /// + /// inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold + /// + InflictColdExposureOnHitPctChanceAtDevotionThreshold = 9785, + + /// + /// inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold + /// + InflictLightningExposureOnHitPctChanceAtDevotionThreshold = 9786, + + /// + /// combined_shield_defences_+% + /// + CombinedShieldDefencesPct = 9787, + + /// + /// virtual_totem_damage_+% + /// + VirtualTotemDamagePct = 9788, + + /// + /// virtual_sigil_damage_+% + /// + VirtualSigilDamagePct = 9789, + + /// + /// virtual_channelled_skill_damage_+% + /// + VirtualChannelledSkillDamagePct = 9790, + + /// + /// virtual_additional_maximum_all_resistances_% + /// + VirtualAdditionalMaximumAllResistancesPct = 9791, + + /// + /// virtual_non_damaging_ailment_effect_+% + /// + VirtualNonDamagingAilmentEffectPct = 9792, + + /// + /// virtual_self_elemental_status_duration_-% + /// + VirtualSelfElementalStatusDurationPct = 9793, + + /// + /// virtual_self_curse_duration_+% + /// + VirtualSelfCurseDurationPct = 9794, + + /// + /// virtual_minion_accuracy_rating + /// + VirtualMinionAccuracyRating = 9795, + + /// + /// virtual_gain_arcane_surge_on_hit_%_chance + /// + VirtualGainArcaneSurgeOnHitPctChance = 9796, + + /// + /// virtual_inflict_fire_exposure_on_hit_%_chance + /// + VirtualInflictFireExposureOnHitPctChance = 9797, + + /// + /// virtual_inflict_cold_exposure_on_hit_%_chance + /// + VirtualInflictColdExposureOnHitPctChance = 9798, + + /// + /// virtual_inflict_lightning_exposure_on_hit_%_chance + /// + VirtualInflictLightningExposureOnHitPctChance = 9799, + + /// + /// monster_life_+%_final_from_rarity_table + /// + MonsterLifePctFinalFromRarityTable = 9800, + + /// + /// keystone_mortal_conviction + /// + KeystoneMortalConviction = 9801, + + /// + /// keystone_supreme_ego + /// + KeystoneSupremeEgo = 9802, + + /// + /// virtual_no_mana_reserved + /// + VirtualNoManaReserved = 9803, + + /// + /// life_leech_on_any_damage_when_hit_by_attack_permyriad + /// + LifeLeechOnAnyDamageWhenHitByAttackPermyriad = 9804, + + /// + /// mana_leech_on_any_damage_when_hit_by_attack_permyriad + /// + ManaLeechOnAnyDamageWhenHitByAttackPermyriad = 9805, + + /// + /// legion_reward_type_index + /// + LegionRewardTypeIndex = 9806, + + /// + /// slayer_damage_+%_final_against_unique_enemies + /// + SlayerDamagePctFinalAgainstUniqueEnemies = 9807, + + /// + /// damage_+%_final_from_slayer + /// + DamagePctFinalFromSlayer = 9808, + + /// + /// gain_movement_speed_+%_for_20_seconds_on_kill + /// + GainMovementSpeedPctFor20SecondsOnKill = 9809, + + /// + /// gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy + /// + GainAttackSpeedPctFor20SecondsOnKillingRareOrUniqueEnemy = 9810, + + /// + /// damage_taken_+%_while_leeching + /// + DamageTakenPctWhileLeeching = 9811, + + /// + /// attack_damage_+%_while_leeching + /// + AttackDamagePctWhileLeeching = 9812, + + /// + /// slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50% + /// + SlayerAreaOfEffectPctPerEnemyKilledRecentlyUpTo50Pct = 9813, + + /// + /// area_skill_accuracy_rating_+% + /// + AreaSkillAccuracyRatingPct = 9814, + + /// + /// maximum_endurance_charges_is_equal_to_maximum_frenzy_charges + /// + MaximumEnduranceChargesIsEqualToMaximumFrenzyCharges = 9815, + + /// + /// override_weapon_base_critical_strike_chance + /// + OverrideWeaponBaseCriticalStrikeChance = 9816, + + /// + /// slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100 + /// + SlayerCriticalStrikeMultiplierPerNearbyEnemyUpTo100 = 9817, + + /// + /// track_number_of_enemies_killed_recently + /// + TrackNumberOfEnemiesKilledRecently = 9818, + + /// + /// skill_is_area_skill + /// + SkillIsAreaSkill = 9819, + + /// + /// evasion_rating_+%_when_on_full_life + /// + EvasionRatingPctWhenOnFullLife = 9820, + + /// + /// flicker_strike_buff_movement_speed_+% + /// + FlickerStrikeBuffMovementSpeedPct = 9821, + + /// + /// flicker_strike_buff_duration_ms + /// + FlickerStrikeBuffDurationMs = 9822, + + /// + /// pride_physical_damage_taken_+%_final + /// + PridePhysicalDamageTakenPctFinal = 9823, + + /// + /// kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms + /// + KaomsPrimacyGainRageOnAttackCritCooldownMs = 9824, + + /// + /// physical_damage_%_to_add_as_fire_per_rage + /// + PhysicalDamagePctToAddAsFirePerRage = 9825, + + /// + /// deal_double_damage_to_enemies_on_full_life + /// + DealDoubleDamageToEnemiesOnFullLife = 9826, + + /// + /// skill_is_guard_skill + /// + SkillIsGuardSkill = 9827, + + /// + /// skill_is_travel_skill + /// + SkillIsTravelSkill = 9828, + + /// + /// critical_strike_multiplier_is_300 + /// + CriticalStrikeMultiplierIs300 = 9829, + + /// + /// spell_cast_time_cannot_be_modified + /// + SpellCastTimeCannotBeModified = 9830, + + /// + /// dual_strike_critical_strike_chance_+%_final + /// + DualStrikeCriticalStrikeChancePctFinal = 9831, + + /// + /// dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life + /// + DualStrikeCriticalStrikeChancePctFinalAgainstEnemiesOnFullLife = 9832, + + /// + /// dual_strike_damage_+%_final + /// + DualStrikeDamagePctFinal = 9833, + + /// + /// dual_strike_damage_+%_final_against_enemies_on_full_life + /// + DualStrikeDamagePctFinalAgainstEnemiesOnFullLife = 9834, + + /// + /// puncture_bleeding_damage_+%_final + /// + PunctureBleedingDamagePctFinal = 9835, + + /// + /// withered_on_hit_for_2_seconds_%_chance + /// + WitheredOnHitFor2SecondsPctChance = 9836, + + /// + /// melee_defer_damage_prediction + /// + MeleeDeferDamagePrediction = 9837, + + /// + /// frenzy_skill_attack_damage_+%_final_per_frenzy_charge + /// + FrenzySkillAttackDamagePctFinalPerFrenzyCharge = 9838, + + /// + /// frenzy_skill_attack_speed_+%_final_per_frenzy_charge + /// + FrenzySkillAttackSpeedPctFinalPerFrenzyCharge = 9839, + + /// + /// prevent_incubator_completion + /// + PreventIncubatorCompletion = 9840, + + /// + /// local_chance_for_poison_damage_+300%_final_inflicted_with_weapon + /// + LocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9841, + + /// + /// support_rage_gain_rage_on_melee_hit_cooldown_ms + /// + SupportRageGainRageOnMeleeHitCooldownMs = 9842, + + /// + /// cannot_gain_rage_from_rage_support + /// + CannotGainRageFromRageSupport = 9843, + + /// + /// cannot_gain_rage_from_berserker + /// + CannotGainRageFromBerserker = 9844, + + /// + /// cannot_gain_rage_from_kaoms_primacy + /// + CannotGainRageFromKaomsPrimacy = 9845, + + /// + /// attack_minimum_added_physical_damage_with_at_least_10_rage + /// + AttackMinimumAddedPhysicalDamageWithAtLeast10Rage = 9846, + + /// + /// attack_maximum_added_physical_damage_with_at_least_10_rage + /// + AttackMaximumAddedPhysicalDamageWithAtLeast10Rage = 9847, + + /// + /// attack_minimum_added_physical_damage_per_10_rage + /// + AttackMinimumAddedPhysicalDamagePer10Rage = 9848, + + /// + /// attack_maximum_added_physical_damage_per_10_rage + /// + AttackMaximumAddedPhysicalDamagePer10Rage = 9849, + + /// + /// local_display_socketed_gems_supported_by_level_x_pulverise + /// + LocalDisplaySocketedGemsSupportedByLevelXPulverise = 9850, + + /// + /// local_display_socketed_gems_supported_by_level_x_rage + /// + LocalDisplaySocketedGemsSupportedByLevelXRage = 9851, + + /// + /// force_old_melee_behaviour + /// + ForceOldMeleeBehaviour = 9852, + + /// + /// maximum_challenger_charges + /// + MaximumChallengerCharges = 9853, + + /// + /// current_challenger_charges + /// + CurrentChallengerCharges = 9854, + + /// + /// gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance + /// + GainChallengerChargePctChanceOnHittingRareOrUniqueEnemyInBloodStance = 9855, + + /// + /// gain_challenger_charge_%_chance_on_kill_in_sand_stance + /// + GainChallengerChargePctChanceOnKillInSandStance = 9856, + + /// + /// attack_and_movement_speed_+%_final_per_challenger_charge + /// + AttackAndMovementSpeedPctFinalPerChallengerCharge = 9857, + + /// + /// local_display_grants_skill_pride_level + /// + LocalDisplayGrantsSkillPrideLevel = 9858, + + /// + /// pride_mana_reservation_+% + /// + PrideManaReservationPct = 9859, + + /// + /// pride_aura_effect_+% + /// + PrideAuraEffectPct = 9860, + + /// + /// pride_reserves_no_mana + /// + PrideReservesNoMana = 9861, + + /// + /// pride_chance_to_deal_double_damage_% + /// + PrideChanceToDealDoubleDamagePct = 9862, + + /// + /// pride_intimidate_enemy_for_4_seconds_on_hit + /// + PrideIntimidateEnemyFor4SecondsOnHit = 9863, + + /// + /// pride_physical_damage_+% + /// + PridePhysicalDamagePct = 9864, + + /// + /// pride_chance_to_impale_with_attacks_% + /// + PrideChanceToImpaleWithAttacksPct = 9865, + + /// + /// virtual_impaled_debuff_number_of_reflected_hits + /// + VirtualImpaledDebuffNumberOfReflectedHits = 9866, + + /// + /// pride_your_impaled_debuff_lasts_+_additional_hits + /// + PrideYourImpaledDebuffLastsAdditionalHits = 9867, + + /// + /// using_pride + /// + UsingPride = 9868, + + /// + /// main_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon + /// + MainHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9869, + + /// + /// main_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon + /// + MainHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9870, + + /// + /// main_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon + /// + MainHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9871, + + /// + /// off_hand_local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon + /// + OffHandLocalChanceForPoisonDamage100PctFinalInflictedWithThisWeapon = 9872, + + /// + /// off_hand_local_chance_for_poison_damage_+300%_final_inflicted_with_weapon + /// + OffHandLocalChanceForPoisonDamage300PctFinalInflictedWithWeapon = 9873, + + /// + /// off_hand_local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon + /// + OffHandLocalChanceForBleedingDamage100PctFinalInflictedWithThisWeapon = 9874, + + /// + /// cyclone_max_number_of_stages + /// + CycloneMaxNumberOfStages = 9875, + + /// + /// display_modifiers_to_melee_attack_range_apply_to_skill_radius + /// + DisplayModifiersToMeleeAttackRangeApplyToSkillRadius = 9876, + + /// + /// support_fortify_ailment_damage_+%_final_from_melee_hits + /// + SupportFortifyAilmentDamagePctFinalFromMeleeHits = 9877, + + /// + /// support_fortify_melee_damage_+%_final + /// + SupportFortifyMeleeDamagePctFinal = 9878, + + /// + /// monster_aggro_radius_+%_against_non_player_team + /// + MonsterAggroRadiusPctAgainstNonPlayerTeam = 9879, + + /// + /// map_essence_monolith_contains_additional_essence_of_corruption + /// + MapEssenceMonolithContainsAdditionalEssenceOfCorruption = 9880, + + /// + /// slayer_damage_+%_final_from_distance + /// + SlayerDamagePctFinalFromDistance = 9881, + + /// + /// glacial_hammer_third_hit_freeze_as_though_dealt_damage_+% + /// + GlacialHammerThirdHitFreezeAsThoughDealtDamagePct = 9882, + + /// + /// staff_elemental_damage_+% + /// + StaffElementalDamagePct = 9883, + + /// + /// map_essence_monolith_contains_essence_of_corruption_% + /// + MapEssenceMonolithContainsEssenceOfCorruptionPct = 9884, + + /// + /// supported_skill_can_only_use_axe_and_sword + /// + SupportedSkillCanOnlyUseAxeAndSword = 9885, + + /// + /// supported_skill_can_only_use_mace_and_staff + /// + SupportedSkillCanOnlyUseMaceAndStaff = 9886, + + /// + /// ratio_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad + /// + RatioDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9887, + + /// + /// ratio_nonlethal_damage_taken_over_time_to_energy_shield_that_should_overflow_to_mana_permyriad + /// + RatioNonlethalDamageTakenOverTimeToEnergyShieldThatShouldOverflowToManaPermyriad = 9888, + + /// + /// virtual_mana_degeneration_per_minute + /// + VirtualManaDegenerationPerMinute = 9889, + + /// + /// local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius + /// + LocalUniqueJewelSpectralShieldThrowAdditionalChainsWithTotal40StrDexInRadius = 9890, + + /// + /// local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius + /// + LocalUniqueJewelSpectralShieldThrowFireShardsOnChainWithTotal40StrDexInRadius = 9891, + + /// + /// local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius + /// + LocalUniqueJewelSpectralShieldThrowLessShardProjectilesWithTotal40StrDexInRadius = 9892, + + /// + /// spectral_shield_throw_additional_chains + /// + SpectralShieldThrowAdditionalChains = 9893, + + /// + /// repeat_target_selection_distance_from_initial_target_bias + /// + RepeatTargetSelectionDistanceFromInitialTargetBias = 9894, + + /// + /// spectral_shield_throw_fire_shards_on_chain + /// + SpectralShieldThrowFireShardsOnChain = 9895, + + /// + /// spectral_shield_throw_shard_projectiles_+%_final + /// + SpectralShieldThrowShardProjectilesPctFinal = 9896, + + /// + /// number_of_projectiles_+%_final_from_skill + /// + NumberOfProjectilesPctFinalFromSkill = 9897, + + /// + /// earthquake_aftershock_minimum_added_physical_damage + /// + EarthquakeAftershockMinimumAddedPhysicalDamage = 9898, + + /// + /// earthquake_aftershock_maximum_added_physical_damage + /// + EarthquakeAftershockMaximumAddedPhysicalDamage = 9899, + + /// + /// attack_speed_+%_with_channelling_skills + /// + AttackSpeedPctWithChannellingSkills = 9900, + + /// + /// attack_dodge_%_while_channelling + /// + AttackDodgePctWhileChannelling = 9901, + + /// + /// attack_damage_+%_while_channelling + /// + AttackDamagePctWhileChannelling = 9902, + + /// + /// gain_endurance_charge_%_when_hit_while_channelling + /// + GainEnduranceChargePctWhenHitWhileChannelling = 9903, + + /// + /// gain_frenzy_charge_%_when_hit_while_channelling + /// + GainFrenzyChargePctWhenHitWhileChannelling = 9904, + + /// + /// armour_+_while_affected_by_guard_skill + /// + ArmourWhileAffectedByGuardSkill = 9905, + + /// + /// additional_physical_damage_reduction_%_while_affected_by_guard_skill + /// + AdditionalPhysicalDamageReductionPctWhileAffectedByGuardSkill = 9906, + + /// + /// life_regeneration_per_minute_%_while_affected_by_guard_skill + /// + LifeRegenerationPerMinutePctWhileAffectedByGuardSkill = 9907, + + /// + /// guard_skill_cooldown_recovery_+% + /// + GuardSkillCooldownRecoveryPct = 9908, + + /// + /// melee_range_+_with_staff + /// + MeleeRangeWithStaff = 9909, + + /// + /// melee_range_+_with_axe + /// + MeleeRangeWithAxe = 9910, + + /// + /// melee_range_+_with_sword + /// + MeleeRangeWithSword = 9911, + + /// + /// melee_range_+_with_mace + /// + MeleeRangeWithMace = 9912, + + /// + /// melee_range_+_with_dagger + /// + MeleeRangeWithDagger = 9913, + + /// + /// melee_range_+_with_claw + /// + MeleeRangeWithClaw = 9914, + + /// + /// melee_range_+_with_one_handed + /// + MeleeRangeWithOneHanded = 9915, + + /// + /// melee_range_+_with_two_handed + /// + MeleeRangeWithTwoHanded = 9916, + + /// + /// melee_range_+_while_dual_wielding + /// + MeleeRangeWhileDualWielding = 9917, + + /// + /// melee_range_+_while_wielding_shield + /// + MeleeRangeWhileWieldingShield = 9918, + + /// + /// affected_by_guard_skill + /// + AffectedByGuardSkill = 9919, + + /// + /// attack_damage_+%_with_channelling_skills + /// + AttackDamagePctWithChannellingSkills = 9920, + + /// + /// owning_player_maximum_life + /// + OwningPlayerMaximumLife = 9921, + + /// + /// display_this_skill_cooldown_does_not_recover_during_buff + /// + DisplayThisSkillCooldownDoesNotRecoverDuringBuff = 9922, + + /// + /// local_display_socketed_gems_supported_by_level_x_close_combat + /// + LocalDisplaySocketedGemsSupportedByLevelXCloseCombat = 9923, + + /// + /// local_display_socketed_gems_supported_by_level_x_shockwave + /// + LocalDisplaySocketedGemsSupportedByLevelXShockwave = 9924, + + /// + /// berserk_base_rage_loss_per_second + /// + BerserkBaseRageLossPerSecond = 9925, + + /// + /// berserk_rage_loss_+%_per_second + /// + BerserkRageLossPctPerSecond = 9926, + + /// + /// berserk_base_damage_taken_+%_final + /// + BerserkBaseDamageTakenPctFinal = 9927, + + /// + /// map_num_extra_resonating_shrines + /// + MapNumExtraResonatingShrines = 9928, + + /// + /// map_num_extra_gloom_shrines + /// + MapNumExtraGloomShrines = 9929, + + /// + /// skill_angle_+%_in_sand_stance + /// + SkillAnglePctInSandStance = 9930, + + /// + /// support_storm_barrier_physical_damage_+%_final + /// + SupportStormBarrierPhysicalDamagePctFinal = 9931, + + /// + /// map_fragment_level_+ + /// + MapFragmentLevel = 9932, + + /// + /// support_slashing_buff_attack_cast_speed_+%_final_to_grant + /// + SupportSlashingBuffAttackCastSpeedPctFinalToGrant = 9933, + + /// + /// immortal_call_buff_effect_duration_+%_per_removable_endurance_charge + /// + ImmortalCallBuffEffectDurationPctPerRemovableEnduranceCharge = 9934, + + /// + /// monster_hide_minimap_icon + /// + MonsterHideMinimapIcon = 9935, + + /// + /// chain_strike_gain_x_rage_if_attack_hits + /// + ChainStrikeGainXRageIfAttackHits = 9936, + + /// + /// leap_slam_always_knockback_within_range + /// + LeapSlamAlwaysKnockbackWithinRange = 9937, + + /// + /// display_vaal_molten_shell_alternate_description + /// + DisplayVaalMoltenShellAlternateDescription = 9938, + + /// + /// life_recovery_per_minute_from_miracle_of_thaumaturgy_keystone + /// + LifeRecoveryPerMinuteFromMiracleOfThaumaturgyKeystone = 9939, + + /// + /// mana_loss_per_minute_from_miracle_of_thaumaturgy_keystone + /// + ManaLossPerMinuteFromMiracleOfThaumaturgyKeystone = 9940, + + /// + /// total_loss_life_per_minute + /// + TotalLossLifePerMinute = 9941, + + /// + /// no_current_mana + /// + NoCurrentMana = 9942, + + /// + /// molten_shell_max_damage_absorbed + /// + MoltenShellMaxDamageAbsorbed = 9943, + + /// + /// molten_shell_duration_+% + /// + MoltenShellDurationPct = 9944, + + /// + /// shield_charge_attack_time_+30%_if_no_charge + /// + ShieldChargeAttackTime30PctIfNoCharge = 9945, + + /// + /// area_of_effect_+%_while_wielding_bow + /// + AreaOfEffectPctWhileWieldingBow = 9946, + + /// + /// cast_speed_+%_while_holding_bow + /// + CastSpeedPctWhileHoldingBow = 9947, + + /// + /// chance_to_poison_on_critical_strike_with_bow_% + /// + ChanceToPoisonOnCriticalStrikeWithBowPct = 9948, + + /// + /// darkness_damage_taken_per_minute_towards_life_damaging_es + /// + DarknessDamageTakenPerMinuteTowardsLifeDamagingEs = 9949, + + /// + /// darkness_damage_taken_per_minute_towards_mana_damaging_es + /// + DarknessDamageTakenPerMinuteTowardsManaDamagingEs = 9950, + + /// + /// triggered_by_shockwave_support + /// + TriggeredByShockwaveSupport = 9951, + + /// + /// force_lite_skill_effects + /// + ForceLiteSkillEffects = 9952, + + /// + /// map_blight_league + /// + MapBlightLeague = 9953, + + /// + /// attack_is_melee_override + /// + AttackIsMeleeOverride = 9954, + + /// + /// quick_guard_additional_physical_damage_reduction_% + /// + QuickGuardAdditionalPhysicalDamageReductionPct = 9955, + + /// + /// quick_dodge_travel_distance_+% + /// + QuickDodgeTravelDistancePct = 9956, + + /// + /// bladestorm_sandstorm_movement_speed_+% + /// + BladestormSandstormMovementSpeedPct = 9957, + + /// + /// bladestorm_damage_+% + /// + BladestormDamagePct = 9958, + + /// + /// blood_sand_stance_buff_effect_+% + /// + BloodSandStanceBuffEffectPct = 9959, + + /// + /// blood_spears_area_of_effect_+% + /// + BloodSpearsAreaOfEffectPct = 9960, + + /// + /// blood_spears_damage_+% + /// + BloodSpearsDamagePct = 9961, + + /// + /// ice_dash_cooldown_speed_+% + /// + IceDashCooldownSpeedPct = 9962, + + /// + /// ice_dash_travel_distance_+% + /// + IceDashTravelDistancePct = 9963, + + /// + /// blood_sand_armour_mana_reservation_+% + /// + BloodSandArmourManaReservationPct = 9964, + + /// + /// chain_strike_gain_rage_on_hit_%_chance + /// + ChainStrikeGainRageOnHitPctChance = 9965, + + /// + /// chain_strike_cone_radius_+_per_12_rage + /// + ChainStrikeConeRadiusPer12Rage = 9966, + + /// + /// chain_strike_damage_+% + /// + ChainStrikeDamagePct = 9967, + + /// + /// energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath + /// + EnergyShieldLeechFromLightningDamagePermyriadWhileAffectedByWrath = 9968, + + /// + /// base_added_cooldown_count + /// + BaseAddedCooldownCount = 9969, + + /// + /// quick_dodge_added_cooldown_count + /// + QuickDodgeAddedCooldownCount = 9970, + + /// + /// corpse_can_explode_on_death + /// + CorpseCanExplodeOnDeath = 9971, + + /// + /// berserk_buff_effect_+% + /// + BerserkBuffEffectPct = 9972, + + /// + /// secondary_imp_variation + /// + SecondaryImpVariation = 9973, + + /// + /// go_away_other_leagues + /// + GoAwayOtherLeagues = 9974, + + /// + /// berserk_rage_loss_+% + /// + BerserkRageLossPct = 9975, + + /// + /// virtual_berserk_hundred_times_rage_loss_per_second + /// + VirtualBerserkHundredTimesRageLossPerSecond = 9976, + + /// + /// virtual_steelskin_damage_%_taken_to_buff + /// + VirtualSteelskinDamagePctTakenToBuff = 9977, + + /// + /// virtual_steelskin_damage_limit + /// + VirtualSteelskinDamageLimit = 9978, + + /// + /// steelskin_damage_limit_+% + /// + SteelskinDamageLimitPct = 9979, + + /// + /// map_normal_monster_life_regeneration_rate_per_minute_% + /// + MapNormalMonsterLifeRegenerationRatePerMinutePct = 9980, + + /// + /// map_magic_monster_life_regeneration_rate_per_minute_% + /// + MapMagicMonsterLifeRegenerationRatePerMinutePct = 9981, + + /// + /// map_rare_monster_life_regeneration_rate_per_minute_% + /// + MapRareMonsterLifeRegenerationRatePerMinutePct = 9982, + + /// + /// virtual_mine_throwing_speed_+% + /// + VirtualMineThrowingSpeedPct = 9983, + + /// + /// support_minefield_mine_throwing_speed_+%_final + /// + SupportMinefieldMineThrowingSpeedPctFinal = 9984, + + /// + /// bone_golem_grants_minion_minimum_added_physical_damage + /// + BoneGolemGrantsMinionMinimumAddedPhysicalDamage = 9985, + + /// + /// bone_golem_grants_minion_maximum_added_physical_damage + /// + BoneGolemGrantsMinionMaximumAddedPhysicalDamage = 9986, + + /// + /// bone_golem_damage_+%_final_per_non_golem_minion_nearby + /// + BoneGolemDamagePctFinalPerNonGolemMinionNearby = 9987, + + /// + /// bone_golem_damage_per_non_golem_minion_nearby_maximum_% + /// + BoneGolemDamagePerNonGolemMinionNearbyMaximumPct = 9988, + + /// + /// bone_golem_attack_speed_+%_final_after_third_combo_index + /// + BoneGolemAttackSpeedPctFinalAfterThirdComboIndex = 9989, + + /// + /// bone_golem_damage_+%_final_after_third_combo_index + /// + BoneGolemDamagePctFinalAfterThirdComboIndex = 9990, + + /// + /// enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently + /// + EnchantmentBootsManaRegenerationRatePctIfCastSpellRecently = 9991, + + /// + /// damage_+%_final_per_non_golem_minion_nearby + /// + DamagePctFinalPerNonGolemMinionNearby = 9992, + + /// + /// number_of_nearby_non_golem_minions + /// + NumberOfNearbyNonGolemMinions = 9993, + + /// + /// energy_shield_leech_permyriad_vs_frozen_enemies + /// + EnergyShieldLeechPermyriadVsFrozenEnemies = 9994, + + /// + /// attack_skill_mana_leech_from_any_damage_permyriad + /// + AttackSkillManaLeechFromAnyDamagePermyriad = 9995, + + /// + /// slither_wither_every_ms + /// + SlitherWitherEveryMs = 9996, + + /// + /// avoid_all_elemental_ailment_%_per_summoned_golem + /// + AvoidAllElementalAilmentPctPerSummonedGolem = 9997, + + /// + /// virtual_avoid_all_elemental_ailment_% + /// + VirtualAvoidAllElementalAilmentPct = 9998, + + /// + /// map_monstrous_treasure_no_monsters + /// + MapMonstrousTreasureNoMonsters = 9999, + + /// + /// guardian_with_nearby_ally_damage_+%_final_for_you_and_allies + /// + GuardianWithNearbyAllyDamagePctFinalForYouAndAllies = 10000, + + /// + /// damage_+%_final_from_guardian_aura + /// + DamagePctFinalFromGuardianAura = 10001, + + /// + /// guardian_with_5_nearby_allies_you_and_allies_have_onslaught + /// + GuardianWith5NearbyAlliesYouAndAlliesHaveOnslaught = 10002, + + /// + /// virtual_attack_cast_movement_speed_+% + /// + VirtualAttackCastMovementSpeedPct = 10003, + + /// + /// attack_cast_movement_speed_+% + /// + AttackCastMovementSpeedPct = 10004, + + /// + /// poison_on_critical_strike + /// + PoisonOnCriticalStrike = 10005, + + /// + /// number_of_nearby_corpses + /// + NumberOfNearbyCorpses = 10006, + + /// + /// track_number_of_nearby_corpses + /// + TrackNumberOfNearbyCorpses = 10007, + + /// + /// necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse + /// + NecromancerDamagePctForNearbyEnemiesWithNearbyCorpse = 10008, + + /// + /// necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse + /// + NecromancerDamagePctFinalForYouAndAlliesWithNearbyCorpse = 10009, + + /// + /// damage_+%_final_from_necromancer_aura + /// + DamagePctFinalFromNecromancerAura = 10010, + + /// + /// minion_area_of_effect_+% + /// + MinionAreaOfEffectPct = 10011, + + /// + /// area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently + /// + AreaOfEffectPctForYouAndMinionsIfConsumedCorpseRecently = 10012, + + /// + /// necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse + /// + NecromancerManaRegenerationRatePerMinuteForYouAndAlliesPerNearbyCorpse = 10013, + + /// + /// necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse + /// + NecromancerEnergyShieldRegenerationRatePerMinutePctForYouAndAlliesPerNearbyCorpse = 10014, + + /// + /// regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse + /// + RegeneratePctMaximumManaOver2SecondsOnConsumingCorpse = 10015, + + /// + /// regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse + /// + RegeneratePctMaximumEnergyShieldOver2SecondsOnConsumingCorpse = 10016, + + /// + /// maximum_life_+%_for_corpses_you_create + /// + MaximumLifePctForCorpsesYouCreate = 10017, + + /// + /// enemies_near_corpses_created_recently_are_shocked_and_chilled + /// + EnemiesNearCorpsesCreatedRecentlyAreShockedAndChilled = 10018, + + /// + /// cannot_be_splashed_from + /// + CannotBeSplashedFrom = 10019, + + /// + /// display_item_generation_can_roll_minion_affixes + /// + DisplayItemGenerationCanRollMinionAffixes = 10020, + + /// + /// corrosive_shroud_gains_%_of_damage_from_inflicted_poisons + /// + CorrosiveShroudGainsPctOfDamageFromInflictedPoisons = 10021, + + /// + /// corrosive_shroud_maximum_stored_poison_damage + /// + CorrosiveShroudMaximumStoredPoisonDamage = 10022, + + /// + /// corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second + /// + CorrosiveShroudPctOfStoredPoisonDamageToDealPerSecond = 10023, + + /// + /// movement_velocity_+%_while_at_maximum_power_charges + /// + MovementVelocityPctWhileAtMaximumPowerCharges = 10024, + + /// + /// damage_vs_enemies_on_low_life_+%_final + /// + DamageVsEnemiesOnLowLifePctFinal = 10025, + + /// + /// damage_+%_final_from_enemies_on_low_life + /// + DamagePctFinalFromEnemiesOnLowLife = 10026, + + /// + /// self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby + /// + SelfTakeNoExtraDamageFromCriticalStrikesIfThereIsAtMost1RareOrUniqueEnemyNearby = 10027, + + /// + /// damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby + /// + DamagePctFinalIfThereIsAtMost1RareOrUniqueEnemyNearby = 10028, + + /// + /// damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby + /// + DamageTakenPctIfThereAreAtLeast2RareOrUniqueEnemiesNearby = 10029, + + /// + /// support_remote_mine_damage_+%_final_per_mine_detonation_cascade + /// + SupportRemoteMineDamagePctFinalPerMineDetonationCascade = 10030, + + /// + /// damage_+%_final_from_mine_detonation_cascade + /// + DamagePctFinalFromMineDetonationCascade = 10031, + + /// + /// bone_armour_cooldown_does_not_tick + /// + BoneArmourCooldownDoesNotTick = 10032, + + /// + /// minion_larger_aggro_radius + /// + MinionLargerAggroRadius = 10033, + + /// + /// grant_puppet_master_buff_to_parent_on_hit_% + /// + GrantPuppetMasterBuffToParentOnHitPct = 10034, + + /// + /// minion_grant_puppet_master_buff_to_parent_on_hit_% + /// + MinionGrantPuppetMasterBuffToParentOnHitPct = 10035, + + /// + /// support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master + /// + SupportMinionOffensiveStanceMinionDamagePctFinalWhileYouHavePuppetMaster = 10036, + + /// + /// has_puppet_master + /// + HasPuppetMaster = 10037, + + /// + /// puppet_master_minion_damage_+%_final + /// + PuppetMasterMinionDamagePctFinal = 10038, + + /// + /// virtual_minion_damage_+%_final + /// + VirtualMinionDamagePctFinal = 10039, + + /// + /// puppet_master_duration_ms + /// + PuppetMasterDurationMs = 10040, + + /// + /// puppet_master_base_duration_ms + /// + PuppetMasterBaseDurationMs = 10041, + + /// + /// have_impaled_recently + /// + HaveImpaledRecently = 10042, + + /// + /// track_have_impaled_recently + /// + TrackHaveImpaledRecently = 10043, + + /// + /// minion_chance_to_gain_onslaught_on_kill_for_4_seconds_% + /// + MinionChanceToGainOnslaughtOnKillFor4SecondsPct = 10044, + + /// + /// minion_no_extra_bleed_damage_while_moving + /// + MinionNoExtraBleedDamageWhileMoving = 10045, + + /// + /// minion_maximum_life_%_to_add_as_maximum_energy_shield + /// + MinionMaximumLifePctToAddAsMaximumEnergyShield = 10046, + + /// + /// minion_additional_spell_block_% + /// + MinionAdditionalSpellBlockPct = 10047, + + /// + /// virtual_minion_area_of_effect_+% + /// + VirtualMinionAreaOfEffectPct = 10048, + + /// + /// minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently + /// + MinionAreaOfEffectPctIfYouHaveCastAMinionSkillRecently = 10049, + + /// + /// chance_to_gain_unholy_might_on_kill_for_4_seconds_% + /// + ChanceToGainUnholyMightOnKillFor4SecondsPct = 10050, + + /// + /// minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_% + /// + MinionChanceToGainUnholyMightOnKillFor4SecondsPct = 10051, + + /// + /// damage_+%_while_you_have_a_summoned_golem + /// + DamagePctWhileYouHaveASummonedGolem = 10052, + + /// + /// fire_hit_damage_taken_%_as_physical + /// + FireHitDamageTakenPctAsPhysical = 10053, + + /// + /// base_fire_hit_damage_taken_%_as_physical_value_negated + /// + BaseFireHitDamageTakenPctAsPhysicalValueNegated = 10054, + + /// + /// base_fire_hit_damage_taken_%_as_physical + /// + BaseFireHitDamageTakenPctAsPhysical = 10055, + + /// + /// serpent_strike_maximum_snakes + /// + SerpentStrikeMaximumSnakes = 10056, + + /// + /// affected_by_elusive + /// + AffectedByElusive = 10057, + + /// + /// slither_wither_radius + /// + SlitherWitherRadius = 10058, + + /// + /// arcane_surge_effect_+% + /// + ArcaneSurgeEffectPct = 10059, + + /// + /// arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50% + /// + ArcaneSurgeEffectPctPer200ManaSpentRecentlyUpTo50Pct = 10060, + + /// + /// mana_gained_on_spell_hit_vs_cursed_enemies + /// + ManaGainedOnSpellHitVsCursedEnemies = 10061, + + /// + /// recover_%_maximum_mana_on_killing_cursed_enemy + /// + RecoverPctMaximumManaOnKillingCursedEnemy = 10062, + + /// + /// remove_random_elemental_ailment_on_mana_flask_use + /// + RemoveRandomElementalAilmentOnManaFlaskUse = 10063, + + /// + /// remove_curse_on_mana_flask_use + /// + RemoveCurseOnManaFlaskUse = 10064, + + /// + /// spell_damage_+%_per_100_maximum_mana_up_to_60% + /// + SpellDamagePctPer100MaximumManaUpTo60Pct = 10065, + + /// + /// mana_regeneration_rate_+%_per_1%_spell_block_chance + /// + ManaRegenerationRatePctPer1PctSpellBlockChance = 10066, + + /// + /// flask_mana_charges_used_+% + /// + FlaskManaChargesUsedPct = 10067, + + /// + /// mana_flasks_gain_X_charges_every_3_seconds + /// + ManaFlasksGainXChargesEvery3Seconds = 10068, + + /// + /// mana_recovery_rate_+%_while_affected_by_a_mana_flask + /// + ManaRecoveryRatePctWhileAffectedByAManaFlask = 10069, + + /// + /// attack_and_cast_speed_+%_while_affected_by_a_mana_flask + /// + AttackAndCastSpeedPctWhileAffectedByAManaFlask = 10070, + + /// + /// using_mana_flask + /// + UsingManaFlask = 10071, + + /// + /// virtual_arcane_surge_effect_+% + /// + VirtualArcaneSurgeEffectPct = 10072, + + /// + /// skill_mana_cost_+_with_non_channelling_skills + /// + SkillManaCostWithNonChannellingSkills = 10073, + + /// + /// skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity + /// + SkillManaCostWithNonChannellingSkillsWhileAffectedByClarity = 10074, + + /// + /// mana_reservation_+%_with_skills_that_throw_mines + /// + ManaReservationPctWithSkillsThatThrowMines = 10075, + + /// + /// immune_to_ignite_and_shock + /// + ImmuneToIgniteAndShock = 10076, + + /// + /// mana_cost_+%_for_trap_skills + /// + ManaCostPctForTrapSkills = 10077, + + /// + /// minion_focussed_fire_target_id + /// + MinionFocussedFireTargetId = 10078, + + /// + /// support_minion_focus_fire_damage_+%_final_vs_focussed_target + /// + SupportMinionFocusFireDamagePctFinalVsFocussedTarget = 10079, + + /// + /// support_minion_use_focussed_target + /// + SupportMinionUseFocussedTarget = 10080, + + /// + /// damage_+%_final_from_support_minion_focus_fire + /// + DamagePctFinalFromSupportMinionFocusFire = 10081, + + /// + /// additional_critical_strike_chance_permyriad_while_affected_by_elusive + /// + AdditionalCriticalStrikeChancePermyriadWhileAffectedByElusive = 10082, + + /// + /// critical_strike_multiplier_+_while_affected_by_elusive + /// + CriticalStrikeMultiplierWhileAffectedByElusive = 10083, + + /// + /// gain_elusive_on_crit_%_chance + /// + GainElusiveOnCritPctChance = 10084, + + /// + /// supported_skill_can_only_use_dagger_and_claw + /// + SupportedSkillCanOnlyUseDaggerAndClaw = 10085, + + /// + /// bleed_damage_+%_vs_player_minions_final + /// + BleedDamagePctVsPlayerMinionsFinal = 10086, + + /// + /// disable_mine_detonation_cascade + /// + DisableMineDetonationCascade = 10087, + + /// + /// map_tier + /// + MapTier = 10088, + + /// + /// minions_are_defensive + /// + MinionsAreDefensive = 10089, + + /// + /// support_minion_defensive_stance_minion_damage_taken_+%_final + /// + SupportMinionDefensiveStanceMinionDamageTakenPctFinal = 10090, + + /// + /// damage_taken_+%_final_from_support_minion_defensive_stance + /// + DamageTakenPctFinalFromSupportMinionDefensiveStance = 10091, + + /// + /// minion_chance_to_taunt_on_hit_% + /// + MinionChanceToTauntOnHitPct = 10092, + + /// + /// support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you + /// + SupportMinionDefensiveStanceMinionDamagePctFinalAgainstEnemiesNearYou = 10093, + + /// + /// support_minion_defensive_stance_damage_+%_final_against_enemies_near_parent + /// + SupportMinionDefensiveStanceDamagePctFinalAgainstEnemiesNearParent = 10094, + + /// + /// damage_+%_final_from_support_minion_defensive_stance + /// + DamagePctFinalFromSupportMinionDefensiveStance = 10095, + + /// + /// base_mine_detonation_time_ms + /// + BaseMineDetonationTimeMs = 10096, + + /// + /// virtual_mine_detonation_time_ms + /// + VirtualMineDetonationTimeMs = 10097, + + /// + /// mine_detonation_speed_+% + /// + MineDetonationSpeedPct = 10098, + + /// + /// non_chilled_enemies_you_bleed_are_chilled + /// + NonChilledEnemiesYouBleedAreChilled = 10099, + + /// + /// non_chilled_enemies_you_poison_are_chilled + /// + NonChilledEnemiesYouPoisonAreChilled = 10100, + + /// + /// chilled_while_bleeding + /// + ChilledWhileBleeding = 10101, + + /// + /// chilled_while_poisoned + /// + ChilledWhilePoisoned = 10102, + + /// + /// shatter_on_kill_vs_bleeding_enemies + /// + ShatterOnKillVsBleedingEnemies = 10103, + + /// + /// shatter_on_kill_vs_poisoned_enemies + /// + ShatterOnKillVsPoisonedEnemies = 10104, + + /// + /// serpent_strike_viper_damage_+%_final + /// + SerpentStrikeViperDamagePctFinal = 10105, + + /// + /// damage_+%_per_raised_zombie + /// + DamagePctPerRaisedZombie = 10106, + + /// + /// elemental_damage_taken_+%_final_per_raised_zombie + /// + ElementalDamageTakenPctFinalPerRaisedZombie = 10107, + + /// + /// minion_chance_to_freeze_shock_ignite_% + /// + MinionChanceToFreezeShockIgnitePct = 10108, + + /// + /// minion_base_physical_damage_%_to_convert_to_fire + /// + MinionBasePhysicalDamagePctToConvertToFire = 10109, + + /// + /// minion_base_physical_damage_%_to_convert_to_cold + /// + MinionBasePhysicalDamagePctToConvertToCold = 10110, + + /// + /// minion_base_physical_damage_%_to_convert_to_lightning + /// + MinionBasePhysicalDamagePctToConvertToLightning = 10111, + + /// + /// minion_base_physical_damage_%_to_convert_to_chaos + /// + MinionBasePhysicalDamagePctToConvertToChaos = 10112, + + /// + /// minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item + /// + MinionBasePhysicalDamagePctToConvertToFirePerRedSocketOnItem = 10113, + + /// + /// minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item + /// + MinionBasePhysicalDamagePctToConvertToColdPerGreenSocketOnItem = 10114, + + /// + /// minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item + /// + MinionBasePhysicalDamagePctToConvertToLightningPerBlueSocketOnItem = 10115, + + /// + /// minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item + /// + MinionBasePhysicalDamagePctToConvertToChaosPerWhiteSocketOnItem = 10116, + + /// + /// display_hide_projectile_chain_num + /// + DisplayHideProjectileChainNum = 10117, + + /// + /// mine_detonates_instantly + /// + MineDetonatesInstantly = 10118, + + /// + /// mine_area_of_effect_+% + /// + MineAreaOfEffectPct = 10119, + + /// + /// mine_area_of_effect_+%_if_detonated_mine_recently + /// + MineAreaOfEffectPctIfDetonatedMineRecently = 10120, + + /// + /// mine_area_damage_+%_if_detonated_mine_recently + /// + MineAreaDamagePctIfDetonatedMineRecently = 10121, + + /// + /// sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10% + /// + SabotuerMinesApplyDamageTakenPctToNearbyEnemiesUpTo10Pct = 10122, + + /// + /// sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10% + /// + SabotuerMinesApplyDamagePctToNearbyEnemiesUpTo10Pct = 10123, + + /// + /// critical_strike_chance_+%_per_mine_detonated_recently_up_to_100% + /// + CriticalStrikeChancePctPerMineDetonatedRecentlyUpTo100Pct = 10124, + + /// + /// critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40 + /// + CriticalStrikeMultiplierPerMineDetonatedRecentlyUpTo40 = 10125, + + /// + /// local_display_grants_skill_bone_armour + /// + LocalDisplayGrantsSkillBoneArmour = 10126, + + /// + /// current_righteous_charges + /// + CurrentRighteousCharges = 10127, + + /// + /// gain_righteous_charge_on_mana_spent_% + /// + GainRighteousChargeOnManaSpentPct = 10128, + + /// + /// lose_all_righteous_charges_on_mana_use_threshold + /// + LoseAllRighteousChargesOnManaUseThreshold = 10129, + + /// + /// elemental_damage_+%_final_per_righteous_charge + /// + ElementalDamagePctFinalPerRighteousCharge = 10130, + + /// + /// critical_strike_chance_+%_per_righteous_charge + /// + CriticalStrikeChancePctPerRighteousCharge = 10131, + + /// + /// maximum_righteous_charges + /// + MaximumRighteousCharges = 10132, + + /// + /// map_num_extra_blights_ + /// + MapNumExtraBlights = 10133, + + /// + /// map_nuke_everything + /// + MapNukeEverything = 10134, + + /// + /// lightning_explosion_mine_aura_damage_taken_+% + /// + LightningExplosionMineAuraDamageTakenPct = 10135, + + /// + /// mine_detonation_cascade_index + /// + MineDetonationCascadeIndex = 10136, + + /// + /// corrosive_shroud_poison_damage_+%_final_while_accumulating_poison + /// + CorrosiveShroudPoisonDamagePctFinalWhileAccumulatingPoison = 10137, + + /// + /// lose_a_frenzy_charge_on_travel_skill_use_%_chance + /// + LoseAFrenzyChargeOnTravelSkillUsePctChance = 10138, + + /// + /// lose_a_power_charge_when_you_gain_elusive_%_chance + /// + LoseAPowerChargeWhenYouGainElusivePctChance = 10139, + + /// + /// elusive_effect_on_self_+%_per_power_charge + /// + ElusiveEffectOnSelfPctPerPowerCharge = 10140, + + /// + /// travel_skills_cooldown_speed_+%_per_frenzy_charge + /// + TravelSkillsCooldownSpeedPctPerFrenzyCharge = 10141, + + /// + /// maximum_frenzy_charges_is_equal_to_maximum_power_charges + /// + MaximumFrenzyChargesIsEqualToMaximumPowerCharges = 10142, + + /// + /// virtual_elusive_effect_+% + /// + VirtualElusiveEffectPct = 10143, + + /// + /// ground_temporal_anomaly_art_variation + /// + GroundTemporalAnomalyArtVariation = 10144, + + /// + /// blight_tower_damage_+%_final_vs_fire_monster + /// + BlightTowerDamagePctFinalVsFireMonster = 10145, + + /// + /// blight_tower_damage_+%_final_vs_cold_monster + /// + BlightTowerDamagePctFinalVsColdMonster = 10146, + + /// + /// blight_tower_damage_+%_final_vs_lightning_monster + /// + BlightTowerDamagePctFinalVsLightningMonster = 10147, + + /// + /// blight_tower_damage_+%_final_vs_physical_monster + /// + BlightTowerDamagePctFinalVsPhysicalMonster = 10148, + + /// + /// blight_tower_damage_+%_final_vs_chaos_monster + /// + BlightTowerDamagePctFinalVsChaosMonster = 10149, + + /// + /// blight_tower_damage_+%_final_vs_flying_monster + /// + BlightTowerDamagePctFinalVsFlyingMonster = 10150, + + /// + /// damage_+%_final_against_blight_monster_type + /// + DamagePctFinalAgainstBlightMonsterType = 10151, + + /// + /// is_blight_fire_monster + /// + IsBlightFireMonster = 10152, + + /// + /// is_blight_cold_monster + /// + IsBlightColdMonster = 10153, + + /// + /// is_blight_lightning_monster + /// + IsBlightLightningMonster = 10154, + + /// + /// is_blight_physical_monster + /// + IsBlightPhysicalMonster = 10155, + + /// + /// is_blight_chaos_monster + /// + IsBlightChaosMonster = 10156, + + /// + /// is_blight_flying_monster + /// + IsBlightFlyingMonster = 10157, + + /// + /// unaffected_by_weakening_tower + /// + UnaffectedByWeakeningTower = 10158, + + /// + /// mine_skill_targets_detonation_cascade_origin + /// + MineSkillTargetsDetonationCascadeOrigin = 10159, + + /// + /// local_flask_gain_X_charges_when_hit + /// + LocalFlaskGainXChargesWhenHit = 10160, + + /// + /// local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect + /// + LocalFlaskManaRecoveryOccursInstantlyAtEndOfFlaskEffect = 10161, + + /// + /// local_flask_life_leech_from_attack_damage_permyriad_while_healing + /// + LocalFlaskLifeLeechFromAttackDamagePermyriadWhileHealing = 10162, + + /// + /// local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing + /// + LocalFlaskEnergyShieldLeechFromSpellDamagePermyriadWhileHealing = 10163, + + /// + /// local_flask_attack_speed_+%_while_healing + /// + LocalFlaskAttackSpeedPctWhileHealing = 10164, + + /// + /// local_flask_cast_speed_+%_while_healing + /// + LocalFlaskCastSpeedPctWhileHealing = 10165, + + /// + /// local_flask_chance_to_freeze_shock_ignite_%_while_healing + /// + LocalFlaskChanceToFreezeShockIgnitePctWhileHealing = 10166, + + /// + /// local_flask_effect_not_removed_at_full_mana + /// + LocalFlaskEffectNotRemovedAtFullMana = 10167, + + /// + /// recover_mana_when_buff_reaches_duration + /// + RecoverManaWhenBuffReachesDuration = 10168, + + /// + /// skitterbots_trap_mine_damage_+%_final + /// + SkitterbotsTrapMineDamagePctFinal = 10169, + + /// + /// blight_aura_stat_1 + /// + BlightAuraStat1 = 10170, + + /// + /// blight_aura_stat_2 + /// + BlightAuraStat2 = 10171, + + /// + /// blight_aura_stat_3 + /// + BlightAuraStat3 = 10172, + + /// + /// blight_aura_stat_4 + /// + BlightAuraStat4 = 10173, + + /// + /// blight_aura_stat_5 + /// + BlightAuraStat5 = 10174, + + /// + /// inspiration_charge_duration_+% + /// + InspirationChargeDurationPct = 10175, + + /// + /// minimum_added_fire_damage_taken + /// + MinimumAddedFireDamageTaken = 10176, + + /// + /// maximum_added_fire_damage_taken + /// + MaximumAddedFireDamageTaken = 10177, + + /// + /// petrification_hits_to_break + /// + PetrificationHitsToBreak = 10178, + + /// + /// virtual_base_mine_detonation_time_ms + /// + VirtualBaseMineDetonationTimeMs = 10179, + + /// + /// virtual_base_mine_duration + /// + VirtualBaseMineDuration = 10180, + + /// + /// virtual_mine_override_pvp_scaling_time_ms + /// + VirtualMineOverridePvpScalingTimeMs = 10181, + + /// + /// support_remote_mine_2_base_mine_detonation_time_ms + /// + SupportRemoteMine2BaseMineDetonationTimeMs = 10182, + + /// + /// support_remote_mine_2_base_mine_duration + /// + SupportRemoteMine2BaseMineDuration = 10183, + + /// + /// support_remote_mine_2_mine_override_pvp_scaling_time_ms + /// + SupportRemoteMine2MineOverridePvpScalingTimeMs = 10184, + + /// + /// virtual_enemy_chance_to_deal_double_damage_%_against_self + /// + VirtualEnemyChanceToDealDoubleDamagePctAgainstSelf = 10185, + + /// + /// support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines + /// + SupportRemoteMine2ChanceToDealDoubleDamagePctAgainstEnemiesNearMines = 10186, + + /// + /// map_blight_tower_cost_+% + /// + MapBlightTowerCostPct = 10187, + + /// + /// minions_inflict_exposure_on_hit_%_chance + /// + MinionsInflictExposureOnHitPctChance = 10188, + + /// + /// inflict_exposure_on_hit_%_chance + /// + InflictExposureOnHitPctChance = 10189, + + /// + /// support_minion_instability_base_fire_area_damage_per_minute + /// + SupportMinionInstabilityBaseFireAreaDamagePerMinute = 10190, + + /// + /// support_minion_instability_intermediary_fire_area_damage_per_minute + /// + SupportMinionInstabilityIntermediaryFireAreaDamagePerMinute = 10191, + + /// + /// support_minion_instability_minion_base_fire_area_damage_per_minute + /// + SupportMinionInstabilityMinionBaseFireAreaDamagePerMinute = 10192, + + /// + /// infernal_legion_minions_have_burning_effect_radius_+ + /// + InfernalLegionMinionsHaveBurningEffectRadius = 10193, + + /// + /// infernal_legion_burning_effect_radius_+ + /// + InfernalLegionBurningEffectRadius = 10194, + + /// + /// virtual_infernal_legion_burning_effect_radius + /// + VirtualInfernalLegionBurningEffectRadius = 10195, + + /// + /// base_fire_damage_%_of_maximum_life_taken_per_minute + /// + BaseFireDamagePctOfMaximumLifeTakenPerMinute = 10196, + + /// + /// minion_fire_damage_%_of_maximum_life_taken_per_minute + /// + MinionFireDamagePctOfMaximumLifeTakenPerMinute = 10197, + + /// + /// mine_aura_effect_+% + /// + MineAuraEffectPct = 10198, + + /// + /// lose_power_charge_each_second_if_not_detonated_mines_recently + /// + LosePowerChargeEachSecondIfNotDetonatedMinesRecently = 10199, + + /// + /// mine_damage_leeched_as_life_to_you_permyriad + /// + MineDamageLeechedAsLifeToYouPermyriad = 10200, + + /// + /// life_and_energy_shield_recovery_rate_+% + /// + LifeAndEnergyShieldRecoveryRatePct = 10201, + + /// + /// life_and_energy_shield_recovery_rate_+%_per_power_charge + /// + LifeAndEnergyShieldRecoveryRatePctPerPowerCharge = 10202, + + /// + /// virtual_life_and_energy_shield_recovery_rate_+% + /// + VirtualLifeAndEnergyShieldRecoveryRatePct = 10203, + + /// + /// slither_wither_stacks + /// + SlitherWitherStacks = 10204, + + /// + /// elusive_effect_+% + /// + ElusiveEffectPct = 10205, + + /// + /// gain_elusive_on_kill_chance_% + /// + GainElusiveOnKillChancePct = 10206, + + /// + /// damage_taken_+%_while_affected_by_elusive + /// + DamageTakenPctWhileAffectedByElusive = 10207, + + /// + /// attack_and_cast_speed_+%_while_affected_by_elusive + /// + AttackAndCastSpeedPctWhileAffectedByElusive = 10208, + + /// + /// self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive + /// + SelfTakeNoExtraDamageFromCriticalStrikesWhileAffectedByElusive = 10209, + + /// + /// local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage + /// + LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMinimumAddedPhysicalDamage = 10210, + + /// + /// local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage + /// + LocalUniqueJewelPassivesInRadiusGiveTrapAndMineMaximumAddedPhysicalDamage = 10211, + + /// + /// local_display_socketed_gems_supported_by_level_x_remote_mine_2 + /// + LocalDisplaySocketedGemsSupportedByLevelXRemoteMine2 = 10212, + + /// + /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+% + /// + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionDamageTakenPct = 10213, + + /// + /// local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+% + /// + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantMinionMovementSpeedPct = 10214, + + /// + /// minion_chance_to_dodge_spells_% + /// + MinionChanceToDodgeSpellsPct = 10215, + + /// + /// minion_damage_taken_+% + /// + MinionDamageTakenPct = 10216, + + /// + /// movement_speed_is_%_of_base + /// + MovementSpeedIsPctOfBase = 10217, + + /// + /// travel_skill_cooldown_speed_+% + /// + TravelSkillCooldownSpeedPct = 10218, + + /// + /// hierophant_mana_cost_+%_final + /// + HierophantManaCostPctFinal = 10219, + + /// + /// hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100% + /// + HierophantAreaOfEffectPctPer50UnreservedManaUpTo100Pct = 10220, + + /// + /// cyclone_area_of_effect_+%_per_additional_melee_range + /// + CycloneAreaOfEffectPctPerAdditionalMeleeRange = 10221, + + /// + /// cyclone_gain_stage_every_x_ms_while_channelling + /// + CycloneGainStageEveryXMsWhileChannelling = 10222, + + /// + /// combined_dot_multiplier_+ + /// + CombinedDotMultiplier = 10223, + + /// + /// combined_physical_dot_multiplier_+ + /// + CombinedPhysicalDotMultiplier = 10224, + + /// + /// total_non_ailment_physical_dot_multiplier_+ + /// + TotalNonAilmentPhysicalDotMultiplier = 10225, + + /// + /// combined_fire_dot_multiplier_+ + /// + CombinedFireDotMultiplier = 10226, + + /// + /// total_non_ailment_fire_dot_multiplier_+ + /// + TotalNonAilmentFireDotMultiplier = 10227, + + /// + /// combined_cold_dot_multiplier_+ + /// + CombinedColdDotMultiplier = 10228, + + /// + /// total_non_ailment_cold_dot_multiplier_+ + /// + TotalNonAilmentColdDotMultiplier = 10229, + + /// + /// combined_lightning_dot_multiplier_+ + /// + CombinedLightningDotMultiplier = 10230, + + /// + /// total_non_ailment_lightning_dot_multiplier_+ + /// + TotalNonAilmentLightningDotMultiplier = 10231, + + /// + /// combined_chaos_dot_multiplier_+ + /// + CombinedChaosDotMultiplier = 10232, + + /// + /// total_non_ailment_chaos_dot_multiplier_+ + /// + TotalNonAilmentChaosDotMultiplier = 10233, + + /// + /// total_main_hand_bleeding_critical_ailment_dot_multiplier_+ + /// + TotalMainHandBleedingCriticalAilmentDotMultiplier = 10234, + + /// + /// total_off_hand_bleeding_critical_ailment_dot_multiplier_+ + /// + TotalOffHandBleedingCriticalAilmentDotMultiplier = 10235, + + /// + /// total_spell_bleeding_critical_ailment_dot_multiplier_+ + /// + TotalSpellBleedingCriticalAilmentDotMultiplier = 10236, + + /// + /// total_secondary_bleeding_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryBleedingCriticalAilmentDotMultiplier = 10237, + + /// + /// total_main_hand_ignite_critical_ailment_dot_multiplier_+ + /// + TotalMainHandIgniteCriticalAilmentDotMultiplier = 10238, + + /// + /// total_off_hand_ignite_critical_ailment_dot_multiplier_+ + /// + TotalOffHandIgniteCriticalAilmentDotMultiplier = 10239, + + /// + /// total_spell_ignite_critical_ailment_dot_multiplier_+ + /// + TotalSpellIgniteCriticalAilmentDotMultiplier = 10240, + + /// + /// total_secondary_ignite_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryIgniteCriticalAilmentDotMultiplier = 10241, + + /// + /// total_main_hand_poison_critical_ailment_dot_multiplier_+ + /// + TotalMainHandPoisonCriticalAilmentDotMultiplier = 10242, + + /// + /// total_off_hand_poison_critical_ailment_dot_multiplier_+ + /// + TotalOffHandPoisonCriticalAilmentDotMultiplier = 10243, + + /// + /// total_spell_poison_critical_ailment_dot_multiplier_+ + /// + TotalSpellPoisonCriticalAilmentDotMultiplier = 10244, + + /// + /// total_secondary_poison_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryPoisonCriticalAilmentDotMultiplier = 10245, + + /// + /// total_main_hand_bleeding_non_critical_ailment_dot_multiplier_+ + /// + TotalMainHandBleedingNonCriticalAilmentDotMultiplier = 10246, + + /// + /// total_off_hand_bleeding_non_critical_ailment_dot_multiplier_+ + /// + TotalOffHandBleedingNonCriticalAilmentDotMultiplier = 10247, + + /// + /// total_spell_bleeding_non_critical_ailment_dot_multiplier_+ + /// + TotalSpellBleedingNonCriticalAilmentDotMultiplier = 10248, + + /// + /// total_secondary_bleeding_non_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryBleedingNonCriticalAilmentDotMultiplier = 10249, + + /// + /// total_main_hand_ignite_non_critical_ailment_dot_multiplier_+ + /// + TotalMainHandIgniteNonCriticalAilmentDotMultiplier = 10250, + + /// + /// total_off_hand_ignite_non_critical_ailment_dot_multiplier_+ + /// + TotalOffHandIgniteNonCriticalAilmentDotMultiplier = 10251, + + /// + /// total_spell_ignite_non_critical_ailment_dot_multiplier_+ + /// + TotalSpellIgniteNonCriticalAilmentDotMultiplier = 10252, + + /// + /// total_secondary_ignite_non_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryIgniteNonCriticalAilmentDotMultiplier = 10253, + + /// + /// total_main_hand_poison_non_critical_ailment_dot_multiplier_+ + /// + TotalMainHandPoisonNonCriticalAilmentDotMultiplier = 10254, + + /// + /// total_off_hand_poison_non_critical_ailment_dot_multiplier_+ + /// + TotalOffHandPoisonNonCriticalAilmentDotMultiplier = 10255, + + /// + /// total_spell_poison_non_critical_ailment_dot_multiplier_+ + /// + TotalSpellPoisonNonCriticalAilmentDotMultiplier = 10256, + + /// + /// total_secondary_poison_non_critical_ailment_dot_multiplier_+ + /// + TotalSecondaryPoisonNonCriticalAilmentDotMultiplier = 10257, + + /// + /// dot_multiplier_+ + /// + DotMultiplier = 10258, + + /// + /// physical_dot_multiplier_+ + /// + PhysicalDotMultiplier = 10259, + + /// + /// fire_dot_multiplier_+ + /// + FireDotMultiplier = 10260, + + /// + /// lightning_dot_multiplier_+ + /// + LightningDotMultiplier = 10261, + + /// + /// chaos_dot_multiplier_+ + /// + ChaosDotMultiplier = 10262, + + /// + /// critical_ailment_dot_multiplier_value_override_% + /// + CriticalAilmentDotMultiplierValueOverridePct = 10263, + + /// + /// perfect_agony_crit_multi_modifiers_apply_to_dot_multi_at_%_value + /// + PerfectAgonyCritMultiModifiersApplyToDotMultiAtPctValue = 10264, + + /// + /// combined_main_hand_critical_ailment_dot_multiplier_+ + /// + CombinedMainHandCriticalAilmentDotMultiplier = 10265, + + /// + /// combined_off_hand_critical_ailment_dot_multiplier_+ + /// + CombinedOffHandCriticalAilmentDotMultiplier = 10266, + + /// + /// combined_spell_critical_ailment_dot_multiplier_+ + /// + CombinedSpellCriticalAilmentDotMultiplier = 10267, + + /// + /// combined_secondary_critical_ailment_dot_multiplier_+ + /// + CombinedSecondaryCriticalAilmentDotMultiplier = 10268, + + /// + /// combined_ailment_dot_multiplier_+ + /// + CombinedAilmentDotMultiplier = 10269, + + /// + /// combined_all_dot_multipliers_for_bleeding_+ + /// + CombinedAllDotMultipliersForBleeding = 10270, + + /// + /// combined_all_dot_multipliers_for_ignite_+ + /// + CombinedAllDotMultipliersForIgnite = 10271, + + /// + /// combined_all_dot_multipliers_for_poison_+ + /// + CombinedAllDotMultipliersForPoison = 10272, + + /// + /// bleeding_dot_multiplier_+ + /// + BleedingDotMultiplier = 10273, + + /// + /// ignite_dot_multiplier_+ + /// + IgniteDotMultiplier = 10274, + + /// + /// poison_dot_multiplier_+ + /// + PoisonDotMultiplier = 10275, + + /// + /// minimum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MinimumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10276, + + /// + /// maximum_bleeding_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MaximumBleedingDamageToDealPerMinuteFromCriticalMainHandDamage = 10277, + + /// + /// minimum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MinimumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10278, + + /// + /// maximum_bleeding_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MaximumBleedingDamageToDealPerMinuteFromCriticalOffHandDamage = 10279, + + /// + /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MinimumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10280, + + /// + /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_main_hand_damage + /// + MaximumBleedingDamageToDealPerMinuteFromNonCriticalMainHandDamage = 10281, + + /// + /// minimum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MinimumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10282, + + /// + /// maximum_bleeding_damage_to_deal_per_minute_from_non_critical_off_hand_damage + /// + MaximumBleedingDamageToDealPerMinuteFromNonCriticalOffHandDamage = 10283, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MinimumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10284, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MaximumIgniteDamageToDealPerMinuteFromCriticalMainHandDamage = 10285, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MinimumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10286, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MaximumIgniteDamageToDealPerMinuteFromCriticalOffHandDamage = 10287, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_critical_spell_damage + /// + MinimumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10288, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_critical_spell_damage + /// + MaximumIgniteDamageToDealPerMinuteFromCriticalSpellDamage = 10289, + + /// + /// minimum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage + /// + MinimumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10290, + + /// + /// maximum_ignite_damage_to_deal_per_minute_from_critical_secondary_damage + /// + MaximumIgniteDamageToDealPerMinuteFromCriticalSecondaryDamage = 10291, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MinimumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10292, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_critical_main_hand_damage + /// + MaximumPoisonDamageToDealPerMinuteFromCriticalMainHandDamage = 10293, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MinimumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10294, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_critical_off_hand_damage + /// + MaximumPoisonDamageToDealPerMinuteFromCriticalOffHandDamage = 10295, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_critical_spell_damage + /// + MinimumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10296, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_critical_spell_damage + /// + MaximumPoisonDamageToDealPerMinuteFromCriticalSpellDamage = 10297, + + /// + /// minimum_poison_damage_to_deal_per_minute_from_critical_secondary_damage + /// + MinimumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10298, + + /// + /// maximum_poison_damage_to_deal_per_minute_from_critical_secondary_damage + /// + MaximumPoisonDamageToDealPerMinuteFromCriticalSecondaryDamage = 10299, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10300, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_critical_main_hand_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalMainHandDamage = 10301, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10302, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_critical_off_hand_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalOffHandDamage = 10303, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10304, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_critical_spell_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSpellDamage = 10305, + + /// + /// minimum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage + /// + MinimumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10306, + + /// + /// maximum_poison_damage_to_always_deal_per_minute_from_critical_secondary_damage + /// + MaximumPoisonDamageToAlwaysDealPerMinuteFromCriticalSecondaryDamage = 10307, + + /// + /// ailment_multipliers_never_critical + /// + AilmentMultipliersNeverCritical = 10308, + + /// + /// ailment_dot_multiplier_+ + /// + AilmentDotMultiplier = 10309, + + /// + /// additional_physical_damage_reduction_%_per_minion_up_to_10% + /// + AdditionalPhysicalDamageReductionPctPerMinionUpTo10Pct = 10310, + + /// + /// elemental_resistance_%_per_minion_up_to_30% + /// + ElementalResistancePctPerMinionUpTo30Pct = 10311, + + /// + /// life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30% + /// + LifeAndEnergyShieldRecoveryRatePctPerMinionUpTo30Pct = 10312, + + /// + /// necromancer_defensive_notable_minion_maximum_life_+%_final + /// + NecromancerDefensiveNotableMinionMaximumLifePctFinal = 10313, + + /// + /// max_life_+%_final_for_minion_from_necromancer_defensive_notable + /// + MaxLifePctFinalForMinionFromNecromancerDefensiveNotable = 10314, + + /// + /// golem_immunity_to_elemental_damage + /// + GolemImmunityToElementalDamage = 10315, + + /// + /// curse_effect_+%_if_200_mana_spent_recently + /// + CurseEffectPctIf200ManaSpentRecently = 10316, + + /// + /// immune_to_auras_from_other_teams + /// + ImmuneToAurasFromOtherTeams = 10317, + + /// + /// spell_skill_gem_level_+ + /// + SpellSkillGemLevel = 10318, + + /// + /// fire_spell_skill_gem_level_+ + /// + FireSpellSkillGemLevel = 10319, + + /// + /// cold_spell_skill_gem_level_+ + /// + ColdSpellSkillGemLevel = 10320, + + /// + /// lightning_spell_skill_gem_level_+ + /// + LightningSpellSkillGemLevel = 10321, + + /// + /// chaos_spell_skill_gem_level_+ + /// + ChaosSpellSkillGemLevel = 10322, + + /// + /// physical_spell_skill_gem_level_+ + /// + PhysicalSpellSkillGemLevel = 10323, + + /// + /// minion_skill_gem_level_+ + /// + MinionSkillGemLevel = 10324, + + /// + /// raise_spectre_gem_level_+ + /// + RaiseSpectreGemLevel = 10325, + + /// + /// raise_zombie_gem_level_+ + /// + RaiseZombieGemLevel = 10326, + + /// + /// summon_skeleton_gem_level_+ + /// + SummonSkeletonGemLevel = 10327, + + /// + /// minion_maximum_all_elemental_resistances_% + /// + MinionMaximumAllElementalResistancesPct = 10328, + + /// + /// damage_penetrates_%_elemental_resistance_vs_chilled_enemies + /// + DamagePenetratesPctElementalResistanceVsChilledEnemies = 10329, + + /// + /// critical_strike_multiplier_+_vs_burning_enemies + /// + CriticalStrikeMultiplierVsBurningEnemies = 10330, + + /// + /// additional_main_hand_hits_per_combo_average + /// + AdditionalMainHandHitsPerComboAverage = 10331, + + /// + /// lightning_explosion_mine_damage_+% + /// + LightningExplosionMineDamagePct = 10332, + + /// + /// cold_projectile_mine_damage_+% + /// + ColdProjectileMineDamagePct = 10333, + + /// + /// mortar_barrage_mine_damage_+% + /// + MortarBarrageMineDamagePct = 10334, + + /// + /// lightning_explosion_mine_throwing_speed_+% + /// + LightningExplosionMineThrowingSpeedPct = 10335, + + /// + /// cold_projectile_mine_throwing_speed_+% + /// + ColdProjectileMineThrowingSpeedPct = 10336, + + /// + /// mortar_barrage_mine_throwing_speed_+% + /// + MortarBarrageMineThrowingSpeedPct = 10337, + + /// + /// lightning_explosion_mine_aura_effect_+% + /// + LightningExplosionMineAuraEffectPct = 10338, + + /// + /// cold_projectile_mine_critical_multiplier_+ + /// + ColdProjectileMineCriticalMultiplier = 10339, + + /// + /// mortar_barrage_mine_num_projectiles + /// + MortarBarrageMineNumProjectiles = 10340, + + /// + /// map_spread_doodads_index + /// + MapSpreadDoodadsIndex = 10341, + + /// + /// damage_removed_from_spectres_before_life_or_es_% + /// + DamageRemovedFromSpectresBeforeLifeOrEsPct = 10342, + + /// + /// mamba_strike_deal_%_of_all_poison_total_damage_per_minute + /// + MambaStrikeDealPctOfAllPoisonTotalDamagePerMinute = 10343, + + /// + /// desecrate_duration_+% + /// + DesecrateDurationPct = 10344, + + /// + /// petrification_max_targets + /// + PetrificationMaxTargets = 10345, + + /// + /// support_remote_mine_2_damage_+%_final + /// + SupportRemoteMine2DamagePctFinal = 10346, + + /// + /// local_display_socketed_gems_supported_by_level_x_feeding_frenzy + /// + LocalDisplaySocketedGemsSupportedByLevelXFeedingFrenzy = 10347, + + /// + /// non_unique_flask_effect_+% + /// + NonUniqueFlaskEffectPct = 10348, + + /// + /// ground_lightning_art_variation + /// + GroundLightningArtVariation = 10349, + + /// + /// immune_to_petrification + /// + ImmuneToPetrification = 10350, + + /// + /// trap_and_mine_throwing_speed_+% + /// + TrapAndMineThrowingSpeedPct = 10351, + + /// + /// local_display_socketed_gems_supported_by_level_x_meat_shield + /// + LocalDisplaySocketedGemsSupportedByLevelXMeatShield = 10352, + + /// + /// local_display_socketed_gems_supported_by_level_x_deathmark + /// + LocalDisplaySocketedGemsSupportedByLevelXDeathmark = 10353, + + /// + /// local_display_socketed_gems_supported_by_level_x_nightblade + /// + LocalDisplaySocketedGemsSupportedByLevelXNightblade = 10354, + + /// + /// coiling_assault_attack_speed_+%_final_on_final_strike + /// + CoilingAssaultAttackSpeedPctFinalOnFinalStrike = 10355, + + /// + /// coiling_assault_damage_+%_final_on_final_strike + /// + CoilingAssaultDamagePctFinalOnFinalStrike = 10356, + + /// + /// life_regeneration_rate_per_minute_%_per_raised_zombie + /// + LifeRegenerationRatePerMinutePctPerRaisedZombie = 10357, + + /// + /// mana_regeneration_rate_+%_per_raised_spectre + /// + ManaRegenerationRatePctPerRaisedSpectre = 10358, + + /// + /// additional_attack_block_%_per_summoned_skeleton + /// + AdditionalAttackBlockPctPerSummonedSkeleton = 10359, + + /// + /// attack_and_cast_speed_+%_per_summoned_raging_spirit + /// + AttackAndCastSpeedPctPerSummonedRagingSpirit = 10360, + + /// + /// minion_elemental_damage_%_to_add_as_chaos + /// + MinionElementalDamagePctToAddAsChaos = 10361, + + /// + /// bone_armour_damage_absorbed_% + /// + BoneArmourDamageAbsorbedPct = 10362, + + /// + /// mod_granted_passive_hash + /// + ModGrantedPassiveHash = 10363, + + /// + /// killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked + /// + KilledMonsterDroppedItemRarityPctWhenFrozenOrShocked = 10364, + + /// + /// item_found_rarity_+%_per_white_socket_on_item + /// + ItemFoundRarityPctPerWhiteSocketOnItem = 10365, + + /// + /// holy_relic_nova_life_regeneration_rate_per_minute + /// + HolyRelicNovaLifeRegenerationRatePerMinute = 10366, + + /// + /// holy_relic_nova_minion_life_regeneration_rate_per_second + /// + HolyRelicNovaMinionLifeRegenerationRatePerSecond = 10367, + + /// + /// create_blighted_spore_on_killing_rare_enemy + /// + CreateBlightedSporeOnKillingRareEnemy = 10368, + + /// + /// critical_bleeding_dot_multiplier_+ + /// + CriticalBleedingDotMultiplier = 10369, + + /// + /// critical_ignite_dot_multiplier_+ + /// + CriticalIgniteDotMultiplier = 10370, + + /// + /// critical_poison_dot_multiplier_+ + /// + CriticalPoisonDotMultiplier = 10371, + + /// + /// map_legion_league_force_general + /// + MapLegionLeagueForceGeneral = 10372, + + /// + /// map_legion_league_force_war_chest + /// + MapLegionLeagueForceWarChest = 10373, + + /// + /// corpse_warp_area_of_effect_+%_final_when_consuming_corpse + /// + CorpseWarpAreaOfEffectPctFinalWhenConsumingCorpse = 10374, + + /// + /// current_number_of_snapping_adder_projectiles + /// + CurrentNumberOfSnappingAdderProjectiles = 10375, + + /// + /// maximum_number_of_snapping_adder_projectiles + /// + MaximumNumberOfSnappingAdderProjectiles = 10376, + + /// + /// mortar_barrage_mine_minimum_added_fire_damage_taken + /// + MortarBarrageMineMinimumAddedFireDamageTaken = 10377, + + /// + /// mortar_barrage_mine_maximum_added_fire_damage_taken + /// + MortarBarrageMineMaximumAddedFireDamageTaken = 10378, + + /// + /// mortar_barrage_mine_minimum_added_fire_damage_taken_limit + /// + MortarBarrageMineMinimumAddedFireDamageTakenLimit = 10379, + + /// + /// mortar_barrage_mine_maximum_added_fire_damage_taken_limit + /// + MortarBarrageMineMaximumAddedFireDamageTakenLimit = 10380, + + /// + /// cold_projectile_mine_enemy_critical_strike_chance_+%_against_self + /// + ColdProjectileMineEnemyCriticalStrikeChancePctAgainstSelf = 10381, + + /// + /// cold_projectile_mine_throwing_speed_negated_+% + /// + ColdProjectileMineThrowingSpeedNegatedPct = 10382, + + /// + /// mine_throwing_speed_negated_+% + /// + MineThrowingSpeedNegatedPct = 10383, + + /// + /// blight_tower_skill_area_of_effect_radius_+%_final + /// + BlightTowerSkillAreaOfEffectRadiusPctFinal = 10384, + + /// + /// mines_hinder_nearby_enemies_for_x_ms_on_arming + /// + MinesHinderNearbyEnemiesForXMsOnArming = 10385, + + /// + /// is_unnerved + /// + IsUnnerved = 10386, + + /// + /// chance_to_unnerve_on_hit_% + /// + ChanceToUnnerveOnHitPct = 10387, + + /// + /// fire_damage_resistance_is_% + /// + FireDamageResistanceIsPct = 10388, + + /// + /// cold_damage_resistance_is_% + /// + ColdDamageResistanceIsPct = 10389, + + /// + /// lightning_damage_resistance_is_% + /// + LightningDamageResistanceIsPct = 10390, + + /// + /// fire_damage_resistance_+% + /// + FireDamageResistancePct2 = 10391, + + /// + /// cold_damage_resistance_+% + /// + ColdDamageResistancePct2 = 10392, + + /// + /// lightning_damage_resistance_+% + /// + LightningDamageResistancePct2 = 10393, + + /// + /// local_display_socketed_gems_supported_by_level_x_infernal_legion + /// + LocalDisplaySocketedGemsSupportedByLevelXInfernalLegion = 10394, + + /// + /// mine_throwing_speed_halved_+% + /// + MineThrowingSpeedHalvedPct = 10395, + + /// + /// mortar_barrage_mine_throwing_speed_halved_+% + /// + MortarBarrageMineThrowingSpeedHalvedPct = 10396, + + /// + /// viper_strike_dual_wield_damage_+%_final + /// + ViperStrikeDualWieldDamagePctFinal = 10397, + + /// + /// viper_strike_dual_wield_attack_speed_+%_final + /// + ViperStrikeDualWieldAttackSpeedPctFinal = 10398, + + /// + /// is_on_fungal_ground + /// + IsOnFungalGround = 10399, + + /// + /// fungal_ground_while_stationary_radius + /// + FungalGroundWhileStationaryRadius = 10400, + + /// + /// local_display_trigger_level_x_create_fungal_ground_on_kill + /// + LocalDisplayTriggerLevelXCreateFungalGroundOnKill = 10401, + + /// + /// enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance + /// + EnemiesKilledOnFungalGroundExplodeFor5PctChaosDamagePctChance = 10402, + + /// + /// virtual_cannot_cast_spells + /// + VirtualCannotCastSpells = 10403, + + /// + /// virtual_cannot_use_warcries + /// + VirtualCannotUseWarcries = 10404, + + /// + /// silence_cannot_use_spells_or_warcries + /// + SilenceCannotUseSpellsOrWarcries = 10405, + + /// + /// attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem + /// + AttackSkillsPctPhysicalAsExtraFireDamagePerSocketedRedGem = 10406, + + /// + /// local_gain_vaal_pact_if_all_socketed_gems_red + /// + LocalGainVaalPactIfAllSocketedGemsRed = 10407, + + /// + /// additive_mine_duration_modifiers_apply_to_buff_effect_duration + /// + AdditiveMineDurationModifiersApplyToBuffEffectDuration = 10408, + + /// + /// minion_fire_damage_taken_+% + /// + MinionFireDamageTakenPct = 10409, + + /// + /// returning_projectiles_always_pierce + /// + ReturningProjectilesAlwaysPierce = 10410, + + /// + /// additive_life_modifiers_apply_to_attack_damage_at_30%_value + /// + AdditiveLifeModifiersApplyToAttackDamageAt30PctValue = 10411, + + /// + /// additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value + /// + AdditiveEnergyShieldModifiersApplyToSpellDamageAt30PctValue = 10412, + + /// + /// additive_mana_modifiers_apply_to_damage_at_30%_value + /// + AdditiveManaModifiersApplyToDamageAt30PctValue = 10413, + + /// + /// blight_tower_chilling_cost_+% + /// + BlightTowerChillingCostPct = 10414, + + /// + /// blight_tower_arc_damage_+% + /// + BlightTowerArcDamagePct = 10415, + + /// + /// blight_tower_fireball_additional_projectile + /// + BlightTowerFireballAdditionalProjectile = 10416, + + /// + /// elusive_critical_strike_multiplier_+_to_skills_supported_by_nightblade + /// + ElusiveCriticalStrikeMultiplierToSkillsSupportedByNightblade = 10417, + + /// + /// nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills + /// + NightbladeElusiveGrantsCriticalStrikeMultiplierToSupportedSkills = 10418, + + /// + /// support_additional_trap_mine_%_chance_for_1_additional_trap_mine + /// + SupportAdditionalTrapMinePctChanceFor1AdditionalTrapMine = 10419, + + /// + /// support_additional_trap_mine_%_chance_for_2_additional_trap_mine + /// + SupportAdditionalTrapMinePctChanceFor2AdditionalTrapMine = 10420, + + /// + /// support_additional_trap_mine_%_chance_for_3_additional_trap_mine + /// + SupportAdditionalTrapMinePctChanceFor3AdditionalTrapMine = 10421, + + /// + /// ailment_dot_multiplier_+_per_equipped_elder_item + /// + AilmentDotMultiplierPerEquippedElderItem = 10422, + + /// + /// dot_multiplier_+_while_affected_by_malevolence + /// + DotMultiplierWhileAffectedByMalevolence = 10423, + + /// + /// is_blight_monster + /// + IsBlightMonster = 10424, + + /// + /// is_blighted_map + /// + IsBlightedMap = 10425, + + /// + /// damage_+%_final_from_fungal_ground + /// + DamagePctFinalFromFungalGround = 10426, + + /// + /// ice_dash_duration_+% + /// + IceDashDurationPct = 10427, + + /// + /// skill_max_unleash_seals + /// + SkillMaxUnleashSeals = 10428, + + /// + /// local_display_socketed_gems_supported_by_level_x_swift_assembly + /// + LocalDisplaySocketedGemsSupportedByLevelXSwiftAssembly = 10429, + + /// + /// blighted_map_chest_reward_lucky_count + /// + BlightedMapChestRewardLuckyCount = 10430, + + /// + /// blighted_map_tower_damage_+%_final + /// + BlightedMapTowerDamagePctFinal = 10431, + + /// + /// virtual_physical_damage_taken_+ + /// + VirtualPhysicalDamageTaken = 10432, + + /// + /// physical_damage_taken_+_per_level + /// + PhysicalDamageTakenPerLevel = 10433, + + /// + /// deathmark_minion_damage_+%_final + /// + DeathmarkMinionDamagePctFinal = 10434, + + /// + /// local_display_grants_skill_frostblink_level + /// + LocalDisplayGrantsSkillFrostblinkLevel = 10435, + + /// + /// non_golem_minion_global_minimum_added_physical_damage + /// + NonGolemMinionGlobalMinimumAddedPhysicalDamage = 10436, + + /// + /// non_golem_minion_global_maximum_added_physical_damage + /// + NonGolemMinionGlobalMaximumAddedPhysicalDamage = 10437, + + /// + /// fortify_during_life_flask_effect + /// + FortifyDuringLifeFlaskEffect = 10438, + + /// + /// %_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy + /// + PctChanceToGainFrenzyChargeOnMineDetonatedTargetingAnEnemy = 10439, + + /// + /// mine_throwing_speed_+%_per_frenzy_charge + /// + MineThrowingSpeedPctPerFrenzyCharge = 10440, + + /// + /// mine_critical_strike_chance_+%_per_power_charge + /// + MineCriticalStrikeChancePctPerPowerCharge = 10441, + + /// + /// damage_+%_from_saboteur_mine_aura_up_to_-10% + /// + DamagePctFromSaboteurMineAuraUpTo10Pct = 10442, + + /// + /// damage_taken_+%_from_sabotuer_mine_aura_up_to_10% + /// + DamageTakenPctFromSabotuerMineAuraUpTo10Pct = 10443, + + /// + /// current_number_of_carrion_golems + /// + CurrentNumberOfCarrionGolems = 10444, + + /// + /// local_display_socketed_gems_supported_by_level_x_charged_mines + /// + LocalDisplaySocketedGemsSupportedByLevelXChargedMines = 10445, + + /// + /// mine_art_variation + /// + MineArtVariation = 10446, + + /// + /// slither_cooldown_does_not_tick + /// + SlitherCooldownDoesNotTick = 10447, + + /// + /// virtual_mine_art_variation + /// + VirtualMineArtVariation = 10448, + + /// + /// corrupted_emperor_mine_art_variation + /// + CorruptedEmperorMineArtVariation = 10449, + + /// + /// tencent_chiyou_set_bonus + /// + TencentChiyouSetBonus = 10450, + + /// + /// cobra_lash_damage_+% + /// + CobraLashDamagePct = 10451, + + /// + /// cobra_lash_projectile_speed_+% + /// + CobraLashProjectileSpeedPct = 10452, + + /// + /// cobra_lash_number_of_additional_chains + /// + CobraLashNumberOfAdditionalChains = 10453, + + /// + /// slither_elusive_effect_+% + /// + SlitherElusiveEffectPct = 10454, + + /// + /// snapping_adder_damage_+% + /// + SnappingAdderDamagePct = 10455, + + /// + /// snapping_adder_withered_on_hit_for_2_seconds_%_chance + /// + SnappingAdderWitheredOnHitFor2SecondsPctChance = 10456, + + /// + /// snapping_adder_%_chance_to_retain_projectile_on_release + /// + SnappingAdderPctChanceToRetainProjectileOnRelease = 10457, + + /// + /// corrosive_shroud_poison_dot_multiplier_+_while_aura_active + /// + CorrosiveShroudPoisonDotMultiplierWhileAuraActive = 10458, + + /// + /// mamba_strike_damage_+% + /// + MambaStrikeDamagePct = 10459, + + /// + /// mamba_strike_duration_+% + /// + MambaStrikeDurationPct = 10460, + + /// + /// mamba_strike_area_of_effect_+% + /// + MambaStrikeAreaOfEffectPct = 10461, + + /// + /// bone_golem_damage_+% + /// + BoneGolemDamagePct = 10462, + + /// + /// base_bone_golem_granted_buff_effect_+% + /// + BaseBoneGolemGrantedBuffEffectPct = 10463, + + /// + /// bone_golem_elemental_resistances_% + /// + BoneGolemElementalResistancesPct = 10464, + + /// + /// summon_skitterbots_area_of_effect_+% + /// + SummonSkitterbotsAreaOfEffectPct = 10465, + + /// + /// summon_skitterbots_mana_reservation_+% + /// + SummonSkitterbotsManaReservationPct = 10466, + + /// + /// local_item_can_have_x_additional_enchantments + /// + LocalItemCanHaveXAdditionalEnchantments = 10467, + + /// + /// is_buffed_by_buff_tower + /// + IsBuffedByBuffTower = 10468, + + /// + /// elusive_effect_on_self_+% + /// + ElusiveEffectOnSelfPct = 10469, + + /// + /// virtual_unaffected_by_temporal_chains + /// + VirtualUnaffectedByTemporalChains = 10470, + + /// + /// virtual_unaffected_by_chilled_ground + /// + VirtualUnaffectedByChilledGround = 10471, + + /// + /// virtual_unaffected_by_vulnerability + /// + VirtualUnaffectedByVulnerability = 10472, + + /// + /// virtual_unaffected_by_enfeeble + /// + VirtualUnaffectedByEnfeeble = 10473, + + /// + /// virtual_unaffected_by_flammability + /// + VirtualUnaffectedByFlammability = 10474, + + /// + /// virtual_unaffected_by_frostbite + /// + VirtualUnaffectedByFrostbite = 10475, + + /// + /// virtual_unaffected_by_conductivity + /// + VirtualUnaffectedByConductivity = 10476, + + /// + /// virtual_unaffected_by_elemental_weakness + /// + VirtualUnaffectedByElementalWeakness = 10477, + + /// + /// virtual_unaffected_by_burning_ground + /// + VirtualUnaffectedByBurningGround = 10478, + + /// + /// virtual_unaffected_by_shocked_ground + /// + VirtualUnaffectedByShockedGround = 10479, + + /// + /// eligible_to_grant_kill_bonuses + /// + EligibleToGrantKillBonuses = 10480, + + /// + /// immune_to_auras_from_non_blight_towers + /// + ImmuneToAurasFromNonBlightTowers = 10481, + + /// + /// map_blight_chest_%_chance_for_additional_drop + /// + MapBlightChestPctChanceForAdditionalDrop = 10482, + + /// + /// chest_%_chance_for_additional_template_drop + /// + ChestPctChanceForAdditionalTemplateDrop = 10483, + + /// + /// active_skill_poison_duration_+%_final + /// + ActiveSkillPoisonDurationPctFinal = 10484, + + /// + /// nearby_enemies_all_exposure_%_while_phasing + /// + NearbyEnemiesAllExposurePctWhilePhasing = 10485, + + /// + /// raider_nearby_enemies_accuracy_rating_+%_final_while_phasing + /// + RaiderNearbyEnemiesAccuracyRatingPctFinalWhilePhasing = 10486, + + /// + /// raider_phasing_aura_accuracy_rating_+%_final + /// + RaiderPhasingAuraAccuracyRatingPctFinal = 10487, + + /// + /// snapping_adder_maximum_projectiles_released + /// + SnappingAdderMaximumProjectilesReleased = 10488, + + /// + /// virtual_cyclone_skill_area_of_effect_+%_from_melee_range + /// + VirtualCycloneSkillAreaOfEffectPctFromMeleeRange = 10489, + + /// + /// track_have_hit_cursed_enemy_recently + /// + TrackHaveHitCursedEnemyRecently = 10490, + + /// + /// have_hit_cursed_enemy_recently + /// + HaveHitCursedEnemyRecently = 10491, + + /// + /// mana_regeneration_rate_+%_if_hit_cursed_enemy_recently + /// + ManaRegenerationRatePctIfHitCursedEnemyRecently = 10492, + + /// + /// disable_attack_repeats + /// + DisableAttackRepeats = 10493, + + /// + /// snapping_adder_released_projectile_damage_+%_final + /// + SnappingAdderReleasedProjectileDamagePctFinal = 10494, + + /// + /// blight_tower_range_+% + /// + BlightTowerRangePct = 10495, + + /// + /// blight_shocking_tower_range_+% + /// + BlightShockingTowerRangePct = 10496, + + /// + /// blight_shocking_tower_damage_+% + /// + BlightShockingTowerDamagePct = 10497, + + /// + /// mod_granted_passive_hash_2 + /// + ModGrantedPassiveHash2 = 10498, + + /// + /// tencent_chiyou_set_movement_speed_+% + /// + TencentChiyouSetMovementSpeedPct = 10499, + + /// + /// is_in_town + /// + IsInTown = 10500, + + /// + /// track_have_used_a_warcry_in_past_8_seconds + /// + TrackHaveUsedAWarcryInPast8Seconds = 10501, + + /// + /// have_used_a_warcry_in_past_8_seconds + /// + HaveUsedAWarcryInPast8Seconds = 10502, + + /// + /// chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds + /// + ChanceToDealDoubleDamagePctIfUsedAWarcryInPast8Seconds = 10503, + + /// + /// active_skill_returning_projectile_damage_+%_final + /// + ActiveSkillReturningProjectileDamagePctFinal = 10504, + + /// + /// blight_chilling_tower_damage_+% + /// + BlightChillingTowerDamagePct = 10505, + + /// + /// blight_chilling_tower_range_+% + /// + BlightChillingTowerRangePct = 10506, + + /// + /// blight_chilling_tower_chill_effect_+% + /// + BlightChillingTowerChillEffectPct = 10507, + + /// + /// blight_chilling_tower_duration_+% + /// + BlightChillingTowerDurationPct = 10508, + + /// + /// blight_chilling_tower_freeze_for_ms + /// + BlightChillingTowerFreezeForMs = 10509, + + /// + /// blight_freezebolt_tower_damage_+% + /// + BlightFreezeboltTowerDamagePct = 10510, + + /// + /// blight_freezebolt_tower_range_+% + /// + BlightFreezeboltTowerRangePct = 10511, + + /// + /// blight_freezebolt_tower_full_damage_cold_enemies + /// + BlightFreezeboltTowerFullDamageColdEnemies = 10512, + + /// + /// blight_freezebolt_tower_projectiles_+ + /// + BlightFreezeboltTowerProjectiles = 10513, + + /// + /// blight_glacialcage_tower_duration_+% + /// + BlightGlacialcageTowerDurationPct = 10514, + + /// + /// blight_glacialcage_tower_range_+% + /// + BlightGlacialcageTowerRangePct = 10515, + + /// + /// blight_glacialcage_tower_enemy_damage_taken_+% + /// + BlightGlacialcageTowerEnemyDamageTakenPct = 10516, + + /// + /// blight_glacialcage_tower_cooldown_recovery_+% + /// + BlightGlacialcageTowerCooldownRecoveryPct = 10517, + + /// + /// blight_shocknova_tower_full_damage_lightning_enemies + /// + BlightShocknovaTowerFullDamageLightningEnemies = 10518, + + /// + /// blight_shocknova_tower_shock_effect_+% + /// + BlightShocknovaTowerShockEffectPct = 10519, + + /// + /// blight_shocknova_tower_shock_repeats_with_area_effect_+% + /// + BlightShocknovaTowerShockRepeatsWithAreaEffectPct = 10520, + + /// + /// blight_shocknova_tower_shock_additional_repeats + /// + BlightShocknovaTowerShockAdditionalRepeats = 10521, + + /// + /// blight_lightningstorm_tower_damage_+% + /// + BlightLightningstormTowerDamagePct = 10522, + + /// + /// blight_lightningstorm_tower_range_+% + /// + BlightLightningstormTowerRangePct = 10523, + + /// + /// blight_lightningstorm_tower_delay_+% + /// + BlightLightningstormTowerDelayPct = 10524, + + /// + /// blight_lightningstorm_tower_area_of_effect_+% + /// + BlightLightningstormTowerAreaOfEffectPct = 10525, + + /// + /// blight_arc_tower_damage_+% + /// + BlightArcTowerDamagePct = 10526, + + /// + /// blight_arc_tower_range_+% + /// + BlightArcTowerRangePct = 10527, + + /// + /// blight_arc_tower_additional_repeats + /// + BlightArcTowerAdditionalRepeats = 10528, + + /// + /// blight_arc_tower_additional_chains + /// + BlightArcTowerAdditionalChains = 10529, + + /// + /// blight_empowering_tower_buff_effect_+% + /// + BlightEmpoweringTowerBuffEffectPct = 10530, + + /// + /// blight_empowering_tower_range_+% + /// + BlightEmpoweringTowerRangePct = 10531, + + /// + /// blight_empowering_tower_grant_cast_speed_+% + /// + BlightEmpoweringTowerGrantCastSpeedPct = 10532, + + /// + /// blight_empowering_tower_grant_damage_+% + /// + BlightEmpoweringTowerGrantDamagePct = 10533, + + /// + /// blight_empowering_tower_grant_%_chance_to_deal_double_damage + /// + BlightEmpoweringTowerGrantPctChanceToDealDoubleDamage = 10534, + + /// + /// blight_imbuing_tower_buff_effect_+% + /// + BlightImbuingTowerBuffEffectPct = 10535, + + /// + /// blight_imbuing_tower_range_+% + /// + BlightImbuingTowerRangePct = 10536, + + /// + /// blight_imbuing_tower_grant_critical_strike_+% + /// + BlightImbuingTowerGrantCriticalStrikePct = 10537, + + /// + /// blight_imbuing_tower_grant_damage_+% + /// + BlightImbuingTowerGrantDamagePct = 10538, + + /// + /// blight_smothering_tower_buff_effect_+% + /// + BlightSmotheringTowerBuffEffectPct = 10539, + + /// + /// blight_smothering_tower_range_+% + /// + BlightSmotheringTowerRangePct = 10540, + + /// + /// blight_smothering_tower_grant_damage_+% + /// + BlightSmotheringTowerGrantDamagePct = 10541, + + /// + /// blight_smothering_tower_grant_movement_speed_+% + /// + BlightSmotheringTowerGrantMovementSpeedPct = 10542, + + /// + /// blight_seismic_tower_damage_+% + /// + BlightSeismicTowerDamagePct = 10543, + + /// + /// blight_seismic_tower_range_+% + /// + BlightSeismicTowerRangePct = 10544, + + /// + /// blight_seismic_tower_stun_duration_+% + /// + BlightSeismicTowerStunDurationPct = 10545, + + /// + /// blight_seismic_tower_additional_cascades_+ + /// + BlightSeismicTowerAdditionalCascades = 10546, + + /// + /// blight_seismic_tower_cascade_range_+% + /// + BlightSeismicTowerCascadeRangePct = 10547, + + /// + /// blight_temporal_tower_buff_effect_+% + /// + BlightTemporalTowerBuffEffectPct = 10548, + + /// + /// blight_temporal_tower_range_+% + /// + BlightTemporalTowerRangePct = 10549, + + /// + /// blight_temporal_tower_tick_speed_+% + /// + BlightTemporalTowerTickSpeedPct = 10550, + + /// + /// blight_temporal_tower_grant_you_action_speed_-% + /// + BlightTemporalTowerGrantYouActionSpeedPct = 10551, + + /// + /// blight_stonegaze_tower_duration_+% + /// + BlightStonegazeTowerDurationPct = 10552, + + /// + /// blight_stonegaze_tower_range_+% + /// + BlightStonegazeTowerRangePct = 10553, + + /// + /// blight_stonegaze_tower_cooldown_recovery_+% + /// + BlightStonegazeTowerCooldownRecoveryPct = 10554, + + /// + /// blight_stonegaze_tower_petrify_tick_speed_+% + /// + BlightStonegazeTowerPetrifyTickSpeedPct = 10555, + + /// + /// blight_summoning_tower_minion_damage_+% + /// + BlightSummoningTowerMinionDamagePct = 10556, + + /// + /// blight_summoning_tower_range_+% + /// + BlightSummoningTowerRangePct = 10557, + + /// + /// blight_summoning_tower_minion_movement_speed_+% + /// + BlightSummoningTowerMinionMovementSpeedPct = 10558, + + /// + /// blight_summoning_tower_minion_life_+% + /// + BlightSummoningTowerMinionLifePct = 10559, + + /// + /// blight_summoning_tower_minions_summoned_+ + /// + BlightSummoningTowerMinionsSummoned = 10560, + + /// + /// blight_scout_tower_minion_damage_+% + /// + BlightScoutTowerMinionDamagePct = 10561, + + /// + /// blight_scout_tower_range_+% + /// + BlightScoutTowerRangePct = 10562, + + /// + /// blight_scout_tower_minion_movement_speed_+% + /// + BlightScoutTowerMinionMovementSpeedPct = 10563, + + /// + /// blight_scout_tower_minion_life_+% + /// + BlightScoutTowerMinionLifePct = 10564, + + /// + /// blight_sentinel_tower_minion_damage_+% + /// + BlightSentinelTowerMinionDamagePct = 10565, + + /// + /// blight_sentinel_tower_range_+% + /// + BlightSentinelTowerRangePct = 10566, + + /// + /// blight_sentinel_tower_minion_movement_speed_+% + /// + BlightSentinelTowerMinionMovementSpeedPct = 10567, + + /// + /// blight_sentinel_tower_minion_life_+% + /// + BlightSentinelTowerMinionLifePct = 10568, + + /// + /// blight_fireball_tower_damage_+% + /// + BlightFireballTowerDamagePct = 10569, + + /// + /// blight_fireball_tower_range_+% + /// + BlightFireballTowerRangePct = 10570, + + /// + /// blight_fireball_tower_cast_speed_+% + /// + BlightFireballTowerCastSpeedPct = 10571, + + /// + /// blight_fireball_tower_additional_projectiles_+ + /// + BlightFireballTowerAdditionalProjectiles = 10572, + + /// + /// blight_fireball_tower_projectiles_nova + /// + BlightFireballTowerProjectilesNova = 10573, + + /// + /// blight_flamethrower_tower_damage_+% + /// + BlightFlamethrowerTowerDamagePct = 10574, + + /// + /// blight_flamethrower_tower_range_+% + /// + BlightFlamethrowerTowerRangePct = 10575, + + /// + /// blight_flamethrower_tower_full_damage_fire_enemies + /// + BlightFlamethrowerTowerFullDamageFireEnemies = 10576, + + /// + /// blight_flamethrower_tower_cast_speed_+% + /// + BlightFlamethrowerTowerCastSpeedPct = 10577, + + /// + /// blight_meteor_tower_damage_+% + /// + BlightMeteorTowerDamagePct = 10578, + + /// + /// blight_meteor_tower_range_+% + /// + BlightMeteorTowerRangePct = 10579, + + /// + /// blight_meteor_tower_always_stun + /// + BlightMeteorTowerAlwaysStun = 10580, + + /// + /// blight_meteor_tower_additional_meteor_+ + /// + BlightMeteorTowerAdditionalMeteor = 10581, + + /// + /// fire_storm_fireball_delay_+% + /// + FireStormFireballDelayPct = 10582, + + /// + /// additional_number_of_monsters_to_summon_+ + /// + AdditionalNumberOfMonstersToSummon = 10583, + + /// + /// petrification_tick_speed_+% + /// + PetrificationTickSpeedPct = 10584, + + /// + /// temporal_anomaly_tick_speed_+% + /// + TemporalAnomalyTickSpeedPct = 10585, + + /// + /// temporal_anomaly_allied_action_speed_-% + /// + TemporalAnomalyAlliedActionSpeedPct = 10586, + + /// + /// fire_storm_additional_fireballs_per_wave_+ + /// + FireStormAdditionalFireballsPerWave = 10587, + + /// + /// phys_cascade_trap_range_+% + /// + PhysCascadeTrapRangePct = 10588, + + /// + /// shock_nova_skill_area_of_effect_+%_per_repeat + /// + ShockNovaSkillAreaOfEffectPctPerRepeat = 10589, + + /// + /// chest_repeat_drops_count + /// + ChestRepeatDropsCount = 10590, + + /// + /// damage_+%_final_from_returning_projectile + /// + DamagePctFinalFromReturningProjectile = 10591, + + /// + /// display_additional_projectile_per_2_mines_in_detonation_sequence + /// + DisplayAdditionalProjectilePer2MinesInDetonationSequence = 10592, + + /// + /// display_removes_and_grants_elusive_when_used + /// + DisplayRemovesAndGrantsElusiveWhenUsed = 10593, + + /// + /// display_additional_projectile_per_mine_in_detonation_sequence + /// + DisplayAdditionalProjectilePerMineInDetonationSequence = 10594, + + /// + /// display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine + /// + DisplayMineDeontationMechanicsDetonationSpeedPctFinalPerSequenceMine = 10595, + + /// + /// display_skitterbot_limit_per_type + /// + DisplaySkitterbotLimitPerType = 10596, + + /// + /// display_skitterbot_shocking_aura + /// + DisplaySkitterbotShockingAura = 10597, + + /// + /// display_skitterbot_chilling_aura + /// + DisplaySkitterbotChillingAura = 10598, + + /// + /// damage_+%_final_against_non_blight_monsters + /// + DamagePctFinalAgainstNonBlightMonsters = 10599, + + /// + /// tencent_chiyou_set_weapon_skin + /// + TencentChiyouSetWeaponSkin = 10600, + + /// + /// tencent_chiyou_set_weapon_effect + /// + TencentChiyouSetWeaponEffect = 10601, + + /// + /// unaffected_by_temporal_tower + /// + UnaffectedByTemporalTower = 10602, + + /// + /// sweep_add_endurance_charge_on_hit_% + /// + SweepAddEnduranceChargeOnHitPct = 10603, + + /// + /// mine_cannot_rearm + /// + MineCannotRearm = 10604, + + /// + /// map_metamorphosis_league + /// + MapMetamorphosisLeague = 10605, + + /// + /// metamorphosis_skill_row + /// + MetamorphosisSkillRow = 10606, + + /// + /// metamorphosis_skill_instance_id + /// + MetamorphosisSkillInstanceId = 10607, + + /// + /// tethered_movement_speed_+%_final + /// + TetheredMovementSpeedPctFinal = 10608, + + /// + /// number_of_tethers + /// + NumberOfTethers = 10609, + + /// + /// tethered_movement_speed_+%_final_per_rope + /// + TetheredMovementSpeedPctFinalPerRope = 10610, + + /// + /// explosive_arrow_explosion_minimum_added_fire_damage + /// + ExplosiveArrowExplosionMinimumAddedFireDamage = 10611, + + /// + /// explosive_arrow_explosion_maximum_added_fire_damage + /// + ExplosiveArrowExplosionMaximumAddedFireDamage = 10612, + + /// + /// explosive_arrow_explosion_base_damage_+permyriad + /// + ExplosiveArrowExplosionBaseDamagePermyriad = 10613, + + /// + /// map_level_+ + /// + MapLevel = 10614, + + /// + /// additional_beam_only_chains + /// + AdditionalBeamOnlyChains = 10615, + + /// + /// virtual_number_of_chains_for_beams + /// + VirtualNumberOfChainsForBeams = 10616, + + /// + /// tethered_movement_speed_+%_final_per_rope_vs_rare + /// + TetheredMovementSpeedPctFinalPerRopeVsRare = 10617, + + /// + /// tethered_movement_speed_+%_final_per_rope_vs_unique + /// + TetheredMovementSpeedPctFinalPerRopeVsUnique = 10618, + + /// + /// is_ranged_attack_totem + /// + IsRangedAttackTotem = 10619, + + /// + /// attack_skills_additional_ballista_totems_allowed + /// + AttackSkillsAdditionalBallistaTotemsAllowed = 10620, + + /// + /// explosive_arrow_maximum_bonus_explosion_radius + /// + ExplosiveArrowMaximumBonusExplosionRadius = 10621, + + /// + /// modifiers_to_number_of_projectiles_instead_apply_to_splitting + /// + ModifiersToNumberOfProjectilesInsteadApplyToSplitting = 10622, + + /// + /// intermediary_number_of_additional_projectiles + /// + IntermediaryNumberOfAdditionalProjectiles = 10623, + + /// + /// virtual_projectile_number_to_split + /// + VirtualProjectileNumberToSplit = 10624, + + /// + /// virtual_arrow_number_to_split + /// + VirtualArrowNumberToSplit = 10625, + + /// + /// intermediary_number_of_additional_arrows + /// + IntermediaryNumberOfAdditionalArrows = 10626, + + /// + /// maximum_life_mana_and_energy_shield_+% + /// + MaximumLifeManaAndEnergyShieldPct = 10627, + + /// + /// maximum_energy_shield_+_per_100_life_reserved + /// + MaximumEnergyShieldPer100LifeReserved = 10628, + + /// + /// projectiles_barrage + /// + ProjectilesBarrage = 10629, + + /// + /// intermediary_chaos_resistance_only_additions + /// + IntermediaryChaosResistanceOnlyAdditions = 10630, + + /// + /// skill_ignores_cooldown + /// + SkillIgnoresCooldown = 10631, + + /// + /// summoned_monsters_num_magic_monsters + /// + SummonedMonstersNumMagicMonsters = 10632, + + /// + /// summoned_monsters_num_rare_monsters + /// + SummonedMonstersNumRareMonsters = 10633, + + /// + /// projectiles_rain + /// + ProjectilesRain = 10634, + + /// + /// tethered_enemies_take_attack_projectile_damage_taken_+% + /// + TetheredEnemiesTakeAttackProjectileDamageTakenPct = 10635, + + /// + /// support_rain_projectile_damage_+%_final + /// + SupportRainProjectileDamagePctFinal = 10636, + + /// + /// support_barrage_damage_+%_final + /// + SupportBarrageDamagePctFinal = 10637, + + /// + /// virtual_has_ascendancy_child_aura_stat + /// + VirtualHasAscendancyChildAuraStat = 10638, + + /// + /// action_should_face_away_from_target + /// + ActionShouldFaceAwayFromTarget = 10639, + + /// + /// damage_taken_+%_final_per_totem + /// + DamageTakenPctFinalPerTotem = 10640, + + /// + /// movement_velocity_+%_per_totem + /// + MovementVelocityPctPerTotem = 10641, + + /// + /// totems_action_speed_cannot_be_modified_below_base + /// + TotemsActionSpeedCannotBeModifiedBelowBase = 10642, + + /// + /// totem_attack_damage_leeched_as_mana_to_you_permyriad + /// + TotemAttackDamageLeechedAsManaToYouPermyriad = 10643, + + /// + /// damage_leeched_as_mana_to_parent_permyriad + /// + DamageLeechedAsManaToParentPermyriad = 10644, + + /// + /// totems_nearby_enemies_damage_taken_+% + /// + TotemsNearbyEnemiesDamageTakenPct = 10645, + + /// + /// attack_projectile_damage_taken_+% + /// + AttackProjectileDamageTakenPct = 10646, + + /// + /// physical_damage_taken_+%_final + /// + PhysicalDamageTakenPctFinal = 10647, + + /// + /// physical_damage_taken_when_hit_+%_final + /// + PhysicalDamageTakenWhenHitPctFinal = 10648, + + /// + /// cold_damage_taken_+%_final + /// + ColdDamageTakenPctFinal = 10649, + + /// + /// cold_damage_taken_when_hit_+%_final + /// + ColdDamageTakenWhenHitPctFinal = 10650, + + /// + /// lightning_damage_taken_+%_final + /// + LightningDamageTakenPctFinal = 10651, + + /// + /// lightning_damage_taken_when_hit_+%_final + /// + LightningDamageTakenWhenHitPctFinal = 10652, + + /// + /// fire_damage_taken_+%_final + /// + FireDamageTakenPctFinal = 10653, + + /// + /// fire_damage_taken_when_hit_+%_final + /// + FireDamageTakenWhenHitPctFinal = 10654, + + /// + /// chaos_damage_taken_+%_final + /// + ChaosDamageTakenPctFinal = 10655, + + /// + /// chaos_damage_taken_when_hit_+%_final + /// + ChaosDamageTakenWhenHitPctFinal = 10656, + + /// + /// elemental_damage_taken_+%_final + /// + ElementalDamageTakenPctFinal = 10657, + + /// + /// virtual_chaos_reflect_damage_taken_+% + /// + VirtualChaosReflectDamageTakenPct = 10658, + + /// + /// virtual_elemental_damage_taken_when_hit_+% + /// + VirtualElementalDamageTakenWhenHitPct = 10659, + + /// + /// virtual_physical_damage_taken_over_time_+% + /// + VirtualPhysicalDamageTakenOverTimePct = 10660, + + /// + /// virtual_cold_damage_taken_over_time_+% + /// + VirtualColdDamageTakenOverTimePct = 10661, + + /// + /// virtual_lightning_damage_taken_over_time_+% + /// + VirtualLightningDamageTakenOverTimePct = 10662, + + /// + /// virtual_fire_damage_taken_over_time_+% + /// + VirtualFireDamageTakenOverTimePct = 10663, + + /// + /// virtual_chaos_damage_taken_over_time_+% + /// + VirtualChaosDamageTakenOverTimePct = 10664, + + /// + /// chaos_damage_%_taken_from_mana_before_life + /// + ChaosDamagePctTakenFromManaBeforeLife = 10665, + + /// + /// on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds + /// + OnCastLoseAllManaGainPctAsMaximumLightningDamageFor4Seconds = 10666, + + /// + /// allow_multiple_offerings + /// + AllowMultipleOfferings = 10667, + + /// + /// offering_duration_+% + /// + OfferingDurationPct = 10668, + + /// + /// character_sheet_reference_accuracy + /// + CharacterSheetReferenceAccuracy = 10669, + + /// + /// character_sheet_reference_damage + /// + CharacterSheetReferenceDamage = 10670, + + /// + /// character_sheet_reference_evasion + /// + CharacterSheetReferenceEvasion = 10671, + + /// + /// character_sheet_reference_high_dex_evasion + /// + CharacterSheetReferenceHighDexEvasion = 10672, + + /// + /// chance_to_evade_attacks_+%_final + /// + ChanceToEvadeAttacksPctFinal = 10673, + + /// + /// chance_to_evade_projectile_attacks_+%_final + /// + ChanceToEvadeProjectileAttacksPctFinal = 10674, + + /// + /// chance_to_evade_melee_attacks_+%_final + /// + ChanceToEvadeMeleeAttacksPctFinal = 10675, + + /// + /// virtual_avoid_elemental_damage_% + /// + VirtualAvoidElementalDamagePct = 10676, + + /// + /// virtual_avoid_fire_damage_% + /// + VirtualAvoidFireDamagePct = 10677, + + /// + /// virtual_avoid_cold_damage_% + /// + VirtualAvoidColdDamagePct = 10678, + + /// + /// virtual_avoid_lightning_damage_% + /// + VirtualAvoidLightningDamagePct = 10679, + + /// + /// map_atlas_exile_influence + /// + MapAtlasExileInfluence = 10680, + + /// + /// fortify_damage_taken_when_hit_+%_final + /// + FortifyDamageTakenWhenHitPctFinal = 10681, + + /// + /// harbinger_channel_buff_damage_taken_+%_final + /// + HarbingerChannelBuffDamageTakenPctFinal = 10682, + + /// + /// damage_taken_when_hit_+%_final + /// + DamageTakenWhenHitPctFinal = 10683, + + /// + /// ailment_threshold + /// + AilmentThreshold = 10684, + + /// + /// base_ailment_threshold + /// + BaseAilmentThreshold = 10685, + + /// + /// ailment_threshold_+% + /// + AilmentThresholdPct = 10686, + + /// + /// max_chance_to_block_attacks_if_not_blocked_recently + /// + MaxChanceToBlockAttacksIfNotBlockedRecently = 10687, + + /// + /// phasing_if_blocked_recently + /// + PhasingIfBlockedRecently = 10688, + + /// + /// extra_target_targeting_distance_+% + /// + ExtraTargetTargetingDistancePct = 10689, + + /// + /// damaging_ailments_deal_damage_+%_faster + /// + DamagingAilmentsDealDamagePctFaster = 10690, + + /// + /// virtual_number_of_forks_for_projectiles_final + /// + VirtualNumberOfForksForProjectilesFinal = 10691, + + /// + /// number_of_additional_forks_base + /// + NumberOfAdditionalForksBase = 10692, + + /// + /// inc_aoe_plus_more_area_damage_+%_final + /// + IncAoePlusMoreAreaDamagePctFinal = 10693, + + /// + /// spell_echo_plus_chance_double_damage_%_final + /// + SpellEchoPlusChanceDoubleDamagePctFinal = 10694, + + /// + /// multistrike_damage_+%_final_on_third_repeat + /// + MultistrikeDamagePctFinalOnThirdRepeat = 10695, + + /// + /// unaffected_by_bleeding_while_leeching + /// + UnaffectedByBleedingWhileLeeching = 10696, + + /// + /// metamorphosis_boss_life_+%_final_permyriad + /// + MetamorphosisBossLifePctFinalPermyriad = 10697, + + /// + /// metamorphosis_boss_attack_speed_+%_final_permyriad + /// + MetamorphosisBossAttackSpeedPctFinalPermyriad = 10698, + + /// + /// metamorphosis_boss_cast_speed_+%_final_permyriad + /// + MetamorphosisBossCastSpeedPctFinalPermyriad = 10699, + + /// + /// metamorphosis_boss_move_speed_+%_final_permyriad + /// + MetamorphosisBossMoveSpeedPctFinalPermyriad = 10700, + + /// + /// metamorphosis_boss_damage_+%_final_permyriad + /// + MetamorphosisBossDamagePctFinalPermyriad = 10701, + + /// + /// metamorphosis_boss_actor_scale_+%_permyriad + /// + MetamorphosisBossActorScalePctPermyriad = 10702, + + /// + /// metamorphosis_boss_item_quantity_+%_final_permyriad + /// + MetamorphosisBossItemQuantityPctFinalPermyriad = 10703, + + /// + /// metamorphosis_boss_item_rarity_+%_final_permyriad + /// + MetamorphosisBossItemRarityPctFinalPermyriad = 10704, + + /// + /// metamorphosis_boss_extra_reward_%_chance_permyriad + /// + MetamorphosisBossExtraRewardPctChancePermyriad = 10705, + + /// + /// metamorphosis_boss_power_level + /// + MetamorphosisBossPowerLevel = 10706, + + /// + /// supported_aura_skill_gem_level_+ + /// + SupportedAuraSkillGemLevel = 10707, + + /// + /// supported_cold_skill_gem_level_+ + /// + SupportedColdSkillGemLevel = 10708, + + /// + /// supported_elemental_skill_gem_level_+ + /// + SupportedElementalSkillGemLevel = 10709, + + /// + /// supported_curse_skill_gem_level_+ + /// + SupportedCurseSkillGemLevel = 10710, + + /// + /// supported_lightning_skill_gem_level_+ + /// + SupportedLightningSkillGemLevel = 10711, + + /// + /// explosive_arrow_hit_and_ailment_damage_+%_final_per_stack + /// + ExplosiveArrowHitAndAilmentDamagePctFinalPerStack = 10712, + + /// + /// non_damaging_ailments_as_though_damage_+%_final + /// + NonDamagingAilmentsAsThoughDamagePctFinal = 10713, + + /// + /// critical_strikes_do_not_always_apply_non_damaging_ailments + /// + CriticalStrikesDoNotAlwaysApplyNonDamagingAilments = 10714, + + /// + /// summoned_phantasms_have_no_duration + /// + SummonedPhantasmsHaveNoDuration = 10715, + + /// + /// active_skill_player_level + /// + ActiveSkillPlayerLevel = 10716, + + /// + /// support_barrage_attack_time_+%_per_projectile_fired + /// + SupportBarrageAttackTimePctPerProjectileFired = 10717, + + /// + /// metamorphosis_boss_item_reward_slot_1_index + /// + MetamorphosisBossItemRewardSlot1Index = 10718, + + /// + /// metamorphosis_boss_item_reward_slot_2_index + /// + MetamorphosisBossItemRewardSlot2Index = 10719, + + /// + /// metamorphosis_boss_item_reward_slot_3_index + /// + MetamorphosisBossItemRewardSlot3Index = 10720, + + /// + /// metamorphosis_boss_item_reward_slot_4_index + /// + MetamorphosisBossItemRewardSlot4Index = 10721, + + /// + /// metamorphosis_boss_item_reward_slot_5_index + /// + MetamorphosisBossItemRewardSlot5Index = 10722, + + /// + /// local_item_allow_modification_while_corrupted + /// + LocalItemAllowModificationWhileCorrupted = 10723, + + /// + /// local_item_implicit_modifier_limit + /// + LocalItemImplicitModifierLimit = 10724, + + /// + /// skill_cooldown_time_override_ms + /// + SkillCooldownTimeOverrideMs = 10725, + + /// + /// skill_cooldown_group_override + /// + SkillCooldownGroupOverride = 10726, + + /// + /// jewellery_elemental_quality + /// + JewelleryElementalQuality = 10727, + + /// + /// jewellery_caster_quality + /// + JewelleryCasterQuality = 10728, + + /// + /// jewellery_attack_quality + /// + JewelleryAttackQuality = 10729, + + /// + /// jewellery_defense_quality + /// + JewelleryDefenseQuality = 10730, + + /// + /// jewellery_resource_quality + /// + JewelleryResourceQuality = 10731, + + /// + /// jewellery_resistance_quality + /// + JewelleryResistanceQuality = 10732, + + /// + /// jewellery_attribute_quality + /// + JewelleryAttributeQuality = 10733, + + /// + /// base_additional_burning_debuff_%_of_ignite_damage + /// + BaseAdditionalBurningDebuffPctOfIgniteDamage = 10734, + + /// + /// full_shield_threshold + /// + FullShieldThreshold = 10735, + + /// + /// skill_can_only_use_non_melee_weapons + /// + SkillCanOnlyUseNonMeleeWeapons = 10736, + + /// + /// skill_can_only_use_bow + /// + SkillCanOnlyUseBow = 10737, + + /// + /// chance_to_ignore_hexproof_% + /// + ChanceToIgnoreHexproofPct = 10738, + + /// + /// no_minion_duration + /// + NoMinionDuration = 10739, + + /// + /// active_skill_attack_damage_+%_final_with_two_handed_weapon + /// + ActiveSkillAttackDamagePctFinalWithTwoHandedWeapon = 10740, + + /// + /// active_skill_attack_speed_+%_final_with_two_handed_weapon + /// + ActiveSkillAttackSpeedPctFinalWithTwoHandedWeapon = 10741, + + /// + /// Knockback Speed +% + /// + KnockbackSpeedPct = 10742, + + /// + /// tethering_arrow_display_rope_limit + /// + TetheringArrowDisplayRopeLimit = 10743, + + /// + /// additive_arrow_speed_modifiers_apply_to_area_of_effect + /// + AdditiveArrowSpeedModifiersApplyToAreaOfEffect = 10744, + + /// + /// combined_arrow_speed_+% + /// + CombinedArrowSpeedPct = 10745, + + /// + /// metamorphosis_boss_disable_bone_morphing + /// + MetamorphosisBossDisableBoneMorphing = 10746, + + /// + /// map_additional_tier + /// + MapAdditionalTier = 10747, + + /// + /// map_warlord_influence + /// + MapWarlordInfluence = 10748, + + /// + /// support_spell_cascade_sideways + /// + SupportSpellCascadeSideways = 10749, + + /// + /// artillery_ballista_fire_pen_+% + /// + ArtilleryBallistaFirePenPct = 10750, + + /// + /// artillery_ballista_num_additional_arrows + /// + ArtilleryBallistaNumAdditionalArrows = 10751, + + /// + /// shrapnel_ballista_num_additional_arrows + /// + ShrapnelBallistaNumAdditionalArrows = 10752, + + /// + /// shrapnel_ballista_projectile_speed_+% + /// + ShrapnelBallistaProjectileSpeedPct = 10753, + + /// + /// shrapnel_ballista_num_pierce + /// + ShrapnelBallistaNumPierce = 10754, + + /// + /// determine_knockback_direction_from_melee_pattern + /// + DetermineKnockbackDirectionFromMeleePattern = 10755, + + /// + /// galvanic_arrow_projectile_speed_+% + /// + GalvanicArrowProjectileSpeedPct = 10756, + + /// + /// check_for_targets_between_initiator_and_projectile_source + /// + CheckForTargetsBetweenInitiatorAndProjectileSource = 10757, + + /// + /// cannot_recover_energy_shield + /// + CannotRecoverEnergyShield = 10758, + + /// + /// minions_use_parents_flasks_on_summon + /// + MinionsUseParentsFlasksOnSummon = 10759, + + /// + /// poison_dot_multiplier_+_per_frenzy_charge + /// + PoisonDotMultiplierPerFrenzyCharge = 10760, + + /// + /// movement_velocity_+%_while_near_parent_final + /// + MovementVelocityPctWhileNearParentFinal = 10761, + + /// + /// movement_velocity_+%_for_near_parent_buffstat_final + /// + MovementVelocityPctForNearParentBuffstatFinal = 10762, + + /// + /// sextant_uses_remaining + /// + SextantUsesRemaining = 10763, + + /// + /// watchstone_uses_remaining + /// + WatchstoneUsesRemaining = 10764, + + /// + /// skill_number_of_previous_locations_to_track + /// + SkillNumberOfPreviousLocationsToTrack = 10765, + + /// + /// melee_strike_skill_strike_previous_location + /// + MeleeStrikeSkillStrikePreviousLocation = 10766, + + /// + /// skill_is_strike_skill + /// + SkillIsStrikeSkill = 10767, + + /// + /// orion_circle_maze_number_of_circles + /// + OrionCircleMazeNumberOfCircles = 10768, + + /// + /// summon_mirage_warrior_on_crit + /// + SummonMirageWarriorOnCrit = 10769, + + /// + /// avoid_elemental_damage_while_phasing_% + /// + AvoidElementalDamageWhilePhasingPct = 10770, + + /// + /// active_skill_chill_as_though_damage_+%_final + /// + ActiveSkillChillAsThoughDamagePctFinal = 10771, + + /// + /// active_skill_shock_as_though_damage_+%_final + /// + ActiveSkillShockAsThoughDamagePctFinal = 10772, + + /// + /// fire_skill_gem_level_+ + /// + FireSkillGemLevel = 10773, + + /// + /// cold_skill_gem_level_+ + /// + ColdSkillGemLevel = 10774, + + /// + /// lightning_skill_gem_level_+ + /// + LightningSkillGemLevel = 10775, + + /// + /// chaos_skill_gem_level_+ + /// + ChaosSkillGemLevel = 10776, + + /// + /// physical_skill_gem_level_+ + /// + PhysicalSkillGemLevel = 10777, + + /// + /// strength_skill_gem_level_+ + /// + StrengthSkillGemLevel = 10778, + + /// + /// dexterity_skill_gem_level_+ + /// + DexteritySkillGemLevel = 10779, + + /// + /// intelligence_skill_gem_level_+ + /// + IntelligenceSkillGemLevel = 10780, + + /// + /// skill_is_nova_skill + /// + SkillIsNovaSkill = 10781, + + /// + /// nova_spells_cast_at_target_location + /// + NovaSpellsCastAtTargetLocation = 10782, + + /// + /// virtual_self_targeted_skills_target_location_instead + /// + VirtualSelfTargetedSkillsTargetLocationInstead = 10783, + + /// + /// map_awakening_level + /// + MapAwakeningLevel = 10784, + + /// + /// map_boss_life_+permyriad_final_from_awakening_level + /// + MapBossLifePermyriadFinalFromAwakeningLevel = 10785, + + /// + /// map_boss_additional_chance_to_drop_adjacent_map_permyriad + /// + MapBossAdditionalChanceToDropAdjacentMapPermyriad = 10786, + + /// + /// map_boss_chance_to_drop_additional_shaper_guardian_map_permyriad + /// + MapBossChanceToDropAdditionalShaperGuardianMapPermyriad = 10787, + + /// + /// map_boss_chance_to_drop_additional_elder_guardian_map_permyriad + /// + MapBossChanceToDropAdditionalElderGuardianMapPermyriad = 10788, + + /// + /// map_boss_chance_to_drop_additional_atlas_base_type_permyriad + /// + MapBossChanceToDropAdditionalAtlasBaseTypePermyriad = 10789, + + /// + /// map_boss_chance_to_drop_additional_unique_item_permyriad + /// + MapBossChanceToDropAdditionalUniqueItemPermyriad = 10790, + + /// + /// map_boss_chance_to_drop_additional_map_currency_permyriad + /// + MapBossChanceToDropAdditionalMapCurrencyPermyriad = 10791, + + /// + /// monster_life_+permyriad_final_from_awakening_level + /// + MonsterLifePermyriadFinalFromAwakeningLevel = 10792, + + /// + /// map_atlas_exile_special_drop_chance_+permyriad + /// + MapAtlasExileSpecialDropChancePermyriad = 10793, + + /// + /// map_atlas_exile_influenced_item_drop_chance_+permyriad + /// + MapAtlasExileInfluencedItemDropChancePermyriad = 10794, + + /// + /// chance_to_drop_additional_shaper_guardian_map_permyriad + /// + ChanceToDropAdditionalShaperGuardianMapPermyriad = 10795, + + /// + /// chance_to_drop_additional_elder_guardian_map_permyriad + /// + ChanceToDropAdditionalElderGuardianMapPermyriad = 10796, + + /// + /// chance_to_drop_additional_atlas_base_type_permyriad + /// + ChanceToDropAdditionalAtlasBaseTypePermyriad = 10797, + + /// + /// chance_to_drop_additional_unique_item_permyriad + /// + ChanceToDropAdditionalUniqueItemPermyriad = 10798, + + /// + /// chance_to_drop_additional_map_currency_permyriad + /// + ChanceToDropAdditionalMapCurrencyPermyriad = 10799, + + /// + /// supress_muzzle_flash + /// + SupressMuzzleFlash = 10800, + + /// + /// supress_weapon_surges + /// + SupressWeaponSurges = 10801, + + /// + /// muzzle_flash_swap_hands + /// + MuzzleFlashSwapHands = 10802, + + /// + /// local_jewel_minimum_radius_difference + /// + LocalJewelMinimumRadiusDifference = 10803, + + /// + /// maximum_number_of_mirage_warriors + /// + MaximumNumberOfMirageWarriors = 10804, + + /// + /// number_of_active_mirage_warriors + /// + NumberOfActiveMirageWarriors = 10805, + + /// + /// local_display_fire_and_cold_resist_debuff + /// + LocalDisplayFireAndColdResistDebuff = 10806, + + /// + /// additional_burning_debuff_%_of_ignite_damage + /// + AdditionalBurningDebuffPctOfIgniteDamage = 10807, + + /// + /// cannot_inflict_additional_burning_debuff_with_ignite + /// + CannotInflictAdditionalBurningDebuffWithIgnite = 10808, + + /// + /// burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite + /// + BurningArrowCannotInflictAdditionalBurningDebuffWithIgnite = 10809, + + /// + /// terrain_arrow_attachment_chance_reduction_+% + /// + TerrainArrowAttachmentChanceReductionPct = 10810, + + /// + /// projectiles_nova_on_impact_projectile_count + /// + ProjectilesNovaOnImpactProjectileCount = 10811, + + /// + /// map_atlas_exile_boss + /// + MapAtlasExileBoss = 10812, + + /// + /// should_use_alternate_fortify + /// + ShouldUseAlternateFortify = 10813, + + /// + /// alternate_fortify_evasion_rating_+%_final + /// + AlternateFortifyEvasionRatingPctFinal = 10814, + + /// + /// attack_and_cast_speed_+%_while_you_have_fortify + /// + AttackAndCastSpeedPctWhileYouHaveFortify = 10815, + + /// + /// hide_mini_life_bar + /// + HideMiniLifeBar = 10816, + + /// + /// hide_buff_visuals + /// + HideBuffVisuals = 10817, + + /// + /// ensnaring_arrow_debuff_effect_+% + /// + EnsnaringArrowDebuffEffectPct = 10818, + + /// + /// ensnaring_arrow_area_of_effect_+% + /// + EnsnaringArrowAreaOfEffectPct = 10819, + + /// + /// burning_arrow_debuff_effect_+% + /// + BurningArrowDebuffEffectPct = 10820, + + /// + /// explosive_arrow_duration_+% + /// + ExplosiveArrowDurationPct = 10821, + + /// + /// map_adds_X_extra_synthesis_mods + /// + MapAddsXExtraSynthesisMods = 10822, + + /// + /// map_adds_X_extra_synthesis_special_mods + /// + MapAddsXExtraSynthesisSpecialMods = 10823, + + /// + /// artillery_ballista_cross_strafe_pattern + /// + ArtilleryBallistaCrossStrafePattern = 10824, + + /// + /// skill_area_angle_+% + /// + SkillAreaAnglePct = 10825, + + /// + /// ice_shot_area_angle_+% + /// + IceShotAreaAnglePct = 10826, + + /// + /// ailment_threshold_pluspercent_final_for_map_boss + /// + AilmentThresholdPluspercentFinalForMapBoss = 10827, + + /// + /// base_inflict_cold_exposure_on_hit_%_chance + /// + BaseInflictColdExposureOnHitPctChance = 10828, + + /// + /// base_inflict_lightning_exposure_on_hit_%_chance + /// + BaseInflictLightningExposureOnHitPctChance = 10829, + + /// + /// base_inflict_fire_exposure_on_hit_%_chance + /// + BaseInflictFireExposureOnHitPctChance = 10830, + + /// + /// unique_voltaxic_rift_shock_as_though_damage_+%_final + /// + UniqueVoltaxicRiftShockAsThoughDamagePctFinal = 10831, + + /// + /// supported_fire_skill_gem_level_+ + /// + SupportedFireSkillGemLevel = 10832, + + /// + /// gain_single_conflux_for_3_seconds_every_8_seconds + /// + GainSingleConfluxFor3SecondsEvery8Seconds = 10833, + + /// + /// block_%_if_blocked_an_attack_recently + /// + BlockPctIfBlockedAnAttackRecently = 10834, + + /// + /// spell_block_%_if_blocked_a_spell_recently + /// + SpellBlockPctIfBlockedASpellRecently = 10835, + + /// + /// local_display_socketed_skills_fork + /// + LocalDisplaySocketedSkillsFork = 10836, + + /// + /// minimum_added_physical_damage_if_have_crit_recently + /// + MinimumAddedPhysicalDamageIfHaveCritRecently = 10837, + + /// + /// maximum_added_physical_damage_if_have_crit_recently + /// + MaximumAddedPhysicalDamageIfHaveCritRecently = 10838, + + /// + /// maximum_added_fire_damage_if_have_crit_recently + /// + MaximumAddedFireDamageIfHaveCritRecently = 10839, + + /// + /// minimum_added_fire_damage_if_have_crit_recently + /// + MinimumAddedFireDamageIfHaveCritRecently = 10840, + + /// + /// minimum_added_cold_damage_if_have_crit_recently + /// + MinimumAddedColdDamageIfHaveCritRecently = 10841, + + /// + /// maximum_added_cold_damage_if_have_crit_recently + /// + MaximumAddedColdDamageIfHaveCritRecently = 10842, + + /// + /// minimum_added_lightning_damage_if_have_crit_recently + /// + MinimumAddedLightningDamageIfHaveCritRecently = 10843, + + /// + /// maximum_added_lightning_damage_if_have_crit_recently + /// + MaximumAddedLightningDamageIfHaveCritRecently = 10844, + + /// + /// enemy_phys_reduction_%_penalty_vs_hit + /// + EnemyPhysReductionPctPenaltyVsHit = 10845, + + /// + /// local_fire_penetration_% + /// + LocalFirePenetrationPct = 10846, + + /// + /// main_hand_fire_penetration_% + /// + MainHandFirePenetrationPct = 10847, + + /// + /// off_hand_fire_penetration_% + /// + OffHandFirePenetrationPct = 10848, + + /// + /// local_cold_penetration_% + /// + LocalColdPenetrationPct = 10849, + + /// + /// main_hand_cold_penetration_% + /// + MainHandColdPenetrationPct = 10850, + + /// + /// off_hand_cold_penetration_% + /// + OffHandColdPenetrationPct = 10851, + + /// + /// local_lightning_penetration_% + /// + LocalLightningPenetrationPct = 10852, + + /// + /// main_hand_lightning_penetration_% + /// + MainHandLightningPenetrationPct = 10853, + + /// + /// off_hand_lightning_penetration_% + /// + OffHandLightningPenetrationPct = 10854, + + /// + /// should_have_tailwind_from_stat + /// + ShouldHaveTailwindFromStat = 10855, + + /// + /// tailwind_if_have_crit_recently + /// + TailwindIfHaveCritRecently = 10856, + + /// + /// unique_voltaxic_rift_shock_maximum_magnitude_override + /// + UniqueVoltaxicRiftShockMaximumMagnitudeOverride = 10857, + + /// + /// blight_path_piece_length_modifier_% + /// + BlightPathPieceLengthModifierPct = 10858, + + /// + /// minion_flask_charges_used_+% + /// + MinionFlaskChargesUsedPct = 10859, + + /// + /// drop_additional_synthesis_map + /// + DropAdditionalSynthesisMap = 10860, + + /// + /// local_ring_nova_spells_area_of_effect_+%_final + /// + LocalRingNovaSpellsAreaOfEffectPctFinal = 10861, + + /// + /// left_ring_slot_nova_spells_area_of_effect_+%_final + /// + LeftRingSlotNovaSpellsAreaOfEffectPctFinal = 10862, + + /// + /// right_ring_slot_nova_spells_area_of_effect_+%_final + /// + RightRingSlotNovaSpellsAreaOfEffectPctFinal = 10863, + + /// + /// support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired + /// + SupportBarrageTrapAndMineThrowingTimePctFinalPerProjectileFired = 10864, + + /// + /// virtual_trap_and_mine_throwing_time_+%_final + /// + VirtualTrapAndMineThrowingTimePctFinal = 10865, + + /// + /// max_number_of_lightning_warp_markers + /// + MaxNumberOfLightningWarpMarkers = 10866, + + /// + /// local_weapon_enemy_phys_reduction_%_penalty + /// + LocalWeaponEnemyPhysReductionPctPenalty = 10867, + + /// + /// main_hand_enemy_phys_reduction_%_penalty + /// + MainHandEnemyPhysReductionPctPenalty = 10868, + + /// + /// off_hand_enemy_phys_reduction_%_penalty + /// + OffHandEnemyPhysReductionPctPenalty = 10869, + + /// + /// impale_phys_reduction_%_penalty + /// + ImpalePhysReductionPctPenalty = 10870, + + /// + /// map_drop_influenced_items_type + /// + MapDropInfluencedItemsType = 10871, + + /// + /// melee_strike_skill_number_of_previous_locations_to_strike + /// + MeleeStrikeSkillNumberOfPreviousLocationsToStrike = 10872, + + /// + /// flask_duration_on_minions_+% + /// + FlaskDurationOnMinionsPct = 10873, + + /// + /// local_display_trigger_level_x_reflection_skill_on_equip + /// + LocalDisplayTriggerLevelXReflectionSkillOnEquip = 10874, + + /// + /// summoned_phantasms_grant_buff + /// + SummonedPhantasmsGrantBuff = 10875, + + /// + /// phantasm_minimum_added_physical_damage_to_grant + /// + PhantasmMinimumAddedPhysicalDamageToGrant = 10876, + + /// + /// phantasm_maximum_added_physical_damage_to_grant + /// + PhantasmMaximumAddedPhysicalDamageToGrant = 10877, + + /// + /// phantasm_grant_buff_minimum_added_physical_damage + /// + PhantasmGrantBuffMinimumAddedPhysicalDamage = 10878, + + /// + /// phantasm_grant_buff_maximum_added_physical_damage + /// + PhantasmGrantBuffMaximumAddedPhysicalDamage = 10879, + + /// + /// map_base_ground_fire_damage_to_deal_per_10_seconds + /// + MapBaseGroundFireDamageToDealPer10Seconds = 10880, + + /// + /// map_ground_ice_base_magnitude + /// + MapGroundIceBaseMagnitude = 10881, + + /// + /// map_ground_lightning_base_magnitude + /// + MapGroundLightningBaseMagnitude = 10882, + + /// + /// map_mod_effect_+%_for_non_unique_maps + /// + MapModEffectPctForNonUniqueMaps = 10883, + + /// + /// local_ring_attack_speed_+%_final + /// + LocalRingAttackSpeedPctFinal = 10884, + + /// + /// left_ring_slot_attack_speed_+%_final + /// + LeftRingSlotAttackSpeedPctFinal = 10885, + + /// + /// right_ring_slot_attack_speed_+%_final + /// + RightRingSlotAttackSpeedPctFinal = 10886, + + /// + /// map_crusader_influence_spawn_monster_from_crusader_group_on_death_non_unique_% + /// + MapCrusaderInfluenceSpawnMonsterFromCrusaderGroupOnDeathNonUniquePct = 10887, + + /// + /// local_jewel_variable_ring_radius_value + /// + LocalJewelVariableRingRadiusValue = 10888, + + /// + /// map_watchstone_monsters_life_+%_final + /// + MapWatchstoneMonstersLifePctFinal = 10889, + + /// + /// map_watchstone_monsters_damage_+%_final + /// + MapWatchstoneMonstersDamagePctFinal = 10890, + + /// + /// map_number_of_additional_prefixes + /// + MapNumberOfAdditionalPrefixes = 10891, + + /// + /// map_number_of_additional_suffixes + /// + MapNumberOfAdditionalSuffixes = 10892, + + /// + /// monster_life_+%_final_from_watchstone + /// + MonsterLifePctFinalFromWatchstone = 10893, + + /// + /// monster_damage_+%_final_from_watchstone + /// + MonsterDamagePctFinalFromWatchstone = 10894, + + /// + /// map_no_arrow_terrain_attachment_in_area + /// + MapNoArrowTerrainAttachmentInArea = 10895, + + /// + /// map_watchstone_additional_packs_of_elder_monsters + /// + MapWatchstoneAdditionalPacksOfElderMonsters = 10896, + + /// + /// map_watchstone_additional_packs_of_shaper_monsters + /// + MapWatchstoneAdditionalPacksOfShaperMonsters = 10897, + + /// + /// local_display_supported_by_level_x_awakened_added_fire_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedFireDamage = 10898, + + /// + /// local_display_supported_by_level_x_awakened_ancestral_call + /// + LocalDisplaySupportedByLevelXAwakenedAncestralCall = 10899, + + /// + /// local_display_supported_by_level_x_awakened_brutality + /// + LocalDisplaySupportedByLevelXAwakenedBrutality = 10900, + + /// + /// local_display_supported_by_level_x_awakened_burning_damage + /// + LocalDisplaySupportedByLevelXAwakenedBurningDamage = 10901, + + /// + /// local_display_supported_by_level_x_awakened_weapon_elemental_damage + /// + LocalDisplaySupportedByLevelXAwakenedWeaponElementalDamage = 10902, + + /// + /// local_display_supported_by_level_x_awakened_fire_penetration + /// + LocalDisplaySupportedByLevelXAwakenedFirePenetration = 10903, + + /// + /// local_display_supported_by_level_x_awakened_generosity + /// + LocalDisplaySupportedByLevelXAwakenedGenerosity = 10904, + + /// + /// local_display_supported_by_level_x_awakened_melee_physical_damage + /// + LocalDisplaySupportedByLevelXAwakenedMeleePhysicalDamage = 10905, + + /// + /// local_display_supported_by_level_x_awakened_melee_splash + /// + LocalDisplaySupportedByLevelXAwakenedMeleeSplash = 10906, + + /// + /// local_display_supported_by_level_x_awakened_multistrike + /// + LocalDisplaySupportedByLevelXAwakenedMultistrike = 10907, + + /// + /// local_display_supported_by_level_x_awakened_added_cold_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedColdDamage = 10908, + + /// + /// local_display_supported_by_level_x_awakened_arrow_nova + /// + LocalDisplaySupportedByLevelXAwakenedArrowNova = 10909, + + /// + /// local_display_supported_by_level_x_awakened_cast_on_crit + /// + LocalDisplaySupportedByLevelXAwakenedCastOnCrit = 10910, + + /// + /// local_display_supported_by_level_x_awakened_chain + /// + LocalDisplaySupportedByLevelXAwakenedChain = 10911, + + /// + /// local_display_supported_by_level_x_awakened_cold_penetration + /// + LocalDisplaySupportedByLevelXAwakenedColdPenetration = 10912, + + /// + /// local_display_supported_by_level_x_awakened_deadly_ailments + /// + LocalDisplaySupportedByLevelXAwakenedDeadlyAilments = 10913, + + /// + /// local_display_supported_by_level_x_awakened_fork + /// + LocalDisplaySupportedByLevelXAwakenedFork = 10914, + + /// + /// local_display_supported_by_level_x_awakened_greater_multiple_projectiles + /// + LocalDisplaySupportedByLevelXAwakenedGreaterMultipleProjectiles = 10915, + + /// + /// local_display_supported_by_level_x_awakened_swift_affliction + /// + LocalDisplaySupportedByLevelXAwakenedSwiftAffliction = 10916, + + /// + /// local_display_supported_by_level_x_awakened_void_manipulation + /// + LocalDisplaySupportedByLevelXAwakenedVoidManipulation = 10917, + + /// + /// local_display_supported_by_level_x_awakened_vicious_projectiles + /// + LocalDisplaySupportedByLevelXAwakenedViciousProjectiles = 10918, + + /// + /// local_display_supported_by_level_x_awakened_added_chaos_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedChaosDamage = 10919, + + /// + /// local_display_supported_by_level_x_awakened_added_lightning_damage + /// + LocalDisplaySupportedByLevelXAwakenedAddedLightningDamage = 10920, + + /// + /// local_display_supported_by_level_x_awakened_blasphemy + /// + LocalDisplaySupportedByLevelXAwakenedBlasphemy = 10921, + + /// + /// local_display_supported_by_level_x_awakened_cast_while_channelling + /// + LocalDisplaySupportedByLevelXAwakenedCastWhileChannelling = 10922, + + /// + /// local_display_supported_by_level_x_awakened_controlled_destruction + /// + LocalDisplaySupportedByLevelXAwakenedControlledDestruction = 10923, + + /// + /// local_display_supported_by_level_x_awakened_curse_on_hit + /// + LocalDisplaySupportedByLevelXAwakenedCurseOnHit = 10924, + + /// + /// local_display_supported_by_level_x_awakened_elemental_focus + /// + LocalDisplaySupportedByLevelXAwakenedElementalFocus = 10925, + + /// + /// local_display_supported_by_level_x_awakened_increased_area_of_effect + /// + LocalDisplaySupportedByLevelXAwakenedIncreasedAreaOfEffect = 10926, + + /// + /// local_display_supported_by_level_x_awakened_lightning_penetration + /// + LocalDisplaySupportedByLevelXAwakenedLightningPenetration = 10927, + + /// + /// local_display_supported_by_level_x_awakened_minion_damage + /// + LocalDisplaySupportedByLevelXAwakenedMinionDamage = 10928, + + /// + /// local_display_supported_by_level_x_awakened_spell_cascade + /// + LocalDisplaySupportedByLevelXAwakenedSpellCascade = 10929, + + /// + /// local_display_supported_by_level_x_awakened_spell_echo + /// + LocalDisplaySupportedByLevelXAwakenedSpellEcho = 10930, + + /// + /// local_display_supported_by_level_x_awakened_unbound_ailments + /// + LocalDisplaySupportedByLevelXAwakenedUnboundAilments = 10931, + + /// + /// local_display_supported_by_level_x_awakened_unleash + /// + LocalDisplaySupportedByLevelXAwakenedUnleash = 10932, + + /// + /// monster_additional_shaper_item_drop_chance_% + /// + MonsterAdditionalShaperItemDropChancePct = 10933, + + /// + /// monster_additional_elder_item_drop_chance_% + /// + MonsterAdditionalElderItemDropChancePct = 10934, + + /// + /// skill_used_by_mirage_warrior_damage_+%_final + /// + SkillUsedByMirageWarriorDamagePctFinal = 10935, + + /// + /// base_skill_used_by_mirage_warrior + /// + BaseSkillUsedByMirageWarrior = 10936, + + /// + /// number_of_equipped_shaper_or_elder_items + /// + NumberOfEquippedShaperOrElderItems = 10937, + + /// + /// trap_repeat_count + /// + TrapRepeatCount = 10938, + + /// + /// monster_mortar_additional_speed_+% + /// + MonsterMortarAdditionalSpeedPct = 10939, + + /// + /// arcane_cloak_cooldown_does_not_tick + /// + ArcaneCloakCooldownDoesNotTick = 10940, + + /// + /// global_added_lightning_damage + /// + GlobalAddedLightningDamage = 10941, + + /// + /// arcane_cloak_consume_%_of_mana + /// + ArcaneCloakConsumePctOfMana = 10942, + + /// + /// arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage + /// + ArcaneCloakGainPctOfConsumedManaAsLightningDamage = 10943, + + /// + /// arcane_cloak_damage_absorbed_% + /// + ArcaneCloakDamageAbsorbedPct = 10944, + + /// + /// map_affliction_league + /// + MapAfflictionLeague = 10945, + + /// + /// kinetic_wand_base_number_of_zig_zags + /// + KineticWandBaseNumberOfZigZags = 10946, + + /// + /// rune_paint_movement_speed_+%_final + /// + RunePaintMovementSpeedPctFinal = 10947, + + /// + /// bladefall_blade_left_in_ground_for_every_X_volleys + /// + BladefallBladeLeftInGroundForEveryXVolleys = 10948, + + /// + /// maximum_number_of_blades_left_in_ground + /// + MaximumNumberOfBladesLeftInGround = 10949, + + /// + /// bloodwhirl_cooldown_does_not_tick + /// + BloodwhirlCooldownDoesNotTick = 10950, + + /// + /// combined_attack_elemental_damage_+%_final + /// + CombinedAttackElementalDamagePctFinal = 10951, + + /// + /// chilling_areas_also_grant_lightning_damage_taken_+% + /// + ChillingAreasAlsoGrantLightningDamageTakenPct = 10952, + + /// + /// chance_to_sap_%_vs_enemies_in_chilling_areas + /// + ChanceToSapPctVsEnemiesInChillingAreas = 10953, + + /// + /// is_in_chilling_area + /// + IsInChillingArea = 10954, + + /// + /// rune_paint_max_rune_level + /// + RunePaintMaxRuneLevel = 10955, + + /// + /// rune_paint_damage_+%_final_per_rune_level + /// + RunePaintDamagePctFinalPerRuneLevel = 10956, + + /// + /// rune_paint_mana_spend_per_rune_upgrade + /// + RunePaintManaSpendPerRuneUpgrade = 10957, + + /// + /// spellslinger_trigger_on_wand_attack_% + /// + SpellslingerTriggerOnWandAttackPct = 10958, + + /// + /// gain_%_of_base_wand_damage_as_added_spell_damage + /// + GainPctOfBaseWandDamageAsAddedSpellDamage = 10959, + + /// + /// allow_2_active_banners + /// + Allow2ActiveBanners = 10960, + + /// + /// banner_fortify_duration_+% + /// + BannerFortifyDurationPct = 10961, + + /// + /// banner_adrenaline_duration_+% + /// + BannerAdrenalineDurationPct = 10962, + + /// + /// add_1_stage_to_banners_on_melee_hit_up_to_5_per_second + /// + Add1StageToBannersOnMeleeHitUpTo5PerSecond = 10963, + + /// + /// is_on_ground_arctic_breath + /// + IsOnGroundArcticBreath = 10964, + + /// + /// map_vaal_vessel_item_drop_rarity_+% + /// + MapVaalVesselItemDropRarityPct = 10965, + + /// + /// map_vaal_vessel_item_drop_quantity_+% + /// + MapVaalVesselItemDropQuantityPct = 10966, + + /// + /// map_vaal_vessel_drop_X_sacrifice_fragments + /// + MapVaalVesselDropXSacrificeFragments = 10967, + + /// + /// map_vaal_vessel_drop_X_mortal_fragments + /// + MapVaalVesselDropXMortalFragments = 10968, + + /// + /// map_vaal_vessel_drop_x_double_implicit_corrupted_uniques + /// + MapVaalVesselDropXDoubleImplicitCorruptedUniques = 10969, + + /// + /// map_vaal_vessel_drop_X_fossils + /// + MapVaalVesselDropXFossils = 10970, + + /// + /// map_vaal_vessel_drop_X_prophecies + /// + MapVaalVesselDropXProphecies = 10971, + + /// + /// map_vaal_vessel_drop_X_divination_cards + /// + MapVaalVesselDropXDivinationCards = 10972, + + /// + /// map_vaal_vessel_drop_X_rare_temple_items + /// + MapVaalVesselDropXRareTempleItems = 10973, + + /// + /// map_vaal_vessel_drop_X_vaal_orbs + /// + MapVaalVesselDropXVaalOrbs = 10974, + + /// + /// map_vaal_vessel_drop_X_levelled_vaal_gems + /// + MapVaalVesselDropXLevelledVaalGems = 10975, + + /// + /// scorch_on_critical_strike_with_fire_skills + /// + ScorchOnCriticalStrikeWithFireSkills = 10976, + + /// + /// frostburn_on_critical_strike_with_cold_skills + /// + FrostburnOnCriticalStrikeWithColdSkills = 10977, + + /// + /// sap_on_critical_strike_with_lightning_skills + /// + SapOnCriticalStrikeWithLightningSkills = 10978, + + /// + /// hollow_palm_technique_attack_speed_+%_final_from_keystone + /// + HollowPalmTechniqueAttackSpeedPctFinalFromKeystone = 10979, + + /// + /// hollow_palm_technique_attack_minimum_added_physical_damage + /// + HollowPalmTechniqueAttackMinimumAddedPhysicalDamage = 10980, + + /// + /// hollow_palm_technique_attack_maximum_added_physical_damage + /// + HollowPalmTechniqueAttackMaximumAddedPhysicalDamage = 10981, + + /// + /// unarmed_counts_as_dual_wielding + /// + UnarmedCountsAsDualWielding = 10982, + + /// + /// cannot_use_shield_gloves_or_quiver + /// + CannotUseShieldGlovesOrQuiver = 10983, + + /// + /// cannot_trigger_guard_skills + /// + CannotTriggerGuardSkills = 10984, + + /// + /// physical_damage_reduction_+%_while_affected_by_non_vaal_guard_skill + /// + PhysicalDamageReductionPctWhileAffectedByNonVaalGuardSkill = 10985, + + /// + /// virtual_never_ignite + /// + VirtualNeverIgnite = 10986, + + /// + /// virtual_never_shock + /// + VirtualNeverShock = 10987, + + /// + /// rune_paint_area_of_effect_+%_final_per_rune_level + /// + RunePaintAreaOfEffectPctFinalPerRuneLevel = 10988, + + /// + /// keystone_herald_buff_effect_+%_final_on_you + /// + KeystoneHeraldBuffEffectPctFinalOnYou = 10989, + + /// + /// keystone_herald_hit_damage_+%_final + /// + KeystoneHeraldHitDamagePctFinal = 10990, + + /// + /// skill_is_herald_skill + /// + SkillIsHeraldSkill = 10991, + + /// + /// scorch_on_critical_strike + /// + ScorchOnCriticalStrike = 10992, + + /// + /// frostburn_on_critical_strike + /// + FrostburnOnCriticalStrike = 10993, + + /// + /// sap_on_critical_strike + /// + SapOnCriticalStrike = 10994, + + /// + /// minions_damage_cannot_be_reflected + /// + MinionsDamageCannotBeReflected = 10995, + + /// + /// physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+% + /// + PhysicalReflectDamageTakenAndMinionPhysicalReflectDamageTakenPct = 10996, + + /// + /// elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+% + /// + ElementalReflectDamageTakenAndMinionElementalReflectDamageTakenPct = 10997, + + /// + /// your_auras_are_disabled + /// + YourAurasAreDisabled = 10998, + + /// + /// keystone_barbed_tips + /// + KeystoneBarbedTips = 10999, + + /// + /// can_only_have_one_herald + /// + CanOnlyHaveOneHerald = 11000, + + /// + /// reflect_damage_taken_and_minion_reflect_damage_taken_+% + /// + ReflectDamageTakenAndMinionReflectDamageTakenPct = 11001, + + /// + /// local_jewel_expansion_passive_node_index + /// + LocalJewelExpansionPassiveNodeIndex = 11002, + + /// + /// local_jewel_expansion_passive_node_count + /// + LocalJewelExpansionPassiveNodeCount = 11003, + + /// + /// local_jewel_expansion_jewels_count + /// + LocalJewelExpansionJewelsCount = 11004, + + /// + /// local_jewel_expansion_jewels_count_override + /// + LocalJewelExpansionJewelsCountOverride = 11005, + + /// + /// local_unique_jewel_grants_x_empty_passives + /// + LocalUniqueJewelGrantsXEmptyPassives = 11006, + + /// + /// local_jewel_expansion_keystone_disciple_of_kitava + /// + LocalJewelExpansionKeystoneDiscipleOfKitava = 11007, + + /// + /// local_jewel_expansion_+5%_small_node_effect_count + /// + LocalJewelExpansion5PctSmallNodeEffectCount = 11008, + + /// + /// local_jewel_expansion_+5%_notable_node_effect_count + /// + LocalJewelExpansion5PctNotableNodeEffectCount = 11009, + + /// + /// local_jewel_expansion_notable_node_effect_count + /// + LocalJewelExpansionNotableNodeEffectCount = 11010, + + /// + /// local_jewel_expansion_node_effect_+% + /// + LocalJewelExpansionNodeEffectPct = 11011, + + /// + /// local_jewel_expansion_notable_adds_node_effect_+% + /// + LocalJewelExpansionNotableAddsNodeEffectPct = 11012, + + /// + /// unique_damage_+%_final_from_nova_spell + /// + UniqueDamagePctFinalFromNovaSpell = 11013, + + /// + /// teleport_additional_distance_between_self_and_target + /// + TeleportAdditionalDistanceBetweenSelfAndTarget = 11014, + + /// + /// additional_1_projectile + /// + Additional1Projectile = 11015, + + /// + /// blast_rain_single_additional_projectile + /// + BlastRainSingleAdditionalProjectile = 11016, + + /// + /// grasping_vine_count + /// + GraspingVineCount = 11017, + + /// + /// chance_to_deal_double_damage_%_per_grasping_vine + /// + ChanceToDealDoubleDamagePctPerGraspingVine = 11018, + + /// + /// damage_taken_+%_final_per_grasping_vine + /// + DamageTakenPctFinalPerGraspingVine = 11019, + + /// + /// attack_minimum_added_physical_damage_for_ethereal_blades + /// + AttackMinimumAddedPhysicalDamageForEtherealBlades = 11020, + + /// + /// attack_maximum_added_physical_damage_for_ethereal_blades + /// + AttackMaximumAddedPhysicalDamageForEtherealBlades = 11021, + + /// + /// volatile_dead_max_cores_allowed + /// + VolatileDeadMaxCoresAllowed = 11022, + + /// + /// skill_aura_not_applied_on_caster + /// + SkillAuraNotAppliedOnCaster = 11023, + + /// + /// skill_is_banner_skill + /// + SkillIsBannerSkill = 11024, + + /// + /// critical_strike_chance_+%_per_stackable_unique_jewel + /// + CriticalStrikeChancePctPerStackableUniqueJewel = 11025, + + /// + /// ethereal_knives_blade_left_in_ground_for_every_X_projectiles + /// + EtherealKnivesBladeLeftInGroundForEveryXProjectiles = 11026, + + /// + /// number_of_grasping_vines_to_gain_every_second_while_stationary + /// + NumberOfGraspingVinesToGainEverySecondWhileStationary = 11027, + + /// + /// snipe_max_stacks + /// + SnipeMaxStacks = 11028, + + /// + /// snipe_triggered_skill_damage_+%_final + /// + SnipeTriggeredSkillDamagePctFinal = 11029, + + /// + /// snipe_triggered_skill_hit_damage_+%_final_per_stage + /// + SnipeTriggeredSkillHitDamagePctFinalPerStage = 11030, + + /// + /// skill_triggered_by_snipe + /// + SkillTriggeredBySnipe = 11031, + + /// + /// snipe_triggered_skill_hit_damage_+%_final_per_stage_conditional + /// + SnipeTriggeredSkillHitDamagePctFinalPerStageConditional = 11032, + + /// + /// global_armour_rating_+%_applies_to_critical_multiplier_at_x_ratio + /// + GlobalArmourRatingPctAppliesToCriticalMultiplierAtXRatio = 11033, + + /// + /// global_evasion_rating_+%_applies_to_critical_chance_at_x_ratio + /// + GlobalEvasionRatingPctAppliesToCriticalChanceAtXRatio = 11034, + + /// + /// spell_dodge_%_while_channelling + /// + SpellDodgePctWhileChannelling = 11035, + + /// + /// local_display_grant_level_x_snipe_skill + /// + LocalDisplayGrantLevelXSnipeSkill = 11036, + + /// + /// affliction_boss_death_zone_movement_speed_+%_final + /// + AfflictionBossDeathZoneMovementSpeedPctFinal = 11037, + + /// + /// local_jewel_+%_effect_per_passive_between_jewel_and_class_start + /// + LocalJewelPctEffectPerPassiveBetweenJewelAndClassStart = 11038, + + /// + /// local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start + /// + LocalJewelDisplayNumberOfAllocatedPassivesBetweenJewelAndClassStart = 11039, + + /// + /// affliction_monster_debuff_life_recovery_rate_+%_on_hit + /// + AfflictionMonsterDebuffLifeRecoveryRatePctOnHit = 11040, + + /// + /// affliction_monster_debuff_energy_shield_recovery_rate_+%_on_hit + /// + AfflictionMonsterDebuffEnergyShieldRecoveryRatePctOnHit = 11041, + + /// + /// affliction_monster_debuff_action_speed_+%_on_hit + /// + AfflictionMonsterDebuffActionSpeedPctOnHit = 11042, + + /// + /// affliction_monster_debuff_damage_taken_+%_on_hit + /// + AfflictionMonsterDebuffDamageTakenPctOnHit = 11043, + + /// + /// affliction_monster_debuff_flask_effect_+%_on_hit + /// + AfflictionMonsterDebuffFlaskEffectPctOnHit = 11044, + + /// + /// affliction_monster_debuff_flask_charges_gained_+%_on_hit + /// + AfflictionMonsterDebuffFlaskChargesGainedPctOnHit = 11045, + + /// + /// cannot_gain_affliction_recovery_rate_debuff_when_hit + /// + CannotGainAfflictionRecoveryRateDebuffWhenHit = 11046, + + /// + /// cannot_gain_affliction_action_speed_debuff_when_hit + /// + CannotGainAfflictionActionSpeedDebuffWhenHit = 11047, + + /// + /// cannot_gain_affliction_damage_taken_debuff_when_hit + /// + CannotGainAfflictionDamageTakenDebuffWhenHit = 11048, + + /// + /// cannot_gain_affliction_flask_debuff_when_hit + /// + CannotGainAfflictionFlaskDebuffWhenHit = 11049, + + /// + /// is_in_affliction_fog + /// + IsInAfflictionFog = 11050, + + /// + /// monster_is_in_affliction_fog + /// + MonsterIsInAfflictionFog = 11051, + + /// + /// purity_of_fire_aura_effect_+% + /// + PurityOfFireAuraEffectPct = 11052, + + /// + /// purity_of_ice_aura_effect_+% + /// + PurityOfIceAuraEffectPct = 11053, + + /// + /// purity_of_lightning_aura_effect_+% + /// + PurityOfLightningAuraEffectPct = 11054, + + /// + /// purity_of_elements_aura_effect_+% + /// + PurityOfElementsAuraEffectPct = 11055, + + /// + /// enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage + /// + EnemiesExplodeOnDeathByAttackFor10PctLifeAsPhysicalDamage = 11056, + + /// + /// warcries_have_minimum_10_power + /// + WarcriesHaveMinimum10Power = 11057, + + /// + /// enemies_taunted_by_your_warcries_are_unnerved + /// + EnemiesTauntedByYourWarcriesAreUnnerved = 11058, + + /// + /// enemies_taunted_by_your_warcies_are_intimidated + /// + EnemiesTauntedByYourWarciesAreIntimidated = 11059, + + /// + /// melee_critical_strike_chance_+%_if_warcried_recently + /// + MeleeCriticalStrikeChancePctIfWarcriedRecently = 11060, + + /// + /// melee_critical_strike_multiplier_+%_if_warcried_recently + /// + MeleeCriticalStrikeMultiplierPctIfWarcriedRecently = 11061, + + /// + /// additional_physical_damage_reduction_if_warcried_in_past_8_seconds + /// + AdditionalPhysicalDamageReductionIfWarcriedInPast8Seconds = 11062, + + /// + /// warcry_skill_area_of_effect_+% + /// + WarcrySkillAreaOfEffectPct = 11063, + + /// + /// taunt_also_applies_unnerve + /// + TauntAlsoAppliesUnnerve = 11064, + + /// + /// taunt_also_applies_intimidate + /// + TauntAlsoAppliesIntimidate = 11065, + + /// + /// skill_is_rain_skill + /// + SkillIsRainSkill = 11066, + + /// + /// cold_damage_+%_per_25_strength + /// + ColdDamagePctPer25Strength = 11067, + + /// + /// cold_damage_+%_per_25_dexterity + /// + ColdDamagePctPer25Dexterity = 11068, + + /// + /// cold_damage_+%_per_25_intelligence + /// + ColdDamagePctPer25Intelligence = 11069, + + /// + /// chaos_damage_+%_per_100_max_mana_up_to_80 + /// + ChaosDamagePctPer100MaxManaUpTo80 = 11070, + + /// + /// minion_summoned_recently_movement_speed_+% + /// + MinionSummonedRecentlyMovementSpeedPct = 11071, + + /// + /// minion_summoned_recently_attack_and_cast_speed_+% + /// + MinionSummonedRecentlyAttackAndCastSpeedPct = 11072, + + /// + /// minion_summoned_recently_cannot_be_damaged + /// + MinionSummonedRecentlyCannotBeDamaged = 11073, + + /// + /// attack_damage_+%_vs_maimed_enemies + /// + AttackDamagePctVsMaimedEnemies = 11074, + + /// + /// critical_strike_chance_+%_vs_taunted_enemies + /// + CriticalStrikeChancePctVsTauntedEnemies = 11075, + + /// + /// critical_strike_multiplier_+_vs_taunted_enemies + /// + CriticalStrikeMultiplierVsTauntedEnemies = 11076, + + /// + /// remove_bleed_on_life_flask_use + /// + RemoveBleedOnLifeFlaskUse = 11077, + + /// + /// movement_speed_+%_while_not_using_flask + /// + MovementSpeedPctWhileNotUsingFlask = 11078, + + /// + /// life_flask_charges_recovered_per_3_seconds + /// + LifeFlaskChargesRecoveredPer3Seconds = 11079, + + /// + /// additional_physical_damage_reduction_%_during_life_or_mana_flask_effect + /// + AdditionalPhysicalDamageReductionPctDuringLifeOrManaFlaskEffect = 11080, + + /// + /// attack_ailment_damage_+% + /// + AttackAilmentDamagePct = 11081, + + /// + /// impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding + /// + ImpaleDebuffEffectPctFromHitsThatAlsoInflictBleeding = 11082, + + /// + /// aoe_+%_per_second_while_stationary_up_to_50 + /// + AoePctPerSecondWhileStationaryUpTo50 = 11083, + + /// + /// critical_strike_%_chance_to_deal_double_damage + /// + CriticalStrikePctChanceToDealDoubleDamage = 11084, + + /// + /// chill_effect_+%_with_critical_strikes + /// + ChillEffectPctWithCriticalStrikes = 11085, + + /// + /// shock_effect_+%_with_critical_strikes + /// + ShockEffectPctWithCriticalStrikes = 11086, + + /// + /// minion_physical_damage_%_to_add_as_fire + /// + MinionPhysicalDamagePctToAddAsFire = 11087, + + /// + /// chance_to_deal_double_damage_while_on_full_life_% + /// + ChanceToDealDoubleDamageWhileOnFullLifePct = 11088, + + /// + /// minion_chance_to_deal_double_damage_while_on_full_life_% + /// + MinionChanceToDealDoubleDamageWhileOnFullLifePct = 11089, + + /// + /// minion_chance_to_ignite_% + /// + MinionChanceToIgnitePct = 11090, + + /// + /// minion_damage_against_ignited_enemies_+% + /// + MinionDamageAgainstIgnitedEnemiesPct = 11091, + + /// + /// minion_chance_to_impale_on_attack_hit_% + /// + MinionChanceToImpaleOnAttackHitPct = 11092, + + /// + /// summoned_skeleton_%_physical_to_chaos + /// + SummonedSkeletonPctPhysicalToChaos = 11093, + + /// + /// summoned_skeleton_%_chance_to_wither_for_2_seconds + /// + SummonedSkeletonPctChanceToWitherFor2Seconds = 11094, + + /// + /// raised_zombie_%_chance_to_taunt + /// + RaisedZombiePctChanceToTaunt = 11095, + + /// + /// using_life_flask + /// + UsingLifeFlask = 11096, + + /// + /// totem_placement_range_+% + /// + TotemPlacementRangePct = 11097, + + /// + /// totem_chaos_immunity + /// + TotemChaosImmunity = 11098, + + /// + /// totem_spells_damage_+% + /// + TotemSpellsDamagePct = 11099, + + /// + /// damage_+%_while_affected_by_a_herald + /// + DamagePctWhileAffectedByAHerald = 11100, + + /// + /// elemental_damage_+%_while_affected_by_a_herald + /// + ElementalDamagePctWhileAffectedByAHerald = 11101, + + /// + /// damage_over_time_+%_while_affected_by_a_herald + /// + DamageOverTimePctWhileAffectedByAHerald = 11102, + + /// + /// minion_damage_+%_while_affected_by_a_herald + /// + MinionDamagePctWhileAffectedByAHerald = 11103, + + /// + /// damage_+%_for_each_herald_affecting_you + /// + DamagePctForEachHeraldAffectingYou = 11104, + + /// + /// chance_to_freeze_shock_ignite_%_while_affected_by_a_herald + /// + ChanceToFreezeShockIgnitePctWhileAffectedByAHerald = 11105, + + /// + /// minion_movement_velocity_+%_for_each_herald_affecting_you + /// + MinionMovementVelocityPctForEachHeraldAffectingYou = 11106, + + /// + /// additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity + /// + AdditionalPhysicalDamageReductionPctPerSummonedSentinelOfPurity = 11107, + + /// + /// dot_multiplier_+_with_bow_skills + /// + DotMultiplierWithBowSkills = 11108, + + /// + /// skill_effect_duration_+%_with_bow_skills + /// + SkillEffectDurationPctWithBowSkills = 11109, + + /// + /// status_ailments_you_inflict_duration_+%_with_bows + /// + StatusAilmentsYouInflictDurationPctWithBows = 11110, + + /// + /// area_of_effect_+%_with_bow_skills + /// + AreaOfEffectPctWithBowSkills = 11111, + + /// + /// wand_physical_damage_%_to_add_as_chaos + /// + WandPhysicalDamagePctToAddAsChaos = 11112, + + /// + /// wand_physical_damage_%_to_convert_to_lightning + /// + WandPhysicalDamagePctToConvertToLightning = 11113, + + /// + /// two_handed_melee_area_of_effect_+% + /// + TwoHandedMeleeAreaOfEffectPct = 11114, + + /// + /// two_handed_melee_area_damage_+% + /// + TwoHandedMeleeAreaDamagePct = 11115, + + /// + /// have_used_a_travel_skill_recently + /// + HaveUsedATravelSkillRecently = 11116, + + /// + /// track_have_used_a_travel_skill_recently + /// + TrackHaveUsedATravelSkillRecently = 11117, + + /// + /// have_cast_a_spell_recently + /// + HaveCastASpellRecently = 11118, + + /// + /// track_have_cast_a_spell_recently + /// + TrackHaveCastASpellRecently = 11119, + + /// + /// have_cursed_an_enemy_recently + /// + HaveCursedAnEnemyRecently = 11120, + + /// + /// track_have_cursed_an_enemy_recently + /// + TrackHaveCursedAnEnemyRecently = 11121, + + /// + /// have_chilled_an_enemy_recently + /// + HaveChilledAnEnemyRecently = 11122, + + /// + /// track_have_chilled_an_enemy_recently + /// + TrackHaveChilledAnEnemyRecently = 11123, + + /// + /// have_stunned_an_enemy_with_a_two_handed_melee_weapon_recently + /// + HaveStunnedAnEnemyWithATwoHandedMeleeWeaponRecently = 11124, + + /// + /// have_crit_with_a_two_handed_melee_weapon_recently + /// + HaveCritWithATwoHandedMeleeWeaponRecently = 11125, + + /// + /// track_have_crit_with_a_two_handed_melee_weapon_recently + /// + TrackHaveCritWithATwoHandedMeleeWeaponRecently = 11126, + + /// + /// have_used_a_brand_skill_recently + /// + HaveUsedABrandSkillRecently = 11127, + + /// + /// track_have_used_a_brand_skill_recently + /// + TrackHaveUsedABrandSkillRecently = 11128, + + /// + /// have_hit_with_main_hand_weapon_recently + /// + HaveHitWithMainHandWeaponRecently = 11129, + + /// + /// track_have_hit_with_main_hand_weapon_recently + /// + TrackHaveHitWithMainHandWeaponRecently = 11130, + + /// + /// have_hit_with_off_hand_weapon_recently + /// + HaveHitWithOffHandWeaponRecently = 11131, + + /// + /// track_have_hit_with_off_hand_weapon_recently + /// + TrackHaveHitWithOffHandWeaponRecently = 11132, + + /// + /// have_ignited_an_enemy_recently + /// + HaveIgnitedAnEnemyRecently = 11133, + + /// + /// track_have_ignited_an_enemy_recently + /// + TrackHaveIgnitedAnEnemyRecently = 11134, + + /// + /// critical_strike_chance_+%_if_havent_blocked_recently + /// + CriticalStrikeChancePctIfHaventBlockedRecently = 11135, + + /// + /// critical_strike_multiplier_+_if_taken_a_savage_hit_recently + /// + CriticalStrikeMultiplierIfTakenASavageHitRecently = 11136, + + /// + /// movement_speed_+%_if_crit_recently + /// + MovementSpeedPctIfCritRecently = 11137, + + /// + /// area_of_effect_+%_if_killed_at_least_5_enemies_recently + /// + AreaOfEffectPctIfKilledAtLeast5EnemiesRecently = 11138, + + /// + /// chance_to_dodge_attacks_and_spells_%_if_enemy_hit_recently + /// + ChanceToDodgeAttacksAndSpellsPctIfEnemyHitRecently = 11139, + + /// + /// damage_+%_if_used_travel_skill_recently + /// + DamagePctIfUsedTravelSkillRecently = 11140, + + /// + /// chance_to_block_spells_%_if_cast_a_spell_recently + /// + ChanceToBlockSpellsPctIfCastASpellRecently = 11141, + + /// + /// energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently + /// + EnergyShieldRegenerationPctPerMinuteIfEnemyCursedRecently = 11142, + + /// + /// elemental_damage_+%_if_enemy_chilled_recently + /// + ElementalDamagePctIfEnemyChilledRecently = 11143, + + /// + /// elemental_damage_+%_if_enemy_shocked_recently + /// + ElementalDamagePctIfEnemyShockedRecently = 11144, + + /// + /// elemental_damage_+%_if_enemy_ignited_recently + /// + ElementalDamagePctIfEnemyIgnitedRecently = 11145, + + /// + /// energy_shield_regeneration_%_per_minute_if_enemy_killed_recently + /// + EnergyShieldRegenerationPctPerMinuteIfEnemyKilledRecently = 11146, + + /// + /// wand_damage_+%_if_crit_recently + /// + WandDamagePctIfCritRecently = 11147, + + /// + /// area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently + /// + AreaOfEffectPctIfEnemyStunnedWithTwoHandedMeleeWeaponRecently = 11148, + + /// + /// chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently + /// + ChanceToDealDoubleDamagePctIfCritWithTwoHandedMeleeWeaponRecently = 11149, + + /// + /// sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently + /// + SigilRepeatFrequencyPctIfHaventUsedABrandSkillRecently = 11150, + + /// + /// chance_to_evade_attacks_%_if_havent_been_hit_recently + /// + ChanceToEvadeAttacksPctIfHaventBeenHitRecently = 11151, + + /// + /// life_regeneration_%_per_minute_if_player_minion_died_recently + /// + LifeRegenerationPctPerMinuteIfPlayerMinionDiedRecently = 11152, + + /// + /// attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently + /// + AttackSpeedPctIfEnemyHitWithMainHandWeaponRecently = 11153, + + /// + /// movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently + /// + MovementSpeedPctIfEnemyHitWithOffHandWeaponRecently = 11154, + + /// + /// have_summoned_totem_in_past_2_seconds + /// + HaveSummonedTotemInPast2Seconds = 11155, + + /// + /// track_have_summoned_totem_in_past_2_seconds + /// + TrackHaveSummonedTotemInPast2Seconds = 11156, + + /// + /// totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds + /// + TotemDamagePctIfHaventSummonedTotemInPast2Seconds = 11157, + + /// + /// gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff + /// + GainFortifyForXSecondsOnMeleeHitWithMaceSceptreStaff = 11158, + + /// + /// damage_+%_with_maces_sceptres_staves + /// + DamagePctWithMacesSceptresStaves = 11159, + + /// + /// double_damage_%_chance_while_wielding_mace_sceptre_staff + /// + DoubleDamagePctChanceWhileWieldingMaceSceptreStaff = 11160, + + /// + /// movement_speed_+%_while_holding_shield + /// + MovementSpeedPctWhileHoldingShield = 11161, + + /// + /// physical_damage_+%_with_axes_swords + /// + PhysicalDamagePctWithAxesSwords = 11162, + + /// + /// impale_on_hit_%_chance_with_axes_swords + /// + ImpaleOnHitPctChanceWithAxesSwords = 11163, + + /// + /// attack_skill_ailment_damage_+%_while_wielding_axes_swords + /// + AttackSkillAilmentDamagePctWhileWieldingAxesSwords = 11164, + + /// + /// power_charge_on_non_critical_strike_%_chance_with_claws_daggers + /// + PowerChargeOnNonCriticalStrikePctChanceWithClawsDaggers = 11165, + + /// + /// critical_strike_multiplier_+%_with_claws_daggers + /// + CriticalStrikeMultiplierPctWithClawsDaggers = 11166, + + /// + /// attack_skill_additional_num_projectiles_while_wielding_claws_daggers + /// + AttackSkillAdditionalNumProjectilesWhileWieldingClawsDaggers = 11167, + + /// + /// posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers + /// + PosionDamageOverTimeMultiplierPctWhileWieldingClawsDaggers = 11168, + + /// + /// fire_damage_over_time_multiplier_+%_while_burning + /// + FireDamageOverTimeMultiplierPctWhileBurning = 11169, + + /// + /// life_regeneration_per_minute_%_while_burning + /// + LifeRegenerationPerMinutePctWhileBurning = 11170, + + /// + /// spell_block_%_while_at_max_power_charges + /// + SpellBlockPctWhileAtMaxPowerCharges = 11171, + + /// + /// attack_block_%_while_at_max_endurance_charges + /// + AttackBlockPctWhileAtMaxEnduranceCharges = 11172, + + /// + /// attack_speed_+%_if_you_have_at_least_600_strength + /// + AttackSpeedPctIfYouHaveAtLeast600Strength = 11173, + + /// + /// es_regeneration_per_minute_%_while_stationary + /// + EsRegenerationPerMinutePctWhileStationary = 11174, + + /// + /// spell_and_attack_dodge_%_while_moving + /// + SpellAndAttackDodgePctWhileMoving = 11175, + + /// + /// self_critical_strike_multiplier_+%_while_ignited + /// + SelfCriticalStrikeMultiplierPctWhileIgnited = 11176, + + /// + /// enemies_poisoned_by_you_cannot_regen_life + /// + EnemiesPoisonedByYouCannotRegenLife = 11177, + + /// + /// enemies_chilled_by_your_hits_are_shocked + /// + EnemiesChilledByYourHitsAreShocked = 11178, + + /// + /// enemies_shocked_by_your_hits_are_chilled + /// + EnemiesShockedByYourHitsAreChilled = 11179, + + /// + /// attack_dodge_%_from_cursed_enemies + /// + AttackDodgePctFromCursedEnemies = 11180, + + /// + /// left_ring_socketed_curse_replaces_skitterbots_chilling_aura + /// + LeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11181, + + /// + /// right_ring_socketed_curse_replaces_skitterbots_shocking_aura + /// + RightRingSocketedCurseReplacesSkitterbotsShockingAura = 11182, + + /// + /// local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura + /// + LocalLeftRingSocketedCurseReplacesSkitterbotsChillingAura = 11183, + + /// + /// local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura + /// + LocalRightRingSocketedCurseReplacesSkitterbotsShockingAura = 11184, + + /// + /// hit_and_ailment_damage_+%_vs_cursed_enemies + /// + HitAndAilmentDamagePctVsCursedEnemies = 11185, + + /// + /// culling_strike_vs_cursed_enemies + /// + CullingStrikeVsCursedEnemies = 11186, + + /// + /// hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments + /// + HitAndAilmentDamagePctVsEnemiesAffectedByAilments = 11187, + + /// + /// bleeding_dot_multiplier_+_vs_poisoned_enemies + /// + BleedingDotMultiplierVsPoisonedEnemies = 11188, + + /// + /// poison_dot_multiplier_+_vs_bleeding_enemies + /// + PoisonDotMultiplierVsBleedingEnemies = 11189, + + /// + /// critical_strikes_always_knockback_shocked_enemies + /// + CriticalStrikesAlwaysKnockbackShockedEnemies = 11190, + + /// + /// cold_hit_damage_+%_vs_shocked_enemies + /// + ColdHitDamagePctVsShockedEnemies = 11191, + + /// + /// lightning_hit_damage_+%_vs_chilled_enemies + /// + LightningHitDamagePctVsChilledEnemies = 11192, + + /// + /// hit_and_ailment_damage_+%_vs_unique_enemies + /// + HitAndAilmentDamagePctVsUniqueEnemies = 11193, + + /// + /// lightning_damage_%_to_add_as_cold_vs_chilled_enemies + /// + LightningDamagePctToAddAsColdVsChilledEnemies = 11194, + + /// + /// arrow_damage_+%_max_as_distance_travelled_increases + /// + ArrowDamagePctMaxAsDistanceTravelledIncreases = 11195, + + /// + /// arrow_critical_strike_chance_+%_max_as_distance_travelled_increases + /// + ArrowCriticalStrikeChancePctMaxAsDistanceTravelledIncreases = 11196, + + /// + /// projectile_damage_+%_vs_nearby_enemies + /// + ProjectileDamagePctVsNearbyEnemies = 11197, + + /// + /// teleport_marker_art_variation + /// + TeleportMarkerArtVariation = 11198, + + /// + /// bleeding_damage_+%_vs_maimed_enemies + /// + BleedingDamagePctVsMaimedEnemies = 11199, + + /// + /// physical_dot_multiplier_+_while_wielding_axes_swords + /// + PhysicalDotMultiplierWhileWieldingAxesSwords = 11200, + + /// + /// local_affliction_notable_prodigious_defense + /// + LocalAfflictionNotableProdigiousDefense = 11201, + + /// + /// local_affliction_notable_advance_guard + /// + LocalAfflictionNotableAdvanceGuard = 11202, + + /// + /// local_affliction_notable_gladiatorial_combat + /// + LocalAfflictionNotableGladiatorialCombat = 11203, + + /// + /// local_affliction_notable_strike_leader + /// + LocalAfflictionNotableStrikeLeader = 11204, + + /// + /// local_affliction_notable_powerful_ward + /// + LocalAfflictionNotablePowerfulWard = 11205, + + /// + /// local_affliction_notable_enduring_ward + /// + LocalAfflictionNotableEnduringWard = 11206, + + /// + /// local_affliction_notable_gladiators_fortitude + /// + LocalAfflictionNotableGladiatorsFortitude = 11207, + + /// + /// local_affliction_notable_precise_retaliation + /// + LocalAfflictionNotablePreciseRetaliation = 11208, + + /// + /// local_affliction_notable_veteran_defender + /// + LocalAfflictionNotableVeteranDefender = 11209, + + /// + /// local_affliction_notable_iron_breaker + /// + LocalAfflictionNotableIronBreaker = 11210, + + /// + /// local_affliction_notable_deep_cuts + /// + LocalAfflictionNotableDeepCuts = 11211, + + /// + /// local_affliction_notable_master_the_fundamentals + /// + LocalAfflictionNotableMasterTheFundamentals = 11212, + + /// + /// local_affliction_notable_force_multiplier + /// + LocalAfflictionNotableForceMultiplier = 11213, + + /// + /// local_affliction_notable_furious_assault + /// + LocalAfflictionNotableFuriousAssault = 11214, + + /// + /// local_affliction_notable_vicious_skewering + /// + LocalAfflictionNotableViciousSkewering = 11215, + + /// + /// local_affliction_notable_grim_oath + /// + LocalAfflictionNotableGrimOath = 11216, + + /// + /// local_affliction_notable_battle_hardened + /// + LocalAfflictionNotableBattleHardened = 11217, + + /// + /// local_affliction_notable_replenishing_presence + /// + LocalAfflictionNotableReplenishingPresence = 11218, + + /// + /// local_affliction_notable_master_of_command + /// + LocalAfflictionNotableMasterOfCommand = 11219, + + /// + /// local_affliction_notable_first_among_equals + /// + LocalAfflictionNotableFirstAmongEquals = 11220, + + /// + /// local_affliction_notable_purposeful_harbinger + /// + LocalAfflictionNotablePurposefulHarbinger = 11221, + + /// + /// local_affliction_notable_precise_commander + /// + LocalAfflictionNotablePreciseCommander = 11222, + + /// + /// local_affliction_notable_pure_commander + /// + LocalAfflictionNotablePureCommander = 11223, + + /// + /// local_affliction_notable_stalwart_commander + /// + LocalAfflictionNotableStalwartCommander = 11224, + + /// + /// local_affliction_notable_vengeful_commander + /// + LocalAfflictionNotableVengefulCommander = 11225, + + /// + /// local_affliction_notable_skullbreaker + /// + LocalAfflictionNotableSkullbreaker = 11226, + + /// + /// local_affliction_notable_pressure_points + /// + LocalAfflictionNotablePressurePoints = 11227, + + /// + /// local_affliction_notable_overwhelming_malice + /// + LocalAfflictionNotableOverwhelmingMalice = 11228, + + /// + /// local_affliction_notable_magnifier + /// + LocalAfflictionNotableMagnifier = 11229, + + /// + /// local_affliction_notable_savage_response + /// + LocalAfflictionNotableSavageResponse = 11230, + + /// + /// local_affliction_notable_eye_of_the_storm + /// + LocalAfflictionNotableEyeOfTheStorm = 11231, + + /// + /// local_affliction_notable_basics_of_pain + /// + LocalAfflictionNotableBasicsOfPain = 11232, + + /// + /// local_affliction_notable_quick_getaway + /// + LocalAfflictionNotableQuickGetaway = 11233, + + /// + /// local_affliction_notable_assert_dominance + /// + LocalAfflictionNotableAssertDominance = 11234, + + /// + /// local_affliction_notable_vast_power + /// + LocalAfflictionNotableVastPower = 11235, + + /// + /// local_affliction_notable_powerful_assault + /// + LocalAfflictionNotablePowerfulAssault = 11236, + + /// + /// local_affliction_notable_intensity + /// + LocalAfflictionNotableIntensity = 11237, + + /// + /// local_affliction_notable_titanic_swings + /// + LocalAfflictionNotableTitanicSwings = 11238, + + /// + /// local_affliction_notable_towering_threat + /// + LocalAfflictionNotableToweringThreat = 11239, + + /// + /// local_affliction_notable_ancestral_echo + /// + LocalAfflictionNotableAncestralEcho = 11240, + + /// + /// local_affliction_notable_ancestral_reach + /// + LocalAfflictionNotableAncestralReach = 11241, + + /// + /// local_affliction_notable_ancestral_might + /// + LocalAfflictionNotableAncestralMight = 11242, + + /// + /// local_affliction_notable_ancestral_preservation + /// + LocalAfflictionNotableAncestralPreservation = 11243, + + /// + /// local_affliction_notable_snaring_spirits + /// + LocalAfflictionNotableSnaringSpirits = 11244, + + /// + /// local_affliction_notable_sleepless_sentries + /// + LocalAfflictionNotableSleeplessSentries = 11245, + + /// + /// local_affliction_notable_ancestral_guidance + /// + LocalAfflictionNotableAncestralGuidance = 11246, + + /// + /// local_affliction_notable_ancestral_inspiration + /// + LocalAfflictionNotableAncestralInspiration = 11247, + + /// + /// local_affliction_notable_vital_focus + /// + LocalAfflictionNotableVitalFocus = 11248, + + /// + /// local_affliction_notable_rapid_infusion + /// + LocalAfflictionNotableRapidInfusion = 11249, + + /// + /// local_affliction_notable_unwavering_focus + /// + LocalAfflictionNotableUnwaveringFocus = 11250, + + /// + /// local_affliction_notable_enduring_focus + /// + LocalAfflictionNotableEnduringFocus = 11251, + + /// + /// local_affliction_notable_precise_focus + /// + LocalAfflictionNotablePreciseFocus = 11252, + + /// + /// local_affliction_notable_stoic_focus + /// + LocalAfflictionNotableStoicFocus = 11253, + + /// + /// local_affliction_notable_hex_breaker + /// + LocalAfflictionNotableHexBreaker = 11254, + + /// + /// local_affliction_notable_arcane_focus + /// + LocalAfflictionNotableArcaneFocus = 11255, + + /// + /// local_affliction_notable_distilled_perfection + /// + LocalAfflictionNotableDistilledPerfection = 11256, + + /// + /// local_affliction_notable_spiked_concoction + /// + LocalAfflictionNotableSpikedConcoction = 11257, + + /// + /// local_affliction_notable_fasting + /// + LocalAfflictionNotableFasting = 11258, + + /// + /// local_affliction_notable_menders_wellspring + /// + LocalAfflictionNotableMendersWellspring = 11259, + + /// + /// local_affliction_notable_special_reserve + /// + LocalAfflictionNotableSpecialReserve = 11260, + + /// + /// local_affliction_notable_numbing_elixir + /// + LocalAfflictionNotableNumbingElixir = 11261, + + /// + /// local_affliction_notable_mob_mentality + /// + LocalAfflictionNotableMobMentality = 11262, + + /// + /// local_affliction_notable_cry_wolf + /// + LocalAfflictionNotableCryWolf = 11263, + + /// + /// local_affliction_notable_haunting_shout + /// + LocalAfflictionNotableHauntingShout = 11264, + + /// + /// local_affliction_notable_lead_by_example + /// + LocalAfflictionNotableLeadByExample = 11265, + + /// + /// local_affliction_notable_provocateur + /// + LocalAfflictionNotableProvocateur = 11266, + + /// + /// local_affliction_notable_warning_call + /// + LocalAfflictionNotableWarningCall = 11267, + + /// + /// local_affliction_notable_rattling_bellow + /// + LocalAfflictionNotableRattlingBellow = 11268, + + /// + /// local_affliction_notable_bloodscent + /// + LocalAfflictionNotableBloodscent = 11269, + + /// + /// local_affliction_notable_run_through + /// + LocalAfflictionNotableRunThrough = 11270, + + /// + /// local_affliction_notable_wound_aggravation + /// + LocalAfflictionNotableWoundAggravation = 11271, + + /// + /// local_affliction_notable_overlord + /// + LocalAfflictionNotableOverlord = 11272, + + /// + /// local_affliction_notable_expansive_might + /// + LocalAfflictionNotableExpansiveMight = 11273, + + /// + /// local_affliction_notable_weight_advantage + /// + LocalAfflictionNotableWeightAdvantage = 11274, + + /// + /// local_affliction_notable_wind_up + /// + LocalAfflictionNotableWindUp = 11275, + + /// + /// local_affliction_notable_fan_of_blades + /// + LocalAfflictionNotableFanOfBlades = 11276, + + /// + /// local_affliction_notable_disease_vector + /// + LocalAfflictionNotableDiseaseVector = 11277, + + /// + /// local_affliction_notable_arcing_shot + /// + LocalAfflictionNotableArcingShot = 11278, + + /// + /// local_affliction_notable_tempered_arrowheads + /// + LocalAfflictionNotableTemperedArrowheads = 11279, + + /// + /// local_affliction_notable_broadside + /// + LocalAfflictionNotableBroadside = 11280, + + /// + /// local_affliction_notable_explosive_force + /// + LocalAfflictionNotableExplosiveForce = 11281, + + /// + /// local_affliction_notable_opportunistic_fusilade + /// + LocalAfflictionNotableOpportunisticFusilade = 11282, + + /// + /// local_affliction_notable_storms_hand + /// + LocalAfflictionNotableStormsHand = 11283, + + /// + /// local_affliction_notable_battlefield_dominator + /// + LocalAfflictionNotableBattlefieldDominator = 11284, + + /// + /// local_affliction_notable_martial_mastery + /// + LocalAfflictionNotableMartialMastery = 11285, + + /// + /// local_affliction_notable_surefooted_striker + /// + LocalAfflictionNotableSurefootedStriker = 11286, + + /// + /// local_affliction_notable_graceful_execution + /// + LocalAfflictionNotableGracefulExecution = 11287, + + /// + /// local_affliction_notable_brutal_infamy + /// + LocalAfflictionNotableBrutalInfamy = 11288, + + /// + /// local_affliction_notable_fearsome_warrior + /// + LocalAfflictionNotableFearsomeWarrior = 11289, + + /// + /// local_affliction_notable_combat_rhythm + /// + LocalAfflictionNotableCombatRhythm = 11290, + + /// + /// local_affliction_notable_hit_and_run + /// + LocalAfflictionNotableHitAndRun = 11291, + + /// + /// local_affliction_notable_insatiable_killer + /// + LocalAfflictionNotableInsatiableKiller = 11292, + + /// + /// local_affliction_notable_mage_bane + /// + LocalAfflictionNotableMageBane = 11293, + + /// + /// local_affliction_notable_martial_momentum + /// + LocalAfflictionNotableMartialMomentum = 11294, + + /// + /// local_affliction_notable_deadly_repartee + /// + LocalAfflictionNotableDeadlyRepartee = 11295, + + /// + /// local_affliction_notable_quick_and_deadly + /// + LocalAfflictionNotableQuickAndDeadly = 11296, + + /// + /// local_affliction_notable_smite_the_weak + /// + LocalAfflictionNotableSmiteTheWeak = 11297, + + /// + /// local_affliction_notable_heavy_hitter + /// + LocalAfflictionNotableHeavyHitter = 11298, + + /// + /// local_affliction_notable_martial_prowess + /// + LocalAfflictionNotableMartialProwess = 11299, + + /// + /// local_affliction_notable_calamitous + /// + LocalAfflictionNotableCalamitous = 11300, + + /// + /// local_affliction_notable_devastator + /// + LocalAfflictionNotableDevastator = 11301, + + /// + /// local_affliction_notable_fuel_the_fight + /// + LocalAfflictionNotableFuelTheFight = 11302, + + /// + /// local_affliction_notable_drive_the_destruction + /// + LocalAfflictionNotableDriveTheDestruction = 11303, + + /// + /// local_affliction_notable_feed_the_fury + /// + LocalAfflictionNotableFeedTheFury = 11304, + + /// + /// local_affliction_notable_seal_mender + /// + LocalAfflictionNotableSealMender = 11305, + + /// + /// local_affliction_notable_conjured_wall + /// + LocalAfflictionNotableConjuredWall = 11306, + + /// + /// local_affliction_notable_arcane_heroism + /// + LocalAfflictionNotableArcaneHeroism = 11307, + + /// + /// local_affliction_notable_practiced_caster + /// + LocalAfflictionNotablePracticedCaster = 11308, + + /// + /// local_affliction_notable_burden_projection + /// + LocalAfflictionNotableBurdenProjection = 11309, + + /// + /// local_affliction_notable_thaumophage + /// + LocalAfflictionNotableThaumophage = 11310, + + /// + /// local_affliction_notable_essence_rush + /// + LocalAfflictionNotableEssenceRush = 11311, + + /// + /// local_affliction_notable_sap_psyche + /// + LocalAfflictionNotableSapPsyche = 11312, + + /// + /// local_affliction_notable_sadist + /// + LocalAfflictionNotableSadist = 11313, + + /// + /// local_affliction_notable_corrosive_elements + /// + LocalAfflictionNotableCorrosiveElements = 11314, + + /// + /// local_affliction_notable_doryanis_lesson + /// + LocalAfflictionNotableDoryanisLesson = 11315, + + /// + /// local_affliction_notable_disorienting_display + /// + LocalAfflictionNotableDisorientingDisplay = 11316, + + /// + /// local_affliction_notable_prismatic_heart + /// + LocalAfflictionNotablePrismaticHeart = 11317, + + /// + /// local_affliction_notable_widespread_destruction + /// + LocalAfflictionNotableWidespreadDestruction = 11318, + + /// + /// local_affliction_notable_master_of_fire + /// + LocalAfflictionNotableMasterOfFire = 11319, + + /// + /// local_affliction_notable_smoking_remains + /// + LocalAfflictionNotableSmokingRemains = 11320, + + /// + /// local_affliction_notable_cremator + /// + LocalAfflictionNotableCremator = 11321, + + /// + /// local_affliction_notable_snowstorm + /// + LocalAfflictionNotableSnowstorm = 11322, + + /// + /// local_affliction_notable_storm_drinker + /// + LocalAfflictionNotableStormDrinker = 11323, + + /// + /// local_affliction_notable_paralysis + /// + LocalAfflictionNotableParalysis = 11324, + + /// + /// local_affliction_notable_supercharge + /// + LocalAfflictionNotableSupercharge = 11325, + + /// + /// local_affliction_notable_blanketed_snow + /// + LocalAfflictionNotableBlanketedSnow = 11326, + + /// + /// local_affliction_notable_cold_to_the_core + /// + LocalAfflictionNotableColdToTheCore = 11327, + + /// + /// local_affliction_notable_cold_blooded_killer + /// + LocalAfflictionNotableColdBloodedKiller = 11328, + + /// + /// local_affliction_notable_touch_of_cruelty + /// + LocalAfflictionNotableTouchOfCruelty = 11329, + + /// + /// local_affliction_notable_unwaveringly_evil + /// + LocalAfflictionNotableUnwaveringlyEvil = 11330, + + /// + /// local_affliction_notable_unspeakable_gifts + /// + LocalAfflictionNotableUnspeakableGifts = 11331, + + /// + /// local_affliction_notable_dark_ideation + /// + LocalAfflictionNotableDarkIdeation = 11332, + + /// + /// local_affliction_notable_unholy_grace + /// + LocalAfflictionNotableUnholyGrace = 11333, + + /// + /// local_affliction_notable_wicked_pall + /// + LocalAfflictionNotableWickedPall = 11334, + + /// + /// local_affliction_notable_renewal + /// + LocalAfflictionNotableRenewal = 11335, + + /// + /// local_affliction_notable_raze_and_pillage + /// + LocalAfflictionNotableRazeAndPillage = 11336, + + /// + /// local_affliction_notable_rotten_claws + /// + LocalAfflictionNotableRottenClaws = 11337, + + /// + /// local_affliction_notable_call_to_the_slaughter + /// + LocalAfflictionNotableCallToTheSlaughter = 11338, + + /// + /// local_affliction_notable_hulking_corpses + /// + LocalAfflictionNotableHulkingCorpses = 11339, + + /// + /// local_affliction_notable_vicious_bite + /// + LocalAfflictionNotableViciousBite = 11340, + + /// + /// local_affliction_notable_primordial_bond + /// + LocalAfflictionNotablePrimordialBond = 11341, + + /// + /// local_affliction_notable_blowback + /// + LocalAfflictionNotableBlowback = 11342, + + /// + /// local_affliction_notable_fan_the_flames + /// + LocalAfflictionNotableFanTheFlames = 11343, + + /// + /// local_affliction_notable_cooked_alive + /// + LocalAfflictionNotableCookedAlive = 11344, + + /// + /// local_affliction_notable_burning_bright + /// + LocalAfflictionNotableBurningBright = 11345, + + /// + /// local_affliction_notable_wrapped_in_flame + /// + LocalAfflictionNotableWrappedInFlame = 11346, + + /// + /// local_affliction_notable_vivid_hues + /// + LocalAfflictionNotableVividHues = 11347, + + /// + /// local_affliction_notable_rend + /// + LocalAfflictionNotableRend = 11348, + + /// + /// local_affliction_notable_disorienting_wounds + /// + LocalAfflictionNotableDisorientingWounds = 11349, + + /// + /// local_affliction_notable_compound_injury + /// + LocalAfflictionNotableCompoundInjury = 11350, + + /// + /// local_affliction_notable_septic_spells + /// + LocalAfflictionNotableSepticSpells = 11351, + + /// + /// local_affliction_notable_low_tolerance + /// + LocalAfflictionNotableLowTolerance = 11352, + + /// + /// local_affliction_notable_steady_torment + /// + LocalAfflictionNotableSteadyTorment = 11353, + + /// + /// local_affliction_notable_eternal_suffering + /// + LocalAfflictionNotableEternalSuffering = 11354, + + /// + /// local_affliction_notable_eldritch_inspiration + /// + LocalAfflictionNotableEldritchInspiration = 11355, + + /// + /// local_affliction_notable_wasting_affliction + /// + LocalAfflictionNotableWastingAffliction = 11356, + + /// + /// local_affliction_notable_haemorrhage + /// + LocalAfflictionNotableHaemorrhage = 11357, + + /// + /// local_affliction_notable_flow_of_life + /// + LocalAfflictionNotableFlowOfLife = 11358, + + /// + /// local_affliction_notable_exposure_therapy + /// + LocalAfflictionNotableExposureTherapy = 11359, + + /// + /// local_affliction_notable_brush_with_death + /// + LocalAfflictionNotableBrushWithDeath = 11360, + + /// + /// local_affliction_notable_vile_reinvigoration + /// + LocalAfflictionNotableVileReinvigoration = 11361, + + /// + /// local_affliction_notable_circling_oblivion + /// + LocalAfflictionNotableCirclingOblivion = 11362, + + /// + /// local_affliction_notable_brewed_for_potency + /// + LocalAfflictionNotableBrewedForPotency = 11363, + + /// + /// local_affliction_notable_astonishing_affliction + /// + LocalAfflictionNotableAstonishingAffliction = 11364, + + /// + /// local_affliction_notable_cold_conduction + /// + LocalAfflictionNotableColdConduction = 11365, + + /// + /// local_affliction_notable_inspired_oppression + /// + LocalAfflictionNotableInspiredOppression = 11366, + + /// + /// local_affliction_notable_chilling_presence + /// + LocalAfflictionNotableChillingPresence = 11367, + + /// + /// local_affliction_notable_deep_chill + /// + LocalAfflictionNotableDeepChill = 11368, + + /// + /// local_affliction_notable_blast_freeze + /// + LocalAfflictionNotableBlastFreeze = 11369, + + /// + /// local_affliction_notable_thunderstruck + /// + LocalAfflictionNotableThunderstruck = 11370, + + /// + /// local_affliction_notable_stormrider + /// + LocalAfflictionNotableStormrider = 11371, + + /// + /// local_affliction_notable_overshock + /// + LocalAfflictionNotableOvershock = 11372, + + /// + /// local_affliction_notable_evil_eye + /// + LocalAfflictionNotableEvilEye = 11373, + + /// + /// local_affliction_notable_whispers_of_death + /// + LocalAfflictionNotableWhispersOfDeath = 11374, + + /// + /// local_affliction_notable_wardbreaker + /// + LocalAfflictionNotableWardbreaker = 11375, + + /// + /// local_affliction_notable_dark_discourse + /// + LocalAfflictionNotableDarkDiscourse = 11376, + + /// + /// local_affliction_notable_victim_maker + /// + LocalAfflictionNotableVictimMaker = 11377, + + /// + /// local_affliction_notable_master_of_fear + /// + LocalAfflictionNotableMasterOfFear = 11378, + + /// + /// local_affliction_notable_wish_for_death + /// + LocalAfflictionNotableWishForDeath = 11379, + + /// + /// local_affliction_notable_heraldry + /// + LocalAfflictionNotableHeraldry = 11380, + + /// + /// local_affliction_notable_endbringer + /// + LocalAfflictionNotableEndbringer = 11381, + + /// + /// local_affliction_notable_cult_leader + /// + LocalAfflictionNotableCultLeader = 11382, + + /// + /// local_affliction_notable_empowered_envoy + /// + LocalAfflictionNotableEmpoweredEnvoy = 11383, + + /// + /// local_affliction_notable_dark_messenger + /// + LocalAfflictionNotableDarkMessenger = 11384, + + /// + /// local_affliction_notable_agent_of_destruction + /// + LocalAfflictionNotableAgentOfDestruction = 11385, + + /// + /// local_affliction_notable_lasting_impression + /// + LocalAfflictionNotableLastingImpression = 11386, + + /// + /// local_affliction_notable_self_fulfilling_prophecy + /// + LocalAfflictionNotableSelfFulfillingProphecy = 11387, + + /// + /// local_affliction_notable_invigorating_portents + /// + LocalAfflictionNotableInvigoratingPortents = 11388, + + /// + /// local_affliction_notable_pure_agony + /// + LocalAfflictionNotablePureAgony = 11389, + + /// + /// local_affliction_notable_disciples + /// + LocalAfflictionNotableDisciples = 11390, + + /// + /// local_affliction_notable_dread_march + /// + LocalAfflictionNotableDreadMarch = 11391, + + /// + /// local_affliction_notable_blessed_rebirth + /// + LocalAfflictionNotableBlessedRebirth = 11392, + + /// + /// local_affliction_notable_life_from_death + /// + LocalAfflictionNotableLifeFromDeath = 11393, + + /// + /// local_affliction_notable_feasting_fiends + /// + LocalAfflictionNotableFeastingFiends = 11394, + + /// + /// local_affliction_notable_bodyguards + /// + LocalAfflictionNotableBodyguards = 11395, + + /// + /// local_affliction_notable_follow_through + /// + LocalAfflictionNotableFollowThrough = 11396, + + /// + /// local_affliction_notable_streamlined + /// + LocalAfflictionNotableStreamlined = 11397, + + /// + /// local_affliction_notable_shrieking_bolts + /// + LocalAfflictionNotableShriekingBolts = 11398, + + /// + /// local_affliction_notable_eye_to_eye + /// + LocalAfflictionNotableEyeToEye = 11399, + + /// + /// local_affliction_notable_repeater + /// + LocalAfflictionNotableRepeater = 11400, + + /// + /// local_affliction_notable_aerodynamics + /// + LocalAfflictionNotableAerodynamics = 11401, + + /// + /// local_affliction_notable_chip_away + /// + LocalAfflictionNotableChipAway = 11402, + + /// + /// local_affliction_notable_seeker_runes + /// + LocalAfflictionNotableSeekerRunes = 11403, + + /// + /// local_affliction_notable_remarkable + /// + LocalAfflictionNotableRemarkable = 11404, + + /// + /// local_affliction_notable_brand_loyalty + /// + LocalAfflictionNotableBrandLoyalty = 11405, + + /// + /// local_affliction_notable_holy_conquest + /// + LocalAfflictionNotableHolyConquest = 11406, + + /// + /// local_affliction_notable_grand_design + /// + LocalAfflictionNotableGrandDesign = 11407, + + /// + /// local_affliction_notable_set_and_forget + /// + LocalAfflictionNotableSetAndForget = 11408, + + /// + /// local_affliction_notable_expert_sabotage + /// + LocalAfflictionNotableExpertSabotage = 11409, + + /// + /// local_affliction_notable_guerilla_tactics + /// + LocalAfflictionNotableGuerillaTactics = 11410, + + /// + /// local_affliction_notable_expendability + /// + LocalAfflictionNotableExpendability = 11411, + + /// + /// local_affliction_notable_arcane_pyrotechnics + /// + LocalAfflictionNotableArcanePyrotechnics = 11412, + + /// + /// local_affliction_notable_surprise_sabotage + /// + LocalAfflictionNotableSurpriseSabotage = 11413, + + /// + /// local_affliction_notable_careful_handling + /// + LocalAfflictionNotableCarefulHandling = 11414, + + /// + /// local_affliction_notable_peak_vigour + /// + LocalAfflictionNotablePeakVigour = 11415, + + /// + /// local_affliction_notable_fettle + /// + LocalAfflictionNotableFettle = 11416, + + /// + /// local_affliction_notable_feast_of_flesh + /// + LocalAfflictionNotableFeastOfFlesh = 11417, + + /// + /// local_affliction_notable_sublime_sensation + /// + LocalAfflictionNotableSublimeSensation = 11418, + + /// + /// local_affliction_notable_surging_vitality + /// + LocalAfflictionNotableSurgingVitality = 11419, + + /// + /// local_affliction_notable_peace_amidst_chaos + /// + LocalAfflictionNotablePeaceAmidstChaos = 11420, + + /// + /// local_affliction_notable_adrenaline + /// + LocalAfflictionNotableAdrenaline = 11421, + + /// + /// local_affliction_notable_wall_of_muscle + /// + LocalAfflictionNotableWallOfMuscle = 11422, + + /// + /// local_affliction_notable_mindfulness + /// + LocalAfflictionNotableMindfulness = 11423, + + /// + /// local_affliction_notable_liquid_inspiration + /// + LocalAfflictionNotableLiquidInspiration = 11424, + + /// + /// local_affliction_notable_openness + /// + LocalAfflictionNotableOpenness = 11425, + + /// + /// local_affliction_notable_daring_ideas + /// + LocalAfflictionNotableDaringIdeas = 11426, + + /// + /// local_affliction_notable_clarity_of_purpose + /// + LocalAfflictionNotableClarityOfPurpose = 11427, + + /// + /// local_affliction_notable_scintillating_idea + /// + LocalAfflictionNotableScintillatingIdea = 11428, + + /// + /// local_affliction_notable_holistic_health + /// + LocalAfflictionNotableHolisticHealth = 11429, + + /// + /// local_affliction_notable_genius + /// + LocalAfflictionNotableGenius = 11430, + + /// + /// local_affliction_notable_improvisor + /// + LocalAfflictionNotableImprovisor = 11431, + + /// + /// local_affliction_notable_stubborn_student + /// + LocalAfflictionNotableStubbornStudent = 11432, + + /// + /// local_affliction_notable_savour_the_moment + /// + LocalAfflictionNotableSavourTheMoment = 11433, + + /// + /// local_affliction_notable_energy_from_naught + /// + LocalAfflictionNotableEnergyFromNaught = 11434, + + /// + /// local_affliction_notable_will_shaper + /// + LocalAfflictionNotableWillShaper = 11435, + + /// + /// local_affliction_notable_spring_back + /// + LocalAfflictionNotableSpringBack = 11436, + + /// + /// local_affliction_notable_conservation_of_energy + /// + LocalAfflictionNotableConservationOfEnergy = 11437, + + /// + /// local_affliction_notable_heart_of_iron + /// + LocalAfflictionNotableHeartOfIron = 11438, + + /// + /// local_affliction_notable_prismatic_carapace + /// + LocalAfflictionNotablePrismaticCarapace = 11439, + + /// + /// local_affliction_notable_militarism + /// + LocalAfflictionNotableMilitarism = 11440, + + /// + /// local_affliction_notable_second_skin + /// + LocalAfflictionNotableSecondSkin = 11441, + + /// + /// local_affliction_notable_dragon_hunter + /// + LocalAfflictionNotableDragonHunter = 11442, + + /// + /// local_affliction_notable_enduring_composure + /// + LocalAfflictionNotableEnduringComposure = 11443, + + /// + /// local_affliction_notable_prismatic_dance + /// + LocalAfflictionNotablePrismaticDance = 11444, + + /// + /// local_affliction_notable_natural_vigour + /// + LocalAfflictionNotableNaturalVigour = 11445, + + /// + /// local_affliction_notable_untouchable + /// + LocalAfflictionNotableUntouchable = 11446, + + /// + /// local_affliction_notable_shifting_shadow + /// + LocalAfflictionNotableShiftingShadow = 11447, + + /// + /// local_affliction_notable_readiness + /// + LocalAfflictionNotableReadiness = 11448, + + /// + /// local_affliction_notable_confident_combatant + /// + LocalAfflictionNotableConfidentCombatant = 11449, + + /// + /// local_affliction_notable_flexible_sentry + /// + LocalAfflictionNotableFlexibleSentry = 11450, + + /// + /// local_affliction_notable_vicious_guard_ + /// + LocalAfflictionNotableViciousGuard = 11451, + + /// + /// local_affliction_notable_mystical_ward + /// + LocalAfflictionNotableMysticalWard = 11452, + + /// + /// local_affliction_notable_rote_reinforcement + /// + LocalAfflictionNotableRoteReinforcement = 11453, + + /// + /// local_affliction_notable_mage_hunter + /// + LocalAfflictionNotableMageHunter = 11454, + + /// + /// local_affliction_notable_riot_queller + /// + LocalAfflictionNotableRiotQueller = 11455, + + /// + /// local_affliction_notable_one_with_the_shield + /// + LocalAfflictionNotableOneWithTheShield = 11456, + + /// + /// local_affliction_notable_aerialist + /// + LocalAfflictionNotableAerialist = 11457, + + /// + /// local_affliction_notable_elegant_form + /// + LocalAfflictionNotableElegantForm = 11458, + + /// + /// local_affliction_notable_darting_movements + /// + LocalAfflictionNotableDartingMovements = 11459, + + /// + /// local_affliction_notable_no_witnesses + /// + LocalAfflictionNotableNoWitnesses = 11460, + + /// + /// local_affliction_notable_molten_ones_mark + /// + LocalAfflictionNotableMoltenOnesMark = 11461, + + /// + /// local_affliction_notable_fire_attunement + /// + LocalAfflictionNotableFireAttunement = 11462, + + /// + /// local_affliction_notable_pure_might + /// + LocalAfflictionNotablePureMight = 11463, + + /// + /// local_affliction_notable_blacksmith + /// + LocalAfflictionNotableBlacksmith = 11464, + + /// + /// local_affliction_notable_non_flammable + /// + LocalAfflictionNotableNonFlammable = 11465, + + /// + /// local_affliction_notable_winter_prowler + /// + LocalAfflictionNotableWinterProwler = 11466, + + /// + /// local_affliction_notable_hibernator + /// + LocalAfflictionNotableHibernator = 11467, + + /// + /// local_affliction_notable_pure_guile + /// + LocalAfflictionNotablePureGuile = 11468, + + /// + /// local_affliction_notable_alchemist + /// + LocalAfflictionNotableAlchemist = 11469, + + /// + /// local_affliction_notable_antifreeze + /// + LocalAfflictionNotableAntifreeze = 11470, + + /// + /// local_affliction_notable_wizardry + /// + LocalAfflictionNotableWizardry = 11471, + + /// + /// local_affliction_notable_capacitor + /// + LocalAfflictionNotableCapacitor = 11472, + + /// + /// local_affliction_notable_pure_aptitude + /// + LocalAfflictionNotablePureAptitude = 11473, + + /// + /// local_affliction_notable_sage + /// + LocalAfflictionNotableSage = 11474, + + /// + /// local_affliction_notable_insulated + /// + LocalAfflictionNotableInsulated = 11475, + + /// + /// local_affliction_notable_born_of_chaos + /// + LocalAfflictionNotableBornOfChaos = 11476, + + /// + /// local_affliction_notable_antivenom + /// + LocalAfflictionNotableAntivenom = 11477, + + /// + /// local_affliction_notable_rot_resistant + /// + LocalAfflictionNotableRotResistant = 11478, + + /// + /// local_affliction_notable_blessed + /// + LocalAfflictionNotableBlessed = 11479, + + /// + /// local_affliction_notable_student_of_decay + /// + LocalAfflictionNotableStudentOfDecay = 11480, + + /// + /// area_skill_knockback_chance_% + /// + AreaSkillKnockbackChancePct = 11481, + + /// + /// fire_skill_chance_to_inflict_fire_exposure_% + /// + FireSkillChanceToInflictFireExposurePct = 11482, + + /// + /// cold_skill_chance_to_inflict_cold_exposure_% + /// + ColdSkillChanceToInflictColdExposurePct = 11483, + + /// + /// lightning_skill_chance_to_inflict_lightning_exposure_% + /// + LightningSkillChanceToInflictLightningExposurePct = 11484, + + /// + /// chaos_skill_chance_to_hinder_on_hit_% + /// + ChaosSkillChanceToHinderOnHitPct = 11485, + + /// + /// banner_mana_reservation_+% + /// + BannerManaReservationPct = 11486, + + /// + /// lightning_skill_stun_threshold_+% + /// + LightningSkillStunThresholdPct = 11487, + + /// + /// cannot_be_stunned_while_using_chaos_skill + /// + CannotBeStunnedWhileUsingChaosSkill = 11488, + + /// + /// poison_dot_multiplier_+_with_spells + /// + PoisonDotMultiplierWithSpells = 11489, + + /// + /// elemental_skill_chance_to_blind_nearby_enemies_% + /// + ElementalSkillChanceToBlindNearbyEnemiesPct = 11490, + + /// + /// is_affliction_monster + /// + IsAfflictionMonster = 11491, + + /// + /// gain_arcane_surge_when_you_summon_a_totem + /// + GainArcaneSurgeWhenYouSummonATotem = 11492, + + /// + /// add_frenzy_charge_on_kill_%_chance_while_dual_wielding + /// + AddFrenzyChargeOnKillPctChanceWhileDualWielding = 11493, + + /// + /// create_smoke_cloud_on_kill_%_chance + /// + CreateSmokeCloudOnKillPctChance = 11494, + + /// + /// totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed + /// + TotemHinderNearbyEnemiesWhenSummonedWith25PctReducedMovementSpeed = 11495, + + /// + /// attack_damage_+%_per_75_armour_or_evasion_on_shield + /// + AttackDamagePctPer75ArmourOrEvasionOnShield = 11496, + + /// + /// critical_multiplier_+%_per_10_max_es_on_shield + /// + CriticalMultiplierPctPer10MaxEsOnShield = 11497, + + /// + /// movement_speed_+%_while_you_have_infusion + /// + MovementSpeedPctWhileYouHaveInfusion = 11498, + + /// + /// infusion_effect_+% + /// + InfusionEffectPct = 11499, + + /// + /// flask_life_and_mana_to_recover_+% + /// + FlaskLifeAndManaToRecoverPct = 11500, + + /// + /// virtual_flask_mana_to_recover_+% + /// + VirtualFlaskManaToRecoverPct = 11501, + + /// + /// has_infusion + /// + HasInfusion = 11502, + + /// + /// map_uses_chaos_packs + /// + MapUsesChaosPacks = 11503, + + /// + /// local_jewel_expansion_keystone_lone_messenger + /// + LocalJewelExpansionKeystoneLoneMessenger = 11504, + + /// + /// local_jewel_expansion_keystone_natures_patience + /// + LocalJewelExpansionKeystoneNaturesPatience = 11505, + + /// + /// local_jewel_expansion_keystone_secrets_of_suffering + /// + LocalJewelExpansionKeystoneSecretsOfSuffering = 11506, + + /// + /// local_jewel_expansion_keystone_kineticism + /// + LocalJewelExpansionKeystoneKineticism = 11507, + + /// + /// local_jewel_expansion_keystone_pitfighter + /// + LocalJewelExpansionKeystonePitfighter = 11508, + + /// + /// local_jewel_expansion_keystone_veterans_awareness + /// + LocalJewelExpansionKeystoneVeteransAwareness = 11509, + + /// + /// local_jewel_expansion_keystone_hollow_palm_technique + /// + LocalJewelExpansionKeystoneHollowPalmTechnique = 11510, + + /// + /// recover_%_maximum_mana_when_enemy_frozen_permyriad + /// + RecoverPctMaximumManaWhenEnemyFrozenPermyriad = 11511, + + /// + /// chance_to_grant_power_charge_on_shocking_chilled_enemy_% + /// + ChanceToGrantPowerChargeOnShockingChilledEnemyPct = 11512, + + /// + /// shock_maximum_magnitude_is_60% + /// + ShockMaximumMagnitudeIs60Pct = 11513, + + /// + /// spread_freeze_to_nearby_enemies + /// + SpreadFreezeToNearbyEnemies = 11514, + + /// + /// spread_ignite_to_nearby_enemies + /// + SpreadIgniteToNearbyEnemies = 11515, + + /// + /// virtual_shock_maximum_magnitude_override + /// + VirtualShockMaximumMagnitudeOverride = 11516, + + /// + /// virtual_freeze_proliferation_radius + /// + VirtualFreezeProliferationRadius = 11517, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_life + /// + LocalAfflictionJewelSmallNodesGrantMaximumLife = 11518, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_mana + /// + LocalAfflictionJewelSmallNodesGrantMaximumMana = 11519, + + /// + /// local_affliction_jewel_small_nodes_grant_maximum_energy_shield + /// + LocalAfflictionJewelSmallNodesGrantMaximumEnergyShield = 11520, + + /// + /// local_affliction_jewel_small_nodes_grant_armour + /// + LocalAfflictionJewelSmallNodesGrantArmour = 11521, + + /// + /// local_affliction_jewel_small_nodes_grant_evasion + /// + LocalAfflictionJewelSmallNodesGrantEvasion = 11522, + + /// + /// local_affliction_jewel_small_nodes_grant_str + /// + LocalAfflictionJewelSmallNodesGrantStr = 11523, + + /// + /// local_affliction_jewel_small_nodes_grant_dex + /// + LocalAfflictionJewelSmallNodesGrantDex = 11524, + + /// + /// local_affliction_jewel_small_nodes_grant_int + /// + LocalAfflictionJewelSmallNodesGrantInt = 11525, + + /// + /// local_affliction_jewel_small_nodes_grant_all_attributes + /// + LocalAfflictionJewelSmallNodesGrantAllAttributes = 11526, + + /// + /// local_affliction_jewel_small_nodes_grant_mana_regeneration_+% + /// + LocalAfflictionJewelSmallNodesGrantManaRegenerationPct = 11527, + + /// + /// local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute + /// + LocalAfflictionJewelSmallNodesGrantPctLifeRegenerationPerMinute = 11528, + + /// + /// local_affliction_jewel_small_nodes_grant_fire_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantFireResistancePct = 11529, + + /// + /// local_affliction_jewel_small_nodes_grant_cold_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantColdResistancePct = 11530, + + /// + /// local_affliction_jewel_small_nodes_grant_lightning_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantLightningResistancePct = 11531, + + /// + /// local_affliction_jewel_small_nodes_grant_elemental_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantElementalResistancePct = 11532, + + /// + /// local_affliction_jewel_small_nodes_grant_chaos_resistance_% + /// + LocalAfflictionJewelSmallNodesGrantChaosResistancePct = 11533, + + /// + /// local_affliction_jewel_small_nodes_grant_damage_+% + /// + LocalAfflictionJewelSmallNodesGrantDamagePct = 11534, + + /// + /// local_affliction_jewel_small_nodes_have_effect_+% + /// + LocalAfflictionJewelSmallNodesHaveEffectPct = 11535, + + /// + /// maximum_virulence_stacks + /// + MaximumVirulenceStacks = 11536, + + /// + /// unattached_sigil_attachment_range_+%_per_second + /// + UnattachedSigilAttachmentRangePctPerSecond = 11537, + + /// + /// extra_damage_rolls_with_lightning_damage_on_non_critical_hits + /// + ExtraDamageRollsWithLightningDamageOnNonCriticalHits = 11538, + + /// + /// maximum_intensify_stacks + /// + MaximumIntensifyStacks = 11539, + + /// + /// aura_effect_on_self_from_skills_+%_per_herald_effecting_you + /// + AuraEffectOnSelfFromSkillsPctPerHeraldEffectingYou = 11540, + + /// + /// virtual_aura_effect_on_self_from_skills_+% + /// + VirtualAuraEffectOnSelfFromSkillsPct = 11541, + + /// + /// minion_attack_hits_knockback_chance_% + /// + MinionAttackHitsKnockbackChancePct = 11542, + + /// + /// minion_chance_to_gain_power_charge_on_hit_% + /// + MinionChanceToGainPowerChargeOnHitPct = 11543, + + /// + /// spectre_zombie_skeleton_critical_strike_multiplier_+ + /// + SpectreZombieSkeletonCriticalStrikeMultiplier = 11544, + + /// + /// minion_recover_%_maximum_life_on_minion_death + /// + MinionRecoverPctMaximumLifeOnMinionDeath = 11545, + + /// + /// poison_on_non_poisoned_enemies_damage_+% + /// + PoisonOnNonPoisonedEnemiesDamagePct = 11546, + + /// + /// elemental_resistance_%_per_stackable_unique_jewel + /// + ElementalResistancePctPerStackableUniqueJewel = 11547, + + /// + /// base_can_only_have_one_permanent_aura + /// + BaseCanOnlyHaveOnePermanentAura = 11548, + + /// + /// non_curse_aura_effect_+%_vs_enemies + /// + NonCurseAuraEffectPctVsEnemies = 11549, + + /// + /// map_area_contains_metamorphs + /// + MapAreaContainsMetamorphs = 11550, + + /// + /// map_metamorph_all_metamorphs_have_rewards + /// + MapMetamorphAllMetamorphsHaveRewards = 11551, + + /// + /// map_metamorph_boss_drops_additional_itemised_organs + /// + MapMetamorphBossDropsAdditionalItemisedOrgans = 11552, + + /// + /// keystone_hollow_palm_technique + /// + KeystoneHollowPalmTechnique = 11553, + + /// + /// keystone_disciple_of_kitava + /// + KeystoneDiscipleOfKitava = 11554, + + /// + /// keystone_natures_presence + /// + KeystoneNaturesPresence = 11555, + + /// + /// keystone_secrets_of_suffering + /// + KeystoneSecretsOfSuffering = 11556, + + /// + /// has_mastered_the_hollow_palm + /// + HasMasteredTheHollowPalm = 11557, + + /// + /// wearing_gloves + /// + WearingGloves = 11558, + + /// + /// is_wielding_two_weapon_types + /// + IsWieldingTwoWeaponTypes = 11559, + + /// + /// main_hand_attack_damage_+%_while_wielding_two_weapon_types + /// + MainHandAttackDamagePctWhileWieldingTwoWeaponTypes = 11560, + + /// + /// off_hand_attack_speed_+%_while_wielding_two_weapon_types + /// + OffHandAttackSpeedPctWhileWieldingTwoWeaponTypes = 11561, + + /// + /// life_regeneration_per_minute_%_while_channelling + /// + LifeRegenerationPerMinutePctWhileChannelling = 11562, + + /// + /// damage_+%_while_channelling + /// + DamagePctWhileChannelling = 11563, + + /// + /// mana_cost_+%_for_channelling_skills + /// + ManaCostPctForChannellingSkills = 11564, + + /// + /// %_chance_to_gain_endurance_charge_each_second_while_channelling + /// + PctChanceToGainEnduranceChargeEachSecondWhileChannelling = 11565, + + /// + /// critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second + /// + CriticalStrikeMultiplierIfYouveBeenChannellingForAtLeast1Second = 11566, + + /// + /// critical_strike_chance_+%_while_channelling + /// + CriticalStrikeChancePctWhileChannelling = 11567, + + /// + /// chance_to_block_attacks_%_while_channelling + /// + ChanceToBlockAttacksPctWhileChannelling = 11568, + + /// + /// chance_to_block_spells_%_while_channelling + /// + ChanceToBlockSpellsPctWhileChannelling = 11569, + + /// + /// have_been_channelling_for_at_least_1_second + /// + HaveBeenChannellingForAtLeast1Second = 11570, + + /// + /// gain_arcane_surge_for_4_seconds_after_channelling_for_1_second + /// + GainArcaneSurgeFor4SecondsAfterChannellingFor1Second = 11571, + + /// + /// attack_and_cast_speed_+%_while_channelling + /// + AttackAndCastSpeedPctWhileChannelling = 11572, + + /// + /// immune_to_curses_while_channelling + /// + ImmuneToCursesWhileChannelling = 11573, + + /// + /// damage_+%_with_herald_skills + /// + DamagePctWithHeraldSkills = 11574, + + /// + /// area_of_effect_+%_with_herald_skills + /// + AreaOfEffectPctWithHeraldSkills = 11575, + + /// + /// damage_over_time_+%_with_herald_skills + /// + DamageOverTimePctWithHeraldSkills = 11576, + + /// + /// critical_strike_multiplier_+_with_herald_skills + /// + CriticalStrikeMultiplierWithHeraldSkills = 11577, + + /// + /// additional_critical_strike_chance_permyriad_with_herald_skills + /// + AdditionalCriticalStrikeChancePermyriadWithHeraldSkills = 11578, + + /// + /// gain_arcane_surge_when_trap_triggered_by_an_enemy + /// + GainArcaneSurgeWhenTrapTriggeredByAnEnemy = 11579, + + /// + /// gain_arcane_surge_when_mine_detonated_targeting_an_enemy + /// + GainArcaneSurgeWhenMineDetonatedTargetingAnEnemy = 11580, + + /// + /// virtual_immune_to_curses + /// + VirtualImmuneToCurses = 11581, + + /// + /// hinder_aura_behaviour_variation + /// + HinderAuraBehaviourVariation = 11582, + + /// + /// enemies_you_curse_have_15%_hinder + /// + EnemiesYouCurseHave15PctHinder = 11583, + + /// + /// enemies_you_curse_are_intimidated + /// + EnemiesYouCurseAreIntimidated = 11584, + + /// + /// enemies_you_curse_are_unnerved + /// + EnemiesYouCurseAreUnnerved = 11585, + + /// + /// local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius + /// + LocalUniqueJewelLifeRecoveryRatePctPer10StrAllocatedInRadius = 11586, + + /// + /// local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius + /// + LocalUniqueJewelLifeRecoveryRatePctPer10StrUnallocatedInRadius = 11587, + + /// + /// local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius + /// + LocalUniqueJewelMovementSpeedPctPer10DexUnallocatedInRadius = 11588, + + /// + /// local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius + /// + LocalUniqueJewelAccuracyRatingPer10DexUnallocatedInRadius = 11589, + + /// + /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius + /// + LocalUniqueJewelManaRecoveryRatePctPer10IntAllocatedInRadius = 11590, + + /// + /// local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius + /// + LocalUniqueJewelManaRecoveryRatePctPer10IntUnallocatedInRadius = 11591, + + /// + /// local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius + /// + LocalUniqueJewelDotMultiplierPer10IntUnallocatedInRadius = 11592, + + /// + /// projectile_damage_+%_per_remaining_chain + /// + ProjectileDamagePctPerRemainingChain = 11593, + + /// + /// map_endgame_fog_depth + /// + MapEndgameFogDepth = 11594, + + /// + /// beam_bomb_action_speed_+%_final + /// + BeamBombActionSpeedPctFinal = 11595, + + /// + /// taunt_on_projectile_hit_chance_% + /// + TauntOnProjectileHitChancePct = 11596, + + /// + /// spells_chance_to_knockback_on_hit_% + /// + SpellsChanceToKnockbackOnHitPct = 11597, + + /// + /// spells_chance_to_poison_on_hit_% + /// + SpellsChanceToPoisonOnHitPct = 11598, + + /// + /// gain_x_rage_on_hit_with_axes_swords_1s_cooldown + /// + GainXRageOnHitWithAxesSwords1SCooldown = 11599, + + /// + /// chance_to_gain_unholy_might_on_crit_for_4_seconds_% + /// + ChanceToGainUnholyMightOnCritFor4SecondsPct = 11600, + + /// + /// gain_arcane_surge_on_hit_vs_unique_enemy_%_chance + /// + GainArcaneSurgeOnHitVsUniqueEnemyPctChance = 11601, + + /// + /// chance_to_intimidate_nearby_enemies_on_melee_kill_% + /// + ChanceToIntimidateNearbyEnemiesOnMeleeKillPct = 11602, + + /// + /// enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance + /// + EnemiesExplodeOnDeathByWandHitFor25PctLifeAsChaosDamagePctChance = 11603, + + /// + /// virtual_total_main_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% + /// + VirtualTotalMainHandChanceToExplodeEnemyOnKillByWandHitPct = 11604, + + /// + /// virtual_total_off_hand_chance_to_explode_enemy_on_kill_by_wand_hit_% + /// + VirtualTotalOffHandChanceToExplodeEnemyOnKillByWandHitPct = 11605, + + /// + /// totem_chaos_resistance_% + /// + TotemChaosResistancePct = 11606, + + /// + /// cannot_be_afflicted + /// + CannotBeAfflicted = 11607, + + /// + /// cannot_have_affliction_mods + /// + CannotHaveAfflictionMods = 11608, + + /// + /// trap_or_mine_damage_+% + /// + TrapOrMineDamagePct = 11609, + + /// + /// you_and_nearby_allies_critical_strike_chance_+% + /// + YouAndNearbyAlliesCriticalStrikeChancePct = 11610, + + /// + /// you_and_nearby_allies_critical_strike_multiplier_+ + /// + YouAndNearbyAlliesCriticalStrikeMultiplier = 11611, + + /// + /// mana_regeneration_rate_+%_if_enemy_shocked_recently + /// + ManaRegenerationRatePctIfEnemyShockedRecently = 11612, + + /// + /// mana_regeneration_rate_+%_if_enemy_frozen_recently + /// + ManaRegenerationRatePctIfEnemyFrozenRecently = 11613, + + /// + /// local_display_nearby_enemies_have_fire_exposure + /// + LocalDisplayNearbyEnemiesHaveFireExposure = 11614, + + /// + /// local_display_nearby_enemies_are_chilled + /// + LocalDisplayNearbyEnemiesAreChilled = 11615, + + /// + /// projectiles_bounce_randomly_on_collision_x_times + /// + ProjectilesBounceRandomlyOnCollisionXTimes = 11616, + + /// + /// projectiles_bounce_randomly_terrain_only + /// + ProjectilesBounceRandomlyTerrainOnly = 11617, + + /// + /// projectiles_bounce_max_travel_distance_per_bounce + /// + ProjectilesBounceMaxTravelDistancePerBounce = 11618, + + /// + /// projectiles_bounce_max_travel_distance_all_bounces + /// + ProjectilesBounceMaxTravelDistanceAllBounces = 11619, + + /// + /// conditonal_move_if_enemy_beyond_%_of_maximum_action_distance + /// + ConditonalMoveIfEnemyBeyondPctOfMaximumActionDistance = 11620, + + /// + /// can_only_have_one_permanent_aura + /// + CanOnlyHaveOnePermanentAura = 11621, + + /// + /// minion_minimum_power_charges + /// + MinionMinimumPowerCharges = 11622, + + /// + /// map_vaal_vessel_drop_x_single_implicit_corrupted_uniques + /// + MapVaalVesselDropXSingleImplicitCorruptedUniques = 11623, + + /// + /// you_and_nearby_party_members_gain_x_rage_when_you_warcry + /// + YouAndNearbyPartyMembersGainXRageWhenYouWarcry = 11624, + + /// + /// projectile_speed_is_divided_by_%_of_scale + /// + ProjectileSpeedIsDividedByPctOfScale = 11625, + + /// + /// explosive_arrow_stack_limit + /// + ExplosiveArrowStackLimit = 11626, + + /// + /// local_affliction_notable_skeletal_atrophy + /// + LocalAfflictionNotableSkeletalAtrophy = 11627, + + /// + /// drop_affliction_splinters_chance_per_cent_mille + /// + DropAfflictionSplintersChancePerCentMille = 11628, + + /// + /// map_endgame_affliction_reward_1 + /// + MapEndgameAfflictionReward1 = 11629, + + /// + /// map_endgame_affliction_reward_2 + /// + MapEndgameAfflictionReward2 = 11630, + + /// + /// map_endgame_affliction_reward_3 + /// + MapEndgameAfflictionReward3 = 11631, + + /// + /// map_endgame_affliction_reward_4 + /// + MapEndgameAfflictionReward4 = 11632, + + /// + /// map_endgame_affliction_reward_5 + /// + MapEndgameAfflictionReward5 = 11633, + + /// + /// mana_reservation_+%_with_curse_skills + /// + ManaReservationPctWithCurseSkills = 11634, + + /// + /// critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently + /// + CriticalStrikeMultiplierIfCritWithAHeraldSkillRecently = 11635, + + /// + /// have_crit_with_a_herald_skill_recently + /// + HaveCritWithAHeraldSkillRecently = 11636, + + /// + /// track_have_crit_with_a_herald_skill_recently + /// + TrackHaveCritWithAHeraldSkillRecently = 11637, + + /// + /// attack_and_cast_speed_+%_with_fire_skills + /// + AttackAndCastSpeedPctWithFireSkills = 11638, + + /// + /// attack_and_cast_speed_+%_with_cold_skills + /// + AttackAndCastSpeedPctWithColdSkills = 11639, + + /// + /// attack_and_cast_speed_+%_with_lightning_skills + /// + AttackAndCastSpeedPctWithLightningSkills = 11640, + + /// + /// attack_and_cast_speed_+%_with_chaos_skills + /// + AttackAndCastSpeedPctWithChaosSkills = 11641, + + /// + /// attack_and_cast_speed_+%_with_physical_skills + /// + AttackAndCastSpeedPctWithPhysicalSkills = 11642, + + /// + /// attack_and_cast_speed_+%_with_elemental_skills + /// + AttackAndCastSpeedPctWithElementalSkills = 11643, + + /// + /// additional_physical_damage_reduction_%_while_frozen + /// + AdditionalPhysicalDamageReductionPctWhileFrozen = 11644, + + /// + /// multi_trap_and_mine_support_flags + /// + MultiTrapAndMineSupportFlags = 11645, + + /// + /// combined_ailment_all_damage_over_time_+% + /// + CombinedAilmentAllDamageOverTimePct = 11646, + + /// + /// combined_main_hand_ailment_all_damage_over_time_+% + /// + CombinedMainHandAilmentAllDamageOverTimePct = 11647, + + /// + /// combined_off_hand_ailment_all_damage_over_time_+% + /// + CombinedOffHandAilmentAllDamageOverTimePct = 11648, + + /// + /// dagger_ailment_damage_+% + /// + DaggerAilmentDamagePct = 11649, + + /// + /// claw_ailment_damage_+% + /// + ClawAilmentDamagePct = 11650, + + /// + /// sword_ailment_damage_+% + /// + SwordAilmentDamagePct = 11651, + + /// + /// bow_ailment_damage_+% + /// + BowAilmentDamagePct = 11652, + + /// + /// axe_ailment_damage_+% + /// + AxeAilmentDamagePct = 11653, + + /// + /// staff_ailment_damage_+% + /// + StaffAilmentDamagePct = 11654, + + /// + /// mace_ailment_damage_+% + /// + MaceAilmentDamagePct = 11655, + + /// + /// wand_ailment_damage_+% + /// + WandAilmentDamagePct = 11656, + + /// + /// one_handed_weapon_ailment_damage_+% + /// + OneHandedWeaponAilmentDamagePct = 11657, + + /// + /// two_handed_weapon_ailment_damage_+% + /// + TwoHandedWeaponAilmentDamagePct = 11658, + + /// + /// one_handed_melee_weapon_ailment_damage_+% + /// + OneHandedMeleeWeaponAilmentDamagePct = 11659, + + /// + /// two_handed_melee_weapon_ailment_damage_+% + /// + TwoHandedMeleeWeaponAilmentDamagePct = 11660, + + /// + /// melee_weapon_ailment_damage_+% + /// + MeleeWeaponAilmentDamagePct = 11661, + + /// + /// axe_or_sword_ailment_damage_+% + /// + AxeOrSwordAilmentDamagePct = 11662, + + /// + /// claw_or_dagger_ailment_damage_+% + /// + ClawOrDaggerAilmentDamagePct = 11663, + + /// + /// mace_or_staff_ailment_damage_+% + /// + MaceOrStaffAilmentDamagePct = 11664, + + /// + /// dagger_hit_and_ailment_damage_+% + /// + DaggerHitAndAilmentDamagePct = 11665, + + /// + /// claw_hit_and_ailment_damage_+% + /// + ClawHitAndAilmentDamagePct = 11666, + + /// + /// sword_hit_and_ailment_damage_+% + /// + SwordHitAndAilmentDamagePct = 11667, + + /// + /// bow_hit_and_ailment_damage_+% + /// + BowHitAndAilmentDamagePct = 11668, + + /// + /// axe_hit_and_ailment_damage_+% + /// + AxeHitAndAilmentDamagePct = 11669, + + /// + /// staff_hit_and_ailment_damage_+% + /// + StaffHitAndAilmentDamagePct = 11670, + + /// + /// mace_hit_and_ailment_damage_+% + /// + MaceHitAndAilmentDamagePct = 11671, + + /// + /// wand_hit_and_ailment_damage_+% + /// + WandHitAndAilmentDamagePct = 11672, + + /// + /// one_handed_weapon_hit_and_ailment_damage_+% + /// + OneHandedWeaponHitAndAilmentDamagePct = 11673, + + /// + /// two_handed_weapon_hit_and_ailment_damage_+% + /// + TwoHandedWeaponHitAndAilmentDamagePct = 11674, + + /// + /// one_handed_melee_weapon_hit_and_ailment_damage_+% + /// + OneHandedMeleeWeaponHitAndAilmentDamagePct = 11675, + + /// + /// two_handed_melee_weapon_hit_and_ailment_damage_+% + /// + TwoHandedMeleeWeaponHitAndAilmentDamagePct = 11676, + + /// + /// melee_weapon_hit_and_ailment_damage_+% + /// + MeleeWeaponHitAndAilmentDamagePct = 11677, + + /// + /// axe_or_sword_hit_and_ailment_damage_+% + /// + AxeOrSwordHitAndAilmentDamagePct = 11678, + + /// + /// claw_or_dagger_hit_and_ailment_damage_+% + /// + ClawOrDaggerHitAndAilmentDamagePct = 11679, + + /// + /// mace_or_staff_hit_and_ailment_damage_+% + /// + MaceOrStaffHitAndAilmentDamagePct = 11680, + + /// + /// virtual_main_hand_hit_and_ailment_damage_+%_from_weapon_type + /// + VirtualMainHandHitAndAilmentDamagePctFromWeaponType = 11681, + + /// + /// virtual_off_hand_hit_and_ailment_damage_+%_from_weapon_type + /// + VirtualOffHandHitAndAilmentDamagePctFromWeaponType = 11682, + + /// + /// attack_skills_damage_+%_while_dual_wielding + /// + AttackSkillsDamagePctWhileDualWielding = 11683, + + /// + /// attack_skills_damage_+%_while_holding_shield + /// + AttackSkillsDamagePctWhileHoldingShield = 11684, + + /// + /// damage_+%_while_wielding_wand + /// + DamagePctWhileWieldingWand = 11685, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantAttackSpeedPct = 11686, + + /// + /// local_affliction_jewel_small_nodes_grant_base_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseCastSpeedPct = 11687, + + /// + /// local_affliction_jewel_small_nodes_grant_damage_over_time_+% + /// + LocalAfflictionJewelSmallNodesGrantDamageOverTimePct = 11688, + + /// + /// local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseElementalStatusAilmentDurationPct = 11689, + + /// + /// local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseAuraAreaOfEffectPct = 11690, + + /// + /// local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantCurseAreaOfEffectPct = 11691, + + /// + /// local_affliction_jewel_small_nodes_grant_warcry_duration_+% + /// + LocalAfflictionJewelSmallNodesGrantWarcryDurationPct = 11692, + + /// + /// local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+ + /// + LocalAfflictionJewelSmallNodesGrantBaseCriticalStrikeMultiplier = 11693, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_% + /// + LocalAfflictionJewelSmallNodesGrantMinionLifeRegenerationRatePerMinutePct = 11694, + + /// + /// local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseSkillAreaOfEffectPct = 11695, + + /// + /// local_affliction_jewel_small_nodes_grant_base_projectile_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantBaseProjectileSpeedPct = 11696, + + /// + /// local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantTrapAndMineThrowingSpeedPct = 11697, + + /// + /// local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantSummonTotemCastSpeedPct = 11698, + + /// + /// local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+% + /// + LocalAfflictionJewelSmallNodesGrantSigilTargetSearchRangePct = 11699, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChannellingSkills = 11700, + + /// + /// local_affliction_jewel_small_nodes_grant_charges_gained_+% + /// + LocalAfflictionJewelSmallNodesGrantChargesGainedPct = 11701, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithFireSkills = 11702, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithColdSkills = 11703, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithLightningSkills = 11704, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithChaosSkills = 11705, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithPhysicalSkills = 11706, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWithElementalSkills = 11707, + + /// + /// local_display_nearby_enemy_elemental_damage_taken_+% + /// + LocalDisplayNearbyEnemyElementalDamageTakenPct = 11708, + + /// + /// active_skill_minion_attack_speed_+%_final + /// + ActiveSkillMinionAttackSpeedPctFinal = 11709, + + /// + /// attack_speed_+%_final_for_minions + /// + AttackSpeedPctFinalForMinions = 11710, + + /// + /// curse_effect_+%_final_vs_players + /// + CurseEffectPctFinalVsPlayers = 11711, + + /// + /// blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated + /// + BladeBurstAreaOfEffectPctFinalPerBladeVortexBladeDetonated = 11712, + + /// + /// map_monsters_all_damage_can_shock + /// + MapMonstersAllDamageCanShock = 11713, + + /// + /// map_monsters_all_damage_can_chill + /// + MapMonstersAllDamageCanChill = 11714, + + /// + /// map_monsters_chance_to_inflict_brittle_% + /// + MapMonstersChanceToInflictBrittlePct = 11715, + + /// + /// map_monsters_chance_to_inflict_sapped_% + /// + MapMonstersChanceToInflictSappedPct = 11716, + + /// + /// map_monsters_chance_to_scorch_% + /// + MapMonstersChanceToScorchPct = 11717, + + /// + /// map_monsters_chance_to_impale_% + /// + MapMonstersChanceToImpalePct = 11718, + + /// + /// map_monsters_remove_%_of_mana_on_hit + /// + MapMonstersRemovePctOfManaOnHit = 11719, + + /// + /// remove_%_of_mana_on_hit + /// + RemovePctOfManaOnHit = 11720, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11721, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAt150PctValue = 11722, + + /// + /// additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand + /// + AdditiveSpellDamageModifiersApplyToAttackDamageAtPctValueWhileWieldingWand = 11723, + + /// + /// active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value + /// + ActiveSkillAdditiveSpellDamageModifiersApplyToAttackDamageAtPctValue = 11724, + + /// + /// skill_effect_duration_+%_with_non_curse_aura_skills + /// + SkillEffectDurationPctWithNonCurseAuraSkills = 11725, + + /// + /// projectile_attack_damage_+%_with_claw_or_dagger + /// + ProjectileAttackDamagePctWithClawOrDagger = 11726, + + /// + /// damage_taken_+%_final_from_affliction_depth + /// + DamageTakenPctFinalFromAfflictionDepth = 11727, + + /// + /// damage_taken_+%_final_from_affliction_split + /// + DamageTakenPctFinalFromAfflictionSplit = 11728, + + /// + /// leap_slam_minimum_distance + /// + LeapSlamMinimumDistance = 11729, + + /// + /// virtual_support_anticipation_charge_gain_interval_ms + /// + VirtualSupportAnticipationChargeGainIntervalMs = 11730, + + /// + /// support_anticipation_charge_gain_frequency_+% + /// + SupportAnticipationChargeGainFrequencyPct = 11731, + + /// + /// support_added_cooldown_count_if_not_instant + /// + SupportAddedCooldownCountIfNotInstant = 11732, + + /// + /// manaweave_cost_equals_%_unreserved_mana + /// + ManaweaveCostEqualsPctUnreservedMana = 11733, + + /// + /// manaweave_added_lightning_damage_%_cost_if_payable + /// + ManaweaveAddedLightningDamagePctCostIfPayable = 11734, + + /// + /// minion_attack_and_cast_speed_+% + /// + MinionAttackAndCastSpeedPct = 11735, + + /// + /// minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald + /// + MinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11736, + + /// + /// attack_and_cast_speed_+%_while_affected_by_a_herald + /// + AttackAndCastSpeedPctWhileAffectedByAHerald = 11737, + + /// + /// local_display_socketed_gems_supported_by_level_x_second_wind + /// + LocalDisplaySocketedGemsSupportedByLevelXSecondWind = 11738, + + /// + /// local_display_socketed_gems_supported_by_level_x_archmage + /// + LocalDisplaySocketedGemsSupportedByLevelXArchmage = 11739, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+% + /// + LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPct = 11740, + + /// + /// local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald + /// + LocalAfflictionJewelSmallNodesGrantAttackAndCastSpeedPctWhileAffectedByAHerald = 11741, + + /// + /// local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald + /// + LocalAfflictionJewelSmallNodesGrantMinionAttackAndCastSpeedPctWhileYouAreAffectedByAHerald = 11742, + + /// + /// minion_aggro_radius_+% + /// + MinionAggroRadiusPct = 11743, + + /// + /// map_monsters_maim_on_hit_%_chance + /// + MapMonstersMaimOnHitPctChance = 11744, + + /// + /// map_monsters_spells_chance_to_hinder_on_hit_%_chance + /// + MapMonstersSpellsChanceToHinderOnHitPctChance = 11745, + + /// + /// map_monsters_remove_enemy_flask_charge_on_hit_%_chance + /// + MapMonstersRemoveEnemyFlaskChargeOnHitPctChance = 11746, + + /// + /// remove_enemy_flask_charge_on_hit_%_chance + /// + RemoveEnemyFlaskChargeOnHitPctChance = 11747, + + /// + /// map_player_non_damaging_ailment_effect_+% + /// + MapPlayerNonDamagingAilmentEffectPct = 11748, + + /// + /// map_monsters_reduce_enemy_lightning_resistance_% + /// + MapMonstersReduceEnemyLightningResistancePct = 11749, + + /// + /// map_monsters_reduce_enemy_cold_resistance_% + /// + MapMonstersReduceEnemyColdResistancePct = 11750, + + /// + /// map_monsters_reduce_enemy_fire_resistance_% + /// + MapMonstersReduceEnemyFireResistancePct = 11751, + + /// + /// map_monsters_reduce_enemy_chaos_resistance_% + /// + MapMonstersReduceEnemyChaosResistancePct = 11752, + + /// + /// map_monsters_enemy_phys_reduction_%_penalty_vs_hit + /// + MapMonstersEnemyPhysReductionPctPenaltyVsHit = 11753, + + /// + /// minimum_movement_velocity_+%_excluding_stance + /// + MinimumMovementVelocityPctExcludingStance = 11754, + + /// + /// is_snipe_default_projectile + /// + IsSnipeDefaultProjectile = 11755, + + /// + /// assailum_socketed_gems_damage_+%_final + /// + AssailumSocketedGemsDamagePctFinal = 11756, + + /// + /// local_display_assailum_socketed_gems_damage_+%_final + /// + LocalDisplayAssailumSocketedGemsDamagePctFinal = 11757, + + /// + /// cannot_drop_splinters + /// + CannotDropSplinters = 11758, + + /// + /// is_warband_monster + /// + IsWarbandMonster = 11759, + + /// + /// is_elder_portal_monster + /// + IsElderPortalMonster = 11760, + + /// + /// is_map_boss_underling_monster + /// + IsMapBossUnderlingMonster = 11761, + + /// + /// is_affliction_wild_boss + /// + IsAfflictionWildBoss = 11762, + + /// + /// all_and_max_elemental_resist_+_while_affected_by_non_vaal_guard_skill + /// + AllAndMaxElementalResistWhileAffectedByNonVaalGuardSkill = 11763, + + /// + /// keystone_reactionary_damage_taken_+%_final_if_guard_buff_lost_recently + /// + KeystoneReactionaryDamageTakenPctFinalIfGuardBuffLostRecently = 11764, + + /// + /// summoned_monsters_no_drops_or_experience_if_parent_no_drops_or_experience + /// + SummonedMonstersNoDropsOrExperienceIfParentNoDropsOrExperience = 11765, + + /// + /// skill_travel_distance_+% + /// + SkillTravelDistancePct = 11766, + + /// + /// skill_maximum_travel_distance_+% + /// + SkillMaximumTravelDistancePct = 11767, + + /// + /// map_monster_non_damaging_ailment_effect_+%_on_self + /// + MapMonsterNonDamagingAilmentEffectPctOnSelf = 11768, + + /// + /// map_hidden_pack_size_+% + /// + MapHiddenPackSizePct = 11769, + + /// + /// non_damaging_ailment_effect_+%_on_self + /// + NonDamagingAilmentEffectPctOnSelf = 11770, + + /// + /// affected_by_glorious_madness + /// + AffectedByGloriousMadness = 11771, + + /// + /// embrace_madness_reactivation_cooldown + /// + EmbraceMadnessReactivationCooldown = 11772, + + /// + /// local_display_grants_skill_embrace_madness_level + /// + LocalDisplayGrantsSkillEmbraceMadnessLevel = 11773, + + /// + /// explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_% + /// + ExplodeEnemiesFor25PctLifeAsChaosOnKillWhileAffectedByGloriousMadnessChancePct = 11774, + + /// + /// all_damage_can_poison_while_affected_by_glorious_madness + /// + AllDamageCanPoisonWhileAffectedByGloriousMadness = 11775, + + /// + /// fortify_effect_on_self_while_affected_by_glorious_madness_+% + /// + FortifyEffectOnSelfWhileAffectedByGloriousMadnessPct = 11776, + + /// + /// chance_to_deal_double_damage_while_affected_by_glorious_madness_% + /// + ChanceToDealDoubleDamageWhileAffectedByGloriousMadnessPct = 11777, + + /// + /// gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness + /// + GainChillingShockingIgnitingConfluxWhileAffectedByGloriousMadness = 11778, + + /// + /// immune_to_elemental_status_ailments_while_affected_by_glorious_madness + /// + ImmuneToElementalStatusAilmentsWhileAffectedByGloriousMadness = 11779, + + /// + /// virtual_has_chilling_conflux + /// + VirtualHasChillingConflux = 11780, + + /// + /// virtual_has_shocking_conflux + /// + VirtualHasShockingConflux = 11781, + + /// + /// virtual_has_igniting_conflux + /// + VirtualHasIgnitingConflux = 11782, + + /// + /// keystone_reactionary_damage_taken_+%_final + /// + KeystoneReactionaryDamageTakenPctFinal = 11783, + + /// + /// main_hand_maim_on_hit_% + /// + MainHandMaimOnHitPct = 11784, + + /// + /// off_hand_maim_on_hit_% + /// + OffHandMaimOnHitPct = 11785, + + /// + /// virtual_maim_on_hit_% + /// + VirtualMaimOnHitPct = 11786, + + /// + /// main_hand_maim_on_crit_% + /// + MainHandMaimOnCritPct = 11787, + + /// + /// off_hand_maim_on_crit_% + /// + OffHandMaimOnCritPct = 11788, + + /// + /// virtual_maim_on_crit_% + /// + VirtualMaimOnCritPct = 11789, + + /// + /// cast_speed_for_brand_skills_+% + /// + CastSpeedForBrandSkillsPct = 11790, + + /// + /// blades_left_in_ground_+%_final_if_not_hand_cast + /// + BladesLeftInGroundPctFinalIfNotHandCast = 11791, + + /// + /// keystone_herald_of_doom + /// + KeystoneHeraldOfDoom = 11792, + + /// + /// attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana + /// + AttackSkillsHaveAddedLightningDamageEqualToPctOfMaximumMana = 11793, + + /// + /// lose_%_of_mana_when_you_use_an_attack_skill + /// + LosePctOfManaWhenYouUseAnAttackSkill = 11794, + + /// + /// is_incursion_temple_architect + /// + IsIncursionTempleArchitect = 11795, + + /// + /// is_incursion_temple_boss + /// + IsIncursionTempleBoss = 11796, + + /// + /// map_architects_drops_additional_map_currency + /// + MapArchitectsDropsAdditionalMapCurrency = 11797, + + /// + /// map_incursion_spawn_large_caustic_plants + /// + MapIncursionSpawnLargeCausticPlants = 11798, + + /// + /// map_incursion_spawn_parasitic_caustic_plants + /// + MapIncursionSpawnParasiticCausticPlants = 11799, + + /// + /// local_display_socketed_gems_supported_by_level_x_snipe + /// + LocalDisplaySocketedGemsSupportedByLevelXSnipe = 11800, + + /// + /// mana_cost + /// + ManaCost = 11801, + + /// + /// base_mana_cost + /// + BaseManaCost = 11802, + + /// + /// combined_support_mana_multiplier_permyriad + /// + CombinedSupportManaMultiplierPermyriad = 11803, + + /// + /// manaweave_added_lightning_damage_%_cost + /// + ManaweaveAddedLightningDamagePctCost = 11804, + + /// + /// map_incursion_tormented_spirit_random_possess + /// + MapIncursionTormentedSpiritRandomPossess = 11805, + + /// + /// local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect + /// + LocalUniqueFlaskVaalSkillCriticalStrikeChancePctDuringFlaskEffect = 11806, + + /// + /// local_flask_consumes_max_charges_on_use + /// + LocalFlaskConsumesMaxChargesOnUse = 11807, + + /// + /// local_flask_gain_charges_consumed_as_vaal_souls_on_use + /// + LocalFlaskGainChargesConsumedAsVaalSoulsOnUse = 11808, + + /// + /// arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second + /// + ArcaneCloakGainPctOfConsumedManaAsLifeRegeneratedPerSecond = 11809, + + /// + /// snipe_triggered_skill_ailment_damage_+%_final_per_stage_conditional + /// + SnipeTriggeredSkillAilmentDamagePctFinalPerStageConditional = 11810, + + /// + /// snipe_triggered_skill_ailment_damage_+%_final_per_stage + /// + SnipeTriggeredSkillAilmentDamagePctFinalPerStage = 11811, + + /// + /// is_snipe_default_projectile_2 + /// + IsSnipeDefaultProjectile2 = 11812, + + /// + /// keystone_herald_damage_over_time_+%_final + /// + KeystoneHeraldDamageOverTimePctFinal = 11813, + + /// + /// keystone_herald_minion_damage_+%_final + /// + KeystoneHeraldMinionDamagePctFinal = 11814, + + /// + /// map_incursion_boss_possessed_by_tormented_experimenter + /// + MapIncursionBossPossessedByTormentedExperimenter = 11815, + + /// + /// map_incursion_boss_possessed_by_tormented_blasphemer + /// + MapIncursionBossPossessedByTormentedBlasphemer = 11816, + + /// + /// map_incursion_boss_possessed_by_tormented_necromancer + /// + MapIncursionBossPossessedByTormentedNecromancer = 11817, + + /// + /// map_incursion_boss_possessed_by_tormented_arsonist + /// + MapIncursionBossPossessedByTormentedArsonist = 11818, + + /// + /// map_incursion_boss_possessed_by_tormented_thief + /// + MapIncursionBossPossessedByTormentedThief = 11819, + + /// + /// map_incursion_boss_possessed_by_tormented_mutilator + /// + MapIncursionBossPossessedByTormentedMutilator = 11820, + + /// + /// map_incursion_boss_possessed_by_tormented_charlatan + /// + MapIncursionBossPossessedByTormentedCharlatan = 11821, + + /// + /// map_incursion_boss_possessed_by_tormented_cannibal + /// + MapIncursionBossPossessedByTormentedCannibal = 11822, + + /// + /// map_incursion_boss_possessed_by_tormented_poisoner + /// + MapIncursionBossPossessedByTormentedPoisoner = 11823, + + /// + /// map_incursion_boss_possessed_by_tormented_corrupter + /// + MapIncursionBossPossessedByTormentedCorrupter = 11824, + + /// + /// map_incursion_boss_possessed_by_tormented_thug + /// + MapIncursionBossPossessedByTormentedThug = 11825, + + /// + /// map_incursion_boss_possessed_by_tormented_rogue + /// + MapIncursionBossPossessedByTormentedRogue = 11826, + + /// + /// map_incursion_boss_possessed_by_tormented_fisherman + /// + MapIncursionBossPossessedByTormentedFisherman = 11827, + + /// + /// map_incursion_boss_possessed_by_tormented_librarian + /// + MapIncursionBossPossessedByTormentedLibrarian = 11828, + + /// + /// map_incursion_boss_possessed_by_tormented_cutthroat + /// + MapIncursionBossPossessedByTormentedCutthroat = 11829, + + /// + /// map_incursion_boss_possessed_by_tormented_spy + /// + MapIncursionBossPossessedByTormentedSpy = 11830, + + /// + /// map_incursion_boss_possessed_by_tormented_martyr + /// + MapIncursionBossPossessedByTormentedMartyr = 11831, + + /// + /// map_incursion_boss_possessed_by_tormented_embezzler + /// + MapIncursionBossPossessedByTormentedEmbezzler = 11832, + + /// + /// map_incursion_boss_possessed_by_tormented_counterfeiter + /// + MapIncursionBossPossessedByTormentedCounterfeiter = 11833, + + /// + /// map_incursion_boss_possessed_by_tormented_warlord + /// + MapIncursionBossPossessedByTormentedWarlord = 11834, + + /// + /// map_incursion_boss_possessed_by_tormented_freezer + /// + MapIncursionBossPossessedByTormentedFreezer = 11835, + + /// + /// map_incursion_boss_possessed_by_tormented_smuggler + /// + MapIncursionBossPossessedByTormentedSmuggler = 11836, + + /// + /// minion_critical_strike_chance_+% + /// + MinionCriticalStrikeChancePct = 11837, + + /// + /// theoretical_number_of_forks + /// + TheoreticalNumberOfForks = 11838, + + /// + /// kinetic_bolt_number_of_zig_zags + /// + KineticBoltNumberOfZigZags = 11839, + + /// + /// kinetic_bolt_forks_apply_to_zig_zags + /// + KineticBoltForksApplyToZigZags = 11840, + + /// + /// map_simulacrum_reward_level_+ + /// + MapSimulacrumRewardLevel = 11841, + + /// + /// map_monsters_accuracy_rating_+%_hidden + /// + MapMonstersAccuracyRatingPctHidden = 11842, + + /// + /// projectile_spiral_end_on_death + /// + ProjectileSpiralEndOnDeath = 11843, + + /// + /// is_warband_leader + /// + IsWarbandLeader = 11844, + + /// + /// bladefall_volleys_needed_per_vestige_blade + /// + BladefallVolleysNeededPerVestigeBlade = 11845, + + /// + /// ethereal_knives_projectiles_needed_per_vestige_blade + /// + EtherealKnivesProjectilesNeededPerVestigeBlade = 11846, + + /// + /// kinetic_bolt_projectile_speed_+% + /// + KineticBoltProjectileSpeedPct = 11847, + + /// + /// kinetic_bolt_attack_speed_+% + /// + KineticBoltAttackSpeedPct = 11848, + + /// + /// blade_blast_skill_area_of_effect_+% + /// + BladeBlastSkillAreaOfEffectPct = 11849, + + /// + /// blade_blast_trigger_detonation_area_of_effect_+% + /// + BladeBlastTriggerDetonationAreaOfEffectPct = 11850, + + /// + /// blade_blase_damage_+% + /// + BladeBlaseDamagePct = 11851, + + /// + /// stormbind_skill_area_of_effect_+% + /// + StormbindSkillAreaOfEffectPct = 11852, + + /// + /// stormbind_skill_damage_+% + /// + StormbindSkillDamagePct = 11853, + + /// + /// rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown + /// + RuneBlastTeleportsToDetonatedRuneWith150MsCooldown = 11854, + + /// + /// rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown + /// + RuneBlastTeleportsToDetonatedRuneWith100MsCooldown = 11855, + + /// + /// spellslinger_mana_reservation_+% + /// + SpellslingerManaReservationPct = 11856, + + /// + /// spellslinger_cooldown_duration_+% + /// + SpellslingerCooldownDurationPct = 11857, + + /// + /// display_additional_projectile_per_4_mines_in_detonation_sequence + /// + DisplayAdditionalProjectilePer4MinesInDetonationSequence = 11858, + + /// + /// life_regeneration_rate_per_minute_%_while_stationary + /// + LifeRegenerationRatePerMinutePctWhileStationary = 11859, + + /// + /// spellslinger_mana_reservation + /// + SpellslingerManaReservation = 11860, + + /// + /// additional_insanity_effects_while_delirious + /// + AdditionalInsanityEffectsWhileDelirious = 11861, + + /// + /// local_affliction_jewel_display_small_nodes_grant_nothing + /// + LocalAfflictionJewelDisplaySmallNodesGrantNothing = 11862, + + /// + /// map_incursion_tormented_spirit_random_possess_2 + /// + MapIncursionTormentedSpiritRandomPossess2 = 11863, + + /// + /// is_betrayal_target + /// + IsBetrayalTarget = 11864, + + /// + /// is_incursion_architect + /// + IsIncursionArchitect = 11865, + + /// + /// is_bestiary_red_beast + /// + IsBestiaryRedBeast = 11866, + + /// + /// glorious_madness_timer_ms + /// + GloriousMadnessTimerMs = 11867, + + /// + /// embrace_madness_amount_of_cooldown_to_gain_ms + /// + EmbraceMadnessAmountOfCooldownToGainMs = 11868, + + /// + /// map_death_and_taxes_boss_drops_additional_currency + /// + MapDeathAndTaxesBossDropsAdditionalCurrency = 11869, + + /// + /// meta_skill_mana_reservation_override_% + /// + MetaSkillManaReservationOverridePct = 11870, + + /// + /// mana_reservation + /// + ManaReservation = 11871, + + /// + /// keystone_veterans_awareness + /// + KeystoneVeteransAwareness = 11872, + + /// + /// combined_attack_and_cast_speed_+% + /// + CombinedAttackAndCastSpeedPct = 11873, + + /// + /// animate_weapon_art_variation + /// + AnimateWeaponArtVariation = 11874, + + /// + /// virtual_total_main_hand_chance_to_explode_enemy_on_kill_by_attack_% + /// + VirtualTotalMainHandChanceToExplodeEnemyOnKillByAttackPct = 11875, + + /// + /// virtual_total_off_hand_chance_to_explode_enemy_on_kill_by_attack_% + /// + VirtualTotalOffHandChanceToExplodeEnemyOnKillByAttackPct = 11876, + + /// + /// monster_affliction_depth + /// + MonsterAfflictionDepth = 11877, + + /// + /// bloodstained_banner_stage_count + /// + BloodstainedBannerStageCount = 11878, + + /// + /// puresteel_banner_stage_count + /// + PuresteelBannerStageCount = 11879, + + /// + /// virtual_movement_velocity_+%_final + /// + VirtualMovementVelocityPctFinal = 11880, + + /// + /// triggered_by_brand_support + /// + TriggeredByBrandSupport = 11881, + + /// + /// map_harvest_league + /// + MapHarvestLeague = 11882, + + /// + /// support_brand_damage_+%_final + /// + SupportBrandDamagePctFinal = 11883, + + /// + /// support_brand_area_of_effect_+%_final + /// + SupportBrandAreaOfEffectPctFinal = 11884, + + /// + /// izaro_charge_damage_+%_final + /// + IzaroChargeDamagePctFinal = 11885, + + /// + /// local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius + /// + LocalJewelMagmaOrbDamagePctFinalPerChainWith40IntInRadius = 11886, + + /// + /// threshold_jewel_magma_orb_damage_+%_final_per_chain + /// + ThresholdJewelMagmaOrbDamagePctFinalPerChain = 11887, + + /// + /// skill_damage_+%_final_per_chain_from_skill_specific_stat + /// + SkillDamagePctFinalPerChainFromSkillSpecificStat = 11888, + + /// + /// local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius + /// + LocalJewelMagmaOrbDamagePctFinalWith40IntInRadius = 11889, + + /// + /// threshold_jewel_magma_orb_damage_+%_final + /// + ThresholdJewelMagmaOrbDamagePctFinal = 11890, + + /// + /// skill_damage_+%_final_from_skill_specific_stat + /// + SkillDamagePctFinalFromSkillSpecificStat = 11891, + + /// + /// local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius + /// + LocalJewelMoltenStrikeProjectilesChainWhenImpactingGroundWith40StrInRadius = 11892, + + /// + /// threshold_jewel_molten_strike_projectiles_chain_when_impacting_ground + /// + ThresholdJewelMoltenStrikeProjectilesChainWhenImpactingGround = 11893, + + /// + /// molten_strike_projectiles_chain_when_impacting_ground + /// + MoltenStrikeProjectilesChainWhenImpactingGround = 11894, + + /// + /// local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius + /// + LocalJewelMoltenStrikeProjectilesChainCountWith40StrInRadius = 11895, + + /// + /// molten_strike_chain_count_+ + /// + MoltenStrikeChainCount = 11896, + + /// + /// local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius + /// + LocalJewelMoltenStrikeProjectilesCountPctFinalWith40StrInRadius = 11897, + + /// + /// threshold_jewel_molten_strike_damage_projectile_count_+%_final + /// + ThresholdJewelMoltenStrikeDamageProjectileCountPctFinal = 11898, + + /// + /// cast_on_melee_hit_if_cursed_% + /// + CastOnMeleeHitIfCursedPct = 11899, + + /// + /// pantheon_shakari_self_poison_duration_+%_final + /// + PantheonShakariSelfPoisonDurationPctFinal = 11900, + + /// + /// cannot_be_poisoned_if_x_poisons_on_you + /// + CannotBePoisonedIfXPoisonsOnYou = 11901, + + /// + /// virtual_cannot_be_poisoned + /// + VirtualCannotBePoisoned = 11902, + + /// + /// keystone_oasis + /// + KeystoneOasis = 11903, + + /// + /// keystone_supreme_prodigy + /// + KeystoneSupremeProdigy = 11904, + + /// + /// combined_flask_effect_pluspercent_final + /// + CombinedFlaskEffectPluspercentFinal = 11905, + + /// + /// virtual_cannot_gain_flask_charges + /// + VirtualCannotGainFlaskCharges = 11906, + + /// + /// local_jewel_fireball_cannot_ignite + /// + LocalJewelFireballCannotIgnite = 11907, + + /// + /// fireball_cannot_ignite + /// + FireballCannotIgnite = 11908, + + /// + /// local_jewel_fireball_chance_to_scorch_% + /// + LocalJewelFireballChanceToScorchPct = 11909, + + /// + /// fireball_chance_to_scorch_% + /// + FireballChanceToScorchPct = 11910, + + /// + /// tectonic_slam_side_crack_additional_chance_%_per_endurance_charge + /// + TectonicSlamSideCrackAdditionalChancePctPerEnduranceCharge = 11911, + + /// + /// active_skill_area_of_effect_+%_final_per_endurance_charge + /// + ActiveSkillAreaOfEffectPctFinalPerEnduranceCharge = 11912, + + /// + /// global_no_attribute_requirements + /// + GlobalNoAttributeRequirements = 11913, + + /// + /// rallying_cry_damage_+%_final_from_osm_per_nearby_ally + /// + RallyingCryDamagePctFinalFromOsmPerNearbyAlly = 11914, + + /// + /// skill_empowers_next_x_melee_attacks + /// + SkillEmpowersNextXMeleeAttacks = 11915, + + /// + /// rallying_cry_weapon_damage_%_for_allies_per_5_monster_power + /// + RallyingCryWeaponDamagePctForAlliesPer5MonsterPower = 11916, + + /// + /// rallying_cry_damage_+%_final + /// + RallyingCryDamagePctFinal = 11917, + + /// + /// chaining_range_+% + /// + ChainingRangePct = 11918, + + /// + /// trigger_context_hit_damage_+%_final + /// + TriggerContextHitDamagePctFinal = 11919, + + /// + /// cannot_gain_rage_from_bloodscent + /// + CannotGainRageFromBloodscent = 11920, + + /// + /// gain_frenzy_charge_on_critical_strike_at_close_range_% + /// + GainFrenzyChargeOnCriticalStrikeAtCloseRangePct = 11921, + + /// + /// bleeding_dot_multiplier_per_frenzy_charge_+ + /// + BleedingDotMultiplierPerFrenzyCharge = 11922, + + /// + /// virtual_bleeding_dot_multiplier_per_frenzy_charge_+ + /// + VirtualBleedingDotMultiplierPerFrenzyCharge = 11923, + + /// + /// infernal_cry_%_max_life_as_fire_on_death + /// + InfernalCryPctMaxLifeAsFireOnDeath = 11924, + + /// + /// infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power + /// + InfernalCryCoveredInAshFireDamageTakenPctPer5MonsterPower = 11925, + + /// + /// detonating_brand_hit_damage_+%_final + /// + DetonatingBrandHitDamagePctFinal = 11926, + + /// + /// brand_detonate_detonating_brand_all_damage_+%_final + /// + BrandDetonateDetonatingBrandAllDamagePctFinal = 11927, + + /// + /// brand_detonate_detonating_brand_area_of_effect_+%_final + /// + BrandDetonateDetonatingBrandAreaOfEffectPctFinal = 11928, + + /// + /// keystone_focused_rage + /// + KeystoneFocusedRage = 11929, + + /// + /// cannot_lose_rage_from_focused_rage + /// + CannotLoseRageFromFocusedRage = 11930, + + /// + /// total_base_rage_regeneration_rate_per_minute + /// + TotalBaseRageRegenerationRatePerMinute = 11931, + + /// + /// virtual_rage_regeneration_rate_+% + /// + VirtualRageRegenerationRatePct = 11932, + + /// + /// virtual_rage_regeneration_rate_per_minute + /// + VirtualRageRegenerationRatePerMinute = 11933, + + /// + /// combined_mana_regeneration_rate_+% + /// + CombinedManaRegenerationRatePct = 11934, + + /// + /// brand_detonate_cast_speed_+%_for_osm + /// + BrandDetonateCastSpeedPctForOsm = 11935, + + /// + /// have_changed_stance_recently + /// + HaveChangedStanceRecently = 11936, + + /// + /// blood_spears_additional_number_of_spears_if_changed_stance_recently + /// + BloodSpearsAdditionalNumberOfSpearsIfChangedStanceRecently = 11937, + + /// + /// virtual_blood_spears_total_number_of_spears + /// + VirtualBloodSpearsTotalNumberOfSpears = 11938, + + /// + /// seismic_cry_+%_enemy_stun_threshold_per_5_MP + /// + SeismicCryPctEnemyStunThresholdPer5MP = 11939, + + /// + /// seismic_cry_base_slam_skill_area_+% + /// + SeismicCryBaseSlamSkillAreaPct = 11940, + + /// + /// seismic_cry_base_slam_skill_damage_+%_final + /// + SeismicCryBaseSlamSkillDamagePctFinal = 11941, + + /// + /// blood_spears_aoe_modifiers_apply_to_blood_spear_placement_range_at_%_value + /// + BloodSpearsAoeModifiersApplyToBloodSpearPlacementRangeAtPctValue = 11942, + + /// + /// ancestral_cry_x_melee_range_per_5_monster_power + /// + AncestralCryXMeleeRangePer5MonsterPower = 11943, + + /// + /// ancestral_cry_empowered_attacks_strike_X_additional_enemies + /// + AncestralCryEmpoweredAttacksStrikeXAdditionalEnemies = 11944, + + /// + /// ancestral_cry_physical_damage_reduction_rating_per_5_MP + /// + AncestralCryPhysicalDamageReductionRatingPer5MP = 11945, + + /// + /// brand_detonate_brand_cast_speed_+% + /// + BrandDetonateBrandCastSpeedPct = 11946, + + /// + /// base_buff_duration_ms_+_per_brand + /// + BaseBuffDurationMsPerBrand = 11947, + + /// + /// current_number_of_active_trigger_sigils + /// + CurrentNumberOfActiveTriggerSigils = 11948, + + /// + /// current_number_of_inactive_trigger_sigils + /// + CurrentNumberOfInactiveTriggerSigils = 11949, + + /// + /// triggered_by_infernal_cry + /// + TriggeredByInfernalCry = 11950, + + /// + /// current_number_of_active_magma_sigils + /// + CurrentNumberOfActiveMagmaSigils = 11951, + + /// + /// current_number_of_inactive_magma_sigils + /// + CurrentNumberOfInactiveMagmaSigils = 11952, + + /// + /// current_number_of_active_immolation_sigils + /// + CurrentNumberOfActiveImmolationSigils = 11953, + + /// + /// current_number_of_inactive_immolation_sigils + /// + CurrentNumberOfInactiveImmolationSigils = 11954, + + /// + /// skill_is_slam_skill + /// + SkillIsSlamSkill = 11955, + + /// + /// spiritual_cry_doubles_summoned_per_5_MP + /// + SpiritualCryDoublesSummonedPer5MP = 11956, + + /// + /// triggered_by_spiritual_cry + /// + TriggeredBySpiritualCry = 11957, + + /// + /// maximum_number_of_spiritual_cry_warriors + /// + MaximumNumberOfSpiritualCryWarriors = 11958, + + /// + /// number_of_active_spiritual_cry_warriors + /// + NumberOfActiveSpiritualCryWarriors = 11959, + + /// + /// tertiary_buff_effect_duration + /// + TertiaryBuffEffectDuration = 11960, + + /// + /// seismic_cry_slam_skill_area_+%_increase_per_repeat + /// + SeismicCrySlamSkillAreaPctIncreasePerRepeat = 11961, + + /// + /// seismic_cry_slam_skill_damage_+%_final_increase_per_repeat + /// + SeismicCrySlamSkillDamagePctFinalIncreasePerRepeat = 11962, + + /// + /// skill_empower_limitation_specifier_for_stat_description + /// + SkillEmpowerLimitationSpecifierForStatDescription = 11963, + + /// + /// cannot_penetrate_or_ignore_elemental_resistances + /// + CannotPenetrateOrIgnoreElementalResistances = 11964, + + /// + /// enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits + /// + EnemiesWitheredByYouTakePctIncreasedElementalDamageFromYourHits = 11965, + + /// + /// current_number_of_attached_magma_pustules + /// + CurrentNumberOfAttachedMagmaPustules = 11966, + + /// + /// magma_brand_hit_damage_+%_final_per_additional_pustule + /// + MagmaBrandHitDamagePctFinalPerAdditionalPustule = 11967, + + /// + /// armour_applies_to_physical_damage + /// + ArmourAppliesToPhysicalDamage = 11968, + + /// + /// armour_applies_to_fire_damage + /// + ArmourAppliesToFireDamage = 11969, + + /// + /// armour_applies_to_cold_damage + /// + ArmourAppliesToColdDamage = 11970, + + /// + /// armour_applies_to_lightning_damage + /// + ArmourAppliesToLightningDamage = 11971, + + /// + /// armour_applies_to_chaos_damage + /// + ArmourAppliesToChaosDamage = 11972, + + /// + /// lightning_resistance_does_not_apply_to_lighting_damage + /// + LightningResistanceDoesNotApplyToLightingDamage = 11973, + + /// + /// base_armour_applies_to_lightning_damage + /// + BaseArmourAppliesToLightningDamage = 11974, + + /// + /// keystone_prismatic_bulwark + /// + KeystonePrismaticBulwark = 11975, + + /// + /// base_armour_applies_to_chaos_damage + /// + BaseArmourAppliesToChaosDamage = 11976, + + /// + /// local_display_socketed_gems_get_chance_to_bleed_level + /// + LocalDisplaySocketedGemsGetChanceToBleedLevel = 11977, + + /// + /// create_herald_of_thunder_storm_on_shocking_enemy + /// + CreateHeraldOfThunderStormOnShockingEnemy = 11978, + + /// + /// take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy + /// + TakeXLightningDamageWhenHeraldOfThunderHitsAnEnemy = 11979, + + /// + /// support_ancestral_slam_big_hit_max_count + /// + SupportAncestralSlamBigHitMaxCount = 11980, + + /// + /// support_ancestral_slam_big_hit_hit_damage_+%_final + /// + SupportAncestralSlamBigHitHitDamagePctFinal = 11981, + + /// + /// hit_damage_+%_final_from_ancestral_slam_blow + /// + HitDamagePctFinalFromAncestralSlamBlow = 11982, + + /// + /// ancestral_slam_interval_duration + /// + AncestralSlamIntervalDuration = 11983, + + /// + /// support_ancestral_slam_big_hit_area_+% + /// + SupportAncestralSlamBigHitAreaPct = 11984, + + /// + /// melee_splash_fire_damage_only + /// + MeleeSplashFireDamageOnly = 11985, + + /// + /// summon_raging_spirit_melee_splash_fire_damage_only + /// + SummonRagingSpiritMeleeSplashFireDamageOnly = 11986, + + /// + /// virtual_insanity + /// + VirtualInsanity = 11987, + + /// + /// krillsons_choice + /// + KrillsonsChoice = 11988, + + /// + /// base_physical_damage_%_to_convert_to_chaos_per_level + /// + BasePhysicalDamagePctToConvertToChaosPerLevel = 11989, + + /// + /// local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed + /// + LocalUniqueJewelSkillsInRadiusGrantPctUnarmedMeleeAttackSpeed = 11990, + + /// + /// damage_originates_from_initiator_location + /// + DamageOriginatesFromInitiatorLocation = 11991, + + /// + /// immolation_brand_burn_damage_+%_final_per_stage + /// + ImmolationBrandBurnDamagePctFinalPerStage = 11992, + + /// + /// virtual_maximum_fragile_regrowth + /// + VirtualMaximumFragileRegrowth = 11993, + + /// + /// current_fragile_regrowth + /// + CurrentFragileRegrowth = 11994, + + /// + /// base_maximum_fragile_regrowth + /// + BaseMaximumFragileRegrowth = 11995, + + /// + /// life_regeneration_rate_per_minute_%_per_fragile_regrowth + /// + LifeRegenerationRatePerMinutePctPerFragileRegrowth = 11996, + + /// + /// lose_all_fragile_regrowth_when_hit + /// + LoseAllFragileRegrowthWhenHit = 11997, + + /// + /// local_display_gain_fragile_growth_each_second + /// + LocalDisplayGainFragileGrowthEachSecond = 11998, + + /// + /// killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance + /// + KilledEnemiesApplyImpaleDamageToNearbyEnemiesOnDeathPctChance = 11999, + + /// + /// energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield + /// + EnergyShieldLeechFromAttacksDoesNotStopOnFullEnergyShield = 12000, + + /// + /// wake_of_destruction_ground_lightning_duration_ms + /// + WakeOfDestructionGroundLightningDurationMs = 12001, + + /// + /// base_elemental_damage_taken_when_hit_+% + /// + BaseElementalDamageTakenWhenHitPct = 12002, + + /// + /// hit_damage_+%_final_from_additional_magma_pustules + /// + HitDamagePctFinalFromAdditionalMagmaPustules = 12003, + + /// + /// support_rapid_activation_brand_skill_only_primary_duration_+%_final + /// + SupportRapidActivationBrandSkillOnlyPrimaryDurationPctFinal = 12004, + + /// + /// support_rapid_activation_brand_skill_only_secondary_duration_+%_final + /// + SupportRapidActivationBrandSkillOnlySecondaryDurationPctFinal = 12005, + + /// + /// local_physical_damage_%_to_gain_as_cold_or_lightning + /// + LocalPhysicalDamagePctToGainAsColdOrLightning = 12006, + + /// + /// main_hand_physical_damage_%_to_gain_as_cold_or_lightning + /// + MainHandPhysicalDamagePctToGainAsColdOrLightning = 12007, + + /// + /// off_hand_physical_damage_%_to_gain_as_cold_or_lightning + /// + OffHandPhysicalDamagePctToGainAsColdOrLightning = 12008, + + /// + /// deal_no_non_lightning_damage + /// + DealNoNonLightningDamage = 12009, + + /// + /// lightning_resistance_override + /// + LightningResistanceOverride = 12010, + + /// + /// use_lightning_resistance_override + /// + UseLightningResistanceOverride = 12011, + + /// + /// nearby_enemies_lightning_resist_equal_to_yours + /// + NearbyEnemiesLightningResistEqualToYours = 12012, + + /// + /// skill_gets_brand_damage_crit_modifiers + /// + SkillGetsBrandDamageCritModifiers = 12013, + + /// + /// local_display_supported_by_level_10_spell_echo + /// + LocalDisplaySupportedByLevel10SpellEcho = 12014, + + /// + /// local_display_supported_by_level_10_intensify + /// + LocalDisplaySupportedByLevel10Intensify = 12015, + + /// + /// local_display_supported_by_level_10_controlled_destruction + /// + LocalDisplaySupportedByLevel10ControlledDestruction = 12016, + + /// + /// local_display_socketed_gems_supported_by_level_x_intensify + /// + LocalDisplaySocketedGemsSupportedByLevelXIntensify = 12017, + + /// + /// enable_warcry_skill_animation_skipping + /// + EnableWarcrySkillAnimationSkipping = 12018, + + /// + /// herald_of_thunder_bolt_base_frequency + /// + HeraldOfThunderBoltBaseFrequency = 12019, + + /// + /// herald_of_thunder_bolt_frequency_+% + /// + HeraldOfThunderBoltFrequencyPct = 12020, + + /// + /// virtual_herald_of_thunder_bolt_base_frequency + /// + VirtualHeraldOfThunderBoltBaseFrequency = 12021, + + /// + /// local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength + /// + LocalDisplayTriggerLevelXGoreShockwaveOnMeleeHitWithAtleast150Strength = 12022, + + /// + /// attack_trigger_on_melee_hit_with_atleast_150_strength_% + /// + AttackTriggerOnMeleeHitWithAtleast150StrengthPct = 12023, + + /// + /// should_have_fragile_regrowth_aura + /// + ShouldHaveFragileRegrowthAura = 12024, + + /// + /// support_rapid_activation_brand_activation_rate_+%_final + /// + SupportRapidActivationBrandActivationRatePctFinal = 12025, + + /// + /// projectile_damage_+%_in_blood_stance + /// + ProjectileDamagePctInBloodStance = 12026, + + /// + /// life_regeneration_per_minute_in_blood_stance + /// + LifeRegenerationPerMinuteInBloodStance = 12027, + + /// + /// skill_area_of_effect_+%_in_sand_stance + /// + SkillAreaOfEffectPctInSandStance = 12028, + + /// + /// evasion_rating_plus_in_sand_stance + /// + EvasionRatingPlusInSandStance = 12029, + + /// + /// local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeIntimidateOnHitWhileWieldingAxeWith40DexInRadius = 12030, + + /// + /// dual_strike_intimidate_on_hit_while_wielding_axe + /// + DualStrikeIntimidateOnHitWhileWieldingAxe = 12031, + + /// + /// intimidate_on_hit_while_wielding_axe + /// + IntimidateOnHitWhileWieldingAxe = 12032, + + /// + /// local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeMeleeSplashWhileWieldingMaceWith40DexInRadius = 12033, + + /// + /// dual_strike_melee_splash_while_wielding_mace + /// + DualStrikeMeleeSplashWhileWieldingMace = 12034, + + /// + /// melee_splash_while_wielding_mace + /// + MeleeSplashWhileWieldingMace = 12035, + + /// + /// local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeCriticalStrikeMultiplierWhileWieldingDaggerWith40DexInRadius = 12036, + + /// + /// dual_strike_critical_strike_multiplier_+_while_wielding_dagger + /// + DualStrikeCriticalStrikeMultiplierWhileWieldingDagger = 12037, + + /// + /// critical_strike_multiplier_+_while_wielding_dagger + /// + CriticalStrikeMultiplierWhileWieldingDagger = 12038, + + /// + /// local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeAccuracyRatingPctWhileWieldingSwordWith40DexInRadius = 12039, + + /// + /// dual_strike_accuracy_rating_+%_while_wielding_sword + /// + DualStrikeAccuracyRatingPctWhileWieldingSword = 12040, + + /// + /// accuracy_rating_+%_while_wielding_sword + /// + AccuracyRatingPctWhileWieldingSword = 12041, + + /// + /// local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius + /// + LocalUniqueJewelDualStrikeAttackSpeedPctWhileWieldingClawWith40DexInRadius = 12042, + + /// + /// dual_strike_attack_speed_+%_while_wielding_claw + /// + DualStrikeAttackSpeedPctWhileWieldingClaw = 12043, + + /// + /// attack_speed_+%_while_wielding_claw + /// + AttackSpeedPctWhileWieldingClaw = 12044, + + /// + /// is_wielding_sword + /// + IsWieldingSword = 12045, + + /// + /// is_wielding_axe + /// + IsWieldingAxe = 12046, + + /// + /// is_wielding_mace + /// + IsWieldingMace = 12047, + + /// + /// is_wielding_dagger + /// + IsWieldingDagger = 12048, + + /// + /// is_wielding_claw + /// + IsWieldingClaw = 12049, + + /// + /// virtual_melee_splash + /// + VirtualMeleeSplash = 12050, + + /// + /// virtual_maximum_rage + /// + VirtualMaximumRage = 12051, + + /// + /// maximum_rage_per_equipped_one_handed_sword + /// + MaximumRagePerEquippedOneHandedSword = 12052, + + /// + /// bleed_dot_multiplier_+_per_rage_if_equipped_axe + /// + BleedDotMultiplierPerRageIfEquippedAxe = 12053, + + /// + /// keystone_call_to_arms + /// + KeystoneCallToArms = 12054, + + /// + /// virtual_ignore_shared_cooldowns + /// + VirtualIgnoreSharedCooldowns = 12055, + + /// + /// local_skills_granted_by_item_are_supported_by_level_x_unique_trigger_support + /// + LocalSkillsGrantedByItemAreSupportedByLevelXUniqueTriggerSupport = 12056, + + /// + /// local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon + /// + LocalDisplayTriggerLevelXLightningWarpOnHitWithThisWeapon = 12057, + + /// + /// life_mana_es_leech_speed_+% + /// + LifeManaEsLeechSpeedPct = 12058, + + /// + /// virtual_minion_critical_strike_chance_+% + /// + VirtualMinionCriticalStrikeChancePct = 12059, + + /// + /// modifiers_to_claw_critical_strike_chance_apply_minion_critical_strike_chance + /// + ModifiersToClawCriticalStrikeChanceApplyMinionCriticalStrikeChance = 12060, + + /// + /// modifiers_to_claw_critical_strike_multiplier_apply_minion_critical_strike_multiplier + /// + ModifiersToClawCriticalStrikeMultiplierApplyMinionCriticalStrikeMultiplier = 12061, + + /// + /// virtual_minion_critical_strike_multiplier_+ + /// + VirtualMinionCriticalStrikeMultiplier = 12062, + + /// + /// spectral_wolf_grants_attack_minimum_added_physical_damage + /// + SpectralWolfGrantsAttackMinimumAddedPhysicalDamage = 12063, + + /// + /// spectral_wolf_grants_attack_maximum_added_physical_damage + /// + SpectralWolfGrantsAttackMaximumAddedPhysicalDamage = 12064, + + /// + /// local_random_support_gem_level + /// + LocalRandomSupportGemLevel = 12065, + + /// + /// local_random_support_gem_index + /// + LocalRandomSupportGemIndex = 12066, + + /// + /// active_skill_critical_strike_chance_+%_final + /// + ActiveSkillCriticalStrikeChancePctFinal = 12067, + + /// + /// local_use_skill_on_crit_% + /// + LocalUseSkillOnCritPct = 12068, + + /// + /// main_hand_use_skill_on_crit_% + /// + MainHandUseSkillOnCritPct = 12069, + + /// + /// off_hand_use_skill_on_crit_% + /// + OffHandUseSkillOnCritPct = 12070, + + /// + /// local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance + /// + LocalDisplayTriggerLevel20SummonSpectralWolfOnCritWithThisWeaponPctChance = 12071, + + /// + /// additive_minion_damage_modifiers_apply_to_you_at_%_value + /// + AdditiveMinionDamageModifiersApplyToYouAtPctValue = 12072, + + /// + /// additive_minion_damage_modifiers_apply_to_you_at_150%_value + /// + AdditiveMinionDamageModifiersApplyToYouAt150PctValue = 12073, + + /// + /// damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked + /// + DamageFromHitsAlwaysAndOnlyBypassesEnergyShieldWhenNotBlocked = 12074, + + /// + /// cannot_block_while_no_energy_shield + /// + CannotBlockWhileNoEnergyShield = 12075, + + /// + /// virtual_cannot_block_attacks + /// + VirtualCannotBlockAttacks = 12076, + + /// + /// virtual_cannot_block_spells + /// + VirtualCannotBlockSpells = 12077, + + /// + /// virtual_cannot_block + /// + VirtualCannotBlock = 12078, + + /// + /// enemies_poisoned_by_you_chaos_resistance_+% + /// + EnemiesPoisonedByYouChaosResistancePct = 12079, + + /// + /// have_cast_dash_recently + /// + HaveCastDashRecently = 12080, + + /// + /// track_have_cast_dash_recently + /// + TrackHaveCastDashRecently = 12081, + + /// + /// attack_speed_+%_if_havent_cast_dash_recently + /// + AttackSpeedPctIfHaventCastDashRecently = 12082, + + /// + /// movement_speed_+%_if_have_cast_dash_recently + /// + MovementSpeedPctIfHaveCastDashRecently = 12083, + + /// + /// your_travel_skills_except_dash_are_disabled + /// + YourTravelSkillsExceptDashAreDisabled = 12084, + + /// + /// local_display_grants_skill_dash_level + /// + LocalDisplayGrantsSkillDashLevel = 12085, + + /// + /// number_of_additional_arrows_if_havent_cast_dash_recently + /// + NumberOfAdditionalArrowsIfHaventCastDashRecently = 12086, + + /// + /// attacks_with_two_handed_weapons_impale_on_hit_%_chance + /// + AttacksWithTwoHandedWeaponsImpaleOnHitPctChance = 12087, + + /// + /// impale_inflicted_by_two_handed_weapons_debuff_effect_+% + /// + ImpaleInflictedByTwoHandedWeaponsDebuffEffectPct = 12088, + + /// + /// impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies + /// + ImpaleEffectPctForImpalesInflictedByTwoHandedWeaponsOnNonImpaledEnemies = 12089, + + /// + /// virtual_impale_debuff_effect_+% + /// + VirtualImpaleDebuffEffectPct = 12090, + + /// + /// skill_is_stance_skill + /// + SkillIsStanceSkill = 12091, + + /// + /// stance_skill_cooldown_speed_+% + /// + StanceSkillCooldownSpeedPct = 12092, + + /// + /// damage_+%_while_in_blood_stance + /// + DamagePctWhileInBloodStance = 12093, + + /// + /// attack_speed_+%_if_changed_stance_recently + /// + AttackSpeedPctIfChangedStanceRecently = 12094, + + /// + /// withered_effect_+% + /// + WitheredEffectPct = 12095, + + /// + /// projectile_damage_+%_max_before_distance_increase + /// + ProjectileDamagePctMaxBeforeDistanceIncrease = 12096, + + /// + /// virtual_maximum_life_%_to_convert_to_maximum_energy_shield + /// + VirtualMaximumLifePctToConvertToMaximumEnergyShield = 12097, + + /// + /// maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance + /// + MaximumLifePctToConvertToMaximumEnergyShieldPer1PctChaosResistance = 12098, + + /// + /// minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance + /// + MinionMaximumLifePctToConvertToMaximumEnergyShieldPer1PctChaosResistance = 12099, + + /// + /// minion_chaos_damage_does_not_bypass_energy_shield + /// + MinionChaosDamageDoesNotBypassEnergyShield = 12100, + + /// + /// virtual_hits_ignore_enemy_elemental_resistances + /// + VirtualHitsIgnoreEnemyElementalResistances = 12101, + + /// + /// hits_ignore_enemy_elemental_resistances_while_has_energy_shield + /// + HitsIgnoreEnemyElementalResistancesWhileHasEnergyShield = 12102, + + /// + /// minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield + /// + MinionHitsIgnoreEnemyElementalResistancesWhileHasEnergyShield = 12103, + + /// + /// minion_critical_strike_multiplier_+ + /// + MinionCriticalStrikeMultiplier = 12104, + + /// + /// attack_damage_+%_when_on_full_life + /// + AttackDamagePctWhenOnFullLife = 12105, + + /// + /// impaled_debuff_duration_+% + /// + ImpaledDebuffDurationPct = 12106, + + /// + /// virtual_impaled_debuff_duration_ms + /// + VirtualImpaledDebuffDurationMs = 12107, + + /// + /// local_random_support_gem_level_1 + /// + LocalRandomSupportGemLevel1 = 12108, + + /// + /// local_random_support_gem_index_1 + /// + LocalRandomSupportGemIndex1 = 12109, + + /// + /// blind_does_not_affect_chance_to_hit + /// + BlindDoesNotAffectChanceToHit = 12110, + + /// + /// blind_does_not_affect_light_radius + /// + BlindDoesNotAffectLightRadius = 12111, + + /// + /// virtual_blind_does_not_affect_light_radius + /// + VirtualBlindDoesNotAffectLightRadius = 12112, + + /// + /// blind_reflected_to_self + /// + BlindReflectedToSelf = 12113, + + /// + /// curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask + /// + CurseEffectOnSelfPctWhileUnderEffectOfLifeOrManaFlask = 12114, + + /// + /// non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask + /// + NonDamagingAilmentEffectPctOnSelfWhileUnderEffectOfLifeOrManaFlask = 12115, + + /// + /// virtual_curse_effect_on_self_+% + /// + VirtualCurseEffectOnSelfPct = 12116, + + /// + /// virtual_non_damaging_ailment_effect_+%_on_self + /// + VirtualNonDamagingAilmentEffectPctOnSelf = 12117, + + /// + /// raging_spirits_refresh_duration_on_hit_vs_unique_%_chance + /// + RagingSpiritsRefreshDurationOnHitVsUniquePctChance = 12118, + + /// + /// phantasm_refresh_duration_on_hit_vs_unique_%_chance + /// + PhantasmRefreshDurationOnHitVsUniquePctChance = 12119, + + /// + /// remove_x_curses_after_channelling_for_2_seconds + /// + RemoveXCursesAfterChannellingFor2Seconds = 12120, + + /// + /// frenzy_charge_blood_dance_art_variation + /// + FrenzyChargeBloodDanceArtVariation = 12121, + + /// + /// local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+% + /// + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantManaCostPct = 12122, + + /// + /// local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+% + /// + LocalUniqueJewelNotablePassivesInRadiusInsteadGrantSpellDamagePct = 12123, + + /// + /// faster_bleed_per_frenzy_charge_% + /// + FasterBleedPerFrenzyChargePct = 12124, + + /// + /// herald_of_purity_physical_damage_+%_final + /// + HeraldOfPurityPhysicalDamagePctFinal = 12125, + + /// + /// melee_splash_area_of_effect_+% + /// + MeleeSplashAreaOfEffectPct = 12126, + + /// + /// armour_+_per_10_unreserved_max_mana + /// + ArmourPer10UnreservedMaxMana = 12127, + + /// + /// rage_decay_speed_+% + /// + RageDecaySpeedPct = 12128, + + /// + /// damage_hit_effect_index + /// + DamageHitEffectIndex = 12129, + + /// + /// enemies_blinded_by_you_have_malediction + /// + EnemiesBlindedByYouHaveMalediction = 12130, + + /// + /// enemies_blinded_by_you_while_blinded_have_malediction + /// + EnemiesBlindedByYouWhileBlindedHaveMalediction = 12131, + + /// + /// life_regeneration_rate_per_minute_%_if_consumed_corpse_recently + /// + LifeRegenerationRatePerMinutePctIfConsumedCorpseRecently = 12132, + + /// + /// keystone_soul_tether + /// + KeystoneSoulTether = 12133, + + /// + /// virtual_energy_shield_lost_per_minute_% + /// + VirtualEnergyShieldLostPerMinutePct = 12134, + + /// + /// virtual_start_at_zero_energy_shield + /// + VirtualStartAtZeroEnergyShield = 12135, + + /// + /// virtual_life_leech_applies_to_energy_shield_on_full_life + /// + VirtualLifeLeechAppliesToEnergyShieldOnFullLife = 12136, + + /// + /// curse_aura_skill_area_of_effect_+% + /// + CurseAuraSkillAreaOfEffectPct = 12137, + + /// + /// on_profane_ground + /// + OnProfaneGround = 12138, + + /// + /// create_profane_ground_instead_of_consecrated_ground + /// + CreateProfaneGroundInsteadOfConsecratedGround = 12139, + + /// + /// unholy_might_while_you_have_no_energy_shield + /// + UnholyMightWhileYouHaveNoEnergyShield = 12140, + + /// + /// have_unholy_might + /// + HaveUnholyMight = 12141, + + /// + /// ancestral_cry_max_physical_damage_reduction_rating + /// + AncestralCryMaxPhysicalDamageReductionRating = 12142, + + /// + /// evasion_rating_+%_if_have_not_been_hit_recently + /// + EvasionRatingPctIfHaveNotBeenHitRecently = 12143, + + /// + /// avoid_impale_% + /// + AvoidImpalePct = 12144, + + /// + /// brand_detonate_detonating_brand_hit_damage_+%_final_per_remaining_activation + /// + BrandDetonateDetonatingBrandHitDamagePctFinalPerRemainingActivation = 12145, + + /// + /// detonating_brand_all_damage_+%_final + /// + DetonatingBrandAllDamagePctFinal = 12146, + + /// + /// trigger_context_all_damage_+%_final + /// + TriggerContextAllDamagePctFinal = 12147, + + /// + /// additional_number_of_brands_to_create + /// + AdditionalNumberOfBrandsToCreate = 12148, + + /// + /// virtual_added_cooldown_count + /// + VirtualAddedCooldownCount = 12149, + + /// + /// trap_skill_added_cooldown_count + /// + TrapSkillAddedCooldownCount = 12150, + + /// + /// recover_%_of_maximum_mana_over_1_second_on_guard_skill_use + /// + RecoverPctOfMaximumManaOver1SecondOnGuardSkillUse = 12151, + + /// + /// skill_area_of_effect_+%_final_in_sand_stance + /// + SkillAreaOfEffectPctFinalInSandStance = 12152, + + /// + /// is_empowered + /// + IsEmpowered = 12153, + + /// + /// while_curse_is_33%_expired_malediction + /// + WhileCurseIs33PctExpiredMalediction = 12154, + + /// + /// placed_banner_attack_damage_+% + /// + PlacedBannerAttackDamagePct = 12155, + + /// + /// chance_to_fork_extra_projectile_% + /// + ChanceToForkExtraProjectilePct = 12156, + + /// + /// forking_angle_+% + /// + ForkingAnglePct = 12157, + + /// + /// projectile_damage_+%_vs_chained_enemy + /// + ProjectileDamagePctVsChainedEnemy = 12158, + + /// + /// non_cursed_enemies_you_curse_are_blinded_for_4_seconds + /// + NonCursedEnemiesYouCurseAreBlindedFor4Seconds = 12159, + + /// + /// local_display_trigger_level_x_stalking_pustule_on_kill + /// + LocalDisplayTriggerLevelXStalkingPustuleOnKill = 12160, + + /// + /// empowered_attack_damage_+% + /// + EmpoweredAttackDamagePct = 12161, + + /// + /// virtual_taunted_enemies_damage_taken_+% + /// + VirtualTauntedEnemiesDamageTakenPct = 12162, + + /// + /// taunted_enemies_by_warcry_damage_taken_+% + /// + TauntedEnemiesByWarcryDamageTakenPct = 12163, + + /// + /// remove_random_ailment_when_you_warcry + /// + RemoveRandomAilmentWhenYouWarcry = 12164, + + /// + /// warcry_monster_power_+% + /// + WarcryMonsterPowerPct = 12165, + + /// + /// damage_+%_per_warcry_used_recently + /// + DamagePctPerWarcryUsedRecently = 12166, + + /// + /// wither_expire_speed_+% + /// + WitherExpireSpeedPct = 12167, + + /// + /// guard_skill_effect_duration_+% + /// + GuardSkillEffectDurationPct = 12168, + + /// + /// volatile_dead_core_explosion_radius_+ + /// + VolatileDeadCoreExplosionRadius = 12169, + + /// + /// support_spiritual_cry_damage_+%_final + /// + SupportSpiritualCryDamagePctFinal = 12170, + + /// + /// keystone_impale + /// + KeystoneImpale = 12171, + + /// + /// spike_slam_explosion_damage_+%_final + /// + SpikeSlamExplosionDamagePctFinal = 12172, + + /// + /// warcry_gain_mp_from_allies + /// + WarcryGainMpFromAllies = 12173, + + /// + /// warcry_gain_mp_from_corpses + /// + WarcryGainMpFromCorpses = 12174, + + /// + /// gain_alchemists_genius_on_flask_use + /// + GainAlchemistsGeniusOnFlaskUse = 12175, + + /// + /// flask_effect_on_self_+% + /// + FlaskEffectOnSelfPct = 12176, + + /// + /// virtual_chance_to_double_armour_effect_on_hit_% + /// + VirtualChanceToDoubleArmourEffectOnHitPct = 12177, + + /// + /// keystone_sacred_bastion + /// + KeystoneSacredBastion = 12178, + + /// + /// virtual_maximum_physical_damage_reduction_% + /// + VirtualMaximumPhysicalDamageReductionPct = 12179, + + /// + /// evasion_rating_+%_if_have_cast_dash_recently + /// + EvasionRatingPctIfHaveCastDashRecently = 12180, + + /// + /// rallying_cry_buff_effect_on_minions_+%_final + /// + RallyingCryBuffEffectOnMinionsPctFinal = 12181, + + /// + /// penance_brand_base_spread_radius_+ + /// + PenanceBrandBaseSpreadRadius = 12182, + + /// + /// trigger_brand_support_hit_ailment_damage_+%_final_vs_branded_enemy + /// + TriggerBrandSupportHitAilmentDamagePctFinalVsBrandedEnemy = 12183, + + /// + /// damage_+%_final_from_trigger_brand_support + /// + DamagePctFinalFromTriggerBrandSupport = 12184, + + /// + /// brands_reattach_on_activation + /// + BrandsReattachOnActivation = 12185, + + /// + /// cover_in_ash_on_hit_%_while_you_are_burning + /// + CoverInAshOnHitPctWhileYouAreBurning = 12186, + + /// + /// cannot_be_chilled_while_burning + /// + CannotBeChilledWhileBurning = 12187, + + /// + /// mine_%_chance_to_detonate_twice + /// + MinePctChanceToDetonateTwice = 12188, + + /// + /// gain_power_charge_on_mana_flask_use_%_chance + /// + GainPowerChargeOnManaFlaskUsePctChance = 12189, + + /// + /// warcry_count_power_from_enemies + /// + WarcryCountPowerFromEnemies = 12190, + + /// + /// has_onslaught_if_totem_summoned_recently + /// + HasOnslaughtIfTotemSummonedRecently = 12191, + + /// + /// lightning_warp_use_non_screen_shake_effects + /// + LightningWarpUseNonScreenShakeEffects = 12192, + + /// + /// local_display_grants_skill_brand_detonate_level + /// + LocalDisplayGrantsSkillBrandDetonateLevel = 12193, + + /// + /// sentinel_minion_cooldown_speed_+% + /// + SentinelMinionCooldownSpeedPct = 12194, + + /// + /// projectile_maximum_range_override + /// + ProjectileMaximumRangeOverride = 12195, + + /// + /// nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash + /// + NearbyEnemiesHaveFireExposureWhileYouAreAffectedByHeraldOfAsh = 12196, + + /// + /// nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice + /// + NearbyEnemiesHaveColdExposureWhileYouAreAffectedByHeraldOfIce = 12197, + + /// + /// nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder + /// + NearbyEnemiesHaveLightningExposureWhileYouAreAffectedByHeraldOfThunder = 12198, + + /// + /// empowered_attack_accuracy_rating_+% + /// + EmpoweredAttackAccuracyRatingPct = 12199, + + /// + /// cannot_be_ignited_if_you_have_been_ignited_recently + /// + CannotBeIgnitedIfYouHaveBeenIgnitedRecently = 12200, + + /// + /// cannot_be_shocked_if_you_have_been_shocked_recently + /// + CannotBeShockedIfYouHaveBeenShockedRecently = 12201, + + /// + /// track_have_been_ignited_recently + /// + TrackHaveBeenIgnitedRecently = 12202, + + /// + /// track_have_been_shocked_recently + /// + TrackHaveBeenShockedRecently = 12203, + + /// + /// have_been_ignited_recently + /// + HaveBeenIgnitedRecently = 12204, + + /// + /// have_been_shocked_recently + /// + HaveBeenShockedRecently = 12205, + + /// + /// ancestral_slam_art_variation + /// + AncestralSlamArtVariation = 12206, + + /// + /// you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry + /// + YouAndNearbyAllysGainOnslaughtFor4SecondsOnWarcry = 12207, + + /// + /// warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power + /// + WarcryChanceToGainFrenzyPowerEnduranceChargePctPerPower = 12208, + + /// + /// warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds + /// + WarcryPhysicalDamageReductionRatingPctPer5PowerFor8Seconds = 12209, + + /// + /// empowered_attack_double_damage_%_chance + /// + EmpoweredAttackDoubleDamagePctChance = 12210, + + /// + /// virtual_maximum_life_can_be_zero + /// + VirtualMaximumLifeCanBeZero = 12211, + + /// + /// minion_energy_shield_delay_-% + /// + MinionEnergyShieldDelayPct = 12212, + + /// + /// local_is_alternate_tree_jewel + /// + LocalIsAlternateTreeJewel = 12213, + + /// + /// attached_brand_additional_height + /// + AttachedBrandAdditionalHeight = 12214, + + /// + /// recover_%_maximum_life_on_killing_chilled_enemy + /// + RecoverPctMaximumLifeOnKillingChilledEnemy = 12215, + + /// + /// base_sunder_wave_delay_ms + /// + BaseSunderWaveDelayMs = 12216, + + /// + /// virtual_knockback_distance_+% + /// + VirtualKnockbackDistancePct = 12217, + + /// + /// active_skill_200%_increased_knockback_distance + /// + ActiveSkill200PctIncreasedKnockbackDistance = 12218, + + /// + /// local_flask_consume_flask_duration_+%_when_used + /// + LocalFlaskConsumeFlaskDurationPctWhenUsed = 12219, + + /// + /// map_doesnt_consume_sextant_use + /// + MapDoesntConsumeSextantUse = 12220, + + /// + /// map_random_zana_mod + /// + MapRandomZanaMod = 12221, + + /// + /// map_boss_surrounded_by_tormented_spirits + /// + MapBossSurroundedByTormentedSpirits = 12222, + + /// + /// map_harbinger_portal_drops_additional_fragments + /// + MapHarbingerPortalDropsAdditionalFragments = 12223, + + /// + /// map_area_level_override + /// + MapAreaLevelOverride = 12224, + + /// + /// labyrinth_override_chest_difficulty + /// + LabyrinthOverrideChestDifficulty = 12225, + + /// + /// shock_maximum_magnitude_+%_on_self + /// + ShockMaximumMagnitudePctOnSelf = 12226, + + /// + /// intimidating_cry_empowerd_attacks_deal_double_damage_display + /// + IntimidatingCryEmpowerdAttacksDealDoubleDamageDisplay = 12227, + + /// + /// brand_detonate_faster_activation_%_per_second + /// + BrandDetonateFasterActivationPctPerSecond = 12228, + + /// + /// brand_detonate_faster_duration_%_per_second + /// + BrandDetonateFasterDurationPctPerSecond = 12229, + + /// + /// infernal_cry_empowered_attacks_trigger_combust_display + /// + InfernalCryEmpoweredAttacksTriggerCombustDisplay = 12230, + + /// + /// curse_orb_forward_offset + /// + CurseOrbForwardOffset = 12231, + + /// + /// base_mana_reservation + /// + BaseManaReservation = 12232, + + /// + /// mana_cost_is_percentage + /// + ManaCostIsPercentage = 12233, + + /// + /// mana_reservation_is_percentage + /// + ManaReservationIsPercentage = 12234, + + /// + /// total_base_mana_cost + /// + TotalBaseManaCost = 12235, + + /// + /// total_base_mana_reservation + /// + TotalBaseManaReservation = 12236, + + /// + /// create_additional_brand_%_chance + /// + CreateAdditionalBrandPctChance = 12237, + + /// + /// chest_drop_additional_special_harvest_items + /// + ChestDropAdditionalSpecialHarvestItems = 12238, + + /// + /// labyrinth_owner_x_addition_enchants + /// + LabyrinthOwnerXAdditionEnchants = 12239, + + /// + /// labyrinth_enchant_mod_level_range_+ + /// + LabyrinthEnchantModLevelRange = 12240, + + /// + /// base_reservation_instead_of_cost + /// + BaseReservationInsteadOfCost = 12241, + + /// + /// brand_recall_spend_%_of_recalled_brands_cost + /// + BrandRecallSpendPctOfRecalledBrandsCost = 12242, + + /// + /// warcries_debilitate_enemies_for_1_second + /// + WarcriesDebilitateEnemiesFor1Second = 12243, + + /// + /// debilitate_movement_speed_+%_final + /// + DebilitateMovementSpeedPctFinal = 12244, + + /// + /// debilitate_damage_+%_final + /// + DebilitateDamagePctFinal = 12245, + + /// + /// enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage + /// + EnemiesTauntedByWarcryExplodeOnDeathPctChanceDealing8PctLifeAsChaosDamage = 12246, + + /// + /// warcries_have_infinite_power + /// + WarcriesHaveInfinitePower = 12247, + + /// + /// arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50% + /// + ArcaneSurgeToYouAndAlliesOnWarcryWithEffectPctPer5PowerUpTo50Pct = 12248, + + /// + /// explode_on_death_%_chance_dealing_8%_life_as_chaos_damage + /// + ExplodeOnDeathPctChanceDealing8PctLifeAsChaosDamage = 12249, + + /// + /// tectonic_slam_side_crack_additional_chance_% + /// + TectonicSlamSideCrackAdditionalChancePct = 12250, + + /// + /// summon_harbinger_monsters_behaviour_variation + /// + SummonHarbingerMonstersBehaviourVariation = 12251, + + /// + /// map_uber_beachhead_map + /// + MapUberBeachheadMap = 12252, + + /// + /// blight_freezebolt_tower_chance_to_brittle_% + /// + BlightFreezeboltTowerChanceToBrittlePct = 12253, + + /// + /// blight_glacialcage_tower_area_of_effect_+% + /// + BlightGlacialcageTowerAreaOfEffectPct = 12254, + + /// + /// blight_lightningstorm_tower_storms_on_enemies + /// + BlightLightningstormTowerStormsOnEnemies = 12255, + + /// + /// blight_arc_tower_chance_to_sap_% + /// + BlightArcTowerChanceToSapPct = 12256, + + /// + /// blight_imbuing_tower_grants_onslaught + /// + BlightImbuingTowerGrantsOnslaught = 12257, + + /// + /// blight_smothering_tower_freeze_shock_ignite_% + /// + BlightSmotheringTowerFreezeShockIgnitePct = 12258, + + /// + /// blight_temporal_tower_grants_stun_immunity + /// + BlightTemporalTowerGrantsStunImmunity = 12259, + + /// + /// blight_scout_tower_minions_inflict_malediction + /// + BlightScoutTowerMinionsInflictMalediction = 12260, + + /// + /// blight_sentinel_tower_minions_life_leech_% + /// + BlightSentinelTowerMinionsLifeLeechPct = 12261, + + /// + /// blight_flamethrower_tower_chance_to_scorch_% + /// + BlightFlamethrowerTowerChanceToScorchPct = 12262, + + /// + /// blight_meteor_tower_creates_burning_ground_ms + /// + BlightMeteorTowerCreatesBurningGroundMs = 12263, + + /// + /// blight_tower_damage_per_tower_type_+% + /// + BlightTowerDamagePerTowerTypePct = 12264, + + /// + /// chance_to_be_frozen_shocked_ignited_% + /// + ChanceToBeFrozenShockedIgnitedPct = 12265, + + /// + /// minion_malediction_on_hit + /// + MinionMaledictionOnHit = 12266, + + /// + /// malediction_on_hit + /// + MaledictionOnHit = 12267, + + /// + /// blight_stonegaze_tower_petrified_enemies_take_damage_+% + /// + BlightStonegazeTowerPetrifiedEnemiesTakeDamagePct = 12268, + + /// + /// base_damage_per_tower_type_+% + /// + BaseDamagePerTowerTypePct = 12269, + + /// + /// petrification_damage_taken_+% + /// + PetrificationDamageTakenPct = 12270, + + /// + /// virtual_damage_per_tower_type_+% + /// + VirtualDamagePerTowerTypePct = 12271, + + /// + /// base_active_tower_types + /// + BaseActiveTowerTypes = 12272, + + /// + /// cannot_be_stunned_while_stunned + /// + CannotBeStunnedWhileStunned = 12273, + + /// + /// cannot_be_stunned_for_ms_after_stun_finished + /// + CannotBeStunnedForMsAfterStunFinished = 12274, + + /// + /// maximum_life_cannot_be_zero + /// + MaximumLifeCannotBeZero = 12275, + + /// + /// magma_brand_ailment_damage_+%_final_per_additional_pustule + /// + MagmaBrandAilmentDamagePctFinalPerAdditionalPustule = 12276, + + /// + /// ailment_damage_+%_final_from_additional_magma_pustules + /// + AilmentDamagePctFinalFromAdditionalMagmaPustules = 12277, + + /// + /// winter_brand_max_number_of_stages + /// + WinterBrandMaxNumberOfStages = 12278, + + /// + /// no_spirit_strikes + /// + NoSpiritStrikes = 12279, + + /// + /// virtual_number_of_spirit_strikes + /// + VirtualNumberOfSpiritStrikes = 12280, + + /// + /// display_mirage_warriors_no_spirit_strikes + /// + DisplayMirageWarriorsNoSpiritStrikes = 12281, + + /// + /// local_display_socketed_gems_supported_by_level_x_fist_of_war + /// + LocalDisplaySocketedGemsSupportedByLevelXFistOfWar = 12282, + + /// + /// local_display_socketed_gems_supported_by_level_x_swiftbrand + /// + LocalDisplaySocketedGemsSupportedByLevelXSwiftbrand = 12283, + + /// + /// support_ancestral_slam_big_hit_ailment_damage_+%_final + /// + SupportAncestralSlamBigHitAilmentDamagePctFinal = 12284, + + /// + /// ailment_damage_+%_final_from_ancestral_slam_blow + /// + AilmentDamagePctFinalFromAncestralSlamBlow = 12285, + + /// + /// cooldown_speed_+%_per_brand_up_to_40% + /// + CooldownSpeedPctPerBrandUpTo40Pct = 12286, + + /// + /// sigil_recall_cooldown_speed_+%_per_brand_up_to_40% + /// + SigilRecallCooldownSpeedPctPerBrandUpTo40Pct = 12287, + + /// + /// spell_skills_always_crit_on_final_repeat + /// + SpellSkillsAlwaysCritOnFinalRepeat = 12288, + + /// + /// spell_skills_never_crit_except_on_final_repeat + /// + SpellSkillsNeverCritExceptOnFinalRepeat = 12289, + + /// + /// spell_skills_critical_strike_multiplier_+_on_final_repeat + /// + SpellSkillsCriticalStrikeMultiplierOnFinalRepeat = 12290, + + /// + /// penance_brand_additional_descriptions_boolean + /// + PenanceBrandAdditionalDescriptionsBoolean = 12291, + + /// + /// map_extra_content_weighting + /// + MapExtraContentWeighting = 12292, + + /// + /// local_display_socketed_gems_supported_by_level_x_urgent_orders + /// + LocalDisplaySocketedGemsSupportedByLevelXUrgentOrders = 12293, + + /// + /// local_flask_consume_flask_effect_+%_when_used + /// + LocalFlaskConsumeFlaskEffectPctWhenUsed = 12294, + + /// + /// local_flask_consume_extra_max_charges_when_used + /// + LocalFlaskConsumeExtraMaxChargesWhenUsed = 12295, + + /// + /// local_flask_consume_charges_used_+%_when_used + /// + LocalFlaskConsumeChargesUsedPctWhenUsed = 12296, + + /// + /// while_curse_is_25%_expired_hinder_enemy_% + /// + WhileCurseIs25PctExpiredHinderEnemyPct = 12297, + + /// + /// while_curse_is_50%_expired_curse_effect_+% + /// + WhileCurseIs50PctExpiredCurseEffectPct = 12298, + + /// + /// while_curse_is_75%_expired_enemy_damage_taken_+% + /// + WhileCurseIs75PctExpiredEnemyDamageTakenPct = 12299, + + /// + /// arrows_from_first_firing_point_always_pierce + /// + ArrowsFromFirstFiringPointAlwaysPierce = 12300, + + /// + /// arrows_from_second_firing_point_fork + /// + ArrowsFromSecondFiringPointFork = 12301, + + /// + /// arrows_from_third_firing_point_return + /// + ArrowsFromThirdFiringPointReturn = 12302, + + /// + /// arrows_from_fourth_firing_point_additional_chains + /// + ArrowsFromFourthFiringPointAdditionalChains = 12303, + + /// + /// spiritual_cry_double_art_variation + /// + SpiritualCryDoubleArtVariation = 12304, + + /// + /// withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_% + /// + WitheredOnHitFor2SecondsIfEnemyHas5OrLessWitheredChancePct = 12305, + + /// + /// use_intimidating_cry_buff_visual_for_intimidate + /// + UseIntimidatingCryBuffVisualForIntimidate = 12306, + + /// + /// brand_activation_rate_+%_final_during_first_20%_of_active_duration + /// + BrandActivationRatePctFinalDuringFirst20PctOfActiveDuration = 12307, + + /// + /// brand_activation_rate_+%_final_during_last_20%_of_active_duration + /// + BrandActivationRatePctFinalDuringLast20PctOfActiveDuration = 12308, + + /// + /// trigger_on_slam_%_chance + /// + TriggerOnSlamPctChance = 12309, + + /// + /// skill_used_by_mirage_chieftain_damage_+%_final + /// + SkillUsedByMirageChieftainDamagePctFinal = 12310, + + /// + /// skill_used_by_mirage_chieftain + /// + SkillUsedByMirageChieftain = 12311, + + /// + /// local_display_grants_skill_mirage_chieftain + /// + LocalDisplayGrantsSkillMirageChieftain = 12312, + + /// + /// projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained + /// + ProjectileNonChaosDamageToAddAsChaosDamagePctIfChained = 12313, + + /// + /// chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently + /// + ChanceToDealDoubleDamagePctIfHaveStunnedAnEnemyRecently = 12314, + + /// + /// damage_+%_per_100ms_duration + /// + DamagePctPer100MsDuration = 12315, + + /// + /// earthquake_damage_+%_per_100ms_duration + /// + EarthquakeDamagePctPer100MsDuration = 12316, + + /// + /// harvest_encounter_fluid_granted_+% + /// + HarvestEncounterFluidGrantedPct = 12317, + + /// + /// sunder_wave_radius_+_per_step + /// + SunderWaveRadiusPerStep = 12318, + + /// + /// sunder_wave_max_steps + /// + SunderWaveMaxSteps = 12319, + + /// + /// sunder_wave_min_steps + /// + SunderWaveMinSteps = 12320, + + /// + /// sunder_wave_delay_+% + /// + SunderWaveDelayPct = 12321, + + /// + /// virtual_gained_rage_recently + /// + VirtualGainedRageRecently = 12322, + + /// + /// display_herald_of_thunder_storm + /// + DisplayHeraldOfThunderStorm = 12323, + + /// + /// maximum_life_is_one + /// + MaximumLifeIsOne = 12324, + + /// + /// local_affliction_notable_flaming_doom + /// + LocalAfflictionNotableFlamingDoom = 12325, + + /// + /// local_affliction_notable_frost_breath + /// + LocalAfflictionNotableFrostBreath = 12326, + + /// + /// local_affliction_notable_lightnings_call + /// + LocalAfflictionNotableLightningsCall = 12327, + + /// + /// local_affliction_notable_depression + /// + LocalAfflictionNotableDepression = 12328, + + /// + /// local_affliction_notable_heavy_trauma + /// + LocalAfflictionNotableHeavyTrauma = 12329, + + /// + /// local_affliction_notable_disciplined_preparation + /// + LocalAfflictionNotableDisciplinedPreparation = 12330, + + /// + /// local_affliction_notable_determined_preparation + /// + LocalAfflictionNotableDeterminedPreparation = 12331, + + /// + /// local_affliction_notable_graceful_preparation + /// + LocalAfflictionNotableGracefulPreparation = 12332, + + /// + /// your_travel_skills_are_disabled + /// + YourTravelSkillsAreDisabled = 12333, + + /// + /// spike_slam_num_spikes + /// + SpikeSlamNumSpikes = 12334, + + /// + /// spike_slam_max_spikes + /// + SpikeSlamMaxSpikes = 12335, + + /// + /// tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value + /// + TectonicSlamSideCrackAdditionalChance1PctPer2StatValue = 12336, + + /// + /// vaal_molten_shall_armour_+%_final + /// + VaalMoltenShallArmourPctFinal = 12337, + + /// + /// sunder_shockwave_limit_per_cascade + /// + SunderShockwaveLimitPerCascade = 12338, + + /// + /// armour_+_while_you_have_fortify + /// + ArmourWhileYouHaveFortify = 12339, + + /// + /// recover_%_maximum_life_on_killing_enemy_while_you_have_rage + /// + RecoverPctMaximumLifeOnKillingEnemyWhileYouHaveRage = 12340, + + /// + /// evasion_rating_+_while_phasing + /// + EvasionRatingWhilePhasing = 12341, + + /// + /// avoid_elemental_ailments_%_while_affected_by_elusive + /// + AvoidElementalAilmentsPctWhileAffectedByElusive = 12342, + + /// + /// curse_effect_on_self_+%_while_on_consecrated_ground + /// + CurseEffectOnSelfPctWhileOnConsecratedGround = 12343, + + /// + /// accuracy_rating_+%_during_onslaught + /// + AccuracyRatingPctDuringOnslaught = 12344, + + /// + /// enemies_you_hinder_have_life_regeneration_rate_+% + /// + EnemiesYouHinderHaveLifeRegenerationRatePct = 12345, + + /// + /// enemies_you_expose_have_self_elemental_status_duration_+% + /// + EnemiesYouExposeHaveSelfElementalStatusDurationPct = 12346, + + /// + /// enemies_you_maim_have_damage_taken_over_time_+% + /// + EnemiesYouMaimHaveDamageTakenOverTimePct = 12347, + + /// + /// belt_enchant_enemies_you_taunt_have_area_damage_+%_final + /// + BeltEnchantEnemiesYouTauntHaveAreaDamagePctFinal = 12348, + + /// + /// area_damage_+%_final_from_taunt_belt_enchant + /// + AreaDamagePctFinalFromTauntBeltEnchant = 12349, + + /// + /// enemies_you_wither_have_all_resistances_% + /// + EnemiesYouWitherHaveAllResistancesPct = 12350, + + /// + /// enemies_you_blind_have_critical_strike_chance_+% + /// + EnemiesYouBlindHaveCriticalStrikeChancePct = 12351, + + /// + /// enemies_you_intimidate_have_stun_duration_on_self_+% + /// + EnemiesYouIntimidateHaveStunDurationOnSelfPct = 12352, + + /// + /// enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self + /// + EnemiesYouUnnerveHaveEnemySpellCriticalStrikeChancePctAgainstSelf = 12353, + + /// + /// enemy_spell_critical_strike_chance_+%_against_self + /// + EnemySpellCriticalStrikeChancePctAgainstSelf = 12354, + + /// + /// berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage + /// + BerserkerWarcryGrantXRagePer5PowerWhileLessThan25Rage = 12355, + + /// + /// berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final + /// + BerserkerWarcrySacrifice25RageForMoreEmpoweredAttackDamageFor4SecondsPctFinal = 12356, + + /// + /// empowered_attack_damage_+%_final + /// + EmpoweredAttackDamagePctFinal = 12357, + + /// + /// local_quality_does_not_increase_physical_damage + /// + LocalQualityDoesNotIncreasePhysicalDamage = 12358, + + /// + /// local_quality_does_not_increase_defences + /// + LocalQualityDoesNotIncreaseDefences = 12359, + + /// + /// local_critical_strike_chance_+%_per_4%_quality + /// + LocalCriticalStrikeChancePctPer4PctQuality = 12360, + + /// + /// local_attack_speed_+%_per_8%_quality + /// + LocalAttackSpeedPctPer8PctQuality = 12361, + + /// + /// local_accuracy_rating_+%_per_2%_quality + /// + LocalAccuracyRatingPctPer2PctQuality = 12362, + + /// + /// local_weapon_range_+_per_10%_quality + /// + LocalWeaponRangePer10PctQuality = 12363, + + /// + /// local_elemental_damage_+%_per_2%_quality + /// + LocalElementalDamagePctPer2PctQuality = 12364, + + /// + /// local_area_of_effect_+%_per_4%_quality + /// + LocalAreaOfEffectPctPer4PctQuality = 12365, + + /// + /// local_maximum_life_per_2%_quality + /// + LocalMaximumLifePer2PctQuality = 12366, + + /// + /// local_maximum_mana_per_2%_quality + /// + LocalMaximumManaPer2PctQuality = 12367, + + /// + /// local_strength_per_2%_quality + /// + LocalStrengthPer2PctQuality = 12368, + + /// + /// local_dexterity_per_2%_quality + /// + LocalDexterityPer2PctQuality = 12369, + + /// + /// local_intelligence_per_2%_quality + /// + LocalIntelligencePer2PctQuality = 12370, + + /// + /// local_fire_resistance_%_per_2%_quality + /// + LocalFireResistancePctPer2PctQuality = 12371, + + /// + /// local_cold_resistance_%_per_2%_quality + /// + LocalColdResistancePctPer2PctQuality = 12372, + + /// + /// local_lightning_resistance_%_per_2%_quality + /// + LocalLightningResistancePctPer2PctQuality = 12373, + + /// + /// corpse_explosion_monster_life_%_chaos + /// + CorpseExplosionMonsterLifePctChaos = 12374, + + /// + /// infernal_cry_cooldown_speed_+% + /// + InfernalCryCooldownSpeedPct = 12375, + + /// + /// intimidating_cry_cooldown_speed_+% + /// + IntimidatingCryCooldownSpeedPct = 12376, + + /// + /// generals_cry_cooldown_speed_+% + /// + GeneralsCryCooldownSpeedPct = 12377, + + /// + /// intimidating_cry_area_of_effect_+% + /// + IntimidatingCryAreaOfEffectPct = 12378, + + /// + /// combust_area_of_effect_+% + /// + CombustAreaOfEffectPct = 12379, + + /// + /// generals_cry_maximum_warriors_+ + /// + GeneralsCryMaximumWarriors = 12380, + + /// + /// minimum_power_from_skill_specific_stat + /// + MinimumPowerFromSkillSpecificStat = 12381, + + /// + /// ancestral_cry_minimum_power + /// + AncestralCryMinimumPower = 12382, + + /// + /// seismic_cry_minimum_power + /// + SeismicCryMinimumPower = 12383, + + /// + /// enduring_cry_grants_x_additional_endurance_charges + /// + EnduringCryGrantsXAdditionalEnduranceCharges = 12384, + + /// + /// ancestral_cry_exerted_attack_damage_+% + /// + AncestralCryExertedAttackDamagePct = 12385, + + /// + /// seismic_cry_exerted_attack_damage_+% + /// + SeismicCryExertedAttackDamagePct = 12386, + + /// + /// have_lost_an_endurance_charge_in_past_8_seconds + /// + HaveLostAnEnduranceChargeInPast8Seconds = 12387, + + /// + /// local_affliction_notable_summer_commander + /// + LocalAfflictionNotableSummerCommander = 12388, + + /// + /// local_affliction_notable_winter_commander + /// + LocalAfflictionNotableWinterCommander = 12389, + + /// + /// local_affliction_notable_grounded_commander + /// + LocalAfflictionNotableGroundedCommander = 12390, + + /// + /// map_labyrinth_izaro_life_+% + /// + MapLabyrinthIzaroLifePct = 12391, + + /// + /// map_labyrinth_izaro_damage_+% + /// + MapLabyrinthIzaroDamagePct = 12392, + + /// + /// map_labyrinth_izaro_attack_cast_move_speed_+% + /// + MapLabyrinthIzaroAttackCastMoveSpeedPct = 12393, + + /// + /// map_labyrinth_izaro_area_of_effect_+% + /// + MapLabyrinthIzaroAreaOfEffectPct = 12394, + + /// + /// map_labyrinth_monsters_life_+% + /// + MapLabyrinthMonstersLifePct = 12395, + + /// + /// map_labyrinth_monsters_damage_+% + /// + MapLabyrinthMonstersDamagePct = 12396, + + /// + /// map_labyrinth_monsters_attack_cast_and_movement_speed_+% + /// + MapLabyrinthMonstersAttackCastAndMovementSpeedPct = 12397, + + /// + /// rallying_cry_exerts_x_additional_attacks + /// + RallyingCryExertsXAdditionalAttacks = 12398, + + /// + /// rallying_cry_buff_effect_1%_per_5_stat_value + /// + RallyingCryBuffEffect1PctPer5StatValue = 12399, + + /// + /// rallying_cry_buff_effect_1%_per_3_stat_value + /// + RallyingCryBuffEffect1PctPer3StatValue = 12400, + + /// + /// main_hand_quality_does_not_increase_physical_damage + /// + MainHandQualityDoesNotIncreasePhysicalDamage = 12401, + + /// + /// off_hand_quality_does_not_increase_physical_damage + /// + OffHandQualityDoesNotIncreasePhysicalDamage = 12402, + + /// + /// physical_damage_+%_per_10_rage + /// + PhysicalDamagePctPer10Rage = 12403, + + /// + /// virtual_has_crushing_aura + /// + VirtualHasCrushingAura = 12404, + + /// + /// nearby_enemies_are_crushed_while_you_have_X_rage + /// + NearbyEnemiesAreCrushedWhileYouHaveXRage = 12405, + + /// + /// skill_buff_effect_1%_per_5_stat_value + /// + SkillBuffEffect1PctPer5StatValue = 12406, + + /// + /// skill_buff_effect_1%_per_3_stat_value + /// + SkillBuffEffect1PctPer3StatValue = 12407, + + /// + /// display_brand_deonate_tag_conversion + /// + DisplayBrandDeonateTagConversion = 12408, + + /// + /// map_additional_red_beast_family_wilds + /// + MapAdditionalRedBeastFamilyWilds = 12409, + + /// + /// map_additional_red_beast_family_sands + /// + MapAdditionalRedBeastFamilySands = 12410, + + /// + /// map_additional_red_beast_family_caverns + /// + MapAdditionalRedBeastFamilyCaverns = 12411, + + /// + /// map_additional_red_beast_family_deep + /// + MapAdditionalRedBeastFamilyDeep = 12412, + + /// + /// restore_life_on_warcry_% + /// + RestoreLifeOnWarcryPct = 12413, + + /// + /// gain_endurance_charge_per_second_if_have_used_warcry_recently + /// + GainEnduranceChargePerSecondIfHaveUsedWarcryRecently = 12414, + + /// + /// travel_skills_cannot_be_exerted + /// + TravelSkillsCannotBeExerted = 12415, + + /// + /// display_map_labyrinth_chests_fortune + /// + DisplayMapLabyrinthChestsFortune = 12416, + + /// + /// display_map_labyrinth_enchant_belts + /// + DisplayMapLabyrinthEnchantBelts = 12417, + + /// + /// winter_brand_damage_+% + /// + WinterBrandDamagePct = 12418, + + /// + /// winter_brand_max_number_of_stages_+ + /// + WinterBrandMaxNumberOfStages2 = 12419, + + /// + /// winter_brand_chill_effect_+% + /// + WinterBrandChillEffectPct = 12420, + + /// + /// penance_brand_damage_+% + /// + PenanceBrandDamagePct = 12421, + + /// + /// penance_brand_cast_speed_+% + /// + PenanceBrandCastSpeedPct = 12422, + + /// + /// penance_brand_area_of_effect_+% + /// + PenanceBrandAreaOfEffectPct = 12423, + + /// + /// earthshatter_damage_+% + /// + EarthshatterDamagePct = 12424, + + /// + /// earthshatter_area_of_effect_+% + /// + EarthshatterAreaOfEffectPct = 12425, + + /// + /// arcanist_brand_cast_speed_+% + /// + ArcanistBrandCastSpeedPct = 12426, + + /// + /// arcanist_brand_unnerve_on_hit + /// + ArcanistBrandUnnerveOnHit = 12427, + + /// + /// virtual_chance_to_unnerve_on_hit_% + /// + VirtualChanceToUnnerveOnHitPct = 12428, + + /// + /// active_skill_brands_allowed_on_enemy_+ + /// + ActiveSkillBrandsAllowedOnEnemy = 12429, + + } +} diff --git a/GameOffsets/ActorComponentOffsets.cs b/GameOffsets/ActorComponentOffsets.cs index aaa69fe9..71ca90d2 100644 --- a/GameOffsets/ActorComponentOffsets.cs +++ b/GameOffsets/ActorComponentOffsets.cs @@ -26,6 +26,6 @@ public struct ActorComponentOffsets [FieldOffset(0x540)] public NativePtrArray ActorVaalSkills; [FieldOffset(0x578)] public NativePtrArray HasMinionArray; - [FieldOffset(0x578)] public NativePtrArray DeployedObjectArray; + [FieldOffset(0x6A0)] public NativePtrArray DeployedObjectArray; } } diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 2e9d6263..16fe0605 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using SharpDX; namespace GameOffsets diff --git a/GameOffsets/Components/Life.cs b/GameOffsets/Components/Life.cs index 6b031f9e..0300be8d 100644 --- a/GameOffsets/Components/Life.cs +++ b/GameOffsets/Components/Life.cs @@ -7,10 +7,10 @@ namespace GameOffsets.Components public struct Life { [FieldOffset(0x0000)] public ComponentHeader Header; - [FieldOffset(0x0080)] public NativePtrArray BuffsPtr; - [FieldOffset(0x00B0)] public VitalStruct Mana; - [FieldOffset(0x00E8)] public VitalStruct EnergyShield; - [FieldOffset(0x0148)] public VitalStruct Health; + [FieldOffset(0x180)] public NativePtrArray BuffsPtr; + [FieldOffset(0x198)] public VitalStruct Mana; + [FieldOffset(0x1D0)] public VitalStruct EnergyShield; + [FieldOffset(0x230)] public VitalStruct Health; } [StructLayout(LayoutKind.Explicit, Pack = 1)] @@ -35,13 +35,13 @@ public struct VitalStruct [FieldOffset(0x0000)] public long PtrToLifeComponent; //// This is greater than zero if Vital is regenerating //// For value = 0 or less than 0, Vital isn't regenerating - [FieldOffset(0x0008)] public float Regeneration; - [FieldOffset(0x000C)] public int Total; + [FieldOffset(0x20)] public float Regeneration; + [FieldOffset(0x24)] public int Total; //// e.g. ICICLE MINE reserve flat Vital - [FieldOffset(0x0010)] public int ReservedFlat; - [FieldOffset(0x0014)] public int Current; + [FieldOffset(0x28)] public int ReservedFlat; + [FieldOffset(0x2C)] public int Current; //// e.g. HERALD reserve % Vital. //// ReservedFlat does not change this value. - [FieldOffset(0x0018)] public int ReservedPercent; + [FieldOffset(0x30)] public int ReservedPercent; } -} \ No newline at end of file +} diff --git a/GameOffsets/Components/Player.cs b/GameOffsets/Components/Player.cs index 97df2cfb..34262847 100644 --- a/GameOffsets/Components/Player.cs +++ b/GameOffsets/Components/Player.cs @@ -14,20 +14,20 @@ public struct Player // Get 2 people (including you) in the game, find an item belonging to the other person // Open WorldItem component of that item. Find a 4 byte uint that matches from there to here. [FieldOffset(0x007C)] public uint LootAllocationId; - [FieldOffset(0x007C)] public int Experience; - [FieldOffset(0x0080)] public int Strength; - [FieldOffset(0x0084)] public int Dexterity; - [FieldOffset(0x0088)] public int Intelligence; - [FieldOffset(0x00A8)] public byte Level; + [FieldOffset(0x17C)] public int Experience; + [FieldOffset(0x180)] public int Strength; + [FieldOffset(0x184)] public int Dexterity; + [FieldOffset(0x188)] public int Intelligence; + [FieldOffset(0x1A8)] public byte Level; //[FieldOffset(0x0091)] public byte Unknown2; //[FieldOffset(0x0092)] public byte Unknown3; [FieldOffset(0x0093)] public byte MinorPantheonSkillId; - [FieldOffset(0x0094)] public byte MajorPantheonSkillId; + [FieldOffset(0x1AC)] public byte MajorPantheonSkillId; //[FieldOffset(0x0098)] public int Unknown4; //[FieldOffset(0x009C)] public int Unknown5; - [FieldOffset(0x00F8)] public long HideoutPtr; // Ptr to Hideout.dat row - [FieldOffset(0x0112)] public PropheciesStruct Prophecies; - [FieldOffset(0x0138)] public long ServerDataPtr; + [FieldOffset(0x1F0)] public long HideoutPtr; // Ptr to Hideout.dat row + [FieldOffset(0x20C)] public PropheciesStruct Prophecies; + [FieldOffset(0x230)] public long ServerDataPtr; // This WorldPosition is different from position component WorldPosition // as this one is updated slowly. This might be part of a teleport detection diff --git a/GameOffsets/Components/Render.cs b/GameOffsets/Components/Render.cs index bd53ce64..92356340 100644 --- a/GameOffsets/Components/Render.cs +++ b/GameOffsets/Components/Render.cs @@ -12,7 +12,7 @@ public struct Render // Same as Positioned Component CurrentWorldPosition, // but this one contains Z axis; Z axis is where the HealthBar is. // If you want to use ground Z axis, swap current one with TerrainHeight. - [FieldOffset(0x0078)] public Vector3 CurrentWorldPosition; + [FieldOffset(0x80)] public Vector3 CurrentWorldPosition; // Changing this value will move the in-game healthbar up/down. // Not sure if it's really X,Y,Z or something else. They all move @@ -27,4 +27,4 @@ public struct Render //[FieldOffset(0x00B8)] public float Rotation; [FieldOffset(0x00E0)] public float TerrainHeight; } -} \ No newline at end of file +} diff --git a/GameOffsets/Components/Targetable.cs b/GameOffsets/Components/Targetable.cs index ee370470..12f1e6bb 100644 --- a/GameOffsets/Components/Targetable.cs +++ b/GameOffsets/Components/Targetable.cs @@ -8,8 +8,8 @@ public struct Targetable [FieldOffset(0x0000)] public ComponentHeader Header; [FieldOffset(0x0028)] public long UnknownPtr0; [FieldOffset(0x0030)] public byte IsTargetable; - [FieldOffset(0x0031)] public byte IsHighlightable; - [FieldOffset(0x0032)] public byte IsTargetted; + [FieldOffset(0x49)] public byte IsHighlightable; + [FieldOffset(0x4A)] public byte IsTargetted; [FieldOffset(0x0033)] public byte UnknownBool0; [FieldOffset(0x0034)] public byte UnknownBool1; [FieldOffset(0x0035)] public byte UnknownBool2; @@ -20,4 +20,4 @@ public struct Targetable [FieldOffset(0x0040)] public int UnknownInt2; [FieldOffset(0x0044)] public int UnknownInt3; } -} \ No newline at end of file +} diff --git a/GameOffsets/FilesOffsets.cs b/GameOffsets/FilesOffsets.cs index 5ed55c0a..00ba6769 100644 --- a/GameOffsets/FilesOffsets.cs +++ b/GameOffsets/FilesOffsets.cs @@ -1,32 +1,20 @@ -using System.Runtime.InteropServices; -using GameOffsets.Native; - -namespace GameOffsets +using System.Runtime.InteropServices; +using GameOffsets.Native; + +namespace GameOffsets { - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct FilesOffsets - { + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct FilesOffsets + { [FieldOffset(0x8)] public long ListPtr; - [FieldOffset(0x18)] public long MoreInformation; - } - - [StructLayout(LayoutKind.Sequential, Pack = 1)] - public struct FileNode - { - public long Next; - public long Prev; - public long Key; - public long Value; - } - - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct FileInformation - { - [FieldOffset(0x08)] public NativeStringU String; - [FieldOffset(0x18)] public long Size; - [FieldOffset(0x20)] public long Capacity; - [FieldOffset(0x30)] public int Test1; - [FieldOffset(0x38)] public int AreaCount; - [FieldOffset(0x40)] public int Test2; - } -} + } + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct FileNode + { + public long Next; + public long Prev; + public long Key; + public long Value; + } +} diff --git a/GameOffsets/IngameDataOffsets.cs b/GameOffsets/IngameDataOffsets.cs index 84a3b411..4f1cff8a 100644 --- a/GameOffsets/IngameDataOffsets.cs +++ b/GameOffsets/IngameDataOffsets.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using GameOffsets.Native; namespace GameOffsets diff --git a/GameOffsets/IngameStateOffsets.cs b/GameOffsets/IngameStateOffsets.cs index 731680c7..31f31e33 100644 --- a/GameOffsets/IngameStateOffsets.cs +++ b/GameOffsets/IngameStateOffsets.cs @@ -1,11 +1,11 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; namespace GameOffsets { [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct IngameStateOffsets { - [FieldOffset(0x80)] public long IngameUi; + [FieldOffset(0x1550)] public long IngameUi; [FieldOffset(0xA0)] public long EntityLabelMap; [FieldOffset(0x478)] public long Data; [FieldOffset(0x480)] public long ServerData; diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index ffcfae5d..bd5e735a 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -11,8 +11,8 @@ public struct IngameUElementsOffsets [FieldOffset(0x378)] public long SkillBar; [FieldOffset(0x380)] public long HiddenSkillBar; [FieldOffset(0x480)] public long QuestTracker; - [FieldOffset(0x4E8 /*4F8*/)] public long OpenLeftPanel; - [FieldOffset(0x4F0 /*500*/)] public long OpenRightPanel; + [FieldOffset(0x4E8)] public long OpenLeftPanel; + [FieldOffset(0x4F0)] public long OpenRightPanel; [FieldOffset(0x520)] public long InventoryPanel; [FieldOffset(0x528)] public long StashElement; [FieldOffset(0x550)] public long TreePanel; diff --git a/GameOffsets/ModsComponentOffsets.cs b/GameOffsets/ModsComponentOffsets.cs index c0d15edf..960c7e3d 100644 --- a/GameOffsets/ModsComponentOffsets.cs +++ b/GameOffsets/ModsComponentOffsets.cs @@ -1,25 +1,25 @@ -using System.Runtime.InteropServices; -using GameOffsets.Native; - -namespace GameOffsets -{ - [StructLayout(LayoutKind.Explicit, Pack = 1)] - public struct ModsComponentOffsets - { - public static readonly int HumanStats = 0x20; - [FieldOffset(0x30)] public long UniqueName; - [FieldOffset(0xA8)] public bool Identified; - [FieldOffset(0xAC)] public int ItemRarity; - [FieldOffset(0xB0)] public NativePtrArray implicitMods; - [FieldOffset(0xC8)] public NativePtrArray explicitMods; +using System.Runtime.InteropServices; +using GameOffsets.Native; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct ModsComponentOffsets + { + public static readonly int HumanStats = 0x20; + [FieldOffset(0x30)] public long UniqueName; + [FieldOffset(0xA8)] public bool Identified; + [FieldOffset(0xAC)] public int ItemRarity; + [FieldOffset(0x9E)] public NativePtrArray implicitMods; + [FieldOffset(0x98)] public NativePtrArray explicitMods; [FieldOffset(0xE0)] public NativePtrArray enchantMods; - [FieldOffset(0x190)] public NativePtrArray GetImplicitStats; - [FieldOffset(0x1C0)] public NativePtrArray GetStats; - [FieldOffset(0x1D8)] public NativePtrArray GetCraftedStats; - [FieldOffset(0x1F0)] public NativePtrArray GetFracturedStats; - [FieldOffset(0x46C)] public int ItemLevel; - [FieldOffset(0x470)] public int RequiredLevel; - [FieldOffset(0x474)] public byte IsUsable; - [FieldOffset(0x475)] public byte IsMirrored; - } -} + [FieldOffset(0x190)] public NativePtrArray GetImplicitStats; + [FieldOffset(0x1C0)] public NativePtrArray GetStats; + [FieldOffset(0x1D8)] public NativePtrArray GetCraftedStats; + [FieldOffset(0x1F0)] public NativePtrArray GetFracturedStats; + [FieldOffset(0x46C)] public int ItemLevel; + [FieldOffset(0x470)] public int RequiredLevel; + [FieldOffset(0x474)] public byte IsUsable; + [FieldOffset(0x475)] public byte IsMirrored; + } +} diff --git a/GameOffsets/PositionedComponentOffsets.cs b/GameOffsets/PositionedComponentOffsets.cs index e8940bac..86fad5de 100644 --- a/GameOffsets/PositionedComponentOffsets.cs +++ b/GameOffsets/PositionedComponentOffsets.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using SharpDX; namespace GameOffsets From 6be749fa86bdd01b70c1b2636972e721b9fad80c Mon Sep 17 00:00:00 2001 From: Stridemann Date: Mon, 22 Jun 2020 13:47:32 +0300 Subject: [PATCH 62/81] Fixed ModsComponentOffsets --- GameOffsets/ModsComponentOffsets.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GameOffsets/ModsComponentOffsets.cs b/GameOffsets/ModsComponentOffsets.cs index 960c7e3d..6b2293bc 100644 --- a/GameOffsets/ModsComponentOffsets.cs +++ b/GameOffsets/ModsComponentOffsets.cs @@ -10,8 +10,8 @@ public struct ModsComponentOffsets [FieldOffset(0x30)] public long UniqueName; [FieldOffset(0xA8)] public bool Identified; [FieldOffset(0xAC)] public int ItemRarity; - [FieldOffset(0x9E)] public NativePtrArray implicitMods; - [FieldOffset(0x98)] public NativePtrArray explicitMods; + [FieldOffset(0xB0)] public NativePtrArray implicitMods; + [FieldOffset(0xC8)] public NativePtrArray explicitMods; [FieldOffset(0xE0)] public NativePtrArray enchantMods; [FieldOffset(0x190)] public NativePtrArray GetImplicitStats; [FieldOffset(0x1C0)] public NativePtrArray GetStats; From 03feab6ecf1220758913bece34f42ac18a5b671b Mon Sep 17 00:00:00 2001 From: Stridemann Date: Mon, 22 Jun 2020 14:14:33 +0300 Subject: [PATCH 63/81] Fixed RenderComponentOffsets --- GameOffsets/RenderComponentOffsets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameOffsets/RenderComponentOffsets.cs b/GameOffsets/RenderComponentOffsets.cs index d19e5091..6d20cc16 100644 --- a/GameOffsets/RenderComponentOffsets.cs +++ b/GameOffsets/RenderComponentOffsets.cs @@ -9,7 +9,7 @@ public struct RenderComponentOffsets { [FieldOffset(0x90)] public Vector3 Pos; [FieldOffset(0x9C)] public Vector3 Bounds; - [FieldOffset(0xA0)] public NativeStringU Name; + [FieldOffset(0xB0)] public NativeStringU Name; [FieldOffset(0xD0)] public Vector3 Rotation; [FieldOffset(0xF8)] public float Height; } From dbd5a3e3c4aea7b73bc32edf8cc91a2b8b5dcd52 Mon Sep 17 00:00:00 2001 From: Stridemann Date: Mon, 22 Jun 2020 17:16:47 +0300 Subject: [PATCH 64/81] Fixed actor skills --- Core/PoEMemory/MemoryObjects/ActorSkill.cs | 4 ++-- GameOffsets/ActorComponentOffsets.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/MemoryObjects/ActorSkill.cs b/Core/PoEMemory/MemoryObjects/ActorSkill.cs index 403c531c..d16ae2af 100644 --- a/Core/PoEMemory/MemoryObjects/ActorSkill.cs +++ b/Core/PoEMemory/MemoryObjects/ActorSkill.cs @@ -171,8 +171,8 @@ public Dictionary Stats internal void ReadStats(Dictionary stats, long address) { - var statPtrStart = M.Read(address + 0xE8); - var statPtrEnd = M.Read(address + 0xF0); + var statPtrStart = M.Read(address + 0xF0); + var statPtrEnd = M.Read(address + 0xF8); var key = 0; var value = 0; diff --git a/GameOffsets/ActorComponentOffsets.cs b/GameOffsets/ActorComponentOffsets.cs index 71ca90d2..dce3cc11 100644 --- a/GameOffsets/ActorComponentOffsets.cs +++ b/GameOffsets/ActorComponentOffsets.cs @@ -20,7 +20,7 @@ public struct ActorComponentOffsets // Use the one inside the ActionPtr struct (i.e. ActionWrapperOffsets). // That one works for all kind of skills. // [FieldOffset(0x128)] public Vector2 SkillDestination; - [FieldOffset(0x510)] public NativePtrArray ActorSkillsArray; + [FieldOffset(0x650)] public NativePtrArray ActorSkillsArray; // Broken Offset, remove comment on fixup. [FieldOffset(0x540)] public NativePtrArray ActorVaalSkills; From 3e06d3583d8d5d4bfa96157f526a37b672ffcfe0 Mon Sep 17 00:00:00 2001 From: Stridemann Date: Mon, 22 Jun 2020 23:45:53 +0300 Subject: [PATCH 65/81] Fixed some stash offsets for stashie --- Core/PoEMemory/Elements/StashElement.cs | 11 ++++++++--- GameOffsets/ActionWrapperOffsets.cs | 6 +++--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Core/PoEMemory/Elements/StashElement.cs b/Core/PoEMemory/Elements/StashElement.cs index d9cd592d..6ca487f9 100644 --- a/Core/PoEMemory/Elements/StashElement.cs +++ b/Core/PoEMemory/Elements/StashElement.cs @@ -19,9 +19,8 @@ public class StashElement : Element Address != 0 ? GetObject(M.Read(Address + 0x2D8, 0x448)) : null; // going extra inside. //Not fixed - public Element MoveStashTabLabelsLeft_Button => Address != 0 ? GetObject(M.Read(Address + 0x2D8, 0x450)) : null; - public Element MoveStashTabLabelsRight_Button => Address != 0 ? GetObject(M.Read(Address + 0x2D8, 0x458)) : null; - public int IndexVisibleStash => M.Read(Address + 0x2D8, 0x480); + public Element ButtonStashTabListPin => Address != 0 ? GetObject(M.Read(Address + 0x2D8, 0x450)) : null; + public int IndexVisibleStash => M.Read(Address + 0x2D8, 0x490); public Inventory VisibleStash => GetVisibleStash(); public IList AllStashNames => GetAllStashNames(); public IList AllInventories => GetAllInventories(); @@ -77,6 +76,12 @@ public Inventory GetStashInventoryByIndex(int index) //This one is correct return stashInventoryByIndex; } + public IList GetTabListButtons() + { + var listChild = ViewAllStashPanel.Children.FirstOrDefault(x => x.ChildCount == TotalStashes); + return listChild?.Children ?? new List(); + } + public string GetStashName(int index) { if (index >= TotalStashes || index < 0) diff --git a/GameOffsets/ActionWrapperOffsets.cs b/GameOffsets/ActionWrapperOffsets.cs index 9ed14d03..a1ee261a 100644 --- a/GameOffsets/ActionWrapperOffsets.cs +++ b/GameOffsets/ActionWrapperOffsets.cs @@ -6,8 +6,8 @@ namespace GameOffsets [StructLayout(LayoutKind.Explicit, Pack = 1)] public struct ActionWrapperOffsets { - [FieldOffset(0x60)] public Vector2 Destination; - [FieldOffset(0x38)] public long Target; - [FieldOffset(0x18)] public long Skill; + [FieldOffset(0x78)] public Vector2 Destination; + [FieldOffset(0x70)] public long Target; + [FieldOffset(0x48)] public long Skill; } } From 0ee3630e25605ee337b209f456398b56fdc1859d Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 22 Jun 2020 21:24:47 -0400 Subject: [PATCH 66/81] Updated GetAllFilesSync --- Core/PoEMemory/FilesFromMemory.cs | 35 ++++++++++--------------------- 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/Core/PoEMemory/FilesFromMemory.cs b/Core/PoEMemory/FilesFromMemory.cs index 8778b837..cca73f05 100644 --- a/Core/PoEMemory/FilesFromMemory.cs +++ b/Core/PoEMemory/FilesFromMemory.cs @@ -82,30 +82,17 @@ public void ReadDictionary(long head, ConcurrentDictionary GetAllFilesSync() { - var files = new Dictionary(); - throw new NotImplementedException(); - //var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; - //var start = mem.Read(fileRoot + 0x8); - //var filesPointer = mem.ReadListPointer(new IntPtr(start)); - - //foreach (var p in filesPointer) - //{ - // var filesOffsets = mem.Read(p); - // var advancedInformation = mem.Read(filesOffsets.MoreInformation); - // if (advancedInformation.String.buf == 0) continue; - - // var str = RemoteMemoryObject.Cache.StringCache.Read( - // $"{nameof(FilesFromMemory)}{advancedInformation.String.buf}", - // () => advancedInformation.String.ToString(mem)); - - // if (str.Length <= 0) continue; - - // files[str] = new FileInformation(filesOffsets.MoreInformation, advancedInformation.AreaCount, - // advancedInformation.Test1, - // advancedInformation.Test2); - //} - - return files; + var files = new ConcurrentDictionary(); + var fileRoot = mem.AddressOfProcess + mem.BaseOffsets[OffsetsName.FileRoot]; + + Parallel.For(0, 256, (i) => + { + var readAddress = fileRoot + i * 0x40; + var fileChunkStruct = mem.Read(readAddress); + + ReadDictionary(fileChunkStruct.ListPtr, files); + }); + return files.ToDictionary(); } } } \ No newline at end of file From 8f342b3b8d3009b146ea796ca14b92a1103fb0bd Mon Sep 17 00:00:00 2001 From: TehCheat Date: Tue, 23 Jun 2020 01:10:10 -0400 Subject: [PATCH 67/81] Updated PreloadAlert plugin --- Plugins/Source/PreloadAlert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/PreloadAlert b/Plugins/Source/PreloadAlert index 1ac8dad6..014f552d 160000 --- a/Plugins/Source/PreloadAlert +++ b/Plugins/Source/PreloadAlert @@ -1 +1 @@ -Subproject commit 1ac8dad694e16f803d5aa4423b48b31647693815 +Subproject commit 014f552d5c3aa36bd739bf2c1374e6170925049f From aafad05e9fec17cea65d124b7897130ae71a20af Mon Sep 17 00:00:00 2001 From: Stridemann Date: Wed, 24 Jun 2020 14:21:02 +0300 Subject: [PATCH 68/81] Added offsets for harvest league plugin --- Core/PoEMemory/Components/StateMachine.cs | 10 +++++++++- Core/PoEMemory/Elements/StashElement.cs | 2 ++ Core/PoEMemory/MemoryObjects/Entity.cs | 6 ++++++ Core/Shared/Enums/League.cs | 3 ++- GameOffsets/ActionWrapperOffsets.cs | 2 +- 5 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/Components/StateMachine.cs b/Core/PoEMemory/Components/StateMachine.cs index 2b2f49e5..377484f1 100644 --- a/Core/PoEMemory/Components/StateMachine.cs +++ b/Core/PoEMemory/Components/StateMachine.cs @@ -4,5 +4,13 @@ public class StateMachine : Component { public bool CanBeTarget => M.Read(Address + 0xA0) == 1; public bool InTarget => M.Read(Address + 0xA2) == 1; + + #region Harvest + + private long MachineStates => M.Read(Address + 0x38); + public int EnergyType => M.Read(MachineStates + 0x0); + public bool IsVisuallyFeeding => M.Read(MachineStates + 0x4); + + #endregion } -} +} \ No newline at end of file diff --git a/Core/PoEMemory/Elements/StashElement.cs b/Core/PoEMemory/Elements/StashElement.cs index 6ca487f9..a181423a 100644 --- a/Core/PoEMemory/Elements/StashElement.cs +++ b/Core/PoEMemory/Elements/StashElement.cs @@ -25,6 +25,8 @@ public class StashElement : Element public IList AllStashNames => GetAllStashNames(); public IList AllInventories => GetAllInventories(); + public IList TabListButtons => GetTabListButtons(); + private Inventory GetVisibleStash() { return GetStashInventoryByIndex(IndexVisibleStash); diff --git a/Core/PoEMemory/MemoryObjects/Entity.cs b/Core/PoEMemory/MemoryObjects/Entity.cs index 72642728..2293dec1 100644 --- a/Core/PoEMemory/MemoryObjects/Entity.cs +++ b/Core/PoEMemory/MemoryObjects/Entity.cs @@ -701,6 +701,12 @@ private EntityType ParseType() if (HasComponent()) return EntityType.Player; + if (Path.StartsWith("Metadata/MiscellaneousObjects/Harvest", StringComparison.Ordinal)) + { + League = LeagueType.Harvest; + return EntityType.MiscellaneousObjects; + } + if (HasComponent()) { if (Path.Equals("Metadata/Terrain/Missions/Hideouts/Objects/HideoutCraftingBench", StringComparison.Ordinal)) diff --git a/Core/Shared/Enums/League.cs b/Core/Shared/Enums/League.cs index cbc00e61..59959bf3 100644 --- a/Core/Shared/Enums/League.cs +++ b/Core/Shared/Enums/League.cs @@ -9,6 +9,7 @@ public enum LeagueType Perandus, Delve, Legion, - Delirium + Delirium, + Harvest } } diff --git a/GameOffsets/ActionWrapperOffsets.cs b/GameOffsets/ActionWrapperOffsets.cs index a1ee261a..29378522 100644 --- a/GameOffsets/ActionWrapperOffsets.cs +++ b/GameOffsets/ActionWrapperOffsets.cs @@ -8,6 +8,6 @@ public struct ActionWrapperOffsets { [FieldOffset(0x78)] public Vector2 Destination; [FieldOffset(0x70)] public long Target; - [FieldOffset(0x48)] public long Skill; + [FieldOffset(0x58)] public long Skill; } } From bdac84f48ef37a7c0e190d8347d2811f34daa97e Mon Sep 17 00:00:00 2001 From: Stridemann Date: Wed, 24 Jun 2020 17:23:25 +0300 Subject: [PATCH 69/81] Fixed exception coz of GemLvlUpPanel wrong offset --- GameOffsets/IngameUElementsOffsets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index bd5e735a..e3a2b103 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -33,7 +33,7 @@ public struct IngameUElementsOffsets [FieldOffset(0x788)] public long MetamorphWindow; [FieldOffset(0x7D8)] public long AreaInstanceUi; [FieldOffset(0x8A8)] public long InvitesPanel; - [FieldOffset(0x900)] public long GemLvlUpPanel; + [FieldOffset(0x918)] public long GemLvlUpPanel; [FieldOffset(0x9C8)] public long ItemOnGroundTooltip; [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors } From 22dc1f3e696ae8b477849c81ef6f67219d3e48fd Mon Sep 17 00:00:00 2001 From: Stridemann Date: Wed, 24 Jun 2020 21:22:53 +0300 Subject: [PATCH 70/81] Updated Stats offsets. Hope hud freeze will gone --- Core/PoEMemory/Components/StateMachine.cs | 85 +++++++++++++++++++-- Core/PoEMemory/Components/Stats.cs | 10 ++- Core/Shared/Helpers/MiscHelpers.cs | 16 ++++ GameOffsets/GameOffsets.csproj | 1 + GameOffsets/Native/NativeStringU.cs | 10 ++- GameOffsets/StateMachineComponentOffsets.cs | 12 +++ GameOffsets/StatsComponentOffsets.cs | 8 +- 7 files changed, 128 insertions(+), 14 deletions(-) create mode 100644 GameOffsets/StateMachineComponentOffsets.cs diff --git a/Core/PoEMemory/Components/StateMachine.cs b/Core/PoEMemory/Components/StateMachine.cs index 377484f1..c8460921 100644 --- a/Core/PoEMemory/Components/StateMachine.cs +++ b/Core/PoEMemory/Components/StateMachine.cs @@ -1,16 +1,91 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using ExileCore.PoEMemory.MemoryObjects; +using ExileCore.Shared.Cache; +using ExileCore.Shared.Helpers; +using ExileCore.Shared.Interfaces; +using GameOffsets; +using GameOffsets.Native; + namespace ExileCore.PoEMemory.Components { public class StateMachine : Component { + private readonly CachedValue _stateMachine; + + public StateMachine() + { + _stateMachine = new FrameCache(() => + Address == 0 ? default : M.Read(Address)); + } + + public IList States => ReadStates(); public bool CanBeTarget => M.Read(Address + 0xA0) == 1; public bool InTarget => M.Read(Address + 0xA2) == 1; - #region Harvest + [Obsolete("Use ReadStates() instead")] private long MachineStates => M.Read(Address + 0x38); + [Obsolete("Use ReadStates() instead")] public int EnergyType => M.Read(MachineStates + 0x0); + [Obsolete("Use ReadStates() instead")] public bool IsVisuallyFeeding => M.Read(MachineStates + 0x4); + + public IList ReadStates() + { + var offsets = _stateMachine.Value; + var size = offsets.StatesValues.Size; + var statesCount = size / 8; + var result = new List(); + if (statesCount > 100) + { + Logger.Log.Error($"Error reading states in StateMachine component"); + return result; + } + + var valueByteArray = M.ReadBytes(offsets.StatesValues.First, size); + var valuesIntArray = new long[statesCount]; + + unsafe + { + fixed (void* ptrSrc = valueByteArray) + { + fixed (void* ptrDst = valuesIntArray) + { + Buffer.MemoryCopy(ptrSrc, ptrDst, valueByteArray.Length, valueByteArray.Length); + } + } + } + + + var statesPtr = M.Read(offsets.StatesPtr + 0x10); + + for (var i = 0; i < statesCount; i++) + { + var readAddr = statesPtr + i * 0xA8; + var nativeStringU = M.Read(readAddr); + var stateName = nativeStringU.ToString(M); + var stateValue = valuesIntArray[i]; + + result.Add(new StateMachineState(stateName, stateValue)); + } + + return result; + } + } + + public class StateMachineState + { + public StateMachineState(string name, long value) + { + Name = name; + Value = value; + } - private long MachineStates => M.Read(Address + 0x38); - public int EnergyType => M.Read(MachineStates + 0x0); - public bool IsVisuallyFeeding => M.Read(MachineStates + 0x4); + public string Name { get; } + public long Value { get; } - #endregion + public override string ToString() + { + return $"{Name}: {Value}"; + } } } \ No newline at end of file diff --git a/Core/PoEMemory/Components/Stats.cs b/Core/PoEMemory/Components/Stats.cs index 2a181e1c..8dcae450 100644 --- a/Core/PoEMemory/Components/Stats.cs +++ b/Core/PoEMemory/Components/Stats.cs @@ -8,21 +8,23 @@ namespace ExileCore.PoEMemory.Components { public class Stats : Component { - private readonly CachedValue _cachedValue; + private readonly CachedValue _statsValue; + private readonly CachedValue _substructStatsValue; private readonly CachedValue> _statDictionary; private readonly Dictionary testHumanDictionary = new Dictionary(); private Dictionary testStatDictionary = new Dictionary(); public Stats() { - _cachedValue = new FrameCache(() => M.Read(Address)); + _statsValue = new FrameCache(() => M.Read(Address)); + _substructStatsValue = new FrameCache(() => M.Read(_statsValue.Value.SubStatsPtr)); _statDictionary = new FrameCache>(ParseStats); // _humanDictionary = new FrameCache>(HumanStats); } - public new long OwnerAddress => StatsComponent.Owner; - public StatsComponentOffsets StatsComponent => _cachedValue.Value; + public new long OwnerAddress => _statsValue.Value.Owner; + public SubStatsComponentOffsets StatsComponent => _substructStatsValue.Value; // private CachedValue> _humanDictionary; //Stats goes as sequence of 2 values, 4 byte each. First goes stat ID then goes stat value diff --git a/Core/Shared/Helpers/MiscHelpers.cs b/Core/Shared/Helpers/MiscHelpers.cs index 57c2e5e6..17241c5d 100644 --- a/Core/Shared/Helpers/MiscHelpers.cs +++ b/Core/Shared/Helpers/MiscHelpers.cs @@ -60,6 +60,22 @@ public static string ToString(this NativeStringU str, IMemory mem) .Take((int) str.Size * 2).ToArray()); } + public static string ToString(this NativeUtf8Text str, IMemory m) + { + if (str.LengthWithNullTerminator > 15) + { + if (str.Length < 256) + return m.ReadString(str.Buffer, (int) str.Length * 2); + + return m.ReadString(str.Buffer); + } + + var resultString = Encoding.UTF8.GetString(BitConverter.GetBytes(str.Buffer) + .Concat(BitConverter.GetBytes(str.Reserved8Bytes)) + .Take((int) str.Length).ToArray()); + return resultString; + } + public static string ToString(this PathEntityOffsets str, IMemory mem) { return mem.ReadStringU(str.Path.Ptr, (int) str.Length * 2); diff --git a/GameOffsets/GameOffsets.csproj b/GameOffsets/GameOffsets.csproj index a735e50f..bad9c226 100644 --- a/GameOffsets/GameOffsets.csproj +++ b/GameOffsets/GameOffsets.csproj @@ -84,6 +84,7 @@ + diff --git a/GameOffsets/Native/NativeStringU.cs b/GameOffsets/Native/NativeStringU.cs index 40a6eb7d..16c035b7 100644 --- a/GameOffsets/Native/NativeStringU.cs +++ b/GameOffsets/Native/NativeStringU.cs @@ -14,9 +14,10 @@ public struct NativeStringU } [StructLayout(LayoutKind.Sequential, Pack = 1)] - public struct NativeUnicodeText + public struct NativeUtf8Text { public long Buffer; + //// There is an optimization in POE (or the framework in which POE is created in), where //// if a UnicodeText.LengthWithNullTerminator is less than or equal to 8 //// then the string is stored locally (without a pointer). @@ -24,9 +25,10 @@ public struct NativeUnicodeText //// We have a Reserved8Bytes over here which is then used to store the string. public long Reserved8Bytes; - //// Length or LengthWithNullTerminator have to be multiplied by 2 for UTF-16 format. + //// Length or LengthWithNullTerminator have to be multiplied by 2 for UTF-16 format. public long Length; + //// https://www.fileformat.info/info/unicode/char/0000/index.htm public long LengthWithNullTerminator; - } -} + } +} \ No newline at end of file diff --git a/GameOffsets/StateMachineComponentOffsets.cs b/GameOffsets/StateMachineComponentOffsets.cs new file mode 100644 index 00000000..b703cac6 --- /dev/null +++ b/GameOffsets/StateMachineComponentOffsets.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; +using GameOffsets.Native; + +namespace GameOffsets +{ + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct StateMachineComponentOffsets + { + [FieldOffset(0x20)] public long StatesPtr; + [FieldOffset(0x38)] public NativePtrArray StatesValues; + } +} \ No newline at end of file diff --git a/GameOffsets/StatsComponentOffsets.cs b/GameOffsets/StatsComponentOffsets.cs index 9190fb9c..60481f75 100644 --- a/GameOffsets/StatsComponentOffsets.cs +++ b/GameOffsets/StatsComponentOffsets.cs @@ -7,6 +7,12 @@ namespace GameOffsets public struct StatsComponentOffsets { [FieldOffset(0x8)] public long Owner; - [FieldOffset(0x118)] public NativePtrArray Stats; + [FieldOffset(0x20)] public long SubStatsPtr; + } + + [StructLayout(LayoutKind.Explicit, Pack = 1)] + public struct SubStatsComponentOffsets + { + [FieldOffset(0xF0)] public NativePtrArray Stats; } } From 95b88294fab75135c416645df67f02a9e60672b3 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Wed, 24 Jun 2020 14:32:03 -0400 Subject: [PATCH 71/81] No longer copy all of the references to the output folder. Rosalyn still spamming, though --- Core/Core.csproj | 52 +++++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/Core/Core.csproj b/Core/Core.csproj index b10693a0..0377448a 100644 --- a/Core/Core.csproj +++ b/Core/Core.csproj @@ -42,89 +42,90 @@ ..\packages\Antlr4.Runtime.4.6.6\lib\net45\Antlr4.Runtime.dll - True + False ..\deps\ImGui.NET.dll - True + False ..\packages\InlineIL.Fody.1.3.2\lib\net452\InlineIL.dll - True + False ..\packages\LinqFaster.1.0.0\lib\net461\JM.LinqFaster.dll - True + False ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll - True + False ..\packages\morelinq.3.2.0\lib\net451\MoreLinq.dll - True + False ..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll - True + False ..\packages\PoeFilterParser.1.0.44\lib\net471\PoeFilterParser.dll + False ..\packages\ProcessMemoryUtilities.Net.1.2.0\lib\net48\ProcessMemoryUtilities.dll - True + False ..\packages\Serilog.2.8.0\lib\net46\Serilog.dll - True + False ..\packages\Serilog.Sinks.File.4.0.0\lib\net45\Serilog.Sinks.File.dll - True + False ..\packages\Serilog.Sinks.RollingFile.3.3.0\lib\net45\Serilog.Sinks.RollingFile.dll - True + False ..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll - True + False ..\packages\SharpDX.D3DCompiler.4.2.0\lib\net45\SharpDX.D3DCompiler.dll - True + False ..\packages\SharpDX.Desktop.4.2.0\lib\net45\SharpDX.Desktop.dll - True + False ..\packages\SharpDX.Direct2D1.4.2.0\lib\net45\SharpDX.Direct2D1.dll - True + False ..\packages\SharpDX.Direct3D11.4.2.0\lib\net45\SharpDX.Direct3D11.dll - True + False ..\packages\SharpDX.DXGI.4.2.0\lib\net45\SharpDX.DXGI.dll - True + False ..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll - True + False ..\packages\SharpDX.XAudio2.4.2.0\lib\net45\SharpDX.XAudio2.dll - True + False ..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll - True + False @@ -132,28 +133,28 @@ ..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll - True + False ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - True + False ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll - True + False C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Runtime.Serialization.dll - True + False ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - True + False @@ -484,6 +485,7 @@ {38084bc9-079d-487e-b774-d2f407dc8389} GameOffsets + False From 1bc379b652df07f4ae8c8acd39072725f46ef02d Mon Sep 17 00:00:00 2001 From: baiumbg Date: Wed, 24 Jun 2020 22:23:32 +0300 Subject: [PATCH 72/81] Blight, delirium and metamorph stash tab support --- Core/Core.csproj | 3 ++ .../InventoryElements/BlightInventoryItem.cs | 17 +++++++++ .../DeliriumInventoryItem.cs | 17 +++++++++ .../MetamorphInventoryItem.cs | 17 +++++++++ Core/PoEMemory/MemoryObjects/Inventory.cs | 36 +++++++++++++++++++ Core/Shared/Enums/InventoryType.cs | 5 ++- 6 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 Core/PoEMemory/Elements/InventoryElements/BlightInventoryItem.cs create mode 100644 Core/PoEMemory/Elements/InventoryElements/DeliriumInventoryItem.cs create mode 100644 Core/PoEMemory/Elements/InventoryElements/MetamorphInventoryItem.cs diff --git a/Core/Core.csproj b/Core/Core.csproj index 0377448a..2504f2ad 100644 --- a/Core/Core.csproj +++ b/Core/Core.csproj @@ -222,18 +222,21 @@ + + + diff --git a/Core/PoEMemory/Elements/InventoryElements/BlightInventoryItem.cs b/Core/PoEMemory/Elements/InventoryElements/BlightInventoryItem.cs new file mode 100644 index 00000000..422cd677 --- /dev/null +++ b/Core/PoEMemory/Elements/InventoryElements/BlightInventoryItem.cs @@ -0,0 +1,17 @@ +using SharpDX; + +namespace ExileCore.PoEMemory.Elements.InventoryElements +{ + public class BlightInventoryItem : NormalInventoryItem + { + // Inventory Position in Blight Stash is always invalid. + // Also, as items are fixed, so Inventory Position doesn't matter. + public override int InventPosX => 0; + public override int InventPosY => 0; + + public override RectangleF GetClientRect() + { + return Parent.GetClientRect(); + } + } +} diff --git a/Core/PoEMemory/Elements/InventoryElements/DeliriumInventoryItem.cs b/Core/PoEMemory/Elements/InventoryElements/DeliriumInventoryItem.cs new file mode 100644 index 00000000..473fd282 --- /dev/null +++ b/Core/PoEMemory/Elements/InventoryElements/DeliriumInventoryItem.cs @@ -0,0 +1,17 @@ +using SharpDX; + +namespace ExileCore.PoEMemory.Elements.InventoryElements +{ + public class DeliriumInventoryItem : NormalInventoryItem + { + // Inventory Position in Delirium Stash is always invalid. + // Also, as items are fixed, so Inventory Position doesn't matter. + public override int InventPosX => 0; + public override int InventPosY => 0; + + public override RectangleF GetClientRect() + { + return Parent.GetClientRect(); + } + } +} diff --git a/Core/PoEMemory/Elements/InventoryElements/MetamorphInventoryItem.cs b/Core/PoEMemory/Elements/InventoryElements/MetamorphInventoryItem.cs new file mode 100644 index 00000000..36b1ffec --- /dev/null +++ b/Core/PoEMemory/Elements/InventoryElements/MetamorphInventoryItem.cs @@ -0,0 +1,17 @@ +using SharpDX; + +namespace ExileCore.PoEMemory.Elements.InventoryElements +{ + public class MetamorphInventoryItem : NormalInventoryItem + { + // Inventory Position in Metamorph Stash is always invalid. + // Also, as items are fixed, so Inventory Position doesn't matter. + public override int InventPosX => 0; + public override int InventPosY => 0; + + public override RectangleF GetClientRect() + { + return Parent.GetClientRect(); + } + } +} diff --git a/Core/PoEMemory/MemoryObjects/Inventory.cs b/Core/PoEMemory/MemoryObjects/Inventory.cs index 79feecad..d7b0d00d 100644 --- a/Core/PoEMemory/MemoryObjects/Inventory.cs +++ b/Core/PoEMemory/MemoryObjects/Inventory.cs @@ -148,6 +148,30 @@ public IList VisibleInventoryItems list.Add(item[1].AsObject()); } + break; + case InventoryType.BlightStash: + foreach (var item in InvRoot.Children) + { + if (item.ChildCount > 1) + list.Add(item[1].AsObject()); + } + + break; + case InventoryType.DeliriumStash: + foreach (var item in InvRoot.Children) + { + if (item.ChildCount > 1) + list.Add(item[1].AsObject()); + } + + break; + case InventoryType.MetamorphStash: + foreach (var item in InvRoot.Children) + { + if (item.ChildCount > 1) + list.Add(item[1].AsObject()); + } + break; } @@ -228,6 +252,15 @@ private InventoryType GetInvType() case 0x23: _cacheInventoryType = InventoryType.DelveStash; break; + case 0x50: + _cacheInventoryType = InventoryType.BlightStash; + break; + case 0x1c: + _cacheInventoryType = InventoryType.DeliriumStash; + break; + case 0xe: + _cacheInventoryType = InventoryType.MetamorphStash; + break; default: _cacheInventoryType = InventoryType.InvalidInventory; break; @@ -248,6 +281,9 @@ private Element getInventoryElement() case InventoryType.EssenceStash: case InventoryType.FragmentStash: case InventoryType.DelveStash: + case InventoryType.BlightStash: + case InventoryType.DeliriumStash: + case InventoryType.MetamorphStash: return AsObject().Parent; case InventoryType.DivinationStash: return GetObject(M.Read(Address + OffsetBuffers + 0x24, 0x08)); diff --git a/Core/Shared/Enums/InventoryType.cs b/Core/Shared/Enums/InventoryType.cs index 07390440..1fd4ec27 100644 --- a/Core/Shared/Enums/InventoryType.cs +++ b/Core/Shared/Enums/InventoryType.cs @@ -11,6 +11,9 @@ public enum InventoryType DivinationStash, MapStash, FragmentStash, - DelveStash + DelveStash, + BlightStash, + DeliriumStash, + MetamorphStash } } From 7141601752b608c08b37a106b0fee1df0bf26f75 Mon Sep 17 00:00:00 2001 From: Stridemann Date: Thu, 25 Jun 2020 00:51:33 +0300 Subject: [PATCH 73/81] Bugfix with StateMachine --- Core/Input.cs | 7 ++++--- Core/PoEMemory/Components/StateMachine.cs | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Core/Input.cs b/Core/Input.cs index 38abbdc2..112c74c0 100644 --- a/Core/Input.cs +++ b/Core/Input.cs @@ -54,10 +54,11 @@ public static bool IsKeyDown(int nVirtKey) public static bool IsKeyDown(Keys nVirtKey) { -#if DebugKeys +//#if DebugKeys if (!Keys.ContainsKey(nVirtKey)) - DebugWindow.LogError($"Key '{nVirtKey}' is not registered. Use {nameof(Input)}.{nameof(RegisterKey)}(Settings.MyKey) in Initialize function for registration.", 10); -#endif + RegisterKey(nVirtKey); + //DebugWindow.LogError($"Key '{nVirtKey}' is not registered. Use {nameof(Input)}.{nameof(RegisterKey)}(Settings.MyKey) in Initialize function for registration.", 10); +//#endif return Keys[nVirtKey]; } diff --git a/Core/PoEMemory/Components/StateMachine.cs b/Core/PoEMemory/Components/StateMachine.cs index c8460921..53886ad8 100644 --- a/Core/PoEMemory/Components/StateMachine.cs +++ b/Core/PoEMemory/Components/StateMachine.cs @@ -35,6 +35,10 @@ public IList ReadStates() var size = offsets.StatesValues.Size; var statesCount = size / 8; var result = new List(); + + if (statesCount == 0) + return result; + if (statesCount > 100) { Logger.Log.Error($"Error reading states in StateMachine component"); From 07b33e0a268b09f50c1676fca23b84bcacd2ac74 Mon Sep 17 00:00:00 2001 From: Stridemann Date: Thu, 25 Jun 2020 12:55:41 +0300 Subject: [PATCH 74/81] Bugfix --- Core/PoEMemory/Components/StateMachine.cs | 2 +- Core/PoEMemory/FilesFromMemory.cs | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Core/PoEMemory/Components/StateMachine.cs b/Core/PoEMemory/Components/StateMachine.cs index 53886ad8..fe33127c 100644 --- a/Core/PoEMemory/Components/StateMachine.cs +++ b/Core/PoEMemory/Components/StateMachine.cs @@ -36,7 +36,7 @@ public IList ReadStates() var statesCount = size / 8; var result = new List(); - if (statesCount == 0) + if (statesCount <= 0) return result; if (statesCount > 100) diff --git a/Core/PoEMemory/FilesFromMemory.cs b/Core/PoEMemory/FilesFromMemory.cs index cca73f05..468ac04b 100644 --- a/Core/PoEMemory/FilesFromMemory.cs +++ b/Core/PoEMemory/FilesFromMemory.cs @@ -68,8 +68,11 @@ public void ReadDictionary(long head, ConcurrentDictionary(node.Value + 0x38); From 42de50d36b095e74e2c37a6a2321f3983cc55a4d Mon Sep 17 00:00:00 2001 From: Stridemann Date: Thu, 25 Jun 2020 15:48:40 +0300 Subject: [PATCH 75/81] Fixed harvest entities --- Core/PoEMemory/MemoryObjects/Entity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/PoEMemory/MemoryObjects/Entity.cs b/Core/PoEMemory/MemoryObjects/Entity.cs index 2293dec1..7275bf82 100644 --- a/Core/PoEMemory/MemoryObjects/Entity.cs +++ b/Core/PoEMemory/MemoryObjects/Entity.cs @@ -701,7 +701,7 @@ private EntityType ParseType() if (HasComponent()) return EntityType.Player; - if (Path.StartsWith("Metadata/MiscellaneousObjects/Harvest", StringComparison.Ordinal)) + if (Path.StartsWith("Metadata/MiscellaneousObjects/Harvest", StringComparison.Ordinal) || Path.StartsWith("Metadata/Terrain/Leagues/Harvest", StringComparison.Ordinal)) { League = LeagueType.Harvest; return EntityType.MiscellaneousObjects; From 9f2c7653a648e3dee6930fd1bd0f01eba0e5ee7b Mon Sep 17 00:00:00 2001 From: TehCheat Date: Fri, 26 Jun 2020 11:18:46 -0400 Subject: [PATCH 76/81] Updated buff charges --- Core/PoEMemory/Components/Buff.cs | 2 +- GameOffsets/BuffOffsets.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/PoEMemory/Components/Buff.cs b/Core/PoEMemory/Components/Buff.cs index cbc0e8fd..da32df51 100644 --- a/Core/PoEMemory/Components/Buff.cs +++ b/Core/PoEMemory/Components/Buff.cs @@ -32,7 +32,7 @@ public Buff() public BuffOffsets BuffOffsets => (BuffOffsets) (_offsets = _offsets ?? M.Read(Address)); public string Name => _name.Value; - public byte Charges => M.Read(Address + 44); + public byte Charges => BuffOffsets.Charges; //public int SkillId => M.Read(Address + 0x5C); // I think this is part of another structure referenced in a pointer at 0x58 public float MaxTime => BuffOffsets.MaxTime; // infinity for auras and always on buff diff --git a/GameOffsets/BuffOffsets.cs b/GameOffsets/BuffOffsets.cs index e434799a..e62915e3 100644 --- a/GameOffsets/BuffOffsets.cs +++ b/GameOffsets/BuffOffsets.cs @@ -10,6 +10,6 @@ public struct BuffOffsets [FieldOffset(0x11)] public byte IsRemovable; [FieldOffset(0x10)] public float MaxTime; [FieldOffset(0x14)] public float Timer; - [FieldOffset(0x2C)] public byte Charges; + [FieldOffset(0x30)] public byte Charges; } } From 079def7004d8266add8ca53e9279dcc7d6815d44 Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sat, 27 Jun 2020 16:53:57 -0400 Subject: [PATCH 77/81] Added unique stash tab handling --- Core/PoEMemory/MemoryObjects/Inventory.cs | 13 +++++++++++++ Core/Shared/Enums/InventoryType.cs | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Core/PoEMemory/MemoryObjects/Inventory.cs b/Core/PoEMemory/MemoryObjects/Inventory.cs index 79feecad..3b6e1129 100644 --- a/Core/PoEMemory/MemoryObjects/Inventory.cs +++ b/Core/PoEMemory/MemoryObjects/Inventory.cs @@ -148,6 +148,14 @@ public IList VisibleInventoryItems list.Add(item[1].AsObject()); } + break; + case InventoryType.UniqueStash: + foreach (var item in InvRoot.Children) + { + if (item.ChildCount > 1) + list.Add(item[1].AsObject()); + } + break; } @@ -228,6 +236,9 @@ private InventoryType GetInvType() case 0x23: _cacheInventoryType = InventoryType.DelveStash; break; + case 0x9: + _cacheInventoryType = InventoryType.UniqueStash; + break; default: _cacheInventoryType = InventoryType.InvalidInventory; break; @@ -253,6 +264,8 @@ private Element getInventoryElement() return GetObject(M.Read(Address + OffsetBuffers + 0x24, 0x08)); case InventoryType.MapStash: return AsObject().Parent.AsObject(); + case InventoryType.UniqueStash: + return AsObject().Parent; default: return null; } diff --git a/Core/Shared/Enums/InventoryType.cs b/Core/Shared/Enums/InventoryType.cs index 07390440..416229e6 100644 --- a/Core/Shared/Enums/InventoryType.cs +++ b/Core/Shared/Enums/InventoryType.cs @@ -11,6 +11,7 @@ public enum InventoryType DivinationStash, MapStash, FragmentStash, - DelveStash + DelveStash, + UniqueStash, } } From e37d3ab4c46e73352be4a7ac170f257ebe6d1d1f Mon Sep 17 00:00:00 2001 From: TehCheat Date: Sun, 28 Jun 2020 08:34:50 -0400 Subject: [PATCH 78/81] Fixed the stuff that got broke in the pull request merge --- Core/PoEMemory/MemoryObjects/Inventory.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Core/PoEMemory/MemoryObjects/Inventory.cs b/Core/PoEMemory/MemoryObjects/Inventory.cs index 5b312964..b7868284 100644 --- a/Core/PoEMemory/MemoryObjects/Inventory.cs +++ b/Core/PoEMemory/MemoryObjects/Inventory.cs @@ -169,7 +169,10 @@ public IList VisibleInventoryItems foreach (var item in InvRoot.Children) { if (item.ChildCount > 1) - list.Add(item[1].AsObject()); + list.Add(item[1].AsObject()); + } + + break; case InventoryType.UniqueStash: foreach (var item in InvRoot.Children) { @@ -265,6 +268,7 @@ private InventoryType GetInvType() break; case 0xE: _cacheInventoryType = InventoryType.MetamorphStash; + break; case 0x9: _cacheInventoryType = InventoryType.UniqueStash; break; From 0de94e39061a57384991df4c460e60d0debe5fab Mon Sep 17 00:00:00 2001 From: Stridemann Date: Thu, 2 Jul 2020 21:02:33 +0300 Subject: [PATCH 79/81] Map exchange atlas fix --- Core/PoEMemory/Components/Buff.cs | 2 +- GameOffsets/ServerDataOffsets.cs | 2 +- Loader/Loader.cs | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Core/PoEMemory/Components/Buff.cs b/Core/PoEMemory/Components/Buff.cs index da32df51..8c7dc6d9 100644 --- a/Core/PoEMemory/Components/Buff.cs +++ b/Core/PoEMemory/Components/Buff.cs @@ -40,7 +40,7 @@ public Buff() public override string ToString() { - return $"{Name} - Chargs: {Charges} MaxTime: {MaxTime} Timer: {Timer}"; + return $"{Name} - Charges: {Charges} MaxTime: {MaxTime} Timer: {Timer}"; } } } diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 9e5a63fb..28edabab 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -25,7 +25,7 @@ public struct SkillBarIdsStruct public struct ServerDataOffsets { public const int Skip = 0x5000; - public const int ATLAS_REGION_UPGRADES = 0x7782; + public const int ATLAS_REGION_UPGRADES = 0x7BAA; [FieldOffset(0)] public long MasterAreas; //[FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; [FieldOffset(0x72B0 - Skip)] public byte PlayerClass; diff --git a/Loader/Loader.cs b/Loader/Loader.cs index fb3455ad..45af5861 100644 --- a/Loader/Loader.cs +++ b/Loader/Loader.cs @@ -3,6 +3,7 @@ using System.IO; using System.Linq; using System.Reflection; +using System.Threading.Tasks; using System.Windows.Forms; using Serilog; using SharpDX; @@ -37,6 +38,7 @@ public void Load(string[] args) } LoadLogger(); + SetupExceptionHandling(); LogStartMessage(); LoadCoreType(); LoadPerformanceTimerType(); @@ -59,6 +61,23 @@ public void Load(string[] args) } } + /// + /// Setups the exception handling. + /// + private void SetupExceptionHandling() + { + AppDomain.CurrentDomain.UnhandledException += (s, e) => + LogUnhandledException((Exception)e.ExceptionObject, "AppDomain.CurrentDomain.UnhandledException"); + + TaskScheduler.UnobservedTaskException += (s, e) => + LogUnhandledException(e.Exception, "TaskScheduler.UnobservedTaskException"); + } + + private void LogUnhandledException(Exception exception, string source) + { + _logger.Error($"Unhandled exception ({source}) in program: {exception}"); + } + private void LoadCoreDll() { _coreDll = Assembly.Load("ExileCore"); From 4301a5353140b244e12f9b7b735dacec1fbe6e3d Mon Sep 17 00:00:00 2001 From: TehCheat Date: Mon, 6 Jul 2020 11:45:23 -0400 Subject: [PATCH 80/81] Updated TenCent offsets for 3.11 --- GameOffsets/CameraOffsets.cs | 3 +- GameOffsets/IngameDataOffsets.cs | 6 +-- GameOffsets/IngameUElementsOffsets.cs | 56 +++++++++++++-------------- GameOffsets/ServerDataOffsets.cs | 50 ++++++++++++------------ 4 files changed, 57 insertions(+), 58 deletions(-) diff --git a/GameOffsets/CameraOffsets.cs b/GameOffsets/CameraOffsets.cs index 16fe0605..d887e5cc 100644 --- a/GameOffsets/CameraOffsets.cs +++ b/GameOffsets/CameraOffsets.cs @@ -12,7 +12,6 @@ public struct CameraOffsets //4 bytes before the matrix doesn't change [FieldOffset(0xA8)] public Matrix MatrixBytes; [FieldOffset(0x120)] public Vector3 Position; - [FieldOffset(0x214)] public float ZFar; - + [FieldOffset(0x224)] public float ZFar; } } diff --git a/GameOffsets/IngameDataOffsets.cs b/GameOffsets/IngameDataOffsets.cs index 4f1cff8a..ed5a94e0 100644 --- a/GameOffsets/IngameDataOffsets.cs +++ b/GameOffsets/IngameDataOffsets.cs @@ -10,9 +10,9 @@ public struct IngameDataOffsets [FieldOffset(0x78)] public byte CurrentAreaLevel; [FieldOffset(0xDC)] public uint CurrentAreaHash; [FieldOffset(0xF0)] public NativePtrArray MapStats; - [FieldOffset(0x400)] public long LocalPlayer; [FieldOffset(0x11C)] public long LabDataPtr; - [FieldOffset(0x488)] public long EntityList; - [FieldOffset(0x490)] public long EntitiesCount; + [FieldOffset(0x480)] public long LocalPlayer; + [FieldOffset(0x508)] public long EntityList; + [FieldOffset(0x510)] public long EntitiesCount; } } diff --git a/GameOffsets/IngameUElementsOffsets.cs b/GameOffsets/IngameUElementsOffsets.cs index e3a2b103..93e88aff 100644 --- a/GameOffsets/IngameUElementsOffsets.cs +++ b/GameOffsets/IngameUElementsOffsets.cs @@ -7,34 +7,34 @@ public struct IngameUElementsOffsets { [FieldOffset(0x210)] public long GetQuests; [FieldOffset(0x250)] public long GameUI; - [FieldOffset(0x370)] public long Mouse; - [FieldOffset(0x378)] public long SkillBar; - [FieldOffset(0x380)] public long HiddenSkillBar; - [FieldOffset(0x480)] public long QuestTracker; - [FieldOffset(0x4E8)] public long OpenLeftPanel; - [FieldOffset(0x4F0)] public long OpenRightPanel; - [FieldOffset(0x520)] public long InventoryPanel; - [FieldOffset(0x528)] public long StashElement; - [FieldOffset(0x550)] public long TreePanel; - [FieldOffset(0x558)] public long AtlasPanel; - [FieldOffset(0x588)] public long WorldMap; - [FieldOffset(0x5A8)] public long Map; - [FieldOffset(0x5B0)] public long itemsOnGroundLabelRoot; - [FieldOffset(0x648)] public long PurchaseWindow; - [FieldOffset(0x650)] public long SellWindow; - [FieldOffset(0x690)] public long MapDeviceWindow; - [FieldOffset(0x6E8)] public long IncursionWindow; - [FieldOffset(0x708)] public long DelveWindow; - [FieldOffset(0x728)] public long BetrayalWindow; - [FieldOffset(0x730)] public long ZanaMissionChoice; - [FieldOffset(0x740)] public long CraftBenchWindow; - [FieldOffset(0x748)] public long UnveilWindow; - [FieldOffset(0x778)] public long SynthesisWindow; - [FieldOffset(0x788)] public long MetamorphWindow; - [FieldOffset(0x7D8)] public long AreaInstanceUi; - [FieldOffset(0x8A8)] public long InvitesPanel; - [FieldOffset(0x918)] public long GemLvlUpPanel; - [FieldOffset(0x9C8)] public long ItemOnGroundTooltip; + [FieldOffset(0x380)] public long Mouse; + [FieldOffset(0x388)] public long SkillBar; + [FieldOffset(0x390)] public long HiddenSkillBar; + [FieldOffset(0x490)] public long QuestTracker; + [FieldOffset(0x4F8)] public long OpenLeftPanel; + [FieldOffset(0x500)] public long OpenRightPanel; + [FieldOffset(0x530)] public long InventoryPanel; + [FieldOffset(0x538)] public long StashElement; + [FieldOffset(0x560)] public long TreePanel; + [FieldOffset(0x568)] public long AtlasPanel; + [FieldOffset(0x598)] public long WorldMap; + [FieldOffset(0x5C0)] public long Map; + [FieldOffset(0x5C8)] public long itemsOnGroundLabelRoot; + [FieldOffset(0x660)] public long PurchaseWindow; + [FieldOffset(0x668)] public long SellWindow; + [FieldOffset(0x6A8)] public long MapDeviceWindow; + [FieldOffset(0x700)] public long IncursionWindow; + [FieldOffset(0x720)] public long DelveWindow; + [FieldOffset(0x740)] public long BetrayalWindow; + [FieldOffset(0x748)] public long ZanaMissionChoice; + [FieldOffset(0x758)] public long CraftBenchWindow; + [FieldOffset(0x760)] public long UnveilWindow; + [FieldOffset(0x790)] public long SynthesisWindow; + [FieldOffset(0x7A0)] public long MetamorphWindow; + [FieldOffset(0x800)] public long AreaInstanceUi; + [FieldOffset(0x8D0)] public long InvitesPanel; + [FieldOffset(0x948)] public long GemLvlUpPanel; + [FieldOffset(0x9F8)] public long ItemOnGroundTooltip; [FieldOffset(0x0/*0xF18*/)] public long MapTabWindowStartPtr;//TOFO: Fixme. Cause reading errors } } diff --git a/GameOffsets/ServerDataOffsets.cs b/GameOffsets/ServerDataOffsets.cs index 28edabab..65a02bee 100644 --- a/GameOffsets/ServerDataOffsets.cs +++ b/GameOffsets/ServerDataOffsets.cs @@ -28,36 +28,36 @@ public struct ServerDataOffsets public const int ATLAS_REGION_UPGRADES = 0x7BAA; [FieldOffset(0)] public long MasterAreas; //[FieldOffset(0x7068 - Skip)] public NativePtrArray PassiveSkillIds; - [FieldOffset(0x72B0 - Skip)] public byte PlayerClass; //[FieldOffset(0x710C - Skip)] public int CharacterLevel; //[FieldOffset(0x7110 - Skip)] public int PassiveRefundPointsLeft; //[FieldOffset(0x7114 - Skip)] public int QuestPassiveSkillPoints; //[FieldOffset(0x7118 - Skip)] public int FreePassiveSkillPointsLeft;//TODO: 3.8.1 fix me //[FieldOffset(0x711C - Skip)] public int TotalAscendencyPoints; //[FieldOffset(0x7120 - Skip)] public int SpentAscendencyPoints; - [FieldOffset(0x7328 - Skip)] public byte NetworkState; - [FieldOffset(0x7350 - Skip)] public NativeStringU League; - [FieldOffset(0x73C0 - Skip)] public float TimeInGame; - [FieldOffset(0x73C8 - Skip)] public int Latency; - [FieldOffset(0x73D8 - Skip)] public NativePtrArray PlayerStashTabs; - [FieldOffset(0x73F0 - Skip)] public NativePtrArray GuildStashTabs; - [FieldOffset(0x74F0 - Skip)] public byte PartyStatusType; - [FieldOffset(0x7500 - Skip)] public byte PartyAllocationType; - [FieldOffset(0x7588 - Skip)] public long GuildName; - [FieldOffset(0x7590 - Skip)] public SkillBarIdsStruct SkillBarIds; - [FieldOffset(0x75E8 - Skip)] public NativePtrArray NearestPlayers; - [FieldOffset(0x76F0 - Skip)] public NativePtrArray PlayerInventories; - [FieldOffset(0x77C8 - Skip)] public NativePtrArray NPCInventories; - [FieldOffset(0x7880 - Skip)] public NativePtrArray GuildInventories; - [FieldOffset(0x79E0 - Skip)] public ushort TradeChatChannel; - [FieldOffset(0x79E8 - Skip)] public ushort GlobalChatChannel; - [FieldOffset(0x7A38 - Skip)] public ushort LastActionId;//Do we need this? - [FieldOffset(0x7AB0 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset - [FieldOffset(0x7AF0 - Skip)] public long BonusCompletedAreas; - [FieldOffset(0x7B30 - Skip)] public long AwakenedAreas; - [FieldOffset(0x85E4 - Skip)] public byte MonsterLevel; - [FieldOffset(0x85e5 - Skip)] public byte MonstersRemaining; - [FieldOffset(0x8698 - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested - [FieldOffset(0x86A4 - Skip)] public int CurrentAzuriteAmount; + [FieldOffset(0x77A8 - Skip)] public byte NetworkState; + [FieldOffset(0x77C0 - Skip)] public NativeStringU League; + [FieldOffset(0x77E8 - Skip)] public byte PlayerClass; + [FieldOffset(0x7840 - Skip)] public float TimeInGame; + [FieldOffset(0x7848 - Skip)] public int Latency; + [FieldOffset(0x7858 - Skip)] public NativePtrArray PlayerStashTabs; + [FieldOffset(0x7870 - Skip)] public NativePtrArray GuildStashTabs; + [FieldOffset(0x7970 - Skip)] public byte PartyStatusType; + [FieldOffset(0x7980 - Skip)] public byte PartyAllocationType; + [FieldOffset(0x7A08 - Skip)] public long GuildName; + [FieldOffset(0x7A10 - Skip)] public SkillBarIdsStruct SkillBarIds; + [FieldOffset(0x7A68 - Skip)] public NativePtrArray NearestPlayers; + [FieldOffset(0x7B70 - Skip)] public NativePtrArray PlayerInventories; + [FieldOffset(0x7C48 - Skip)] public NativePtrArray NPCInventories; + [FieldOffset(0x7D00 - Skip)] public NativePtrArray GuildInventories; + [FieldOffset(0x7E60 - Skip)] public ushort TradeChatChannel; + [FieldOffset(0x7E68 - Skip)] public ushort GlobalChatChannel; + [FieldOffset(0x7EB4 - Skip)] public ushort LastActionId;//Do we need this? + [FieldOffset(0x7F30 - Skip)] public long CompletedMaps;//search for a LONG value equals to your current amount of completed maps. Pointer will be under this offset + [FieldOffset(0x7F70 - Skip)] public long BonusCompletedAreas; + [FieldOffset(0x7FB0 - Skip)] public long AwakenedAreas; + [FieldOffset(0x8B84 - Skip)] public byte MonsterLevel; + [FieldOffset(0x8B85 - Skip)] public byte MonstersRemaining; + [FieldOffset(0x8C1C - Skip)] public ushort CurrentSulphiteAmount; //Maybe wrong not tested + [FieldOffset(0x8C28 - Skip)] public int CurrentAzuriteAmount; } } From bccfc1cba90a8bd57f126cd66ce5e41b71496bcf Mon Sep 17 00:00:00 2001 From: TehCheat Date: Tue, 7 Jul 2020 14:27:23 -0400 Subject: [PATCH 81/81] Updated pickit to the latest from Sithylis --- Plugins/Source/Pickit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Source/Pickit b/Plugins/Source/Pickit index 581274c0..3e81cb9e 160000 --- a/Plugins/Source/Pickit +++ b/Plugins/Source/Pickit @@ -1 +1 @@ -Subproject commit 581274c0a384b80740f2e43a4b6ef85fc4381b4c +Subproject commit 3e81cb9e195fb4a0b786dbe7d062ab617995dd1e