diff --git a/LICENSE.md b/LICENSE.md index 479186304f..954c2cf772 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -554,6 +554,34 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ******************************************************************************* +sha2: + +******************************************************************************* + +MIT License + +Copyright (c) 2018-2022 Egor Skriptunoff + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +******************************************************************************* + xml.lua: ******************************************************************************* @@ -1279,3 +1307,55 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ******************************************************************************* + +luasocket: + +******************************************************************************* + +Copyright (C) 2004-2022 Diego Nehab + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +******************************************************************************* + +lua-utf8: + +******************************************************************************* + +MIT License + +Copyright (c) 2018 Xavier Wang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/runtime/lua/sha2.lua b/runtime/lua/sha2.lua new file mode 100644 index 0000000000..201f52ea67 --- /dev/null +++ b/runtime/lua/sha2.lua @@ -0,0 +1,5675 @@ +-------------------------------------------------------------------------------------------------------------------------- +-- sha2.lua +-------------------------------------------------------------------------------------------------------------------------- +-- VERSION: 12 (2022-02-23) +-- AUTHOR: Egor Skriptunoff +-- LICENSE: MIT (the same license as Lua itself) +-- URL: https://github.com/Egor-Skriptunoff/pure_lua_SHA +-- +-- DESCRIPTION: +-- This module contains functions to calculate SHA digest: +-- MD5, SHA-1, +-- SHA-224, SHA-256, SHA-512/224, SHA-512/256, SHA-384, SHA-512, +-- SHA3-224, SHA3-256, SHA3-384, SHA3-512, SHAKE128, SHAKE256, +-- HMAC, +-- BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp, BLAKE2Xb, BLAKE2Xs, +-- BLAKE3, BLAKE3_KDF +-- Written in pure Lua. +-- Compatible with: +-- Lua 5.1, Lua 5.2, Lua 5.3, Lua 5.4, Fengari, LuaJIT 2.0/2.1 (any CPU endianness). +-- Main feature of this module: it was heavily optimized for speed. +-- For every Lua version the module contains particular implementation branch to get benefits from version-specific features. +-- - branch for Lua 5.1 (emulating bitwise operators using look-up table) +-- - branch for Lua 5.2 (using bit32/bit library), suitable for both Lua 5.2 with native "bit32" and Lua 5.1 with external library "bit" +-- - branch for Lua 5.3/5.4 (using native 64-bit bitwise operators) +-- - branch for Lua 5.3/5.4 (using native 32-bit bitwise operators) for Lua built with LUA_INT_TYPE=LUA_INT_INT +-- - branch for LuaJIT without FFI library (useful in a sandboxed environment) +-- - branch for LuaJIT x86 without FFI library (LuaJIT x86 has oddity because of lack of CPU registers) +-- - branch for LuaJIT 2.0 with FFI library (bit.* functions work only with Lua numbers) +-- - branch for LuaJIT 2.1 with FFI library (bit.* functions can work with "int64_t" arguments) +-- +-- +-- USAGE: +-- Input data should be provided as a binary string: either as a whole string or as a sequence of substrings (chunk-by-chunk loading, total length < 9*10^15 bytes). +-- Result (SHA digest) is returned in hexadecimal representation as a string of lowercase hex digits. +-- Simplest usage example: +-- local sha = require("sha2") +-- local your_hash = sha.sha256("your string") +-- See file "sha2_test.lua" for more examples. +-- +-- +-- CHANGELOG: +-- version date description +-- ------- ---------- ----------- +-- 12 2022-02-23 Now works in Luau (but NOT optimized for speed) +-- 11 2022-01-09 BLAKE3 added +-- 10 2022-01-02 BLAKE2 functions added +-- 9 2020-05-10 Now works in OpenWrt's Lua (dialect of Lua 5.1 with "double" + "invisible int32") +-- 8 2019-09-03 SHA-3 functions added +-- 7 2019-03-17 Added functions to convert to/from base64 +-- 6 2018-11-12 HMAC added +-- 5 2018-11-10 SHA-1 added +-- 4 2018-11-03 MD5 added +-- 3 2018-11-02 Bug fixed: incorrect hashing of long (2 GByte) data streams on Lua 5.3/5.4 built with "int32" integers +-- 2 2018-10-07 Decreased module loading time in Lua 5.1 implementation branch (thanks to Peter Melnichenko for giving a hint) +-- 1 2018-10-06 First release (only SHA-2 functions) +----------------------------------------------------------------------------- + + +local print_debug_messages = false -- set to true to view some messages about your system's abilities and implementation branch chosen for your system + +local unpack, table_concat, byte, char, string_rep, sub, gsub, gmatch, string_format, floor, ceil, math_min, math_max, tonumber, type, math_huge = + table.unpack or unpack, table.concat, string.byte, string.char, string.rep, string.sub, string.gsub, string.gmatch, string.format, math.floor, math.ceil, math.min, math.max, tonumber, type, math.huge + + +-------------------------------------------------------------------------------- +-- EXAMINING YOUR SYSTEM +-------------------------------------------------------------------------------- + +local function get_precision(one) + -- "one" must be either float 1.0 or integer 1 + -- returns bits_precision, is_integer + -- This function works correctly with all floating point datatypes (including non-IEEE-754) + local k, n, m, prev_n = 0, one, one + while true do + k, prev_n, n, m = k + 1, n, n + n + 1, m + m + k % 2 + if k > 256 or n - (n - 1) ~= 1 or m - (m - 1) ~= 1 or n == m then + return k, false -- floating point datatype + elseif n == prev_n then + return k, true -- integer datatype + end + end +end + +-- Make sure Lua has "double" numbers +local x = 2/3 +local Lua_has_double = x * 5 > 3 and x * 4 < 3 and get_precision(1.0) >= 53 +assert(Lua_has_double, "at least 53-bit floating point numbers are required") + +-- Q: +-- SHA2 was designed for FPU-less machines. +-- So, why floating point numbers are needed for this module? +-- A: +-- 53-bit "double" numbers are useful to calculate "magic numbers" used in SHA. +-- I prefer to write 50 LOC "magic numbers calculator" instead of storing more than 200 constants explicitly in this source file. + +local int_prec, Lua_has_integers = get_precision(1) +local Lua_has_int64 = Lua_has_integers and int_prec == 64 +local Lua_has_int32 = Lua_has_integers and int_prec == 32 +assert(Lua_has_int64 or Lua_has_int32 or not Lua_has_integers, "Lua integers must be either 32-bit or 64-bit") + +-- Q: +-- Does it mean that almost all non-standard configurations are not supported? +-- A: +-- Yes. Sorry, too many problems to support all possible Lua numbers configurations. +-- Lua 5.1/5.2 with "int32" will not work. +-- Lua 5.1/5.2 with "int64" will not work. +-- Lua 5.1/5.2 with "int128" will not work. +-- Lua 5.1/5.2 with "float" will not work. +-- Lua 5.1/5.2 with "double" is OK. (default config for Lua 5.1, Lua 5.2, LuaJIT) +-- Lua 5.3/5.4 with "int32" + "float" will not work. +-- Lua 5.3/5.4 with "int64" + "float" will not work. +-- Lua 5.3/5.4 with "int128" + "float" will not work. +-- Lua 5.3/5.4 with "int32" + "double" is OK. (config used by Fengari) +-- Lua 5.3/5.4 with "int64" + "double" is OK. (default config for Lua 5.3, Lua 5.4) +-- Lua 5.3/5.4 with "int128" + "double" will not work. +-- Using floating point numbers better than "double" instead of "double" is OK (non-IEEE-754 floating point implementation are allowed). +-- Using "int128" instead of "int64" is not OK: "int128" would require different branch of implementation for optimized SHA512. + +-- Check for LuaJIT and 32-bit bitwise libraries +local is_LuaJIT = ({false, [1] = true})[1] and _VERSION ~= "Luau" and (type(jit) ~= "table" or jit.version_num >= 20000) -- LuaJIT 1.x.x and Luau are treated as vanilla Lua 5.1/5.2 +local is_LuaJIT_21 -- LuaJIT 2.1+ +local LuaJIT_arch +local ffi -- LuaJIT FFI library (as a table) +local b -- 32-bit bitwise library (as a table) +local library_name + +if is_LuaJIT then + -- Assuming "bit" library is always available on LuaJIT + b = require"bit" + library_name = "bit" + -- "ffi" is intentionally disabled on some systems for safety reason + local LuaJIT_has_FFI, result = pcall(require, "ffi") + if LuaJIT_has_FFI then + ffi = result + end + is_LuaJIT_21 = not not loadstring"b=0b0" + LuaJIT_arch = type(jit) == "table" and jit.arch or ffi and ffi.arch or nil +else + -- For vanilla Lua, "bit"/"bit32" libraries are searched in global namespace only. No attempt is made to load a library if it's not loaded yet. + for _, libname in ipairs(_VERSION == "Lua 5.2" and {"bit32", "bit"} or {"bit", "bit32"}) do + if type(_G[libname]) == "table" and _G[libname].bxor then + b = _G[libname] + library_name = libname + break + end + end +end + +-------------------------------------------------------------------------------- +-- You can disable here some of your system's abilities (for testing purposes) +-------------------------------------------------------------------------------- +-- is_LuaJIT = nil +-- is_LuaJIT_21 = nil +-- ffi = nil +-- Lua_has_int32 = nil +-- Lua_has_int64 = nil +-- b, library_name = nil +-------------------------------------------------------------------------------- + +if print_debug_messages then + -- Printing list of abilities of your system + print("Abilities:") + print(" Lua version: "..(is_LuaJIT and "LuaJIT "..(is_LuaJIT_21 and "2.1 " or "2.0 ")..(LuaJIT_arch or "")..(ffi and " with FFI" or " without FFI") or _VERSION)) + print(" Integer bitwise operators: "..(Lua_has_int64 and "int64" or Lua_has_int32 and "int32" or "no")) + print(" 32-bit bitwise library: "..(library_name or "not found")) +end + +-- Selecting the most suitable implementation for given set of abilities +local method, branch +if is_LuaJIT and ffi then + method = "Using 'ffi' library of LuaJIT" + branch = "FFI" +elseif is_LuaJIT then + method = "Using special code for sandboxed LuaJIT (no FFI)" + branch = "LJ" +elseif Lua_has_int64 then + method = "Using native int64 bitwise operators" + branch = "INT64" +elseif Lua_has_int32 then + method = "Using native int32 bitwise operators" + branch = "INT32" +elseif library_name then -- when bitwise library is available (Lua 5.2 with native library "bit32" or Lua 5.1 with external library "bit") + method = "Using '"..library_name.."' library" + branch = "LIB32" +else + method = "Emulating bitwise operators using look-up table" + branch = "EMUL" +end + +if print_debug_messages then + -- Printing the implementation selected to be used on your system + print("Implementation selected:") + print(" "..method) +end + + +-------------------------------------------------------------------------------- +-- BASIC 32-BIT BITWISE FUNCTIONS +-------------------------------------------------------------------------------- + +local AND, OR, XOR, SHL, SHR, ROL, ROR, NOT, NORM, HEX, XOR_BYTE +-- Only low 32 bits of function arguments matter, high bits are ignored +-- The result of all functions (except HEX) is an integer inside "correct range": +-- for "bit" library: (-2^31)..(2^31-1) +-- for "bit32" library: 0..(2^32-1) + +if branch == "FFI" or branch == "LJ" or branch == "LIB32" then + + -- Your system has 32-bit bitwise library (either "bit" or "bit32") + + AND = b.band -- 2 arguments + OR = b.bor -- 2 arguments + XOR = b.bxor -- 2..5 arguments + SHL = b.lshift -- second argument is integer 0..31 + SHR = b.rshift -- second argument is integer 0..31 + ROL = b.rol or b.lrotate -- second argument is integer 0..31 + ROR = b.ror or b.rrotate -- second argument is integer 0..31 + NOT = b.bnot -- only for LuaJIT + NORM = b.tobit -- only for LuaJIT + HEX = b.tohex -- returns string of 8 lowercase hexadecimal digits + assert(AND and OR and XOR and SHL and SHR and ROL and ROR and NOT, "Library '"..library_name.."' is incomplete") + XOR_BYTE = XOR -- XOR of two bytes (0..255) + +elseif branch == "EMUL" then + + -- Emulating 32-bit bitwise operations using 53-bit floating point arithmetic + + function SHL(x, n) + return (x * 2^n) % 2^32 + end + + function SHR(x, n) + x = x % 2^32 / 2^n + return x - x % 1 + end + + function ROL(x, n) + x = x % 2^32 * 2^n + local r = x % 2^32 + return r + (x - r) / 2^32 + end + + function ROR(x, n) + x = x % 2^32 / 2^n + local r = x % 1 + return r * 2^32 + (x - r) + end + + local AND_of_two_bytes = {[0] = 0} -- look-up table (256*256 entries) + local idx = 0 + for y = 0, 127 * 256, 256 do + for x = y, y + 127 do + x = AND_of_two_bytes[x] * 2 + AND_of_two_bytes[idx] = x + AND_of_two_bytes[idx + 1] = x + AND_of_two_bytes[idx + 256] = x + AND_of_two_bytes[idx + 257] = x + 1 + idx = idx + 2 + end + idx = idx + 256 + end + + local function and_or_xor(x, y, operation) + -- operation: nil = AND, 1 = OR, 2 = XOR + local x0 = x % 2^32 + local y0 = y % 2^32 + local rx = x0 % 256 + local ry = y0 % 256 + local res = AND_of_two_bytes[rx + ry * 256] + x = x0 - rx + y = (y0 - ry) / 256 + rx = x % 65536 + ry = y % 256 + res = res + AND_of_two_bytes[rx + ry] * 256 + x = (x - rx) / 256 + y = (y - ry) / 256 + rx = x % 65536 + y % 256 + res = res + AND_of_two_bytes[rx] * 65536 + res = res + AND_of_two_bytes[(x + y - rx) / 256] * 16777216 + if operation then + res = x0 + y0 - operation * res + end + return res + end + + function AND(x, y) + return and_or_xor(x, y) + end + + function OR(x, y) + return and_or_xor(x, y, 1) + end + + function XOR(x, y, z, t, u) -- 2..5 arguments + if z then + if t then + if u then + t = and_or_xor(t, u, 2) + end + z = and_or_xor(z, t, 2) + end + y = and_or_xor(y, z, 2) + end + return and_or_xor(x, y, 2) + end + + function XOR_BYTE(x, y) + return x + y - 2 * AND_of_two_bytes[x + y * 256] + end + +end + +HEX = HEX + or + pcall(string_format, "%x", 2^31) and + function (x) -- returns string of 8 lowercase hexadecimal digits + return string_format("%08x", x % 4294967296) + end + or + function (x) -- for OpenWrt's dialect of Lua + return string_format("%08x", (x + 2^31) % 2^32 - 2^31) + end + +local function XORA5(x, y) + return XOR(x, y or 0xA5A5A5A5) % 4294967296 +end + +local function create_array_of_lanes() + return {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} +end + + +-------------------------------------------------------------------------------- +-- CREATING OPTIMIZED INNER LOOP +-------------------------------------------------------------------------------- + +-- Inner loop functions +local sha256_feed_64, sha512_feed_128, md5_feed_64, sha1_feed_64, keccak_feed, blake2s_feed_64, blake2b_feed_128, blake3_feed_64 + +-- Arrays of SHA-2 "magic numbers" (in "INT64" and "FFI" branches "*_lo" arrays contain 64-bit values) +local sha2_K_lo, sha2_K_hi, sha2_H_lo, sha2_H_hi, sha3_RC_lo, sha3_RC_hi = {}, {}, {}, {}, {}, {} +local sha2_H_ext256 = {[224] = {}, [256] = sha2_H_hi} +local sha2_H_ext512_lo, sha2_H_ext512_hi = {[384] = {}, [512] = sha2_H_lo}, {[384] = {}, [512] = sha2_H_hi} +local md5_K, md5_sha1_H = {}, {0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0} +local md5_next_shift = {0, 0, 0, 0, 0, 0, 0, 0, 28, 25, 26, 27, 0, 0, 10, 9, 11, 12, 0, 15, 16, 17, 18, 0, 20, 22, 23, 21} +local HEX64, lanes_index_base -- defined only for branches that internally use 64-bit integers: "INT64" and "FFI" +local common_W = {} -- temporary table shared between all calculations (to avoid creating new temporary table every time) +local common_W_blake2b, common_W_blake2s, v_for_blake2s_feed_64 = common_W, common_W, {} +local K_lo_modulo, hi_factor, hi_factor_keccak = 4294967296, 0, 0 +local sigma = { + { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, + { 15, 11, 5, 9, 10, 16, 14, 7, 2, 13, 1, 3, 12, 8, 6, 4 }, + { 12, 9, 13, 1, 6, 3, 16, 14, 11, 15, 4, 7, 8, 2, 10, 5 }, + { 8, 10, 4, 2, 14, 13, 12, 15, 3, 7, 6, 11, 5, 1, 16, 9 }, + { 10, 1, 6, 8, 3, 5, 11, 16, 15, 2, 12, 13, 7, 9, 4, 14 }, + { 3, 13, 7, 11, 1, 12, 9, 4, 5, 14, 8, 6, 16, 15, 2, 10 }, + { 13, 6, 2, 16, 15, 14, 5, 11, 1, 8, 7, 4, 10, 3, 9, 12 }, + { 14, 12, 8, 15, 13, 2, 4, 10, 6, 1, 16, 5, 9, 7, 3, 11 }, + { 7, 16, 15, 10, 12, 4, 1, 9, 13, 3, 14, 8, 2, 5, 11, 6 }, + { 11, 3, 9, 5, 8, 7, 2, 6, 16, 12, 10, 15, 4, 13, 14, 1 }, +}; sigma[11], sigma[12] = sigma[1], sigma[2] +local perm_blake3 = { + 1, 3, 4, 11, 13, 10, 12, 6, + 1, 3, 4, 11, 13, 10, + 2, 7, 5, 8, 14, 15, 16, 9, + 2, 7, 5, 8, 14, 15, +} + +local function build_keccak_format(elem) + local keccak_format = {} + for _, size in ipairs{1, 9, 13, 17, 18, 21} do + keccak_format[size] = "<"..string_rep(elem, size) + end + return keccak_format +end + + +if branch == "FFI" then + + local common_W_FFI_int32 = ffi.new("int32_t[?]", 80) -- 64 is enough for SHA256, but 80 is needed for SHA-1 + common_W_blake2s = common_W_FFI_int32 + v_for_blake2s_feed_64 = ffi.new("int32_t[?]", 16) + perm_blake3 = ffi.new("uint8_t[?]", #perm_blake3 + 1, 0, unpack(perm_blake3)) + for j = 1, 10 do + sigma[j] = ffi.new("uint8_t[?]", #sigma[j] + 1, 0, unpack(sigma[j])) + end; sigma[11], sigma[12] = sigma[1], sigma[2] + + + -- SHA256 implementation for "LuaJIT with FFI" branch + + function sha256_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W_FFI_int32, sha2_K_hi + for pos = offs, offs + size - 1, 64 do + for j = 0, 15 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) -- slow, but doesn't depend on endianness + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for j = 16, 63 do + local a, b = W[j-15], W[j-2] + W[j] = NORM( XOR(ROR(a, 7), ROL(a, 14), SHR(a, 3)) + XOR(ROL(b, 15), ROL(b, 13), SHR(b, 10)) + W[j-7] + W[j-16] ) + end + local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for j = 0, 63, 8 do -- Thanks to Peter Cawley for this workaround (unroll the loop to avoid "PHI shuffling too complex" due to PHIs overlap) + local z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j] + K[j+1] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+1] + K[j+2] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+2] + K[j+3] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+3] + K[j+4] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+4] + K[j+5] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+5] + K[j+6] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+6] + K[j+7] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(g, AND(e, XOR(f, g))) + XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + (W[j+7] + K[j+8] + h) ) + h, g, f, e = g, f, e, NORM( d + z ) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + end + H[1], H[2], H[3], H[4] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]) + H[5], H[6], H[7], H[8] = NORM(e + H[5]), NORM(f + H[6]), NORM(g + H[7]), NORM(h + H[8]) + end + end + + + local common_W_FFI_int64 = ffi.new("int64_t[?]", 80) + common_W_blake2b = common_W_FFI_int64 + local int64 = ffi.typeof"int64_t" + local int32 = ffi.typeof"int32_t" + local uint32 = ffi.typeof"uint32_t" + hi_factor = int64(2^32) + + if is_LuaJIT_21 then -- LuaJIT 2.1 supports bitwise 64-bit operations + + local AND64, OR64, XOR64, NOT64, SHL64, SHR64, ROL64, ROR64 -- introducing synonyms for better code readability + = AND, OR, XOR, NOT, SHL, SHR, ROL, ROR + HEX64 = HEX + + + -- BLAKE2b implementation for "LuaJIT 2.1 + FFI" branch + + do + local v = ffi.new("int64_t[?]", 16) + local W = common_W_blake2b + + local function G(a, b, c, d, k1, k2) + local va, vb, vc, vd = v[a], v[b], v[c], v[d] + va = W[k1] + (va + vb) + vd = ROR64(XOR64(vd, va), 32) + vc = vc + vd + vb = ROR64(XOR64(vb, vc), 24) + va = W[k2] + (va + vb) + vd = ROR64(XOR64(vd, va), 16) + vc = vc + vd + vb = ROL64(XOR64(vb, vc), 1) + v[a], v[b], v[c], v[d] = va, vb, vc, vd + end + + function blake2b_feed_128(H, _, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs, offs + size - 1, 128 do + if str then + for j = 1, 16 do + pos = pos + 8 + local a, b, c, d, e, f, g, h = byte(str, pos - 7, pos) + W[j] = XOR64(OR(SHL(h, 24), SHL(g, 16), SHL(f, 8), e) * int64(2^32), uint32(int32(OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a)))) + end + end + v[0x0], v[0x1], v[0x2], v[0x3], v[0x4], v[0x5], v[0x6], v[0x7] = h1, h2, h3, h4, h5, h6, h7, h8 + v[0x8], v[0x9], v[0xA], v[0xB], v[0xD], v[0xE], v[0xF] = sha2_H_lo[1], sha2_H_lo[2], sha2_H_lo[3], sha2_H_lo[4], sha2_H_lo[6], sha2_H_lo[7], sha2_H_lo[8] + bytes_compressed = bytes_compressed + (last_block_size or 128) + v[0xC] = XOR64(sha2_H_lo[5], bytes_compressed) -- t0 = low_8_bytes(bytes_compressed) + -- t1 = high_8_bytes(bytes_compressed) = 0, message length is always below 2^53 bytes + if last_block_size then -- flag f0 + v[0xE] = NOT64(v[0xE]) + end + if is_last_node then -- flag f1 + v[0xF] = NOT64(v[0xF]) + end + for j = 1, 12 do + local row = sigma[j] + G(0, 4, 8, 12, row[ 1], row[ 2]) + G(1, 5, 9, 13, row[ 3], row[ 4]) + G(2, 6, 10, 14, row[ 5], row[ 6]) + G(3, 7, 11, 15, row[ 7], row[ 8]) + G(0, 5, 10, 15, row[ 9], row[10]) + G(1, 6, 11, 12, row[11], row[12]) + G(2, 7, 8, 13, row[13], row[14]) + G(3, 4, 9, 14, row[15], row[16]) + end + h1 = XOR64(h1, v[0x0], v[0x8]) + h2 = XOR64(h2, v[0x1], v[0x9]) + h3 = XOR64(h3, v[0x2], v[0xA]) + h4 = XOR64(h4, v[0x3], v[0xB]) + h5 = XOR64(h5, v[0x4], v[0xC]) + h6 = XOR64(h6, v[0x5], v[0xD]) + h7 = XOR64(h7, v[0x6], v[0xE]) + h8 = XOR64(h8, v[0x7], v[0xF]) + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + end + + + -- SHA-3 implementation for "LuaJIT 2.1 + FFI" branch + + local arr64_t = ffi.typeof"int64_t[?]" + -- lanes array is indexed from 0 + lanes_index_base = 0 + hi_factor_keccak = int64(2^32) + + function create_array_of_lanes() + return arr64_t(30) -- 25 + 5 for temporary usage + end + + function keccak_feed(lanes, _, str, offs, size, block_size_in_bytes) + -- offs >= 0, size >= 0, size is multiple of block_size_in_bytes, block_size_in_bytes is positive multiple of 8 + local RC = sha3_RC_lo + local qwords_qty = SHR(block_size_in_bytes, 3) + for pos = offs, offs + size - 1, block_size_in_bytes do + for j = 0, qwords_qty - 1 do + pos = pos + 8 + local h, g, f, e, d, c, b, a = byte(str, pos - 7, pos) -- slow, but doesn't depend on endianness + lanes[j] = XOR64(lanes[j], OR64(OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) * int64(2^32), uint32(int32(OR(SHL(e, 24), SHL(f, 16), SHL(g, 8), h))))) + end + for round_idx = 1, 24 do + for j = 0, 4 do + lanes[25 + j] = XOR64(lanes[j], lanes[j+5], lanes[j+10], lanes[j+15], lanes[j+20]) + end + local D = XOR64(lanes[25], ROL64(lanes[27], 1)) + lanes[1], lanes[6], lanes[11], lanes[16] = ROL64(XOR64(D, lanes[6]), 44), ROL64(XOR64(D, lanes[16]), 45), ROL64(XOR64(D, lanes[1]), 1), ROL64(XOR64(D, lanes[11]), 10) + lanes[21] = ROL64(XOR64(D, lanes[21]), 2) + D = XOR64(lanes[26], ROL64(lanes[28], 1)) + lanes[2], lanes[7], lanes[12], lanes[22] = ROL64(XOR64(D, lanes[12]), 43), ROL64(XOR64(D, lanes[22]), 61), ROL64(XOR64(D, lanes[7]), 6), ROL64(XOR64(D, lanes[2]), 62) + lanes[17] = ROL64(XOR64(D, lanes[17]), 15) + D = XOR64(lanes[27], ROL64(lanes[29], 1)) + lanes[3], lanes[8], lanes[18], lanes[23] = ROL64(XOR64(D, lanes[18]), 21), ROL64(XOR64(D, lanes[3]), 28), ROL64(XOR64(D, lanes[23]), 56), ROL64(XOR64(D, lanes[8]), 55) + lanes[13] = ROL64(XOR64(D, lanes[13]), 25) + D = XOR64(lanes[28], ROL64(lanes[25], 1)) + lanes[4], lanes[14], lanes[19], lanes[24] = ROL64(XOR64(D, lanes[24]), 14), ROL64(XOR64(D, lanes[19]), 8), ROL64(XOR64(D, lanes[4]), 27), ROL64(XOR64(D, lanes[14]), 39) + lanes[9] = ROL64(XOR64(D, lanes[9]), 20) + D = XOR64(lanes[29], ROL64(lanes[26], 1)) + lanes[5], lanes[10], lanes[15], lanes[20] = ROL64(XOR64(D, lanes[10]), 3), ROL64(XOR64(D, lanes[20]), 18), ROL64(XOR64(D, lanes[5]), 36), ROL64(XOR64(D, lanes[15]), 41) + lanes[0] = XOR64(D, lanes[0]) + lanes[0], lanes[1], lanes[2], lanes[3], lanes[4] = XOR64(lanes[0], AND64(NOT64(lanes[1]), lanes[2]), RC[round_idx]), XOR64(lanes[1], AND64(NOT64(lanes[2]), lanes[3])), XOR64(lanes[2], AND64(NOT64(lanes[3]), lanes[4])), XOR64(lanes[3], AND64(NOT64(lanes[4]), lanes[0])), XOR64(lanes[4], AND64(NOT64(lanes[0]), lanes[1])) + lanes[5], lanes[6], lanes[7], lanes[8], lanes[9] = XOR64(lanes[8], AND64(NOT64(lanes[9]), lanes[5])), XOR64(lanes[9], AND64(NOT64(lanes[5]), lanes[6])), XOR64(lanes[5], AND64(NOT64(lanes[6]), lanes[7])), XOR64(lanes[6], AND64(NOT64(lanes[7]), lanes[8])), XOR64(lanes[7], AND64(NOT64(lanes[8]), lanes[9])) + lanes[10], lanes[11], lanes[12], lanes[13], lanes[14] = XOR64(lanes[11], AND64(NOT64(lanes[12]), lanes[13])), XOR64(lanes[12], AND64(NOT64(lanes[13]), lanes[14])), XOR64(lanes[13], AND64(NOT64(lanes[14]), lanes[10])), XOR64(lanes[14], AND64(NOT64(lanes[10]), lanes[11])), XOR64(lanes[10], AND64(NOT64(lanes[11]), lanes[12])) + lanes[15], lanes[16], lanes[17], lanes[18], lanes[19] = XOR64(lanes[19], AND64(NOT64(lanes[15]), lanes[16])), XOR64(lanes[15], AND64(NOT64(lanes[16]), lanes[17])), XOR64(lanes[16], AND64(NOT64(lanes[17]), lanes[18])), XOR64(lanes[17], AND64(NOT64(lanes[18]), lanes[19])), XOR64(lanes[18], AND64(NOT64(lanes[19]), lanes[15])) + lanes[20], lanes[21], lanes[22], lanes[23], lanes[24] = XOR64(lanes[22], AND64(NOT64(lanes[23]), lanes[24])), XOR64(lanes[23], AND64(NOT64(lanes[24]), lanes[20])), XOR64(lanes[24], AND64(NOT64(lanes[20]), lanes[21])), XOR64(lanes[20], AND64(NOT64(lanes[21]), lanes[22])), XOR64(lanes[21], AND64(NOT64(lanes[22]), lanes[23])) + end + end + end + + + local A5_long = 0xA5A5A5A5 * int64(2^32 + 1) -- It's impossible to use constant 0xA5A5A5A5A5A5A5A5LL because it will raise syntax error on other Lua versions + + function XORA5(long, long2) + return XOR64(long, long2 or A5_long) + end + + + -- SHA512 implementation for "LuaJIT 2.1 + FFI" branch + + function sha512_feed_128(H, _, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + local W, K = common_W_FFI_int64, sha2_K_lo + for pos = offs, offs + size - 1, 128 do + for j = 0, 15 do + pos = pos + 8 + local a, b, c, d, e, f, g, h = byte(str, pos - 7, pos) -- slow, but doesn't depend on endianness + W[j] = OR64(OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) * int64(2^32), uint32(int32(OR(SHL(e, 24), SHL(f, 16), SHL(g, 8), h)))) + end + for j = 16, 79 do + local a, b = W[j-15], W[j-2] + W[j] = XOR64(ROR64(a, 1), ROR64(a, 8), SHR64(a, 7)) + XOR64(ROR64(b, 19), ROL64(b, 3), SHR64(b, 6)) + W[j-7] + W[j-16] + end + local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for j = 0, 79, 8 do + local z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+1] + W[j] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+2] + W[j+1] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+3] + W[j+2] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+4] + W[j+3] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+5] + W[j+4] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+6] + W[j+5] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+7] + W[j+6] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + z = XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + XOR64(g, AND64(e, XOR64(f, g))) + h + K[j+8] + W[j+7] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + z + end + H[1] = a + H[1] + H[2] = b + H[2] + H[3] = c + H[3] + H[4] = d + H[4] + H[5] = e + H[5] + H[6] = f + H[6] + H[7] = g + H[7] + H[8] = h + H[8] + end + end + + else -- LuaJIT 2.0 doesn't support 64-bit bitwise operations + + local U = ffi.new("union{int64_t i64; struct{int32_t "..(ffi.abi("le") and "lo, hi" or "hi, lo")..";} i32;}[3]") + -- this array of unions is used for fast splitting int64 into int32_high and int32_low + + -- "xorrific" 64-bit functions :-) + -- int64 input is splitted into two int32 parts, some bitwise 32-bit operations are performed, finally the result is converted to int64 + -- these functions are needed because bit.* functions in LuaJIT 2.0 don't work with int64_t + + local function XORROR64_1(a) + -- return XOR64(ROR64(a, 1), ROR64(a, 8), SHR64(a, 7)) + U[0].i64 = a + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local t_lo = XOR(SHR(a_lo, 1), SHL(a_hi, 31), SHR(a_lo, 8), SHL(a_hi, 24), SHR(a_lo, 7), SHL(a_hi, 25)) + local t_hi = XOR(SHR(a_hi, 1), SHL(a_lo, 31), SHR(a_hi, 8), SHL(a_lo, 24), SHR(a_hi, 7)) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + local function XORROR64_2(b) + -- return XOR64(ROR64(b, 19), ROL64(b, 3), SHR64(b, 6)) + U[0].i64 = b + local b_lo, b_hi = U[0].i32.lo, U[0].i32.hi + local u_lo = XOR(SHR(b_lo, 19), SHL(b_hi, 13), SHL(b_lo, 3), SHR(b_hi, 29), SHR(b_lo, 6), SHL(b_hi, 26)) + local u_hi = XOR(SHR(b_hi, 19), SHL(b_lo, 13), SHL(b_hi, 3), SHR(b_lo, 29), SHR(b_hi, 6)) + return u_hi * int64(2^32) + uint32(int32(u_lo)) + end + + local function XORROR64_3(e) + -- return XOR64(ROR64(e, 14), ROR64(e, 18), ROL64(e, 23)) + U[0].i64 = e + local e_lo, e_hi = U[0].i32.lo, U[0].i32.hi + local u_lo = XOR(SHR(e_lo, 14), SHL(e_hi, 18), SHR(e_lo, 18), SHL(e_hi, 14), SHL(e_lo, 23), SHR(e_hi, 9)) + local u_hi = XOR(SHR(e_hi, 14), SHL(e_lo, 18), SHR(e_hi, 18), SHL(e_lo, 14), SHL(e_hi, 23), SHR(e_lo, 9)) + return u_hi * int64(2^32) + uint32(int32(u_lo)) + end + + local function XORROR64_6(a) + -- return XOR64(ROR64(a, 28), ROL64(a, 25), ROL64(a, 30)) + U[0].i64 = a + local b_lo, b_hi = U[0].i32.lo, U[0].i32.hi + local u_lo = XOR(SHR(b_lo, 28), SHL(b_hi, 4), SHL(b_lo, 30), SHR(b_hi, 2), SHL(b_lo, 25), SHR(b_hi, 7)) + local u_hi = XOR(SHR(b_hi, 28), SHL(b_lo, 4), SHL(b_hi, 30), SHR(b_lo, 2), SHL(b_hi, 25), SHR(b_lo, 7)) + return u_hi * int64(2^32) + uint32(int32(u_lo)) + end + + local function XORROR64_4(e, f, g) + -- return XOR64(g, AND64(e, XOR64(f, g))) + U[0].i64 = f + U[1].i64 = g + U[2].i64 = e + local f_lo, f_hi = U[0].i32.lo, U[0].i32.hi + local g_lo, g_hi = U[1].i32.lo, U[1].i32.hi + local e_lo, e_hi = U[2].i32.lo, U[2].i32.hi + local result_lo = XOR(g_lo, AND(e_lo, XOR(f_lo, g_lo))) + local result_hi = XOR(g_hi, AND(e_hi, XOR(f_hi, g_hi))) + return result_hi * int64(2^32) + uint32(int32(result_lo)) + end + + local function XORROR64_5(a, b, c) + -- return XOR64(AND64(XOR64(a, b), c), AND64(a, b)) + U[0].i64 = a + U[1].i64 = b + U[2].i64 = c + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local c_lo, c_hi = U[2].i32.lo, U[2].i32.hi + local result_lo = XOR(AND(XOR(a_lo, b_lo), c_lo), AND(a_lo, b_lo)) + local result_hi = XOR(AND(XOR(a_hi, b_hi), c_hi), AND(a_hi, b_hi)) + return result_hi * int64(2^32) + uint32(int32(result_lo)) + end + + local function XORROR64_7(a, b, m) + -- return ROR64(XOR64(a, b), m), m = 1..31 + U[0].i64 = a + U[1].i64 = b + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local c_lo, c_hi = XOR(a_lo, b_lo), XOR(a_hi, b_hi) + local t_lo = XOR(SHR(c_lo, m), SHL(c_hi, -m)) + local t_hi = XOR(SHR(c_hi, m), SHL(c_lo, -m)) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + local function XORROR64_8(a, b) + -- return ROL64(XOR64(a, b), 1) + U[0].i64 = a + U[1].i64 = b + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local c_lo, c_hi = XOR(a_lo, b_lo), XOR(a_hi, b_hi) + local t_lo = XOR(SHL(c_lo, 1), SHR(c_hi, 31)) + local t_hi = XOR(SHL(c_hi, 1), SHR(c_lo, 31)) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + local function XORROR64_9(a, b) + -- return ROR64(XOR64(a, b), 32) + U[0].i64 = a + U[1].i64 = b + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local t_hi, t_lo = XOR(a_lo, b_lo), XOR(a_hi, b_hi) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + local function XOR64(a, b) + -- return XOR64(a, b) + U[0].i64 = a + U[1].i64 = b + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local t_lo, t_hi = XOR(a_lo, b_lo), XOR(a_hi, b_hi) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + local function XORROR64_11(a, b, c) + -- return XOR64(a, b, c) + U[0].i64 = a + U[1].i64 = b + U[2].i64 = c + local a_lo, a_hi = U[0].i32.lo, U[0].i32.hi + local b_lo, b_hi = U[1].i32.lo, U[1].i32.hi + local c_lo, c_hi = U[2].i32.lo, U[2].i32.hi + local t_lo, t_hi = XOR(a_lo, b_lo, c_lo), XOR(a_hi, b_hi, c_hi) + return t_hi * int64(2^32) + uint32(int32(t_lo)) + end + + function XORA5(long, long2) + -- return XOR64(long, long2 or 0xA5A5A5A5A5A5A5A5) + U[0].i64 = long + local lo32, hi32 = U[0].i32.lo, U[0].i32.hi + local long2_lo, long2_hi = 0xA5A5A5A5, 0xA5A5A5A5 + if long2 then + U[1].i64 = long2 + long2_lo, long2_hi = U[1].i32.lo, U[1].i32.hi + end + lo32 = XOR(lo32, long2_lo) + hi32 = XOR(hi32, long2_hi) + return hi32 * int64(2^32) + uint32(int32(lo32)) + end + + function HEX64(long) + U[0].i64 = long + return HEX(U[0].i32.hi)..HEX(U[0].i32.lo) + end + + + -- SHA512 implementation for "LuaJIT 2.0 + FFI" branch + + function sha512_feed_128(H, _, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + local W, K = common_W_FFI_int64, sha2_K_lo + for pos = offs, offs + size - 1, 128 do + for j = 0, 15 do + pos = pos + 8 + local a, b, c, d, e, f, g, h = byte(str, pos - 7, pos) -- slow, but doesn't depend on endianness + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) * int64(2^32) + uint32(int32(OR(SHL(e, 24), SHL(f, 16), SHL(g, 8), h))) + end + for j = 16, 79 do + W[j] = XORROR64_1(W[j-15]) + XORROR64_2(W[j-2]) + W[j-7] + W[j-16] + end + local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for j = 0, 79, 8 do + local z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+1] + W[j] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+2] + W[j+1] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+3] + W[j+2] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+4] + W[j+3] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+5] + W[j+4] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+6] + W[j+5] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+7] + W[j+6] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + z = XORROR64_3(e) + XORROR64_4(e, f, g) + h + K[j+8] + W[j+7] + h, g, f, e = g, f, e, z + d + d, c, b, a = c, b, a, XORROR64_5(a, b, c) + XORROR64_6(a) + z + end + H[1] = a + H[1] + H[2] = b + H[2] + H[3] = c + H[3] + H[4] = d + H[4] + H[5] = e + H[5] + H[6] = f + H[6] + H[7] = g + H[7] + H[8] = h + H[8] + end + end + + + -- BLAKE2b implementation for "LuaJIT 2.0 + FFI" branch + + do + local v = ffi.new("int64_t[?]", 16) + local W = common_W_blake2b + + local function G(a, b, c, d, k1, k2) + local va, vb, vc, vd = v[a], v[b], v[c], v[d] + va = W[k1] + (va + vb) + vd = XORROR64_9(vd, va) + vc = vc + vd + vb = XORROR64_7(vb, vc, 24) + va = W[k2] + (va + vb) + vd = XORROR64_7(vd, va, 16) + vc = vc + vd + vb = XORROR64_8(vb, vc) + v[a], v[b], v[c], v[d] = va, vb, vc, vd + end + + function blake2b_feed_128(H, _, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs, offs + size - 1, 128 do + if str then + for j = 1, 16 do + pos = pos + 8 + local a, b, c, d, e, f, g, h = byte(str, pos - 7, pos) + W[j] = XOR64(OR(SHL(h, 24), SHL(g, 16), SHL(f, 8), e) * int64(2^32), uint32(int32(OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a)))) + end + end + v[0x0], v[0x1], v[0x2], v[0x3], v[0x4], v[0x5], v[0x6], v[0x7] = h1, h2, h3, h4, h5, h6, h7, h8 + v[0x8], v[0x9], v[0xA], v[0xB], v[0xD], v[0xE], v[0xF] = sha2_H_lo[1], sha2_H_lo[2], sha2_H_lo[3], sha2_H_lo[4], sha2_H_lo[6], sha2_H_lo[7], sha2_H_lo[8] + bytes_compressed = bytes_compressed + (last_block_size or 128) + v[0xC] = XOR64(sha2_H_lo[5], bytes_compressed) -- t0 = low_8_bytes(bytes_compressed) + -- t1 = high_8_bytes(bytes_compressed) = 0, message length is always below 2^53 bytes + if last_block_size then -- flag f0 + v[0xE] = -1 - v[0xE] + end + if is_last_node then -- flag f1 + v[0xF] = -1 - v[0xF] + end + for j = 1, 12 do + local row = sigma[j] + G(0, 4, 8, 12, row[ 1], row[ 2]) + G(1, 5, 9, 13, row[ 3], row[ 4]) + G(2, 6, 10, 14, row[ 5], row[ 6]) + G(3, 7, 11, 15, row[ 7], row[ 8]) + G(0, 5, 10, 15, row[ 9], row[10]) + G(1, 6, 11, 12, row[11], row[12]) + G(2, 7, 8, 13, row[13], row[14]) + G(3, 4, 9, 14, row[15], row[16]) + end + h1 = XORROR64_11(h1, v[0x0], v[0x8]) + h2 = XORROR64_11(h2, v[0x1], v[0x9]) + h3 = XORROR64_11(h3, v[0x2], v[0xA]) + h4 = XORROR64_11(h4, v[0x3], v[0xB]) + h5 = XORROR64_11(h5, v[0x4], v[0xC]) + h6 = XORROR64_11(h6, v[0x5], v[0xD]) + h7 = XORROR64_11(h7, v[0x6], v[0xE]) + h8 = XORROR64_11(h8, v[0x7], v[0xF]) + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + end + + end + + + -- MD5 implementation for "LuaJIT with FFI" branch + + function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W_FFI_int32, md5_K + for pos = offs, offs + size - 1, 64 do + for j = 0, 15 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) -- slow, but doesn't depend on endianness + W[j] = OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a) + end + local a, b, c, d = H[1], H[2], H[3], H[4] + for j = 0, 15, 4 do + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+1] + W[j ] + a), 7) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+2] + W[j+1] + a), 12) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+3] + W[j+2] + a), 17) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+4] + W[j+3] + a), 22) + b) + end + for j = 16, 31, 4 do + local g = 5*j + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+1] + W[AND(g + 1, 15)] + a), 5) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+2] + W[AND(g + 6, 15)] + a), 9) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+3] + W[AND(g - 5, 15)] + a), 14) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+4] + W[AND(g , 15)] + a), 20) + b) + end + for j = 32, 47, 4 do + local g = 3*j + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+1] + W[AND(g + 5, 15)] + a), 4) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+2] + W[AND(g + 8, 15)] + a), 11) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+3] + W[AND(g - 5, 15)] + a), 16) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+4] + W[AND(g - 2, 15)] + a), 23) + b) + end + for j = 48, 63, 4 do + local g = 7*j + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+1] + W[AND(g , 15)] + a), 6) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+2] + W[AND(g + 7, 15)] + a), 10) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+3] + W[AND(g - 2, 15)] + a), 15) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+4] + W[AND(g + 5, 15)] + a), 21) + b) + end + H[1], H[2], H[3], H[4] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]) + end + end + + + -- SHA-1 implementation for "LuaJIT with FFI" branch + + function sha1_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W_FFI_int32 + for pos = offs, offs + size - 1, 64 do + for j = 0, 15 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) -- slow, but doesn't depend on endianness + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for j = 16, 79 do + W[j] = ROL(XOR(W[j-3], W[j-8], W[j-14], W[j-16]), 1) + end + local a, b, c, d, e = H[1], H[2], H[3], H[4], H[5] + for j = 0, 19, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j] + 0x5A827999 + e)) -- constant = floor(2^30 * sqrt(2)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+1] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+2] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+3] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+4] + 0x5A827999 + e)) + end + for j = 20, 39, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j] + 0x6ED9EBA1 + e)) -- 2^30 * sqrt(3) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+1] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+2] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+3] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+4] + 0x6ED9EBA1 + e)) + end + for j = 40, 59, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j] + 0x8F1BBCDC + e)) -- 2^30 * sqrt(5) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+1] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+2] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+3] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+4] + 0x8F1BBCDC + e)) + end + for j = 60, 79, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j] + 0xCA62C1D6 + e)) -- 2^30 * sqrt(10) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+1] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+2] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+3] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+4] + 0xCA62C1D6 + e)) + end + H[1], H[2], H[3], H[4], H[5] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]), NORM(e + H[5]) + end + end + +end + + +if branch == "FFI" and not is_LuaJIT_21 or branch == "LJ" then + + if branch == "FFI" then + local arr32_t = ffi.typeof"int32_t[?]" + + function create_array_of_lanes() + return arr32_t(31) -- 25 + 5 + 1 (due to 1-based indexing) + end + + end + + + -- SHA-3 implementation for "LuaJIT 2.0 + FFI" and "LuaJIT without FFI" branches + + function keccak_feed(lanes_lo, lanes_hi, str, offs, size, block_size_in_bytes) + -- offs >= 0, size >= 0, size is multiple of block_size_in_bytes, block_size_in_bytes is positive multiple of 8 + local RC_lo, RC_hi = sha3_RC_lo, sha3_RC_hi + local qwords_qty = SHR(block_size_in_bytes, 3) + for pos = offs, offs + size - 1, block_size_in_bytes do + for j = 1, qwords_qty do + local a, b, c, d = byte(str, pos + 1, pos + 4) + lanes_lo[j] = XOR(lanes_lo[j], OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a)) + pos = pos + 8 + a, b, c, d = byte(str, pos - 3, pos) + lanes_hi[j] = XOR(lanes_hi[j], OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a)) + end + for round_idx = 1, 24 do + for j = 1, 5 do + lanes_lo[25 + j] = XOR(lanes_lo[j], lanes_lo[j + 5], lanes_lo[j + 10], lanes_lo[j + 15], lanes_lo[j + 20]) + end + for j = 1, 5 do + lanes_hi[25 + j] = XOR(lanes_hi[j], lanes_hi[j + 5], lanes_hi[j + 10], lanes_hi[j + 15], lanes_hi[j + 20]) + end + local D_lo = XOR(lanes_lo[26], SHL(lanes_lo[28], 1), SHR(lanes_hi[28], 31)) + local D_hi = XOR(lanes_hi[26], SHL(lanes_hi[28], 1), SHR(lanes_lo[28], 31)) + lanes_lo[2], lanes_hi[2], lanes_lo[7], lanes_hi[7], lanes_lo[12], lanes_hi[12], lanes_lo[17], lanes_hi[17] = XOR(SHR(XOR(D_lo, lanes_lo[7]), 20), SHL(XOR(D_hi, lanes_hi[7]), 12)), XOR(SHR(XOR(D_hi, lanes_hi[7]), 20), SHL(XOR(D_lo, lanes_lo[7]), 12)), XOR(SHR(XOR(D_lo, lanes_lo[17]), 19), SHL(XOR(D_hi, lanes_hi[17]), 13)), XOR(SHR(XOR(D_hi, lanes_hi[17]), 19), SHL(XOR(D_lo, lanes_lo[17]), 13)), XOR(SHL(XOR(D_lo, lanes_lo[2]), 1), SHR(XOR(D_hi, lanes_hi[2]), 31)), XOR(SHL(XOR(D_hi, lanes_hi[2]), 1), SHR(XOR(D_lo, lanes_lo[2]), 31)), XOR(SHL(XOR(D_lo, lanes_lo[12]), 10), SHR(XOR(D_hi, lanes_hi[12]), 22)), XOR(SHL(XOR(D_hi, lanes_hi[12]), 10), SHR(XOR(D_lo, lanes_lo[12]), 22)) + local L, H = XOR(D_lo, lanes_lo[22]), XOR(D_hi, lanes_hi[22]) + lanes_lo[22], lanes_hi[22] = XOR(SHL(L, 2), SHR(H, 30)), XOR(SHL(H, 2), SHR(L, 30)) + D_lo = XOR(lanes_lo[27], SHL(lanes_lo[29], 1), SHR(lanes_hi[29], 31)) + D_hi = XOR(lanes_hi[27], SHL(lanes_hi[29], 1), SHR(lanes_lo[29], 31)) + lanes_lo[3], lanes_hi[3], lanes_lo[8], lanes_hi[8], lanes_lo[13], lanes_hi[13], lanes_lo[23], lanes_hi[23] = XOR(SHR(XOR(D_lo, lanes_lo[13]), 21), SHL(XOR(D_hi, lanes_hi[13]), 11)), XOR(SHR(XOR(D_hi, lanes_hi[13]), 21), SHL(XOR(D_lo, lanes_lo[13]), 11)), XOR(SHR(XOR(D_lo, lanes_lo[23]), 3), SHL(XOR(D_hi, lanes_hi[23]), 29)), XOR(SHR(XOR(D_hi, lanes_hi[23]), 3), SHL(XOR(D_lo, lanes_lo[23]), 29)), XOR(SHL(XOR(D_lo, lanes_lo[8]), 6), SHR(XOR(D_hi, lanes_hi[8]), 26)), XOR(SHL(XOR(D_hi, lanes_hi[8]), 6), SHR(XOR(D_lo, lanes_lo[8]), 26)), XOR(SHR(XOR(D_lo, lanes_lo[3]), 2), SHL(XOR(D_hi, lanes_hi[3]), 30)), XOR(SHR(XOR(D_hi, lanes_hi[3]), 2), SHL(XOR(D_lo, lanes_lo[3]), 30)) + L, H = XOR(D_lo, lanes_lo[18]), XOR(D_hi, lanes_hi[18]) + lanes_lo[18], lanes_hi[18] = XOR(SHL(L, 15), SHR(H, 17)), XOR(SHL(H, 15), SHR(L, 17)) + D_lo = XOR(lanes_lo[28], SHL(lanes_lo[30], 1), SHR(lanes_hi[30], 31)) + D_hi = XOR(lanes_hi[28], SHL(lanes_hi[30], 1), SHR(lanes_lo[30], 31)) + lanes_lo[4], lanes_hi[4], lanes_lo[9], lanes_hi[9], lanes_lo[19], lanes_hi[19], lanes_lo[24], lanes_hi[24] = XOR(SHL(XOR(D_lo, lanes_lo[19]), 21), SHR(XOR(D_hi, lanes_hi[19]), 11)), XOR(SHL(XOR(D_hi, lanes_hi[19]), 21), SHR(XOR(D_lo, lanes_lo[19]), 11)), XOR(SHL(XOR(D_lo, lanes_lo[4]), 28), SHR(XOR(D_hi, lanes_hi[4]), 4)), XOR(SHL(XOR(D_hi, lanes_hi[4]), 28), SHR(XOR(D_lo, lanes_lo[4]), 4)), XOR(SHR(XOR(D_lo, lanes_lo[24]), 8), SHL(XOR(D_hi, lanes_hi[24]), 24)), XOR(SHR(XOR(D_hi, lanes_hi[24]), 8), SHL(XOR(D_lo, lanes_lo[24]), 24)), XOR(SHR(XOR(D_lo, lanes_lo[9]), 9), SHL(XOR(D_hi, lanes_hi[9]), 23)), XOR(SHR(XOR(D_hi, lanes_hi[9]), 9), SHL(XOR(D_lo, lanes_lo[9]), 23)) + L, H = XOR(D_lo, lanes_lo[14]), XOR(D_hi, lanes_hi[14]) + lanes_lo[14], lanes_hi[14] = XOR(SHL(L, 25), SHR(H, 7)), XOR(SHL(H, 25), SHR(L, 7)) + D_lo = XOR(lanes_lo[29], SHL(lanes_lo[26], 1), SHR(lanes_hi[26], 31)) + D_hi = XOR(lanes_hi[29], SHL(lanes_hi[26], 1), SHR(lanes_lo[26], 31)) + lanes_lo[5], lanes_hi[5], lanes_lo[15], lanes_hi[15], lanes_lo[20], lanes_hi[20], lanes_lo[25], lanes_hi[25] = XOR(SHL(XOR(D_lo, lanes_lo[25]), 14), SHR(XOR(D_hi, lanes_hi[25]), 18)), XOR(SHL(XOR(D_hi, lanes_hi[25]), 14), SHR(XOR(D_lo, lanes_lo[25]), 18)), XOR(SHL(XOR(D_lo, lanes_lo[20]), 8), SHR(XOR(D_hi, lanes_hi[20]), 24)), XOR(SHL(XOR(D_hi, lanes_hi[20]), 8), SHR(XOR(D_lo, lanes_lo[20]), 24)), XOR(SHL(XOR(D_lo, lanes_lo[5]), 27), SHR(XOR(D_hi, lanes_hi[5]), 5)), XOR(SHL(XOR(D_hi, lanes_hi[5]), 27), SHR(XOR(D_lo, lanes_lo[5]), 5)), XOR(SHR(XOR(D_lo, lanes_lo[15]), 25), SHL(XOR(D_hi, lanes_hi[15]), 7)), XOR(SHR(XOR(D_hi, lanes_hi[15]), 25), SHL(XOR(D_lo, lanes_lo[15]), 7)) + L, H = XOR(D_lo, lanes_lo[10]), XOR(D_hi, lanes_hi[10]) + lanes_lo[10], lanes_hi[10] = XOR(SHL(L, 20), SHR(H, 12)), XOR(SHL(H, 20), SHR(L, 12)) + D_lo = XOR(lanes_lo[30], SHL(lanes_lo[27], 1), SHR(lanes_hi[27], 31)) + D_hi = XOR(lanes_hi[30], SHL(lanes_hi[27], 1), SHR(lanes_lo[27], 31)) + lanes_lo[6], lanes_hi[6], lanes_lo[11], lanes_hi[11], lanes_lo[16], lanes_hi[16], lanes_lo[21], lanes_hi[21] = XOR(SHL(XOR(D_lo, lanes_lo[11]), 3), SHR(XOR(D_hi, lanes_hi[11]), 29)), XOR(SHL(XOR(D_hi, lanes_hi[11]), 3), SHR(XOR(D_lo, lanes_lo[11]), 29)), XOR(SHL(XOR(D_lo, lanes_lo[21]), 18), SHR(XOR(D_hi, lanes_hi[21]), 14)), XOR(SHL(XOR(D_hi, lanes_hi[21]), 18), SHR(XOR(D_lo, lanes_lo[21]), 14)), XOR(SHR(XOR(D_lo, lanes_lo[6]), 28), SHL(XOR(D_hi, lanes_hi[6]), 4)), XOR(SHR(XOR(D_hi, lanes_hi[6]), 28), SHL(XOR(D_lo, lanes_lo[6]), 4)), XOR(SHR(XOR(D_lo, lanes_lo[16]), 23), SHL(XOR(D_hi, lanes_hi[16]), 9)), XOR(SHR(XOR(D_hi, lanes_hi[16]), 23), SHL(XOR(D_lo, lanes_lo[16]), 9)) + lanes_lo[1], lanes_hi[1] = XOR(D_lo, lanes_lo[1]), XOR(D_hi, lanes_hi[1]) + lanes_lo[1], lanes_lo[2], lanes_lo[3], lanes_lo[4], lanes_lo[5] = XOR(lanes_lo[1], AND(NOT(lanes_lo[2]), lanes_lo[3]), RC_lo[round_idx]), XOR(lanes_lo[2], AND(NOT(lanes_lo[3]), lanes_lo[4])), XOR(lanes_lo[3], AND(NOT(lanes_lo[4]), lanes_lo[5])), XOR(lanes_lo[4], AND(NOT(lanes_lo[5]), lanes_lo[1])), XOR(lanes_lo[5], AND(NOT(lanes_lo[1]), lanes_lo[2])) + lanes_lo[6], lanes_lo[7], lanes_lo[8], lanes_lo[9], lanes_lo[10] = XOR(lanes_lo[9], AND(NOT(lanes_lo[10]), lanes_lo[6])), XOR(lanes_lo[10], AND(NOT(lanes_lo[6]), lanes_lo[7])), XOR(lanes_lo[6], AND(NOT(lanes_lo[7]), lanes_lo[8])), XOR(lanes_lo[7], AND(NOT(lanes_lo[8]), lanes_lo[9])), XOR(lanes_lo[8], AND(NOT(lanes_lo[9]), lanes_lo[10])) + lanes_lo[11], lanes_lo[12], lanes_lo[13], lanes_lo[14], lanes_lo[15] = XOR(lanes_lo[12], AND(NOT(lanes_lo[13]), lanes_lo[14])), XOR(lanes_lo[13], AND(NOT(lanes_lo[14]), lanes_lo[15])), XOR(lanes_lo[14], AND(NOT(lanes_lo[15]), lanes_lo[11])), XOR(lanes_lo[15], AND(NOT(lanes_lo[11]), lanes_lo[12])), XOR(lanes_lo[11], AND(NOT(lanes_lo[12]), lanes_lo[13])) + lanes_lo[16], lanes_lo[17], lanes_lo[18], lanes_lo[19], lanes_lo[20] = XOR(lanes_lo[20], AND(NOT(lanes_lo[16]), lanes_lo[17])), XOR(lanes_lo[16], AND(NOT(lanes_lo[17]), lanes_lo[18])), XOR(lanes_lo[17], AND(NOT(lanes_lo[18]), lanes_lo[19])), XOR(lanes_lo[18], AND(NOT(lanes_lo[19]), lanes_lo[20])), XOR(lanes_lo[19], AND(NOT(lanes_lo[20]), lanes_lo[16])) + lanes_lo[21], lanes_lo[22], lanes_lo[23], lanes_lo[24], lanes_lo[25] = XOR(lanes_lo[23], AND(NOT(lanes_lo[24]), lanes_lo[25])), XOR(lanes_lo[24], AND(NOT(lanes_lo[25]), lanes_lo[21])), XOR(lanes_lo[25], AND(NOT(lanes_lo[21]), lanes_lo[22])), XOR(lanes_lo[21], AND(NOT(lanes_lo[22]), lanes_lo[23])), XOR(lanes_lo[22], AND(NOT(lanes_lo[23]), lanes_lo[24])) + lanes_hi[1], lanes_hi[2], lanes_hi[3], lanes_hi[4], lanes_hi[5] = XOR(lanes_hi[1], AND(NOT(lanes_hi[2]), lanes_hi[3]), RC_hi[round_idx]), XOR(lanes_hi[2], AND(NOT(lanes_hi[3]), lanes_hi[4])), XOR(lanes_hi[3], AND(NOT(lanes_hi[4]), lanes_hi[5])), XOR(lanes_hi[4], AND(NOT(lanes_hi[5]), lanes_hi[1])), XOR(lanes_hi[5], AND(NOT(lanes_hi[1]), lanes_hi[2])) + lanes_hi[6], lanes_hi[7], lanes_hi[8], lanes_hi[9], lanes_hi[10] = XOR(lanes_hi[9], AND(NOT(lanes_hi[10]), lanes_hi[6])), XOR(lanes_hi[10], AND(NOT(lanes_hi[6]), lanes_hi[7])), XOR(lanes_hi[6], AND(NOT(lanes_hi[7]), lanes_hi[8])), XOR(lanes_hi[7], AND(NOT(lanes_hi[8]), lanes_hi[9])), XOR(lanes_hi[8], AND(NOT(lanes_hi[9]), lanes_hi[10])) + lanes_hi[11], lanes_hi[12], lanes_hi[13], lanes_hi[14], lanes_hi[15] = XOR(lanes_hi[12], AND(NOT(lanes_hi[13]), lanes_hi[14])), XOR(lanes_hi[13], AND(NOT(lanes_hi[14]), lanes_hi[15])), XOR(lanes_hi[14], AND(NOT(lanes_hi[15]), lanes_hi[11])), XOR(lanes_hi[15], AND(NOT(lanes_hi[11]), lanes_hi[12])), XOR(lanes_hi[11], AND(NOT(lanes_hi[12]), lanes_hi[13])) + lanes_hi[16], lanes_hi[17], lanes_hi[18], lanes_hi[19], lanes_hi[20] = XOR(lanes_hi[20], AND(NOT(lanes_hi[16]), lanes_hi[17])), XOR(lanes_hi[16], AND(NOT(lanes_hi[17]), lanes_hi[18])), XOR(lanes_hi[17], AND(NOT(lanes_hi[18]), lanes_hi[19])), XOR(lanes_hi[18], AND(NOT(lanes_hi[19]), lanes_hi[20])), XOR(lanes_hi[19], AND(NOT(lanes_hi[20]), lanes_hi[16])) + lanes_hi[21], lanes_hi[22], lanes_hi[23], lanes_hi[24], lanes_hi[25] = XOR(lanes_hi[23], AND(NOT(lanes_hi[24]), lanes_hi[25])), XOR(lanes_hi[24], AND(NOT(lanes_hi[25]), lanes_hi[21])), XOR(lanes_hi[25], AND(NOT(lanes_hi[21]), lanes_hi[22])), XOR(lanes_hi[21], AND(NOT(lanes_hi[22]), lanes_hi[23])), XOR(lanes_hi[22], AND(NOT(lanes_hi[23]), lanes_hi[24])) + end + end + end + +end + + +if branch == "LJ" then + + + -- SHA256 implementation for "LuaJIT without FFI" branch + + function sha256_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W, sha2_K_hi + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for j = 17, 64 do + local a, b = W[j-15], W[j-2] + W[j] = NORM( NORM( XOR(ROR(a, 7), ROL(a, 14), SHR(a, 3)) + XOR(ROL(b, 15), ROL(b, 13), SHR(b, 10)) ) + NORM( W[j-7] + W[j-16] ) ) + end + local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for j = 1, 64, 8 do -- Thanks to Peter Cawley for this workaround (unroll the loop to avoid "PHI shuffling too complex" due to PHIs overlap) + local z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j] + W[j] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+1] + W[j+1] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+2] + W[j+2] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+3] + W[j+3] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+4] + W[j+4] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+5] + W[j+5] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+6] + W[j+6] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + z = NORM( XOR(ROR(e, 6), ROR(e, 11), ROL(e, 7)) + XOR(g, AND(e, XOR(f, g))) + (K[j+7] + W[j+7] + h) ) + h, g, f, e = g, f, e, NORM(d + z) + d, c, b, a = c, b, a, NORM( XOR(AND(a, XOR(b, c)), AND(b, c)) + XOR(ROR(a, 2), ROR(a, 13), ROL(a, 10)) + z ) + end + H[1], H[2], H[3], H[4] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]) + H[5], H[6], H[7], H[8] = NORM(e + H[5]), NORM(f + H[6]), NORM(g + H[7]), NORM(h + H[8]) + end + end + + local function ADD64_4(a_lo, a_hi, b_lo, b_hi, c_lo, c_hi, d_lo, d_hi) + local sum_lo = a_lo % 2^32 + b_lo % 2^32 + c_lo % 2^32 + d_lo % 2^32 + local sum_hi = a_hi + b_hi + c_hi + d_hi + local result_lo = NORM( sum_lo ) + local result_hi = NORM( sum_hi + floor(sum_lo / 2^32) ) + return result_lo, result_hi + end + + if LuaJIT_arch == "x86" then -- Special trick is required to avoid "PHI shuffling too complex" on x86 platform + + + -- SHA512 implementation for "LuaJIT x86 without FFI" branch + + function sha512_feed_128(H_lo, H_hi, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + -- W1_hi, W1_lo, W2_hi, W2_lo, ... Wk_hi = W[2*k-1], Wk_lo = W[2*k] + local W, K_lo, K_hi = common_W, sha2_K_lo, sha2_K_hi + for pos = offs, offs + size - 1, 128 do + for j = 1, 16*2 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for jj = 17*2, 80*2, 2 do + local a_lo, a_hi = W[jj-30], W[jj-31] + local t_lo = XOR(OR(SHR(a_lo, 1), SHL(a_hi, 31)), OR(SHR(a_lo, 8), SHL(a_hi, 24)), OR(SHR(a_lo, 7), SHL(a_hi, 25))) + local t_hi = XOR(OR(SHR(a_hi, 1), SHL(a_lo, 31)), OR(SHR(a_hi, 8), SHL(a_lo, 24)), SHR(a_hi, 7)) + local b_lo, b_hi = W[jj-4], W[jj-5] + local u_lo = XOR(OR(SHR(b_lo, 19), SHL(b_hi, 13)), OR(SHL(b_lo, 3), SHR(b_hi, 29)), OR(SHR(b_lo, 6), SHL(b_hi, 26))) + local u_hi = XOR(OR(SHR(b_hi, 19), SHL(b_lo, 13)), OR(SHL(b_hi, 3), SHR(b_lo, 29)), SHR(b_hi, 6)) + W[jj], W[jj-1] = ADD64_4(t_lo, t_hi, u_lo, u_hi, W[jj-14], W[jj-15], W[jj-32], W[jj-33]) + end + local a_lo, b_lo, c_lo, d_lo, e_lo, f_lo, g_lo, h_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local a_hi, b_hi, c_hi, d_hi, e_hi, f_hi, g_hi, h_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + local zero = 0 + for j = 1, 80 do + local t_lo = XOR(g_lo, AND(e_lo, XOR(f_lo, g_lo))) + local t_hi = XOR(g_hi, AND(e_hi, XOR(f_hi, g_hi))) + local u_lo = XOR(OR(SHR(e_lo, 14), SHL(e_hi, 18)), OR(SHR(e_lo, 18), SHL(e_hi, 14)), OR(SHL(e_lo, 23), SHR(e_hi, 9))) + local u_hi = XOR(OR(SHR(e_hi, 14), SHL(e_lo, 18)), OR(SHR(e_hi, 18), SHL(e_lo, 14)), OR(SHL(e_hi, 23), SHR(e_lo, 9))) + local sum_lo = u_lo % 2^32 + t_lo % 2^32 + h_lo % 2^32 + K_lo[j] + W[2*j] % 2^32 + local z_lo, z_hi = NORM( sum_lo ), NORM( u_hi + t_hi + h_hi + K_hi[j] + W[2*j-1] + floor(sum_lo / 2^32) ) + zero = zero + zero -- this thick is needed to avoid "PHI shuffling too complex" due to PHIs overlap + h_lo, h_hi, g_lo, g_hi, f_lo, f_hi = OR(zero, g_lo), OR(zero, g_hi), OR(zero, f_lo), OR(zero, f_hi), OR(zero, e_lo), OR(zero, e_hi) + local sum_lo = z_lo % 2^32 + d_lo % 2^32 + e_lo, e_hi = NORM( sum_lo ), NORM( z_hi + d_hi + floor(sum_lo / 2^32) ) + d_lo, d_hi, c_lo, c_hi, b_lo, b_hi = OR(zero, c_lo), OR(zero, c_hi), OR(zero, b_lo), OR(zero, b_hi), OR(zero, a_lo), OR(zero, a_hi) + u_lo = XOR(OR(SHR(b_lo, 28), SHL(b_hi, 4)), OR(SHL(b_lo, 30), SHR(b_hi, 2)), OR(SHL(b_lo, 25), SHR(b_hi, 7))) + u_hi = XOR(OR(SHR(b_hi, 28), SHL(b_lo, 4)), OR(SHL(b_hi, 30), SHR(b_lo, 2)), OR(SHL(b_hi, 25), SHR(b_lo, 7))) + t_lo = OR(AND(d_lo, c_lo), AND(b_lo, XOR(d_lo, c_lo))) + t_hi = OR(AND(d_hi, c_hi), AND(b_hi, XOR(d_hi, c_hi))) + local sum_lo = z_lo % 2^32 + t_lo % 2^32 + u_lo % 2^32 + a_lo, a_hi = NORM( sum_lo ), NORM( z_hi + t_hi + u_hi + floor(sum_lo / 2^32) ) + end + H_lo[1], H_hi[1] = ADD64_4(H_lo[1], H_hi[1], a_lo, a_hi, 0, 0, 0, 0) + H_lo[2], H_hi[2] = ADD64_4(H_lo[2], H_hi[2], b_lo, b_hi, 0, 0, 0, 0) + H_lo[3], H_hi[3] = ADD64_4(H_lo[3], H_hi[3], c_lo, c_hi, 0, 0, 0, 0) + H_lo[4], H_hi[4] = ADD64_4(H_lo[4], H_hi[4], d_lo, d_hi, 0, 0, 0, 0) + H_lo[5], H_hi[5] = ADD64_4(H_lo[5], H_hi[5], e_lo, e_hi, 0, 0, 0, 0) + H_lo[6], H_hi[6] = ADD64_4(H_lo[6], H_hi[6], f_lo, f_hi, 0, 0, 0, 0) + H_lo[7], H_hi[7] = ADD64_4(H_lo[7], H_hi[7], g_lo, g_hi, 0, 0, 0, 0) + H_lo[8], H_hi[8] = ADD64_4(H_lo[8], H_hi[8], h_lo, h_hi, 0, 0, 0, 0) + end + end + + else -- all platforms except x86 + + + -- SHA512 implementation for "LuaJIT non-x86 without FFI" branch + + function sha512_feed_128(H_lo, H_hi, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + -- W1_hi, W1_lo, W2_hi, W2_lo, ... Wk_hi = W[2*k-1], Wk_lo = W[2*k] + local W, K_lo, K_hi = common_W, sha2_K_lo, sha2_K_hi + for pos = offs, offs + size - 1, 128 do + for j = 1, 16*2 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for jj = 17*2, 80*2, 2 do + local a_lo, a_hi = W[jj-30], W[jj-31] + local t_lo = XOR(OR(SHR(a_lo, 1), SHL(a_hi, 31)), OR(SHR(a_lo, 8), SHL(a_hi, 24)), OR(SHR(a_lo, 7), SHL(a_hi, 25))) + local t_hi = XOR(OR(SHR(a_hi, 1), SHL(a_lo, 31)), OR(SHR(a_hi, 8), SHL(a_lo, 24)), SHR(a_hi, 7)) + local b_lo, b_hi = W[jj-4], W[jj-5] + local u_lo = XOR(OR(SHR(b_lo, 19), SHL(b_hi, 13)), OR(SHL(b_lo, 3), SHR(b_hi, 29)), OR(SHR(b_lo, 6), SHL(b_hi, 26))) + local u_hi = XOR(OR(SHR(b_hi, 19), SHL(b_lo, 13)), OR(SHL(b_hi, 3), SHR(b_lo, 29)), SHR(b_hi, 6)) + W[jj], W[jj-1] = ADD64_4(t_lo, t_hi, u_lo, u_hi, W[jj-14], W[jj-15], W[jj-32], W[jj-33]) + end + local a_lo, b_lo, c_lo, d_lo, e_lo, f_lo, g_lo, h_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local a_hi, b_hi, c_hi, d_hi, e_hi, f_hi, g_hi, h_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for j = 1, 80 do + local t_lo = XOR(g_lo, AND(e_lo, XOR(f_lo, g_lo))) + local t_hi = XOR(g_hi, AND(e_hi, XOR(f_hi, g_hi))) + local u_lo = XOR(OR(SHR(e_lo, 14), SHL(e_hi, 18)), OR(SHR(e_lo, 18), SHL(e_hi, 14)), OR(SHL(e_lo, 23), SHR(e_hi, 9))) + local u_hi = XOR(OR(SHR(e_hi, 14), SHL(e_lo, 18)), OR(SHR(e_hi, 18), SHL(e_lo, 14)), OR(SHL(e_hi, 23), SHR(e_lo, 9))) + local sum_lo = u_lo % 2^32 + t_lo % 2^32 + h_lo % 2^32 + K_lo[j] + W[2*j] % 2^32 + local z_lo, z_hi = NORM( sum_lo ), NORM( u_hi + t_hi + h_hi + K_hi[j] + W[2*j-1] + floor(sum_lo / 2^32) ) + h_lo, h_hi, g_lo, g_hi, f_lo, f_hi = g_lo, g_hi, f_lo, f_hi, e_lo, e_hi + local sum_lo = z_lo % 2^32 + d_lo % 2^32 + e_lo, e_hi = NORM( sum_lo ), NORM( z_hi + d_hi + floor(sum_lo / 2^32) ) + d_lo, d_hi, c_lo, c_hi, b_lo, b_hi = c_lo, c_hi, b_lo, b_hi, a_lo, a_hi + u_lo = XOR(OR(SHR(b_lo, 28), SHL(b_hi, 4)), OR(SHL(b_lo, 30), SHR(b_hi, 2)), OR(SHL(b_lo, 25), SHR(b_hi, 7))) + u_hi = XOR(OR(SHR(b_hi, 28), SHL(b_lo, 4)), OR(SHL(b_hi, 30), SHR(b_lo, 2)), OR(SHL(b_hi, 25), SHR(b_lo, 7))) + t_lo = OR(AND(d_lo, c_lo), AND(b_lo, XOR(d_lo, c_lo))) + t_hi = OR(AND(d_hi, c_hi), AND(b_hi, XOR(d_hi, c_hi))) + local sum_lo = z_lo % 2^32 + u_lo % 2^32 + t_lo % 2^32 + a_lo, a_hi = NORM( sum_lo ), NORM( z_hi + u_hi + t_hi + floor(sum_lo / 2^32) ) + end + H_lo[1], H_hi[1] = ADD64_4(H_lo[1], H_hi[1], a_lo, a_hi, 0, 0, 0, 0) + H_lo[2], H_hi[2] = ADD64_4(H_lo[2], H_hi[2], b_lo, b_hi, 0, 0, 0, 0) + H_lo[3], H_hi[3] = ADD64_4(H_lo[3], H_hi[3], c_lo, c_hi, 0, 0, 0, 0) + H_lo[4], H_hi[4] = ADD64_4(H_lo[4], H_hi[4], d_lo, d_hi, 0, 0, 0, 0) + H_lo[5], H_hi[5] = ADD64_4(H_lo[5], H_hi[5], e_lo, e_hi, 0, 0, 0, 0) + H_lo[6], H_hi[6] = ADD64_4(H_lo[6], H_hi[6], f_lo, f_hi, 0, 0, 0, 0) + H_lo[7], H_hi[7] = ADD64_4(H_lo[7], H_hi[7], g_lo, g_hi, 0, 0, 0, 0) + H_lo[8], H_hi[8] = ADD64_4(H_lo[8], H_hi[8], h_lo, h_hi, 0, 0, 0, 0) + end + end + + end + + + -- MD5 implementation for "LuaJIT without FFI" branch + + function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W, md5_K + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a) + end + local a, b, c, d = H[1], H[2], H[3], H[4] + for j = 1, 16, 4 do + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j ] + W[j ] + a), 7) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+1] + W[j+1] + a), 12) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+2] + W[j+2] + a), 17) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(d, AND(b, XOR(c, d))) + (K[j+3] + W[j+3] + a), 22) + b) + end + for j = 17, 32, 4 do + local g = 5*j-4 + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j ] + W[AND(g , 15) + 1] + a), 5) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+1] + W[AND(g + 5, 15) + 1] + a), 9) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+2] + W[AND(g + 10, 15) + 1] + a), 14) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, AND(d, XOR(b, c))) + (K[j+3] + W[AND(g - 1, 15) + 1] + a), 20) + b) + end + for j = 33, 48, 4 do + local g = 3*j+2 + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j ] + W[AND(g , 15) + 1] + a), 4) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+1] + W[AND(g + 3, 15) + 1] + a), 11) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+2] + W[AND(g + 6, 15) + 1] + a), 16) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(b, c, d) + (K[j+3] + W[AND(g - 7, 15) + 1] + a), 23) + b) + end + for j = 49, 64, 4 do + local g = j*7 + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j ] + W[AND(g - 7, 15) + 1] + a), 6) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+1] + W[AND(g , 15) + 1] + a), 10) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+2] + W[AND(g + 7, 15) + 1] + a), 15) + b) + a, d, c, b = d, c, b, NORM(ROL(XOR(c, OR(b, NOT(d))) + (K[j+3] + W[AND(g - 2, 15) + 1] + a), 21) + b) + end + H[1], H[2], H[3], H[4] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]) + end + end + + + -- SHA-1 implementation for "LuaJIT without FFI" branch + + function sha1_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(a, 24), SHL(b, 16), SHL(c, 8), d) + end + for j = 17, 80 do + W[j] = ROL(XOR(W[j-3], W[j-8], W[j-14], W[j-16]), 1) + end + local a, b, c, d, e = H[1], H[2], H[3], H[4], H[5] + for j = 1, 20, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j] + 0x5A827999 + e)) -- constant = floor(2^30 * sqrt(2)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+1] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+2] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+3] + 0x5A827999 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(d, AND(b, XOR(d, c))) + (W[j+4] + 0x5A827999 + e)) + end + for j = 21, 40, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j] + 0x6ED9EBA1 + e)) -- 2^30 * sqrt(3) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+1] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+2] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+3] + 0x6ED9EBA1 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+4] + 0x6ED9EBA1 + e)) + end + for j = 41, 60, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j] + 0x8F1BBCDC + e)) -- 2^30 * sqrt(5) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+1] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+2] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+3] + 0x8F1BBCDC + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(AND(d, XOR(b, c)), AND(b, c)) + (W[j+4] + 0x8F1BBCDC + e)) + end + for j = 61, 80, 5 do + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j] + 0xCA62C1D6 + e)) -- 2^30 * sqrt(10) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+1] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+2] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+3] + 0xCA62C1D6 + e)) + e, d, c, b, a = d, c, ROR(b, 2), a, NORM(ROL(a, 5) + XOR(b, c, d) + (W[j+4] + 0xCA62C1D6 + e)) + end + H[1], H[2], H[3], H[4], H[5] = NORM(a + H[1]), NORM(b + H[2]), NORM(c + H[3]), NORM(d + H[4]), NORM(e + H[5]) + end + end + + + -- BLAKE2b implementation for "LuaJIT without FFI" branch + + do + local v_lo, v_hi = {}, {} + + local function G(a, b, c, d, k1, k2) + local W = common_W + local va_lo, vb_lo, vc_lo, vd_lo = v_lo[a], v_lo[b], v_lo[c], v_lo[d] + local va_hi, vb_hi, vc_hi, vd_hi = v_hi[a], v_hi[b], v_hi[c], v_hi[d] + local z = W[2*k1-1] + (va_lo % 2^32 + vb_lo % 2^32) + va_lo = NORM(z) + va_hi = NORM(W[2*k1] + (va_hi + vb_hi + floor(z / 2^32))) + vd_lo, vd_hi = XOR(vd_hi, va_hi), XOR(vd_lo, va_lo) + z = vc_lo % 2^32 + vd_lo % 2^32 + vc_lo = NORM(z) + vc_hi = NORM(vc_hi + vd_hi + floor(z / 2^32)) + vb_lo, vb_hi = XOR(vb_lo, vc_lo), XOR(vb_hi, vc_hi) + vb_lo, vb_hi = XOR(SHR(vb_lo, 24), SHL(vb_hi, 8)), XOR(SHR(vb_hi, 24), SHL(vb_lo, 8)) + z = W[2*k2-1] + (va_lo % 2^32 + vb_lo % 2^32) + va_lo = NORM(z) + va_hi = NORM(W[2*k2] + (va_hi + vb_hi + floor(z / 2^32))) + vd_lo, vd_hi = XOR(vd_lo, va_lo), XOR(vd_hi, va_hi) + vd_lo, vd_hi = XOR(SHR(vd_lo, 16), SHL(vd_hi, 16)), XOR(SHR(vd_hi, 16), SHL(vd_lo, 16)) + z = vc_lo % 2^32 + vd_lo % 2^32 + vc_lo = NORM(z) + vc_hi = NORM(vc_hi + vd_hi + floor(z / 2^32)) + vb_lo, vb_hi = XOR(vb_lo, vc_lo), XOR(vb_hi, vc_hi) + vb_lo, vb_hi = XOR(SHL(vb_lo, 1), SHR(vb_hi, 31)), XOR(SHL(vb_hi, 1), SHR(vb_lo, 31)) + v_lo[a], v_lo[b], v_lo[c], v_lo[d] = va_lo, vb_lo, vc_lo, vd_lo + v_hi[a], v_hi[b], v_hi[c], v_hi[d] = va_hi, vb_hi, vc_hi, vd_hi + end + + function blake2b_feed_128(H_lo, H_hi, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local W = common_W + local h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for pos = offs, offs + size - 1, 128 do + if str then + for j = 1, 32 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = d * 2^24 + OR(SHL(c, 16), SHL(b, 8), a) + end + end + v_lo[0x0], v_lo[0x1], v_lo[0x2], v_lo[0x3], v_lo[0x4], v_lo[0x5], v_lo[0x6], v_lo[0x7] = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + v_lo[0x8], v_lo[0x9], v_lo[0xA], v_lo[0xB], v_lo[0xC], v_lo[0xD], v_lo[0xE], v_lo[0xF] = sha2_H_lo[1], sha2_H_lo[2], sha2_H_lo[3], sha2_H_lo[4], sha2_H_lo[5], sha2_H_lo[6], sha2_H_lo[7], sha2_H_lo[8] + v_hi[0x0], v_hi[0x1], v_hi[0x2], v_hi[0x3], v_hi[0x4], v_hi[0x5], v_hi[0x6], v_hi[0x7] = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + v_hi[0x8], v_hi[0x9], v_hi[0xA], v_hi[0xB], v_hi[0xC], v_hi[0xD], v_hi[0xE], v_hi[0xF] = sha2_H_hi[1], sha2_H_hi[2], sha2_H_hi[3], sha2_H_hi[4], sha2_H_hi[5], sha2_H_hi[6], sha2_H_hi[7], sha2_H_hi[8] + bytes_compressed = bytes_compressed + (last_block_size or 128) + local t0_lo = bytes_compressed % 2^32 + local t0_hi = floor(bytes_compressed / 2^32) + v_lo[0xC] = XOR(v_lo[0xC], t0_lo) -- t0 = low_8_bytes(bytes_compressed) + v_hi[0xC] = XOR(v_hi[0xC], t0_hi) + -- t1 = high_8_bytes(bytes_compressed) = 0, message length is always below 2^53 bytes + if last_block_size then -- flag f0 + v_lo[0xE] = NOT(v_lo[0xE]) + v_hi[0xE] = NOT(v_hi[0xE]) + end + if is_last_node then -- flag f1 + v_lo[0xF] = NOT(v_lo[0xF]) + v_hi[0xF] = NOT(v_hi[0xF]) + end + for j = 1, 12 do + local row = sigma[j] + G(0, 4, 8, 12, row[ 1], row[ 2]) + G(1, 5, 9, 13, row[ 3], row[ 4]) + G(2, 6, 10, 14, row[ 5], row[ 6]) + G(3, 7, 11, 15, row[ 7], row[ 8]) + G(0, 5, 10, 15, row[ 9], row[10]) + G(1, 6, 11, 12, row[11], row[12]) + G(2, 7, 8, 13, row[13], row[14]) + G(3, 4, 9, 14, row[15], row[16]) + end + h1_lo = XOR(h1_lo, v_lo[0x0], v_lo[0x8]) + h2_lo = XOR(h2_lo, v_lo[0x1], v_lo[0x9]) + h3_lo = XOR(h3_lo, v_lo[0x2], v_lo[0xA]) + h4_lo = XOR(h4_lo, v_lo[0x3], v_lo[0xB]) + h5_lo = XOR(h5_lo, v_lo[0x4], v_lo[0xC]) + h6_lo = XOR(h6_lo, v_lo[0x5], v_lo[0xD]) + h7_lo = XOR(h7_lo, v_lo[0x6], v_lo[0xE]) + h8_lo = XOR(h8_lo, v_lo[0x7], v_lo[0xF]) + h1_hi = XOR(h1_hi, v_hi[0x0], v_hi[0x8]) + h2_hi = XOR(h2_hi, v_hi[0x1], v_hi[0x9]) + h3_hi = XOR(h3_hi, v_hi[0x2], v_hi[0xA]) + h4_hi = XOR(h4_hi, v_hi[0x3], v_hi[0xB]) + h5_hi = XOR(h5_hi, v_hi[0x4], v_hi[0xC]) + h6_hi = XOR(h6_hi, v_hi[0x5], v_hi[0xD]) + h7_hi = XOR(h7_hi, v_hi[0x6], v_hi[0xE]) + h8_hi = XOR(h8_hi, v_hi[0x7], v_hi[0xF]) + end + H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] = h1_lo % 2^32, h2_lo % 2^32, h3_lo % 2^32, h4_lo % 2^32, h5_lo % 2^32, h6_lo % 2^32, h7_lo % 2^32, h8_lo % 2^32 + H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] = h1_hi % 2^32, h2_hi % 2^32, h3_hi % 2^32, h4_hi % 2^32, h5_hi % 2^32, h6_hi % 2^32, h7_hi % 2^32, h8_hi % 2^32 + return bytes_compressed + end + + end +end + + +if branch == "FFI" or branch == "LJ" then + + + -- BLAKE2s and BLAKE3 implementations for "LuaJIT with FFI" and "LuaJIT without FFI" branches + + do + local W = common_W_blake2s + local v = v_for_blake2s_feed_64 + + local function G(a, b, c, d, k1, k2) + local va, vb, vc, vd = v[a], v[b], v[c], v[d] + va = NORM(W[k1] + (va + vb)) + vd = ROR(XOR(vd, va), 16) + vc = NORM(vc + vd) + vb = ROR(XOR(vb, vc), 12) + va = NORM(W[k2] + (va + vb)) + vd = ROR(XOR(vd, va), 8) + vc = NORM(vc + vd) + vb = ROR(XOR(vb, vc), 7) + v[a], v[b], v[c], v[d] = va, vb, vc, vd + end + + function blake2s_feed_64(H, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 64 + local h1, h2, h3, h4, h5, h6, h7, h8 = NORM(H[1]), NORM(H[2]), NORM(H[3]), NORM(H[4]), NORM(H[5]), NORM(H[6]), NORM(H[7]), NORM(H[8]) + for pos = offs, offs + size - 1, 64 do + if str then + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a) + end + end + v[0x0], v[0x1], v[0x2], v[0x3], v[0x4], v[0x5], v[0x6], v[0x7] = h1, h2, h3, h4, h5, h6, h7, h8 + v[0x8], v[0x9], v[0xA], v[0xB], v[0xE], v[0xF] = NORM(sha2_H_hi[1]), NORM(sha2_H_hi[2]), NORM(sha2_H_hi[3]), NORM(sha2_H_hi[4]), NORM(sha2_H_hi[7]), NORM(sha2_H_hi[8]) + bytes_compressed = bytes_compressed + (last_block_size or 64) + local t0 = bytes_compressed % 2^32 + local t1 = floor(bytes_compressed / 2^32) + v[0xC] = XOR(sha2_H_hi[5], t0) -- t0 = low_4_bytes(bytes_compressed) + v[0xD] = XOR(sha2_H_hi[6], t1) -- t1 = high_4_bytes(bytes_compressed + if last_block_size then -- flag f0 + v[0xE] = NOT(v[0xE]) + end + if is_last_node then -- flag f1 + v[0xF] = NOT(v[0xF]) + end + for j = 1, 10 do + local row = sigma[j] + G(0, 4, 8, 12, row[ 1], row[ 2]) + G(1, 5, 9, 13, row[ 3], row[ 4]) + G(2, 6, 10, 14, row[ 5], row[ 6]) + G(3, 7, 11, 15, row[ 7], row[ 8]) + G(0, 5, 10, 15, row[ 9], row[10]) + G(1, 6, 11, 12, row[11], row[12]) + G(2, 7, 8, 13, row[13], row[14]) + G(3, 4, 9, 14, row[15], row[16]) + end + h1 = XOR(h1, v[0x0], v[0x8]) + h2 = XOR(h2, v[0x1], v[0x9]) + h3 = XOR(h3, v[0x2], v[0xA]) + h4 = XOR(h4, v[0x3], v[0xB]) + h5 = XOR(h5, v[0x4], v[0xC]) + h6 = XOR(h6, v[0x5], v[0xD]) + h7 = XOR(h7, v[0x6], v[0xE]) + h8 = XOR(h8, v[0x7], v[0xF]) + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + function blake3_feed_64(str, offs, size, flags, chunk_index, H_in, H_out, wide_output, block_length) + -- offs >= 0, size >= 0, size is multiple of 64 + block_length = block_length or 64 + local h1, h2, h3, h4, h5, h6, h7, h8 = NORM(H_in[1]), NORM(H_in[2]), NORM(H_in[3]), NORM(H_in[4]), NORM(H_in[5]), NORM(H_in[6]), NORM(H_in[7]), NORM(H_in[8]) + H_out = H_out or H_in + for pos = offs, offs + size - 1, 64 do + if str then + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a) + end + end + v[0x0], v[0x1], v[0x2], v[0x3], v[0x4], v[0x5], v[0x6], v[0x7] = h1, h2, h3, h4, h5, h6, h7, h8 + v[0x8], v[0x9], v[0xA], v[0xB] = NORM(sha2_H_hi[1]), NORM(sha2_H_hi[2]), NORM(sha2_H_hi[3]), NORM(sha2_H_hi[4]) + v[0xC] = NORM(chunk_index % 2^32) -- t0 = low_4_bytes(chunk_index) + v[0xD] = floor(chunk_index / 2^32) -- t1 = high_4_bytes(chunk_index) + v[0xE], v[0xF] = block_length, flags + for j = 1, 7 do + G(0, 4, 8, 12, perm_blake3[j], perm_blake3[j + 14]) + G(1, 5, 9, 13, perm_blake3[j + 1], perm_blake3[j + 2]) + G(2, 6, 10, 14, perm_blake3[j + 16], perm_blake3[j + 7]) + G(3, 7, 11, 15, perm_blake3[j + 15], perm_blake3[j + 17]) + G(0, 5, 10, 15, perm_blake3[j + 21], perm_blake3[j + 5]) + G(1, 6, 11, 12, perm_blake3[j + 3], perm_blake3[j + 6]) + G(2, 7, 8, 13, perm_blake3[j + 4], perm_blake3[j + 18]) + G(3, 4, 9, 14, perm_blake3[j + 19], perm_blake3[j + 20]) + end + if wide_output then + H_out[ 9] = XOR(h1, v[0x8]) + H_out[10] = XOR(h2, v[0x9]) + H_out[11] = XOR(h3, v[0xA]) + H_out[12] = XOR(h4, v[0xB]) + H_out[13] = XOR(h5, v[0xC]) + H_out[14] = XOR(h6, v[0xD]) + H_out[15] = XOR(h7, v[0xE]) + H_out[16] = XOR(h8, v[0xF]) + end + h1 = XOR(v[0x0], v[0x8]) + h2 = XOR(v[0x1], v[0x9]) + h3 = XOR(v[0x2], v[0xA]) + h4 = XOR(v[0x3], v[0xB]) + h5 = XOR(v[0x4], v[0xC]) + h6 = XOR(v[0x5], v[0xD]) + h7 = XOR(v[0x6], v[0xE]) + h8 = XOR(v[0x7], v[0xF]) + end + H_out[1], H_out[2], H_out[3], H_out[4], H_out[5], H_out[6], H_out[7], H_out[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + end + +end + + +if branch == "INT64" then + + + -- implementation for Lua 5.3/5.4 + + hi_factor = 4294967296 + hi_factor_keccak = 4294967296 + lanes_index_base = 1 + + HEX64, XORA5, XOR_BYTE, sha256_feed_64, sha512_feed_128, md5_feed_64, sha1_feed_64, keccak_feed, blake2s_feed_64, blake2b_feed_128, blake3_feed_64 = load[=[-- branch "INT64" + local md5_next_shift, md5_K, sha2_K_lo, sha2_K_hi, build_keccak_format, sha3_RC_lo, sigma, common_W, sha2_H_lo, sha2_H_hi, perm_blake3 = ... + local string_format, string_unpack = string.format, string.unpack + + local function HEX64(x) + return string_format("%016x", x) + end + + local function XORA5(x, y) + return x ~ (y or 0xa5a5a5a5a5a5a5a5) + end + + local function XOR_BYTE(x, y) + return x ~ y + end + + local function sha256_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W, sha2_K_hi + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">I4I4I4I4I4I4I4I4I4I4I4I4I4I4I4I4", str, pos) + for j = 17, 64 do + local a = W[j-15] + a = a<<32 | a + local b = W[j-2] + b = b<<32 | b + W[j] = (a>>7 ~ a>>18 ~ a>>35) + (b>>17 ~ b>>19 ~ b>>42) + W[j-7] + W[j-16] & (1<<32)-1 + end + local a, b, c, d, e, f, g, h = h1, h2, h3, h4, h5, h6, h7, h8 + for j = 1, 64 do + e = e<<32 | e & (1<<32)-1 + local z = (e>>6 ~ e>>11 ~ e>>25) + (g ~ e & (f ~ g)) + h + K[j] + W[j] + h = g + g = f + f = e + e = z + d + d = c + c = b + b = a + a = a<<32 | a & (1<<32)-1 + a = z + ((a ~ c) & d ~ a & c) + (a>>2 ~ a>>13 ~ a>>22) + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + h5 = e + h5 + h6 = f + h6 + h7 = g + h7 + h8 = h + h8 + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + local function sha512_feed_128(H, _, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + local W, K = common_W, sha2_K_lo + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 128 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">i8i8i8i8i8i8i8i8i8i8i8i8i8i8i8i8", str, pos) + for j = 17, 80 do + local a = W[j-15] + local b = W[j-2] + W[j] = (a >> 1 ~ a >> 7 ~ a >> 8 ~ a << 56 ~ a << 63) + (b >> 6 ~ b >> 19 ~ b >> 61 ~ b << 3 ~ b << 45) + W[j-7] + W[j-16] + end + local a, b, c, d, e, f, g, h = h1, h2, h3, h4, h5, h6, h7, h8 + for j = 1, 80 do + local z = (e >> 14 ~ e >> 18 ~ e >> 41 ~ e << 23 ~ e << 46 ~ e << 50) + (g ~ e & (f ~ g)) + h + K[j] + W[j] + h = g + g = f + f = e + e = z + d + d = c + c = b + b = a + a = z + ((a ~ c) & d ~ a & c) + (a >> 28 ~ a >> 34 ~ a >> 39 ~ a << 25 ~ a << 30 ~ a << 36) + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + h5 = e + h5 + h6 = f + h6 + h7 = g + h7 + h8 = h + h8 + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + local function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K, md5_next_shift = common_W, md5_K, md5_next_shift + local h1, h2, h3, h4 = H[1], H[2], H[3], H[4] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> s) + b + s = md5_next_shift[s] + end + s = 32-5 + for j = 17, 32 do + local F = (c ~ d & (b ~ c)) + a + K[j] + W[(5*j-4 & 15) + 1] + a = d + d = c + c = b + b = ((F<<32 | F & (1<<32)-1) >> s) + b + s = md5_next_shift[s] + end + s = 32-4 + for j = 33, 48 do + local F = (b ~ c ~ d) + a + K[j] + W[(3*j+2 & 15) + 1] + a = d + d = c + c = b + b = ((F<<32 | F & (1<<32)-1) >> s) + b + s = md5_next_shift[s] + end + s = 32-6 + for j = 49, 64 do + local F = (c ~ (b | ~d)) + a + K[j] + W[(j*7-7 & 15) + 1] + a = d + d = c + c = b + b = ((F<<32 | F & (1<<32)-1) >> s) + b + s = md5_next_shift[s] + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + end + H[1], H[2], H[3], H[4] = h1, h2, h3, h4 + end + + local function sha1_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5 = H[1], H[2], H[3], H[4], H[5] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">I4I4I4I4I4I4I4I4I4I4I4I4I4I4I4I4", str, pos) + for j = 17, 80 do + local a = W[j-3] ~ W[j-8] ~ W[j-14] ~ W[j-16] + W[j] = (a<<32 | a) << 1 >> 32 + end + local a, b, c, d, e = h1, h2, h3, h4, h5 + for j = 1, 20 do + local z = ((a<<32 | a & (1<<32)-1) >> 27) + (d ~ b & (c ~ d)) + 0x5A827999 + W[j] + e -- constant = floor(2^30 * sqrt(2)) + e = d + d = c + c = (b<<32 | b & (1<<32)-1) >> 2 + b = a + a = z + end + for j = 21, 40 do + local z = ((a<<32 | a & (1<<32)-1) >> 27) + (b ~ c ~ d) + 0x6ED9EBA1 + W[j] + e -- 2^30 * sqrt(3) + e = d + d = c + c = (b<<32 | b & (1<<32)-1) >> 2 + b = a + a = z + end + for j = 41, 60 do + local z = ((a<<32 | a & (1<<32)-1) >> 27) + ((b ~ c) & d ~ b & c) + 0x8F1BBCDC + W[j] + e -- 2^30 * sqrt(5) + e = d + d = c + c = (b<<32 | b & (1<<32)-1) >> 2 + b = a + a = z + end + for j = 61, 80 do + local z = ((a<<32 | a & (1<<32)-1) >> 27) + (b ~ c ~ d) + 0xCA62C1D6 + W[j] + e -- 2^30 * sqrt(10) + e = d + d = c + c = (b<<32 | b & (1<<32)-1) >> 2 + b = a + a = z + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + h5 = e + h5 + end + H[1], H[2], H[3], H[4], H[5] = h1, h2, h3, h4, h5 + end + + local keccak_format_i8 = build_keccak_format("i8") + + local function keccak_feed(lanes, _, str, offs, size, block_size_in_bytes) + -- offs >= 0, size >= 0, size is multiple of block_size_in_bytes, block_size_in_bytes is positive multiple of 8 + local RC = sha3_RC_lo + local qwords_qty = block_size_in_bytes / 8 + local keccak_format = keccak_format_i8[qwords_qty] + for pos = offs + 1, offs + size, block_size_in_bytes do + local qwords_from_message = {string_unpack(keccak_format, str, pos)} + for j = 1, qwords_qty do + lanes[j] = lanes[j] ~ qwords_from_message[j] + end + local L01, L02, L03, L04, L05, L06, L07, L08, L09, L10, L11, L12, L13, L14, L15, L16, L17, L18, L19, L20, L21, L22, L23, L24, L25 = + lanes[1], lanes[2], lanes[3], lanes[4], lanes[5], lanes[6], lanes[7], lanes[8], lanes[9], lanes[10], lanes[11], lanes[12], lanes[13], + lanes[14], lanes[15], lanes[16], lanes[17], lanes[18], lanes[19], lanes[20], lanes[21], lanes[22], lanes[23], lanes[24], lanes[25] + for round_idx = 1, 24 do + local C1 = L01 ~ L06 ~ L11 ~ L16 ~ L21 + local C2 = L02 ~ L07 ~ L12 ~ L17 ~ L22 + local C3 = L03 ~ L08 ~ L13 ~ L18 ~ L23 + local C4 = L04 ~ L09 ~ L14 ~ L19 ~ L24 + local C5 = L05 ~ L10 ~ L15 ~ L20 ~ L25 + local D = C1 ~ C3<<1 ~ C3>>63 + local T0 = D ~ L02 + local T1 = D ~ L07 + local T2 = D ~ L12 + local T3 = D ~ L17 + local T4 = D ~ L22 + L02 = T1<<44 ~ T1>>20 + L07 = T3<<45 ~ T3>>19 + L12 = T0<<1 ~ T0>>63 + L17 = T2<<10 ~ T2>>54 + L22 = T4<<2 ~ T4>>62 + D = C2 ~ C4<<1 ~ C4>>63 + T0 = D ~ L03 + T1 = D ~ L08 + T2 = D ~ L13 + T3 = D ~ L18 + T4 = D ~ L23 + L03 = T2<<43 ~ T2>>21 + L08 = T4<<61 ~ T4>>3 + L13 = T1<<6 ~ T1>>58 + L18 = T3<<15 ~ T3>>49 + L23 = T0<<62 ~ T0>>2 + D = C3 ~ C5<<1 ~ C5>>63 + T0 = D ~ L04 + T1 = D ~ L09 + T2 = D ~ L14 + T3 = D ~ L19 + T4 = D ~ L24 + L04 = T3<<21 ~ T3>>43 + L09 = T0<<28 ~ T0>>36 + L14 = T2<<25 ~ T2>>39 + L19 = T4<<56 ~ T4>>8 + L24 = T1<<55 ~ T1>>9 + D = C4 ~ C1<<1 ~ C1>>63 + T0 = D ~ L05 + T1 = D ~ L10 + T2 = D ~ L15 + T3 = D ~ L20 + T4 = D ~ L25 + L05 = T4<<14 ~ T4>>50 + L10 = T1<<20 ~ T1>>44 + L15 = T3<<8 ~ T3>>56 + L20 = T0<<27 ~ T0>>37 + L25 = T2<<39 ~ T2>>25 + D = C5 ~ C2<<1 ~ C2>>63 + T1 = D ~ L06 + T2 = D ~ L11 + T3 = D ~ L16 + T4 = D ~ L21 + L06 = T2<<3 ~ T2>>61 + L11 = T4<<18 ~ T4>>46 + L16 = T1<<36 ~ T1>>28 + L21 = T3<<41 ~ T3>>23 + L01 = D ~ L01 + L01, L02, L03, L04, L05 = L01 ~ ~L02 & L03, L02 ~ ~L03 & L04, L03 ~ ~L04 & L05, L04 ~ ~L05 & L01, L05 ~ ~L01 & L02 + L06, L07, L08, L09, L10 = L09 ~ ~L10 & L06, L10 ~ ~L06 & L07, L06 ~ ~L07 & L08, L07 ~ ~L08 & L09, L08 ~ ~L09 & L10 + L11, L12, L13, L14, L15 = L12 ~ ~L13 & L14, L13 ~ ~L14 & L15, L14 ~ ~L15 & L11, L15 ~ ~L11 & L12, L11 ~ ~L12 & L13 + L16, L17, L18, L19, L20 = L20 ~ ~L16 & L17, L16 ~ ~L17 & L18, L17 ~ ~L18 & L19, L18 ~ ~L19 & L20, L19 ~ ~L20 & L16 + L21, L22, L23, L24, L25 = L23 ~ ~L24 & L25, L24 ~ ~L25 & L21, L25 ~ ~L21 & L22, L21 ~ ~L22 & L23, L22 ~ ~L23 & L24 + L01 = L01 ~ RC[round_idx] + end + lanes[1] = L01 + lanes[2] = L02 + lanes[3] = L03 + lanes[4] = L04 + lanes[5] = L05 + lanes[6] = L06 + lanes[7] = L07 + lanes[8] = L08 + lanes[9] = L09 + lanes[10] = L10 + lanes[11] = L11 + lanes[12] = L12 + lanes[13] = L13 + lanes[14] = L14 + lanes[15] = L15 + lanes[16] = L16 + lanes[17] = L17 + lanes[18] = L18 + lanes[19] = L19 + lanes[20] = L20 + lanes[21] = L21 + lanes[22] = L22 + lanes[23] = L23 + lanes[24] = L24 + lanes[25] = L25 + end + end + + local function blake2s_feed_64(H, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 64 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> 32 -- t1 = high_4_bytes(bytes_compressed) + if last_block_size then -- flag f0 + vE = ~vE + end + if is_last_node then -- flag f1 + vF = ~vF + end + for j = 1, 10 do + local row = sigma[j] + v0 = v0 + v4 + W[row[1]] + vC = vC ~ v0 + vC = (vC & (1<<32)-1) >> 16 | vC << 16 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = (v4 & (1<<32)-1) >> 12 | v4 << 20 + v0 = v0 + v4 + W[row[2]] + vC = vC ~ v0 + vC = (vC & (1<<32)-1) >> 8 | vC << 24 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = (v4 & (1<<32)-1) >> 7 | v4 << 25 + v1 = v1 + v5 + W[row[3]] + vD = vD ~ v1 + vD = (vD & (1<<32)-1) >> 16 | vD << 16 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = (v5 & (1<<32)-1) >> 12 | v5 << 20 + v1 = v1 + v5 + W[row[4]] + vD = vD ~ v1 + vD = (vD & (1<<32)-1) >> 8 | vD << 24 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = (v5 & (1<<32)-1) >> 7 | v5 << 25 + v2 = v2 + v6 + W[row[5]] + vE = vE ~ v2 + vE = (vE & (1<<32)-1) >> 16 | vE << 16 + vA = vA + vE + v6 = v6 ~ vA + v6 = (v6 & (1<<32)-1) >> 12 | v6 << 20 + v2 = v2 + v6 + W[row[6]] + vE = vE ~ v2 + vE = (vE & (1<<32)-1) >> 8 | vE << 24 + vA = vA + vE + v6 = v6 ~ vA + v6 = (v6 & (1<<32)-1) >> 7 | v6 << 25 + v3 = v3 + v7 + W[row[7]] + vF = vF ~ v3 + vF = (vF & (1<<32)-1) >> 16 | vF << 16 + vB = vB + vF + v7 = v7 ~ vB + v7 = (v7 & (1<<32)-1) >> 12 | v7 << 20 + v3 = v3 + v7 + W[row[8]] + vF = vF ~ v3 + vF = (vF & (1<<32)-1) >> 8 | vF << 24 + vB = vB + vF + v7 = v7 ~ vB + v7 = (v7 & (1<<32)-1) >> 7 | v7 << 25 + v0 = v0 + v5 + W[row[9]] + vF = vF ~ v0 + vF = (vF & (1<<32)-1) >> 16 | vF << 16 + vA = vA + vF + v5 = v5 ~ vA + v5 = (v5 & (1<<32)-1) >> 12 | v5 << 20 + v0 = v0 + v5 + W[row[10]] + vF = vF ~ v0 + vF = (vF & (1<<32)-1) >> 8 | vF << 24 + vA = vA + vF + v5 = v5 ~ vA + v5 = (v5 & (1<<32)-1) >> 7 | v5 << 25 + v1 = v1 + v6 + W[row[11]] + vC = vC ~ v1 + vC = (vC & (1<<32)-1) >> 16 | vC << 16 + vB = vB + vC + v6 = v6 ~ vB + v6 = (v6 & (1<<32)-1) >> 12 | v6 << 20 + v1 = v1 + v6 + W[row[12]] + vC = vC ~ v1 + vC = (vC & (1<<32)-1) >> 8 | vC << 24 + vB = vB + vC + v6 = v6 ~ vB + v6 = (v6 & (1<<32)-1) >> 7 | v6 << 25 + v2 = v2 + v7 + W[row[13]] + vD = vD ~ v2 + vD = (vD & (1<<32)-1) >> 16 | vD << 16 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = (v7 & (1<<32)-1) >> 12 | v7 << 20 + v2 = v2 + v7 + W[row[14]] + vD = vD ~ v2 + vD = (vD & (1<<32)-1) >> 8 | vD << 24 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = (v7 & (1<<32)-1) >> 7 | v7 << 25 + v3 = v3 + v4 + W[row[15]] + vE = vE ~ v3 + vE = (vE & (1<<32)-1) >> 16 | vE << 16 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = (v4 & (1<<32)-1) >> 12 | v4 << 20 + v3 = v3 + v4 + W[row[16]] + vE = vE ~ v3 + vE = (vE & (1<<32)-1) >> 8 | vE << 24 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = (v4 & (1<<32)-1) >> 7 | v4 << 25 + end + h1 = h1 ~ v0 ~ v8 + h2 = h2 ~ v1 ~ v9 + h3 = h3 ~ v2 ~ vA + h4 = h4 ~ v3 ~ vB + h5 = h5 ~ v4 ~ vC + h6 = h6 ~ v5 ~ vD + h7 = h7 ~ v6 ~ vE + h8 = h8 ~ v7 ~ vF + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + local function blake2b_feed_128(H, _, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 128 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> 32 | vC << 32 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 24 | v4 << 40 + v0 = v0 + v4 + W[row[2]] + vC = vC ~ v0 + vC = vC >> 16 | vC << 48 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 63 | v4 << 1 + v1 = v1 + v5 + W[row[3]] + vD = vD ~ v1 + vD = vD >> 32 | vD << 32 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 24 | v5 << 40 + v1 = v1 + v5 + W[row[4]] + vD = vD ~ v1 + vD = vD >> 16 | vD << 48 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 63 | v5 << 1 + v2 = v2 + v6 + W[row[5]] + vE = vE ~ v2 + vE = vE >> 32 | vE << 32 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 24 | v6 << 40 + v2 = v2 + v6 + W[row[6]] + vE = vE ~ v2 + vE = vE >> 16 | vE << 48 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 63 | v6 << 1 + v3 = v3 + v7 + W[row[7]] + vF = vF ~ v3 + vF = vF >> 32 | vF << 32 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 24 | v7 << 40 + v3 = v3 + v7 + W[row[8]] + vF = vF ~ v3 + vF = vF >> 16 | vF << 48 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 63 | v7 << 1 + v0 = v0 + v5 + W[row[9]] + vF = vF ~ v0 + vF = vF >> 32 | vF << 32 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 24 | v5 << 40 + v0 = v0 + v5 + W[row[10]] + vF = vF ~ v0 + vF = vF >> 16 | vF << 48 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 63 | v5 << 1 + v1 = v1 + v6 + W[row[11]] + vC = vC ~ v1 + vC = vC >> 32 | vC << 32 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 24 | v6 << 40 + v1 = v1 + v6 + W[row[12]] + vC = vC ~ v1 + vC = vC >> 16 | vC << 48 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 63 | v6 << 1 + v2 = v2 + v7 + W[row[13]] + vD = vD ~ v2 + vD = vD >> 32 | vD << 32 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 24 | v7 << 40 + v2 = v2 + v7 + W[row[14]] + vD = vD ~ v2 + vD = vD >> 16 | vD << 48 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 63 | v7 << 1 + v3 = v3 + v4 + W[row[15]] + vE = vE ~ v3 + vE = vE >> 32 | vE << 32 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 24 | v4 << 40 + v3 = v3 + v4 + W[row[16]] + vE = vE ~ v3 + vE = vE >> 16 | vE << 48 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 63 | v4 << 1 + end + h1 = h1 ~ v0 ~ v8 + h2 = h2 ~ v1 ~ v9 + h3 = h3 ~ v2 ~ vA + h4 = h4 ~ v3 ~ vB + h5 = h5 ~ v4 ~ vC + h6 = h6 ~ v5 ~ vD + h7 = h7 ~ v6 ~ vE + h8 = h8 ~ v7 ~ vF + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + local function blake3_feed_64(str, offs, size, flags, chunk_index, H_in, H_out, wide_output, block_length) + -- offs >= 0, size >= 0, size is multiple of 64 + block_length = block_length or 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H_in[1], H_in[2], H_in[3], H_in[4], H_in[5], H_in[6], H_in[7], H_in[8] + H_out = H_out or H_in + for pos = offs + 1, offs + size, 64 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> 16 | vC << 16 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = (v4 & (1<<32)-1) >> 12 | v4 << 20 + v0 = v0 + v4 + W[perm_blake3[j + 14]] + vC = vC ~ v0 + vC = (vC & (1<<32)-1) >> 8 | vC << 24 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = (v4 & (1<<32)-1) >> 7 | v4 << 25 + v1 = v1 + v5 + W[perm_blake3[j + 1]] + vD = vD ~ v1 + vD = (vD & (1<<32)-1) >> 16 | vD << 16 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = (v5 & (1<<32)-1) >> 12 | v5 << 20 + v1 = v1 + v5 + W[perm_blake3[j + 2]] + vD = vD ~ v1 + vD = (vD & (1<<32)-1) >> 8 | vD << 24 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = (v5 & (1<<32)-1) >> 7 | v5 << 25 + v2 = v2 + v6 + W[perm_blake3[j + 16]] + vE = vE ~ v2 + vE = (vE & (1<<32)-1) >> 16 | vE << 16 + vA = vA + vE + v6 = v6 ~ vA + v6 = (v6 & (1<<32)-1) >> 12 | v6 << 20 + v2 = v2 + v6 + W[perm_blake3[j + 7]] + vE = vE ~ v2 + vE = (vE & (1<<32)-1) >> 8 | vE << 24 + vA = vA + vE + v6 = v6 ~ vA + v6 = (v6 & (1<<32)-1) >> 7 | v6 << 25 + v3 = v3 + v7 + W[perm_blake3[j + 15]] + vF = vF ~ v3 + vF = (vF & (1<<32)-1) >> 16 | vF << 16 + vB = vB + vF + v7 = v7 ~ vB + v7 = (v7 & (1<<32)-1) >> 12 | v7 << 20 + v3 = v3 + v7 + W[perm_blake3[j + 17]] + vF = vF ~ v3 + vF = (vF & (1<<32)-1) >> 8 | vF << 24 + vB = vB + vF + v7 = v7 ~ vB + v7 = (v7 & (1<<32)-1) >> 7 | v7 << 25 + v0 = v0 + v5 + W[perm_blake3[j + 21]] + vF = vF ~ v0 + vF = (vF & (1<<32)-1) >> 16 | vF << 16 + vA = vA + vF + v5 = v5 ~ vA + v5 = (v5 & (1<<32)-1) >> 12 | v5 << 20 + v0 = v0 + v5 + W[perm_blake3[j + 5]] + vF = vF ~ v0 + vF = (vF & (1<<32)-1) >> 8 | vF << 24 + vA = vA + vF + v5 = v5 ~ vA + v5 = (v5 & (1<<32)-1) >> 7 | v5 << 25 + v1 = v1 + v6 + W[perm_blake3[j + 3]] + vC = vC ~ v1 + vC = (vC & (1<<32)-1) >> 16 | vC << 16 + vB = vB + vC + v6 = v6 ~ vB + v6 = (v6 & (1<<32)-1) >> 12 | v6 << 20 + v1 = v1 + v6 + W[perm_blake3[j + 6]] + vC = vC ~ v1 + vC = (vC & (1<<32)-1) >> 8 | vC << 24 + vB = vB + vC + v6 = v6 ~ vB + v6 = (v6 & (1<<32)-1) >> 7 | v6 << 25 + v2 = v2 + v7 + W[perm_blake3[j + 4]] + vD = vD ~ v2 + vD = (vD & (1<<32)-1) >> 16 | vD << 16 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = (v7 & (1<<32)-1) >> 12 | v7 << 20 + v2 = v2 + v7 + W[perm_blake3[j + 18]] + vD = vD ~ v2 + vD = (vD & (1<<32)-1) >> 8 | vD << 24 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = (v7 & (1<<32)-1) >> 7 | v7 << 25 + v3 = v3 + v4 + W[perm_blake3[j + 19]] + vE = vE ~ v3 + vE = (vE & (1<<32)-1) >> 16 | vE << 16 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = (v4 & (1<<32)-1) >> 12 | v4 << 20 + v3 = v3 + v4 + W[perm_blake3[j + 20]] + vE = vE ~ v3 + vE = (vE & (1<<32)-1) >> 8 | vE << 24 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = (v4 & (1<<32)-1) >> 7 | v4 << 25 + end + if wide_output then + H_out[ 9] = h1 ~ v8 + H_out[10] = h2 ~ v9 + H_out[11] = h3 ~ vA + H_out[12] = h4 ~ vB + H_out[13] = h5 ~ vC + H_out[14] = h6 ~ vD + H_out[15] = h7 ~ vE + H_out[16] = h8 ~ vF + end + h1 = v0 ~ v8 + h2 = v1 ~ v9 + h3 = v2 ~ vA + h4 = v3 ~ vB + h5 = v4 ~ vC + h6 = v5 ~ vD + h7 = v6 ~ vE + h8 = v7 ~ vF + end + H_out[1], H_out[2], H_out[3], H_out[4], H_out[5], H_out[6], H_out[7], H_out[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + return HEX64, XORA5, XOR_BYTE, sha256_feed_64, sha512_feed_128, md5_feed_64, sha1_feed_64, keccak_feed, blake2s_feed_64, blake2b_feed_128, blake3_feed_64 + ]=](md5_next_shift, md5_K, sha2_K_lo, sha2_K_hi, build_keccak_format, sha3_RC_lo, sigma, common_W, sha2_H_lo, sha2_H_hi, perm_blake3) + +end + + +if branch == "INT32" then + + + -- implementation for Lua 5.3/5.4 having non-standard numbers config "int32"+"double" (built with LUA_INT_TYPE=LUA_INT_INT) + + K_lo_modulo = 2^32 + + function HEX(x) -- returns string of 8 lowercase hexadecimal digits + return string_format("%08x", x) + end + + XORA5, XOR_BYTE, sha256_feed_64, sha512_feed_128, md5_feed_64, sha1_feed_64, keccak_feed, blake2s_feed_64, blake2b_feed_128, blake3_feed_64 = load[=[-- branch "INT32" + local md5_next_shift, md5_K, sha2_K_lo, sha2_K_hi, build_keccak_format, sha3_RC_lo, sha3_RC_hi, sigma, common_W, sha2_H_lo, sha2_H_hi, perm_blake3 = ... + local string_unpack, floor = string.unpack, math.floor + + local function XORA5(x, y) + return x ~ (y and (y + 2^31) % 2^32 - 2^31 or 0xA5A5A5A5) + end + + local function XOR_BYTE(x, y) + return x ~ y + end + + local function sha256_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W, sha2_K_hi + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4", str, pos) + for j = 17, 64 do + local a, b = W[j-15], W[j-2] + W[j] = (a>>7 ~ a<<25 ~ a<<14 ~ a>>18 ~ a>>3) + (b<<15 ~ b>>17 ~ b<<13 ~ b>>19 ~ b>>10) + W[j-7] + W[j-16] + end + local a, b, c, d, e, f, g, h = h1, h2, h3, h4, h5, h6, h7, h8 + for j = 1, 64 do + local z = (e>>6 ~ e<<26 ~ e>>11 ~ e<<21 ~ e>>25 ~ e<<7) + (g ~ e & (f ~ g)) + h + K[j] + W[j] + h = g + g = f + f = e + e = z + d + d = c + c = b + b = a + a = z + ((a ~ c) & d ~ a & c) + (a>>2 ~ a<<30 ~ a>>13 ~ a<<19 ~ a<<10 ~ a>>22) + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + h5 = e + h5 + h6 = f + h6 + h7 = g + h7 + h8 = h + h8 + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + local function sha512_feed_128(H_lo, H_hi, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + -- W1_hi, W1_lo, W2_hi, W2_lo, ... Wk_hi = W[2*k-1], Wk_lo = W[2*k] + local floor, W, K_lo, K_hi = floor, common_W, sha2_K_lo, sha2_K_hi + local h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for pos = offs + 1, offs + size, 128 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16], + W[17], W[18], W[19], W[20], W[21], W[22], W[23], W[24], W[25], W[26], W[27], W[28], W[29], W[30], W[31], W[32] = + string_unpack(">i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4", str, pos) + for jj = 17*2, 80*2, 2 do + local a_lo, a_hi, b_lo, b_hi = W[jj-30], W[jj-31], W[jj-4], W[jj-5] + local tmp = + (a_lo>>1 ~ a_hi<<31 ~ a_lo>>8 ~ a_hi<<24 ~ a_lo>>7 ~ a_hi<<25) % 2^32 + + (b_lo>>19 ~ b_hi<<13 ~ b_lo<<3 ~ b_hi>>29 ~ b_lo>>6 ~ b_hi<<26) % 2^32 + + W[jj-14] % 2^32 + W[jj-32] % 2^32 + W[jj-1] = + (a_hi>>1 ~ a_lo<<31 ~ a_hi>>8 ~ a_lo<<24 ~ a_hi>>7) + + (b_hi>>19 ~ b_lo<<13 ~ b_hi<<3 ~ b_lo>>29 ~ b_hi>>6) + + W[jj-15] + W[jj-33] + floor(tmp / 2^32) + W[jj] = 0|((tmp + 2^31) % 2^32 - 2^31) + end + local a_lo, b_lo, c_lo, d_lo, e_lo, f_lo, g_lo, h_lo = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + local a_hi, b_hi, c_hi, d_hi, e_hi, f_hi, g_hi, h_hi = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + for j = 1, 80 do + local jj = 2*j + local z_lo = (e_lo>>14 ~ e_hi<<18 ~ e_lo>>18 ~ e_hi<<14 ~ e_lo<<23 ~ e_hi>>9) % 2^32 + (g_lo ~ e_lo & (f_lo ~ g_lo)) % 2^32 + h_lo % 2^32 + K_lo[j] + W[jj] % 2^32 + local z_hi = (e_hi>>14 ~ e_lo<<18 ~ e_hi>>18 ~ e_lo<<14 ~ e_hi<<23 ~ e_lo>>9) + (g_hi ~ e_hi & (f_hi ~ g_hi)) + h_hi + K_hi[j] + W[jj-1] + floor(z_lo / 2^32) + z_lo = z_lo % 2^32 + h_lo = g_lo; h_hi = g_hi + g_lo = f_lo; g_hi = f_hi + f_lo = e_lo; f_hi = e_hi + e_lo = z_lo + d_lo % 2^32 + e_hi = z_hi + d_hi + floor(e_lo / 2^32) + e_lo = 0|((e_lo + 2^31) % 2^32 - 2^31) + d_lo = c_lo; d_hi = c_hi + c_lo = b_lo; c_hi = b_hi + b_lo = a_lo; b_hi = a_hi + z_lo = z_lo + (d_lo & c_lo ~ b_lo & (d_lo ~ c_lo)) % 2^32 + (b_lo>>28 ~ b_hi<<4 ~ b_lo<<30 ~ b_hi>>2 ~ b_lo<<25 ~ b_hi>>7) % 2^32 + a_hi = z_hi + (d_hi & c_hi ~ b_hi & (d_hi ~ c_hi)) + (b_hi>>28 ~ b_lo<<4 ~ b_hi<<30 ~ b_lo>>2 ~ b_hi<<25 ~ b_lo>>7) + floor(z_lo / 2^32) + a_lo = 0|((z_lo + 2^31) % 2^32 - 2^31) + end + a_lo = h1_lo % 2^32 + a_lo % 2^32 + h1_hi = h1_hi + a_hi + floor(a_lo / 2^32) + h1_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h2_lo % 2^32 + b_lo % 2^32 + h2_hi = h2_hi + b_hi + floor(a_lo / 2^32) + h2_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h3_lo % 2^32 + c_lo % 2^32 + h3_hi = h3_hi + c_hi + floor(a_lo / 2^32) + h3_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h4_lo % 2^32 + d_lo % 2^32 + h4_hi = h4_hi + d_hi + floor(a_lo / 2^32) + h4_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h5_lo % 2^32 + e_lo % 2^32 + h5_hi = h5_hi + e_hi + floor(a_lo / 2^32) + h5_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h6_lo % 2^32 + f_lo % 2^32 + h6_hi = h6_hi + f_hi + floor(a_lo / 2^32) + h6_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h7_lo % 2^32 + g_lo % 2^32 + h7_hi = h7_hi + g_hi + floor(a_lo / 2^32) + h7_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + a_lo = h8_lo % 2^32 + h_lo % 2^32 + h8_hi = h8_hi + h_hi + floor(a_lo / 2^32) + h8_lo = 0|((a_lo + 2^31) % 2^32 - 2^31) + end + H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + end + + local function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K, md5_next_shift = common_W, md5_K, md5_next_shift + local h1, h2, h3, h4 = H[1], H[2], H[3], H[4] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">s) + b + s = md5_next_shift[s] + end + s = 32-5 + for j = 17, 32 do + local F = (c ~ d & (b ~ c)) + a + K[j] + W[(5*j-4 & 15) + 1] + a = d + d = c + c = b + b = (F << 32-s | F>>s) + b + s = md5_next_shift[s] + end + s = 32-4 + for j = 33, 48 do + local F = (b ~ c ~ d) + a + K[j] + W[(3*j+2 & 15) + 1] + a = d + d = c + c = b + b = (F << 32-s | F>>s) + b + s = md5_next_shift[s] + end + s = 32-6 + for j = 49, 64 do + local F = (c ~ (b | ~d)) + a + K[j] + W[(j*7-7 & 15) + 1] + a = d + d = c + c = b + b = (F << 32-s | F>>s) + b + s = md5_next_shift[s] + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + end + H[1], H[2], H[3], H[4] = h1, h2, h3, h4 + end + + local function sha1_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5 = H[1], H[2], H[3], H[4], H[5] + for pos = offs + 1, offs + size, 64 do + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack(">i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4i4", str, pos) + for j = 17, 80 do + local a = W[j-3] ~ W[j-8] ~ W[j-14] ~ W[j-16] + W[j] = a << 1 ~ a >> 31 + end + local a, b, c, d, e = h1, h2, h3, h4, h5 + for j = 1, 20 do + local z = (a << 5 ~ a >> 27) + (d ~ b & (c ~ d)) + 0x5A827999 + W[j] + e -- constant = floor(2^30 * sqrt(2)) + e = d + d = c + c = b << 30 ~ b >> 2 + b = a + a = z + end + for j = 21, 40 do + local z = (a << 5 ~ a >> 27) + (b ~ c ~ d) + 0x6ED9EBA1 + W[j] + e -- 2^30 * sqrt(3) + e = d + d = c + c = b << 30 ~ b >> 2 + b = a + a = z + end + for j = 41, 60 do + local z = (a << 5 ~ a >> 27) + ((b ~ c) & d ~ b & c) + 0x8F1BBCDC + W[j] + e -- 2^30 * sqrt(5) + e = d + d = c + c = b << 30 ~ b >> 2 + b = a + a = z + end + for j = 61, 80 do + local z = (a << 5 ~ a >> 27) + (b ~ c ~ d) + 0xCA62C1D6 + W[j] + e -- 2^30 * sqrt(10) + e = d + d = c + c = b << 30 ~ b >> 2 + b = a + a = z + end + h1 = a + h1 + h2 = b + h2 + h3 = c + h3 + h4 = d + h4 + h5 = e + h5 + end + H[1], H[2], H[3], H[4], H[5] = h1, h2, h3, h4, h5 + end + + local keccak_format_i4i4 = build_keccak_format("i4i4") + + local function keccak_feed(lanes_lo, lanes_hi, str, offs, size, block_size_in_bytes) + -- offs >= 0, size >= 0, size is multiple of block_size_in_bytes, block_size_in_bytes is positive multiple of 8 + local RC_lo, RC_hi = sha3_RC_lo, sha3_RC_hi + local qwords_qty = block_size_in_bytes / 8 + local keccak_format = keccak_format_i4i4[qwords_qty] + for pos = offs + 1, offs + size, block_size_in_bytes do + local dwords_from_message = {string_unpack(keccak_format, str, pos)} + for j = 1, qwords_qty do + lanes_lo[j] = lanes_lo[j] ~ dwords_from_message[2*j-1] + lanes_hi[j] = lanes_hi[j] ~ dwords_from_message[2*j] + end + local L01_lo, L01_hi, L02_lo, L02_hi, L03_lo, L03_hi, L04_lo, L04_hi, L05_lo, L05_hi, L06_lo, L06_hi, L07_lo, L07_hi, L08_lo, L08_hi, + L09_lo, L09_hi, L10_lo, L10_hi, L11_lo, L11_hi, L12_lo, L12_hi, L13_lo, L13_hi, L14_lo, L14_hi, L15_lo, L15_hi, L16_lo, L16_hi, + L17_lo, L17_hi, L18_lo, L18_hi, L19_lo, L19_hi, L20_lo, L20_hi, L21_lo, L21_hi, L22_lo, L22_hi, L23_lo, L23_hi, L24_lo, L24_hi, L25_lo, L25_hi = + lanes_lo[1], lanes_hi[1], lanes_lo[2], lanes_hi[2], lanes_lo[3], lanes_hi[3], lanes_lo[4], lanes_hi[4], lanes_lo[5], lanes_hi[5], + lanes_lo[6], lanes_hi[6], lanes_lo[7], lanes_hi[7], lanes_lo[8], lanes_hi[8], lanes_lo[9], lanes_hi[9], lanes_lo[10], lanes_hi[10], + lanes_lo[11], lanes_hi[11], lanes_lo[12], lanes_hi[12], lanes_lo[13], lanes_hi[13], lanes_lo[14], lanes_hi[14], lanes_lo[15], lanes_hi[15], + lanes_lo[16], lanes_hi[16], lanes_lo[17], lanes_hi[17], lanes_lo[18], lanes_hi[18], lanes_lo[19], lanes_hi[19], lanes_lo[20], lanes_hi[20], + lanes_lo[21], lanes_hi[21], lanes_lo[22], lanes_hi[22], lanes_lo[23], lanes_hi[23], lanes_lo[24], lanes_hi[24], lanes_lo[25], lanes_hi[25] + for round_idx = 1, 24 do + local C1_lo = L01_lo ~ L06_lo ~ L11_lo ~ L16_lo ~ L21_lo + local C1_hi = L01_hi ~ L06_hi ~ L11_hi ~ L16_hi ~ L21_hi + local C2_lo = L02_lo ~ L07_lo ~ L12_lo ~ L17_lo ~ L22_lo + local C2_hi = L02_hi ~ L07_hi ~ L12_hi ~ L17_hi ~ L22_hi + local C3_lo = L03_lo ~ L08_lo ~ L13_lo ~ L18_lo ~ L23_lo + local C3_hi = L03_hi ~ L08_hi ~ L13_hi ~ L18_hi ~ L23_hi + local C4_lo = L04_lo ~ L09_lo ~ L14_lo ~ L19_lo ~ L24_lo + local C4_hi = L04_hi ~ L09_hi ~ L14_hi ~ L19_hi ~ L24_hi + local C5_lo = L05_lo ~ L10_lo ~ L15_lo ~ L20_lo ~ L25_lo + local C5_hi = L05_hi ~ L10_hi ~ L15_hi ~ L20_hi ~ L25_hi + local D_lo = C1_lo ~ C3_lo<<1 ~ C3_hi>>31 + local D_hi = C1_hi ~ C3_hi<<1 ~ C3_lo>>31 + local T0_lo = D_lo ~ L02_lo + local T0_hi = D_hi ~ L02_hi + local T1_lo = D_lo ~ L07_lo + local T1_hi = D_hi ~ L07_hi + local T2_lo = D_lo ~ L12_lo + local T2_hi = D_hi ~ L12_hi + local T3_lo = D_lo ~ L17_lo + local T3_hi = D_hi ~ L17_hi + local T4_lo = D_lo ~ L22_lo + local T4_hi = D_hi ~ L22_hi + L02_lo = T1_lo>>20 ~ T1_hi<<12 + L02_hi = T1_hi>>20 ~ T1_lo<<12 + L07_lo = T3_lo>>19 ~ T3_hi<<13 + L07_hi = T3_hi>>19 ~ T3_lo<<13 + L12_lo = T0_lo<<1 ~ T0_hi>>31 + L12_hi = T0_hi<<1 ~ T0_lo>>31 + L17_lo = T2_lo<<10 ~ T2_hi>>22 + L17_hi = T2_hi<<10 ~ T2_lo>>22 + L22_lo = T4_lo<<2 ~ T4_hi>>30 + L22_hi = T4_hi<<2 ~ T4_lo>>30 + D_lo = C2_lo ~ C4_lo<<1 ~ C4_hi>>31 + D_hi = C2_hi ~ C4_hi<<1 ~ C4_lo>>31 + T0_lo = D_lo ~ L03_lo + T0_hi = D_hi ~ L03_hi + T1_lo = D_lo ~ L08_lo + T1_hi = D_hi ~ L08_hi + T2_lo = D_lo ~ L13_lo + T2_hi = D_hi ~ L13_hi + T3_lo = D_lo ~ L18_lo + T3_hi = D_hi ~ L18_hi + T4_lo = D_lo ~ L23_lo + T4_hi = D_hi ~ L23_hi + L03_lo = T2_lo>>21 ~ T2_hi<<11 + L03_hi = T2_hi>>21 ~ T2_lo<<11 + L08_lo = T4_lo>>3 ~ T4_hi<<29 + L08_hi = T4_hi>>3 ~ T4_lo<<29 + L13_lo = T1_lo<<6 ~ T1_hi>>26 + L13_hi = T1_hi<<6 ~ T1_lo>>26 + L18_lo = T3_lo<<15 ~ T3_hi>>17 + L18_hi = T3_hi<<15 ~ T3_lo>>17 + L23_lo = T0_lo>>2 ~ T0_hi<<30 + L23_hi = T0_hi>>2 ~ T0_lo<<30 + D_lo = C3_lo ~ C5_lo<<1 ~ C5_hi>>31 + D_hi = C3_hi ~ C5_hi<<1 ~ C5_lo>>31 + T0_lo = D_lo ~ L04_lo + T0_hi = D_hi ~ L04_hi + T1_lo = D_lo ~ L09_lo + T1_hi = D_hi ~ L09_hi + T2_lo = D_lo ~ L14_lo + T2_hi = D_hi ~ L14_hi + T3_lo = D_lo ~ L19_lo + T3_hi = D_hi ~ L19_hi + T4_lo = D_lo ~ L24_lo + T4_hi = D_hi ~ L24_hi + L04_lo = T3_lo<<21 ~ T3_hi>>11 + L04_hi = T3_hi<<21 ~ T3_lo>>11 + L09_lo = T0_lo<<28 ~ T0_hi>>4 + L09_hi = T0_hi<<28 ~ T0_lo>>4 + L14_lo = T2_lo<<25 ~ T2_hi>>7 + L14_hi = T2_hi<<25 ~ T2_lo>>7 + L19_lo = T4_lo>>8 ~ T4_hi<<24 + L19_hi = T4_hi>>8 ~ T4_lo<<24 + L24_lo = T1_lo>>9 ~ T1_hi<<23 + L24_hi = T1_hi>>9 ~ T1_lo<<23 + D_lo = C4_lo ~ C1_lo<<1 ~ C1_hi>>31 + D_hi = C4_hi ~ C1_hi<<1 ~ C1_lo>>31 + T0_lo = D_lo ~ L05_lo + T0_hi = D_hi ~ L05_hi + T1_lo = D_lo ~ L10_lo + T1_hi = D_hi ~ L10_hi + T2_lo = D_lo ~ L15_lo + T2_hi = D_hi ~ L15_hi + T3_lo = D_lo ~ L20_lo + T3_hi = D_hi ~ L20_hi + T4_lo = D_lo ~ L25_lo + T4_hi = D_hi ~ L25_hi + L05_lo = T4_lo<<14 ~ T4_hi>>18 + L05_hi = T4_hi<<14 ~ T4_lo>>18 + L10_lo = T1_lo<<20 ~ T1_hi>>12 + L10_hi = T1_hi<<20 ~ T1_lo>>12 + L15_lo = T3_lo<<8 ~ T3_hi>>24 + L15_hi = T3_hi<<8 ~ T3_lo>>24 + L20_lo = T0_lo<<27 ~ T0_hi>>5 + L20_hi = T0_hi<<27 ~ T0_lo>>5 + L25_lo = T2_lo>>25 ~ T2_hi<<7 + L25_hi = T2_hi>>25 ~ T2_lo<<7 + D_lo = C5_lo ~ C2_lo<<1 ~ C2_hi>>31 + D_hi = C5_hi ~ C2_hi<<1 ~ C2_lo>>31 + T1_lo = D_lo ~ L06_lo + T1_hi = D_hi ~ L06_hi + T2_lo = D_lo ~ L11_lo + T2_hi = D_hi ~ L11_hi + T3_lo = D_lo ~ L16_lo + T3_hi = D_hi ~ L16_hi + T4_lo = D_lo ~ L21_lo + T4_hi = D_hi ~ L21_hi + L06_lo = T2_lo<<3 ~ T2_hi>>29 + L06_hi = T2_hi<<3 ~ T2_lo>>29 + L11_lo = T4_lo<<18 ~ T4_hi>>14 + L11_hi = T4_hi<<18 ~ T4_lo>>14 + L16_lo = T1_lo>>28 ~ T1_hi<<4 + L16_hi = T1_hi>>28 ~ T1_lo<<4 + L21_lo = T3_lo>>23 ~ T3_hi<<9 + L21_hi = T3_hi>>23 ~ T3_lo<<9 + L01_lo = D_lo ~ L01_lo + L01_hi = D_hi ~ L01_hi + L01_lo, L02_lo, L03_lo, L04_lo, L05_lo = L01_lo ~ ~L02_lo & L03_lo, L02_lo ~ ~L03_lo & L04_lo, L03_lo ~ ~L04_lo & L05_lo, L04_lo ~ ~L05_lo & L01_lo, L05_lo ~ ~L01_lo & L02_lo + L01_hi, L02_hi, L03_hi, L04_hi, L05_hi = L01_hi ~ ~L02_hi & L03_hi, L02_hi ~ ~L03_hi & L04_hi, L03_hi ~ ~L04_hi & L05_hi, L04_hi ~ ~L05_hi & L01_hi, L05_hi ~ ~L01_hi & L02_hi + L06_lo, L07_lo, L08_lo, L09_lo, L10_lo = L09_lo ~ ~L10_lo & L06_lo, L10_lo ~ ~L06_lo & L07_lo, L06_lo ~ ~L07_lo & L08_lo, L07_lo ~ ~L08_lo & L09_lo, L08_lo ~ ~L09_lo & L10_lo + L06_hi, L07_hi, L08_hi, L09_hi, L10_hi = L09_hi ~ ~L10_hi & L06_hi, L10_hi ~ ~L06_hi & L07_hi, L06_hi ~ ~L07_hi & L08_hi, L07_hi ~ ~L08_hi & L09_hi, L08_hi ~ ~L09_hi & L10_hi + L11_lo, L12_lo, L13_lo, L14_lo, L15_lo = L12_lo ~ ~L13_lo & L14_lo, L13_lo ~ ~L14_lo & L15_lo, L14_lo ~ ~L15_lo & L11_lo, L15_lo ~ ~L11_lo & L12_lo, L11_lo ~ ~L12_lo & L13_lo + L11_hi, L12_hi, L13_hi, L14_hi, L15_hi = L12_hi ~ ~L13_hi & L14_hi, L13_hi ~ ~L14_hi & L15_hi, L14_hi ~ ~L15_hi & L11_hi, L15_hi ~ ~L11_hi & L12_hi, L11_hi ~ ~L12_hi & L13_hi + L16_lo, L17_lo, L18_lo, L19_lo, L20_lo = L20_lo ~ ~L16_lo & L17_lo, L16_lo ~ ~L17_lo & L18_lo, L17_lo ~ ~L18_lo & L19_lo, L18_lo ~ ~L19_lo & L20_lo, L19_lo ~ ~L20_lo & L16_lo + L16_hi, L17_hi, L18_hi, L19_hi, L20_hi = L20_hi ~ ~L16_hi & L17_hi, L16_hi ~ ~L17_hi & L18_hi, L17_hi ~ ~L18_hi & L19_hi, L18_hi ~ ~L19_hi & L20_hi, L19_hi ~ ~L20_hi & L16_hi + L21_lo, L22_lo, L23_lo, L24_lo, L25_lo = L23_lo ~ ~L24_lo & L25_lo, L24_lo ~ ~L25_lo & L21_lo, L25_lo ~ ~L21_lo & L22_lo, L21_lo ~ ~L22_lo & L23_lo, L22_lo ~ ~L23_lo & L24_lo + L21_hi, L22_hi, L23_hi, L24_hi, L25_hi = L23_hi ~ ~L24_hi & L25_hi, L24_hi ~ ~L25_hi & L21_hi, L25_hi ~ ~L21_hi & L22_hi, L21_hi ~ ~L22_hi & L23_hi, L22_hi ~ ~L23_hi & L24_hi + L01_lo = L01_lo ~ RC_lo[round_idx] + L01_hi = L01_hi ~ RC_hi[round_idx] + end + lanes_lo[1] = L01_lo; lanes_hi[1] = L01_hi + lanes_lo[2] = L02_lo; lanes_hi[2] = L02_hi + lanes_lo[3] = L03_lo; lanes_hi[3] = L03_hi + lanes_lo[4] = L04_lo; lanes_hi[4] = L04_hi + lanes_lo[5] = L05_lo; lanes_hi[5] = L05_hi + lanes_lo[6] = L06_lo; lanes_hi[6] = L06_hi + lanes_lo[7] = L07_lo; lanes_hi[7] = L07_hi + lanes_lo[8] = L08_lo; lanes_hi[8] = L08_hi + lanes_lo[9] = L09_lo; lanes_hi[9] = L09_hi + lanes_lo[10] = L10_lo; lanes_hi[10] = L10_hi + lanes_lo[11] = L11_lo; lanes_hi[11] = L11_hi + lanes_lo[12] = L12_lo; lanes_hi[12] = L12_hi + lanes_lo[13] = L13_lo; lanes_hi[13] = L13_hi + lanes_lo[14] = L14_lo; lanes_hi[14] = L14_hi + lanes_lo[15] = L15_lo; lanes_hi[15] = L15_hi + lanes_lo[16] = L16_lo; lanes_hi[16] = L16_hi + lanes_lo[17] = L17_lo; lanes_hi[17] = L17_hi + lanes_lo[18] = L18_lo; lanes_hi[18] = L18_hi + lanes_lo[19] = L19_lo; lanes_hi[19] = L19_hi + lanes_lo[20] = L20_lo; lanes_hi[20] = L20_hi + lanes_lo[21] = L21_lo; lanes_hi[21] = L21_hi + lanes_lo[22] = L22_lo; lanes_hi[22] = L22_hi + lanes_lo[23] = L23_lo; lanes_hi[23] = L23_hi + lanes_lo[24] = L24_lo; lanes_hi[24] = L24_hi + lanes_lo[25] = L25_lo; lanes_hi[25] = L25_hi + end + end + + local function blake2s_feed_64(H, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs + 1, offs + size, 64 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> 16 | vC << 16 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 12 | v4 << 20 + v0 = v0 + v4 + W[row[2]] + vC = vC ~ v0 + vC = vC >> 8 | vC << 24 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 7 | v4 << 25 + v1 = v1 + v5 + W[row[3]] + vD = vD ~ v1 + vD = vD >> 16 | vD << 16 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 12 | v5 << 20 + v1 = v1 + v5 + W[row[4]] + vD = vD ~ v1 + vD = vD >> 8 | vD << 24 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 7 | v5 << 25 + v2 = v2 + v6 + W[row[5]] + vE = vE ~ v2 + vE = vE >> 16 | vE << 16 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 12 | v6 << 20 + v2 = v2 + v6 + W[row[6]] + vE = vE ~ v2 + vE = vE >> 8 | vE << 24 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 7 | v6 << 25 + v3 = v3 + v7 + W[row[7]] + vF = vF ~ v3 + vF = vF >> 16 | vF << 16 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 12 | v7 << 20 + v3 = v3 + v7 + W[row[8]] + vF = vF ~ v3 + vF = vF >> 8 | vF << 24 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 7 | v7 << 25 + v0 = v0 + v5 + W[row[9]] + vF = vF ~ v0 + vF = vF >> 16 | vF << 16 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 12 | v5 << 20 + v0 = v0 + v5 + W[row[10]] + vF = vF ~ v0 + vF = vF >> 8 | vF << 24 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 7 | v5 << 25 + v1 = v1 + v6 + W[row[11]] + vC = vC ~ v1 + vC = vC >> 16 | vC << 16 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 12 | v6 << 20 + v1 = v1 + v6 + W[row[12]] + vC = vC ~ v1 + vC = vC >> 8 | vC << 24 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 7 | v6 << 25 + v2 = v2 + v7 + W[row[13]] + vD = vD ~ v2 + vD = vD >> 16 | vD << 16 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 12 | v7 << 20 + v2 = v2 + v7 + W[row[14]] + vD = vD ~ v2 + vD = vD >> 8 | vD << 24 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 7 | v7 << 25 + v3 = v3 + v4 + W[row[15]] + vE = vE ~ v3 + vE = vE >> 16 | vE << 16 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 12 | v4 << 20 + v3 = v3 + v4 + W[row[16]] + vE = vE ~ v3 + vE = vE >> 8 | vE << 24 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 7 | v4 << 25 + end + h1 = h1 ~ v0 ~ v8 + h2 = h2 ~ v1 ~ v9 + h3 = h3 ~ v2 ~ vA + h4 = h4 ~ v3 ~ vB + h5 = h5 ~ v4 ~ vC + h6 = h6 ~ v5 ~ vD + h7 = h7 ~ v6 ~ vE + h8 = h8 ~ v7 ~ vF + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + local function blake2b_feed_128(H_lo, H_hi, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local W = common_W + local h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for pos = offs + 1, offs + size, 128 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16], + W[17], W[18], W[19], W[20], W[21], W[22], W[23], W[24], W[25], W[26], W[27], W[28], W[29], W[30], W[31], W[32] = + string_unpack("> 24 | v4_hi << 8, v4_hi >> 24 | v4_lo << 8 + k = row[2] * 2 + v0_lo = v0_lo % 2^32 + v4_lo % 2^32 + W[k-1] % 2^32 + v0_hi = v0_hi + v4_hi + floor(v0_lo / 2^32) + W[k] + v0_lo = 0|((v0_lo + 2^31) % 2^32 - 2^31) + vC_lo, vC_hi = vC_lo ~ v0_lo, vC_hi ~ v0_hi + vC_lo, vC_hi = vC_lo >> 16 | vC_hi << 16, vC_hi >> 16 | vC_lo << 16 + v8_lo = v8_lo % 2^32 + vC_lo % 2^32 + v8_hi = v8_hi + vC_hi + floor(v8_lo / 2^32) + v8_lo = 0|((v8_lo + 2^31) % 2^32 - 2^31) + v4_lo, v4_hi = v4_lo ~ v8_lo, v4_hi ~ v8_hi + v4_lo, v4_hi = v4_lo << 1 | v4_hi >> 31, v4_hi << 1 | v4_lo >> 31 + k = row[3] * 2 + v1_lo = v1_lo % 2^32 + v5_lo % 2^32 + W[k-1] % 2^32 + v1_hi = v1_hi + v5_hi + floor(v1_lo / 2^32) + W[k] + v1_lo = 0|((v1_lo + 2^31) % 2^32 - 2^31) + vD_lo, vD_hi = vD_hi ~ v1_hi, vD_lo ~ v1_lo + v9_lo = v9_lo % 2^32 + vD_lo % 2^32 + v9_hi = v9_hi + vD_hi + floor(v9_lo / 2^32) + v9_lo = 0|((v9_lo + 2^31) % 2^32 - 2^31) + v5_lo, v5_hi = v5_lo ~ v9_lo, v5_hi ~ v9_hi + v5_lo, v5_hi = v5_lo >> 24 | v5_hi << 8, v5_hi >> 24 | v5_lo << 8 + k = row[4] * 2 + v1_lo = v1_lo % 2^32 + v5_lo % 2^32 + W[k-1] % 2^32 + v1_hi = v1_hi + v5_hi + floor(v1_lo / 2^32) + W[k] + v1_lo = 0|((v1_lo + 2^31) % 2^32 - 2^31) + vD_lo, vD_hi = vD_lo ~ v1_lo, vD_hi ~ v1_hi + vD_lo, vD_hi = vD_lo >> 16 | vD_hi << 16, vD_hi >> 16 | vD_lo << 16 + v9_lo = v9_lo % 2^32 + vD_lo % 2^32 + v9_hi = v9_hi + vD_hi + floor(v9_lo / 2^32) + v9_lo = 0|((v9_lo + 2^31) % 2^32 - 2^31) + v5_lo, v5_hi = v5_lo ~ v9_lo, v5_hi ~ v9_hi + v5_lo, v5_hi = v5_lo << 1 | v5_hi >> 31, v5_hi << 1 | v5_lo >> 31 + k = row[5] * 2 + v2_lo = v2_lo % 2^32 + v6_lo % 2^32 + W[k-1] % 2^32 + v2_hi = v2_hi + v6_hi + floor(v2_lo / 2^32) + W[k] + v2_lo = 0|((v2_lo + 2^31) % 2^32 - 2^31) + vE_lo, vE_hi = vE_hi ~ v2_hi, vE_lo ~ v2_lo + vA_lo = vA_lo % 2^32 + vE_lo % 2^32 + vA_hi = vA_hi + vE_hi + floor(vA_lo / 2^32) + vA_lo = 0|((vA_lo + 2^31) % 2^32 - 2^31) + v6_lo, v6_hi = v6_lo ~ vA_lo, v6_hi ~ vA_hi + v6_lo, v6_hi = v6_lo >> 24 | v6_hi << 8, v6_hi >> 24 | v6_lo << 8 + k = row[6] * 2 + v2_lo = v2_lo % 2^32 + v6_lo % 2^32 + W[k-1] % 2^32 + v2_hi = v2_hi + v6_hi + floor(v2_lo / 2^32) + W[k] + v2_lo = 0|((v2_lo + 2^31) % 2^32 - 2^31) + vE_lo, vE_hi = vE_lo ~ v2_lo, vE_hi ~ v2_hi + vE_lo, vE_hi = vE_lo >> 16 | vE_hi << 16, vE_hi >> 16 | vE_lo << 16 + vA_lo = vA_lo % 2^32 + vE_lo % 2^32 + vA_hi = vA_hi + vE_hi + floor(vA_lo / 2^32) + vA_lo = 0|((vA_lo + 2^31) % 2^32 - 2^31) + v6_lo, v6_hi = v6_lo ~ vA_lo, v6_hi ~ vA_hi + v6_lo, v6_hi = v6_lo << 1 | v6_hi >> 31, v6_hi << 1 | v6_lo >> 31 + k = row[7] * 2 + v3_lo = v3_lo % 2^32 + v7_lo % 2^32 + W[k-1] % 2^32 + v3_hi = v3_hi + v7_hi + floor(v3_lo / 2^32) + W[k] + v3_lo = 0|((v3_lo + 2^31) % 2^32 - 2^31) + vF_lo, vF_hi = vF_hi ~ v3_hi, vF_lo ~ v3_lo + vB_lo = vB_lo % 2^32 + vF_lo % 2^32 + vB_hi = vB_hi + vF_hi + floor(vB_lo / 2^32) + vB_lo = 0|((vB_lo + 2^31) % 2^32 - 2^31) + v7_lo, v7_hi = v7_lo ~ vB_lo, v7_hi ~ vB_hi + v7_lo, v7_hi = v7_lo >> 24 | v7_hi << 8, v7_hi >> 24 | v7_lo << 8 + k = row[8] * 2 + v3_lo = v3_lo % 2^32 + v7_lo % 2^32 + W[k-1] % 2^32 + v3_hi = v3_hi + v7_hi + floor(v3_lo / 2^32) + W[k] + v3_lo = 0|((v3_lo + 2^31) % 2^32 - 2^31) + vF_lo, vF_hi = vF_lo ~ v3_lo, vF_hi ~ v3_hi + vF_lo, vF_hi = vF_lo >> 16 | vF_hi << 16, vF_hi >> 16 | vF_lo << 16 + vB_lo = vB_lo % 2^32 + vF_lo % 2^32 + vB_hi = vB_hi + vF_hi + floor(vB_lo / 2^32) + vB_lo = 0|((vB_lo + 2^31) % 2^32 - 2^31) + v7_lo, v7_hi = v7_lo ~ vB_lo, v7_hi ~ vB_hi + v7_lo, v7_hi = v7_lo << 1 | v7_hi >> 31, v7_hi << 1 | v7_lo >> 31 + k = row[9] * 2 + v0_lo = v0_lo % 2^32 + v5_lo % 2^32 + W[k-1] % 2^32 + v0_hi = v0_hi + v5_hi + floor(v0_lo / 2^32) + W[k] + v0_lo = 0|((v0_lo + 2^31) % 2^32 - 2^31) + vF_lo, vF_hi = vF_hi ~ v0_hi, vF_lo ~ v0_lo + vA_lo = vA_lo % 2^32 + vF_lo % 2^32 + vA_hi = vA_hi + vF_hi + floor(vA_lo / 2^32) + vA_lo = 0|((vA_lo + 2^31) % 2^32 - 2^31) + v5_lo, v5_hi = v5_lo ~ vA_lo, v5_hi ~ vA_hi + v5_lo, v5_hi = v5_lo >> 24 | v5_hi << 8, v5_hi >> 24 | v5_lo << 8 + k = row[10] * 2 + v0_lo = v0_lo % 2^32 + v5_lo % 2^32 + W[k-1] % 2^32 + v0_hi = v0_hi + v5_hi + floor(v0_lo / 2^32) + W[k] + v0_lo = 0|((v0_lo + 2^31) % 2^32 - 2^31) + vF_lo, vF_hi = vF_lo ~ v0_lo, vF_hi ~ v0_hi + vF_lo, vF_hi = vF_lo >> 16 | vF_hi << 16, vF_hi >> 16 | vF_lo << 16 + vA_lo = vA_lo % 2^32 + vF_lo % 2^32 + vA_hi = vA_hi + vF_hi + floor(vA_lo / 2^32) + vA_lo = 0|((vA_lo + 2^31) % 2^32 - 2^31) + v5_lo, v5_hi = v5_lo ~ vA_lo, v5_hi ~ vA_hi + v5_lo, v5_hi = v5_lo << 1 | v5_hi >> 31, v5_hi << 1 | v5_lo >> 31 + k = row[11] * 2 + v1_lo = v1_lo % 2^32 + v6_lo % 2^32 + W[k-1] % 2^32 + v1_hi = v1_hi + v6_hi + floor(v1_lo / 2^32) + W[k] + v1_lo = 0|((v1_lo + 2^31) % 2^32 - 2^31) + vC_lo, vC_hi = vC_hi ~ v1_hi, vC_lo ~ v1_lo + vB_lo = vB_lo % 2^32 + vC_lo % 2^32 + vB_hi = vB_hi + vC_hi + floor(vB_lo / 2^32) + vB_lo = 0|((vB_lo + 2^31) % 2^32 - 2^31) + v6_lo, v6_hi = v6_lo ~ vB_lo, v6_hi ~ vB_hi + v6_lo, v6_hi = v6_lo >> 24 | v6_hi << 8, v6_hi >> 24 | v6_lo << 8 + k = row[12] * 2 + v1_lo = v1_lo % 2^32 + v6_lo % 2^32 + W[k-1] % 2^32 + v1_hi = v1_hi + v6_hi + floor(v1_lo / 2^32) + W[k] + v1_lo = 0|((v1_lo + 2^31) % 2^32 - 2^31) + vC_lo, vC_hi = vC_lo ~ v1_lo, vC_hi ~ v1_hi + vC_lo, vC_hi = vC_lo >> 16 | vC_hi << 16, vC_hi >> 16 | vC_lo << 16 + vB_lo = vB_lo % 2^32 + vC_lo % 2^32 + vB_hi = vB_hi + vC_hi + floor(vB_lo / 2^32) + vB_lo = 0|((vB_lo + 2^31) % 2^32 - 2^31) + v6_lo, v6_hi = v6_lo ~ vB_lo, v6_hi ~ vB_hi + v6_lo, v6_hi = v6_lo << 1 | v6_hi >> 31, v6_hi << 1 | v6_lo >> 31 + k = row[13] * 2 + v2_lo = v2_lo % 2^32 + v7_lo % 2^32 + W[k-1] % 2^32 + v2_hi = v2_hi + v7_hi + floor(v2_lo / 2^32) + W[k] + v2_lo = 0|((v2_lo + 2^31) % 2^32 - 2^31) + vD_lo, vD_hi = vD_hi ~ v2_hi, vD_lo ~ v2_lo + v8_lo = v8_lo % 2^32 + vD_lo % 2^32 + v8_hi = v8_hi + vD_hi + floor(v8_lo / 2^32) + v8_lo = 0|((v8_lo + 2^31) % 2^32 - 2^31) + v7_lo, v7_hi = v7_lo ~ v8_lo, v7_hi ~ v8_hi + v7_lo, v7_hi = v7_lo >> 24 | v7_hi << 8, v7_hi >> 24 | v7_lo << 8 + k = row[14] * 2 + v2_lo = v2_lo % 2^32 + v7_lo % 2^32 + W[k-1] % 2^32 + v2_hi = v2_hi + v7_hi + floor(v2_lo / 2^32) + W[k] + v2_lo = 0|((v2_lo + 2^31) % 2^32 - 2^31) + vD_lo, vD_hi = vD_lo ~ v2_lo, vD_hi ~ v2_hi + vD_lo, vD_hi = vD_lo >> 16 | vD_hi << 16, vD_hi >> 16 | vD_lo << 16 + v8_lo = v8_lo % 2^32 + vD_lo % 2^32 + v8_hi = v8_hi + vD_hi + floor(v8_lo / 2^32) + v8_lo = 0|((v8_lo + 2^31) % 2^32 - 2^31) + v7_lo, v7_hi = v7_lo ~ v8_lo, v7_hi ~ v8_hi + v7_lo, v7_hi = v7_lo << 1 | v7_hi >> 31, v7_hi << 1 | v7_lo >> 31 + k = row[15] * 2 + v3_lo = v3_lo % 2^32 + v4_lo % 2^32 + W[k-1] % 2^32 + v3_hi = v3_hi + v4_hi + floor(v3_lo / 2^32) + W[k] + v3_lo = 0|((v3_lo + 2^31) % 2^32 - 2^31) + vE_lo, vE_hi = vE_hi ~ v3_hi, vE_lo ~ v3_lo + v9_lo = v9_lo % 2^32 + vE_lo % 2^32 + v9_hi = v9_hi + vE_hi + floor(v9_lo / 2^32) + v9_lo = 0|((v9_lo + 2^31) % 2^32 - 2^31) + v4_lo, v4_hi = v4_lo ~ v9_lo, v4_hi ~ v9_hi + v4_lo, v4_hi = v4_lo >> 24 | v4_hi << 8, v4_hi >> 24 | v4_lo << 8 + k = row[16] * 2 + v3_lo = v3_lo % 2^32 + v4_lo % 2^32 + W[k-1] % 2^32 + v3_hi = v3_hi + v4_hi + floor(v3_lo / 2^32) + W[k] + v3_lo = 0|((v3_lo + 2^31) % 2^32 - 2^31) + vE_lo, vE_hi = vE_lo ~ v3_lo, vE_hi ~ v3_hi + vE_lo, vE_hi = vE_lo >> 16 | vE_hi << 16, vE_hi >> 16 | vE_lo << 16 + v9_lo = v9_lo % 2^32 + vE_lo % 2^32 + v9_hi = v9_hi + vE_hi + floor(v9_lo / 2^32) + v9_lo = 0|((v9_lo + 2^31) % 2^32 - 2^31) + v4_lo, v4_hi = v4_lo ~ v9_lo, v4_hi ~ v9_hi + v4_lo, v4_hi = v4_lo << 1 | v4_hi >> 31, v4_hi << 1 | v4_lo >> 31 + end + h1_lo = h1_lo ~ v0_lo ~ v8_lo + h2_lo = h2_lo ~ v1_lo ~ v9_lo + h3_lo = h3_lo ~ v2_lo ~ vA_lo + h4_lo = h4_lo ~ v3_lo ~ vB_lo + h5_lo = h5_lo ~ v4_lo ~ vC_lo + h6_lo = h6_lo ~ v5_lo ~ vD_lo + h7_lo = h7_lo ~ v6_lo ~ vE_lo + h8_lo = h8_lo ~ v7_lo ~ vF_lo + h1_hi = h1_hi ~ v0_hi ~ v8_hi + h2_hi = h2_hi ~ v1_hi ~ v9_hi + h3_hi = h3_hi ~ v2_hi ~ vA_hi + h4_hi = h4_hi ~ v3_hi ~ vB_hi + h5_hi = h5_hi ~ v4_hi ~ vC_hi + h6_hi = h6_hi ~ v5_hi ~ vD_hi + h7_hi = h7_hi ~ v6_hi ~ vE_hi + h8_hi = h8_hi ~ v7_hi ~ vF_hi + end + H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + return bytes_compressed + end + + local function blake3_feed_64(str, offs, size, flags, chunk_index, H_in, H_out, wide_output, block_length) + -- offs >= 0, size >= 0, size is multiple of 64 + block_length = block_length or 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H_in[1], H_in[2], H_in[3], H_in[4], H_in[5], H_in[6], H_in[7], H_in[8] + H_out = H_out or H_in + for pos = offs + 1, offs + size, 64 do + if str then + W[1], W[2], W[3], W[4], W[5], W[6], W[7], W[8], W[9], W[10], W[11], W[12], W[13], W[14], W[15], W[16] = + string_unpack("> 16 | vC << 16 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 12 | v4 << 20 + v0 = v0 + v4 + W[perm_blake3[j + 14]] + vC = vC ~ v0 + vC = vC >> 8 | vC << 24 + v8 = v8 + vC + v4 = v4 ~ v8 + v4 = v4 >> 7 | v4 << 25 + v1 = v1 + v5 + W[perm_blake3[j + 1]] + vD = vD ~ v1 + vD = vD >> 16 | vD << 16 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 12 | v5 << 20 + v1 = v1 + v5 + W[perm_blake3[j + 2]] + vD = vD ~ v1 + vD = vD >> 8 | vD << 24 + v9 = v9 + vD + v5 = v5 ~ v9 + v5 = v5 >> 7 | v5 << 25 + v2 = v2 + v6 + W[perm_blake3[j + 16]] + vE = vE ~ v2 + vE = vE >> 16 | vE << 16 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 12 | v6 << 20 + v2 = v2 + v6 + W[perm_blake3[j + 7]] + vE = vE ~ v2 + vE = vE >> 8 | vE << 24 + vA = vA + vE + v6 = v6 ~ vA + v6 = v6 >> 7 | v6 << 25 + v3 = v3 + v7 + W[perm_blake3[j + 15]] + vF = vF ~ v3 + vF = vF >> 16 | vF << 16 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 12 | v7 << 20 + v3 = v3 + v7 + W[perm_blake3[j + 17]] + vF = vF ~ v3 + vF = vF >> 8 | vF << 24 + vB = vB + vF + v7 = v7 ~ vB + v7 = v7 >> 7 | v7 << 25 + v0 = v0 + v5 + W[perm_blake3[j + 21]] + vF = vF ~ v0 + vF = vF >> 16 | vF << 16 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 12 | v5 << 20 + v0 = v0 + v5 + W[perm_blake3[j + 5]] + vF = vF ~ v0 + vF = vF >> 8 | vF << 24 + vA = vA + vF + v5 = v5 ~ vA + v5 = v5 >> 7 | v5 << 25 + v1 = v1 + v6 + W[perm_blake3[j + 3]] + vC = vC ~ v1 + vC = vC >> 16 | vC << 16 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 12 | v6 << 20 + v1 = v1 + v6 + W[perm_blake3[j + 6]] + vC = vC ~ v1 + vC = vC >> 8 | vC << 24 + vB = vB + vC + v6 = v6 ~ vB + v6 = v6 >> 7 | v6 << 25 + v2 = v2 + v7 + W[perm_blake3[j + 4]] + vD = vD ~ v2 + vD = vD >> 16 | vD << 16 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 12 | v7 << 20 + v2 = v2 + v7 + W[perm_blake3[j + 18]] + vD = vD ~ v2 + vD = vD >> 8 | vD << 24 + v8 = v8 + vD + v7 = v7 ~ v8 + v7 = v7 >> 7 | v7 << 25 + v3 = v3 + v4 + W[perm_blake3[j + 19]] + vE = vE ~ v3 + vE = vE >> 16 | vE << 16 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 12 | v4 << 20 + v3 = v3 + v4 + W[perm_blake3[j + 20]] + vE = vE ~ v3 + vE = vE >> 8 | vE << 24 + v9 = v9 + vE + v4 = v4 ~ v9 + v4 = v4 >> 7 | v4 << 25 + end + if wide_output then + H_out[ 9] = h1 ~ v8 + H_out[10] = h2 ~ v9 + H_out[11] = h3 ~ vA + H_out[12] = h4 ~ vB + H_out[13] = h5 ~ vC + H_out[14] = h6 ~ vD + H_out[15] = h7 ~ vE + H_out[16] = h8 ~ vF + end + h1 = v0 ~ v8 + h2 = v1 ~ v9 + h3 = v2 ~ vA + h4 = v3 ~ vB + h5 = v4 ~ vC + h6 = v5 ~ vD + h7 = v6 ~ vE + h8 = v7 ~ vF + end + H_out[1], H_out[2], H_out[3], H_out[4], H_out[5], H_out[6], H_out[7], H_out[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + return XORA5, XOR_BYTE, sha256_feed_64, sha512_feed_128, md5_feed_64, sha1_feed_64, keccak_feed, blake2s_feed_64, blake2b_feed_128, blake3_feed_64 + ]=](md5_next_shift, md5_K, sha2_K_lo, sha2_K_hi, build_keccak_format, sha3_RC_lo, sha3_RC_hi, sigma, common_W, sha2_H_lo, sha2_H_hi, perm_blake3) + +end + +XOR = XOR or XORA5 + +if branch == "LIB32" or branch == "EMUL" then + + + -- implementation for Lua 5.1/5.2 (with or without bitwise library available) + + function sha256_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K = common_W, sha2_K_hi + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((a * 256 + b) * 256 + c) * 256 + d + end + for j = 17, 64 do + local a, b = W[j-15], W[j-2] + local a7, a18, b17, b19 = a / 2^7, a / 2^18, b / 2^17, b / 2^19 + W[j] = (XOR(a7 % 1 * (2^32 - 1) + a7, a18 % 1 * (2^32 - 1) + a18, (a - a % 2^3) / 2^3) + W[j-16] + W[j-7] + + XOR(b17 % 1 * (2^32 - 1) + b17, b19 % 1 * (2^32 - 1) + b19, (b - b % 2^10) / 2^10)) % 2^32 + end + local a, b, c, d, e, f, g, h = h1, h2, h3, h4, h5, h6, h7, h8 + for j = 1, 64 do + e = e % 2^32 + local e6, e11, e7 = e / 2^6, e / 2^11, e * 2^7 + local e7_lo = e7 % 2^32 + local z = AND(e, f) + AND(-1-e, g) + h + K[j] + W[j] + + XOR(e6 % 1 * (2^32 - 1) + e6, e11 % 1 * (2^32 - 1) + e11, e7_lo + (e7 - e7_lo) / 2^32) + h = g + g = f + f = e + e = z + d + d = c + c = b + b = a % 2^32 + local b2, b13, b10 = b / 2^2, b / 2^13, b * 2^10 + local b10_lo = b10 % 2^32 + a = z + AND(d, c) + AND(b, XOR(d, c)) + + XOR(b2 % 1 * (2^32 - 1) + b2, b13 % 1 * (2^32 - 1) + b13, b10_lo + (b10 - b10_lo) / 2^32) + end + h1, h2, h3, h4 = (a + h1) % 2^32, (b + h2) % 2^32, (c + h3) % 2^32, (d + h4) % 2^32 + h5, h6, h7, h8 = (e + h5) % 2^32, (f + h6) % 2^32, (g + h7) % 2^32, (h + h8) % 2^32 + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + + + function sha512_feed_128(H_lo, H_hi, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 128 + -- W1_hi, W1_lo, W2_hi, W2_lo, ... Wk_hi = W[2*k-1], Wk_lo = W[2*k] + local W, K_lo, K_hi = common_W, sha2_K_lo, sha2_K_hi + local h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for pos = offs, offs + size - 1, 128 do + for j = 1, 16*2 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((a * 256 + b) * 256 + c) * 256 + d + end + for jj = 17*2, 80*2, 2 do + local a_hi, a_lo, b_hi, b_lo = W[jj-31], W[jj-30], W[jj-5], W[jj-4] + local b_hi_6, b_hi_19, b_hi_29, b_lo_19, b_lo_29, a_hi_1, a_hi_7, a_hi_8, a_lo_1, a_lo_8 = + b_hi % 2^6, b_hi % 2^19, b_hi % 2^29, b_lo % 2^19, b_lo % 2^29, a_hi % 2^1, a_hi % 2^7, a_hi % 2^8, a_lo % 2^1, a_lo % 2^8 + local tmp1 = XOR((a_lo - a_lo_1) / 2^1 + a_hi_1 * 2^31, (a_lo - a_lo_8) / 2^8 + a_hi_8 * 2^24, (a_lo - a_lo % 2^7) / 2^7 + a_hi_7 * 2^25) % 2^32 + + XOR((b_lo - b_lo_19) / 2^19 + b_hi_19 * 2^13, b_lo_29 * 2^3 + (b_hi - b_hi_29) / 2^29, (b_lo - b_lo % 2^6) / 2^6 + b_hi_6 * 2^26) % 2^32 + + W[jj-14] + W[jj-32] + local tmp2 = tmp1 % 2^32 + W[jj-1] = (XOR((a_hi - a_hi_1) / 2^1 + a_lo_1 * 2^31, (a_hi - a_hi_8) / 2^8 + a_lo_8 * 2^24, (a_hi - a_hi_7) / 2^7) + + XOR((b_hi - b_hi_19) / 2^19 + b_lo_19 * 2^13, b_hi_29 * 2^3 + (b_lo - b_lo_29) / 2^29, (b_hi - b_hi_6) / 2^6) + + W[jj-15] + W[jj-33] + (tmp1 - tmp2) / 2^32) % 2^32 + W[jj] = tmp2 + end + local a_lo, b_lo, c_lo, d_lo, e_lo, f_lo, g_lo, h_lo = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + local a_hi, b_hi, c_hi, d_hi, e_hi, f_hi, g_hi, h_hi = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + for j = 1, 80 do + local jj = 2*j + local e_lo_9, e_lo_14, e_lo_18, e_hi_9, e_hi_14, e_hi_18 = e_lo % 2^9, e_lo % 2^14, e_lo % 2^18, e_hi % 2^9, e_hi % 2^14, e_hi % 2^18 + local tmp1 = (AND(e_lo, f_lo) + AND(-1-e_lo, g_lo)) % 2^32 + h_lo + K_lo[j] + W[jj] + + XOR((e_lo - e_lo_14) / 2^14 + e_hi_14 * 2^18, (e_lo - e_lo_18) / 2^18 + e_hi_18 * 2^14, e_lo_9 * 2^23 + (e_hi - e_hi_9) / 2^9) % 2^32 + local z_lo = tmp1 % 2^32 + local z_hi = AND(e_hi, f_hi) + AND(-1-e_hi, g_hi) + h_hi + K_hi[j] + W[jj-1] + (tmp1 - z_lo) / 2^32 + + XOR((e_hi - e_hi_14) / 2^14 + e_lo_14 * 2^18, (e_hi - e_hi_18) / 2^18 + e_lo_18 * 2^14, e_hi_9 * 2^23 + (e_lo - e_lo_9) / 2^9) + h_lo = g_lo; h_hi = g_hi + g_lo = f_lo; g_hi = f_hi + f_lo = e_lo; f_hi = e_hi + tmp1 = z_lo + d_lo + e_lo = tmp1 % 2^32 + e_hi = (z_hi + d_hi + (tmp1 - e_lo) / 2^32) % 2^32 + d_lo = c_lo; d_hi = c_hi + c_lo = b_lo; c_hi = b_hi + b_lo = a_lo; b_hi = a_hi + local b_lo_2, b_lo_7, b_lo_28, b_hi_2, b_hi_7, b_hi_28 = b_lo % 2^2, b_lo % 2^7, b_lo % 2^28, b_hi % 2^2, b_hi % 2^7, b_hi % 2^28 + tmp1 = z_lo + (AND(d_lo, c_lo) + AND(b_lo, XOR(d_lo, c_lo))) % 2^32 + + XOR((b_lo - b_lo_28) / 2^28 + b_hi_28 * 2^4, b_lo_2 * 2^30 + (b_hi - b_hi_2) / 2^2, b_lo_7 * 2^25 + (b_hi - b_hi_7) / 2^7) % 2^32 + a_lo = tmp1 % 2^32 + a_hi = (z_hi + AND(d_hi, c_hi) + AND(b_hi, XOR(d_hi, c_hi)) + (tmp1 - a_lo) / 2^32 + + XOR((b_hi - b_hi_28) / 2^28 + b_lo_28 * 2^4, b_hi_2 * 2^30 + (b_lo - b_lo_2) / 2^2, b_hi_7 * 2^25 + (b_lo - b_lo_7) / 2^7)) % 2^32 + end + a_lo = h1_lo + a_lo + h1_lo = a_lo % 2^32 + h1_hi = (h1_hi + a_hi + (a_lo - h1_lo) / 2^32) % 2^32 + a_lo = h2_lo + b_lo + h2_lo = a_lo % 2^32 + h2_hi = (h2_hi + b_hi + (a_lo - h2_lo) / 2^32) % 2^32 + a_lo = h3_lo + c_lo + h3_lo = a_lo % 2^32 + h3_hi = (h3_hi + c_hi + (a_lo - h3_lo) / 2^32) % 2^32 + a_lo = h4_lo + d_lo + h4_lo = a_lo % 2^32 + h4_hi = (h4_hi + d_hi + (a_lo - h4_lo) / 2^32) % 2^32 + a_lo = h5_lo + e_lo + h5_lo = a_lo % 2^32 + h5_hi = (h5_hi + e_hi + (a_lo - h5_lo) / 2^32) % 2^32 + a_lo = h6_lo + f_lo + h6_lo = a_lo % 2^32 + h6_hi = (h6_hi + f_hi + (a_lo - h6_lo) / 2^32) % 2^32 + a_lo = h7_lo + g_lo + h7_lo = a_lo % 2^32 + h7_hi = (h7_hi + g_hi + (a_lo - h7_lo) / 2^32) % 2^32 + a_lo = h8_lo + h_lo + h8_lo = a_lo % 2^32 + h8_hi = (h8_hi + h_hi + (a_lo - h8_lo) / 2^32) % 2^32 + end + H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + end + + + if branch == "LIB32" then + + function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K, md5_next_shift = common_W, md5_K, md5_next_shift + local h1, h2, h3, h4 = H[1], H[2], H[3], H[4] + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + local a, b, c, d = h1, h2, h3, h4 + local s = 25 + for j = 1, 16 do + local F = ROR(AND(b, c) + AND(-1-b, d) + a + K[j] + W[j], s) + b + s = md5_next_shift[s] + a = d + d = c + c = b + b = F + end + s = 27 + for j = 17, 32 do + local F = ROR(AND(d, b) + AND(-1-d, c) + a + K[j] + W[(5*j-4) % 16 + 1], s) + b + s = md5_next_shift[s] + a = d + d = c + c = b + b = F + end + s = 28 + for j = 33, 48 do + local F = ROR(XOR(XOR(b, c), d) + a + K[j] + W[(3*j+2) % 16 + 1], s) + b + s = md5_next_shift[s] + a = d + d = c + c = b + b = F + end + s = 26 + for j = 49, 64 do + local F = ROR(XOR(c, OR(b, -1-d)) + a + K[j] + W[(j*7-7) % 16 + 1], s) + b + s = md5_next_shift[s] + a = d + d = c + c = b + b = F + end + h1 = (a + h1) % 2^32 + h2 = (b + h2) % 2^32 + h3 = (c + h3) % 2^32 + h4 = (d + h4) % 2^32 + end + H[1], H[2], H[3], H[4] = h1, h2, h3, h4 + end + + elseif branch == "EMUL" then + + function md5_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W, K, md5_next_shift = common_W, md5_K, md5_next_shift + local h1, h2, h3, h4 = H[1], H[2], H[3], H[4] + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + local a, b, c, d = h1, h2, h3, h4 + local s = 25 + for j = 1, 16 do + local z = (AND(b, c) + AND(-1-b, d) + a + K[j] + W[j]) % 2^32 / 2^s + local y = z % 1 + s = md5_next_shift[s] + a = d + d = c + c = b + b = y * 2^32 + (z - y) + b + end + s = 27 + for j = 17, 32 do + local z = (AND(d, b) + AND(-1-d, c) + a + K[j] + W[(5*j-4) % 16 + 1]) % 2^32 / 2^s + local y = z % 1 + s = md5_next_shift[s] + a = d + d = c + c = b + b = y * 2^32 + (z - y) + b + end + s = 28 + for j = 33, 48 do + local z = (XOR(XOR(b, c), d) + a + K[j] + W[(3*j+2) % 16 + 1]) % 2^32 / 2^s + local y = z % 1 + s = md5_next_shift[s] + a = d + d = c + c = b + b = y * 2^32 + (z - y) + b + end + s = 26 + for j = 49, 64 do + local z = (XOR(c, OR(b, -1-d)) + a + K[j] + W[(j*7-7) % 16 + 1]) % 2^32 / 2^s + local y = z % 1 + s = md5_next_shift[s] + a = d + d = c + c = b + b = y * 2^32 + (z - y) + b + end + h1 = (a + h1) % 2^32 + h2 = (b + h2) % 2^32 + h3 = (c + h3) % 2^32 + h4 = (d + h4) % 2^32 + end + H[1], H[2], H[3], H[4] = h1, h2, h3, h4 + end + + end + + + function sha1_feed_64(H, str, offs, size) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5 = H[1], H[2], H[3], H[4], H[5] + for pos = offs, offs + size - 1, 64 do + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((a * 256 + b) * 256 + c) * 256 + d + end + for j = 17, 80 do + local a = XOR(W[j-3], W[j-8], W[j-14], W[j-16]) % 2^32 * 2 + local b = a % 2^32 + W[j] = b + (a - b) / 2^32 + end + local a, b, c, d, e = h1, h2, h3, h4, h5 + for j = 1, 20 do + local a5 = a * 2^5 + local z = a5 % 2^32 + z = z + (a5 - z) / 2^32 + AND(b, c) + AND(-1-b, d) + 0x5A827999 + W[j] + e -- constant = floor(2^30 * sqrt(2)) + e = d + d = c + c = b / 2^2 + c = c % 1 * (2^32 - 1) + c + b = a + a = z % 2^32 + end + for j = 21, 40 do + local a5 = a * 2^5 + local z = a5 % 2^32 + z = z + (a5 - z) / 2^32 + XOR(b, c, d) + 0x6ED9EBA1 + W[j] + e -- 2^30 * sqrt(3) + e = d + d = c + c = b / 2^2 + c = c % 1 * (2^32 - 1) + c + b = a + a = z % 2^32 + end + for j = 41, 60 do + local a5 = a * 2^5 + local z = a5 % 2^32 + z = z + (a5 - z) / 2^32 + AND(d, c) + AND(b, XOR(d, c)) + 0x8F1BBCDC + W[j] + e -- 2^30 * sqrt(5) + e = d + d = c + c = b / 2^2 + c = c % 1 * (2^32 - 1) + c + b = a + a = z % 2^32 + end + for j = 61, 80 do + local a5 = a * 2^5 + local z = a5 % 2^32 + z = z + (a5 - z) / 2^32 + XOR(b, c, d) + 0xCA62C1D6 + W[j] + e -- 2^30 * sqrt(10) + e = d + d = c + c = b / 2^2 + c = c % 1 * (2^32 - 1) + c + b = a + a = z % 2^32 + end + h1 = (a + h1) % 2^32 + h2 = (b + h2) % 2^32 + h3 = (c + h3) % 2^32 + h4 = (d + h4) % 2^32 + h5 = (e + h5) % 2^32 + end + H[1], H[2], H[3], H[4], H[5] = h1, h2, h3, h4, h5 + end + + + function keccak_feed(lanes_lo, lanes_hi, str, offs, size, block_size_in_bytes) + -- This is an example of a Lua function having 79 local variables :-) + -- offs >= 0, size >= 0, size is multiple of block_size_in_bytes, block_size_in_bytes is positive multiple of 8 + local RC_lo, RC_hi = sha3_RC_lo, sha3_RC_hi + local qwords_qty = block_size_in_bytes / 8 + for pos = offs, offs + size - 1, block_size_in_bytes do + for j = 1, qwords_qty do + local a, b, c, d = byte(str, pos + 1, pos + 4) + lanes_lo[j] = XOR(lanes_lo[j], ((d * 256 + c) * 256 + b) * 256 + a) + pos = pos + 8 + a, b, c, d = byte(str, pos - 3, pos) + lanes_hi[j] = XOR(lanes_hi[j], ((d * 256 + c) * 256 + b) * 256 + a) + end + local L01_lo, L01_hi, L02_lo, L02_hi, L03_lo, L03_hi, L04_lo, L04_hi, L05_lo, L05_hi, L06_lo, L06_hi, L07_lo, L07_hi, L08_lo, L08_hi, + L09_lo, L09_hi, L10_lo, L10_hi, L11_lo, L11_hi, L12_lo, L12_hi, L13_lo, L13_hi, L14_lo, L14_hi, L15_lo, L15_hi, L16_lo, L16_hi, + L17_lo, L17_hi, L18_lo, L18_hi, L19_lo, L19_hi, L20_lo, L20_hi, L21_lo, L21_hi, L22_lo, L22_hi, L23_lo, L23_hi, L24_lo, L24_hi, L25_lo, L25_hi = + lanes_lo[1], lanes_hi[1], lanes_lo[2], lanes_hi[2], lanes_lo[3], lanes_hi[3], lanes_lo[4], lanes_hi[4], lanes_lo[5], lanes_hi[5], + lanes_lo[6], lanes_hi[6], lanes_lo[7], lanes_hi[7], lanes_lo[8], lanes_hi[8], lanes_lo[9], lanes_hi[9], lanes_lo[10], lanes_hi[10], + lanes_lo[11], lanes_hi[11], lanes_lo[12], lanes_hi[12], lanes_lo[13], lanes_hi[13], lanes_lo[14], lanes_hi[14], lanes_lo[15], lanes_hi[15], + lanes_lo[16], lanes_hi[16], lanes_lo[17], lanes_hi[17], lanes_lo[18], lanes_hi[18], lanes_lo[19], lanes_hi[19], lanes_lo[20], lanes_hi[20], + lanes_lo[21], lanes_hi[21], lanes_lo[22], lanes_hi[22], lanes_lo[23], lanes_hi[23], lanes_lo[24], lanes_hi[24], lanes_lo[25], lanes_hi[25] + for round_idx = 1, 24 do + local C1_lo = XOR(L01_lo, L06_lo, L11_lo, L16_lo, L21_lo) + local C1_hi = XOR(L01_hi, L06_hi, L11_hi, L16_hi, L21_hi) + local C2_lo = XOR(L02_lo, L07_lo, L12_lo, L17_lo, L22_lo) + local C2_hi = XOR(L02_hi, L07_hi, L12_hi, L17_hi, L22_hi) + local C3_lo = XOR(L03_lo, L08_lo, L13_lo, L18_lo, L23_lo) + local C3_hi = XOR(L03_hi, L08_hi, L13_hi, L18_hi, L23_hi) + local C4_lo = XOR(L04_lo, L09_lo, L14_lo, L19_lo, L24_lo) + local C4_hi = XOR(L04_hi, L09_hi, L14_hi, L19_hi, L24_hi) + local C5_lo = XOR(L05_lo, L10_lo, L15_lo, L20_lo, L25_lo) + local C5_hi = XOR(L05_hi, L10_hi, L15_hi, L20_hi, L25_hi) + local D_lo = XOR(C1_lo, C3_lo * 2 + (C3_hi % 2^32 - C3_hi % 2^31) / 2^31) + local D_hi = XOR(C1_hi, C3_hi * 2 + (C3_lo % 2^32 - C3_lo % 2^31) / 2^31) + local T0_lo = XOR(D_lo, L02_lo) + local T0_hi = XOR(D_hi, L02_hi) + local T1_lo = XOR(D_lo, L07_lo) + local T1_hi = XOR(D_hi, L07_hi) + local T2_lo = XOR(D_lo, L12_lo) + local T2_hi = XOR(D_hi, L12_hi) + local T3_lo = XOR(D_lo, L17_lo) + local T3_hi = XOR(D_hi, L17_hi) + local T4_lo = XOR(D_lo, L22_lo) + local T4_hi = XOR(D_hi, L22_hi) + L02_lo = (T1_lo % 2^32 - T1_lo % 2^20) / 2^20 + T1_hi * 2^12 + L02_hi = (T1_hi % 2^32 - T1_hi % 2^20) / 2^20 + T1_lo * 2^12 + L07_lo = (T3_lo % 2^32 - T3_lo % 2^19) / 2^19 + T3_hi * 2^13 + L07_hi = (T3_hi % 2^32 - T3_hi % 2^19) / 2^19 + T3_lo * 2^13 + L12_lo = T0_lo * 2 + (T0_hi % 2^32 - T0_hi % 2^31) / 2^31 + L12_hi = T0_hi * 2 + (T0_lo % 2^32 - T0_lo % 2^31) / 2^31 + L17_lo = T2_lo * 2^10 + (T2_hi % 2^32 - T2_hi % 2^22) / 2^22 + L17_hi = T2_hi * 2^10 + (T2_lo % 2^32 - T2_lo % 2^22) / 2^22 + L22_lo = T4_lo * 2^2 + (T4_hi % 2^32 - T4_hi % 2^30) / 2^30 + L22_hi = T4_hi * 2^2 + (T4_lo % 2^32 - T4_lo % 2^30) / 2^30 + D_lo = XOR(C2_lo, C4_lo * 2 + (C4_hi % 2^32 - C4_hi % 2^31) / 2^31) + D_hi = XOR(C2_hi, C4_hi * 2 + (C4_lo % 2^32 - C4_lo % 2^31) / 2^31) + T0_lo = XOR(D_lo, L03_lo) + T0_hi = XOR(D_hi, L03_hi) + T1_lo = XOR(D_lo, L08_lo) + T1_hi = XOR(D_hi, L08_hi) + T2_lo = XOR(D_lo, L13_lo) + T2_hi = XOR(D_hi, L13_hi) + T3_lo = XOR(D_lo, L18_lo) + T3_hi = XOR(D_hi, L18_hi) + T4_lo = XOR(D_lo, L23_lo) + T4_hi = XOR(D_hi, L23_hi) + L03_lo = (T2_lo % 2^32 - T2_lo % 2^21) / 2^21 + T2_hi * 2^11 + L03_hi = (T2_hi % 2^32 - T2_hi % 2^21) / 2^21 + T2_lo * 2^11 + L08_lo = (T4_lo % 2^32 - T4_lo % 2^3) / 2^3 + T4_hi * 2^29 % 2^32 + L08_hi = (T4_hi % 2^32 - T4_hi % 2^3) / 2^3 + T4_lo * 2^29 % 2^32 + L13_lo = T1_lo * 2^6 + (T1_hi % 2^32 - T1_hi % 2^26) / 2^26 + L13_hi = T1_hi * 2^6 + (T1_lo % 2^32 - T1_lo % 2^26) / 2^26 + L18_lo = T3_lo * 2^15 + (T3_hi % 2^32 - T3_hi % 2^17) / 2^17 + L18_hi = T3_hi * 2^15 + (T3_lo % 2^32 - T3_lo % 2^17) / 2^17 + L23_lo = (T0_lo % 2^32 - T0_lo % 2^2) / 2^2 + T0_hi * 2^30 % 2^32 + L23_hi = (T0_hi % 2^32 - T0_hi % 2^2) / 2^2 + T0_lo * 2^30 % 2^32 + D_lo = XOR(C3_lo, C5_lo * 2 + (C5_hi % 2^32 - C5_hi % 2^31) / 2^31) + D_hi = XOR(C3_hi, C5_hi * 2 + (C5_lo % 2^32 - C5_lo % 2^31) / 2^31) + T0_lo = XOR(D_lo, L04_lo) + T0_hi = XOR(D_hi, L04_hi) + T1_lo = XOR(D_lo, L09_lo) + T1_hi = XOR(D_hi, L09_hi) + T2_lo = XOR(D_lo, L14_lo) + T2_hi = XOR(D_hi, L14_hi) + T3_lo = XOR(D_lo, L19_lo) + T3_hi = XOR(D_hi, L19_hi) + T4_lo = XOR(D_lo, L24_lo) + T4_hi = XOR(D_hi, L24_hi) + L04_lo = T3_lo * 2^21 % 2^32 + (T3_hi % 2^32 - T3_hi % 2^11) / 2^11 + L04_hi = T3_hi * 2^21 % 2^32 + (T3_lo % 2^32 - T3_lo % 2^11) / 2^11 + L09_lo = T0_lo * 2^28 % 2^32 + (T0_hi % 2^32 - T0_hi % 2^4) / 2^4 + L09_hi = T0_hi * 2^28 % 2^32 + (T0_lo % 2^32 - T0_lo % 2^4) / 2^4 + L14_lo = T2_lo * 2^25 % 2^32 + (T2_hi % 2^32 - T2_hi % 2^7) / 2^7 + L14_hi = T2_hi * 2^25 % 2^32 + (T2_lo % 2^32 - T2_lo % 2^7) / 2^7 + L19_lo = (T4_lo % 2^32 - T4_lo % 2^8) / 2^8 + T4_hi * 2^24 % 2^32 + L19_hi = (T4_hi % 2^32 - T4_hi % 2^8) / 2^8 + T4_lo * 2^24 % 2^32 + L24_lo = (T1_lo % 2^32 - T1_lo % 2^9) / 2^9 + T1_hi * 2^23 % 2^32 + L24_hi = (T1_hi % 2^32 - T1_hi % 2^9) / 2^9 + T1_lo * 2^23 % 2^32 + D_lo = XOR(C4_lo, C1_lo * 2 + (C1_hi % 2^32 - C1_hi % 2^31) / 2^31) + D_hi = XOR(C4_hi, C1_hi * 2 + (C1_lo % 2^32 - C1_lo % 2^31) / 2^31) + T0_lo = XOR(D_lo, L05_lo) + T0_hi = XOR(D_hi, L05_hi) + T1_lo = XOR(D_lo, L10_lo) + T1_hi = XOR(D_hi, L10_hi) + T2_lo = XOR(D_lo, L15_lo) + T2_hi = XOR(D_hi, L15_hi) + T3_lo = XOR(D_lo, L20_lo) + T3_hi = XOR(D_hi, L20_hi) + T4_lo = XOR(D_lo, L25_lo) + T4_hi = XOR(D_hi, L25_hi) + L05_lo = T4_lo * 2^14 + (T4_hi % 2^32 - T4_hi % 2^18) / 2^18 + L05_hi = T4_hi * 2^14 + (T4_lo % 2^32 - T4_lo % 2^18) / 2^18 + L10_lo = T1_lo * 2^20 % 2^32 + (T1_hi % 2^32 - T1_hi % 2^12) / 2^12 + L10_hi = T1_hi * 2^20 % 2^32 + (T1_lo % 2^32 - T1_lo % 2^12) / 2^12 + L15_lo = T3_lo * 2^8 + (T3_hi % 2^32 - T3_hi % 2^24) / 2^24 + L15_hi = T3_hi * 2^8 + (T3_lo % 2^32 - T3_lo % 2^24) / 2^24 + L20_lo = T0_lo * 2^27 % 2^32 + (T0_hi % 2^32 - T0_hi % 2^5) / 2^5 + L20_hi = T0_hi * 2^27 % 2^32 + (T0_lo % 2^32 - T0_lo % 2^5) / 2^5 + L25_lo = (T2_lo % 2^32 - T2_lo % 2^25) / 2^25 + T2_hi * 2^7 + L25_hi = (T2_hi % 2^32 - T2_hi % 2^25) / 2^25 + T2_lo * 2^7 + D_lo = XOR(C5_lo, C2_lo * 2 + (C2_hi % 2^32 - C2_hi % 2^31) / 2^31) + D_hi = XOR(C5_hi, C2_hi * 2 + (C2_lo % 2^32 - C2_lo % 2^31) / 2^31) + T1_lo = XOR(D_lo, L06_lo) + T1_hi = XOR(D_hi, L06_hi) + T2_lo = XOR(D_lo, L11_lo) + T2_hi = XOR(D_hi, L11_hi) + T3_lo = XOR(D_lo, L16_lo) + T3_hi = XOR(D_hi, L16_hi) + T4_lo = XOR(D_lo, L21_lo) + T4_hi = XOR(D_hi, L21_hi) + L06_lo = T2_lo * 2^3 + (T2_hi % 2^32 - T2_hi % 2^29) / 2^29 + L06_hi = T2_hi * 2^3 + (T2_lo % 2^32 - T2_lo % 2^29) / 2^29 + L11_lo = T4_lo * 2^18 + (T4_hi % 2^32 - T4_hi % 2^14) / 2^14 + L11_hi = T4_hi * 2^18 + (T4_lo % 2^32 - T4_lo % 2^14) / 2^14 + L16_lo = (T1_lo % 2^32 - T1_lo % 2^28) / 2^28 + T1_hi * 2^4 + L16_hi = (T1_hi % 2^32 - T1_hi % 2^28) / 2^28 + T1_lo * 2^4 + L21_lo = (T3_lo % 2^32 - T3_lo % 2^23) / 2^23 + T3_hi * 2^9 + L21_hi = (T3_hi % 2^32 - T3_hi % 2^23) / 2^23 + T3_lo * 2^9 + L01_lo = XOR(D_lo, L01_lo) + L01_hi = XOR(D_hi, L01_hi) + L01_lo, L02_lo, L03_lo, L04_lo, L05_lo = XOR(L01_lo, AND(-1-L02_lo, L03_lo)), XOR(L02_lo, AND(-1-L03_lo, L04_lo)), XOR(L03_lo, AND(-1-L04_lo, L05_lo)), XOR(L04_lo, AND(-1-L05_lo, L01_lo)), XOR(L05_lo, AND(-1-L01_lo, L02_lo)) + L01_hi, L02_hi, L03_hi, L04_hi, L05_hi = XOR(L01_hi, AND(-1-L02_hi, L03_hi)), XOR(L02_hi, AND(-1-L03_hi, L04_hi)), XOR(L03_hi, AND(-1-L04_hi, L05_hi)), XOR(L04_hi, AND(-1-L05_hi, L01_hi)), XOR(L05_hi, AND(-1-L01_hi, L02_hi)) + L06_lo, L07_lo, L08_lo, L09_lo, L10_lo = XOR(L09_lo, AND(-1-L10_lo, L06_lo)), XOR(L10_lo, AND(-1-L06_lo, L07_lo)), XOR(L06_lo, AND(-1-L07_lo, L08_lo)), XOR(L07_lo, AND(-1-L08_lo, L09_lo)), XOR(L08_lo, AND(-1-L09_lo, L10_lo)) + L06_hi, L07_hi, L08_hi, L09_hi, L10_hi = XOR(L09_hi, AND(-1-L10_hi, L06_hi)), XOR(L10_hi, AND(-1-L06_hi, L07_hi)), XOR(L06_hi, AND(-1-L07_hi, L08_hi)), XOR(L07_hi, AND(-1-L08_hi, L09_hi)), XOR(L08_hi, AND(-1-L09_hi, L10_hi)) + L11_lo, L12_lo, L13_lo, L14_lo, L15_lo = XOR(L12_lo, AND(-1-L13_lo, L14_lo)), XOR(L13_lo, AND(-1-L14_lo, L15_lo)), XOR(L14_lo, AND(-1-L15_lo, L11_lo)), XOR(L15_lo, AND(-1-L11_lo, L12_lo)), XOR(L11_lo, AND(-1-L12_lo, L13_lo)) + L11_hi, L12_hi, L13_hi, L14_hi, L15_hi = XOR(L12_hi, AND(-1-L13_hi, L14_hi)), XOR(L13_hi, AND(-1-L14_hi, L15_hi)), XOR(L14_hi, AND(-1-L15_hi, L11_hi)), XOR(L15_hi, AND(-1-L11_hi, L12_hi)), XOR(L11_hi, AND(-1-L12_hi, L13_hi)) + L16_lo, L17_lo, L18_lo, L19_lo, L20_lo = XOR(L20_lo, AND(-1-L16_lo, L17_lo)), XOR(L16_lo, AND(-1-L17_lo, L18_lo)), XOR(L17_lo, AND(-1-L18_lo, L19_lo)), XOR(L18_lo, AND(-1-L19_lo, L20_lo)), XOR(L19_lo, AND(-1-L20_lo, L16_lo)) + L16_hi, L17_hi, L18_hi, L19_hi, L20_hi = XOR(L20_hi, AND(-1-L16_hi, L17_hi)), XOR(L16_hi, AND(-1-L17_hi, L18_hi)), XOR(L17_hi, AND(-1-L18_hi, L19_hi)), XOR(L18_hi, AND(-1-L19_hi, L20_hi)), XOR(L19_hi, AND(-1-L20_hi, L16_hi)) + L21_lo, L22_lo, L23_lo, L24_lo, L25_lo = XOR(L23_lo, AND(-1-L24_lo, L25_lo)), XOR(L24_lo, AND(-1-L25_lo, L21_lo)), XOR(L25_lo, AND(-1-L21_lo, L22_lo)), XOR(L21_lo, AND(-1-L22_lo, L23_lo)), XOR(L22_lo, AND(-1-L23_lo, L24_lo)) + L21_hi, L22_hi, L23_hi, L24_hi, L25_hi = XOR(L23_hi, AND(-1-L24_hi, L25_hi)), XOR(L24_hi, AND(-1-L25_hi, L21_hi)), XOR(L25_hi, AND(-1-L21_hi, L22_hi)), XOR(L21_hi, AND(-1-L22_hi, L23_hi)), XOR(L22_hi, AND(-1-L23_hi, L24_hi)) + L01_lo = XOR(L01_lo, RC_lo[round_idx]) + L01_hi = L01_hi + RC_hi[round_idx] -- RC_hi[] is either 0 or 0x80000000, so we could use fast addition instead of slow XOR + end + lanes_lo[1] = L01_lo; lanes_hi[1] = L01_hi + lanes_lo[2] = L02_lo; lanes_hi[2] = L02_hi + lanes_lo[3] = L03_lo; lanes_hi[3] = L03_hi + lanes_lo[4] = L04_lo; lanes_hi[4] = L04_hi + lanes_lo[5] = L05_lo; lanes_hi[5] = L05_hi + lanes_lo[6] = L06_lo; lanes_hi[6] = L06_hi + lanes_lo[7] = L07_lo; lanes_hi[7] = L07_hi + lanes_lo[8] = L08_lo; lanes_hi[8] = L08_hi + lanes_lo[9] = L09_lo; lanes_hi[9] = L09_hi + lanes_lo[10] = L10_lo; lanes_hi[10] = L10_hi + lanes_lo[11] = L11_lo; lanes_hi[11] = L11_hi + lanes_lo[12] = L12_lo; lanes_hi[12] = L12_hi + lanes_lo[13] = L13_lo; lanes_hi[13] = L13_hi + lanes_lo[14] = L14_lo; lanes_hi[14] = L14_hi + lanes_lo[15] = L15_lo; lanes_hi[15] = L15_hi + lanes_lo[16] = L16_lo; lanes_hi[16] = L16_hi + lanes_lo[17] = L17_lo; lanes_hi[17] = L17_hi + lanes_lo[18] = L18_lo; lanes_hi[18] = L18_hi + lanes_lo[19] = L19_lo; lanes_hi[19] = L19_hi + lanes_lo[20] = L20_lo; lanes_hi[20] = L20_hi + lanes_lo[21] = L21_lo; lanes_hi[21] = L21_hi + lanes_lo[22] = L22_lo; lanes_hi[22] = L22_hi + lanes_lo[23] = L23_lo; lanes_hi[23] = L23_hi + lanes_lo[24] = L24_lo; lanes_hi[24] = L24_hi + lanes_lo[25] = L25_lo; lanes_hi[25] = L25_hi + end + end + + + function blake2s_feed_64(H, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] + for pos = offs, offs + size - 1, 64 do + if str then + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + end + local v0, v1, v2, v3, v4, v5, v6, v7 = h1, h2, h3, h4, h5, h6, h7, h8 + local v8, v9, vA, vB, vC, vD, vE, vF = sha2_H_hi[1], sha2_H_hi[2], sha2_H_hi[3], sha2_H_hi[4], sha2_H_hi[5], sha2_H_hi[6], sha2_H_hi[7], sha2_H_hi[8] + bytes_compressed = bytes_compressed + (last_block_size or 64) + local t0 = bytes_compressed % 2^32 + local t1 = (bytes_compressed - t0) / 2^32 + vC = XOR(vC, t0) -- t0 = low_4_bytes(bytes_compressed) + vD = XOR(vD, t1) -- t1 = high_4_bytes(bytes_compressed) + if last_block_size then -- flag f0 + vE = -1 - vE + end + if is_last_node then -- flag f1 + vF = -1 - vF + end + for j = 1, 10 do + local row = sigma[j] + v0 = v0 + v4 + W[row[1]] + vC = XOR(vC, v0) % 2^32 / 2^16 + vC = vC % 1 * (2^32 - 1) + vC + v8 = v8 + vC + v4 = XOR(v4, v8) % 2^32 / 2^12 + v4 = v4 % 1 * (2^32 - 1) + v4 + v0 = v0 + v4 + W[row[2]] + vC = XOR(vC, v0) % 2^32 / 2^8 + vC = vC % 1 * (2^32 - 1) + vC + v8 = v8 + vC + v4 = XOR(v4, v8) % 2^32 / 2^7 + v4 = v4 % 1 * (2^32 - 1) + v4 + v1 = v1 + v5 + W[row[3]] + vD = XOR(vD, v1) % 2^32 / 2^16 + vD = vD % 1 * (2^32 - 1) + vD + v9 = v9 + vD + v5 = XOR(v5, v9) % 2^32 / 2^12 + v5 = v5 % 1 * (2^32 - 1) + v5 + v1 = v1 + v5 + W[row[4]] + vD = XOR(vD, v1) % 2^32 / 2^8 + vD = vD % 1 * (2^32 - 1) + vD + v9 = v9 + vD + v5 = XOR(v5, v9) % 2^32 / 2^7 + v5 = v5 % 1 * (2^32 - 1) + v5 + v2 = v2 + v6 + W[row[5]] + vE = XOR(vE, v2) % 2^32 / 2^16 + vE = vE % 1 * (2^32 - 1) + vE + vA = vA + vE + v6 = XOR(v6, vA) % 2^32 / 2^12 + v6 = v6 % 1 * (2^32 - 1) + v6 + v2 = v2 + v6 + W[row[6]] + vE = XOR(vE, v2) % 2^32 / 2^8 + vE = vE % 1 * (2^32 - 1) + vE + vA = vA + vE + v6 = XOR(v6, vA) % 2^32 / 2^7 + v6 = v6 % 1 * (2^32 - 1) + v6 + v3 = v3 + v7 + W[row[7]] + vF = XOR(vF, v3) % 2^32 / 2^16 + vF = vF % 1 * (2^32 - 1) + vF + vB = vB + vF + v7 = XOR(v7, vB) % 2^32 / 2^12 + v7 = v7 % 1 * (2^32 - 1) + v7 + v3 = v3 + v7 + W[row[8]] + vF = XOR(vF, v3) % 2^32 / 2^8 + vF = vF % 1 * (2^32 - 1) + vF + vB = vB + vF + v7 = XOR(v7, vB) % 2^32 / 2^7 + v7 = v7 % 1 * (2^32 - 1) + v7 + v0 = v0 + v5 + W[row[9]] + vF = XOR(vF, v0) % 2^32 / 2^16 + vF = vF % 1 * (2^32 - 1) + vF + vA = vA + vF + v5 = XOR(v5, vA) % 2^32 / 2^12 + v5 = v5 % 1 * (2^32 - 1) + v5 + v0 = v0 + v5 + W[row[10]] + vF = XOR(vF, v0) % 2^32 / 2^8 + vF = vF % 1 * (2^32 - 1) + vF + vA = vA + vF + v5 = XOR(v5, vA) % 2^32 / 2^7 + v5 = v5 % 1 * (2^32 - 1) + v5 + v1 = v1 + v6 + W[row[11]] + vC = XOR(vC, v1) % 2^32 / 2^16 + vC = vC % 1 * (2^32 - 1) + vC + vB = vB + vC + v6 = XOR(v6, vB) % 2^32 / 2^12 + v6 = v6 % 1 * (2^32 - 1) + v6 + v1 = v1 + v6 + W[row[12]] + vC = XOR(vC, v1) % 2^32 / 2^8 + vC = vC % 1 * (2^32 - 1) + vC + vB = vB + vC + v6 = XOR(v6, vB) % 2^32 / 2^7 + v6 = v6 % 1 * (2^32 - 1) + v6 + v2 = v2 + v7 + W[row[13]] + vD = XOR(vD, v2) % 2^32 / 2^16 + vD = vD % 1 * (2^32 - 1) + vD + v8 = v8 + vD + v7 = XOR(v7, v8) % 2^32 / 2^12 + v7 = v7 % 1 * (2^32 - 1) + v7 + v2 = v2 + v7 + W[row[14]] + vD = XOR(vD, v2) % 2^32 / 2^8 + vD = vD % 1 * (2^32 - 1) + vD + v8 = v8 + vD + v7 = XOR(v7, v8) % 2^32 / 2^7 + v7 = v7 % 1 * (2^32 - 1) + v7 + v3 = v3 + v4 + W[row[15]] + vE = XOR(vE, v3) % 2^32 / 2^16 + vE = vE % 1 * (2^32 - 1) + vE + v9 = v9 + vE + v4 = XOR(v4, v9) % 2^32 / 2^12 + v4 = v4 % 1 * (2^32 - 1) + v4 + v3 = v3 + v4 + W[row[16]] + vE = XOR(vE, v3) % 2^32 / 2^8 + vE = vE % 1 * (2^32 - 1) + vE + v9 = v9 + vE + v4 = XOR(v4, v9) % 2^32 / 2^7 + v4 = v4 % 1 * (2^32 - 1) + v4 + end + h1 = XOR(h1, v0, v8) + h2 = XOR(h2, v1, v9) + h3 = XOR(h3, v2, vA) + h4 = XOR(h4, v3, vB) + h5 = XOR(h5, v4, vC) + h6 = XOR(h6, v5, vD) + h7 = XOR(h7, v6, vE) + h8 = XOR(h8, v7, vF) + end + H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8] = h1, h2, h3, h4, h5, h6, h7, h8 + return bytes_compressed + end + + + function blake2b_feed_128(H_lo, H_hi, str, offs, size, bytes_compressed, last_block_size, is_last_node) + -- offs >= 0, size >= 0, size is multiple of 128 + local W = common_W + local h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo = H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] + local h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi = H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] + for pos = offs, offs + size - 1, 128 do + if str then + for j = 1, 32 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + end + local v0_lo, v1_lo, v2_lo, v3_lo, v4_lo, v5_lo, v6_lo, v7_lo = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + local v0_hi, v1_hi, v2_hi, v3_hi, v4_hi, v5_hi, v6_hi, v7_hi = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + local v8_lo, v9_lo, vA_lo, vB_lo, vC_lo, vD_lo, vE_lo, vF_lo = sha2_H_lo[1], sha2_H_lo[2], sha2_H_lo[3], sha2_H_lo[4], sha2_H_lo[5], sha2_H_lo[6], sha2_H_lo[7], sha2_H_lo[8] + local v8_hi, v9_hi, vA_hi, vB_hi, vC_hi, vD_hi, vE_hi, vF_hi = sha2_H_hi[1], sha2_H_hi[2], sha2_H_hi[3], sha2_H_hi[4], sha2_H_hi[5], sha2_H_hi[6], sha2_H_hi[7], sha2_H_hi[8] + bytes_compressed = bytes_compressed + (last_block_size or 128) + local t0_lo = bytes_compressed % 2^32 + local t0_hi = (bytes_compressed - t0_lo) / 2^32 + vC_lo = XOR(vC_lo, t0_lo) -- t0 = low_8_bytes(bytes_compressed) + vC_hi = XOR(vC_hi, t0_hi) + -- t1 = high_8_bytes(bytes_compressed) = 0, message length is always below 2^53 bytes + if last_block_size then -- flag f0 + vE_lo = -1 - vE_lo + vE_hi = -1 - vE_hi + end + if is_last_node then -- flag f1 + vF_lo = -1 - vF_lo + vF_hi = -1 - vF_hi + end + for j = 1, 12 do + local row = sigma[j] + local k = row[1] * 2 + local z = v0_lo % 2^32 + v4_lo % 2^32 + W[k-1] + v0_lo = z % 2^32 + v0_hi = v0_hi + v4_hi + (z - v0_lo) / 2^32 + W[k] + vC_lo, vC_hi = XOR(vC_hi, v0_hi), XOR(vC_lo, v0_lo) + z = v8_lo % 2^32 + vC_lo % 2^32 + v8_lo = z % 2^32 + v8_hi = v8_hi + vC_hi + (z - v8_lo) / 2^32 + v4_lo, v4_hi = XOR(v4_lo, v8_lo), XOR(v4_hi, v8_hi) + local z_lo, z_hi = v4_lo % 2^24, v4_hi % 2^24 + v4_lo, v4_hi = (v4_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v4_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[2] * 2 + z = v0_lo % 2^32 + v4_lo % 2^32 + W[k-1] + v0_lo = z % 2^32 + v0_hi = v0_hi + v4_hi + (z - v0_lo) / 2^32 + W[k] + vC_lo, vC_hi = XOR(vC_lo, v0_lo), XOR(vC_hi, v0_hi) + z_lo, z_hi = vC_lo % 2^16, vC_hi % 2^16 + vC_lo, vC_hi = (vC_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vC_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = v8_lo % 2^32 + vC_lo % 2^32 + v8_lo = z % 2^32 + v8_hi = v8_hi + vC_hi + (z - v8_lo) / 2^32 + v4_lo, v4_hi = XOR(v4_lo, v8_lo), XOR(v4_hi, v8_hi) + z_lo, z_hi = v4_lo % 2^31, v4_hi % 2^31 + v4_lo, v4_hi = z_lo * 2^1 + (v4_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v4_lo - z_lo) / 2^31 % 2^1 + k = row[3] * 2 + z = v1_lo % 2^32 + v5_lo % 2^32 + W[k-1] + v1_lo = z % 2^32 + v1_hi = v1_hi + v5_hi + (z - v1_lo) / 2^32 + W[k] + vD_lo, vD_hi = XOR(vD_hi, v1_hi), XOR(vD_lo, v1_lo) + z = v9_lo % 2^32 + vD_lo % 2^32 + v9_lo = z % 2^32 + v9_hi = v9_hi + vD_hi + (z - v9_lo) / 2^32 + v5_lo, v5_hi = XOR(v5_lo, v9_lo), XOR(v5_hi, v9_hi) + z_lo, z_hi = v5_lo % 2^24, v5_hi % 2^24 + v5_lo, v5_hi = (v5_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v5_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[4] * 2 + z = v1_lo % 2^32 + v5_lo % 2^32 + W[k-1] + v1_lo = z % 2^32 + v1_hi = v1_hi + v5_hi + (z - v1_lo) / 2^32 + W[k] + vD_lo, vD_hi = XOR(vD_lo, v1_lo), XOR(vD_hi, v1_hi) + z_lo, z_hi = vD_lo % 2^16, vD_hi % 2^16 + vD_lo, vD_hi = (vD_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vD_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = v9_lo % 2^32 + vD_lo % 2^32 + v9_lo = z % 2^32 + v9_hi = v9_hi + vD_hi + (z - v9_lo) / 2^32 + v5_lo, v5_hi = XOR(v5_lo, v9_lo), XOR(v5_hi, v9_hi) + z_lo, z_hi = v5_lo % 2^31, v5_hi % 2^31 + v5_lo, v5_hi = z_lo * 2^1 + (v5_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v5_lo - z_lo) / 2^31 % 2^1 + k = row[5] * 2 + z = v2_lo % 2^32 + v6_lo % 2^32 + W[k-1] + v2_lo = z % 2^32 + v2_hi = v2_hi + v6_hi + (z - v2_lo) / 2^32 + W[k] + vE_lo, vE_hi = XOR(vE_hi, v2_hi), XOR(vE_lo, v2_lo) + z = vA_lo % 2^32 + vE_lo % 2^32 + vA_lo = z % 2^32 + vA_hi = vA_hi + vE_hi + (z - vA_lo) / 2^32 + v6_lo, v6_hi = XOR(v6_lo, vA_lo), XOR(v6_hi, vA_hi) + z_lo, z_hi = v6_lo % 2^24, v6_hi % 2^24 + v6_lo, v6_hi = (v6_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v6_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[6] * 2 + z = v2_lo % 2^32 + v6_lo % 2^32 + W[k-1] + v2_lo = z % 2^32 + v2_hi = v2_hi + v6_hi + (z - v2_lo) / 2^32 + W[k] + vE_lo, vE_hi = XOR(vE_lo, v2_lo), XOR(vE_hi, v2_hi) + z_lo, z_hi = vE_lo % 2^16, vE_hi % 2^16 + vE_lo, vE_hi = (vE_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vE_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = vA_lo % 2^32 + vE_lo % 2^32 + vA_lo = z % 2^32 + vA_hi = vA_hi + vE_hi + (z - vA_lo) / 2^32 + v6_lo, v6_hi = XOR(v6_lo, vA_lo), XOR(v6_hi, vA_hi) + z_lo, z_hi = v6_lo % 2^31, v6_hi % 2^31 + v6_lo, v6_hi = z_lo * 2^1 + (v6_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v6_lo - z_lo) / 2^31 % 2^1 + k = row[7] * 2 + z = v3_lo % 2^32 + v7_lo % 2^32 + W[k-1] + v3_lo = z % 2^32 + v3_hi = v3_hi + v7_hi + (z - v3_lo) / 2^32 + W[k] + vF_lo, vF_hi = XOR(vF_hi, v3_hi), XOR(vF_lo, v3_lo) + z = vB_lo % 2^32 + vF_lo % 2^32 + vB_lo = z % 2^32 + vB_hi = vB_hi + vF_hi + (z - vB_lo) / 2^32 + v7_lo, v7_hi = XOR(v7_lo, vB_lo), XOR(v7_hi, vB_hi) + z_lo, z_hi = v7_lo % 2^24, v7_hi % 2^24 + v7_lo, v7_hi = (v7_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v7_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[8] * 2 + z = v3_lo % 2^32 + v7_lo % 2^32 + W[k-1] + v3_lo = z % 2^32 + v3_hi = v3_hi + v7_hi + (z - v3_lo) / 2^32 + W[k] + vF_lo, vF_hi = XOR(vF_lo, v3_lo), XOR(vF_hi, v3_hi) + z_lo, z_hi = vF_lo % 2^16, vF_hi % 2^16 + vF_lo, vF_hi = (vF_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vF_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = vB_lo % 2^32 + vF_lo % 2^32 + vB_lo = z % 2^32 + vB_hi = vB_hi + vF_hi + (z - vB_lo) / 2^32 + v7_lo, v7_hi = XOR(v7_lo, vB_lo), XOR(v7_hi, vB_hi) + z_lo, z_hi = v7_lo % 2^31, v7_hi % 2^31 + v7_lo, v7_hi = z_lo * 2^1 + (v7_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v7_lo - z_lo) / 2^31 % 2^1 + k = row[9] * 2 + z = v0_lo % 2^32 + v5_lo % 2^32 + W[k-1] + v0_lo = z % 2^32 + v0_hi = v0_hi + v5_hi + (z - v0_lo) / 2^32 + W[k] + vF_lo, vF_hi = XOR(vF_hi, v0_hi), XOR(vF_lo, v0_lo) + z = vA_lo % 2^32 + vF_lo % 2^32 + vA_lo = z % 2^32 + vA_hi = vA_hi + vF_hi + (z - vA_lo) / 2^32 + v5_lo, v5_hi = XOR(v5_lo, vA_lo), XOR(v5_hi, vA_hi) + z_lo, z_hi = v5_lo % 2^24, v5_hi % 2^24 + v5_lo, v5_hi = (v5_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v5_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[10] * 2 + z = v0_lo % 2^32 + v5_lo % 2^32 + W[k-1] + v0_lo = z % 2^32 + v0_hi = v0_hi + v5_hi + (z - v0_lo) / 2^32 + W[k] + vF_lo, vF_hi = XOR(vF_lo, v0_lo), XOR(vF_hi, v0_hi) + z_lo, z_hi = vF_lo % 2^16, vF_hi % 2^16 + vF_lo, vF_hi = (vF_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vF_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = vA_lo % 2^32 + vF_lo % 2^32 + vA_lo = z % 2^32 + vA_hi = vA_hi + vF_hi + (z - vA_lo) / 2^32 + v5_lo, v5_hi = XOR(v5_lo, vA_lo), XOR(v5_hi, vA_hi) + z_lo, z_hi = v5_lo % 2^31, v5_hi % 2^31 + v5_lo, v5_hi = z_lo * 2^1 + (v5_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v5_lo - z_lo) / 2^31 % 2^1 + k = row[11] * 2 + z = v1_lo % 2^32 + v6_lo % 2^32 + W[k-1] + v1_lo = z % 2^32 + v1_hi = v1_hi + v6_hi + (z - v1_lo) / 2^32 + W[k] + vC_lo, vC_hi = XOR(vC_hi, v1_hi), XOR(vC_lo, v1_lo) + z = vB_lo % 2^32 + vC_lo % 2^32 + vB_lo = z % 2^32 + vB_hi = vB_hi + vC_hi + (z - vB_lo) / 2^32 + v6_lo, v6_hi = XOR(v6_lo, vB_lo), XOR(v6_hi, vB_hi) + z_lo, z_hi = v6_lo % 2^24, v6_hi % 2^24 + v6_lo, v6_hi = (v6_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v6_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[12] * 2 + z = v1_lo % 2^32 + v6_lo % 2^32 + W[k-1] + v1_lo = z % 2^32 + v1_hi = v1_hi + v6_hi + (z - v1_lo) / 2^32 + W[k] + vC_lo, vC_hi = XOR(vC_lo, v1_lo), XOR(vC_hi, v1_hi) + z_lo, z_hi = vC_lo % 2^16, vC_hi % 2^16 + vC_lo, vC_hi = (vC_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vC_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = vB_lo % 2^32 + vC_lo % 2^32 + vB_lo = z % 2^32 + vB_hi = vB_hi + vC_hi + (z - vB_lo) / 2^32 + v6_lo, v6_hi = XOR(v6_lo, vB_lo), XOR(v6_hi, vB_hi) + z_lo, z_hi = v6_lo % 2^31, v6_hi % 2^31 + v6_lo, v6_hi = z_lo * 2^1 + (v6_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v6_lo - z_lo) / 2^31 % 2^1 + k = row[13] * 2 + z = v2_lo % 2^32 + v7_lo % 2^32 + W[k-1] + v2_lo = z % 2^32 + v2_hi = v2_hi + v7_hi + (z - v2_lo) / 2^32 + W[k] + vD_lo, vD_hi = XOR(vD_hi, v2_hi), XOR(vD_lo, v2_lo) + z = v8_lo % 2^32 + vD_lo % 2^32 + v8_lo = z % 2^32 + v8_hi = v8_hi + vD_hi + (z - v8_lo) / 2^32 + v7_lo, v7_hi = XOR(v7_lo, v8_lo), XOR(v7_hi, v8_hi) + z_lo, z_hi = v7_lo % 2^24, v7_hi % 2^24 + v7_lo, v7_hi = (v7_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v7_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[14] * 2 + z = v2_lo % 2^32 + v7_lo % 2^32 + W[k-1] + v2_lo = z % 2^32 + v2_hi = v2_hi + v7_hi + (z - v2_lo) / 2^32 + W[k] + vD_lo, vD_hi = XOR(vD_lo, v2_lo), XOR(vD_hi, v2_hi) + z_lo, z_hi = vD_lo % 2^16, vD_hi % 2^16 + vD_lo, vD_hi = (vD_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vD_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = v8_lo % 2^32 + vD_lo % 2^32 + v8_lo = z % 2^32 + v8_hi = v8_hi + vD_hi + (z - v8_lo) / 2^32 + v7_lo, v7_hi = XOR(v7_lo, v8_lo), XOR(v7_hi, v8_hi) + z_lo, z_hi = v7_lo % 2^31, v7_hi % 2^31 + v7_lo, v7_hi = z_lo * 2^1 + (v7_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v7_lo - z_lo) / 2^31 % 2^1 + k = row[15] * 2 + z = v3_lo % 2^32 + v4_lo % 2^32 + W[k-1] + v3_lo = z % 2^32 + v3_hi = v3_hi + v4_hi + (z - v3_lo) / 2^32 + W[k] + vE_lo, vE_hi = XOR(vE_hi, v3_hi), XOR(vE_lo, v3_lo) + z = v9_lo % 2^32 + vE_lo % 2^32 + v9_lo = z % 2^32 + v9_hi = v9_hi + vE_hi + (z - v9_lo) / 2^32 + v4_lo, v4_hi = XOR(v4_lo, v9_lo), XOR(v4_hi, v9_hi) + z_lo, z_hi = v4_lo % 2^24, v4_hi % 2^24 + v4_lo, v4_hi = (v4_lo - z_lo) / 2^24 % 2^8 + z_hi * 2^8, (v4_hi - z_hi) / 2^24 % 2^8 + z_lo * 2^8 + k = row[16] * 2 + z = v3_lo % 2^32 + v4_lo % 2^32 + W[k-1] + v3_lo = z % 2^32 + v3_hi = v3_hi + v4_hi + (z - v3_lo) / 2^32 + W[k] + vE_lo, vE_hi = XOR(vE_lo, v3_lo), XOR(vE_hi, v3_hi) + z_lo, z_hi = vE_lo % 2^16, vE_hi % 2^16 + vE_lo, vE_hi = (vE_lo - z_lo) / 2^16 % 2^16 + z_hi * 2^16, (vE_hi - z_hi) / 2^16 % 2^16 + z_lo * 2^16 + z = v9_lo % 2^32 + vE_lo % 2^32 + v9_lo = z % 2^32 + v9_hi = v9_hi + vE_hi + (z - v9_lo) / 2^32 + v4_lo, v4_hi = XOR(v4_lo, v9_lo), XOR(v4_hi, v9_hi) + z_lo, z_hi = v4_lo % 2^31, v4_hi % 2^31 + v4_lo, v4_hi = z_lo * 2^1 + (v4_hi - z_hi) / 2^31 % 2^1, z_hi * 2^1 + (v4_lo - z_lo) / 2^31 % 2^1 + end + h1_lo = XOR(h1_lo, v0_lo, v8_lo) % 2^32 + h2_lo = XOR(h2_lo, v1_lo, v9_lo) % 2^32 + h3_lo = XOR(h3_lo, v2_lo, vA_lo) % 2^32 + h4_lo = XOR(h4_lo, v3_lo, vB_lo) % 2^32 + h5_lo = XOR(h5_lo, v4_lo, vC_lo) % 2^32 + h6_lo = XOR(h6_lo, v5_lo, vD_lo) % 2^32 + h7_lo = XOR(h7_lo, v6_lo, vE_lo) % 2^32 + h8_lo = XOR(h8_lo, v7_lo, vF_lo) % 2^32 + h1_hi = XOR(h1_hi, v0_hi, v8_hi) % 2^32 + h2_hi = XOR(h2_hi, v1_hi, v9_hi) % 2^32 + h3_hi = XOR(h3_hi, v2_hi, vA_hi) % 2^32 + h4_hi = XOR(h4_hi, v3_hi, vB_hi) % 2^32 + h5_hi = XOR(h5_hi, v4_hi, vC_hi) % 2^32 + h6_hi = XOR(h6_hi, v5_hi, vD_hi) % 2^32 + h7_hi = XOR(h7_hi, v6_hi, vE_hi) % 2^32 + h8_hi = XOR(h8_hi, v7_hi, vF_hi) % 2^32 + end + H_lo[1], H_lo[2], H_lo[3], H_lo[4], H_lo[5], H_lo[6], H_lo[7], H_lo[8] = h1_lo, h2_lo, h3_lo, h4_lo, h5_lo, h6_lo, h7_lo, h8_lo + H_hi[1], H_hi[2], H_hi[3], H_hi[4], H_hi[5], H_hi[6], H_hi[7], H_hi[8] = h1_hi, h2_hi, h3_hi, h4_hi, h5_hi, h6_hi, h7_hi, h8_hi + return bytes_compressed + end + + + function blake3_feed_64(str, offs, size, flags, chunk_index, H_in, H_out, wide_output, block_length) + -- offs >= 0, size >= 0, size is multiple of 64 + block_length = block_length or 64 + local W = common_W + local h1, h2, h3, h4, h5, h6, h7, h8 = H_in[1], H_in[2], H_in[3], H_in[4], H_in[5], H_in[6], H_in[7], H_in[8] + H_out = H_out or H_in + for pos = offs, offs + size - 1, 64 do + if str then + for j = 1, 16 do + pos = pos + 4 + local a, b, c, d = byte(str, pos - 3, pos) + W[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + end + local v0, v1, v2, v3, v4, v5, v6, v7 = h1, h2, h3, h4, h5, h6, h7, h8 + local v8, v9, vA, vB = sha2_H_hi[1], sha2_H_hi[2], sha2_H_hi[3], sha2_H_hi[4] + local vC = chunk_index % 2^32 -- t0 = low_4_bytes(chunk_index) + local vD = (chunk_index - vC) / 2^32 -- t1 = high_4_bytes(chunk_index) + local vE, vF = block_length, flags + for j = 1, 7 do + v0 = v0 + v4 + W[perm_blake3[j]] + vC = XOR(vC, v0) % 2^32 / 2^16 + vC = vC % 1 * (2^32 - 1) + vC + v8 = v8 + vC + v4 = XOR(v4, v8) % 2^32 / 2^12 + v4 = v4 % 1 * (2^32 - 1) + v4 + v0 = v0 + v4 + W[perm_blake3[j + 14]] + vC = XOR(vC, v0) % 2^32 / 2^8 + vC = vC % 1 * (2^32 - 1) + vC + v8 = v8 + vC + v4 = XOR(v4, v8) % 2^32 / 2^7 + v4 = v4 % 1 * (2^32 - 1) + v4 + v1 = v1 + v5 + W[perm_blake3[j + 1]] + vD = XOR(vD, v1) % 2^32 / 2^16 + vD = vD % 1 * (2^32 - 1) + vD + v9 = v9 + vD + v5 = XOR(v5, v9) % 2^32 / 2^12 + v5 = v5 % 1 * (2^32 - 1) + v5 + v1 = v1 + v5 + W[perm_blake3[j + 2]] + vD = XOR(vD, v1) % 2^32 / 2^8 + vD = vD % 1 * (2^32 - 1) + vD + v9 = v9 + vD + v5 = XOR(v5, v9) % 2^32 / 2^7 + v5 = v5 % 1 * (2^32 - 1) + v5 + v2 = v2 + v6 + W[perm_blake3[j + 16]] + vE = XOR(vE, v2) % 2^32 / 2^16 + vE = vE % 1 * (2^32 - 1) + vE + vA = vA + vE + v6 = XOR(v6, vA) % 2^32 / 2^12 + v6 = v6 % 1 * (2^32 - 1) + v6 + v2 = v2 + v6 + W[perm_blake3[j + 7]] + vE = XOR(vE, v2) % 2^32 / 2^8 + vE = vE % 1 * (2^32 - 1) + vE + vA = vA + vE + v6 = XOR(v6, vA) % 2^32 / 2^7 + v6 = v6 % 1 * (2^32 - 1) + v6 + v3 = v3 + v7 + W[perm_blake3[j + 15]] + vF = XOR(vF, v3) % 2^32 / 2^16 + vF = vF % 1 * (2^32 - 1) + vF + vB = vB + vF + v7 = XOR(v7, vB) % 2^32 / 2^12 + v7 = v7 % 1 * (2^32 - 1) + v7 + v3 = v3 + v7 + W[perm_blake3[j + 17]] + vF = XOR(vF, v3) % 2^32 / 2^8 + vF = vF % 1 * (2^32 - 1) + vF + vB = vB + vF + v7 = XOR(v7, vB) % 2^32 / 2^7 + v7 = v7 % 1 * (2^32 - 1) + v7 + v0 = v0 + v5 + W[perm_blake3[j + 21]] + vF = XOR(vF, v0) % 2^32 / 2^16 + vF = vF % 1 * (2^32 - 1) + vF + vA = vA + vF + v5 = XOR(v5, vA) % 2^32 / 2^12 + v5 = v5 % 1 * (2^32 - 1) + v5 + v0 = v0 + v5 + W[perm_blake3[j + 5]] + vF = XOR(vF, v0) % 2^32 / 2^8 + vF = vF % 1 * (2^32 - 1) + vF + vA = vA + vF + v5 = XOR(v5, vA) % 2^32 / 2^7 + v5 = v5 % 1 * (2^32 - 1) + v5 + v1 = v1 + v6 + W[perm_blake3[j + 3]] + vC = XOR(vC, v1) % 2^32 / 2^16 + vC = vC % 1 * (2^32 - 1) + vC + vB = vB + vC + v6 = XOR(v6, vB) % 2^32 / 2^12 + v6 = v6 % 1 * (2^32 - 1) + v6 + v1 = v1 + v6 + W[perm_blake3[j + 6]] + vC = XOR(vC, v1) % 2^32 / 2^8 + vC = vC % 1 * (2^32 - 1) + vC + vB = vB + vC + v6 = XOR(v6, vB) % 2^32 / 2^7 + v6 = v6 % 1 * (2^32 - 1) + v6 + v2 = v2 + v7 + W[perm_blake3[j + 4]] + vD = XOR(vD, v2) % 2^32 / 2^16 + vD = vD % 1 * (2^32 - 1) + vD + v8 = v8 + vD + v7 = XOR(v7, v8) % 2^32 / 2^12 + v7 = v7 % 1 * (2^32 - 1) + v7 + v2 = v2 + v7 + W[perm_blake3[j + 18]] + vD = XOR(vD, v2) % 2^32 / 2^8 + vD = vD % 1 * (2^32 - 1) + vD + v8 = v8 + vD + v7 = XOR(v7, v8) % 2^32 / 2^7 + v7 = v7 % 1 * (2^32 - 1) + v7 + v3 = v3 + v4 + W[perm_blake3[j + 19]] + vE = XOR(vE, v3) % 2^32 / 2^16 + vE = vE % 1 * (2^32 - 1) + vE + v9 = v9 + vE + v4 = XOR(v4, v9) % 2^32 / 2^12 + v4 = v4 % 1 * (2^32 - 1) + v4 + v3 = v3 + v4 + W[perm_blake3[j + 20]] + vE = XOR(vE, v3) % 2^32 / 2^8 + vE = vE % 1 * (2^32 - 1) + vE + v9 = v9 + vE + v4 = XOR(v4, v9) % 2^32 / 2^7 + v4 = v4 % 1 * (2^32 - 1) + v4 + end + if wide_output then + H_out[ 9] = XOR(h1, v8) + H_out[10] = XOR(h2, v9) + H_out[11] = XOR(h3, vA) + H_out[12] = XOR(h4, vB) + H_out[13] = XOR(h5, vC) + H_out[14] = XOR(h6, vD) + H_out[15] = XOR(h7, vE) + H_out[16] = XOR(h8, vF) + end + h1 = XOR(v0, v8) + h2 = XOR(v1, v9) + h3 = XOR(v2, vA) + h4 = XOR(v3, vB) + h5 = XOR(v4, vC) + h6 = XOR(v5, vD) + h7 = XOR(v6, vE) + h8 = XOR(v7, vF) + end + H_out[1], H_out[2], H_out[3], H_out[4], H_out[5], H_out[6], H_out[7], H_out[8] = h1, h2, h3, h4, h5, h6, h7, h8 + end + +end + + +-------------------------------------------------------------------------------- +-- MAGIC NUMBERS CALCULATOR +-------------------------------------------------------------------------------- +-- Q: +-- Is 53-bit "double" math enough to calculate square roots and cube roots of primes with 64 correct bits after decimal point? +-- A: +-- Yes, 53-bit "double" arithmetic is enough. +-- We could obtain first 40 bits by direct calculation of p^(1/3) and next 40 bits by one step of Newton's method. + +do + local function mul(src1, src2, factor, result_length) + -- src1, src2 - long integers (arrays of digits in base 2^24) + -- factor - small integer + -- returns long integer result (src1 * src2 * factor) and its floating point approximation + local result, carry, value, weight = {}, 0.0, 0.0, 1.0 + for j = 1, result_length do + for k = math_max(1, j + 1 - #src2), math_min(j, #src1) do + carry = carry + factor * src1[k] * src2[j + 1 - k] -- "int32" is not enough for multiplication result, that's why "factor" must be of type "double" + end + local digit = carry % 2^24 + result[j] = floor(digit) + carry = (carry - digit) / 2^24 + value = value + digit * weight + weight = weight * 2^24 + end + return result, value + end + + local idx, step, p, one, sqrt_hi, sqrt_lo = 0, {4, 1, 2, -2, 2}, 4, {1}, sha2_H_hi, sha2_H_lo + repeat + p = p + step[p % 6] + local d = 1 + repeat + d = d + step[d % 6] + if d*d > p then -- next prime number is found + local root = p^(1/3) + local R = root * 2^40 + R = mul({R - R % 1}, one, 1.0, 2) + local _, delta = mul(R, mul(R, R, 1.0, 4), -1.0, 4) + local hi = R[2] % 65536 * 65536 + floor(R[1] / 256) + local lo = R[1] % 256 * 16777216 + floor(delta * (2^-56 / 3) * root / p) + if idx < 16 then + root = p^(1/2) + R = root * 2^40 + R = mul({R - R % 1}, one, 1.0, 2) + _, delta = mul(R, R, -1.0, 2) + local hi = R[2] % 65536 * 65536 + floor(R[1] / 256) + local lo = R[1] % 256 * 16777216 + floor(delta * 2^-17 / root) + local idx = idx % 8 + 1 + sha2_H_ext256[224][idx] = lo + sqrt_hi[idx], sqrt_lo[idx] = hi, lo + hi * hi_factor + if idx > 7 then + sqrt_hi, sqrt_lo = sha2_H_ext512_hi[384], sha2_H_ext512_lo[384] + end + end + idx = idx + 1 + sha2_K_hi[idx], sha2_K_lo[idx] = hi, lo % K_lo_modulo + hi * hi_factor + break + end + until p % d == 0 + until idx > 79 +end + +-- Calculating IVs for SHA512/224 and SHA512/256 +for width = 224, 256, 32 do + local H_lo, H_hi = {} + if HEX64 then + for j = 1, 8 do + H_lo[j] = XORA5(sha2_H_lo[j]) + end + else + H_hi = {} + for j = 1, 8 do + H_lo[j] = XORA5(sha2_H_lo[j]) + H_hi[j] = XORA5(sha2_H_hi[j]) + end + end + sha512_feed_128(H_lo, H_hi, "SHA-512/"..tostring(width).."\128"..string_rep("\0", 115).."\88", 0, 128) + sha2_H_ext512_lo[width] = H_lo + sha2_H_ext512_hi[width] = H_hi +end + +-- Constants for MD5 +do + local sin, abs, modf = math.sin, math.abs, math.modf + for idx = 1, 64 do + -- we can't use formula floor(abs(sin(idx))*2^32) because its result may be beyond integer range on Lua built with 32-bit integers + local hi, lo = modf(abs(sin(idx)) * 2^16) + md5_K[idx] = hi * 65536 + floor(lo * 2^16) + end +end + +-- Constants for SHA-3 +do + local sh_reg = 29 + + local function next_bit() + local r = sh_reg % 2 + sh_reg = XOR_BYTE((sh_reg - r) / 2, 142 * r) + return r + end + + for idx = 1, 24 do + local lo, m = 0 + for _ = 1, 6 do + m = m and m * m * 2 or 1 + lo = lo + next_bit() * m + end + local hi = next_bit() * m + sha3_RC_hi[idx], sha3_RC_lo[idx] = hi, lo + hi * hi_factor_keccak + end +end + +if branch == "FFI" then + sha2_K_hi = ffi.new("uint32_t[?]", #sha2_K_hi + 1, 0, unpack(sha2_K_hi)) + sha2_K_lo = ffi.new("int64_t[?]", #sha2_K_lo + 1, 0, unpack(sha2_K_lo)) + --md5_K = ffi.new("uint32_t[?]", #md5_K + 1, 0, unpack(md5_K)) + if hi_factor_keccak == 0 then + sha3_RC_lo = ffi.new("uint32_t[?]", #sha3_RC_lo + 1, 0, unpack(sha3_RC_lo)) + sha3_RC_hi = ffi.new("uint32_t[?]", #sha3_RC_hi + 1, 0, unpack(sha3_RC_hi)) + else + sha3_RC_lo = ffi.new("int64_t[?]", #sha3_RC_lo + 1, 0, unpack(sha3_RC_lo)) + end +end + + +-------------------------------------------------------------------------------- +-- MAIN FUNCTIONS +-------------------------------------------------------------------------------- + +local function sha256ext(width, message) + -- Create an instance (private objects for current calculation) + local H, length, tail = {unpack(sha2_H_ext256[width])}, 0.0, "" + + local function partial(message_part) + if message_part then + if tail then + length = length + #message_part + local offs = 0 + if tail ~= "" and #tail + #message_part >= 64 then + offs = 64 - #tail + sha256_feed_64(H, tail..sub(message_part, 1, offs), 0, 64) + tail = "" + end + local size = #message_part - offs + local size_tail = size % 64 + sha256_feed_64(H, message_part, offs, size - size_tail) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + local final_blocks = {tail, "\128", string_rep("\0", (-9 - length) % 64 + 1)} + tail = nil + -- Assuming user data length is shorter than (2^53)-9 bytes + -- Anyway, it looks very unrealistic that someone would spend more than a year of calculations to process 2^53 bytes of data by using this Lua script :-) + -- 2^53 bytes = 2^56 bits, so "bit-counter" fits in 7 bytes + length = length * (8 / 256^7) -- convert "byte-counter" to "bit-counter" and move decimal point to the left + for j = 4, 10 do + length = length % 1 * 256 + final_blocks[j] = char(floor(length)) + end + final_blocks = table_concat(final_blocks) + sha256_feed_64(H, final_blocks, 0, #final_blocks) + local max_reg = width / 32 + for j = 1, max_reg do + H[j] = HEX(H[j]) + end + H = table_concat(H, "", 1, max_reg) + end + return H + end + end + + if message then + -- Actually perform calculations and return the SHA256 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get SHA256 digest by invoking this function without an argument + return partial + end +end + + +local function sha512ext(width, message) + -- Create an instance (private objects for current calculation) + local length, tail, H_lo, H_hi = 0.0, "", {unpack(sha2_H_ext512_lo[width])}, not HEX64 and {unpack(sha2_H_ext512_hi[width])} + + local function partial(message_part) + if message_part then + if tail then + length = length + #message_part + local offs = 0 + if tail ~= "" and #tail + #message_part >= 128 then + offs = 128 - #tail + sha512_feed_128(H_lo, H_hi, tail..sub(message_part, 1, offs), 0, 128) + tail = "" + end + local size = #message_part - offs + local size_tail = size % 128 + sha512_feed_128(H_lo, H_hi, message_part, offs, size - size_tail) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + local final_blocks = {tail, "\128", string_rep("\0", (-17-length) % 128 + 9)} + tail = nil + -- Assuming user data length is shorter than (2^53)-17 bytes + -- 2^53 bytes = 2^56 bits, so "bit-counter" fits in 7 bytes + length = length * (8 / 256^7) -- convert "byte-counter" to "bit-counter" and move floating point to the left + for j = 4, 10 do + length = length % 1 * 256 + final_blocks[j] = char(floor(length)) + end + final_blocks = table_concat(final_blocks) + sha512_feed_128(H_lo, H_hi, final_blocks, 0, #final_blocks) + local max_reg = ceil(width / 64) + if HEX64 then + for j = 1, max_reg do + H_lo[j] = HEX64(H_lo[j]) + end + else + for j = 1, max_reg do + H_lo[j] = HEX(H_hi[j])..HEX(H_lo[j]) + end + H_hi = nil + end + H_lo = sub(table_concat(H_lo, "", 1, max_reg), 1, width / 4) + end + return H_lo + end + end + + if message then + -- Actually perform calculations and return the SHA512 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get SHA512 digest by invoking this function without an argument + return partial + end +end + + +local function md5(message) + -- Create an instance (private objects for current calculation) + local H, length, tail = {unpack(md5_sha1_H, 1, 4)}, 0.0, "" + + local function partial(message_part) + if message_part then + if tail then + length = length + #message_part + local offs = 0 + if tail ~= "" and #tail + #message_part >= 64 then + offs = 64 - #tail + md5_feed_64(H, tail..sub(message_part, 1, offs), 0, 64) + tail = "" + end + local size = #message_part - offs + local size_tail = size % 64 + md5_feed_64(H, message_part, offs, size - size_tail) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + local final_blocks = {tail, "\128", string_rep("\0", (-9 - length) % 64)} + tail = nil + length = length * 8 -- convert "byte-counter" to "bit-counter" + for j = 4, 11 do + local low_byte = length % 256 + final_blocks[j] = char(low_byte) + length = (length - low_byte) / 256 + end + final_blocks = table_concat(final_blocks) + md5_feed_64(H, final_blocks, 0, #final_blocks) + for j = 1, 4 do + H[j] = HEX(H[j]) + end + H = gsub(table_concat(H), "(..)(..)(..)(..)", "%4%3%2%1") + end + return H + end + end + + if message then + -- Actually perform calculations and return the MD5 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get MD5 digest by invoking this function without an argument + return partial + end +end + + +local function sha1(message) + -- Create an instance (private objects for current calculation) + local H, length, tail = {unpack(md5_sha1_H)}, 0.0, "" + + local function partial(message_part) + if message_part then + if tail then + length = length + #message_part + local offs = 0 + if tail ~= "" and #tail + #message_part >= 64 then + offs = 64 - #tail + sha1_feed_64(H, tail..sub(message_part, 1, offs), 0, 64) + tail = "" + end + local size = #message_part - offs + local size_tail = size % 64 + sha1_feed_64(H, message_part, offs, size - size_tail) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + local final_blocks = {tail, "\128", string_rep("\0", (-9 - length) % 64 + 1)} + tail = nil + -- Assuming user data length is shorter than (2^53)-9 bytes + -- 2^53 bytes = 2^56 bits, so "bit-counter" fits in 7 bytes + length = length * (8 / 256^7) -- convert "byte-counter" to "bit-counter" and move decimal point to the left + for j = 4, 10 do + length = length % 1 * 256 + final_blocks[j] = char(floor(length)) + end + final_blocks = table_concat(final_blocks) + sha1_feed_64(H, final_blocks, 0, #final_blocks) + for j = 1, 5 do + H[j] = HEX(H[j]) + end + H = table_concat(H) + end + return H + end + end + + if message then + -- Actually perform calculations and return the SHA-1 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get SHA-1 digest by invoking this function without an argument + return partial + end +end + + +local function keccak(block_size_in_bytes, digest_size_in_bytes, is_SHAKE, message) + -- "block_size_in_bytes" is multiple of 8 + if type(digest_size_in_bytes) ~= "number" then + -- arguments in SHAKE are swapped: + -- NIST FIPS 202 defines SHAKE(message,num_bits) + -- this module defines SHAKE(num_bytes,message) + -- it's easy to forget about this swap, hence the check + error("Argument 'digest_size_in_bytes' must be a number", 2) + end + -- Create an instance (private objects for current calculation) + local tail, lanes_lo, lanes_hi = "", create_array_of_lanes(), hi_factor_keccak == 0 and create_array_of_lanes() + local result + + local function partial(message_part) + if message_part then + if tail then + local offs = 0 + if tail ~= "" and #tail + #message_part >= block_size_in_bytes then + offs = block_size_in_bytes - #tail + keccak_feed(lanes_lo, lanes_hi, tail..sub(message_part, 1, offs), 0, block_size_in_bytes, block_size_in_bytes) + tail = "" + end + local size = #message_part - offs + local size_tail = size % block_size_in_bytes + keccak_feed(lanes_lo, lanes_hi, message_part, offs, size - size_tail, block_size_in_bytes) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + -- append the following bits to the message: for usual SHA-3: 011(0*)1, for SHAKE: 11111(0*)1 + local gap_start = is_SHAKE and 31 or 6 + tail = tail..(#tail + 1 == block_size_in_bytes and char(gap_start + 128) or char(gap_start)..string_rep("\0", (-2 - #tail) % block_size_in_bytes).."\128") + keccak_feed(lanes_lo, lanes_hi, tail, 0, #tail, block_size_in_bytes) + tail = nil + local lanes_used = 0 + local total_lanes = floor(block_size_in_bytes / 8) + local qwords = {} + + local function get_next_qwords_of_digest(qwords_qty) + -- returns not more than 'qwords_qty' qwords ('qwords_qty' might be non-integer) + -- doesn't go across keccak-buffer boundary + -- block_size_in_bytes is a multiple of 8, so, keccak-buffer contains integer number of qwords + if lanes_used >= total_lanes then + keccak_feed(lanes_lo, lanes_hi, "\0\0\0\0\0\0\0\0", 0, 8, 8) + lanes_used = 0 + end + qwords_qty = floor(math_min(qwords_qty, total_lanes - lanes_used)) + if hi_factor_keccak ~= 0 then + for j = 1, qwords_qty do + qwords[j] = HEX64(lanes_lo[lanes_used + j - 1 + lanes_index_base]) + end + else + for j = 1, qwords_qty do + qwords[j] = HEX(lanes_hi[lanes_used + j])..HEX(lanes_lo[lanes_used + j]) + end + end + lanes_used = lanes_used + qwords_qty + return + gsub(table_concat(qwords, "", 1, qwords_qty), "(..)(..)(..)(..)(..)(..)(..)(..)", "%8%7%6%5%4%3%2%1"), + qwords_qty * 8 + end + + local parts = {} -- digest parts + local last_part, last_part_size = "", 0 + + local function get_next_part_of_digest(bytes_needed) + -- returns 'bytes_needed' bytes, for arbitrary integer 'bytes_needed' + bytes_needed = bytes_needed or 1 + if bytes_needed <= last_part_size then + last_part_size = last_part_size - bytes_needed + local part_size_in_nibbles = bytes_needed * 2 + local result = sub(last_part, 1, part_size_in_nibbles) + last_part = sub(last_part, part_size_in_nibbles + 1) + return result + end + local parts_qty = 0 + if last_part_size > 0 then + parts_qty = 1 + parts[parts_qty] = last_part + bytes_needed = bytes_needed - last_part_size + end + -- repeats until the length is enough + while bytes_needed >= 8 do + local next_part, next_part_size = get_next_qwords_of_digest(bytes_needed / 8) + parts_qty = parts_qty + 1 + parts[parts_qty] = next_part + bytes_needed = bytes_needed - next_part_size + end + if bytes_needed > 0 then + last_part, last_part_size = get_next_qwords_of_digest(1) + parts_qty = parts_qty + 1 + parts[parts_qty] = get_next_part_of_digest(bytes_needed) + else + last_part, last_part_size = "", 0 + end + return table_concat(parts, "", 1, parts_qty) + end + + if digest_size_in_bytes < 0 then + result = get_next_part_of_digest + else + result = get_next_part_of_digest(digest_size_in_bytes) + end + end + return result + end + end + + if message then + -- Actually perform calculations and return the SHA-3 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get SHA-3 digest by invoking this function without an argument + return partial + end +end + + +local hex_to_bin, bin_to_hex, bin_to_base64, base64_to_bin +do + function hex_to_bin(hex_string) + return (gsub(hex_string, "%x%x", + function (hh) + return char(tonumber(hh, 16)) + end + )) + end + + function bin_to_hex(binary_string) + return (gsub(binary_string, ".", + function (c) + return string_format("%02x", byte(c)) + end + )) + end + + local base64_symbols = { + ['+'] = 62, ['-'] = 62, [62] = '+', + ['/'] = 63, ['_'] = 63, [63] = '/', + ['='] = -1, ['.'] = -1, [-1] = '=' + } + local symbol_index = 0 + for j, pair in ipairs{'AZ', 'az', '09'} do + for ascii = byte(pair), byte(pair, 2) do + local ch = char(ascii) + base64_symbols[ch] = symbol_index + base64_symbols[symbol_index] = ch + symbol_index = symbol_index + 1 + end + end + + function bin_to_base64(binary_string) + local result = {} + for pos = 1, #binary_string, 3 do + local c1, c2, c3, c4 = byte(sub(binary_string, pos, pos + 2)..'\0', 1, -1) + result[#result + 1] = + base64_symbols[floor(c1 / 4)] + ..base64_symbols[c1 % 4 * 16 + floor(c2 / 16)] + ..base64_symbols[c3 and c2 % 16 * 4 + floor(c3 / 64) or -1] + ..base64_symbols[c4 and c3 % 64 or -1] + end + return table_concat(result) + end + + function base64_to_bin(base64_string) + local result, chars_qty = {}, 3 + for pos, ch in gmatch(gsub(base64_string, '%s+', ''), '()(.)') do + local code = base64_symbols[ch] + if code < 0 then + chars_qty = chars_qty - 1 + code = 0 + end + local idx = pos % 4 + if idx > 0 then + result[-idx] = code + else + local c1 = result[-1] * 4 + floor(result[-2] / 16) + local c2 = (result[-2] % 16) * 16 + floor(result[-3] / 4) + local c3 = (result[-3] % 4) * 64 + code + result[#result + 1] = sub(char(c1, c2, c3), 1, chars_qty) + end + end + return table_concat(result) + end + +end + + +local block_size_for_HMAC -- this table will be initialized at the end of the module + +local function pad_and_xor(str, result_length, byte_for_xor) + return gsub(str, ".", + function(c) + return char(XOR_BYTE(byte(c), byte_for_xor)) + end + )..string_rep(char(byte_for_xor), result_length - #str) +end + +local function hmac(hash_func, key, message) + -- Create an instance (private objects for current calculation) + local block_size = block_size_for_HMAC[hash_func] + if not block_size then + error("Unknown hash function", 2) + end + if #key > block_size then + key = hex_to_bin(hash_func(key)) + end + local append = hash_func()(pad_and_xor(key, block_size, 0x36)) + local result + + local function partial(message_part) + if not message_part then + result = result or hash_func(pad_and_xor(key, block_size, 0x5C)..hex_to_bin(append())) + return result + elseif result then + error("Adding more chunks is not allowed after receiving the result", 2) + else + append(message_part) + return partial + end + end + + if message then + -- Actually perform calculations and return the HMAC of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading of a message + -- User should feed every chunk of the message as single argument to this function and finally get HMAC by invoking this function without an argument + return partial + end +end + + +local function xor_blake2_salt(salt, letter, H_lo, H_hi) + -- salt: concatenation of "Salt"+"Personalization" fields + local max_size = letter == "s" and 16 or 32 + local salt_size = #salt + if salt_size > max_size then + error(string_format("For BLAKE2%s/BLAKE2%sp/BLAKE2X%s the 'salt' parameter length must not exceed %d bytes", letter, letter, letter, max_size), 2) + end + if H_lo then + local offset, blake2_word_size, xor = 0, letter == "s" and 4 or 8, letter == "s" and XOR or XORA5 + for j = 5, 4 + ceil(salt_size / blake2_word_size) do + local prev, last + for _ = 1, blake2_word_size, 4 do + offset = offset + 4 + local a, b, c, d = byte(salt, offset - 3, offset) + local four_bytes = (((d or 0) * 256 + (c or 0)) * 256 + (b or 0)) * 256 + (a or 0) + prev, last = last, four_bytes + end + H_lo[j] = xor(H_lo[j], prev and last * hi_factor + prev or last) + if H_hi then + H_hi[j] = xor(H_hi[j], last) + end + end + end +end + +local function blake2s(message, key, salt, digest_size_in_bytes, XOF_length, B2_offset) + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 32 bytes, by default empty string + -- salt: (optional) binary string up to 16 bytes, by default empty string + -- digest_size_in_bytes: (optional) integer from 1 to 32, by default 32 + -- The last two parameters "XOF_length" and "B2_offset" are for internal use only, user must omit them (or pass nil) + digest_size_in_bytes = digest_size_in_bytes or 32 + if digest_size_in_bytes < 1 or digest_size_in_bytes > 32 then + error("BLAKE2s digest length must be from 1 to 32 bytes", 2) + end + key = key or "" + local key_length = #key + if key_length > 32 then + error("BLAKE2s key length must not exceed 32 bytes", 2) + end + salt = salt or "" + local bytes_compressed, tail, H = 0.0, "", {unpack(sha2_H_hi)} + if B2_offset then + H[1] = XOR(H[1], digest_size_in_bytes) + H[2] = XOR(H[2], 0x20) + H[3] = XOR(H[3], B2_offset) + H[4] = XOR(H[4], 0x20000000 + XOF_length) + else + H[1] = XOR(H[1], 0x01010000 + key_length * 256 + digest_size_in_bytes) + if XOF_length then + H[4] = XOR(H[4], XOF_length) + end + end + if salt ~= "" then + xor_blake2_salt(salt, "s", H) + end + + local function partial(message_part) + if message_part then + if tail then + local offs = 0 + if tail ~= "" and #tail + #message_part > 64 then + offs = 64 - #tail + bytes_compressed = blake2s_feed_64(H, tail..sub(message_part, 1, offs), 0, 64, bytes_compressed) + tail = "" + end + local size = #message_part - offs + local size_tail = size > 0 and (size - 1) % 64 + 1 or 0 + bytes_compressed = blake2s_feed_64(H, message_part, offs, size - size_tail, bytes_compressed) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + if B2_offset then + blake2s_feed_64(H, nil, 0, 64, 0, 32) + else + blake2s_feed_64(H, tail..string_rep("\0", 64 - #tail), 0, 64, bytes_compressed, #tail) + end + tail = nil + if not XOF_length or B2_offset then + local max_reg = ceil(digest_size_in_bytes / 4) + for j = 1, max_reg do + H[j] = HEX(H[j]) + end + H = sub(gsub(table_concat(H, "", 1, max_reg), "(..)(..)(..)(..)", "%4%3%2%1"), 1, digest_size_in_bytes * 2) + end + end + return H + end + end + + if key_length > 0 then + partial(key..string_rep("\0", 64 - key_length)) + end + if B2_offset then + return partial() + elseif message then + -- Actually perform calculations and return the BLAKE2s digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE2s digest by invoking this function without an argument + return partial + end +end + +local function blake2b(message, key, salt, digest_size_in_bytes, XOF_length, B2_offset) + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 64 bytes, by default empty string + -- salt: (optional) binary string up to 32 bytes, by default empty string + -- digest_size_in_bytes: (optional) integer from 1 to 64, by default 64 + -- The last two parameters "XOF_length" and "B2_offset" are for internal use only, user must omit them (or pass nil) + digest_size_in_bytes = floor(digest_size_in_bytes or 64) + if digest_size_in_bytes < 1 or digest_size_in_bytes > 64 then + error("BLAKE2b digest length must be from 1 to 64 bytes", 2) + end + key = key or "" + local key_length = #key + if key_length > 64 then + error("BLAKE2b key length must not exceed 64 bytes", 2) + end + salt = salt or "" + local bytes_compressed, tail, H_lo, H_hi = 0.0, "", {unpack(sha2_H_lo)}, not HEX64 and {unpack(sha2_H_hi)} + if B2_offset then + if H_hi then + H_lo[1] = XORA5(H_lo[1], digest_size_in_bytes) + H_hi[1] = XORA5(H_hi[1], 0x40) + H_lo[2] = XORA5(H_lo[2], B2_offset) + H_hi[2] = XORA5(H_hi[2], XOF_length) + else + H_lo[1] = XORA5(H_lo[1], 0x40 * hi_factor + digest_size_in_bytes) + H_lo[2] = XORA5(H_lo[2], XOF_length * hi_factor + B2_offset) + end + H_lo[3] = XORA5(H_lo[3], 0x4000) + else + H_lo[1] = XORA5(H_lo[1], 0x01010000 + key_length * 256 + digest_size_in_bytes) + if XOF_length then + if H_hi then + H_hi[2] = XORA5(H_hi[2], XOF_length) + else + H_lo[2] = XORA5(H_lo[2], XOF_length * hi_factor) + end + end + end + if salt ~= "" then + xor_blake2_salt(salt, "b", H_lo, H_hi) + end + + local function partial(message_part) + if message_part then + if tail then + local offs = 0 + if tail ~= "" and #tail + #message_part > 128 then + offs = 128 - #tail + bytes_compressed = blake2b_feed_128(H_lo, H_hi, tail..sub(message_part, 1, offs), 0, 128, bytes_compressed) + tail = "" + end + local size = #message_part - offs + local size_tail = size > 0 and (size - 1) % 128 + 1 or 0 + bytes_compressed = blake2b_feed_128(H_lo, H_hi, message_part, offs, size - size_tail, bytes_compressed) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + if B2_offset then + blake2b_feed_128(H_lo, H_hi, nil, 0, 128, 0, 64) + else + blake2b_feed_128(H_lo, H_hi, tail..string_rep("\0", 128 - #tail), 0, 128, bytes_compressed, #tail) + end + tail = nil + if XOF_length and not B2_offset then + if H_hi then + for j = 8, 1, -1 do + H_lo[j*2] = H_hi[j] + H_lo[j*2-1] = H_lo[j] + end + return H_lo, 16 + end + else + local max_reg = ceil(digest_size_in_bytes / 8) + if H_hi then + for j = 1, max_reg do + H_lo[j] = HEX(H_hi[j])..HEX(H_lo[j]) + end + else + for j = 1, max_reg do + H_lo[j] = HEX64(H_lo[j]) + end + end + H_lo = sub(gsub(table_concat(H_lo, "", 1, max_reg), "(..)(..)(..)(..)(..)(..)(..)(..)", "%8%7%6%5%4%3%2%1"), 1, digest_size_in_bytes * 2) + end + H_hi = nil + end + return H_lo + end + end + + if key_length > 0 then + partial(key..string_rep("\0", 128 - key_length)) + end + if B2_offset then + return partial() + elseif message then + -- Actually perform calculations and return the BLAKE2b digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE2b digest by invoking this function without an argument + return partial + end +end + +local function blake2sp(message, key, salt, digest_size_in_bytes) + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 32 bytes, by default empty string + -- salt: (optional) binary string up to 16 bytes, by default empty string + -- digest_size_in_bytes: (optional) integer from 1 to 32, by default 32 + digest_size_in_bytes = digest_size_in_bytes or 32 + if digest_size_in_bytes < 1 or digest_size_in_bytes > 32 then + error("BLAKE2sp digest length must be from 1 to 32 bytes", 2) + end + key = key or "" + local key_length = #key + if key_length > 32 then + error("BLAKE2sp key length must not exceed 32 bytes", 2) + end + salt = salt or "" + local instances, length, first_dword_of_parameter_block, result = {}, 0.0, 0x02080000 + key_length * 256 + digest_size_in_bytes + for j = 1, 8 do + local bytes_compressed, tail, H = 0.0, "", {unpack(sha2_H_hi)} + instances[j] = {bytes_compressed, tail, H} + H[1] = XOR(H[1], first_dword_of_parameter_block) + H[3] = XOR(H[3], j-1) + H[4] = XOR(H[4], 0x20000000) + if salt ~= "" then + xor_blake2_salt(salt, "s", H) + end + end + + local function partial(message_part) + if message_part then + if instances then + local from = 0 + while true do + local to = math_min(from + 64 - length % 64, #message_part) + if to > from then + local inst = instances[floor(length / 64) % 8 + 1] + local part = sub(message_part, from + 1, to) + length, from = length + to - from, to + local bytes_compressed, tail = inst[1], inst[2] + if #tail < 64 then + tail = tail..part + else + local H = inst[3] + bytes_compressed = blake2s_feed_64(H, tail, 0, 64, bytes_compressed) + tail = part + end + inst[1], inst[2] = bytes_compressed, tail + else + break + end + end + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if instances then + local root_H = {unpack(sha2_H_hi)} + root_H[1] = XOR(root_H[1], first_dword_of_parameter_block) + root_H[4] = XOR(root_H[4], 0x20010000) + if salt ~= "" then + xor_blake2_salt(salt, "s", root_H) + end + for j = 1, 8 do + local inst = instances[j] + local bytes_compressed, tail, H = inst[1], inst[2], inst[3] + blake2s_feed_64(H, tail..string_rep("\0", 64 - #tail), 0, 64, bytes_compressed, #tail, j == 8) + if j % 2 == 0 then + local index = 0 + for k = j - 1, j do + local inst = instances[k] + local H = inst[3] + for i = 1, 8 do + index = index + 1 + common_W_blake2s[index] = H[i] + end + end + blake2s_feed_64(root_H, nil, 0, 64, 64 * (j/2 - 1), j == 8 and 64, j == 8) + end + end + instances = nil + local max_reg = ceil(digest_size_in_bytes / 4) + for j = 1, max_reg do + root_H[j] = HEX(root_H[j]) + end + result = sub(gsub(table_concat(root_H, "", 1, max_reg), "(..)(..)(..)(..)", "%4%3%2%1"), 1, digest_size_in_bytes * 2) + end + return result + end + end + + if key_length > 0 then + key = key..string_rep("\0", 64 - key_length) + for j = 1, 8 do + partial(key) + end + end + if message then + -- Actually perform calculations and return the BLAKE2sp digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE2sp digest by invoking this function without an argument + return partial + end + +end + +local function blake2bp(message, key, salt, digest_size_in_bytes) + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 64 bytes, by default empty string + -- salt: (optional) binary string up to 32 bytes, by default empty string + -- digest_size_in_bytes: (optional) integer from 1 to 64, by default 64 + digest_size_in_bytes = digest_size_in_bytes or 64 + if digest_size_in_bytes < 1 or digest_size_in_bytes > 64 then + error("BLAKE2bp digest length must be from 1 to 64 bytes", 2) + end + key = key or "" + local key_length = #key + if key_length > 64 then + error("BLAKE2bp key length must not exceed 64 bytes", 2) + end + salt = salt or "" + local instances, length, first_dword_of_parameter_block, result = {}, 0.0, 0x02040000 + key_length * 256 + digest_size_in_bytes + for j = 1, 4 do + local bytes_compressed, tail, H_lo, H_hi = 0.0, "", {unpack(sha2_H_lo)}, not HEX64 and {unpack(sha2_H_hi)} + instances[j] = {bytes_compressed, tail, H_lo, H_hi} + H_lo[1] = XORA5(H_lo[1], first_dword_of_parameter_block) + H_lo[2] = XORA5(H_lo[2], j-1) + H_lo[3] = XORA5(H_lo[3], 0x4000) + if salt ~= "" then + xor_blake2_salt(salt, "b", H_lo, H_hi) + end + end + + local function partial(message_part) + if message_part then + if instances then + local from = 0 + while true do + local to = math_min(from + 128 - length % 128, #message_part) + if to > from then + local inst = instances[floor(length / 128) % 4 + 1] + local part = sub(message_part, from + 1, to) + length, from = length + to - from, to + local bytes_compressed, tail = inst[1], inst[2] + if #tail < 128 then + tail = tail..part + else + local H_lo, H_hi = inst[3], inst[4] + bytes_compressed = blake2b_feed_128(H_lo, H_hi, tail, 0, 128, bytes_compressed) + tail = part + end + inst[1], inst[2] = bytes_compressed, tail + else + break + end + end + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if instances then + local root_H_lo, root_H_hi = {unpack(sha2_H_lo)}, not HEX64 and {unpack(sha2_H_hi)} + root_H_lo[1] = XORA5(root_H_lo[1], first_dword_of_parameter_block) + root_H_lo[3] = XORA5(root_H_lo[3], 0x4001) + if salt ~= "" then + xor_blake2_salt(salt, "b", root_H_lo, root_H_hi) + end + for j = 1, 4 do + local inst = instances[j] + local bytes_compressed, tail, H_lo, H_hi = inst[1], inst[2], inst[3], inst[4] + blake2b_feed_128(H_lo, H_hi, tail..string_rep("\0", 128 - #tail), 0, 128, bytes_compressed, #tail, j == 4) + if j % 2 == 0 then + local index = 0 + for k = j - 1, j do + local inst = instances[k] + local H_lo, H_hi = inst[3], inst[4] + for i = 1, 8 do + index = index + 1 + common_W_blake2b[index] = H_lo[i] + if H_hi then + index = index + 1 + common_W_blake2b[index] = H_hi[i] + end + end + end + blake2b_feed_128(root_H_lo, root_H_hi, nil, 0, 128, 128 * (j/2 - 1), j == 4 and 128, j == 4) + end + end + instances = nil + local max_reg = ceil(digest_size_in_bytes / 8) + if HEX64 then + for j = 1, max_reg do + root_H_lo[j] = HEX64(root_H_lo[j]) + end + else + for j = 1, max_reg do + root_H_lo[j] = HEX(root_H_hi[j])..HEX(root_H_lo[j]) + end + end + result = sub(gsub(table_concat(root_H_lo, "", 1, max_reg), "(..)(..)(..)(..)(..)(..)(..)(..)", "%8%7%6%5%4%3%2%1"), 1, digest_size_in_bytes * 2) + end + return result + end + end + + if key_length > 0 then + key = key..string_rep("\0", 128 - key_length) + for j = 1, 4 do + partial(key) + end + end + if message then + -- Actually perform calculations and return the BLAKE2bp digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE2bp digest by invoking this function without an argument + return partial + end + +end + +local function blake2x(inner_func, inner_func_letter, common_W_blake2, block_size, digest_size_in_bytes, message, key, salt) + local XOF_digest_length_limit, XOF_digest_length, chunk_by_chunk_output = 2^(block_size / 2) - 1 + if digest_size_in_bytes == -1 then -- infinite digest + digest_size_in_bytes = math_huge + XOF_digest_length = floor(XOF_digest_length_limit) + chunk_by_chunk_output = true + else + if digest_size_in_bytes < 0 then + digest_size_in_bytes = -1.0 * digest_size_in_bytes + chunk_by_chunk_output = true + end + XOF_digest_length = floor(digest_size_in_bytes) + if XOF_digest_length >= XOF_digest_length_limit then + error("Requested digest is too long. BLAKE2X"..inner_func_letter.." finite digest is limited by (2^"..floor(block_size / 2)..")-2 bytes. Hint: you can generate infinite digest.", 2) + end + end + salt = salt or "" + if salt ~= "" then + xor_blake2_salt(salt, inner_func_letter) -- don't xor, only check the size of salt + end + local inner_partial = inner_func(nil, key, salt, nil, XOF_digest_length) + local result + + local function partial(message_part) + if message_part then + if inner_partial then + inner_partial(message_part) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if inner_partial then + local half_W, half_W_size = inner_partial() + half_W_size, inner_partial = half_W_size or 8 + + local function get_hash_block(block_no) + -- block_no = 0...(2^32-1) + local size = math_min(block_size, digest_size_in_bytes - block_no * block_size) + if size <= 0 then + return "" + end + for j = 1, half_W_size do + common_W_blake2[j] = half_W[j] + end + for j = half_W_size + 1, 2 * half_W_size do + common_W_blake2[j] = 0 + end + return inner_func(nil, nil, salt, size, XOF_digest_length, floor(block_no)) + end + + local hash = {} + if chunk_by_chunk_output then + local pos, period, cached_block_no, cached_block = 0, block_size * 2^32 + + local function get_next_part_of_digest(arg1, arg2) + if arg1 == "seek" then + -- Usage #1: get_next_part_of_digest("seek", new_pos) + pos = arg2 % period + else + -- Usage #2: hex_string = get_next_part_of_digest(size) + local size, index = arg1 or 1, 0 + while size > 0 do + local block_offset = pos % block_size + local block_no = (pos - block_offset) / block_size + local part_size = math_min(size, block_size - block_offset) + if cached_block_no ~= block_no then + cached_block_no = block_no + cached_block = get_hash_block(block_no) + end + index = index + 1 + hash[index] = sub(cached_block, block_offset * 2 + 1, (block_offset + part_size) * 2) + size = size - part_size + pos = (pos + part_size) % period + end + return table_concat(hash, "", 1, index) + end + end + + result = get_next_part_of_digest + else + for j = 1.0, ceil(digest_size_in_bytes / block_size) do + hash[j] = get_hash_block(j - 1.0) + end + result = table_concat(hash) + end + end + return result + end + end + + if message then + -- Actually perform calculations and return the BLAKE2X digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE2X digest by invoking this function without an argument + return partial + end +end + +local function blake2xs(digest_size_in_bytes, message, key, salt) + -- digest_size_in_bytes: + -- 0..65534 = get finite digest as single Lua string + -- (-1) = get infinite digest in "chunk-by-chunk" output mode + -- (-2)..(-65534) = get finite digest in "chunk-by-chunk" output mode + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 32 bytes, by default empty string + -- salt: (optional) binary string up to 16 bytes, by default empty string + return blake2x(blake2s, "s", common_W_blake2s, 32, digest_size_in_bytes, message, key, salt) +end + +local function blake2xb(digest_size_in_bytes, message, key, salt) + -- digest_size_in_bytes: + -- 0..4294967294 = get finite digest as single Lua string + -- (-1) = get infinite digest in "chunk-by-chunk" output mode + -- (-2)..(-4294967294) = get finite digest in "chunk-by-chunk" output mode + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 64 bytes, by default empty string + -- salt: (optional) binary string up to 32 bytes, by default empty string + return blake2x(blake2b, "b", common_W_blake2b, 64, digest_size_in_bytes, message, key, salt) +end + + +local function blake3(message, key, digest_size_in_bytes, message_flags, K, return_array) + -- message: binary string to be hashed (or nil for "chunk-by-chunk" input mode) + -- key: (optional) binary string up to 32 bytes, by default empty string + -- digest_size_in_bytes: (optional) by default 32 + -- 0,1,2,3,4,... = get finite digest as single Lua string + -- (-1) = get infinite digest in "chunk-by-chunk" output mode + -- -2,-3,-4,... = get finite digest in "chunk-by-chunk" output mode + -- The last three parameters "message_flags", "K" and "return_array" are for internal use only, user must omit them (or pass nil) + key = key or "" + digest_size_in_bytes = digest_size_in_bytes or 32 + message_flags = message_flags or 0 + if key == "" then + K = K or sha2_H_hi + else + local key_length = #key + if key_length > 32 then + error("BLAKE3 key length must not exceed 32 bytes", 2) + end + key = key..string_rep("\0", 32 - key_length) + K = {} + for j = 1, 8 do + local a, b, c, d = byte(key, 4*j-3, 4*j) + K[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + message_flags = message_flags + 16 -- flag:KEYED_HASH + end + local tail, H, chunk_index, blocks_in_chunk, stack_size, stack = "", {}, 0, 0, 0, {} + local final_H_in, final_block_length, chunk_by_chunk_output, result, wide_output = K + local final_compression_flags = 3 -- flags:CHUNK_START,CHUNK_END + + local function feed_blocks(str, offs, size) + -- size >= 0, size is multiple of 64 + while size > 0 do + local part_size_in_blocks, block_flags, H_in = 1, 0, H + if blocks_in_chunk == 0 then + block_flags = 1 -- flag:CHUNK_START + H_in, final_H_in = K, H + final_compression_flags = 2 -- flag:CHUNK_END + elseif blocks_in_chunk == 15 then + block_flags = 2 -- flag:CHUNK_END + final_compression_flags = 3 -- flags:CHUNK_START,CHUNK_END + final_H_in = K + else + part_size_in_blocks = math_min(size / 64, 15 - blocks_in_chunk) + end + local part_size = part_size_in_blocks * 64 + blake3_feed_64(str, offs, part_size, message_flags + block_flags, chunk_index, H_in, H) + offs, size = offs + part_size, size - part_size + blocks_in_chunk = (blocks_in_chunk + part_size_in_blocks) % 16 + if blocks_in_chunk == 0 then + -- completing the currect chunk + chunk_index = chunk_index + 1.0 + local divider = 2.0 + while chunk_index % divider == 0 do + divider = divider * 2.0 + stack_size = stack_size - 8 + for j = 1, 8 do + common_W_blake2s[j] = stack[stack_size + j] + end + for j = 1, 8 do + common_W_blake2s[j + 8] = H[j] + end + blake3_feed_64(nil, 0, 64, message_flags + 4, 0, K, H) -- flag:PARENT + end + for j = 1, 8 do + stack[stack_size + j] = H[j] + end + stack_size = stack_size + 8 + end + end + end + + local function get_hash_block(block_no) + local size = math_min(64, digest_size_in_bytes - block_no * 64) + if block_no < 0 or size <= 0 then + return "" + end + if chunk_by_chunk_output then + for j = 1, 16 do + common_W_blake2s[j] = stack[j + 16] + end + end + blake3_feed_64(nil, 0, 64, final_compression_flags, block_no, final_H_in, stack, wide_output, final_block_length) + if return_array then + return stack + end + local max_reg = ceil(size / 4) + for j = 1, max_reg do + stack[j] = HEX(stack[j]) + end + return sub(gsub(table_concat(stack, "", 1, max_reg), "(..)(..)(..)(..)", "%4%3%2%1"), 1, size * 2) + end + + local function partial(message_part) + if message_part then + if tail then + local offs = 0 + if tail ~= "" and #tail + #message_part > 64 then + offs = 64 - #tail + feed_blocks(tail..sub(message_part, 1, offs), 0, 64) + tail = "" + end + local size = #message_part - offs + local size_tail = size > 0 and (size - 1) % 64 + 1 or 0 + feed_blocks(message_part, offs, size - size_tail) + tail = tail..sub(message_part, #message_part + 1 - size_tail) + return partial + else + error("Adding more chunks is not allowed after receiving the result", 2) + end + else + if tail then + final_block_length = #tail + tail = tail..string_rep("\0", 64 - #tail) + if common_W_blake2s[0] then + for j = 1, 16 do + local a, b, c, d = byte(tail, 4*j-3, 4*j) + common_W_blake2s[j] = OR(SHL(d, 24), SHL(c, 16), SHL(b, 8), a) + end + else + for j = 1, 16 do + local a, b, c, d = byte(tail, 4*j-3, 4*j) + common_W_blake2s[j] = ((d * 256 + c) * 256 + b) * 256 + a + end + end + tail = nil + for stack_size = stack_size - 8, 0, -8 do + blake3_feed_64(nil, 0, 64, message_flags + final_compression_flags, chunk_index, final_H_in, H, nil, final_block_length) + chunk_index, final_block_length, final_H_in, final_compression_flags = 0, 64, K, 4 -- flag:PARENT + for j = 1, 8 do + common_W_blake2s[j] = stack[stack_size + j] + end + for j = 1, 8 do + common_W_blake2s[j + 8] = H[j] + end + end + final_compression_flags = message_flags + final_compression_flags + 8 -- flag:ROOT + if digest_size_in_bytes < 0 then + if digest_size_in_bytes == -1 then -- infinite digest + digest_size_in_bytes = math_huge + else + digest_size_in_bytes = -1.0 * digest_size_in_bytes + end + chunk_by_chunk_output = true + for j = 1, 16 do + stack[j + 16] = common_W_blake2s[j] + end + end + digest_size_in_bytes = math_min(2^53, digest_size_in_bytes) + wide_output = digest_size_in_bytes > 32 + if chunk_by_chunk_output then + local pos, cached_block_no, cached_block = 0.0 + + local function get_next_part_of_digest(arg1, arg2) + if arg1 == "seek" then + -- Usage #1: get_next_part_of_digest("seek", new_pos) + pos = arg2 * 1.0 + else + -- Usage #2: hex_string = get_next_part_of_digest(size) + local size, index = arg1 or 1, 32 + while size > 0 do + local block_offset = pos % 64 + local block_no = (pos - block_offset) / 64 + local part_size = math_min(size, 64 - block_offset) + if cached_block_no ~= block_no then + cached_block_no = block_no + cached_block = get_hash_block(block_no) + end + index = index + 1 + stack[index] = sub(cached_block, block_offset * 2 + 1, (block_offset + part_size) * 2) + size = size - part_size + pos = pos + part_size + end + return table_concat(stack, "", 33, index) + end + end + + result = get_next_part_of_digest + elseif digest_size_in_bytes <= 64 then + result = get_hash_block(0) + else + local last_block_no = ceil(digest_size_in_bytes / 64) - 1 + for block_no = 0.0, last_block_no do + stack[33 + block_no] = get_hash_block(block_no) + end + result = table_concat(stack, "", 33, 33 + last_block_no) + end + end + return result + end + end + + if message then + -- Actually perform calculations and return the BLAKE3 digest of a message + return partial(message)() + else + -- Return function for chunk-by-chunk loading + -- User should feed every chunk of input data as single argument to this function and finally get BLAKE3 digest by invoking this function without an argument + return partial + end +end + +local function blake3_derive_key(key_material, context_string, derived_key_size_in_bytes) + -- key_material: (string) your source of entropy to derive a key from (for example, it can be a master password) + -- set to nil for feeding the key material in "chunk-by-chunk" input mode + -- context_string: (string) unique description of the derived key + -- digest_size_in_bytes: (optional) by default 32 + -- 0,1,2,3,4,... = get finite derived key as single Lua string + -- (-1) = get infinite derived key in "chunk-by-chunk" output mode + -- -2,-3,-4,... = get finite derived key in "chunk-by-chunk" output mode + if type(context_string) ~= "string" then + error("'context_string' parameter must be a Lua string", 2) + end + local K = blake3(context_string, nil, nil, 32, nil, true) -- flag:DERIVE_KEY_CONTEXT + return blake3(key_material, nil, derived_key_size_in_bytes, 64, K) -- flag:DERIVE_KEY_MATERIAL +end + + + +local sha = { + md5 = md5, -- MD5 + sha1 = sha1, -- SHA-1 + -- SHA-2 hash functions: + sha224 = function (message) return sha256ext(224, message) end, -- SHA-224 + sha256 = function (message) return sha256ext(256, message) end, -- SHA-256 + sha512_224 = function (message) return sha512ext(224, message) end, -- SHA-512/224 + sha512_256 = function (message) return sha512ext(256, message) end, -- SHA-512/256 + sha384 = function (message) return sha512ext(384, message) end, -- SHA-384 + sha512 = function (message) return sha512ext(512, message) end, -- SHA-512 + -- SHA-3 hash functions: + sha3_224 = function (message) return keccak((1600 - 2 * 224) / 8, 224 / 8, false, message) end, -- SHA3-224 + sha3_256 = function (message) return keccak((1600 - 2 * 256) / 8, 256 / 8, false, message) end, -- SHA3-256 + sha3_384 = function (message) return keccak((1600 - 2 * 384) / 8, 384 / 8, false, message) end, -- SHA3-384 + sha3_512 = function (message) return keccak((1600 - 2 * 512) / 8, 512 / 8, false, message) end, -- SHA3-512 + shake128 = function (digest_size_in_bytes, message) return keccak((1600 - 2 * 128) / 8, digest_size_in_bytes, true, message) end, -- SHAKE128 + shake256 = function (digest_size_in_bytes, message) return keccak((1600 - 2 * 256) / 8, digest_size_in_bytes, true, message) end, -- SHAKE256 + -- HMAC: + hmac = hmac, -- HMAC(hash_func, key, message) is applicable to any hash function from this module except SHAKE* and BLAKE* + -- misc utilities: + hex_to_bin = hex_to_bin, -- converts hexadecimal representation to binary string + bin_to_hex = bin_to_hex, -- converts binary string to hexadecimal representation + base64_to_bin = base64_to_bin, -- converts base64 representation to binary string + bin_to_base64 = bin_to_base64, -- converts binary string to base64 representation + -- old style names for backward compatibility: + hex2bin = hex_to_bin, + bin2hex = bin_to_hex, + base642bin = base64_to_bin, + bin2base64 = bin_to_base64, + -- BLAKE2 hash functions: + blake2b = blake2b, -- BLAKE2b (message, key, salt, digest_size_in_bytes) + blake2s = blake2s, -- BLAKE2s (message, key, salt, digest_size_in_bytes) + blake2bp = blake2bp, -- BLAKE2bp(message, key, salt, digest_size_in_bytes) + blake2sp = blake2sp, -- BLAKE2sp(message, key, salt, digest_size_in_bytes) + blake2xb = blake2xb, -- BLAKE2Xb(digest_size_in_bytes, message, key, salt) + blake2xs = blake2xs, -- BLAKE2Xs(digest_size_in_bytes, message, key, salt) + -- BLAKE2 aliases: + blake2 = blake2b, + blake2b_160 = function (message, key, salt) return blake2b(message, key, salt, 20) end, -- BLAKE2b-160 + blake2b_256 = function (message, key, salt) return blake2b(message, key, salt, 32) end, -- BLAKE2b-256 + blake2b_384 = function (message, key, salt) return blake2b(message, key, salt, 48) end, -- BLAKE2b-384 + blake2b_512 = blake2b, -- 64 -- BLAKE2b-512 + blake2s_128 = function (message, key, salt) return blake2s(message, key, salt, 16) end, -- BLAKE2s-128 + blake2s_160 = function (message, key, salt) return blake2s(message, key, salt, 20) end, -- BLAKE2s-160 + blake2s_224 = function (message, key, salt) return blake2s(message, key, salt, 28) end, -- BLAKE2s-224 + blake2s_256 = blake2s, -- 32 -- BLAKE2s-256 + -- BLAKE3 hash function + blake3 = blake3, -- BLAKE3 (message, key, digest_size_in_bytes) + blake3_derive_key = blake3_derive_key, -- BLAKE3_KDF(key_material, context_string, derived_key_size_in_bytes) +} + + +block_size_for_HMAC = { + [sha.md5] = 64, + [sha.sha1] = 64, + [sha.sha224] = 64, + [sha.sha256] = 64, + [sha.sha512_224] = 128, + [sha.sha512_256] = 128, + [sha.sha384] = 128, + [sha.sha512] = 128, + [sha.sha3_224] = 144, -- (1600 - 2 * 224) / 8 + [sha.sha3_256] = 136, -- (1600 - 2 * 256) / 8 + [sha.sha3_384] = 104, -- (1600 - 2 * 384) / 8 + [sha.sha3_512] = 72, -- (1600 - 2 * 512) / 8 +} + + +return sha diff --git a/runtime/lua/socket.lua b/runtime/lua/socket.lua new file mode 100644 index 0000000000..d1c0b16492 --- /dev/null +++ b/runtime/lua/socket.lua @@ -0,0 +1,149 @@ +----------------------------------------------------------------------------- +-- LuaSocket helper module +-- Author: Diego Nehab +----------------------------------------------------------------------------- + +----------------------------------------------------------------------------- +-- Declare module and import dependencies +----------------------------------------------------------------------------- +local base = _G +local string = require("string") +local math = require("math") +local socket = require("socket.core") + +local _M = socket + +----------------------------------------------------------------------------- +-- Exported auxiliar functions +----------------------------------------------------------------------------- +function _M.connect4(address, port, laddress, lport) + return socket.connect(address, port, laddress, lport, "inet") +end + +function _M.connect6(address, port, laddress, lport) + return socket.connect(address, port, laddress, lport, "inet6") +end + +function _M.bind(host, port, backlog) + if host == "*" then host = "0.0.0.0" end + local addrinfo, err = socket.dns.getaddrinfo(host); + if not addrinfo then return nil, err end + local sock, res + err = "no info on address" + for i, alt in base.ipairs(addrinfo) do + if alt.family == "inet" then + sock, err = socket.tcp4() + else + sock, err = socket.tcp6() + end + if not sock then return nil, err end + sock:setoption("reuseaddr", true) + res, err = sock:bind(alt.addr, port) + if not res then + sock:close() + else + res, err = sock:listen(backlog) + if not res then + sock:close() + else + return sock + end + end + end + return nil, err +end + +_M.try = _M.newtry() + +function _M.choose(table) + return function(name, opt1, opt2) + if base.type(name) ~= "string" then + name, opt1, opt2 = "default", name, opt1 + end + local f = table[name or "nil"] + if not f then base.error("unknown key (".. base.tostring(name) ..")", 3) + else return f(opt1, opt2) end + end +end + +----------------------------------------------------------------------------- +-- Socket sources and sinks, conforming to LTN12 +----------------------------------------------------------------------------- +-- create namespaces inside LuaSocket namespace +local sourcet, sinkt = {}, {} +_M.sourcet = sourcet +_M.sinkt = sinkt + +_M.BLOCKSIZE = 2048 + +sinkt["close-when-done"] = function(sock) + return base.setmetatable({ + getfd = function() return sock:getfd() end, + dirty = function() return sock:dirty() end + }, { + __call = function(self, chunk, err) + if not chunk then + sock:close() + return 1 + else return sock:send(chunk) end + end + }) +end + +sinkt["keep-open"] = function(sock) + return base.setmetatable({ + getfd = function() return sock:getfd() end, + dirty = function() return sock:dirty() end + }, { + __call = function(self, chunk, err) + if chunk then return sock:send(chunk) + else return 1 end + end + }) +end + +sinkt["default"] = sinkt["keep-open"] + +_M.sink = _M.choose(sinkt) + +sourcet["by-length"] = function(sock, length) + return base.setmetatable({ + getfd = function() return sock:getfd() end, + dirty = function() return sock:dirty() end + }, { + __call = function() + if length <= 0 then return nil end + local size = math.min(socket.BLOCKSIZE, length) + local chunk, err = sock:receive(size) + if err then return nil, err end + length = length - string.len(chunk) + return chunk + end + }) +end + +sourcet["until-closed"] = function(sock) + local done + return base.setmetatable({ + getfd = function() return sock:getfd() end, + dirty = function() return sock:dirty() end + }, { + __call = function() + if done then return nil end + local chunk, err, partial = sock:receive(socket.BLOCKSIZE) + if not err then return chunk + elseif err == "closed" then + sock:close() + done = 1 + return partial + else return nil, err end + end + }) +end + + +sourcet["default"] = sourcet["until-closed"] + +_M.source = _M.choose(sourcet) + +return _M diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index f848e5c9fd..024417aa64 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -8,13 +8,11 @@ local t_insert = table.insert local t_remove = table.remove local b_rshift = bit.rshift local band = bit.band +local m_max = math.max +local dkjson = require "dkjson" local realmList = { - { label = "PC", id = "PC", realmCode = "pc", hostName = "https://www.pathofexile.com/", profileURL = "account/view-profile/" }, - { label = "Xbox", id = "XBOX", realmCode = "xbox", hostName = "https://www.pathofexile.com/", profileURL = "account/view-profile/" }, - { label = "PS4", id = "SONY", realmCode = "sony", hostName = "https://www.pathofexile.com/", profileURL = "account/view-profile/" }, - { label = "Hotcool", id = "PC", realmCode = "pc", hostName = "https://pathofexile.tw/", profileURL = "account/view-profile/" }, - { label = "Tencent", id = "PC", realmCode = "pc", hostName = "https://poe.game.qq.com/", profileURL = "account/view-profile/" }, + { label = "PoE2", id = "PoE2", realmCode = "poe2", hostName = "https://www.pathofexile.com/", profileURL = "account/view-profile/" }, } local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(self, build) @@ -22,124 +20,52 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function( self.Control() self.build = build + self.api = new("PoEAPI", main.lastToken, main.lastRefreshToken, main.tokenExpiry) - self.charImportMode = "GETACCOUNTNAME" - self.charImportStatus = colorCodes.WARNING.."Not yet Enabled by GGG\n^7We are waiting on GGG to create the API to let us import characters from in-game" - self.controls.sectionCharImport = new("SectionControl", {"TOPLEFT",self,"TOPLEFT"}, {10, 18, 650, 250}, "Character Import") + self.charImportMode = "AUTHENTICATION" + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + self.controls.sectionCharImport = new("SectionControl", {"TOPLEFT",self,"TOPLEFT"}, {10, 18, 650, 200}, "Character Import") self.controls.charImportStatusLabel = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 14, 200, 16}, function() - return "^7Character import status: "..self.charImportStatus + return "^7Character import status: "..(type(self.charImportStatus) == "function" and self.charImportStatus() or self.charImportStatus) end) self.controls.characterImportAnchor = new("Control", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}) - self.controls.characterImportAnchor.shown = false - self.controls.sectionCharImport.height = function() return self.controls.characterImportAnchor.shown and 650 or 60 end + self.controls.sectionCharImport.height = function() return self.charImportMode == "AUTHENTICATION" and 60 or 200 end - -- Stage: input account name - self.controls.accountNameHeader = new("LabelControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7To start importing a character, enter the character's account name:") - self.controls.accountNameHeader.shown = function() - return self.charImportMode == "GETACCOUNTNAME" - end - self.controls.accountRealm = new("DropDownControl", {"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, {0, 4, 60, 20}, realmList ) - self.controls.accountRealm:SelByValue( main.lastRealm or "PC", "id" ) - self.controls.accountName = new("EditControl", {"LEFT",self.controls.accountRealm,"RIGHT"}, {8, 0, 200, 20}, main.lastAccountName or "", nil, "%c", nil, nil, nil, nil, true) - self.controls.accountName.pasteFilter = function(text) - return text:gsub("[\128-\255]",function(c) - return codePointToUTF8(c:byte(1)):gsub(".",function(c) - return string.format("%%%X", c:byte(1)) - end) - end) - end - -- accountHistory Control - if not historyList then - historyList = { } - for accountName, account in pairs(main.gameAccounts) do - t_insert(historyList, accountName) - historyList[accountName] = true - end - table.sort(historyList, function(a,b) - return a:lower() < b:lower() - end) - end -- don't load the list many times - self.controls.accountNameGo = new("ButtonControl", {"LEFT",self.controls.accountName,"RIGHT"}, {8, 0, 60, 20}, "Start", function() - self.controls.sessionInput.buf = "" - self:DownloadCharacterList() - end) - self.controls.accountNameGo.enabled = function() - return self.controls.accountName.buf:match("%S[#%-]%d%d%d%d$") - end - self.controls.accountNameGo.tooltipFunc = function(tooltip) - tooltip:Clear() - if not self.controls.accountName.buf:match("[#%-]%d%d%d%d$") then - tooltip:AddLine(16, "^7Missing discriminator e.g. " .. self.controls.accountName.buf .. "#1234") - end - end + -- Stage: Authenticate + self.controls.authenticateButton = new("ButtonControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7Authorize with Path of Exile", function() + self.api:FetchAuthToken(function() + if self.api.authToken then + self.charImportMode = "GETACCOUNTNAME" + self.charImportStatus = "Authenticated" - self.controls.accountHistory = new("DropDownControl", {"LEFT",self.controls.accountNameGo,"RIGHT"}, {8, 0, 200, 20}, historyList, function() - self.controls.accountName.buf = self.controls.accountHistory.list[self.controls.accountHistory.selIndex] - end) - self.controls.accountHistory:SelByValue(main.lastAccountName) - self.controls.accountHistory:CheckDroppedWidth(true) - - self.controls.removeAccount = new("ButtonControl", {"LEFT",self.controls.accountHistory,"RIGHT"}, {8, 0, 20, 20}, "X", function() - local accountName = self.controls.accountHistory.list[self.controls.accountHistory.selIndex] - if (accountName ~= nil) then - t_remove(self.controls.accountHistory.list, self.controls.accountHistory.selIndex) - self.controls.accountHistory.list[accountName] = nil - main.gameAccounts[accountName] = nil - end + main.lastToken = self.api.authToken + main.lastRefreshToken = self.api.refreshToken + main.tokenExpiry = self.api.tokenExpiry + main:SaveSettings() + self:DownloadCharacterList() + else + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + end + end) + local clickTime = os.time() + self.charImportStatus = function() return "Logging in... (" .. m_max(0, (clickTime + 30) - os.time()) .. ")" end end) - - self.controls.removeAccount.tooltipFunc = function(tooltip) - tooltip:Clear() - tooltip:AddLine(16, "^7Removes account from the dropdown list") + self.controls.authenticateButton.shown = function() + return self.charImportMode == "AUTHENTICATION" end - self.controls.accountNameUnicode = new("LabelControl", {"TOPLEFT",self.controls.accountRealm,"BOTTOMLEFT"}, {0, 34, 0, 14}, "^7Note: if the account name contains non-ASCII characters then it must be URL encoded first.") - self.controls.accountNameURLEncoder = new("ButtonControl", {"TOPLEFT",self.controls.accountNameUnicode,"BOTTOMLEFT"}, {0, 4, 170, 18}, "^x4040FFhttps://www.urlencoder.org/", function() - OpenURL("https://www.urlencoder.org/") - end) - - self.controls.accountNameMissingDiscriminator = new("LabelControl", {"BOTTOMLEFT",self.controls.accountNameUnicode,"TOPLEFT"}, {0, -4, 0, 18}, "^1Missing discriminator e.g. #1234") - self.controls.accountNameMissingDiscriminator.shown = function() - return not self.controls.accountName.buf:match("[#%-]%d%d%d%d$") + -- Stage: fetch characters + self.controls.accountNameHeader = new("LabelControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7To start importing a character, select your character's realm:") + self.controls.accountNameHeader.shown = function() + return self.charImportMode == "GETACCOUNTNAME" end - + self.controls.accountRealm = new("DropDownControl", {"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, {0, 4, 60, 20}, realmList ) + self.controls.accountRealm:SelByValue( main.lastRealm or "PC", "id" ) - -- Stage: input POESESSID - self.controls.sessionHeader = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 14}) - self.controls.sessionHeader.label = function() - return [[ -^7The list of characters on ']]..self.controls.accountName.buf..[[' couldn't be retrieved. This may be because: -1. You are missing the discriminator at the end of the account name e.g. #1234 -2. You entered a character name instead of an account name or -3. This account's characters tab is hidden (this is the default setting). -If this is your account, you can either: -1. Uncheck "Hide Characters" in your privacy settings or -2. Enter a POESESSID below. -You can get this from your web browser's cookies while logged into the Path of Exile website. - ]] - end - self.controls.sessionHeader.shown = function() - return self.charImportMode == "GETSESSIONID" - end - self.controls.sessionRetry = new("ButtonControl", {"TOPLEFT",self.controls.sessionHeader,"TOPLEFT"}, {0, 122, 60, 20}, "Retry", function() - self:DownloadCharacterList() - end) - self.controls.sessionCancel = new("ButtonControl", {"LEFT",self.controls.sessionRetry,"RIGHT"}, {8, 0, 60, 20}, "Cancel", function() - self.charImportMode = "GETACCOUNTNAME" - self.charImportStatus = "Idle" - end) - self.controls.sessionPrivacySettings = new("ButtonControl", {"LEFT",self.controls.sessionCancel,"RIGHT"}, {8, 0, 120, 20}, "Privacy Settings", function() - OpenURL('https://www.pathofexile.com/my-account/privacy') - end) - self.controls.sessionInput = new("EditControl", {"TOPLEFT",self.controls.sessionRetry,"BOTTOMLEFT"}, {0, 8, 350, 20}, "", "POESESSID", "%X", 32) - self.controls.sessionInput:SetProtected(true) - self.controls.sessionGo = new("ButtonControl", {"LEFT",self.controls.sessionInput,"RIGHT"}, {8, 0, 60, 20}, "Go", function() + self.controls.accountNameGo = new("ButtonControl", {"LEFT",self.controls.accountNameHeader,"RIGHT"}, {8, 0, 60, 20}, "Start", function() self:DownloadCharacterList() end) - self.controls.sessionGo.enabled = function() - return #self.controls.sessionInput.buf == 32 - end -- Stage: select character and import data self.controls.charSelectHeader = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}, "^7Choose character to import data from:") @@ -177,11 +103,6 @@ You can get this from your web browser's cookies while logged into the Path of E self.controls.charImportItemsClearSkills = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {85, 0, 18}, "Delete skills:", nil, "Delete all existing skills when importing.", true) self.controls.charImportItemsClearItems = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {220, 0, 18}, "Delete equipment:", nil, "Delete all equipped items when importing.", true) self.controls.charImportItemsIgnoreWeaponSwap = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {380, 0, 18}, "Ignore weapon swap:", nil, "Ignore items and skills in weapon swap.", false) - - self.controls.charClose = new("ButtonControl", {"TOPLEFT",self.controls.charImportHeader,"BOTTOMLEFT"}, {0, 90, 60, 20}, "Close", function() - self.charImportMode = "GETACCOUNTNAME" - self.charImportStatus = "Idle" - end) -- Build import/export self.controls.sectionBuild = new("SectionControl", {"TOPLEFT",self.controls.sectionCharImport,"BOTTOMLEFT",true}, {0, 18, 650, 182}, "Build Sharing") @@ -262,6 +183,7 @@ You can get this from your web browser's cookies while logged into the Path of E self.importCodeDetail = "" self.importCodeXML = nil self.importCodeValid = false + self.importCodeJson = nil if #buf == 0 then return @@ -291,6 +213,28 @@ You can get this from your web browser's cookies while logged into the Path of E end end + -- If we are in dev mode and the string is a json + if launch.devMode and urlText:match("^%{.*%}$") ~= nil then + local jsonData, _, errDecode = dkjson.decode(urlText) + if errDecode then + self.importCodeDetail = colorCodes.NEGATIVE.."Invalid JSON format (decode error)" + return + end + if not jsonData.character then + self.importCodeDetail = colorCodes.NEGATIVE.."Invalid JSON format (character missing)" + return + end + jsonData = jsonData.character + if not jsonData.equipment or not jsonData.passives then + self.importCodeDetail = colorCodes.NEGATIVE.."Invalid JSON format (equipment or passives missing)" + return + end + self.importCodeJson = jsonData + self.importCodeDetail = colorCodes.POSITIVE.."JSON is valid" + self.importCodeValid = true + return + end + local xmlText = Inflate(common.base64.decode(buf:gsub("-","+"):gsub("_","/"))) if not xmlText then return @@ -352,6 +296,12 @@ You can get this from your web browser's cookies while logged into the Path of E return end + if self.importCodeJson then + self:ImportItemsAndSkills(self.importCodeJson) + self:ImportPassiveTreeAndJewels(self.importCodeJson) + return + end + importSelectedBuild() end) self.controls.importCodeGo.label = function () @@ -365,8 +315,32 @@ You can get this from your web browser's cookies while logged into the Path of E self.controls.importCodeGo.onClick() end end + + -- validate the status of the api the first time + self.api:ValidateAuth(function(valid, updateSettings) + if valid then + if self.charImportMode == "AUTHENTICATION" then + self.charImportMode = "GETACCOUNTNAME" + self.charImportStatus = "Authenticated" + self:DownloadCharacterList() + end + if updateSettings then + self:SaveApiSettings() + end + else + self.charImportMode = "AUTHENTICATION" + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + end + end) end) +function ImportTabClass:SaveApiSettings() + main.lastToken = self.api.authToken + main.lastRefreshToken = self.api.refreshToken + main.tokenExpiry = self.api.tokenExpiry + main:SaveSettings() +end + function ImportTabClass:Load(xml, fileName) self.lastRealm = xml.attrib.lastRealm self.controls.accountRealm:SelByValue( self.lastRealm or main.lastRealm or "PC", "id" ) @@ -417,17 +391,15 @@ function ImportTabClass:DownloadCharacterList() self.charImportMode = "DOWNLOADCHARLIST" self.charImportStatus = "Retrieving character list..." local realm = realmList[self.controls.accountRealm.selIndex] - local accountName - -- Handle spaces in the account name - if realm.realmCode == "pc" then - accountName = self.controls.accountName.buf:gsub("%s+", "") - else - accountName = self.controls.accountName.buf:gsub("^[%s?]+", ""):gsub("[%s?]+$", ""):gsub("%s", "+") - end - accountName = accountName:gsub("(.*)[#%-]", "%1#") - local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) - launch:DownloadPage(realm.hostName.."character-window/get-characters?accountName="..accountName:gsub("#", "%%23").."&realm="..realm.realmCode, function(response, errMsg) - if errMsg == "Response code: 401" then + self.api:DownloadCharacterList(realm.realmCode, function(body, errMsg, updateSettings) + if updateSettings then + self:SaveApiSettings() + end + if errMsg == self.api.ERROR_NO_AUTH then + self.charImportMode = "AUTHENTICATION" + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + return + elseif errMsg == "Response code: 401" then self.charImportStatus = colorCodes.NEGATIVE.."Sign-in is required." self.charImportMode = "GETSESSIONID" return @@ -439,75 +411,60 @@ function ImportTabClass:DownloadCharacterList() self.charImportStatus = colorCodes.NEGATIVE.."Account name is incorrect." self.charImportMode = "GETACCOUNTNAME" return + elseif errMsg == "Response code: 429" then + self.charImportStatus = function() return colorCodes.NEGATIVE.."Requests are being sent too fast, try again in " .. tostring(m_max(0, body - os.time())) .. " seconds." end + self.charImportMode = "GETACCOUNTNAME" + return elseif errMsg then self.charImportStatus = colorCodes.NEGATIVE.."Error retrieving character list, try again ("..errMsg:gsub("\n"," ")..")" self.charImportMode = "GETACCOUNTNAME" return end - local charList, errMsg = self:ProcessJSON(response.body) - if errMsg then + local charList, _pos, errDecode = dkjson.decode(body) + if errDecode then self.charImportStatus = colorCodes.NEGATIVE.."Error processing character list, try again later" self.charImportMode = "GETACCOUNTNAME" return end + charList = charList.characters --ConPrintTable(charList) if #charList == 0 then self.charImportStatus = colorCodes.NEGATIVE.."The account has no characters to import." self.charImportMode = "GETACCOUNTNAME" return end - -- GGG's character API has an issue where for /get-characters the account name is not case-sensitive, but for /get-passive-skills and /get-items it is. - -- This workaround grabs the profile page and extracts the correct account name from one of the URLs. - launch:DownloadPage(realm.hostName..realm.profileURL..accountName:gsub("#", "%%23"), function(response, errMsg) - if errMsg then - self.charImportStatus = colorCodes.NEGATIVE.."Error retrieving character list, try again ("..errMsg:gsub("\n"," ")..")" - self.charImportMode = "GETACCOUNTNAME" - return - end - local realAccountName = response.body:match("/view%-profile/([^/]+)/characters"):gsub(".", function(c) if c:byte(1) > 127 then return string.format("%%%2X",c:byte(1)) else return c end end) - if not realAccountName then - self.charImportStatus = colorCodes.NEGATIVE.."Failed to retrieve character list." - self.charImportMode = "GETSESSIONID" - return - end - realAccountName = realAccountName:gsub("(.*)[#%-]", "%1#") - accountName = realAccountName - self.controls.accountName:SetText(realAccountName) - self.charImportStatus = "Character list successfully retrieved." - self.charImportMode = "SELECTCHAR" - self.lastRealm = realm.id - main.lastRealm = realm.id - self.lastAccountHash = common.sha1(accountName) - main.lastAccountName = accountName - main.gameAccounts[accountName] = main.gameAccounts[accountName] or { } - main.gameAccounts[accountName].sessionID = sessionID - local leagueList = { } - for i, char in ipairs(charList) do - if not isValueInArray(leagueList, char.league) then - t_insert(leagueList, char.league) - end + + self.charImportStatus = "Character list successfully retrieved." + self.charImportMode = "SELECTCHAR" + self.lastRealm = realm.id + main.lastRealm = realm.id + local leagueList = { } + for i, char in ipairs(charList) do + -- validate if the class have internal class + if self.build.latestTree.internalAscendNameMap[char.class] ~= nil then + char.class = self.build.latestTree.internalAscendNameMap[char.class].ascendClass.name end - table.sort(leagueList) - wipeTable(self.controls.charSelectLeague.list) - for _, league in ipairs(leagueList) do - t_insert(self.controls.charSelectLeague.list, { - label = league, - league = league, - }) + if not isValueInArray(leagueList, char.league) then + t_insert(leagueList, char.league) end + end + table.sort(leagueList) + wipeTable(self.controls.charSelectLeague.list) + for _, league in ipairs(leagueList) do t_insert(self.controls.charSelectLeague.list, { - label = "All", + label = league, + league = league, }) - if self.controls.charSelectLeague.selIndex > #self.controls.charSelectLeague.list then - self.controls.charSelectLeague.selIndex = 1 - end - self.lastCharList = charList - self:BuildCharacterList(self.controls.charSelectLeague:GetSelValueByKey("league")) - - -- We only get here if the accountname was correct, found, and not private, so add it to the account history. - self:SaveAccountHistory() - end, sessionID and { header = "Cookie: POESESSID=" .. sessionID }) - end, sessionID and { header = "Cookie: POESESSID=" .. sessionID }) + end + t_insert(self.controls.charSelectLeague.list, { + label = "All", + }) + if self.controls.charSelectLeague.selIndex > #self.controls.charSelectLeague.list then + self.controls.charSelectLeague.selIndex = 1 + end + self.lastCharList = charList + self:BuildCharacterList(self.controls.charSelectLeague:GetSelValueByKey("league")) + end) end function ImportTabClass:BuildCharacterList(league) @@ -521,25 +478,8 @@ function ImportTabClass:BuildCharacterList(league) classColor = colorCodes.DEFAULT if charClass ~= "?" then - classColor = colorCodes[charClass:upper()] - - if classColor == nil then - if (charClass == "Elementalist" or charClass == "Necromancer" or charClass == "Occultist") then - classColor = colorCodes["WITCH"] - elseif (charClass == "Guardian" or charClass == "Inquisitor" or charClass == "Hierophant") then - classColor = colorCodes["TEMPLAR"] - elseif (charClass == "Assassin" or charClass == "Trickster" or charClass == "Saboteur") then - classColor = colorCodes["SHADOW"] - elseif (charClass == "Gladiator" or charClass == "Slayer" or charClass == "Champion") then - classColor = colorCodes["DUELIST"] - elseif (charClass == "Raider" or charClass == "Pathfinder" or charClass == "Deadeye" or charClass == "Warden") then - classColor = colorCodes["RANGER"] - elseif (charClass == "Juggernaut" or charClass == "Berserker" or charClass == "Chieftain") then - classColor = colorCodes["MARAUDER"] - elseif (charClass == "Ascendant") then - classColor = colorCodes["SCION"] - end - end + local tree = main:LoadTree(latestTreeVersion .. (char.league:match("Ruthless") and "_ruthless" or "")) + classColor = colorCodes[charClass:upper()] or colorCodes[tree.ascendNameMap[charClass].class.name:upper()] or "^7" end local detail @@ -570,91 +510,69 @@ function ImportTabClass:BuildCharacterList(league) end end -function ImportTabClass:SaveAccountHistory() - if not historyList[self.controls.accountName.buf] then - t_insert(historyList, self.controls.accountName.buf) - historyList[self.controls.accountName.buf] = true - table.sort(historyList, function(a,b) - return a:lower() < b:lower() - end) - self.controls.accountHistory:CheckDroppedWidth(true) - self.controls.accountHistory:SelByValue(self.controls.accountName.buf) - end -end - -function ImportTabClass:DownloadPassiveTree() +function ImportTabClass:DownloadCharacter(callback) self.charImportMode = "IMPORTING" - self.charImportStatus = "Retrieving character passive tree..." + self.charImportStatus = "Retrieving character data..." local realm = realmList[self.controls.accountRealm.selIndex] - local accountName = self.controls.accountName.buf - local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) local charSelect = self.controls.charSelect local charData = charSelect.list[charSelect.selIndex].char - launch:DownloadPage(realm.hostName.."character-window/get-passive-skills?accountName="..accountName:gsub("#", "%%23").."&character="..charData.name.."&realm="..realm.realmCode, function(response, errMsg) + self.api:DownloadCharacter(realm.realmCode, charData.name, function(body, errMsg, updateSettings) self.charImportMode = "SELECTCHAR" + if updateSettings then + self:SaveApiSettings() + end if errMsg then - self.charImportStatus = colorCodes.NEGATIVE.."Error importing character data, try again ("..errMsg:gsub("\n"," ")..")" - return - elseif response.body == "false" then + if errMsg == self.api.ERROR_NO_AUTH then + self.charImportMode = "AUTHENTICATION" + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + return + elseif errMsg == "Response code: 429" then + self.charImportStatus = function() return colorCodes.NEGATIVE.."Requests are being sent too fast, try again in " .. tostring(m_max(0, body - os.time())) .. " seconds." end + self.charImportMode = "GETACCOUNTNAME" + return + else + self.charImportStatus = colorCodes.NEGATIVE.."Error importing character data, try again ("..errMsg:gsub("\n"," ")..")" + return + end + elseif body == "false" then self.charImportStatus = colorCodes.NEGATIVE.."Failed to retrieve character data, try again." return end self.lastCharacterHash = common.sha1(charData.name) - self:ImportPassiveTreeAndJewels(response.body, charData) - end, sessionID and { header = "Cookie: POESESSID=" .. sessionID }) -end + --local out = io.open("get-passive-skills.json", "w") + --out:write(json) + --out:close() + local fullCharData, _pos, errParsing = dkjson.decode(body) + --local out = io.open("get-passive-skills.json", "w") + --writeLuaTable(out, charPassiveData, 1) + --out:close() -function ImportTabClass:DownloadItems() - self.charImportMode = "IMPORTING" - self.charImportStatus = "Retrieving character items..." - local realm = realmList[self.controls.accountRealm.selIndex] - local accountName = self.controls.accountName.buf - local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) - local charSelect = self.controls.charSelect - local charData = charSelect.list[charSelect.selIndex].char - launch:DownloadPage(realm.hostName.."character-window/get-items?accountName="..accountName:gsub("#", "%%23").."&character="..charData.name.."&realm="..realm.realmCode, function(response, errMsg) - self.charImportMode = "SELECTCHAR" - if errMsg then - self.charImportStatus = colorCodes.NEGATIVE.."Error importing character data, try again ("..errMsg:gsub("\n"," ")..")" - return - elseif response.body == "false" then - self.charImportStatus = colorCodes.NEGATIVE.."Failed to retrieve character data, try again." + if errParsing then + self.charImportStatus = colorCodes.NEGATIVE.."Error processing character data, try again later." return end - self.lastCharacterHash = common.sha1(charData.name) - self:ImportItemsAndSkills(response.body) - end, sessionID and { header = "Cookie: POESESSID=" .. sessionID }) + fullCharData = fullCharData.character + charSelect.list[charSelect.selIndex].char = fullCharData + callback(fullCharData) + end) end -function ImportTabClass:ImportPassiveTreeAndJewels(json, charData) - --local out = io.open("get-passive-skills.json", "w") - --out:write(json) - --out:close() - local charPassiveData, errMsg = self:ProcessJSON(json) - --local out = io.open("get-passive-skills.json", "w") - --writeLuaTable(out, charPassiveData, 1) - --out:close() - - -- 3.16+ - if charPassiveData.mastery_effects then - local mastery, effect = 0, 0 - for key, value in pairs(charPassiveData.mastery_effects) do - if type(value) ~= "string" then - break - end - mastery = band(tonumber(value), 65535) - effect = b_rshift(tonumber(value), 16) - t_insert(charPassiveData.mastery_effects, mastery, effect) - end - end +function ImportTabClass:DownloadPassiveTree() + self:DownloadCharacter(function(charData) + self:ImportPassiveTreeAndJewels(charData) + end) +end - if errMsg then - self.charImportStatus = colorCodes.NEGATIVE.."Error processing character data, try again later." - return - end +function ImportTabClass:DownloadItems() + self:DownloadCharacter(function(charData) + self:ImportItemsAndSkills(charData) + end) +end + +function ImportTabClass:ImportPassiveTreeAndJewels(charData) + local charPassiveData = charData.passives self.charImportStatus = colorCodes.POSITIVE.."Passive tree and jewels successfully imported." self.build.spec.jewel_data = copyTable(charPassiveData.jewel_data) - self.build.spec.extended_hashes = copyTable(charPassiveData.hashes_ex) --ConPrintTable(charPassiveData) if self.controls.charImportTreeClearJewels.state then for _, slot in pairs(self.build.itemsTab.slots) do @@ -664,13 +582,42 @@ function ImportTabClass:ImportPassiveTreeAndJewels(json, charData) end end end - for _, itemData in pairs(charPassiveData.items) do + for _, itemData in ipairs(charData.jewels) do self:ImportItem(itemData) end self.build.itemsTab:PopulateSlots() self.build.itemsTab:AddUndoState() - self.build.spec:ImportFromNodeList(charPassiveData.character, charPassiveData.ascendancy, charPassiveData.alternate_ascendancy or 0, charPassiveData.hashes, charPassiveData.skill_overrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) + local hashes = copyTable(charPassiveData.hashes, true) + local weaponSets = {} + for setName, nodesId in pairs(charPassiveData.specialisations) do + local weaponSet = tonumber(setName:match("^set(%d)")) + for _, nodeId in ipairs(nodesId) do + weaponSets[nodeId] = weaponSet + t_insert(hashes, nodeId) + end + end + + -- attributes nodes + self.build.spec.hashOverrides = {} + for skillId, nodeInfo in pairs(charPassiveData.skill_overrides) do + local changeAttributeId = 0 + if nodeInfo.name == "Intelligence" then + changeAttributeId = 3 + elseif nodeInfo.name == "Dexterity" then + changeAttributeId = 2 + elseif nodeInfo.name == "Strength" then + changeAttributeId = 1 + end + + if changeAttributeId > 0 then + self.build.spec:SwitchAttributeNode(tonumber(skillId), changeAttributeId) + end + end + + local attributesOverrides = copyTable(self.build.spec.hashOverrides, true) + + self.build.spec:ImportFromNodeList(charData.class, nil, nil, charPassiveData.alternate_ascendancy or 0, hashes, weaponSets, attributesOverrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) self.build.spec:AddUndoState() self.build.characterLevel = charData.level self.build.characterLevelAutoMode = false @@ -691,15 +638,8 @@ function ImportTabClass:ImportPassiveTreeAndJewels(json, charData) main:SetWindowTitleSubtext(string.format("%s (%s, %s, %s)", self.build.buildName, charData.name, charData.class, charData.league)) end -function ImportTabClass:ImportItemsAndSkills(json) - --local out = io.open("get-items.json", "w") - --out:write(json) - --out:close() - local charItemData, errMsg = self:ProcessJSON(json) - if errMsg then - self.charImportStatus = colorCodes.NEGATIVE.."Error processing character data, try again later." - return - end +function ImportTabClass:ImportItemsAndSkills(charData) + local charItemData = charData.equipment if self.controls.charImportItemsClearItems.state then for _, slot in pairs(self.build.itemsTab.slots) do if slot.selItemId ~= 0 and not slot.nodeId then @@ -723,9 +663,50 @@ function ImportTabClass:ImportItemsAndSkills(json) end self.charImportStatus = colorCodes.POSITIVE.."Items and skills successfully imported." --ConPrintTable(charItemData) - for _, itemData in pairs(charItemData.items) do + for _, itemData in ipairs(charItemData) do self:ImportItem(itemData) end + + local funcGetGemInstance = function(skillData) + local typeLine = sanitiseText(skillData.typeLine) .. (skillData.support and " Support" or "") + local gemId = self.build.data.gemForBaseName[typeLine:lower()] + + if gemId then + local gemInstance = { level = 20, quality = 0, enabled = true, enableGlobal1 = true, gemId = gemId } + gemInstance.nameSpec = self.build.data.gems[gemId].name + gemInstance.support = skillData.support + + for _, property in pairs(skillData.properties) do + if property.name == "Level" then + gemInstance.level = tonumber(property.values[1][1]:match("%d+")) + elseif escapeGGGString(property.name) == "Quality" then + gemInstance.quality = tonumber(property.values[1][1]:match("%d+")) + end + end + + return gemInstance + end + return nil + end + for _, skillData in pairs(charData.skills) do + local gemInstance = funcGetGemInstance(skillData) + + if gemInstance then + local group = { label = "", enabled = true, gemList = { } } + t_insert(group.gemList, gemInstance ) + + for _, anotherSkillData in pairs(skillData.socketedItems) do + local anotherGemInstance = funcGetGemInstance(anotherSkillData) + if anotherGemInstance then + t_insert(group.gemList, anotherGemInstance ) + end + end + + t_insert(self.build.skillsTab.socketGroupList, group) + self.build.skillsTab:ProcessSocketGroup(group) + end + end + if skillOrder then local groupOrder = { } for index, socketGroup in ipairs(self.build.skillsTab.socketGroupList) do @@ -769,11 +750,11 @@ function ImportTabClass:ImportItemsAndSkills(json) self.build.itemsTab:PopulateSlots() self.build.itemsTab:AddUndoState() self.build.skillsTab:AddUndoState() - self.build.characterLevel = charItemData.character.level + self.build.characterLevel = charData.level self.build.configTab:UpdateLevel() - self.build.controls.characterLevel:SetText(charItemData.character.level) + self.build.controls.characterLevel:SetText(charData.level) self.build.buildFlag = true - return charItemData.character -- For the wrapper + return charData -- For the wrapper end local rarityMap = { [0] = "NORMAL", "MAGIC", "RARE", "UNIQUE", [9] = "RELIC", [10] = "RELIC" } @@ -782,9 +763,13 @@ local slotMap = { ["Weapon"] = "Weapon 1", ["Offhand"] = "Weapon 2", ["Weapon2"] function ImportTabClass:ImportItem(itemData, slotName) if not slotName then if itemData.inventoryId == "PassiveJewels" then - slotName = "Jewel "..self.build.latestTree.jewelSlots[itemData.x + 1] + slotName = "Jewel ".. self.build.latestTree.jewelSlots[itemData.x + 1] elseif itemData.inventoryId == "Flask" then - slotName = "Flask "..(itemData.x + 1) + if itemData.x > 1 then + slotName = "Charm " .. (itemData.x - 1) + else + slotName = "Flask "..(itemData.x + 1) + end elseif not (self.controls.charImportItemsIgnoreWeaponSwap.state and (itemData.inventoryId == "Weapon2" or itemData.inventoryId == "Offhand2")) then slotName = slotMap[itemData.inventoryId] end @@ -800,6 +785,7 @@ function ImportTabClass:ImportItem(itemData, slotName) item.rarity = rarityMap[itemData.frameType] if #itemData.name > 0 then item.title = sanitiseText(itemData.name) + item.baseName = sanitiseText(itemData.typeLine):gsub("Synthesised ","") item.name = item.title .. ", " .. item.baseName if item.baseName == "Two-Toned Boots" then -- Hack for Two-Toned Boots @@ -862,7 +848,7 @@ function ImportTabClass:ImportItem(itemData, slotName) end if itemData.properties then for _, property in pairs(itemData.properties) do - if property.name == "Quality" then + if escapeGGGString(property.name) == "Quality" then item.quality = tonumber(property.values[1][1]:match("%d+")) elseif property.name == "Radius" then item.jewelRadiusLabel = property.values[1][1] @@ -893,10 +879,14 @@ function ImportTabClass:ImportItem(itemData, slotName) item.corrupted = itemData.corrupted if itemData.sockets and itemData.sockets[1] then item.sockets = { } + item.itemSocketCount = 0 for i, socket in pairs(itemData.sockets) do - item.sockets[i] = { group = socket.group, color = socket.sColour } + item.sockets[i] = { } + item.itemSocketCount = item.itemSocketCount + 1 end end + + item.runes = { } if itemData.socketedItems then self:ImportSocketedItems(item, itemData.socketedItems, slotName) end @@ -1002,80 +992,8 @@ end function ImportTabClass:ImportSocketedItems(item, socketedItems, slotName) -- Build socket group list - local itemSocketGroupList = { } - local abyssalSocketId = 1 for _, socketedItem in ipairs(socketedItems) do - if socketedItem.abyssJewel then - self:ImportItem(socketedItem, slotName .. " Abyssal Socket "..abyssalSocketId) - abyssalSocketId = abyssalSocketId + 1 - else - local normalizedBasename, qualityType = self.build.skillsTab:GetBaseNameAndQuality(socketedItem.typeLine, nil) - local gemId = self.build.data.gemForBaseName[normalizedBasename:lower()] - if socketedItem.hybrid then - -- Used by transfigured gems and dual-skill gems (currently just Stormbind) - normalizedBasename, qualityType = self.build.skillsTab:GetBaseNameAndQuality(socketedItem.hybrid.baseTypeName, nil) - gemId = self.build.data.gemForBaseName[normalizedBasename:lower()] - if gemId and socketedItem.hybrid.isVaalGem then - gemId = self.build.data.gemGrantedEffectIdForVaalGemId[self.build.data.gems[gemId].grantedEffectId] - end - end - if gemId then - local gemInstance = { level = 20, quality = 0, enabled = true, enableGlobal1 = true, gemId = gemId } - gemInstance.nameSpec = self.build.data.gems[gemId].name - gemInstance.support = socketedItem.support - gemInstance.qualityId = qualityType - for _, property in pairs(socketedItem.properties) do - if property.name == "Level" then - gemInstance.level = tonumber(property.values[1][1]:match("%d+")) - elseif property.name == "Quality" then - gemInstance.quality = tonumber(property.values[1][1]:match("%d+")) - end - end - local groupID = item.sockets[socketedItem.socket + 1].group - if not itemSocketGroupList[groupID] then - itemSocketGroupList[groupID] = { label = "", enabled = true, gemList = { }, slot = slotName } - end - local socketGroup = itemSocketGroupList[groupID] - if not socketedItem.support and socketGroup.gemList[1] and socketGroup.gemList[1].support and item.title ~= "Dialla's Malefaction" then - -- If the first gemInstance is a support gemInstance, put the first active gemInstance before it - t_insert(socketGroup.gemList, 1, gemInstance) - else - t_insert(socketGroup.gemList, gemInstance) - end - end - end - end - - -- Import the socket groups - for _, itemSocketGroup in pairs(itemSocketGroupList) do - -- Check if this socket group matches an existing one - local repGroup - for index, socketGroup in pairs(self.build.skillsTab.socketGroupList) do - if #socketGroup.gemList == #itemSocketGroup.gemList and (not socketGroup.slot or socketGroup.slot == slotName) then - local match = true - for gemIndex, gem in pairs(socketGroup.gemList) do - if gem.nameSpec:lower() ~= itemSocketGroup.gemList[gemIndex].nameSpec:lower() then - match = false - break - end - end - if match then - repGroup = socketGroup - break - end - end - end - if repGroup then - -- Update the existing one - for gemIndex, gem in pairs(repGroup.gemList) do - local itemGem = itemSocketGroup.gemList[gemIndex] - gem.level = itemGem.level - gem.quality = itemGem.quality - end - else - t_insert(self.build.skillsTab.socketGroupList, itemSocketGroup) - end - self.build.skillsTab:ProcessSocketGroup(itemSocketGroup) + t_insert(item.runes, socketedItem.baseType) end end @@ -1103,17 +1021,4 @@ function UrlDecode(url) url = url:gsub("+", " ") url = url:gsub("%%(%x%x)", HexToChar) return url -end - -function ImportTabClass:ProcessJSON(json) - local func, errMsg = loadstring("return "..jsonToLua(json)) - if errMsg then - return nil, errMsg - end - setfenv(func, { }) -- Sandbox the function just in case - local data = func() - if type(data) ~= "table" then - return nil, "Return type is not a table" - end - return data -end +end \ No newline at end of file diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index cd4b5420d3..76d932952f 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -174,7 +174,7 @@ function PassiveSpecClass:Load(xml, dbFileName) end end end - self:ImportFromNodeList(tonumber(xml.attrib.classId), tonumber(xml.attrib.ascendClassId), tonumber(xml.attrib.secondaryAscendClassId or 0), hashList, weaponSets, copyTable(self.hashOverrides, true), masteryEffects) + self:ImportFromNodeList(nil, tonumber(xml.attrib.classId), tonumber(xml.attrib.ascendClassId), tonumber(xml.attrib.secondaryAscendClassId or 0), hashList, weaponSets, copyTable(self.hashOverrides, true), masteryEffects) elseif url then self:DecodeURL(url) end @@ -263,13 +263,17 @@ function PassiveSpecClass:PostLoad() end -- Import passive spec from the provided class IDs and node hash list -function PassiveSpecClass:ImportFromNodeList(classId, ascendClassId, secondaryAscendClassId, hashList, weaponSets, hashOverrides, masteryEffects, treeVersion) +function PassiveSpecClass:ImportFromNodeList(className, classId, ascendClassId, secondaryAscendClassId, hashList, weaponSets, hashOverrides, masteryEffects, treeVersion) if hashOverrides == nil then hashOverrides = {} end if treeVersion and treeVersion ~= self.treeVersion then self:Init(treeVersion) self.build.treeTab.showConvert = self.treeVersion ~= latestTreeVersion end self:ResetNodes() + if className then + classId = self.tree.classNameMap[className] or (self.tree.ascendNameMap[className] and self.tree.ascendNameMap[className].classId) or (self.tree.internalAscendNameMap[className] and self.tree.internalAscendNameMap[className].classId) + ascendClassId = (self.tree.ascendNameMap[className] and self.tree.ascendNameMap[className].ascendClassId) or (self.tree.internalAscendNameMap[className] and self.tree.internalAscendNameMap[className].ascendClassId) or 0 + end self:SelectClass(classId) self:SelectAscendClass(ascendClassId) self:SelectSecondaryAscendClass(secondaryAscendClassId) @@ -1953,7 +1957,7 @@ function PassiveSpecClass:CreateUndoState() end function PassiveSpecClass:RestoreUndoState(state, treeVersion) - self:ImportFromNodeList(state.classId, state.ascendClassId, state.secondaryAscendClassId, state.hashList, state.weaponSets, state.hashOverrides, state.masteryEffects, treeVersion or state.treeVersion) + self:ImportFromNodeList(nil, state.classId, state.ascendClassId, state.secondaryAscendClassId, state.hashList, state.weaponSets, state.hashOverrides, state.masteryEffects, treeVersion or state.treeVersion) self:SetWindowTitleWithBuildClass() end diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 70a5611504..9537d4b096 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -90,6 +90,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) -- Build maps of class name -> class table self.classNameMap = { } self.ascendNameMap = { } + self.internalAscendNameMap = { } self.classNotables = { } for classId, class in pairs(self.classes) do @@ -103,6 +104,15 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) ascendClassId = ascendClassId, ascendClass = ascendClass } + + if ascendClass.internalId then + self.internalAscendNameMap[ascendClass.internalId] = { + classId = classId, + class = class, + ascendClassId = ascendClassId, + ascendClass = ascendClass + } + end end end diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua new file mode 100644 index 0000000000..58cc244770 --- /dev/null +++ b/src/Classes/PoEAPI.lua @@ -0,0 +1,191 @@ +local base64 = require("base64") +local sha = require("sha2") +local dkjson = require "dkjson" + +local scopesOAuth = { + "account:profile", + "account:leagues", + "account:characters", +} + +local filename = "poe_api_response.json" + +local PoEAPIClass = newClass("PoEAPI", function(self, authToken, refreshToken, tokenExpiry) + self.retries = 0 + self.authToken = authToken + self.refreshToken = refreshToken + self.tokenExpiry = tokenExpiry or 0 + self.baseUrl = "https://api.pathofexile.com" + self.rateLimiter = new("TradeQueryRateLimiter") + + self.ERROR_NO_AUTH = "No auth token" +end) + +-- func callback(valid, updateSettings) +function PoEAPIClass:ValidateAuth(callback) + ConPrintf("Validating auth token") + -- make a call for profile if not error we are good + -- if error 401 then try to recreate the token with + if self.authToken and self.refreshToken and self.tokenExpiry then + if self.tokenExpiry < os.time() then + ConPrintf("Auth token expired") + -- here recreate the token with the refresh_token + local formText = "client_id=pob&grant_type=refresh_token&refresh_token=" .. self.refreshToken + launch:DownloadPage("https://www.pathofexile.com/oauth/token", function (response, errMsg) + ConPrintf("Recreating auth token") + if errMsg then + ConPrintf("Failed to recreate auth token: %s", errMsg) + callback(false, false) + return + end + local responseLua = dkjson.decode(response.body) + self.authToken = responseLua.access_token + self.refreshToken = responseLua.refresh_token + self.tokenExpiry = os.time() + responseLua.expires_in + self.retries = 0 + callback(true, true) + end, { body = formText }) + else + callback(true, false) + end + else + callback(false, false) + end +end + +local function base64_encode(secret) + return base64.encode(secret):gsub("+","-"):gsub("/","_"):gsub("=$", "") +end + +function PoEAPIClass:FetchAuthToken(callback) + math.randomseed(os.time()) + local secret = math.random(2^32-1) + local code_verifier = base64_encode(tostring(secret)) + local code_challenge = base64_encode(sha.hex_to_bin(sha.sha256(code_verifier))) + + -- 16 character hex string + local initialState = string.gsub('xxxxxxxxxxxxxxxx', 'x', function() + return string.format('%x', math.random(0, 0xf)) + end) + + local authUrl = string.format( + "https://www.pathofexile.com/oauth/authorize?client_id=pob&response_type=code&scope=%s&state=%s&code_challenge=%s&code_challenge_method=S256" + ,table.concat(scopesOAuth, " ") + ,initialState + ,code_challenge + ) + + local server = io.open("LaunchServer.lua", "r") + local id = LaunchSubScript(server:read("*a"), "", "ConPrintf,OpenURL", authUrl) + if id then + launch.subScripts[id] = { + type = "DOWNLOAD", + callback = function(code, state, port) + if not code then + ConPrintf("Failed to get code from server") + self.authToken = nil + self.refreshToken = nil + self.tokenExpiry = nil + callback(nil, self.ERROR_NO_AUTH, true) + return + end + + if initialState ~= state then + return + end + local formText = "client_id=pob&grant_type=authorization_code&code=" .. code .. "&redirect_uri=http://localhost:" .. port .. "&scope=" .. table.concat(scopesOAuth, " ") .. "&code_verifier=" .. code_verifier + launch:DownloadPage("https://www.pathofexile.com/oauth/token", function (response, errMsg) + if errMsg then + ConPrintf("Failed to get token from server: " .. errMsg) + self.authToken = nil + self.refreshToken = nil + self.tokenExpiry = nil + callback() + return + end + local responseLua = dkjson.decode(response.body) + self.authToken = responseLua.access_token + self.refreshToken = responseLua.refresh_token + self.tokenExpiry = os.time() + responseLua.expires_in + self.retries = 0 + SetForeground() + callback() + end, { body = formText }) + end + } + end +end + +-- func callback(response, errorMsg, updateSettings) +function PoEAPIClass:DownloadWithRefresh(endpoint, callback) + self:ValidateAuth(function(valid, updateSettings) + if not valid then + -- Clean info about token and refresh token + self.authToken = nil + self.refreshToken = nil + self.tokenExpiry = nil + callback(nil, self.ERROR_NO_AUTH, true) + return + end + + launch:DownloadPage( self.baseUrl .. endpoint, function (response, errMsg) + if errMsg and errMsg:match("401") and self.retries < 1 then + -- try once again with refresh token + self.retries = 1 + self.tokenExpiry = 0 + self:DownloadWithRefresh(endpoint, callback) + else + self.retries = 0 + if errMsg then + ConPrintf("Failed to download %s: %s", endpoint, errMsg) + elseif response and response.body then + -- create the file and log the name file + local file = io.open(filename, "w") + if file then + file:write(response.body) + file:close() + end + ConPrintf("Download %s:\n%s\n", endpoint, filename) + end + callback(response, errMsg, updateSettings) + end + end, { header = "Authorization: Bearer " .. self.authToken }) + end) +end + +function PoEAPIClass:DownloadWithRateLimit(policy, url, callback) + local now = os.time() + local timeNext = self.rateLimiter:NextRequestTime(policy, now) + if now >= timeNext then + local requestId = self.rateLimiter:InsertRequest(policy) + local onComplete = function(response, errMsg) + self.rateLimiter:FinishRequest(policy, requestId) + self.rateLimiter:UpdateFromHeader(response.header) + if response.header:match("HTTP/[%d%.]+ (%d+)") == "429" then + timeNext = self.rateLimiter:NextRequestTime(policy, now) + callback(timeNext, "Response code: 429") + return + end + callback(response.body, errMsg) + end + self:DownloadWithRefresh(url, onComplete) + else + callback(timeNext, "Response code: 429") + end +end + +---Fetches character list from PoE's OAuth api +---@param realm string Realm to fetch the list from (always poe2) +---@param callback function callback(response, errorMsg, updateSettings) +function PoEAPIClass:DownloadCharacterList(realm, callback) + self:DownloadWithRateLimit("character-list-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm), callback) +end + + +---Fetches character from PoE's OAuth api +---@param realm string Realm to fetch the character from (always poe2) +---@param name string Character name to fetch +---@param callback function callback(response, errorMsg, updateSettings) +function PoEAPIClass:DownloadCharacter(realm, name, callback) + self:DownloadWithRateLimit("character-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm) .. "/" .. name, callback) +end \ No newline at end of file diff --git a/src/Classes/TradeQueryRateLimiter.lua b/src/Classes/TradeQueryRateLimiter.lua index 0570612534..28960762ca 100644 --- a/src/Classes/TradeQueryRateLimiter.lua +++ b/src/Classes/TradeQueryRateLimiter.lua @@ -52,7 +52,9 @@ local TradeQueryRateLimiterClass = newClass("TradeQueryRateLimiter", function(se -- state shows more requests than expected (external requests) self.pendingRequests = { ["trade-search-request-limit"] = {}, - ["trade-fetch-request-limit"] = {} + ["trade-fetch-request-limit"] = {}, + ["character-list-request-limit-poe2"] = {}, + ["character-request-limit-poe2"] = {} } end) diff --git a/src/Data/Global.lua b/src/Data/Global.lua index 42b390628e..ef2eda99ec 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -30,11 +30,17 @@ colorCodes = { DEFENCE = "^x8080E0", SCION = "^xFFF0F0", MARAUDER = "^xE05030", + WARRIOR = "^xE05030", RANGER = "^x70FF70", + HUNTRESS = "^x70FF70", WITCH = "^x7070FF", + SORCERESS = "^x7070FF", DUELIST = "^xE0E070", + MERCENARY = "^xE0E070", TEMPLAR = "^xC040FF", + DRUID = "^xC040FF", SHADOW = "^x30C0D0", + MONK = "^x30C0D0", MAINHAND = "^x50FF50", MAINHANDBG = "^x071907", OFFHAND = "^xB7B7FF", diff --git a/src/Export/Scripts/passivetree.lua b/src/Export/Scripts/passivetree.lua index 5a06f15910..cd12125c35 100644 --- a/src/Export/Scripts/passivetree.lua +++ b/src/Export/Scripts/passivetree.lua @@ -544,6 +544,7 @@ local tree = { ["nodes"]= { }, ["assets"]={}, ["ddsCoords"] = {}, + ["jewelSlots"] = {}, ["constants"]= { -- calculate this ["classes"]= { ["StrDexIntClass"]= 0, @@ -616,6 +617,7 @@ for i, classId in ipairs(psg.passives) do table.insert(classDef.ascendancies, { ["id"] = ascendency.Name, ["name"] = ascendency.Name, + ["internalId"] = ascendency.Id }) -- add assets @@ -949,6 +951,13 @@ if #missingStatInfo > 0 then file:close() end +-- Generating jewel slots +printf("Generating jewel slots...") +local jewelSlots = dat("passivejewelslots") +for jewelSlot in jewelSlots:Rows() do + table.insert(tree.jewelSlots, jewelSlot.Passive.PassiveSkillNodeId) +end + -- updating skillsPerOrbit printf("Updating skillsPerOrbit...") for i, orbit in ipairs(orbitsConstants) do diff --git a/src/LaunchServer.lua b/src/LaunchServer.lua new file mode 100644 index 0000000000..e6aca20f5d --- /dev/null +++ b/src/LaunchServer.lua @@ -0,0 +1,138 @@ +-- Start a server +local url = ... +local socket = require("socket") +local server = assert(socket.bind("*", 49082) or socket.bind("*", 49083) or socket.bind("*", 49084)) +server:settimeout(30) +local host, port = server:getsockname() +ConPrintf("Server started on %s:%s", host, port) + +local redirect_uri= string.format( + "http://localhost:%d", port +) +ConPrintf("Redirect URI: %s", redirect_uri) +url = url .. string.format("&redirect_uri=%s", redirect_uri) + +local commonResponse = [[ +HTTP/1.1 200 OK +Content-Type: text/html + + + + + + + PoB 2 - Authentication Complete + + + +
+
+]] + +local commonResponseEnd = [[ +
+
+ + +]] + +ConPrintf("Opening URL: %s", url) +OpenURL(url) + +local code, state +local client = server:accept() +if client then + client:settimeout(10) + local request, err = client:receive("*l") + + if not err and request then + local response + local _, _, method, path, version = request:find("^(%S+)%s(%S+)%s(%S+)") + if method ~= "GET" then + return + end + local queryParams = {} + for k, v in path:gmatch("([^&=?]+)=([^&=?]+)") do + queryParams[k] = v:gsub("%%(%x%x)", function(hex) + return string.char(tonumber(hex, 16)) + end) + end + + if queryParams["code"] ~= nil then + response = commonResponse .. [[ +

PoB 2 - Authentication Successful

+

✅ Your authentication is complete! You can now return to the app.

+ ]] .. commonResponseEnd + code = queryParams["code"] + state = queryParams["state"] + else + response = commonResponse .. [[ +

PoB 2 - Authentication Failed

+

❌ Authentication failed. Please try again.

+ ]] .. queryParams["error"] .. ": " .. queryParams["error_description"] .. [[ + ]] .. commonResponseEnd + end + + -- Send HTTP Response + --ConPrintf("Sending response: %s", response) + client:send(response) + end + client:close() +end +return code, state, port diff --git a/src/Modules/Main.lua b/src/Modules/Main.lua index d60e5bc45a..4a09970fb0 100644 --- a/src/Modules/Main.lua +++ b/src/Modules/Main.lua @@ -529,6 +529,9 @@ function main:LoadSettings(ignoreBuild) elseif node.elem == "Accounts" then self.lastAccountName = node.attrib.lastAccountName self.lastRealm = node.attrib.lastRealm + self.lastToken = node.attrib.lastToken + self.lastRefreshToken = node.attrib.lastRefreshToken + self.tokenExpiry = tonumber(node.attrib.tokenExpiry) for _, child in ipairs(node) do if child.elem == "Account" then self.gameAccounts[child.attrib.accountName] = { @@ -685,7 +688,7 @@ function main:SaveSettings() return true end t_insert(setXML, mode) - local accounts = { elem = "Accounts", attrib = { lastAccountName = self.lastAccountName, lastRealm = self.lastRealm } } + local accounts = { elem = "Accounts", attrib = { lastAccountName = self.lastAccountName, lastRealm = self.lastRealm, lastToken = self.lastToken, lastRefreshToken = self.lastRefreshToken, tokenExpiry = tostring(self.tokenExpiry) } } for accountName, account in pairs(self.gameAccounts) do t_insert(accounts, { elem = "Account", attrib = { accountName = accountName, sessionID = account.sessionID } }) end diff --git a/src/TreeData/0_1/tree.json b/src/TreeData/0_1/tree.json index c6de516ca9..540d5b285c 100644 --- a/src/TreeData/0_1/tree.json +++ b/src/TreeData/0_1/tree.json @@ -1 +1 @@ -{"assets":{"Orbit6Normal":["orbit_normal3.png"],"LineConnectorNormal":["orbit_normal0.png"],"Orbit9Normal":["orbit_normal1.png"],"Orbit8Normal":["orbit_normal2.png"],"Orbit9Active":["orbit_active1.png"],"LineConnectorActive":["orbit_active0.png"],"Orbit7Normal":["orbit_normal7.png"],"Orbit5Normal":["orbit_normal4.png"],"Orbit2Active":["orbit_active8.png"],"Orbit4Normal":["orbit_normal5.png"],"Orbit6Active":["orbit_active3.png"],"Orbit2Normal":["orbit_normal8.png"],"Orbit3Normal":["orbit_normal6.png"],"Orbit8Active":["orbit_active2.png"],"Orbit3Active":["orbit_active6.png"],"Orbit7Intermediate":["orbit_intermediate7.png"],"Orbit8Intermediate":["orbit_intermediate2.png"],"Orbit9Intermediate":["orbit_intermediate1.png"],"Orbit5Active":["orbit_active4.png"],"Orbit3Intermediate":["orbit_intermediate6.png"],"Orbit4Intermediate":["orbit_intermediate5.png"],"Orbit5Intermediate":["orbit_intermediate4.png"],"Orbit6Intermediate":["orbit_intermediate3.png"],"Orbit4Active":["orbit_active5.png"],"Orbit1Active":["orbit_active9.png"],"Orbit1Intermediate":["orbit_intermediate9.png"],"Orbit2Intermediate":["orbit_intermediate8.png"],"Orbit7Active":["orbit_active7.png"],"LineConnectorIntermediate":["orbit_intermediate0.png"],"Orbit1Normal":["orbit_normal9.png"]},"min_y":-23471.530076896,"groups":[null,{"y":5452.3167634307,"x":-14496.148300903,"nodes":[49380],"orbits":[0]},{"y":5815.3167634307,"x":-14496.148300903,"nodes":[58704],"orbits":[0]},{"y":6178.3167634307,"x":-14496.148300903,"nodes":[38769],"orbits":[0]},{"y":5202.1467634307,"x":-14429.118300903,"nodes":[36659],"orbits":[0]},{"y":5624.0267634307,"x":-14339.388300903,"nodes":[6127],"orbits":[0]},{"y":6037.1767634307,"x":-14339.388300903,"nodes":[18585],"orbits":[0]},null,{"y":5202.1067634307,"x":-14241.668300903,"nodes":[40915],"orbits":[0]},null,{"y":6716.2967634307,"x":-14174.808300903,"nodes":[1994],"orbits":[0]},{"y":5452.3167634307,"x":-14174.628300903,"nodes":[48682],"orbits":[0]},{"y":5815.3167634307,"x":-14174.628300903,"nodes":[39411],"orbits":[0]},{"y":6542.0967634307,"x":-14174.628300903,"nodes":[25935],"orbits":[0]},{"y":6178.3167634307,"x":-14174.008300903,"nodes":[39365],"orbits":[0]},{"y":6122.5967634307,"x":-13769.548300903,"nodes":[33812],"orbits":[6]},{"y":6795.3467634307,"x":-13720.868300903,"nodes":[47097],"orbits":[0]},{"y":6464.9067634307,"x":-13717.058300903,"nodes":[23005],"orbits":[0]},{"y":6395.2167634307,"x":-13266.078300903,"nodes":[10072],"orbits":[0]},{"y":6864.3867634307,"x":-13266.078300903,"nodes":[64117],"orbits":[0]},null,{"y":6542.0967634307,"x":-13076.698300903,"nodes":[52068],"orbits":[0]},{"y":6716.2967634307,"x":-13076.698300903,"nodes":[29645],"orbits":[0]},null,{"y":8293.7734034478,"x":-13031.501188436,"nodes":[24807],"orbits":[0]},{"y":8070.8734034478,"x":-12634.551188436,"nodes":[38014],"orbits":[0]},{"y":8579.6634034478,"x":-12456.631188436,"nodes":[42275],"orbits":[0]},{"y":8851.6534034478,"x":-12195.691188436,"nodes":[3762,59540,30115,60634,35453,13715,19424,27418,51690,29323,32534],"orbits":[4,5,6,7,9]},{"y":9854.5734034478,"x":-12130.191188436,"nodes":[12000],"orbits":[0]},{"y":9213.4234034478,"x":-12089.821188436,"nodes":[59372],"orbits":[0]},{"y":9629.1734034478,"x":-11736.201188436,"nodes":[56842],"orbits":[0]},null,null,null,null,null,{"y":-1276.68,"x":-11263.31,"nodes":[9352,31295,32071,49111,39190,8800,15427,57379],"orbits":[0,3]},{"y":1114.01,"x":-11179.3,"nodes":[28589,7395,38670,30007,12565,3245,30300,3188],"orbits":[1,2,3]},{"y":-3254.38,"x":-11095.46,"nodes":[6502],"orbits":[0]},{"y":-3602.71,"x":-11052.33,"nodes":[41747],"orbits":[0]},{"y":-3162.26,"x":-11003.87,"nodes":[49370,32148,8535,43443],"orbits":[0,2]},{"y":88.39,"x":-10939.38,"nodes":[55190],"orbits":[1]},{"y":-3409.07,"x":-10798.26,"nodes":[61847],"orbits":[0]},{"y":-2405.56,"x":-10716.12,"nodes":[55048],"orbits":[0]},{"y":2443.13,"x":-10708.76,"nodes":[24630],"orbits":[0]},{"y":445.3,"x":-10682.77,"nodes":[1200],"orbits":[4]},{"y":-1117.08,"x":-10667.72,"nodes":[28982],"orbits":[0]},{"y":3051.94,"x":-10615.17,"nodes":[17348,11433,15522,13893,11275,42390,63608],"orbits":[0,3,4,7]},{"y":-4677.69,"x":-10609.92,"nodes":[440],"orbits":[0]},{"y":-3587.33,"x":-10416.8,"nodes":[1130,50847,33393,42914],"orbits":[0,4,5,7]},{"y":-4500.02,"x":-10391.25,"nodes":[55888],"orbits":[0]},{"y":-5225.09,"x":-10391.18,"nodes":[17349,5728,23940,14342,49256,14439,58138,46384,33402,58125,6133,10681,27581,50510],"orbits":[1,3,4,7]},{"y":5.97,"x":-10364.84,"nodes":[30141],"orbits":[0]},{"y":2132.05,"x":-10358.72,"nodes":[59785],"orbits":[0]},{"y":-2405.56,"x":-10338.12,"nodes":[41768],"orbits":[0]},{"y":4633.75,"x":-10240.12,"nodes":[375,12276,14693,13937,13980,17791,526,2645,52829,14832],"orbits":[0,4,7]},{"y":1109.9,"x":-10203.05,"nodes":[11656,9106,53822,54937],"orbits":[1,7]},{"y":3733,"x":-10198.75,"nodes":[18684],"orbits":[0]},{"y":-4677.69,"x":-10180.38,"nodes":[18746],"orbits":[0]},{"y":273.26,"x":-10097.55,"nodes":[51749],"orbits":[0]},{"y":-3391.47,"x":-10087.16,"nodes":[29611],"orbits":[0]},{"y":3405.64,"x":-10009.75,"nodes":[27296],"orbits":[0]},{"y":2362.11,"x":-9927.8,"nodes":[51535,18397,55063,8852,4139],"orbits":[0,2,3]},{"y":-2071.56,"x":-9865.43,"nodes":[11525,64724,53329,53030,30334,9324,43939,56214,48267],"orbits":[0,2,3]},{"y":-4500.02,"x":-9791.13,"nodes":[32474],"orbits":[0]},{"y":-1117.08,"x":-9724.5,"nodes":[30457,13293,54416,19236,60274],"orbits":[0,7]},{"y":710.66,"x":-9715.33,"nodes":[4442,59886,62313,62034,55931,33939,6872],"orbits":[0,3,4,5]},{"y":4489.54,"x":-9701.92,"nodes":[59777],"orbits":[0]},{"y":3334.63,"x":-9636.83,"nodes":[917,44069,65160,21670,29358],"orbits":[1,2,3]},{"y":-3088.59,"x":-9562.54,"nodes":[62670,41497,30554,21164,18245,10055],"orbits":[0,7]},{"y":-421.46,"x":-9548.42,"nodes":[32777,17625,59710,21567,18822,10873,52618,47790],"orbits":[1,2,3,7]},{"y":4,"x":-9548.42,"nodes":[18448],"orbits":[0]},{"y":-5501.21,"x":-9524.42,"nodes":[26196],"orbits":[0]},{"y":5442.15,"x":-9427.5,"nodes":[26725],"orbits":[0]},{"y":-6626.42,"x":-9380.56,"nodes":[47242,34493,48565,23078,65328,54964,49593,4725,17229],"orbits":[0,2,3,4,7]},{"y":4400.29,"x":-9363.33,"nodes":[10362,10830,9163,59589,44952,6153,52659],"orbits":[0,3,7]},{"y":362.33,"x":-9064.75,"nodes":[65154,2575,56757,11292],"orbits":[0,2]},{"y":6723.44,"x":-9040.02,"nodes":[53440,52300,11178,62439,57880,11306,6269,45990,39448,24224],"orbits":[0,2,3]},{"y":-4631.81,"x":-9038.93,"nodes":[31159,54962,35849,46017,12382],"orbits":[0,1,7]},{"y":1954.01,"x":-8945,"nodes":[33452,57471,53823,23192,21684,1214,42578,52796,10508,30371,27687],"orbits":[2,3,4,5,7]},{"y":-499.46,"x":-8895.04,"nodes":[52220,60064,3027,54228,64240],"orbits":[0,2]},{"y":-5473.9,"x":-8822.42,"nodes":[52],"orbits":[0]},{"y":-5095.9,"x":-8822.42,"nodes":[39131],"orbits":[0]},{"y":-6271.82,"x":-8766.41,"nodes":[33722],"orbits":[0]},{"y":5036.5,"x":-8724.91,"nodes":[21387],"orbits":[0]},{"y":5497.5,"x":-8689.66,"nodes":[51129,26437,15892],"orbits":[3,7]},{"y":4,"x":-8684.42,"nodes":[47263],"orbits":[0]},{"y":504.36,"x":-8684.42,"nodes":[10100],"orbits":[0]},{"y":988.33,"x":-8684.42,"nodes":[23307],"orbits":[0]},{"y":4650.55,"x":-8647.35,"nodes":[47173,51832,6514,31373,47722,12418,50561,3988],"orbits":[0,2,3,4]},{"y":6301.67,"x":-8618.25,"nodes":[27082],"orbits":[0]},{"y":-4931.21,"x":-8541.12,"nodes":[11741],"orbits":[3]},{"y":-1405.65,"x":-8485.92,"nodes":[8460,40328,62200,9528,38053,29762,28564],"orbits":[0,2,3]},{"y":-5912.71,"x":-8440.72,"nodes":[57608],"orbits":[0]},{"y":-5238.98,"x":-8386.71,"nodes":[33797,37509],"orbits":[5]},{"y":-7446.29,"x":-8351.37,"nodes":[9226,13500,47591,41044],"orbits":[1,2,3,7]},{"y":5293.13,"x":-8335.67,"nodes":[22626,45227,30136],"orbits":[3,7]},{"y":5282.9,"x":-8316.62,"nodes":[42111,48717],"orbits":[7,3]},{"y":2567.51,"x":-8204.79,"nodes":[38365,61142,34626,46499],"orbits":[0,2]},{"y":-5390.69,"x":-8193.3,"nodes":[33502,65189],"orbits":[5]},{"y":3447.68,"x":-8158.65,"nodes":[24855,17138,53308,51903,39347,48014,55058,63790],"orbits":[0,3,4,5]},{"y":7278.13,"x":-8156.4,"nodes":[32349],"orbits":[0]},{"y":15228.739842601,"x":494.95218939594,"nodes":[8272],"orbits":[0]},{"y":1954.92,"x":-8116.65,"nodes":[36044],"orbits":[0]},{"y":-6945.65,"x":-8086.9,"nodes":[4140],"orbits":[0]},{"y":-5943.05,"x":-8083.42,"nodes":[41180],"orbits":[1]},{"y":-5590.82,"x":-8069.54,"nodes":[6222,9037,21912],"orbits":[5]},{"y":6352.38,"x":-8048.02,"nodes":[50392],"orbits":[0]},{"y":4659.56,"x":-8046.92,"nodes":[63114],"orbits":[3]},{"y":6041.9,"x":-8024.48,"nodes":[61409,24646],"orbits":[3,7]},{"y":-5646.06,"x":-8021.07,"nodes":[61703],"orbits":[0]},{"y":-1123.01,"x":-7996.37,"nodes":[38707],"orbits":[0]},{"y":4130.84,"x":-7966.51,"nodes":[35048,26176,43650,21070,57388,53386,9698],"orbits":[1,2,3,7]},{"y":-2253.24,"x":-7964.19,"nodes":[61404,38923,44902,61429,511],"orbits":[0,7]},{"y":-2252.73,"x":-7958.8,"nodes":[51210],"orbits":[0]},{"y":-5882.19,"x":-7948.8,"nodes":[17260],"orbits":[0]},{"y":-4279.3,"x":-7938.92,"nodes":[35369,1459,47252,17282,43579],"orbits":[0,1,7]},{"y":-6121.04,"x":-7930.02,"nodes":[32353],"orbits":[0]},{"y":-3214.3,"x":-7929.94,"nodes":[33601,5692,35708,41154,2863],"orbits":[0,2]},{"y":504.36,"x":-7924.75,"nodes":[25300],"orbits":[0]},{"y":16024.069842601,"x":761.71218939594,"nodes":[51737],"orbits":[0]},{"y":2887.75,"x":-7848.77,"nodes":[44017],"orbits":[0]},{"y":6139.63,"x":-7835.27,"nodes":[13075],"orbits":[0]},{"y":7089.13,"x":-7829.04,"nodes":[3446],"orbits":[0]},{"y":1455.71,"x":-7828.44,"nodes":[53527,4985,45327,7204,10251],"orbits":[0,7]},{"y":84.99,"x":-7826.84,"nodes":[58295],"orbits":[2]},{"y":452.74,"x":-7815.5,"nodes":[61796,38066,8260,10286],"orbits":[7]},{"y":2567.51,"x":-7762.96,"nodes":[4527],"orbits":[0]},{"y":402.68,"x":-7704.81,"nodes":[21453],"orbits":[0]},{"y":8468.77,"x":-7587.21,"nodes":[2946,62518,4547,41414,41363],"orbits":[0,1,3,4,7]},{"y":-849.36,"x":-7586.04,"nodes":[43653,48171,26518,40803,3218],"orbits":[4]},{"y":15084.319842601,"x":1056.8821893959,"nodes":[17646],"orbits":[0]},{"y":2094.68,"x":-7489.98,"nodes":[40117,31848,1286,21089,17903,54701],"orbits":[7]},{"y":4960.9,"x":-7463.54,"nodes":[18505,18496,18073,36027,49952,45090,13856],"orbits":[7]},{"y":3131.16,"x":-7437.53,"nodes":[52298],"orbits":[0]},{"y":3624.13,"x":-7437.53,"nodes":[53216,52126,21885,1352],"orbits":[0,2,7]},{"y":-8009.76,"x":-7428.15,"nodes":[45202],"orbits":[0]},{"y":-465.35,"x":-7355.98,"nodes":[24430,47191,3601,8554,63037],"orbits":[4]},{"y":-745.79,"x":-7348.69,"nodes":[50629],"orbits":[0]},{"y":-750.41,"x":-7347.5,"nodes":[44298],"orbits":[0]},{"y":-4246.42,"x":-7344.38,"nodes":[47931],"orbits":[0]},{"y":-3696.47,"x":-7344.38,"nodes":[39710],"orbits":[0]},{"y":-3214.3,"x":-7344.38,"nodes":[51821],"orbits":[0]},{"y":-2738.33,"x":-7344.38,"nodes":[33989],"orbits":[0]},{"y":-2252.28,"x":-7344.38,"nodes":[49734],"orbits":[0]},{"y":-916.14,"x":-7180.07,"nodes":[23930,30662,45383,26291,46024],"orbits":[4]},{"y":-5288.35,"x":-7101.54,"nodes":[45632,25503,27068,35831,27388,28578,904,24551],"orbits":[0,7]},{"y":4,"x":-7053.86,"nodes":[15671],"orbits":[0]},{"y":6434.42,"x":-7050.79,"nodes":[43778,36894,17330,3698,61938,14515,61927,33137],"orbits":[2,3]},{"y":-8009.76,"x":-7050.15,"nodes":[59093],"orbits":[0]},{"y":-7282.44,"x":-7044.46,"nodes":[21127,35974,51105,5398,22484,51820,38124,6355,14110,48979],"orbits":[1,2,3,4,6,7]},{"y":14984.739842601,"x":1595.0621893959,"nodes":[61973,3704,46535,38601,43131,40719,25172,32559,61897,34501,7120],"orbits":[1,3,5,6,9,8]},{"y":7409.4,"x":-7025.42,"nodes":[25229,7972,21390,5663],"orbits":[0,2]},{"y":7906.98,"x":-7025.42,"nodes":[62498],"orbits":[0]},{"y":4002.72,"x":-6934.34,"nodes":[53719],"orbits":[0]},{"y":-1830.65,"x":-6922.75,"nodes":[51812,62757,4673,10047,46741],"orbits":[0,2]},{"y":-9652.12,"x":-6910.15,"nodes":[28774,17505,52106,2999,44005,10295,27733],"orbits":[4,5,6]},{"y":2724.36,"x":-6905.82,"nodes":[31805,44461,54998,29041,31388,51394,29993],"orbits":[1,2,3,7]},{"y":988.34,"x":-6886.36,"nodes":[1170,53089,16626,64443,41126,10474,53785,9918,62023],"orbits":[0,2,3]},{"y":-4712.38,"x":-6880.96,"nodes":[21568],"orbits":[0]},{"y":3687.64,"x":-6849.92,"nodes":[39621,14176,18004,8881],"orbits":[0,2,3,4]},{"y":-6035.54,"x":-6615.6,"nodes":[2672],"orbits":[0]},{"y":-2925.02,"x":-6560.84,"nodes":[50062,64357,6416,506,46857,59596,42916,11030,37641],"orbits":[0,2,3]},{"y":-6197.75,"x":-6532.5,"nodes":[59061],"orbits":[0]},{"y":15084.319842601,"x":2133.2321893959,"nodes":[6935],"orbits":[0]},{"y":9257.25,"x":-6498.25,"nodes":[25031,17999,63979,9750,1169,42026,63813],"orbits":[0,7]},{"y":-5120.01,"x":-6473.32,"nodes":[11248],"orbits":[0]},{"y":-6058.3,"x":-6455.65,"nodes":[8509,45569,55596,28267,35085],"orbits":[0,2,3]},{"y":-4380.23,"x":-6419.58,"nodes":[35966,41105,38368,54288,44316],"orbits":[0,1,7]},{"y":4911.79,"x":-6409.48,"nodes":[22975],"orbits":[0]},{"y":420.58,"x":-6370.69,"nodes":[43711,5544,14459],"orbits":[2]},{"y":4501.4,"x":-6353.65,"nodes":[38921,49023,49198,12817,22967],"orbits":[1,2,3,7]},{"y":5063.19,"x":-6324.27,"nodes":[53921,40596,58838],"orbits":[5]},{"y":-8752.42,"x":-6317.55,"nodes":[23382],"orbits":[0]},{"y":-15644.835865568,"x":4153.1390050971,"nodes":[18678],"orbits":[0]},{"y":-13441.015865568,"x":4153.1390050971,"nodes":[63002],"orbits":[0]},{"y":7289.19,"x":-6210.4,"nodes":[11014,16784,26339,62609,18419,25312,24259,23667,64405,31650,16051,31017],"orbits":[0,1,3,5,7]},{"y":8758.64,"x":-6210.4,"nodes":[51561],"orbits":[0]},{"y":16024.069842601,"x":2430.1421893959,"nodes":[20830],"orbits":[0]},{"y":3942.14,"x":-6203.21,"nodes":[19674],"orbits":[3]},{"y":-15207.235865568,"x":4255.0590050971,"nodes":[10731],"orbits":[0]},{"y":5297.48,"x":-6186.82,"nodes":[27439],"orbits":[0]},{"y":3951.76,"x":-6116.29,"nodes":[41493],"orbits":[0]},{"y":1197.89,"x":-6026.21,"nodes":[21017,26969,16861,55789,41665,27303,50562,43142],"orbits":[0,3,4,5,7]},{"y":4,"x":-6014.13,"nodes":[14654],"orbits":[0]},{"y":-14545.815865568,"x":4467.1090050971,"nodes":[26638],"orbits":[0]},{"y":2748.83,"x":-5982.73,"nodes":[35977,38130,53194,35876,27540,62216,26070],"orbits":[0,2,3]},{"y":3453.31,"x":-5982.73,"nodes":[57703],"orbits":[0]},{"y":-3432.51,"x":-5945.28,"nodes":[49938],"orbits":[0]},{"y":15228.739842601,"x":2695.7521893959,"nodes":[37078],"orbits":[0]},{"y":4065.73,"x":-5918.9,"nodes":[50253],"orbits":[0]},{"y":-13441.015865568,"x":4533.7590050971,"nodes":[58747],"orbits":[0]},{"y":-6840.02,"x":-5903.5,"nodes":[57776,60013,10208,21935,33914,18240,21415,22909,61493],"orbits":[0,3]},{"y":8492.27,"x":-5887.44,"nodes":[56342],"orbits":[0]},{"y":-5721.92,"x":-5873.02,"nodes":[41263],"orbits":[0]},{"y":-3998.09,"x":-5849.35,"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7]},{"y":-8089.09,"x":-5816.56,"nodes":[64318,5088,55101,43893,26739,61063,38535,7777,58016,22873,16596,49537,42205],"orbits":[0,3,4]},{"y":8207.66,"x":-5800.9,"nodes":[7341],"orbits":[0]},{"y":-15271.545865568,"x":4656.6990050971,"nodes":[42035,28153,50219,54194],"orbits":[2]},{"y":-14331.845865568,"x":4656.6990050971,"nodes":[22147],"orbits":[9]},null,{"y":-15191.545865568,"x":4720.4690050971,"nodes":[43128],"orbits":[4]},{"y":6145.17,"x":-5697,"nodes":[48768],"orbits":[0]},{"y":5052.28,"x":-5694.65,"nodes":[62015,7668,21982,47371],"orbits":[0,2]},{"y":-13440.615865568,"x":4796.5490050971,"nodes":[3605],"orbits":[0]},{"y":-14545.815865568,"x":4829.0790050971,"nodes":[10987],"orbits":[0]},{"y":14817.049401417,"x":-2649.9263435605,"nodes":[60287],"orbits":[0]},{"y":-9484.56,"x":-5597.85,"nodes":[7960],"orbits":[1]},{"y":-521.46,"x":-5585.44,"nodes":[40550,46205,41615,49192,44787,43396,10534,33209,2174,51683,19249],"orbits":[0,2,3,4,6,7]},{"y":811.34,"x":-5535.94,"nodes":[20303,9908],"orbits":[2]},{"y":426.08,"x":-5532.01,"nodes":[16311,32600,6304,12125],"orbits":[0,2]},{"y":8732.2,"x":-5520.38,"nodes":[33244,52373,16347,52556,37276],"orbits":[0,2]},{"y":5566.61,"x":-5497.37,"nodes":[64870,34090,14655,372,54340],"orbits":[0,2,3,7]},{"y":15324.159401417,"x":-2514.0463435605,"nodes":[55582],"orbits":[0]},{"y":4362.34,"x":-5457.8,"nodes":[25482,51702,54485,60620,61472],"orbits":[0,7]},{"y":-15442.485865568,"x":5020.0290050971,"nodes":[27990],"orbits":[0]},{"y":9533.46,"x":-5399.53,"nodes":[2491],"orbits":[1]},{"y":-15207.235865568,"x":5054.3490050971,"nodes":[49049],"orbits":[0]},{"y":4839.82,"x":-5384.36,"nodes":[36389],"orbits":[0]},{"y":14405.429401417,"x":-2429.3763435605,"nodes":[14429],"orbits":[0]},{"y":6756.96,"x":-5333.21,"nodes":[44406,63451,57846],"orbits":[6]},{"y":2555.07,"x":-5326.03,"nodes":[8629],"orbits":[0]},{"y":7792.71,"x":-5317.19,"nodes":[20015,14777,37226,4015,47429,9187,59466],"orbits":[2,3,4,6,7]},{"y":2655.72,"x":-5314.13,"nodes":[16084],"orbits":[0]},{"y":2829.25,"x":-5314.13,"nodes":[13474],"orbits":[0]},{"y":2922.83,"x":-5314.13,"nodes":[10602,24871,57552,46696],"orbits":[4]},{"y":3067.3,"x":-5314.13,"nodes":[54811],"orbits":[0]},{"y":3397.64,"x":-5314.13,"nodes":[34210],"orbits":[0]},{"y":3520.75,"x":-5314.13,"nodes":[6923,1087,64939,30123,26092,52392],"orbits":[2,3]},{"y":-15651.845865568,"x":5159.6990050971,"nodes":[1579],"orbits":[0]},{"y":-13440.615865568,"x":5159.6990050971,"nodes":[32856],"orbits":[0]},{"y":7013.03,"x":-5288.23,"nodes":[64995,51867,17924],"orbits":[0,3]},{"y":-5561.46,"x":-5260.1,"nodes":[44783,19277,35171,10029,8660,18846,22949,14113],"orbits":[0,2,3]},{"y":-2342.95,"x":-5255.44,"nodes":[10245,34308,65193,47204,36478,48714,43014,47354,37414],"orbits":[0,2,3]},{"y":5058.67,"x":-5245.55,"nodes":[53989],"orbits":[0]},{"y":14912.539401417,"x":-2293.5063435605,"nodes":[45248],"orbits":[0]},{"y":-4772.19,"x":-5175.23,"nodes":[57097,30260,256,19658],"orbits":[0,2,7]},{"y":833.39,"x":-5165.01,"nodes":[63470,50302,16090],"orbits":[3]},{"y":6455.65,"x":-5159.25,"nodes":[61490],"orbits":[0]},{"y":8943.84,"x":-5153.8,"nodes":[28304],"orbits":[0]},{"y":15419.659401417,"x":-2157.6163435605,"nodes":[11641],"orbits":[0]},{"y":-2941.61,"x":-5095.02,"nodes":[28002],"orbits":[0]},{"y":1520.57,"x":-5034.82,"nodes":[51369,56061,6544,45503,37746,42604],"orbits":[0,2,4,7]},{"y":-7996.23,"x":-5019.88,"nodes":[45918],"orbits":[0]},{"y":5187.94,"x":-5015.19,"nodes":[29372],"orbits":[0]},{"y":-7125.77,"x":-4988.29,"nodes":[56703,28839,56762,20032,28680],"orbits":[0,2]},{"y":15926.769401417,"x":-2021.7363435605,"nodes":[34882],"orbits":[0]},{"y":-5972.03,"x":-4966.28,"nodes":[46628],"orbits":[4]},{"y":-8466.87,"x":-4915.6,"nodes":[48552],"orbits":[0]},{"y":-9561.39,"x":-4903.23,"nodes":[35408,36474,38596,24767,31925],"orbits":[2,4,7]},{"y":-8530.05,"x":-4806.19,"nodes":[36880,15628,27626,2244,54067,43036],"orbits":[4,5,7]},{"y":8363.52,"x":-4805.94,"nodes":[37258],"orbits":[0]},{"y":4919.46,"x":-4741.04,"nodes":[9417],"orbits":[0]},{"y":5689.48,"x":-4717.5,"nodes":[56595,23861,54886,56997,64312],"orbits":[0,4,7]},{"y":-4643.81,"x":-4696.12,"nodes":[13694,9343,50389,23329,11762],"orbits":[0,2,7]},{"y":-6892.17,"x":-4694.67,"nodes":[15782],"orbits":[0]},{"y":223.67,"x":-4660.69,"nodes":[31419,35787,42813,55491],"orbits":[1,7]},{"y":4612.59,"x":-4659.73,"nodes":[13171],"orbits":[0]},{"y":-7996.23,"x":-4643.88,"nodes":[31238],"orbits":[0]},{"y":6774.82,"x":-4606.4,"nodes":[38876],"orbits":[0]},{"y":-532.48,"x":-4583.03,"nodes":[7878,48745,53901,34375,45612],"orbits":[0,2,3]},{"y":-3251.11,"x":-4558.96,"nodes":[17411,61444,58096,6008,64020,29652,35911,15180,34096],"orbits":[0,2,3]},{"y":4730.38,"x":-4551.96,"nodes":[17745],"orbits":[0]},{"y":925.6,"x":-4542.4,"nodes":[39083],"orbits":[0]},{"y":2159.3,"x":-4507.44,"nodes":[33978,30390,31609,36163,62581],"orbits":[0,2,3,7]},{"y":14988.919401417,"x":-1555.2963435605,"nodes":[55536],"orbits":[9]},{"y":4838.15,"x":-4434.17,"nodes":[48121],"orbits":[0]},{"y":7184.65,"x":-4431.15,"nodes":[14540],"orbits":[0]},{"y":-1471.64,"x":-4422.17,"nodes":[48505,10372,48240,36191,59213,7392,10571,60886,40325],"orbits":[1,2,3]},{"y":4530.02,"x":-4351.6,"nodes":[24438],"orbits":[0]},{"y":843.27,"x":-4339.42,"nodes":[9638],"orbits":[0]},{"y":3287.25,"x":-4335.51,"nodes":[54283,26324,27950,4128,26532,46023,52462],"orbits":[0,2,3]},{"y":3380.39,"x":-4335.51,"nodes":[41657,21286,45992,17029],"orbits":[2,3]},{"y":619.91,"x":-4335.1,"nodes":[26798],"orbits":[0]},{"y":0.53,"x":-4308.23,"nodes":[51052,22616,17468,53405,22558],"orbits":[6]},{"y":407.49,"x":-4296.44,"nodes":[59006],"orbits":[0]},{"y":0.53,"x":-4289.92,"nodes":[48631],"orbits":[0]},{"y":-5891.9,"x":-4261.32,"nodes":[34552,61026,17378,40894,1218,8357,10742,41991,1447,38972,14945,22393,28458],"orbits":[0,3]},{"y":9595.01,"x":-4254.59,"nodes":[30910,17600,8791,18519,4084,59647,54849],"orbits":[0,1,2,3,7]},{"y":10064.45,"x":-4254.59,"nodes":[28175],"orbits":[0]},{"y":10800.08,"x":-4254.59,"nodes":[47316,2888,21716,8827,16691,9583,28862],"orbits":[0,4,7]},{"y":-10969.45,"x":-4242.62,"nodes":[14505,3866,22331,19644,32258,14712,33612,40200,61842,33240,45343,57021,8957,37594,50483,8983],"orbits":[0,1,2,3,4,5,7]},{"y":2439.49,"x":-4227.25,"nodes":[16725],"orbits":[0]},{"y":8626.35,"x":-4221.3,"nodes":[26490,12751,6229,13356,18489],"orbits":[7,2]},{"y":-4515.44,"x":-4217.02,"nodes":[16948,37458,21879,25412],"orbits":[0,2,7]},{"y":-10001.8,"x":-4185.36,"nodes":[50104],"orbits":[0]},{"y":4345.69,"x":-4167.26,"nodes":[46748],"orbits":[0]},{"y":15161.309401417,"x":-1210.1363435605,"nodes":[18146],"orbits":[0]},{"y":-8135.44,"x":-4117.42,"nodes":[4931,42825,21404,27674,44082,27307],"orbits":[0,2]},{"y":-9838.01,"x":-4116.33,"nodes":[32745],"orbits":[0]},{"y":-9545.42,"x":-4113.12,"nodes":[40276],"orbits":[0]},{"y":-9254.29,"x":-4113.12,"nodes":[60241],"orbits":[0]},{"y":6275.65,"x":-4107.23,"nodes":[17762,2964,18374,64406],"orbits":[0,2]},{"y":287.24,"x":-4082.88,"nodes":[26895],"orbits":[0]},{"y":7086.81,"x":-4066.02,"nodes":[31903],"orbits":[0]},{"y":15930.409401417,"x":-1085.2463435605,"nodes":[3084],"orbits":[0]},{"y":-9550.54,"x":-4030.62,"nodes":[32278,58183],"orbits":[2,7]},{"y":14653.229401417,"x":-1073.9963435605,"nodes":[30996],"orbits":[0]},{"y":-4999.56,"x":-3967.58,"nodes":[24483],"orbits":[0]},{"y":7450.38,"x":-3966.26,"nodes":[56605],"orbits":[0]},{"y":-9600.64,"x":-3955.44,"nodes":[61179],"orbits":[0]},{"y":394.73,"x":-3921.6,"nodes":[37956],"orbits":[0]},{"y":-9191.64,"x":-3905.87,"nodes":[5284],"orbits":[0]},{"y":15422.339401417,"x":-949.10634356052,"nodes":[57819],"orbits":[0]},{"y":-6696.51,"x":-3879.54,"nodes":[57506],"orbits":[0]},{"y":156.68,"x":-3872.48,"nodes":[35581],"orbits":[0]},{"y":5361.03,"x":-3870.16,"nodes":[2511,19802,64399],"orbits":[1,2,3]},{"y":-14986.842811271,"x":1575.1806527255,"nodes":[8867,42522,39204,12882,38578,2857,39640,61985,18849,49189,64789,44484,7246,65413,25618,49759,7998,13673,29398,12488,40721],"orbits":[6,5,9,8]},{"y":-9338.75,"x":-3804.23,"nodes":[21245],"orbits":[0]},{"y":-8886.17,"x":-3804.23,"nodes":[57178],"orbits":[0]},{"y":16166.269401417,"x":-849.38634356052,"nodes":[1442],"orbits":[0]},{"y":14914.259401417,"x":-812.96634356052,"nodes":[53762],"orbits":[0]},{"y":5937.79,"x":-3759.41,"nodes":[45962,48589,7922,7183,15617],"orbits":[0,2,3]},{"y":3905.64,"x":-3727.22,"nodes":[34487,4882,60568,38172,51206,49642,52348],"orbits":[0,2,3,7]},{"y":1390.39,"x":-3724.22,"nodes":[53443,20645,59767,31292,64284,58528,45363,19011,27373,22928],"orbits":[0,3,4,5]},{"y":15657.229401417,"x":-712.99634356052,"nodes":[53108],"orbits":[0]},{"y":6318.1,"x":-3657.51,"nodes":[35265],"orbits":[0]},{"y":14406.179401417,"x":-676.82634356052,"nodes":[36728],"orbits":[0]},{"y":-8544.35,"x":-3593.46,"nodes":[62122,6748,37327,34248,48618,4295],"orbits":[0,3,7]},{"y":-7995.13,"x":-3593.46,"nodes":[34840],"orbits":[0]},{"y":-3487.38,"x":-3550.83,"nodes":[2071,37543,38420,16647],"orbits":[0,2]},{"y":7968.38,"x":-3547.11,"nodes":[38235,34671,61934,24477,17532,48418],"orbits":[0,2]},{"y":-6483.81,"x":-3535.39,"nodes":[57373],"orbits":[0]},{"y":15148.189401417,"x":-576.58634356052,"nodes":[36822],"orbits":[0]},{"y":12785.01,"x":-3525.71,"nodes":[46565],"orbits":[0]},{"y":12100.8,"x":-3517.93,"nodes":[27290],"orbits":[0]},{"y":321.55,"x":-3498.41,"nodes":[33397,51248,53294,38292,39594],"orbits":[0,2]},{"y":-6221.4,"x":-3497.77,"nodes":[44733],"orbits":[2]},{"y":-6832.63,"x":-3495.34,"nodes":[38300],"orbits":[0]},{"y":4125.9,"x":-3484.73,"nodes":[49550,61935,55746,4624],"orbits":[0,7]},{"y":-4982.21,"x":-3483.61,"nodes":[32660,8631,59256,51534,46760],"orbits":[0,2,3]},{"y":-4515.73,"x":-3461.56,"nodes":[8531],"orbits":[0]},{"y":-7186.71,"x":-3428.17,"nodes":[1433],"orbits":[6]},{"y":11031.12,"x":-3425.8,"nodes":[35284,3921,38398,31898,7473,2211,8154],"orbits":[0,7]},{"y":-1975.64,"x":-3421.76,"nodes":[12786],"orbits":[0]},{"y":5010.9,"x":-3415.77,"nodes":[46060,29788,44419,7251,29270,7488],"orbits":[0,7]},{"y":7009.85,"x":-3408.57,"nodes":[15374,48035,54676,39759,11329],"orbits":[0,2]},{"y":14639.139401417,"x":-440.18634356052,"nodes":[58591],"orbits":[0]},{"y":7490.9,"x":-3366.12,"nodes":[37612],"orbits":[0]},{"y":-7237,"x":-3317.95,"nodes":[65016,21206,6752,7378,968,45899,54911,31326,39716,44092,11505],"orbits":[0,2,3]},{"y":5858.65,"x":-3292.33,"nodes":[51299],"orbits":[2]},{"y":-1894.64,"x":-3281.46,"nodes":[17655,64299,50558,12462,19680,18465,39540,36602,6744,49357,32194,58651,5777,55194,44951,37629,55933],"orbits":[0,2,3,4,6]},{"y":12291.17,"x":-3230.62,"nodes":[26697],"orbits":[0]},{"y":-8995.5,"x":-3196.2,"nodes":[25303],"orbits":[0]},{"y":9964.43,"x":-3179.99,"nodes":[52746,9796,62310,54148,36325,56934],"orbits":[0,2,4,7]},{"y":556.13,"x":-3154.84,"nodes":[38323],"orbits":[0]},{"y":-551.55,"x":-3144.84,"nodes":[48305],"orbits":[0]},{"y":-9385.96,"x":-3142.23,"nodes":[39935],"orbits":[0]},{"y":-10395.75,"x":-3125.69,"nodes":[47168],"orbits":[0]},{"y":-1268.82,"x":-3114.85,"nodes":[17517,13233,62978,19873],"orbits":[0,2]},{"y":-5381.56,"x":-3109.62,"nodes":[30979],"orbits":[0]},{"y":12010.8,"x":-3090.1,"nodes":[37963,15855,59263,61441,54138],"orbits":[2,3,4,5,6]},{"y":-8364.27,"x":-3069.12,"nodes":[4407],"orbits":[0]},{"y":2529.2,"x":-3067.29,"nodes":[64327,18629,39517,49391,36629,44659,62732,53373,64192,18742],"orbits":[0,3,4,5]},{"y":-8608.16,"x":-3061.21,"nodes":[43366],"orbits":[0]},{"y":12013.21,"x":-3054.65,"nodes":[9762,10783,38564,20091],"orbits":[2,3,5,6]},{"y":-8762.37,"x":-3049.19,"nodes":[15194],"orbits":[0]},{"y":6253.4,"x":-3044.02,"nodes":[34747,24753,56567,151,6274],"orbits":[0,7]},{"y":4483.94,"x":-2998.56,"nodes":[43895,13562],"orbits":[7]},{"y":4483.94,"x":-2977.66,"nodes":[23650,56616,41415],"orbits":[0,2]},{"y":5127.02,"x":-2964.62,"nodes":[33169],"orbits":[0]},{"y":8508.26,"x":-2957.46,"nodes":[25011,60404,20691,41739],"orbits":[0,2]},{"y":-5824.67,"x":-2919.8,"nodes":[33618,39990,20718,13294],"orbits":[0,1,2,7]},{"y":-7995.13,"x":-2904.82,"nodes":[29148],"orbits":[0]},{"y":1645.22,"x":-2851.04,"nodes":[27726,32416,6529],"orbits":[2]},{"y":0.53,"x":-2849.6,"nodes":[8406,6015,35426],"orbits":[6,3]},{"y":-8749.27,"x":-2824.48,"nodes":[2606,21606,20388],"orbits":[1,2,3]},{"y":10498.42,"x":-2808.97,"nodes":[64471],"orbits":[4]},{"y":-1621.78,"x":-2808.15,"nodes":[22045,63209,30704,13505],"orbits":[0,7]},{"y":-1621.78,"x":-2808.15,"nodes":[4956],"orbits":[0]},{"y":-9385.96,"x":-2764.23,"nodes":[44344],"orbits":[0]},{"y":-9028.75,"x":-2730.42,"nodes":[14575],"orbits":[0]},{"y":-2063.25,"x":-2656.19,"nodes":[63469,57967,50216,30834],"orbits":[0,2]},null,{"y":-1090.72,"x":-2644.37,"nodes":[6898],"orbits":[0]},{"y":-8808.47,"x":-2625.49,"nodes":[3414],"orbits":[0]},{"y":7375.23,"x":-2620.07,"nodes":[23227,39564,3516],"orbits":[4,7]},{"y":7379.36,"x":-2620.07,"nodes":[38663,49618,62039],"orbits":[0,7]},{"y":7389.42,"x":-2620.07,"nodes":[55348],"orbits":[0]},{"y":7921.63,"x":-2620.07,"nodes":[13279],"orbits":[0]},{"y":-10245.46,"x":-2597.32,"nodes":[38105,49455,13537,44299,6006,23939,59425,2508,51797,22141,857,58789,46275,13307,26614,3894],"orbits":[0,4,7]},{"y":-8604.12,"x":-2588.8,"nodes":[47284],"orbits":[0]},{"y":3935.52,"x":-2557.26,"nodes":[23062,19122,28432,20416],"orbits":[0,2]},{"y":5385.78,"x":-2556.85,"nodes":[42177],"orbits":[0]},{"y":3454.27,"x":-2551.13,"nodes":[5920,52574,55478,48006,33604],"orbits":[0,2,7]},{"y":11113.83,"x":-2545.36,"nodes":[45824],"orbits":[0]},{"y":9843.04,"x":-2542.83,"nodes":[55152,42710,65287,56996,9568,41186,58117,13839,5580],"orbits":[0,2,3,4,5]},{"y":10828.42,"x":-2542.83,"nodes":[8493],"orbits":[0]},{"y":5371.8,"x":-2540.65,"nodes":[5049,43183,11153,49231],"orbits":[7]},{"y":-8376.52,"x":-2530.04,"nodes":[3332],"orbits":[0]},{"y":-1450.05,"x":-2522.24,"nodes":[53396,64370,45923,52319],"orbits":[6]},{"y":3479.47,"x":-2502.19,"nodes":[51921],"orbits":[6]},{"y":-3479.87,"x":-2457.53,"nodes":[58930,52429,6294,4847,14934,858,58387,52454,46604,2138,1546,38827,31890,25745,21081],"orbits":[2,3,4,5,7]},{"y":1033.71,"x":-2393.09,"nodes":[5710,14923,46325,33556,55473,43164,1207,13397,39581,6839],"orbits":[0,4,7]},{"y":-8977.68,"x":-2364.29,"nodes":[61042],"orbits":[0]},{"y":-7995.13,"x":-2357.94,"nodes":[33631],"orbits":[0]},{"y":8496,"x":-2353.54,"nodes":[33369],"orbits":[0]},{"y":-3487.38,"x":-2351.05,"nodes":[38856],"orbits":[6]},{"y":-4007.49,"x":-2291.85,"nodes":[46358,50423,59376],"orbits":[6]},{"y":-4242.75,"x":-2241.38,"nodes":[19240],"orbits":[0]},{"y":4750.59,"x":-2234.02,"nodes":[28860],"orbits":[0]},{"y":5028.07,"x":-2234.02,"nodes":[56104],"orbits":[0]},{"y":-1722.64,"x":-2228.21,"nodes":[28950],"orbits":[0]},{"y":3539.9,"x":-2221.54,"nodes":[13241],"orbits":[6]},{"y":3805.96,"x":-2199.44,"nodes":[53589],"orbits":[0]},{"y":-968.66,"x":-2188.85,"nodes":[17584,28446,12430,61067,1143,58170],"orbits":[2]},{"y":3688.8,"x":-2134.26,"nodes":[48670],"orbits":[6]},{"y":1554.69,"x":-2092.78,"nodes":[1913,4665,61534,7721,64683,41031,23570,36709,63393],"orbits":[0,4,7]},{"y":7612.1,"x":-2086.96,"nodes":[10772,21468,2119,39274,53505],"orbits":[0,2,3]},{"y":8229.42,"x":-2086.96,"nodes":[36634],"orbits":[0]},{"y":-4701.25,"x":-2076.24,"nodes":[48581,15969,41129,24338,15838,33242,13387],"orbits":[3,4,5,6]},{"y":-6987.04,"x":-2073.61,"nodes":[7424,27491,1823,36994,29432,4061,34531,25363,44098],"orbits":[4,7]},{"y":-10395.75,"x":-2071.82,"nodes":[54521],"orbits":[0]},{"y":2453.77,"x":-2059.23,"nodes":[54232],"orbits":[0]},{"y":-9444.54,"x":-2031.54,"nodes":[53524],"orbits":[0]},{"y":4519.75,"x":-2012.03,"nodes":[41646],"orbits":[0]},{"y":4750.59,"x":-2012.03,"nodes":[14091],"orbits":[0]},{"y":5028.07,"x":-2012.03,"nodes":[42981],"orbits":[0]},{"y":-8506.27,"x":-1940.55,"nodes":[20119,18160,15809,26945,31175,22783,30720,54036,17501],"orbits":[0,2,3,7]},{"y":-1422.19,"x":-1927.77,"nodes":[50626,32597,12777,3918,54708,59695],"orbits":[2]},{"y":-3294.04,"x":-1892.34,"nodes":[3041,47555,53697,10156,59795],"orbits":[3,5,6]},{"y":-9329.81,"x":-1863.91,"nodes":[57555],"orbits":[0]},{"y":6665.33,"x":-1863.48,"nodes":[13942,65023,18186,6626,32354,34433,24009,46475,16744,4716,24748],"orbits":[0,2,3,4]},{"y":4750.59,"x":-1789.41,"nodes":[23993],"orbits":[0]},{"y":5028.07,"x":-1789.41,"nodes":[8115],"orbits":[0]},{"y":-9560.06,"x":-1781.92,"nodes":[43647,32727,32507,12851,52973,37608],"orbits":[0,2,4,7]},{"y":3906.89,"x":-1769.02,"nodes":[7628],"orbits":[6]},{"y":3932.27,"x":-1717.06,"nodes":[53853,36170,28693,49280,57320],"orbits":[0,2,7]},{"y":9721.18,"x":-1683.9,"nodes":[35739],"orbits":[0]},{"y":9899.02,"x":-1636.23,"nodes":[3999,9737,59480,36522,37665,4577,42410,24813,8556],"orbits":[0,4,7]},{"y":8920.12,"x":-1610.62,"nodes":[6655],"orbits":[2]},{"y":10076.34,"x":-1588.72,"nodes":[20397],"orbits":[0]},{"y":8880.27,"x":-1587.62,"nodes":[35015],"orbits":[0]},{"y":-7995.13,"x":-1545.44,"nodes":[15885],"orbits":[0]},{"y":2648.54,"x":-1533.68,"nodes":[47796,62640,38501,27108,24880,17294,27501,19330,45916,34340,16168,45969,25374],"orbits":[2,4,5,6]},{"y":-734.8,"x":-1527.89,"nodes":[50084],"orbits":[0]},{"y":733.41,"x":-1525.89,"nodes":[3936],"orbits":[0]},{"y":8698.1,"x":-1482.46,"nodes":[58718],"orbits":[0]},{"y":-4703.73,"x":-1432.94,"nodes":[34058],"orbits":[0]},{"y":8880.27,"x":-1410.85,"nodes":[40336],"orbits":[0]},{"y":957.2,"x":-1397.89,"nodes":[38646],"orbits":[0]},{"y":-954.59,"x":-1396.89,"nodes":[13855],"orbits":[0]},{"y":10828.42,"x":-1367.15,"nodes":[54099],"orbits":[0]},{"y":11595,"x":-1367.15,"nodes":[17150,23888,29399,7390,53647,51446,19750],"orbits":[0,3]},{"y":-11122.46,"x":-1351.99,"nodes":[23450,558,23091,63021,11366,39515,39228,62603,19715,46300,52774,57832,34290,5084,35324,34927],"orbits":[0,2,3,4,5]},{"y":4972.79,"x":-1349.52,"nodes":[44707,32885,54785,51735,6689,45599],"orbits":[0,2,4,7]},{"y":-4290.85,"x":-1322.31,"nodes":[8349,56564,42077,31644,49235,14739,2102],"orbits":[0,2]},{"y":-7376.61,"x":-1316.98,"nodes":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3]},{"y":-3298.79,"x":-1309.39,"nodes":[39886],"orbits":[0]},{"y":8391.66,"x":-1305.68,"nodes":[65322],"orbits":[0]},{"y":8698.1,"x":-1305.68,"nodes":[47709],"orbits":[0]},{"y":733.1,"x":-1271.19,"nodes":[47175],"orbits":[0]},{"y":-728.9,"x":-1245.18,"nodes":[61525],"orbits":[0]},{"y":8879.97,"x":-1200.68,"nodes":[63814],"orbits":[0]},{"y":-10395.75,"x":-1184.99,"nodes":[45885],"orbits":[0]},{"y":-9609.62,"x":-1184.99,"nodes":[45570,43713,3051,35602,27009,30459],"orbits":[0,1,4,7]},{"y":4121.27,"x":-1181.15,"nodes":[40043,9857,55231,37361,54990],"orbits":[1,2,7]},{"y":7733.04,"x":-1170.69,"nodes":[8789,16938,29930,63182,37266],"orbits":[0,2,7]},{"y":8229.42,"x":-1170.69,"nodes":[54818],"orbits":[0]},{"y":8698.1,"x":-1137.16,"nodes":[13425],"orbits":[0]},{"y":11095.71,"x":-1099.85,"nodes":[28492],"orbits":[0]},{"y":8879.97,"x":-1032.12,"nodes":[315],"orbits":[0]},{"y":8919.8,"x":-1009.12,"nodes":[33216],"orbits":[2]},{"y":-5546.35,"x":-949.03,"nodes":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776],"orbits":[0,2,3,4]},{"y":-7995.13,"x":-793.84,"nodes":[49512],"orbits":[0]},{"y":-8777.76,"x":-792.8,"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4]},{"y":5189.25,"x":-767.04,"nodes":[46343],"orbits":[0]},{"y":-2537.92,"x":-752.96,"nodes":[18407],"orbits":[0]},{"y":6556.71,"x":-617.1,"nodes":[58714,29514,21077,3109,36169,354,48429,52274,39431],"orbits":[0,3,4]},{"y":-14993.055865568,"x":-4948.9690050971,"nodes":[18158],"orbits":[0]},{"y":8229.42,"x":-593.45,"nodes":[15182],"orbits":[0]},{"y":9710.46,"x":-484.77,"nodes":[29402,4046,8875,50687],"orbits":[1,2,7]},{"y":-3316.19,"x":-478.3,"nodes":[22821,22314],"orbits":[0,7]},{"y":-3030.38,"x":-478.3,"nodes":[51184],"orbits":[0]},{"y":-3752.19,"x":-478.24,"nodes":[3823,60230,51968,51335,64046,45522,5726],"orbits":[0,1,3,5,7]},{"y":-4703.73,"x":-478.02,"nodes":[56935],"orbits":[0]},{"y":-2158.22,"x":-478.01,"nodes":[22419],"orbits":[0]},{"y":10441.13,"x":-457.32,"nodes":[55066,19796,15899,18308,21721,21627],"orbits":[2,3,4,7]},{"y":-7425.82,"x":-450.05,"nodes":[10398,3472,56640,26682],"orbits":[7]},{"y":8759.96,"x":-420.58,"nodes":[7049,25711,31566,22556,11257,10271,58038,35028,51974],"orbits":[0,2,3]},{"y":4842.33,"x":-420.12,"nodes":[47363,13708,9164,25513,51825,47856,32561],"orbits":[2,3,4,5,6]},{"y":3700.21,"x":-405.01,"nodes":[62588],"orbits":[0]},{"y":4798.23,"x":-376.02,"nodes":[14997],"orbits":[0]},{"y":-2574.13,"x":-374.23,"nodes":[55807,6686,1922,41965,1755,18845],"orbits":[0,2,7]},{"y":-9708.04,"x":-353.71,"nodes":[35492,30523,11376,50720,34199,43557],"orbits":[1,3,4,5,7]},{"y":-14331.845865568,"x":-4656.6990050971,"nodes":[36564,17754,24039,46644,18348,25239,61267,13174,34419,19482,39470,770,46016,8854,7793,64379,63894,23880,63484,24135,32699],"orbits":[6,5,9,8]},{"y":3156.44,"x":-262.23,"nodes":[28510,61438,42350],"orbits":[6]},{"y":2491.06,"x":-257.48,"nodes":[5407],"orbits":[0]},{"y":7972.75,"x":-248.37,"nodes":[934,9825,12526],"orbits":[4,3]},{"y":2592.67,"x":-203.43,"nodes":[44605,2455,48588,13081],"orbits":[5]},{"y":3700.23,"x":-152.71,"nodes":[57039,14572,11037],"orbits":[3]},{"y":3572.61,"x":-150.31,"nodes":[29328,43201,43383,37450],"orbits":[4]},{"y":1690.41,"x":-133.15,"nodes":[59779],"orbits":[0]},null,{"y":-1405.7,"x":-30.93,"nodes":[44871],"orbits":[3]},{"y":-7301.82,"x":-0.88,"nodes":[46819],"orbits":[0]},{"y":-11153.83,"x":0,"nodes":[11337,29369,23427,47270,52799,60515,44455,19955,62914,41669,55250,56649,41972,17380],"orbits":[0,1,3,4]},{"y":-10395.75,"x":0,"nodes":[61419],"orbits":[0]},{"y":-9772.2,"x":0,"nodes":[29009],"orbits":[0]},{"y":-9371.2,"x":0,"nodes":[5314],"orbits":[4]},{"y":-7995.13,"x":0,"nodes":[59362],"orbits":[0]},{"y":-5955.17,"x":0,"nodes":[8616],"orbits":[0]},{"y":-4700.35,"x":0,"nodes":[57710],"orbits":[6]},{"y":-4439.9,"x":0,"nodes":[22290,5501,48821,15618,32404],"orbits":[0,2,3]},{"y":-3031.45,"x":0,"nodes":[29502,47307,36302,3242,13769,59636,48007],"orbits":[0,2,7]},{"y":-1490.58,"x":0,"nodes":[54447],"orbits":[0]},{"y":10105.93,"x":0.13,"nodes":[52125],"orbits":[0]},{"y":10828.42,"x":0.13,"nodes":[54127],"orbits":[0]},{"y":11836.46,"x":0.13,"nodes":[44176,16618,10273,49696,42280,24511,45272,21205,57047,35688,38138,45278,4492],"orbits":[0,5,7]},{"y":3822.38,"x":1.25,"nodes":[54417,49657],"orbits":[6]},{"y":3822.38,"x":1.63,"nodes":[10247,28370],"orbits":[6]},{"y":1469.82,"x":1.95,"nodes":[50986],"orbits":[0]},{"y":2418.36,"x":1.95,"nodes":[52442,14254,97],"orbits":[2]},{"y":2829.7,"x":1.95,"nodes":[47150,38779,44836],"orbits":[2]},{"y":6250.78,"x":1.95,"nodes":[48635],"orbits":[0]},{"y":7013.94,"x":1.95,"nodes":[21755],"orbits":[0]},{"y":5712,"x":3.72,"nodes":[57805,43444,7788],"orbits":[4,7]},{"y":5712,"x":4.1,"nodes":[38003,28361,47782],"orbits":[4,7]},{"y":-6484.35,"x":5.06,"nodes":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7]},{"y":5223.21,"x":6.24,"nodes":[63526],"orbits":[0]},{"y":8229.42,"x":8.31,"nodes":[2847],"orbits":[0]},{"y":9742.42,"x":8.31,"nodes":[54282],"orbits":[3]},{"y":-1404.7,"x":28.94,"nodes":[4739],"orbits":[3]},{"y":1689.33,"x":136.86,"nodes":[59915],"orbits":[0]},{"y":3572.63,"x":150.01,"nodes":[41210,43578,59028,8092],"orbits":[4]},{"y":3700.21,"x":151.5,"nodes":[50609,14926,11916],"orbits":[3]},{"y":2596.07,"x":225.42,"nodes":[11311,38057,34061,56910],"orbits":[5]},{"y":6565.73,"x":260.71,"nodes":[16538,9217,61281,47733,5108,44330],"orbits":[0,2,3]},{"y":-14753.775865568,"x":-4086.0390050971,"nodes":[10694],"orbits":[0]},{"y":3155.84,"x":262.02,"nodes":[7741,42500,59881],"orbits":[6]},{"y":7972.57,"x":265.15,"nodes":[17340,40341,62051],"orbits":[4,3]},{"y":2491.06,"x":273.71,"nodes":[2461],"orbits":[0]},{"y":-2574.13,"x":371.9,"nodes":[30346,34006,15408,29695,43736,6338],"orbits":[0,2,7]},{"y":3700.23,"x":407.71,"nodes":[1477],"orbits":[0]},{"y":-4284.19,"x":419.3,"nodes":[517],"orbits":[0]},{"y":-9854.2,"x":424.33,"nodes":[4017,12918,26447,10079,49633],"orbits":[0,2]},{"y":-2158.22,"x":472.38,"nodes":[56216],"orbits":[0]},{"y":-4703.51,"x":486.61,"nodes":[39037],"orbits":[0]},{"y":-3752.19,"x":486.99,"nodes":[14666,9642,17973,4748,61027],"orbits":[0,3,7]},{"y":-3030.38,"x":486.99,"nodes":[2254],"orbits":[0]},{"y":-8654.59,"x":494.7,"nodes":[4113,36782,55572,44179],"orbits":[0,7]},{"y":-8654.42,"x":494.7,"nodes":[1151,4627,57626],"orbits":[7]},{"y":-7995.13,"x":497.14,"nodes":[3025],"orbits":[0]},{"y":-7301.82,"x":497.9,"nodes":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,4,7]},{"y":8723.77,"x":502.65,"nodes":[44765,22533,11066,26663,32233],"orbits":[0,2,3,7]},{"y":-5930.42,"x":533.4,"nodes":[58090,13542,48774,34367,21540,27658,44850],"orbits":[0,7]},{"y":9564.7,"x":541.38,"nodes":[45576,51944,55060,43829,49406,47683,51728,33037,6505],"orbits":[0,2,3,4,5,7]},{"y":-4284.19,"x":552.41,"nodes":[22691],"orbits":[0]},{"y":8229.3,"x":610.22,"nodes":[56978],"orbits":[0]},{"y":5034.86,"x":615.53,"nodes":[8872],"orbits":[0]},{"y":5034.86,"x":615.53,"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3]},null,{"y":7013.94,"x":729.71,"nodes":[19223,25213,27270,37872,21871,51847,33974,31189,64665,28863],"orbits":[0,4,7]},{"y":-2537.92,"x":756.52,"nodes":[9485],"orbits":[0]},{"y":-5167.46,"x":842.34,"nodes":[53975,55104,33254,19125],"orbits":[1,2,7]},{"y":-11153.83,"x":855.73,"nodes":[15083],"orbits":[0]},{"y":11379.02,"x":940.85,"nodes":[35653],"orbits":[0]},{"y":-11368.6,"x":979.73,"nodes":[22271],"orbits":[0]},{"y":4639.54,"x":1010.78,"nodes":[58109],"orbits":[0]},{"y":-5546.35,"x":1061.08,"nodes":[40783],"orbits":[0]},{"y":-7995.13,"x":1063.41,"nodes":[38732],"orbits":[0]},{"y":-11138.26,"x":1079.94,"nodes":[18651],"orbits":[0]},{"y":-11559.12,"x":1089.73,"nodes":[55554],"orbits":[0]},{"y":-3001.45,"x":1089.99,"nodes":[60685],"orbits":[0]},{"y":-9412.83,"x":1120.74,"nodes":[40345,42290,52254,37991],"orbits":[7]},{"y":-9540.92,"x":1123.28,"nodes":[50540],"orbits":[0]},{"y":-9669,"x":1125.8,"nodes":[36639,32009,36814,16499],"orbits":[7]},{"y":10210.59,"x":1168.66,"nodes":[25619,42354,57196,23702,43562,3660,63445,59501],"orbits":[0,2,3]},{"y":10828.42,"x":1168.66,"nodes":[55802],"orbits":[0]},{"y":11146.25,"x":1168.66,"nodes":[3717],"orbits":[0]},{"y":-7361.54,"x":1172.02,"nodes":[33180,11788,14355,60269,8483,46989,16845,6588],"orbits":[0,6,7]},{"y":-10395.55,"x":1185.03,"nodes":[62677],"orbits":[0]},{"y":8229.3,"x":1188.06,"nodes":[21274],"orbits":[0]},{"y":8669.63,"x":1188.06,"nodes":[57190,27859,38694,38763,22188],"orbits":[1,7]},{"y":-11753.77,"x":1197.13,"nodes":[26905],"orbits":[3]},{"y":-11414.66,"x":1199.73,"nodes":[11736,8821,28975],"orbits":[3,4,6]},{"y":-728.84,"x":1270.43,"nodes":[44683],"orbits":[0]},{"y":735.85,"x":1274.68,"nodes":[50459],"orbits":[0]},{"y":-3294.7,"x":1308.1,"nodes":[1826],"orbits":[0]},{"y":-11545.12,"x":1317.44,"nodes":[63863,27785],"orbits":[0,7]},{"y":-11139.64,"x":1331.34,"nodes":[36293,55708],"orbits":[0,7]},{"y":9646.22,"x":1353.57,"nodes":[44566],"orbits":[0]},{"y":11380.85,"x":1366.53,"nodes":[65468],"orbits":[0]},{"y":-4183.63,"x":1423.72,"nodes":[48030,6715,62436,116,3215,41372,44359],"orbits":[0,7]},{"y":-10128.26,"x":1452.32,"nodes":[47759],"orbits":[0]},{"y":3454.96,"x":1474.81,"nodes":[53996,17686,43575,41512],"orbits":[7]},{"y":-2826.54,"x":1484.79,"nodes":[42736],"orbits":[0]},{"y":2614.41,"x":1516.21,"nodes":[10909,16489,28556],"orbits":[6,3]},{"y":11253.56,"x":1559.69,"nodes":[19998],"orbits":[0]},{"y":5468.94,"x":1562.78,"nodes":[2486,19341,56118,61487,36596,8440,63732,45013,58884],"orbits":[0,1,3,4,7]},{"y":-4703.51,"x":1563.03,"nodes":[11672],"orbits":[0]},{"y":4074.07,"x":1564.64,"nodes":[58783,37190,35855,48583,26520,35859],"orbits":[0,2]},{"y":3240.19,"x":1598.81,"nodes":[39116,9941,38888],"orbits":[7,3]},{"y":-3445.28,"x":1600.36,"nodes":[42076,46972,17706],"orbits":[0,2,7]},{"y":-3528.07,"x":1609.6,"nodes":[54783],"orbits":[1]},{"y":1718.94,"x":1634.14,"nodes":[48401,15507,1140],"orbits":[2,3,6]},{"y":9770.52,"x":1657.19,"nodes":[48846],"orbits":[0]},{"y":-15936.832811271,"x":-2333.1006527255,"nodes":[30117],"orbits":[0]},{"y":-2698.11,"x":1695.71,"nodes":[30555],"orbits":[0]},{"y":-2969.93,"x":1714.69,"nodes":[4203],"orbits":[0]},{"y":4453,"x":1734.98,"nodes":[14340],"orbits":[0]},{"y":4819.73,"x":1734.98,"nodes":[58939,26319,30990,44608],"orbits":[0,2]},{"y":-8459.25,"x":1739.33,"nodes":[57810],"orbits":[0]},{"y":1310.44,"x":1749.97,"nodes":[13828,49691,31409,50437,32274,61106,59653,35987],"orbits":[0,2,4,7]},{"y":7652.52,"x":1756.1,"nodes":[3995,12311,64119,18115,48856,17882,33596],"orbits":[0,7]},{"y":8224.29,"x":1756.1,"nodes":[6230],"orbits":[0]},{"y":-14850.802811271,"x":-2257.2906527255,"nodes":[48551],"orbits":[0]},{"y":-8813.02,"x":1775.79,"nodes":[40073],"orbits":[0]},{"y":-7166.71,"x":1798.44,"nodes":[48290,49088,47155,55180,17394,45530,3443,63545],"orbits":[0,2,3,7]},{"y":-1202.94,"x":1821.35,"nodes":[7576,33866,10364,42857,20024,44223,55342,17248,10429,49220],"orbits":[0,1,2,4,5,7]},{"y":-7995.13,"x":1834.81,"nodes":[28475],"orbits":[0]},{"y":11423.83,"x":1857.66,"nodes":[7062,16680,48137,33887,43155,31763,33415,6178],"orbits":[4]},{"y":6744.84,"x":1899.93,"nodes":[64726,19573,17553,46296,38479,19342,27493],"orbits":[1,2,3,4,7]},{"y":11359.34,"x":1954.46,"nodes":[44430],"orbits":[0]},{"y":-978.15,"x":1958.85,"nodes":[44343,55276,52980,17366,18970,29361,11938,39964,1215,48198],"orbits":[0,1,2,4,5,7]},{"y":-9606.62,"x":1960.52,"nodes":[33225],"orbits":[0]},{"y":-5415.73,"x":1970.55,"nodes":[39987,12419,18913,56063],"orbits":[0,2,3,7]},{"y":8703.04,"x":1984.84,"nodes":[10998,9736,61396,61318,1019,45037,21438,62235],"orbits":[0,2,3,4,7]},{"y":-4242.81,"x":1986.68,"nodes":[21779,9185,40760,60107,57204,47833],"orbits":[0,2]},{"y":855.02,"x":2012.88,"nodes":[35660,18548,62628,4313,56651,35234,6789,28992],"orbits":[0,2,4,7]},{"y":2999.71,"x":2015.32,"nodes":[17726,11826],"orbits":[7]},{"y":9673.14,"x":2015.42,"nodes":[11315],"orbits":[0]},{"y":-8410.02,"x":2049.52,"nodes":[20387],"orbits":[0]},{"y":-10786.21,"x":2107.3,"nodes":[63861,55947,13823,46088,62153,32054],"orbits":[3,2]},{"y":-10394.21,"x":2107.3,"nodes":[46554],"orbits":[0]},{"y":-9931.58,"x":2107.3,"nodes":[41225,48611,4271,62887],"orbits":[0,2]},{"y":-4703.51,"x":2110.13,"nodes":[47177],"orbits":[0]},{"y":-9242.62,"x":2123.13,"nodes":[13738],"orbits":[0]},{"y":-9511.45,"x":2157.18,"nodes":[61768],"orbits":[0]},{"y":-6650.5,"x":2165.23,"nodes":[56926,44255,14548,59541,10320,28573,15358,41905],"orbits":[0,2,3,7]},{"y":4717.44,"x":2192.99,"nodes":[2841,33059,39839,20205],"orbits":[0,2]},{"y":-14556.092811271,"x":-1819.1806527255,"nodes":[26383],"orbits":[0]},{"y":3806.76,"x":2199.2,"nodes":[48568],"orbits":[0]},{"y":-3836.38,"x":2214.93,"nodes":[49046],"orbits":[0]},{"y":-3149.3,"x":2229.99,"nodes":[62159,59603,57110,46561],"orbits":[0,2,7]},{"y":11545.87,"x":2242.8,"nodes":[61432],"orbits":[0]},{"y":9939.27,"x":2260.4,"nodes":[5961],"orbits":[0]},{"y":-8744.45,"x":2262.33,"nodes":[17024],"orbits":[0]},{"y":10332.05,"x":2281.59,"nodes":[54675],"orbits":[0]},{"y":-3970.17,"x":2292.18,"nodes":[58329,31950,8569],"orbits":[6]},{"y":556.07,"x":2305.52,"nodes":[16460,43746,38143],"orbits":[2,3,6]},null,{"y":-9025.62,"x":2327.18,"nodes":[37372],"orbits":[0]},{"y":-8192.45,"x":2363.78,"nodes":[53266],"orbits":[0]},{"y":2986.75,"x":2377.83,"nodes":[20744,33053,4844,50795,58013],"orbits":[1,7]},{"y":-9611.59,"x":2393.91,"nodes":[63926],"orbits":[0]},{"y":-14986.842811271,"x":-1575.1806527255,"nodes":[52703,8415,26282,27667,23416,56162,7656,62388,30071,59342,59822],"orbits":[6,5,9,8]},{"y":3459.95,"x":2457.39,"nodes":[46224,24045,49799,45019],"orbits":[0,2]},{"y":4266.46,"x":2459.2,"nodes":[26786,18882],"orbits":[0,5]},{"y":-3622.89,"x":2459.21,"nodes":[23764],"orbits":[0]},{"y":-5120.46,"x":2474.06,"nodes":[50485,28229,8540,45230,22959],"orbits":[0,2]},{"y":9574.5,"x":2476.38,"nodes":[5295],"orbits":[0]},{"y":7415.67,"x":2503.68,"nodes":[19288],"orbits":[0]},{"y":7792.67,"x":2503.68,"nodes":[38814],"orbits":[0]},{"y":8595.66,"x":2503.68,"nodes":[20504,52836,56806,11980,62341],"orbits":[0,4,7]},{"y":-8588.17,"x":2524.57,"nodes":[13576],"orbits":[0]},{"y":10828.42,"x":2568.17,"nodes":[58814],"orbits":[0]},{"y":1485.46,"x":2573.06,"nodes":[29582,43923,19470,50328,10053,9458],"orbits":[0,2,3]},{"y":-4030.32,"x":2577.55,"nodes":[4850],"orbits":[0]},{"y":5169.65,"x":2590.36,"nodes":[11855,56999,44014,30829],"orbits":[0,2]},{"y":-7324.15,"x":2590.88,"nodes":[58002,55575,45086,34520,23738],"orbits":[0,2,3,7]},{"y":-7995.13,"x":2634.6,"nodes":[35896],"orbits":[0]},{"y":-5692.92,"x":2653.82,"nodes":[34984,12661,44917,18895,703,10552],"orbits":[0,1,7]},{"y":-14556.092811271,"x":-1331.1606527255,"nodes":[31223],"orbits":[0]},{"y":-2103.71,"x":2694.54,"nodes":[4157,55088,34168],"orbits":[7]},{"y":-2329.78,"x":2704.11,"nodes":[53960],"orbits":[5]},{"y":-2058.41,"x":2724.74,"nodes":[36479,36778,12925],"orbits":[4]},{"y":2024.66,"x":2727.45,"nodes":[61312,20831,29843,48585,55397,40630,44527,44875],"orbits":[0,2,4,7]},{"y":-8432.77,"x":2737.88,"nodes":[53560],"orbits":[0]},{"y":-3760.9,"x":2744.59,"nodes":[35503],"orbits":[0]},{"y":-2001.95,"x":2753.29,"nodes":[34233,14725,32545,16123],"orbits":[3,2]},{"y":1599.66,"x":2770.83,"nodes":[19104],"orbits":[0]},{"y":4311.96,"x":2806.74,"nodes":[64352],"orbits":[0]},{"y":11410.84,"x":2822.01,"nodes":[63731],"orbits":[0]},{"y":-8695.66,"x":2875.59,"nodes":[37806],"orbits":[0]},{"y":9533.6,"x":2880.86,"nodes":[12337],"orbits":[0]},{"y":-3430.12,"x":2886.44,"nodes":[25281,10677,56638,53935],"orbits":[1,2]},{"y":-4100.44,"x":2886.7,"nodes":[7405],"orbits":[0]},{"y":-10114.18,"x":2922.78,"nodes":[62230,19355,37974],"orbits":[6]},{"y":-9973.75,"x":2922.78,"nodes":[39567,50816,50755,10159,4828,25026,36379,31977,19044,3567,33345,10314,61923,16256,53188],"orbits":[0,1,2,3,4,5]},{"y":-1694.84,"x":2935.56,"nodes":[21336,15975,62984,58182,7344,26931],"orbits":[3,2]},{"y":-2768.08,"x":2939.76,"nodes":[8975],"orbits":[0]},{"y":4537.32,"x":2947.79,"nodes":[44345],"orbits":[0]},{"y":11341.18,"x":2951.74,"nodes":[52354],"orbits":[0]},{"y":11601.88,"x":3014.72,"nodes":[9020,244,41171,37767,6596,36341,35118],"orbits":[0,1,2,4,7]},{"y":-8449.68,"x":3025.39,"nodes":[46157],"orbits":[0]},{"y":-6418.35,"x":3049.32,"nodes":[38614,25827,55241,44201,27662],"orbits":[1,2,3]},{"y":6562.01,"x":3065.84,"nodes":[53196,12322,32135,35848,28625,46692,51509,9393],"orbits":[0,1,4,7]},{"y":5345.94,"x":3086.31,"nodes":[42250],"orbits":[0]},{"y":1336.95,"x":3109.38,"nodes":[6772,30695,13783,19808,56472,22795,55429,42781],"orbits":[0,2,4,7]},{"y":7440.94,"x":3112.88,"nodes":[17118],"orbits":[0]},{"y":8088.26,"x":3112.88,"nodes":[20049,30252,32818,48135,12750],"orbits":[0,7]},{"y":-14850.802811271,"x":-904.29065272554,"nodes":[50192],"orbits":[0]},{"y":-1389.24,"x":3116.47,"nodes":[63064,65437,30634,54413],"orbits":[3,2]},{"y":10116,"x":3117.89,"nodes":[33946,34074,57227,23259,22864,57966],"orbits":[0,2,3,7]},{"y":-5418.83,"x":3128.56,"nodes":[46034],"orbits":[0]},{"y":3080.1,"x":3144.14,"nodes":[30047],"orbits":[0]},{"y":-1331.11,"x":3145.56,"nodes":[40068,53149,32683],"orbits":[4]},{"y":-15936.802811271,"x":-816.76065272554,"nodes":[3165],"orbits":[0]},{"y":9325.66,"x":3203.89,"nodes":[53965],"orbits":[0]},{"y":0.42,"x":3203.92,"nodes":[24825,34136,29479],"orbits":[5,3]},{"y":4292.78,"x":3228.15,"nodes":[48833],"orbits":[0]},{"y":4552.82,"x":3249.41,"nodes":[4],"orbits":[0]},{"y":-8000,"x":3266.72,"nodes":[55668],"orbits":[0]},{"y":-9003.35,"x":3284.63,"nodes":[29240],"orbits":[0]},{"y":3552.85,"x":3291.21,"nodes":[13341,56841,18451,63255],"orbits":[0,2]},{"y":4003.79,"x":3312.53,"nodes":[25170,19442,30820,8606],"orbits":[0,2,7]},{"y":-1178.15,"x":3369.01,"nodes":[13411],"orbits":[5]},{"y":-6936.23,"x":3371.91,"nodes":[25620,26804,55405,59909,30539,9083],"orbits":[0,1,7]},{"y":-9368.47,"x":3382.46,"nodes":[57513],"orbits":[0]},{"y":6043.67,"x":3395.61,"nodes":[16484],"orbits":[2]},{"y":-7266.34,"x":3446.89,"nodes":[25557],"orbits":[6]},{"y":2467.05,"x":3498.09,"nodes":[21280],"orbits":[0]},{"y":4752.05,"x":3512.67,"nodes":[11578],"orbits":[0]},{"y":-6134.17,"x":3541.56,"nodes":[41029],"orbits":[0]},{"y":2050.41,"x":3551.58,"nodes":[28050],"orbits":[6]},{"y":4441.55,"x":3555.53,"nodes":[5564],"orbits":[0]},{"y":-3733.75,"x":3563.72,"nodes":[24812,56360,64643,27176],"orbits":[0,2]},{"y":-9003.35,"x":3612.63,"nodes":[11838,10881,33112,36450],"orbits":[0,3,7]},{"y":-2983.2,"x":3632.11,"nodes":[17548,14958,630,13419,31039],"orbits":[0,1,7]},{"y":-482.86,"x":3641.03,"nodes":[24239,55846,40213,24481],"orbits":[0,1]},{"y":2776,"x":3664.91,"nodes":[64851,49545,45693,39658,18831],"orbits":[0,2,7]},{"y":-5089.48,"x":3699.04,"nodes":[5257,55507,22359,9141,13748,38338,35760,16367,60692,5703],"orbits":[0,3,4,7]},{"y":9144.92,"x":3713.22,"nodes":[14343],"orbits":[0]},{"y":6441.08,"x":3718.59,"nodes":[46830],"orbits":[0]},{"y":5692.67,"x":3722.97,"nodes":[25100],"orbits":[0]},{"y":-8266.37,"x":3728.09,"nodes":[47754,23455,49740,55847,27274],"orbits":[0,1,7]},{"y":-10338.81,"x":3772.63,"nodes":[10131],"orbits":[0]},{"y":10291.5,"x":3772.84,"nodes":[51048],"orbits":[0]},{"y":8437.76,"x":3775.92,"nodes":[62510,3985,43423,8697,30905,64140,51336,56818,38895,48660],"orbits":[0,2,3,4]},{"y":-1186.7,"x":3849.74,"nodes":[5702],"orbits":[0]},{"y":-2226.59,"x":3856.59,"nodes":[56045],"orbits":[0]},{"y":1790.7,"x":3888.73,"nodes":[60505],"orbits":[0]},{"y":3186.63,"x":3903.72,"nodes":[44612,9112,41538,55598,15644],"orbits":[0,1,3]},{"y":-10915.24,"x":3912.58,"nodes":[39280,55568,44669,32951,14127,44690,41522],"orbits":[0,2,3]},{"y":4292.71,"x":3915.95,"nodes":[63585],"orbits":[0]},{"y":449.43,"x":3918.15,"nodes":[31855,37408,60738,46761],"orbits":[0,2,7]},{"y":-6815.5,"x":3934.94,"nodes":[24321],"orbits":[0]},{"y":-6120.94,"x":3937.85,"nodes":[44563,59053,54805],"orbits":[0,3,5]},{"y":7406.81,"x":3941.17,"nodes":[33751,8810,12451],"orbits":[1,3,7]},{"y":940.43,"x":3990.34,"nodes":[11472,19880,59390,40270],"orbits":[0,2]},{"y":6086.8,"x":3992.99,"nodes":[18923],"orbits":[6]},{"y":-485.92,"x":3994,"nodes":[46146,15829,55227],"orbits":[0,7]},{"y":9341.54,"x":4018.45,"nodes":[54746],"orbits":[0]},{"y":-4125.73,"x":4022.98,"nodes":[21080,1869,27095,48658,14890],"orbits":[0,2,7]},{"y":0.42,"x":4039.97,"nodes":[43691,21746,65009,29517,32701],"orbits":[6]},{"y":10777.04,"x":4053.17,"nodes":[38703,63525,8249,16816,53094],"orbits":[0,7]},{"y":-2406.01,"x":4137.88,"nodes":[24647,61196],"orbits":[6]},{"y":-9665.79,"x":4155.05,"nodes":[36623,3628,64474,31630,10729],"orbits":[0,2]},{"y":6218.3,"x":4182.56,"nodes":[37220,50342,5227,17955,46402,51708],"orbits":[0,2,3,7]},{"y":4693.55,"x":4216.28,"nodes":[41062,47677,14045,33848,31991,65176,36070,9472],"orbits":[0,4,5,6,7]},{"y":9522.08,"x":4254.44,"nodes":[49110],"orbits":[0]},{"y":-8159.77,"x":4274.57,"nodes":[33979],"orbits":[0]},{"y":-271.82,"x":4332.46,"nodes":[44239,60083,55270],"orbits":[0,7]},{"y":5420.02,"x":4364.01,"nodes":[13030],"orbits":[0]},{"y":0.42,"x":4375.94,"nodes":[50469],"orbits":[0]},{"y":-4923.23,"x":4408.83,"nodes":[33823],"orbits":[0]},{"y":-5257.07,"x":4412.03,"nodes":[4519],"orbits":[0]},{"y":-4689.37,"x":4412.03,"nodes":[20236],"orbits":[0]},{"y":-1892.44,"x":4435.38,"nodes":[12761,19156,53941,17367,62841,12249,17283],"orbits":[0,2,3]},{"y":-3100.56,"x":4438.01,"nodes":[45481,29408,52765,34300,31888,13862],"orbits":[0,2]},{"y":406.27,"x":4462.98,"nodes":[23915,41529,21380,31284],"orbits":[0,1,2,7]},{"y":7833.83,"x":4518.83,"nodes":[24922],"orbits":[0]},{"y":5167.31,"x":4545.96,"nodes":[55],"orbits":[0]},{"y":-4974.35,"x":4575.26,"nodes":[4346],"orbits":[0]},{"y":9590.47,"x":4580.98,"nodes":[27262],"orbits":[0]},{"y":-6637.17,"x":4594,"nodes":[30562,13711,3203,8908,11032],"orbits":[0,2,7]},{"y":-7970.77,"x":4601.94,"nodes":[4059],"orbits":[0]},{"y":1375.23,"x":4605.3,"nodes":[45193,4083,33815,35644,43677],"orbits":[0,2,3]},{"y":5645.34,"x":4609.67,"nodes":[8510],"orbits":[0]},{"y":3196.7,"x":4618.5,"nodes":[48519,62438,43695,59142,28272,1594,56870,18750],"orbits":[1,2,3,7]},{"y":-9922.16,"x":4663.79,"nodes":[3251],"orbits":[0]},{"y":-2696.8,"x":4671.13,"nodes":[11604],"orbits":[0]},{"y":-1131.48,"x":4693.48,"nodes":[46380,21327,56876,1104],"orbits":[0,2]},{"y":-4974.35,"x":4742.03,"nodes":[13724],"orbits":[4]},{"y":7381.77,"x":4763.42,"nodes":[49661,49394,23786,33391,56330,39570],"orbits":[1,2,3,4,7]},{"y":9831.08,"x":4788.07,"nodes":[17702],"orbits":[0]},{"y":2293.82,"x":4791.75,"nodes":[1995],"orbits":[0]},{"y":5399.33,"x":4794.28,"nodes":[40918],"orbits":[0]},{"y":-4604.29,"x":4807.36,"nodes":[9586],"orbits":[4]},{"y":5089.21,"x":4815.03,"nodes":[1773],"orbits":[0]},{"y":1790.7,"x":4836.36,"nodes":[59047,20165,15051,21005,5701,24347,2656],"orbits":[0,2,3]},{"y":6440.13,"x":4846.33,"nodes":[61976],"orbits":[0]},{"y":5874.26,"x":4853.1,"nodes":[36298],"orbits":[0]},{"y":10455.42,"x":4874.52,"nodes":[23343,30392,13157,3775,28106,45244,58388,41016],"orbits":[0,2,3]},{"y":-7413.25,"x":4889.32,"nodes":[29763],"orbits":[0]},{"y":4793.73,"x":4889.52,"nodes":[51213],"orbits":[0]},{"y":-9126,"x":4893.51,"nodes":[22152,15304,16466,40196],"orbits":[0,2]},{"y":8478.38,"x":4895,"nodes":[34201],"orbits":[0]},{"y":9227.51,"x":4895,"nodes":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7]},{"y":-4971.48,"x":4931.13,"nodes":[20677],"orbits":[0]},{"y":2387.3,"x":4953.65,"nodes":[61356,12498,30341],"orbits":[0,7]},{"y":2861.7,"x":4955.38,"nodes":[63888],"orbits":[0]},{"y":-10454.74,"x":4971.28,"nodes":[18121,45319,55041,26135,35564,2335,65310,51565,22682],"orbits":[0,3]},{"y":-8629.92,"x":4982.5,"nodes":[10382],"orbits":[0]},{"y":542.4,"x":4989.84,"nodes":[37695],"orbits":[0]},{"y":-6098.03,"x":5055.55,"nodes":[20820,1106,44628,40166,48544],"orbits":[0,1,7]},{"y":-5200.3,"x":5063.02,"nodes":[9782],"orbits":[0]},{"y":-4742.69,"x":5063.02,"nodes":[535],"orbits":[0]},{"y":585.09,"x":5074.6,"nodes":[38044,11813],"orbits":[7]},{"y":2295.51,"x":5112.65,"nodes":[37946],"orbits":[0]},{"y":-706.97,"x":5145.98,"nodes":[46782,53698,20916,59355],"orbits":[0,7]},{"y":-2374.62,"x":5158.73,"nodes":[13367,21713,50588,38969,6010],"orbits":[0,2]},{"y":-2375.16,"x":5164.36,"nodes":[26148],"orbits":[0]},{"y":-7902.46,"x":5181.81,"nodes":[41645,6490,43964,14082,8831],"orbits":[0,2,4,7]},null,{"y":-5429.12,"x":5194.92,"nodes":[28021],"orbits":[0]},{"y":-4513.87,"x":5194.92,"nodes":[34621],"orbits":[0]},{"y":3481.47,"x":5235.35,"nodes":[3234,10927,9272,18470,4447],"orbits":[1,2,3,7]},{"y":4976.96,"x":5279.84,"nodes":[32813],"orbits":[2]},{"y":5262.42,"x":5279.84,"nodes":[59600,12208,13619,35809],"orbits":[1,7]},{"y":5356.65,"x":5279.84,"nodes":[49466,9411,30871],"orbits":[7]},{"y":719.09,"x":5286.04,"nodes":[30456],"orbits":[0]},{"y":-7410.44,"x":5288.98,"nodes":[39423,47635,53207,56914],"orbits":[1,2,3,7]},{"y":-3797.31,"x":5300.06,"nodes":[17254,26596,14272],"orbits":[0,2,3]},{"y":-1936.96,"x":5325.31,"nodes":[40480],"orbits":[0]},{"y":-5200.42,"x":5327.07,"nodes":[44420],"orbits":[0]},{"y":-4742.78,"x":5327.07,"nodes":[38541],"orbits":[0]},{"y":2636.01,"x":5345.07,"nodes":[51241,50420,55118,31364],"orbits":[0,2]},{"y":-1650.02,"x":5349.84,"nodes":[1953],"orbits":[0]},{"y":-6761.17,"x":5409.48,"nodes":[24165],"orbits":[0]},{"y":-9562.99,"x":5445.28,"nodes":[21984],"orbits":[1]},{"y":-4981.71,"x":5449.63,"nodes":[61601],"orbits":[0]},{"y":-1107.81,"x":5478.57,"nodes":[54176],"orbits":[0]},{"y":-5233.52,"x":5541.11,"nodes":[63132],"orbits":[4]},{"y":8088.82,"x":5569.75,"nodes":[4238,60173,62986,17316,43263,46688,40244,64492],"orbits":[0,4,7]},{"y":9486.45,"x":5571.69,"nodes":[46882],"orbits":[1]},{"y":1347.41,"x":5581.73,"nodes":[64213,32155,44204,33729,25700,61246,144,41096,45712,12611],"orbits":[0,4,5,7]},{"y":6014.8,"x":5583.03,"nodes":[7526],"orbits":[0]},{"y":-1722.99,"x":5628.44,"nodes":[23905],"orbits":[0]},{"y":3736.42,"x":5633.09,"nodes":[39569,9046,45609,56776,24129],"orbits":[1,2,7]},{"y":0.51,"x":5646.98,"nodes":[26598],"orbits":[0]},{"y":5672.63,"x":5674.71,"nodes":[46742],"orbits":[0]},{"y":-6287.76,"x":5749.4,"nodes":[4328],"orbits":[0]},{"y":-4981.71,"x":5749.4,"nodes":[42379],"orbits":[0]},{"y":-6838.35,"x":5891.44,"nodes":[38111,10242,6079,32241],"orbits":[0,2]},{"y":7308.69,"x":5911.53,"nodes":[11764,38878,54975,26772,45774,34898,24240],"orbits":[0,4,5,7]},{"y":-625.86,"x":5924.32,"nodes":[10944,33366,55193],"orbits":[1,2,7]},{"y":-1636.31,"x":5928.56,"nodes":[27875,55463,32123],"orbits":[0,3]},{"y":-2670.25,"x":5933.04,"nodes":[25971,50635,44423],"orbits":[0,2,3]},{"y":6448.44,"x":5980.81,"nodes":[21572,39050,6660],"orbits":[2]},{"y":-7475.15,"x":5988.31,"nodes":[50121],"orbits":[0]},{"y":2157.49,"x":5995.83,"nodes":[31345,30372,42065,55400,37532],"orbits":[0,2]},{"y":-4981.71,"x":6128.38,"nodes":[25520],"orbits":[0]},{"y":-3563.57,"x":6172.4,"nodes":[42750,37691,9050,56453,60138,25851,52695,57230,24958,31765,51741,16705,17088,24062,54351,64927,52464,5766,51416,32016,49984],"orbits":[0,5,6,7]},{"y":4653.4,"x":6194.67,"nodes":[45100,56928,62350,7163,23013],"orbits":[2,3,4,5]},{"y":-80.99,"x":6319.8,"nodes":[2448],"orbits":[2]},{"y":360.01,"x":6319.8,"nodes":[1631,14001,56893,29049],"orbits":[7,2]},{"y":2786.09,"x":6359.19,"nodes":[23608,40024,2091,61741,6951,63759,26565,24401],"orbits":[0,3,4,7]},{"y":3674.83,"x":6365.75,"nodes":[35901,12890,63566,62464,55275,12120,65207,51606,17854],"orbits":[3,4,6]},{"y":5562.9,"x":6365.75,"nodes":[31683],"orbits":[0]},{"y":-8685.67,"x":6372.73,"nodes":[61403],"orbits":[0]},{"y":-8307.67,"x":6372.73,"nodes":[56349],"orbits":[0]},{"y":-4456.86,"x":6411.76,"nodes":[5009,36270,12169],"orbits":[0,2,3]},{"y":-9326.22,"x":6437.42,"nodes":[20641,14231,40399,51934,43281,25304,47359,40453,61056],"orbits":[0,1,5,7]},{"y":-5451.42,"x":6446.96,"nodes":[52191],"orbits":[0]},{"y":-547.41,"x":6460.1,"nodes":[45709,26363,52803],"orbits":[7]},{"y":-531.61,"x":6460.1,"nodes":[7412,49291,57945,59356],"orbits":[0,7]},{"y":-6987.61,"x":6488.25,"nodes":[54725,56336,21208,21748],"orbits":[7]},{"y":876.88,"x":6551.51,"nodes":[57088,9421,28086,54557,60170],"orbits":[0,2]},{"y":-7691.65,"x":6564.29,"nodes":[3128,22713,12166],"orbits":[7]},{"y":-7691.65,"x":6564.44,"nodes":[19722,4959,26331,19003],"orbits":[0,7]},{"y":-7691.65,"x":6564.44,"nodes":[33221],"orbits":[0]},{"y":4176.51,"x":6564.69,"nodes":[42658],"orbits":[0]},{"y":-2236.79,"x":6565.35,"nodes":[54678],"orbits":[0]},{"y":-6987.61,"x":6612.09,"nodes":[6570],"orbits":[0]},{"y":-5652.35,"x":6644.63,"nodes":[57724,26885,34473,20782,42361],"orbits":[0,2,3,4,7]},{"y":7705.54,"x":6649.25,"nodes":[43720,14383,18568,46601,46887],"orbits":[0,2,3]},{"y":8378.88,"x":6649.25,"nodes":[38463],"orbits":[0]},{"y":3890.84,"x":6729.48,"nodes":[34015],"orbits":[0]},{"y":-6987.61,"x":6735.94,"nodes":[26268,22710,45111,59214],"orbits":[7]},{"y":8501.01,"x":6771.38,"nodes":[21111,43522,33099],"orbits":[4,7]},{"y":-5798.13,"x":6793.65,"nodes":[54883],"orbits":[0]},{"y":5897.33,"x":6805.17,"nodes":[28623,60464,12998,9968,30463,58971,38678],"orbits":[0,4,2]},{"y":4801,"x":6846.27,"nodes":[21495,42794,31433,5348],"orbits":[0,2,3]},{"y":3596.76,"x":6900.54,"nodes":[26432],"orbits":[0]},{"y":-5934.94,"x":6930.48,"nodes":[59775],"orbits":[0]},{"y":7197.76,"x":7031.53,"nodes":[6842,28329,18472,46533,3700,36723],"orbits":[2,3]},{"y":-8704.87,"x":7037.31,"nodes":[32438],"orbits":[0]},{"y":-3324.15,"x":7065.9,"nodes":[51871,8045,3042],"orbits":[0,2,3]},{"y":9630.67,"x":7074.07,"nodes":[28823,11094,59303],"orbits":[4,7]},{"y":0,"x":7088.65,"nodes":[14658],"orbits":[0]},{"y":513.16,"x":7088.65,"nodes":[28903,42959,59644,32896,22517],"orbits":[0,7]},{"y":-8248.39,"x":7119.01,"nodes":[55149],"orbits":[0]},{"y":-7914.57,"x":7123.27,"nodes":[14446],"orbits":[0]},{"y":4152.81,"x":7191.57,"nodes":[11825],"orbits":[0]},{"y":-1655.98,"x":7271.19,"nodes":[48974,47418,63517,23839,53958,51006,10738],"orbits":[0,2,3]},{"y":-2313.18,"x":7273.71,"nodes":[41877],"orbits":[0]},{"y":3682.83,"x":7309.21,"nodes":[63981,6516,8194],"orbits":[7]},{"y":2075.69,"x":7345.82,"nodes":[6792,23221,4534,42302,33245,9151,45331,31918],"orbits":[1,2,3,4,7]},{"y":-6708.34,"x":7365.71,"nodes":[52971,21227,36290,23046,62936,51891,49976,25528],"orbits":[2,3,4,7]},{"y":-380.49,"x":7386.63,"nodes":[24120,52053,14048,34717,10495],"orbits":[0,3,4,7]},{"y":-8305.21,"x":7420.17,"nodes":[26762],"orbits":[0]},{"y":7597.17,"x":7430.94,"nodes":[30657],"orbits":[0]},{"y":-8440.87,"x":7466.03,"nodes":[35380,10058],"orbits":[0,2]},{"y":1196.11,"x":7495.21,"nodes":[35671,11504,30839,31172],"orbits":[2,3,4,5]},{"y":-8629.84,"x":7501.94,"nodes":[44373],"orbits":[0]},{"y":-906.8,"x":7520.58,"nodes":[336,4806,49388,37304,64543,61921,38215],"orbits":[2,3,4,5]},{"y":-8913.34,"x":7559.71,"nodes":[6800],"orbits":[0]},{"y":4790.76,"x":7559.9,"nodes":[47374,18049,5802],"orbits":[0,4,7]},{"y":5232.4,"x":7615.5,"nodes":[62185],"orbits":[0]},{"y":696.89,"x":7632.55,"nodes":[15301,10277,64064,4709,35477],"orbits":[0,2]},{"y":-7774.6,"x":7645.67,"nodes":[31692,46197,61333,45702,39237],"orbits":[0,2]},{"y":-8333.04,"x":7691.01,"nodes":[58022],"orbits":[0]},{"y":-5462.17,"x":7749.73,"nodes":[34324,13457,3630,56838,26034,45631,62624,42805],"orbits":[3,4,7]},{"y":-4481.19,"x":7752.6,"nodes":[57821],"orbits":[4]},{"y":6434.67,"x":7762.38,"nodes":[59503,22208,60034,6330,15207,4378],"orbits":[0,7]},{"y":-8668.33,"x":7764.53,"nodes":[5186],"orbits":[0]},{"y":226,"x":7768.26,"nodes":[34497],"orbits":[0]},{"y":-4823.01,"x":7810.1,"nodes":[33404],"orbits":[0]},{"y":5340.56,"x":7866.21,"nodes":[14724],"orbits":[0]},{"y":-3177.92,"x":7868.42,"nodes":[52361,57462,53771,12078,33713,26107],"orbits":[0,2,3,5]},{"y":-7151.38,"x":7886.46,"nodes":[47976],"orbits":[0]},{"y":8057.48,"x":7891.25,"nodes":[63830,44841,45390,13624,59064,44756,28258,36927,36976,55235],"orbits":[0,1,2,3]},{"y":8803.79,"x":7901.35,"nodes":[48462,38497,62803,25029],"orbits":[4,5,7]},{"y":-4161.35,"x":7948.31,"nodes":[62542,45713,39607,2559,16329],"orbits":[0,2,3]},{"y":5617.65,"x":7952.58,"nodes":[32301],"orbits":[0]},{"y":2729.64,"x":7993.13,"nodes":[59740],"orbits":[0]},{"y":-1873.69,"x":7994.25,"nodes":[34483],"orbits":[0]},{"y":-996.85,"x":7994.25,"nodes":[49996],"orbits":[0]},{"y":-571.97,"x":7994.25,"nodes":[32183],"orbits":[0]},{"y":0,"x":7994.25,"nodes":[12253],"orbits":[0]},{"y":1153.21,"x":7994.25,"nodes":[35696],"orbits":[0]},{"y":2075.69,"x":7994.25,"nodes":[2408],"orbits":[0]},{"y":4152.81,"x":8000.05,"nodes":[10648,26400,8904],"orbits":[0,4,7]},{"y":5171.69,"x":8057.07,"nodes":[37813],"orbits":[0]},{"y":3245.63,"x":8107.67,"nodes":[17146,57518,31366,3843,65265],"orbits":[0,2,3]},{"y":230.47,"x":8167.23,"nodes":[16401],"orbits":[0]},{"y":6850.21,"x":8177.92,"nodes":[24786],"orbits":[0]},{"y":5525.79,"x":8194.81,"nodes":[50277],"orbits":[0]},{"y":5351.13,"x":8197.54,"nodes":[44932],"orbits":[3]},{"y":446.42,"x":8246.52,"nodes":[37113],"orbits":[0]},{"y":5299.58,"x":8253.92,"nodes":[50701],"orbits":[0]},{"y":1153.21,"x":8357.14,"nodes":[24070],"orbits":[0]},{"y":-2532.39,"x":8374.56,"nodes":[12239],"orbits":[0]},{"y":1815.57,"x":8376,"nodes":[51602,23305,21279,44280,35534],"orbits":[0,2]},{"y":-1209.02,"x":8397.3,"nodes":[5163,48103,26726,52875],"orbits":[0,2]},{"y":-2579.71,"x":8401.88,"nodes":[1599,35173,16013,41811,16140,31286],"orbits":[2,3,7]},{"y":643.92,"x":8447.81,"nodes":[43090],"orbits":[0]},{"y":249.7,"x":8448.58,"nodes":[44490],"orbits":[0]},{"y":-2688.36,"x":8464.62,"nodes":[39881],"orbits":[0]},{"y":-3633.16,"x":8464.96,"nodes":[7809],"orbits":[0]},{"y":4890.73,"x":8470.97,"nodes":[54984],"orbits":[0]},{"y":-7759.19,"x":8494.27,"nodes":[7302,14516,52615,33093,25729,26821,37876],"orbits":[3,4,7]},{"y":-366.15,"x":8525.13,"nodes":[61800,52630,28371,60560,29527,1514],"orbits":[0,1,7]},{"y":2408.96,"x":8571.5,"nodes":[19074,8560,31273,35985,13987,48531,56761,7604,17372],"orbits":[1,2,3,6,7]},{"y":-5782.69,"x":8602.39,"nodes":[32672,23362,4031,17871,13701,50403],"orbits":[0,2,3]},{"y":5993.25,"x":8625.62,"nodes":[3431,5305,43082],"orbits":[1,2]},{"y":-6347.76,"x":8684.39,"nodes":[59538],"orbits":[0]},{"y":1153.21,"x":8692.14,"nodes":[58397,19338,31647],"orbits":[0,3]},{"y":4438.38,"x":8732.17,"nodes":[25055,13799,41580,36576,41298],"orbits":[0,2,7]},{"y":-3633.16,"x":8733.08,"nodes":[60483],"orbits":[0]},{"y":-4730.53,"x":8838.29,"nodes":[32509,47614,3688,22219,52351,52260],"orbits":[0,2,7]},{"y":7072.15,"x":8847.14,"nodes":[36071,38369,35223,36677,13895,61112,18910,21225,10265,9240,19767,55680,9227],"orbits":[0,2,3,4,5,6]},{"y":-3861.86,"x":8862.26,"nodes":[18717],"orbits":[0]},{"y":6141.88,"x":8886.25,"nodes":[24287],"orbits":[0]},{"y":-4178.25,"x":8922.01,"nodes":[8273],"orbits":[0]},{"y":-1873.69,"x":8940.31,"nodes":[60210,6078,64325,45304,61119,63431],"orbits":[1,2,3]},{"y":-3633.64,"x":8992.39,"nodes":[15356],"orbits":[0]},{"y":-3178.16,"x":8993.62,"nodes":[40990],"orbits":[0]},{"y":435.18,"x":8997.63,"nodes":[1801,60,58426,34401],"orbits":[0,2,7]},{"y":1153.21,"x":9027.14,"nodes":[2334],"orbits":[0]},{"y":0,"x":9032.75,"nodes":[41017],"orbits":[0]},{"y":-592.96,"x":9064.04,"nodes":[53150,17589,45012,8246,37742,64462,37548,15270,36085],"orbits":[0,2,3]},{"y":5264.15,"x":9118.25,"nodes":[22927,20582,29246],"orbits":[6]},{"y":-3861.86,"x":9124.17,"nodes":[17420],"orbits":[0]},{"y":-3407.73,"x":9125.5,"nodes":[18815],"orbits":[0]},{"y":6392.19,"x":9136.56,"nodes":[14226],"orbits":[0]},{"y":-4119.84,"x":9152.09,"nodes":[25565],"orbits":[2]},{"y":3214.99,"x":9235.75,"nodes":[36364],"orbits":[0]},{"y":-1050.49,"x":9358.95,"nodes":[17724],"orbits":[0]},{"y":3793.92,"x":9410.52,"nodes":[27422,2021,17687,10472,25857],"orbits":[0,3,4,7]},{"y":-5497.3,"x":9512.58,"nodes":[61834],"orbits":[0]},{"y":-7180.28,"x":9516.92,"nodes":[37616,8644,33964,64295,27834,63659,37688,27417,62496,34912,4664,43938,34449],"orbits":[4,5,6]},{"y":5500.5,"x":9527.62,"nodes":[60735],"orbits":[0]},{"y":2943.23,"x":9543.04,"nodes":[63600],"orbits":[0]},{"y":-3977.46,"x":9571.39,"nodes":[10162,3336,36231,30615,65204],"orbits":[0,2]},{"y":-3334.83,"x":9590.33,"nodes":[44891,55835,20909,52537,7023],"orbits":[0,2]},{"y":-1026.03,"x":9678.35,"nodes":[32664],"orbits":[1]},{"y":5590.69,"x":9689.37,"nodes":[12116,52410,20414,55329,42036,35043,25535],"orbits":[4,3]},{"y":-1158.91,"x":9690.7,"nodes":[38668],"orbits":[0]},{"y":1153.21,"x":9720.67,"nodes":[65091,1841,38728,44776,3209,14539,9405,51707,59720,41163],"orbits":[0,5,7]},{"y":3123.88,"x":9746.75,"nodes":[62998],"orbits":[0]},{"y":-4566.29,"x":9755.52,"nodes":[722],"orbits":[0]},{"y":6600.96,"x":9811.35,"nodes":[20105],"orbits":[0]},{"y":4319.11,"x":9826.06,"nodes":[48116],"orbits":[0]},{"y":0,"x":9858.64,"nodes":[14262],"orbits":[0]},{"y":-356.79,"x":9860.22,"nodes":[38342,21945,61718,54204],"orbits":[1,2]},{"y":1985.04,"x":9864.06,"nodes":[65212,32543,60899,64637],"orbits":[0,3]},{"y":-2442.76,"x":9893.67,"nodes":[43867,10423,37905,57571,28101],"orbits":[1,2,3,7]},{"y":2865.41,"x":9935.05,"nodes":[20649],"orbits":[0]},{"y":-1188.03,"x":9958.34,"nodes":[5188],"orbits":[0]},{"y":-1396.81,"x":9990.46,"nodes":[3640,28963,7888],"orbits":[3,4,7]},{"y":-5603.69,"x":10091.58,"nodes":[49320,30973],"orbits":[6]},{"y":-3334.83,"x":10091.7,"nodes":[15775],"orbits":[0]},{"y":3097.55,"x":10162.49,"nodes":[2582],"orbits":[0]},{"y":-2278.35,"x":10379,"nodes":[30808],"orbits":[0]},{"y":2135.38,"x":10425.2,"nodes":[27705],"orbits":[0]},{"y":-3334.83,"x":10447.67,"nodes":[28976],"orbits":[0]},{"y":3297.39,"x":10460.25,"nodes":[41873,55995,57970,21537],"orbits":[2]},{"y":824.72,"x":10493.01,"nodes":[37484],"orbits":[0]},{"y":-2799.95,"x":10518.76,"nodes":[29959,60362,6891,56265,42802],"orbits":[0,2]},{"y":-3790.36,"x":10572.13,"nodes":[6030,2500,15986,29458,53595,9703,1723,38628],"orbits":[2,3,7]},{"y":-5268.96,"x":10657.31,"nodes":[632],"orbits":[0]},{"y":1152.07,"x":10682.01,"nodes":[48773],"orbits":[0]},{"y":4548.52,"x":10682.25,"nodes":[34612,25992,60764,11526,31055,44141,7651,21788,21112,8573,25586],"orbits":[2,3,4,5,6]},{"y":-3334.83,"x":10697.51,"nodes":[23374],"orbits":[0]},{"y":-1058.34,"x":10699.04,"nodes":[14267],"orbits":[0]},{"y":4578.32,"x":10793.45,"nodes":[18969],"orbits":[0]},{"y":-5031.25,"x":10794.6,"nodes":[52215],"orbits":[0]},{"y":-4373.44,"x":10801.88,"nodes":[3419,28797,20429],"orbits":[6]},{"y":5275.51,"x":10852.75,"nodes":[38993],"orbits":[0]},{"y":-2373.09,"x":10896.21,"nodes":[19779,63891,63074,42999,4925],"orbits":[1,2,3]},{"y":2679.08,"x":10968.89,"nodes":[38493,38537,13407,39369,55621,2936,23040,54983,51583],"orbits":[0,2,4,7]},{"y":-82.24,"x":10978.46,"nodes":[32763],"orbits":[1]},{"y":-5335.92,"x":11047.97,"nodes":[56366,54058,35755,4423,62001],"orbits":[0,2,3]},{"y":1402.07,"x":11056,"nodes":[28835,60480,56847,8157,178,28044,6988],"orbits":[0,2,3,5,7]},{"y":4037.83,"x":11202.42,"nodes":[328],"orbits":[0]},{"y":-597.47,"x":11296.38,"nodes":[326],"orbits":[0]},{"y":-568.47,"x":11407.17,"nodes":[59694],"orbits":[0]},{"y":-1062.86,"x":11480.37,"nodes":[2361,37514,31449,9444,52399,2113,34316,61632,4536,11598,44516],"orbits":[0,2,3,5,6]},{"y":-1142.98,"x":11496.38,"nodes":[28638],"orbits":[0]},{"y":-1587.55,"x":11561.67,"nodes":[64700],"orbits":[0]},{"y":-1552.85,"x":11670.93,"nodes":[32442],"orbits":[0]},null,null,null,null,{"y":7117.1115012329,"x":13677.940095179,"nodes":[5817],"orbits":[0]},{"y":6128.5715012329,"x":13766.890095179,"nodes":[12033,42416,46854,61461,3987,24295,49165,39723,46990],"orbits":[2,3,5,6,8,9]},{"y":6667.4315012329,"x":13858.710095179,"nodes":[59913],"orbits":[0]},{"y":7041.2815012329,"x":13960.960095179,"nodes":[29871],"orbits":[0]},{"y":-8824.0642753814,"x":12215.667857404,"nodes":[8143,65173,7621,23587,64031,63713,52448,12876,63236,23415,13065,16100,17268,25434,55611,29133,57181,44357,27686,9994],"orbits":[3,4,5,6,8,9]},{"y":6496.0715012329,"x":14225.230095179,"nodes":[59542],"orbits":[0]},{"y":6965.4415012329,"x":14243.980095179,"nodes":[30],"orbits":[0]},{"y":5940.2315012329,"x":14277.950095179,"nodes":[24226],"orbits":[0]},{"y":6333.0715012329,"x":14318.750095179,"nodes":[41875],"orbits":[0]},null,{"y":5450.3415012329,"x":14670.730095179,"nodes":[23508],"orbits":[0]},{"y":5738.7015012329,"x":14722.620095179,"nodes":[35801],"orbits":[0]},{"y":8856.9449068475,"x":12191.848853047,"nodes":[61991,24868,46454,33736,9798,36676,1583],"orbits":[9,8]},{"y":6026.8615012329,"x":14775.690095179,"nodes":[37336],"orbits":[0]},{"y":8402.4449068475,"x":12692.888853047,"nodes":[38004],"orbits":[0]},{"y":8523.4449068475,"x":12692.888853047,"nodes":[9710],"orbits":[0]},{"y":8341.9449068475,"x":12797.688853047,"nodes":[18940],"orbits":[0]},{"y":8462.9449068475,"x":12797.688853047,"nodes":[57141],"orbits":[0]},{"y":8990.7249068475,"x":12797.688853047,"nodes":[49503],"orbits":[0]},{"y":8401.0449068475,"x":12902.478853047,"nodes":[56618],"orbits":[0]},{"y":8523.4449068475,"x":12902.478853047,"nodes":[58379],"orbits":[0]},{"y":8990.6549068475,"x":13002.908853047,"nodes":[13675],"orbits":[0]},{"y":8656.4449068475,"x":13092.478853047,"nodes":[61804],"orbits":[0]},{"y":8322.0149068475,"x":13182.028853047,"nodes":[29074],"orbits":[0]},{"y":8990.6549068475,"x":13193.918853047,"nodes":[14508],"orbits":[0]},{"y":8990.6549068475,"x":13335.008853047,"nodes":[39292],"orbits":[0]},{"y":8322.0149068475,"x":13346.868853047,"nodes":[41619],"orbits":[0]},{"y":8657.3249068475,"x":13436.718853047,"nodes":[16],"orbits":[0]},{"y":8990.6549068475,"x":13526.098853047,"nodes":[40],"orbits":[0]},{"y":-6091.4571409843,"x":13783.35232946,"nodes":[18826,3781,25781,59759,50098,664,41076,31116,34817,17923,47344,36788,24475,1347,11771,25779,25885,32771,74],"orbits":[6,8,9,5]}],"classes":[{"base_str":7,"base_int":7,"ascendancies":[{"name":"Deadeye","id":"Deadeye"},{"name":"Pathfinder","id":"Pathfinder"}],"base_dex":15,"name":"Ranger"},{"base_str":15,"base_int":7,"ascendancies":[{"name":"Titan","id":"Titan"},{"name":"Warbringer","id":"Warbringer"}],"base_dex":7,"name":"Warrior"},{"base_str":11,"base_int":7,"ascendancies":[{"name":"Witchhunter","id":"Witchhunter"},{"name":"Gemling Legionnaire","id":"Gemling Legionnaire"}],"base_dex":11,"name":"Mercenary"},{"base_str":7,"base_int":15,"ascendancies":[{"name":"Infernalist","id":"Infernalist"},{"name":"Blood Mage","id":"Blood Mage"}],"base_dex":7,"name":"Witch"},{"base_str":7,"base_int":15,"ascendancies":[{"name":"Stormweaver","id":"Stormweaver"},{"name":"Chronomancer","id":"Chronomancer"}],"base_dex":7,"name":"Sorceress"},{"base_str":7,"base_int":11,"ascendancies":[{"name":"Invoker","id":"Invoker"},{"name":"Acolyte of Chayula","id":"Acolyte of Chayula"}],"base_dex":11,"name":"Monk"}],"max_y":23700.966667042,"ddsCoords":{"legion_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/DevotionNode.dds":3,"Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds":4,"Art/2DArt/SkillIcons/passives/VaalDefensive.dds":1,"Art/2DArt/SkillIcons/passives/VaalOffensive.dds":2},"legion_564_564_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds":12,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds":7},"skills_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"legion_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds":31,"Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds":9,"Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds":10,"Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds":30,"Art/2DArt/SkillIcons/passives/SupremeProdigy.dds":29,"Art/2DArt/SkillIcons/passives/WindDancer.dds":28,"Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds":27,"Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds":26,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":25,"Art/2DArt/SkillIcons/passives/TheBlindMonk.dds":1,"Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds":14,"Art/2DArt/SkillIcons/passives/CorruptedDefences.dds":24,"Art/2DArt/SkillIcons/passives/DivineFlesh.dds":23,"Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds":3,"Art/2DArt/SkillIcons/passives/FocusedRage.dds":4,"Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds":22,"Art/2DArt/SkillIcons/passives/SharpandBrittle.dds":21,"Art/2DArt/SkillIcons/passives/OasisKeystone.dds":16,"Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds":5,"Art/2DArt/SkillIcons/passives/SupremeDecadence.dds":20,"Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds":6,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":19,"Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds":18,"Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds":17,"Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds":12,"Art/2DArt/SkillIcons/passives/SupremeEgo.dds":2,"Art/2DArt/SkillIcons/passives/InnerConviction.dds":7,"Art/2DArt/SkillIcons/passives/DevotionNotable.dds":11,"Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds":13,"Art/2DArt/SkillIcons/passives/TemperedByWar.dds":8,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":15},"group-background_92_92_BC7.dds.zst":{"AscendancyMiddle":1},"group-background_756_756_BC7.dds.zst":{"PSGroupBackgroundMediumBlank":1},"jewel-sockets_152_156_BC7.dds.zst":{"Sapphire":6,"Time-Lost Ruby":2,"Diamond":6,"Time-Lost Emerald":5,"Emerald":3,"Time-Lost Diamond":4,"Ruby":1,"Timeless Jewel":4,"Time-Lost Sapphire":4},"group-background_440_440_BC7.dds.zst":{"PSGroupBackgroundSmallBlank":1},"group-background_220_224_BC7.dds.zst":{"KeystoneFrameUnallocated":1,"KeystoneFrameAllocated":2,"KeystoneFrameCanAllocate":3},"ascendancy-background_1500_1500_BC7.dds.zst":{"ClassesSorceress":12,"ClassesAcolyte of Chayula":24,"ClassesStormweaver":11,"ClassesMonk":5,"ClassesChronomancer":10,"ClassesMercenary":6,"ClassesGemling Legionnaire":1,"ClassesWarbringer":21,"ClassesInvoker":4,"ClassesInfernalist":13,"ClassesWitchhunter":23,"ClassesMarauder":2,"ClassesDuelist":22,"ClassesRanger":20,"ClassesTitan":19,"ClassesBlood Mage":18,"ClassesPathfinder":16,"ClassesWarrior":17,"ClassesWitch":14,"ClassesHuntress":15,"ClassesDeadeye":3,"ClassesShadow":9,"ClassesDruid":8,"ClassesTemplar":7},"skills_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":48,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":49,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":1,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":3,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":55,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":61,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds":4,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":5,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":6,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":8,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":63,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":71,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":72,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":9,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":79,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":62,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":80,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":81,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":87,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":11,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":99,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":93,"Art/2DArt/SkillIcons/passives/Harrier.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":95,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":13,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":96,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":178,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":65,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":103,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":101,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":16,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":177,"Art/2DArt/SkillIcons/passives/Deflection.dds":176,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":175,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":174,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds":17,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":173,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":106,"Art/2DArt/SkillIcons/passives/executioner.dds":172,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":107,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":115,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":19,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":20,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":110,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":111,"Art/2DArt/SkillIcons/passives/eagleeye.dds":171,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":170,"Art/2DArt/SkillIcons/passives/icebite.dds":98,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":168,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":167,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":22,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":23,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":166,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":165,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":51,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":97,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":163,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":24,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":94,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":59,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":25,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":119,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":83,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":161,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":27,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":160,"Art/2DArt/SkillIcons/passives/Hunter.dds":159,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":158,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":128,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":121,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":28,"Art/2DArt/SkillIcons/passives/finesse.dds":157,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":126,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":30,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":31,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":156,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":124,"Art/2DArt/SkillIcons/passives/BowDamage.dds":155,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":154,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":127,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":12,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":26,"Art/2DArt/SkillIcons/passives/Meleerange.dds":151,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":150,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":149,"Art/2DArt/SkillIcons/passives/steelspan.dds":125,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":118,"Art/2DArt/SkillIcons/passives/Poison.dds":33,"Art/2DArt/SkillIcons/passives/Annihilation.dds":148,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":54,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":134,"Art/2DArt/SkillIcons/passives/Hearty.dds":147,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds":47,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":58,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":57,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":36,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":142,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":141,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":139,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":138,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":137,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":135,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":90,"Art/2DArt/SkillIcons/passives/bodysoul.dds":132,"Art/2DArt/SkillIcons/passives/vaalpact.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":130,"Art/2DArt/SkillIcons/passives/strongarm.dds":129,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":37,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":74,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":145,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":60,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":21,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds":38,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":146,"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds":73,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":15,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":18,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":68,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":39,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":52,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":34,"Art/2DArt/SkillIcons/passives/DragonStyle.dds":40,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":50,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":64,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":14,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":100,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":56,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":29,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":10,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":41,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":75,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":117,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":66,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds":42,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":69,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds":43,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds":70,"Art/2DArt/SkillIcons/passives/Warrior.dds":67,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":2,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds":89,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":44,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":88,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":77,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds":45,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":92,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":82,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":162,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":84,"Art/2DArt/SkillIcons/passives/lifeleech.dds":85,"Art/2DArt/SkillIcons/passives/Blood2.dds":86,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":46,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":133,"Art/2DArt/SkillIcons/passives/totemmax.dds":91,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":78,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":164,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":169,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":53,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":105,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":108,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":109,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":32,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":112,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":113,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":116,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":122,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":123,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":76},"group-background_152_156_BC7.dds.zst":{"NotableFrameUnallocated":4,"JewelFrameAllocated":2,"NotableFrameCanAllocate":6,"JewelFrameCanAllocate":5,"NotableFrameAllocated":1,"JewelFrameUnallocated":3},"oils_108_108_RGBA.dds.zst":{"Greed":9,"Paranoia":4,"Envy":7,"Fear":8,"Guilt":3,"Suffering":5,"Disgust":10,"Despair":6,"Isolation":2,"Ire":1},"group-background_360_360_BC7.dds.zst":{"PSGroupBackground1":1},"ascendancy-background_4000_4000_BC7.dds.zst":{"BGTree":2,"BGTreeActive":1},"group-background_104_104_BC7.dds.zst":{"PSSkillFrameHighlighted":1,"PSSkillFrame":2,"PSSkillFrameActive":3},"mastery-active-effect_776_768_BC7.dds.zst":{"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern":6,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern":13,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern":55,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern":54,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern":53,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern":52,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern":51,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern":50,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern":49,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern":48,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern":32,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern":47,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern":46,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern":12,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern":45,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern":44,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern":43,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern":42,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern":23,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern":41,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern":20,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern":40,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern":39,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern":38,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern":37,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern":36,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern":11,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern":34,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern":33,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern":35,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern":24,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern":28,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern":10,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern":16,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern":30,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern":15,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern":17,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern":9,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern":1,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern":19,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern":26,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern":2,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern":14,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern":3,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern":4,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern":7,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern":18,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern":21,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern":22,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern":5,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern":25,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern":8,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern":27,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern":29,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern":31},"skills-disabled_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":49,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":50,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":1,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":2,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":3,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":56,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":62,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds":4,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":5,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":6,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":8,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":64,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":71,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":72,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":9,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":78,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":63,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":79,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":80,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":83,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":51,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":96,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":89,"Art/2DArt/SkillIcons/passives/icebite.dds":94,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":91,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":13,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":92,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":178,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":66,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":97,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":98,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":16,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":177,"Art/2DArt/SkillIcons/passives/Deflection.dds":176,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":175,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":174,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds":17,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":173,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":103,"Art/2DArt/SkillIcons/passives/executioner.dds":172,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":105,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":113,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":19,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":20,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":108,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":109,"Art/2DArt/SkillIcons/passives/eagleeye.dds":171,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":104,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":169,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":168,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":167,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":22,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":23,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":102,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":165,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":52,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":81,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":163,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":24,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":115,"Art/2DArt/SkillIcons/passives/vaalpact.dds":128,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":25,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":116,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":162,"Art/2DArt/SkillIcons/passives/Hunter.dds":161,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":27,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":160,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":159,"Art/2DArt/SkillIcons/passives/Harrier.dds":158,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":126,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":119,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":28,"Art/2DArt/SkillIcons/passives/finesse.dds":157,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":30,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":31,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":156,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":123,"Art/2DArt/SkillIcons/passives/BowDamage.dds":155,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":154,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":125,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":75,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":65,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":151,"Art/2DArt/SkillIcons/passives/Meleerange.dds":150,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":149,"Art/2DArt/SkillIcons/passives/strongarm.dds":127,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":32,"Art/2DArt/SkillIcons/passives/Hearty.dds":122,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":148,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":55,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":133,"Art/2DArt/SkillIcons/passives/Annihilation.dds":147,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":48,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":59,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":58,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":143,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":36,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":141,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":140,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":138,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":137,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":136,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":134,"Art/2DArt/SkillIcons/passives/Warrior.dds":132,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":130,"Art/2DArt/SkillIcons/passives/bodysoul.dds":129,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":37,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":74,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":145,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":61,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":21,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds":38,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":146,"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds":73,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":18,"Art/2DArt/SkillIcons/passives/Blood2.dds":95,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":54,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":39,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":34,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":53,"Art/2DArt/SkillIcons/passives/DragonStyle.dds":40,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":15,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":14,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":57,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":29,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":10,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":26,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":11,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":41,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":82,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":88,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":68,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds":42,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":69,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds":43,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":60,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds":77,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":12,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds":86,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":44,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":85,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":84,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds":45,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":67,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":87,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":164,"Art/2DArt/SkillIcons/passives/totemmax.dds":90,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds":70,"Art/2DArt/SkillIcons/passives/steelspan.dds":120,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":46,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":47,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":100,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":101,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":166,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":170,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":106,"Art/2DArt/SkillIcons/passives/lifeleech.dds":107,"Art/2DArt/SkillIcons/passives/Poison.dds":33,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":110,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":111,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":112,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":114,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":93,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":118,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":121,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":117,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":76},"skills-disabled_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills-disabled_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":126,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":125,"Art/2DArt/SkillIcons/passives/chargedex.dds":124,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":123,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":122,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":1,"Art/2DArt/SkillIcons/passives/flaskdex.dds":121,"Art/2DArt/SkillIcons/passives/flaskint.dds":120,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":31,"Art/2DArt/SkillIcons/passives/fireresist.dds":60,"Art/2DArt/SkillIcons/passives/blankStr.dds":23,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":119,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":30,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":118,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":117,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/tempint.dds":115,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":114,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":86,"Art/2DArt/SkillIcons/passives/plusstrength.dds":112,"Art/2DArt/SkillIcons/passives/mana.dds":49,"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds":111,"Art/2DArt/SkillIcons/passives/knockback.dds":110,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":53,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":14,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":84,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":109,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":108,"Art/2DArt/SkillIcons/passives/manastr.dds":107,"Art/2DArt/SkillIcons/passives/blankInt.dds":106,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":105,"Art/2DArt/SkillIcons/passives/plusstrengthdexterity.dds":104,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":103,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":100,"Art/2DArt/SkillIcons/passives/castspeed.dds":48,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":99,"Art/2DArt/SkillIcons/passives/stun2h.dds":51,"Art/2DArt/SkillIcons/passives/plusintelligencedexterity.dds":17,"Art/2DArt/SkillIcons/passives/spellcritical.dds":98,"Art/2DArt/SkillIcons/passives/lightningint.dds":97,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":96,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":95,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":63,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":94,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":92,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":93,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":91,"Art/2DArt/SkillIcons/passives/minionlife.dds":90,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":89,"Art/2DArt/SkillIcons/passives/plusstrengthintelligence.dds":3,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":88,"Art/2DArt/SkillIcons/passives/chargeint.dds":87,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":113,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":85,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":83,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":71,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":61,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":82,"Art/2DArt/SkillIcons/passives/Rage.dds":81,"Art/2DArt/SkillIcons/passives/auraeffect.dds":80,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":79,"Art/2DArt/SkillIcons/passives/damagesword.dds":78,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":37,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":77,"Art/2DArt/SkillIcons/passives/chargestr.dds":76,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":7,"Art/2DArt/SkillIcons/passives/MarkNode.dds":75,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":74,"Art/2DArt/SkillIcons/passives/life1.dds":73,"Art/2DArt/SkillIcons/passives/colddamage.dds":54,"Art/2DArt/SkillIcons/passives/damagespells.dds":70,"Art/2DArt/SkillIcons/passives/plusattribute.dds":69,"Art/2DArt/SkillIcons/icongroundslam.dds":68,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":8,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":67,"Art/2DArt/SkillIcons/passives/damage_blue.dds":59,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":66,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":65,"Art/2DArt/SkillIcons/passives/firedamage.dds":28,"Art/2DArt/SkillIcons/passives/evade.dds":15,"Art/2DArt/SkillIcons/passives/trapdamage.dds":6,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":57,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":12,"Art/2DArt/SkillIcons/passives/attackspeed.dds":13,"Art/2DArt/SkillIcons/passives/flaskstr.dds":24,"Art/2DArt/SkillIcons/passives/accuracydex.dds":22,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":21,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":20,"Art/2DArt/SkillIcons/passives/stunstr.dds":50,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":46,"Art/2DArt/SkillIcons/passives/shieldblock.dds":45,"Art/2DArt/SkillIcons/passives/firedamageint.dds":10,"Art/2DArt/SkillIcons/passives/lightningstr.dds":16,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":5,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":58,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":64,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":11,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":2,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":33,"Art/2DArt/SkillIcons/passives/coldresist.dds":32,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":25,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":35,"Art/2DArt/SkillIcons/passives/damage.dds":41,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":42,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":38,"Art/2DArt/SkillIcons/passives/damageaxe.dds":43,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":40,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":47,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":18,"Art/2DArt/SkillIcons/passives/energyshield.dds":44,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":39,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":36,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":9,"Art/2DArt/SkillIcons/passives/macedmg.dds":4,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":19,"Art/2DArt/SkillIcons/passives/accuracystr.dds":52,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":27,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":72,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":55,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":56,"Art/2DArt/SkillIcons/passives/damagestaff.dds":26,"Art/2DArt/SkillIcons/passives/blockstr.dds":29,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":34,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":62},"skills_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":126,"Art/2DArt/SkillIcons/passives/chargedex.dds":125,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":124,"Art/2DArt/SkillIcons/passives/flaskint.dds":123,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":122,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":1,"Art/2DArt/SkillIcons/passives/coldresist.dds":121,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":120,"Art/2DArt/SkillIcons/passives/energyshield.dds":63,"Art/2DArt/SkillIcons/passives/minionlife.dds":29,"Art/2DArt/SkillIcons/passives/blankStr.dds":21,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":119,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":49,"Art/2DArt/SkillIcons/passives/blankDex.dds":118,"Art/2DArt/SkillIcons/passives/tempint.dds":117,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":116,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":115,"Art/2DArt/SkillIcons/passives/accuracystr.dds":114,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":113,"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds":112,"Art/2DArt/SkillIcons/passives/Rage.dds":30,"Art/2DArt/SkillIcons/passives/knockback.dds":111,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":110,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":31,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":15,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":82,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":109,"Art/2DArt/SkillIcons/passives/blankInt.dds":108,"Art/2DArt/SkillIcons/passives/manastr.dds":107,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":106,"Art/2DArt/SkillIcons/passives/plusstrengthdexterity.dds":105,"Art/2DArt/SkillIcons/passives/auraeffect.dds":83,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":103,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":100,"Art/2DArt/SkillIcons/passives/castspeed.dds":42,"Art/2DArt/SkillIcons/passives/spellcritical.dds":99,"Art/2DArt/SkillIcons/passives/stun2h.dds":45,"Art/2DArt/SkillIcons/passives/plusintelligencedexterity.dds":18,"Art/2DArt/SkillIcons/passives/lightningint.dds":98,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":97,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":96,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":95,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":57,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":94,"Art/2DArt/SkillIcons/passives/mana.dds":84,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":92,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":91,"Art/2DArt/SkillIcons/passives/fireresist.dds":90,"Art/2DArt/SkillIcons/passives/blockstr.dds":89,"Art/2DArt/SkillIcons/passives/plusstrengthintelligence.dds":3,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":88,"Art/2DArt/SkillIcons/passives/chargeint.dds":87,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":20,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":86,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":85,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":93,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":104,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":81,"Art/2DArt/SkillIcons/passives/accuracydex.dds":80,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":79,"Art/2DArt/SkillIcons/passives/damagesword.dds":78,"Art/2DArt/SkillIcons/passives/flaskstr.dds":77,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":36,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":76,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":75,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":7,"Art/2DArt/SkillIcons/passives/chargestr.dds":74,"Art/2DArt/SkillIcons/passives/MarkNode.dds":73,"Art/2DArt/SkillIcons/passives/life1.dds":72,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":71,"Art/2DArt/SkillIcons/passives/damageaxe.dds":70,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":69,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":68,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":8,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":67,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":61,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":66,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":65,"Art/2DArt/SkillIcons/passives/firedamage.dds":28,"Art/2DArt/SkillIcons/passives/evade.dds":24,"Art/2DArt/SkillIcons/passives/colddamage.dds":14,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":27,"Art/2DArt/SkillIcons/passives/flaskdex.dds":13,"Art/2DArt/SkillIcons/passives/trapdamage.dds":6,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":19,"Art/2DArt/SkillIcons/passives/attackspeed.dds":54,"Art/2DArt/SkillIcons/passives/shieldblock.dds":17,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":9,"Art/2DArt/SkillIcons/passives/stunstr.dds":4,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":47,"Art/2DArt/SkillIcons/passives/macedmg.dds":46,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":11,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":5,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":33,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":53,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":59,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":12,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":2,"Art/2DArt/SkillIcons/passives/plusstrength.dds":22,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":25,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":37,"Art/2DArt/SkillIcons/passives/damage.dds":40,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":64,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":39,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":41,"Art/2DArt/SkillIcons/passives/plusattribute.dds":38,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":60,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":23,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":58,"Art/2DArt/SkillIcons/passives/firedamageint.dds":50,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":34,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":10,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":48,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":51,"Art/2DArt/SkillIcons/passives/damage_blue.dds":52,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":43,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":16,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":55,"Art/2DArt/SkillIcons/passives/lightningstr.dds":56,"Art/2DArt/SkillIcons/passives/damagestaff.dds":26,"Art/2DArt/SkillIcons/passives/damagespells.dds":32,"Art/2DArt/SkillIcons/icongroundslam.dds":44,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":62},"group-background_208_208_BC7.dds.zst":{"AscendancyFrameLargeAllocated":1,"AscendancyFrameLargeCanAllocate":2,"AscendancyFrameLargeNormal":3},"group-background_468_468_BC7.dds.zst":{"PSGroupBackground2":1},"lines_1436_1436_BC7.dds.zst":{"CurvesNormal":1,"CurvesIntermediate":2,"CurvesActive":3},"group-background_952_988_BC7.dds.zst":{"PSGroupBackgroundLargeBlank":1},"skills-disabled_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"group-background_740_376_BC7.dds.zst":{"PSGroupBackground3":1},"group-background_528_528_BC7.dds.zst":{"PSStartNodeBackgroundInactive":1},"skills_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"background_1024_1024_BC7.dds.zst":{"Background2":1},"group-background_160_164_BC7.dds.zst":{"AscendancyFrameSmallAllocated":2,"AscendancyFrameSmallNormal":3,"AscendancyFrameSmallCanAllocate":1}},"min_x":-22030.845566528,"tree":"Default","nodes":{"61106":{"stats":["2% increased Movement Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":59653}],"group":604,"skill":61106,"orbitIndex":15,"name":"Movement Speed","orbit":2},"58397":{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":58397,"stats":["+25 to Dexterity"],"recipe":["Fear","Guilt","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":19338},{"orbit":0,"id":31647},{"orbit":0,"id":2334}],"group":950,"orbitIndex":0,"isNotable":true,"name":"Proficiency","orbit":0},"64352":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44345}],"group":673,"skill":64352,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"10508":{"stats":["3% increased Attack Speed while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":4,"id":30371}],"group":80,"skill":10508,"orbitIndex":15,"name":"Shield Attack Speed","orbit":7},"21111":{"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-5,"id":33099}],"group":872,"skill":21111,"orbitIndex":11,"name":"Charm Activation Chance","orbit":7},"4536":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":37514}],"group":1021,"skill":4536,"orbitIndex":1,"name":"Quarterstaff Speed","orbit":2},"13030":{"stats":["Damaging Ailments deal damage 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":55}],"group":755,"skill":13030,"orbitIndex":0,"name":"Faster Ailments","orbit":0},"21080":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":1869}],"group":745,"skill":21080,"orbitIndex":19,"name":"Freeze Buildup","orbit":7},"47363":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":47363,"stats":["15% increased Area of Effect for Attacks","+10 to Strength"],"recipe":["Fear","Greed","Ire"],"connections":[],"group":481,"orbitIndex":50,"isNotable":true,"name":"Colossal Weapon","orbit":4},"46384":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":46384,"stats":["30% increased Block chance","25% reduced Global Defences"],"recipe":["Envy","Isolation","Isolation"],"connections":[{"orbit":-5,"id":18746},{"orbit":0,"id":58138}],"group":52,"orbitIndex":24,"isNotable":true,"name":"Wide Barrier","orbit":4},"42275":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds","skill":42275,"stats":["20% chance for Slam Skills you use yourself to cause Aftershocks"],"ascendancyName":"Titan","connections":[{"orbit":5,"id":38014}],"group":27,"orbitIndex":0,"isNotable":true,"name":"Earthbreaker","orbit":0},"21468":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":6,"id":39274}],"group":409,"skill":21468,"orbitIndex":12,"name":"Life Leech","orbit":3},"61246":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":5,"id":144}],"group":828,"skill":61246,"orbitIndex":18,"name":"Elemental Damage and Freeze Buildup","orbit":4},"47177":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47177,"stats":["+5 to any Attribute"],"isAttribute":true,"group":627,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"61312":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61312,"stats":["+5 to any Attribute"],"isAttribute":true,"group":668,"connections":[],"orbitIndex":42,"name":"Attribute","orbit":4},"54036":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[{"orbit":0,"id":30720},{"orbit":-7,"id":15809},{"orbit":-7,"id":17501}],"group":419,"skill":54036,"orbitIndex":2,"name":"Minion Damage","orbit":3},"6274":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":56567}],"group":358,"skill":6274,"orbitIndex":17,"name":"Accuracy","orbit":7},"29502":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":4,"id":36302}],"group":505,"skill":29502,"orbitIndex":20,"name":"Cast Speed","orbit":2},"23062":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":19122}],"group":383,"skill":23062,"orbitIndex":20,"name":"Armour if Consumed Endurance Charge","orbit":2},"63484":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":63484,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":7,"id":18158}],"orbitIndex":71,"name":"Mana","orbit":6},"27082":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27082,"stats":["+5 to any Attribute"],"isAttribute":true,"group":91,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":24646}],"orbitIndex":0,"name":"Attribute","orbit":0},"7777":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":7777,"stats":["10% increased Duration of Elemental Ailments on Enemies","30% increased Magnitude of Non-Damaging Ailments you inflict"],"recipe":["Fear","Paranoia","Fear"],"connections":[{"orbit":7,"id":26739},{"orbit":0,"id":42205}],"group":197,"orbitIndex":18,"isNotable":true,"name":"Breaking Point","orbit":4},"52392":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":52392,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"recipe":["Disgust","Envy","Fear"],"connections":[],"group":229,"orbitIndex":17,"isNotable":true,"name":"Singular Purpose","orbit":3},"23450":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":558}],"group":445,"skill":23450,"orbitIndex":6,"name":"Fire Damage","orbit":3},"36270":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":5009}],"group":854,"skill":36270,"orbitIndex":1,"name":"Daze Buildup","orbit":3},"62757":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":46741}],"group":156,"skill":62757,"orbitIndex":3,"name":"Stun Buildup","orbit":2},"15838":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":15969}],"group":411,"skill":15838,"orbitIndex":2,"name":"Ailment Chance","orbit":4},"53443":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-6,"id":5710},{"orbit":0,"id":59767}],"group":315,"skill":53443,"orbitIndex":8,"name":"Attack Area","orbit":3},"18831":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":49545}],"group":722,"skill":18831,"orbitIndex":22,"name":"Block","orbit":2},"28370":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28370,"stats":["+5 to any Attribute"],"isAttribute":true,"group":511,"connections":[{"orbit":0,"id":7628},{"orbit":-6,"id":11916},{"orbit":-6,"id":37450}],"orbitIndex":39,"name":"Attribute","orbit":6},"10772":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":10772,"stats":["20% increased amount of Life Leeched","Leech Life 25% faster"],"recipe":["Disgust","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":2119}],"group":409,"orbitIndex":0,"isNotable":true,"name":"Bloodthirsty","orbit":0},"13294":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":20718}],"group":363,"skill":13294,"orbitIndex":6,"name":"Duration","orbit":1},"51535":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":8852}],"group":63,"skill":51535,"orbitIndex":13,"name":"Life Leech and Slower Leech","orbit":2},"8569":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8569,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":47177},{"orbit":0,"id":55507},{"orbit":0,"id":46034},{"orbit":0,"id":8540}],"orbitIndex":6,"name":"Attribute","orbit":6},"63021":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":23091}],"group":445,"skill":63021,"orbitIndex":14,"name":"Fire Damage","orbit":3},"6010":{"stats":["12% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":13367},{"orbit":0,"id":38969}],"group":803,"skill":6010,"orbitIndex":8,"name":"Accuracy","orbit":2},"55491":{"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":257,"skill":55491,"orbitIndex":7,"name":"Reservation Mastery","orbit":1},"59263":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":59263,"stats":["25% increased Damage with Swords"],"recipe":["Paranoia","Envy","Greed"],"connections":[{"orbit":0,"id":37963}],"group":352,"orbitIndex":33,"isNotable":true,"name":"Ripping Blade","orbit":4},"33369":{"icon":"Art/2DArt/SkillIcons/passives/vaalpact.dds","skill":33369,"isKeystone":true,"stats":["Life Leech is Instant","Cannot use Life Flasks"],"group":397,"connections":[],"orbitIndex":0,"name":"Vaal Pact","orbit":0},"19122":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":28432}],"group":383,"skill":19122,"orbitIndex":12,"name":"Armour if Consumed Endurance Charge","orbit":2},"7971":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-7,"id":1468}],"group":519,"skill":7971,"orbitIndex":10,"name":"Mana Regeneration","orbit":4},"20119":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":419,"skill":20119,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"50469":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50469,"stats":["+5 to any Attribute"],"isAttribute":true,"group":756,"connections":[{"orbit":0,"id":32701}],"orbitIndex":0,"name":"Attribute","orbit":0},"12751":{"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":284,"skill":12751,"orbitIndex":15,"name":"One Handed Critical Chance","orbit":2},"5692":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":35708},{"orbit":0,"id":51821}],"group":119,"skill":5692,"orbitIndex":6,"name":"Chill Effect","orbit":2},"9050":{"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-4,"id":24958},{"orbit":-6,"id":37691}],"group":845,"skill":9050,"orbitIndex":36,"name":"Attack Damage with nearby Ally","orbit":6},"440":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-5,"id":6133}],"group":49,"skill":440,"orbitIndex":0,"name":"Shield Defences","orbit":0},"3866":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":32258},{"orbit":0,"id":14505}],"group":282,"skill":3866,"orbitIndex":5,"name":"Minion Life","orbit":7},"15427":{"stats":["12% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":57379}],"group":37,"skill":15427,"orbitIndex":19,"name":"Melee Damage","orbit":3},"10423":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":10423,"stats":["Damage Penetrates 15% Fire Resistance","Fire Exposure you inflict lowers Total Fire Resistance by an extra 5%"],"recipe":["Isolation","Envy","Disgust"],"connections":[{"orbit":-7,"id":37905}],"group":990,"orbitIndex":0,"isNotable":true,"name":"Exposed to the Inferno","orbit":1},"11315":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48846}],"group":622,"skill":11315,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"29361":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":615,"skill":29361,"orbitIndex":7,"name":"Evasion and Energy Shield","orbit":7},"40630":{"stats":["15% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":44527}],"group":668,"skill":40630,"orbitIndex":7,"name":"Flask Charges Gained","orbit":7},"53308":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17138}],"group":101,"skill":53308,"orbitIndex":5,"name":"Melee Damage","orbit":3},"24868":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds","skill":24868,"stats":["Your speed is unaffected by Slows"],"ascendancyName":"Pathfinder","connections":[],"group":1041,"orbitIndex":96,"isNotable":true,"name":"Relentless Pursuit","orbit":9},"42802":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1002,"skill":42802,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"50609":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds","skill":50609,"stats":["40% increased Flask Life Recovery rate","Regenerate 0.75% of Life per second"],"recipe":["Guilt","Greed","Guilt"],"connections":[{"orbit":0,"id":11916}],"group":526,"orbitIndex":18,"isNotable":true,"name":"Hard to Kill","orbit":3},"28510":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28510,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":-5,"id":45969},{"orbit":0,"id":10247}],"orbitIndex":56,"name":"Attribute","orbit":6},"49550":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":49550,"stats":["Inherent loss of Rage is 25% slower"],"recipe":["Ire","Greed","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":330,"orbitIndex":12,"isNotable":true,"name":"Prolonged Fury","orbit":7},"56349":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds","skill":56349,"isKeystone":true,"stats":["Maximum Life becomes 1, Immune to Chaos Damage"],"group":853,"connections":[],"orbitIndex":0,"name":"Chaos Inoculation","orbit":0},"40894":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":1218}],"group":278,"skill":40894,"orbitIndex":20,"name":"Minion Life","orbit":3},"41811":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":41811,"stats":["30% increased Stun Buildup","30% increased Daze Buildup"],"recipe":["Greed","Despair","Paranoia"],"connections":[{"orbit":0,"id":35173}],"group":938,"orbitIndex":2,"isNotable":true,"name":"Shatter Palm","orbit":3},"64474":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":749,"skill":64474,"orbitIndex":22,"name":"Energy Shield Delay","orbit":2},"59915":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":7741},{"orbit":-6,"id":97},{"orbit":-6,"id":2455}],"group":524,"skill":59915,"orbitIndex":0,"name":"Projectile Damage","orbit":0},"22927":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":20582}],"group":965,"skill":22927,"orbitIndex":24,"name":"Shield Evasion","orbit":6},"44850":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":546,"skill":44850,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"36659":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds","skill":36659,"stats":["You can Break Enemy Armour to below 0"],"ascendancyName":"Warbringer","connections":[],"group":5,"orbitIndex":0,"isNotable":true,"name":"Imploding Impacts","orbit":0},"48030":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":62436}],"group":584,"skill":48030,"orbitIndex":1,"name":"Energy Shield","orbit":7},"21077":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":354}],"group":469,"skill":21077,"orbitIndex":12,"name":"Grenade Cooldown Recovery Rate","orbit":3},"2361":{"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":34316}],"group":1021,"skill":2361,"orbitIndex":4,"name":"Quarterstaff Stun and Knockback","orbit":5},"48418":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":48418,"stats":["+3 to Stun Threshold per Strength"],"recipe":["Ire","Disgust","Suffering"],"connections":[{"orbit":0,"id":38235}],"group":322,"orbitIndex":10,"isNotable":true,"name":"Hefty Unit","orbit":2},"9857":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54990}],"group":457,"skill":9857,"orbitIndex":8,"name":"Bleeding Chance","orbit":2},"45193":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":4083}],"group":769,"skill":45193,"orbitIndex":17,"name":"Poison Damage","orbit":2},"33556":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":55473}],"group":394,"skill":33556,"orbitIndex":2,"name":"Melee Damage","orbit":7},"37450":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[],"group":492,"skill":37450,"orbitIndex":46,"name":"Ailment Chance","orbit":4},"31409":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":50437}],"group":604,"skill":31409,"orbitIndex":3,"name":"Evasion","orbit":2},"1801":{"stats":["5% chance to Blind Enemies on Hit"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":3,"id":60}],"group":961,"skill":1801,"orbitIndex":4,"name":"Blind Chance","orbit":7},"63813":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":1169}],"group":166,"skill":63813,"orbitIndex":18,"name":"Warcry Speed","orbit":7},"48682":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":48682,"stats":["20% increased Totem Life"],"ascendancyName":"Warbringer","group":12,"connections":[{"orbit":4,"id":40915}],"orbitIndex":0,"name":"Totem Life","orbit":0},"11641":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds","skill":11641,"stats":["+10% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":45248},{"orbit":0,"id":55582}],"group":241,"orbitIndex":0,"isNotable":true,"name":"Crystalline Potential","orbit":0},"38707":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38707,"stats":["+5 to any Attribute"],"isAttribute":true,"group":112,"connections":[{"orbit":0,"id":49734},{"orbit":0,"id":28564}],"orbitIndex":0,"name":"Attribute","orbit":0},"34487":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":314,"skill":34487,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"6505":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":55060}],"group":547,"skill":6505,"orbitIndex":4,"name":"Pierce Chance","orbit":3},"13457":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":13457,"stats":["30% increased Evasion Rating if you have been Hit Recently","60% faster start of Energy Shield Recharge if you've been Stunned Recently"],"recipe":["Despair","Guilt","Despair"],"connections":[{"orbit":5,"id":3630}],"group":905,"orbitIndex":60,"isNotable":true,"name":"Shadow Dancing","orbit":4},"35015":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":6655}],"group":433,"skill":35015,"orbitIndex":0,"name":"Bleeding Damage","orbit":0},"52126":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":21885}],"group":136,"skill":52126,"orbitIndex":0,"name":"Stun Threshold and Strength","orbit":2},"15885":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15885,"stats":["+5 to any Attribute"],"isAttribute":true,"group":434,"connections":[{"orbit":3,"id":12367},{"orbit":0,"id":22783}],"orbitIndex":0,"name":"Attribute","orbit":0},"10881":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":3,"id":36450}],"group":719,"skill":10881,"orbitIndex":0,"name":"Focus Energy Shield","orbit":0},"32763":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":32763,"stats":[],"group":1015,"connections":[],"orbitIndex":6,"name":"Jewel Socket","orbit":1},"57141":{"isMultipleChoice":true,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds","skill":57141,"stats":[],"ascendancyName":"Pathfinder","connections":[],"group":1046,"orbitIndex":0,"isNotable":true,"name":"Brew Concoction","orbit":0},"41096":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":35901},{"orbit":0,"id":31345}],"group":828,"skill":41096,"orbitIndex":36,"name":"Elemental Damage and Shock Chance","orbit":5},"6988":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":28044}],"group":1017,"skill":6988,"orbitIndex":12,"name":"Herald Mastery","orbit":2},"16784":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":31650}],"group":177,"skill":16784,"orbitIndex":68,"name":"Totem Life","orbit":5},"47893":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":57774}],"group":551,"skill":47893,"orbitIndex":21,"name":"Dual Wielding Speed","orbit":2},"25363":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44098},{"orbit":0,"id":1823},{"orbit":0,"id":34531}],"group":412,"skill":25363,"orbitIndex":20,"name":"Stun Threshold from Energy Shield","orbit":7},"44201":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":687,"skill":44201,"orbitIndex":2,"name":"Additional Spell Projectiles","orbit":2},"51335":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","options":{"Witch":{"stats":["15% increased Critical Hit Chance for Spells","18% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Jagged Shards","id":64801}},"skill":51335,"stats":["18% increased Fire Damage","30% increased chance to Ignite"],"recipe":["Suffering","Fear","Greed"],"isSwitchable":true,"connections":[{"orbit":-6,"id":51968},{"orbit":0,"id":5726}],"group":475,"orbitIndex":21,"isNotable":true,"name":"Path of Flame","orbit":7},"722":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":722,"stats":["+5 to any Attribute"],"isAttribute":true,"group":984,"connections":[{"orbit":0,"id":3419},{"orbit":0,"id":15775}],"orbitIndex":0,"name":"Attribute","orbit":0},"28774":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":2999},{"orbit":0,"id":10295}],"group":157,"skill":28774,"orbitIndex":26,"name":"Cast Speed","orbit":6},"39964":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":48198}],"group":615,"skill":39964,"orbitIndex":4,"name":"Mana Regeneration","orbit":2},"32672":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4031}],"group":947,"skill":32672,"orbitIndex":12,"name":"Freeze and Chill Resistance","orbit":3},"44527":{"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds","skill":44527,"stats":["15% increased Flask Effect Duration","15% increased Flask Charges gained"],"recipe":["Disgust","Paranoia","Disgust"],"connections":[{"orbit":0,"id":44875}],"group":668,"orbitIndex":2,"isNotable":true,"name":"Cautious Concoctions","orbit":2},"33169":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":33169,"stats":["+5 to any Attribute"],"isAttribute":true,"group":361,"connections":[{"orbit":0,"id":44419},{"orbit":0,"id":49231}],"orbitIndex":0,"name":"Attribute","orbit":0},"53108":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds","skill":53108,"stats":["Attribute Requirements of Gems can be satisified by your highest Attribute"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":36822}],"group":316,"orbitIndex":0,"isNotable":true,"name":"Adaptive Capability","orbit":0},"23455":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":49740},{"orbit":0,"id":55847}],"group":727,"skill":23455,"orbitIndex":0,"name":"Cold Damage","orbit":0},"30252":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":20049},{"orbit":-4,"id":48135}],"group":692,"skill":30252,"orbitIndex":18,"name":"Charm Charges","orbit":7},"25239":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds","skill":25239,"stats":["Grants Skill: Demon Form"],"ascendancyName":"Infernalist","connections":[{"orbit":-3,"id":63894}],"group":486,"orbitIndex":66,"isNotable":true,"name":"Demonic Possession","orbit":8},"8872":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"orbit":0,"id":2394},{"orbit":0,"id":45488}],"group":550,"skill":8872,"orbitIndex":0,"name":"Dual Wielding Mastery","orbit":0},"21935":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":21935,"stats":["30% increased maximum Energy Shield","4% increased maximum Mana"],"recipe":["Suffering","Isolation","Despair"],"connections":[{"orbit":0,"id":18240}],"group":193,"orbitIndex":23,"isNotable":true,"name":"Calibration","orbit":3},"13279":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13279,"stats":["+5 to any Attribute"],"isAttribute":true,"group":380,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"55621":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":38537}],"group":1014,"skill":55621,"orbitIndex":22,"name":"Critical Chance","orbit":7},"30979":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30979,"stats":["+5 to any Attribute"],"isAttribute":true,"group":351,"connections":[{"orbit":0,"id":46358},{"orbit":0,"id":44733}],"orbitIndex":0,"name":"Attribute","orbit":0},"8554":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":8554,"stats":["25% increased Fire Damage","15% increased Ignite Duration on Enemies"],"recipe":["Greed","Isolation","Greed"],"connections":[{"orbit":0,"id":47191}],"group":138,"orbitIndex":54,"isNotable":true,"name":"Burning Nature","orbit":4},"53647":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[],"group":444,"skill":53647,"orbitIndex":12,"name":"Armour and Evasion","orbit":3},"25594":{"stats":["Offerings have 15% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":34030}],"group":544,"skill":25594,"orbitIndex":0,"name":"Offering Life","orbit":4},"34612":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":60764}],"group":1006,"skill":34612,"orbitIndex":16,"name":"Bow Damage","orbit":5},"37327":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":319,"skill":37327,"orbitIndex":16,"name":"Mana Regeneration","orbit":7},"38646":{"stats":["+20 to Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":23570}],"group":441,"skill":38646,"orbitIndex":0,"name":"Armour","orbit":0},"65009":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":65009,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":29517},{"orbit":0,"id":23915},{"orbit":7,"id":31855}],"orbitIndex":30,"name":"Attribute","orbit":6},"43131":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":43131,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":-9,"id":61973}],"orbitIndex":40,"name":"Damage vs Low Life Enemies","orbit":8},"1995":{"stats":["15% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[],"group":778,"skill":1995,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"36071":{"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern","connections":[],"group":954,"skill":36071,"orbitIndex":12,"name":"Spear Mastery","orbit":5},"25503":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":27068},{"orbit":0,"id":45632}],"group":147,"skill":25503,"orbitIndex":14,"name":"Mana Regeneration","orbit":7},"57204":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":57204,"stats":["25% increased Critical Hit Chance"],"recipe":["Envy","Paranoia","Ire"],"connections":[{"orbit":0,"id":47833}],"group":619,"orbitIndex":13,"isNotable":true,"name":"Critical Exploit","orbit":2},"65207":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-6,"id":63566}],"group":850,"skill":65207,"orbitIndex":14,"name":"Evasion","orbit":3},"11525":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":64724}],"group":64,"skill":11525,"orbitIndex":11,"name":"Ignite Chance","orbit":2},"7120":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":7120,"stats":[],"ascendancyName":"Witchhunter","isAscendancyStart":true,"group":152,"connections":[{"orbit":-8,"id":43131},{"orbit":0,"id":51737},{"orbit":8,"id":61897},{"orbit":0,"id":20830},{"orbit":0,"id":32559}],"orbitIndex":72,"name":"Witchhunter","orbit":9},"13341":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":63255},{"orbit":0,"id":56841},{"orbit":0,"id":18451}],"group":706,"skill":13341,"orbitIndex":22,"name":"Frenzy Charge Duration","orbit":2},"14272":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":815,"skill":14272,"orbitIndex":7,"name":"Spell Suppression Mastery","orbit":2},"10602":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":10602,"stats":["8% increased Attack Speed with One Handed Weapons","+15 to Dexterity"],"recipe":["Despair","Ire","Envy"],"connections":[{"orbit":0,"id":8629}],"group":226,"orbitIndex":9,"isNotable":true,"name":"Reaving","orbit":4},"5188":{"stats":["3% increased Unarmed Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":2,"id":38668}],"group":992,"skill":5188,"orbitIndex":0,"name":"Unarmed Attack Speed","orbit":0},"12418":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51832},{"orbit":0,"id":3988}],"group":90,"skill":12418,"orbitIndex":21,"name":"Empowered Attack Damage","orbit":2},"12169":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":60138}],"group":854,"skill":12169,"orbitIndex":13,"name":"Physical Mastery","orbit":2},"22959":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":651,"skill":22959,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"10571":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":48240}],"group":269,"skill":10571,"orbitIndex":17,"name":"Stun Threshold","orbit":3},"36723":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":0,"id":3700}],"group":878,"skill":36723,"orbitIndex":0,"name":"Stun and Freeze Buildup","orbit":2},"22928":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22928,"stats":["+5 to any Attribute"],"isAttribute":true,"group":315,"connections":[{"orbit":0,"id":27373}],"orbitIndex":69,"name":"Attribute","orbit":5},"38972":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":38972,"stats":["Minions Revive 25% faster"],"recipe":["Despair","Fear","Disgust"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":8357}],"group":278,"orbitIndex":8,"isNotable":true,"name":"Restless Dead","orbit":3},"38057":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[],"group":527,"skill":38057,"orbitIndex":58,"name":"Armour and Evasion","orbit":5},"15358":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":7,"id":10320},{"orbit":-7,"id":44255}],"group":630,"skill":15358,"orbitIndex":15,"name":"Minion Life","orbit":3},"45319":{"stats":["8% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":55041},{"orbit":0,"id":26135},{"orbit":0,"id":3251}],"group":794,"skill":45319,"orbitIndex":14,"name":"Spell Damage","orbit":3},"43923":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":19104}],"group":658,"skill":43923,"orbitIndex":2,"name":"Accuracy","orbit":2},"42077":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":42077,"stats":["40% increased Energy Shield Recharge Rate","+10 to Intelligence"],"recipe":["Envy","Envy","Greed"],"connections":[{"orbit":0,"id":56564},{"orbit":0,"id":2102}],"group":447,"orbitIndex":11,"isNotable":true,"name":"Essence Infusion","orbit":2},"7405":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":4850}],"group":678,"skill":7405,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"26725":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":26725,"stats":[],"group":74,"connections":[{"orbit":0,"id":27082}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"33946":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":34074},{"orbit":0,"id":57227}],"group":695,"skill":33946,"orbitIndex":7,"name":"Attack Critical Chance","orbit":7},"17871":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":32672}],"group":947,"skill":17871,"orbitIndex":12,"name":"Freeze and Chill Resistance","orbit":2},"3936":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":13397}],"group":437,"skill":3936,"orbitIndex":0,"name":"Melee Damage","orbit":0},"57608":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":37509}],"group":94,"skill":57608,"orbitIndex":0,"name":"Shapeshifting","orbit":0},"13411":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13411,"stats":["+5 to any Attribute"],"isAttribute":true,"group":708,"connections":[{"orbit":7,"id":34136}],"orbitIndex":42,"name":"Attribute","orbit":5},"33093":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":33093,"stats":["4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"recipe":["Suffering","Isolation","Envy"],"connections":[],"group":944,"orbitIndex":6,"isNotable":true,"name":"Effervescent","orbit":7},"59053":{"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":54805}],"group":739,"skill":59053,"orbitIndex":8,"name":"Slow Effect and Hinder Duration","orbit":3},"34210":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":54811},{"orbit":0,"id":64939}],"group":228,"skill":34210,"orbitIndex":0,"name":"Two Handed Damage","orbit":0},"12488":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":12488,"stats":["12% increased Elemental Damage"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":49189}],"orbitIndex":8,"name":"Elemental Damage","orbit":9},"36522":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":3999},{"orbit":0,"id":54099}],"group":430,"skill":36522,"orbitIndex":33,"name":"Attack Area","orbit":4},"23192":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":80,"skill":23192,"orbitIndex":42,"name":"Block","orbit":4},"53373":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":39517},{"orbit":0,"id":36629}],"group":354,"skill":53373,"orbitIndex":45,"name":"Stun Threshold","orbit":4},"64405":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":177,"skill":64405,"orbitIndex":12,"name":"Totem Damage","orbit":3},"4139":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":63,"skill":4139,"orbitIndex":0,"name":"Life Mastery","orbit":0},"12208":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-7,"id":32813}],"group":811,"skill":12208,"orbitIndex":3,"name":"Life Flasks","orbit":7},"22556":{"stats":["30% increased Evasion Rating while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":11257},{"orbit":7,"id":35028}],"group":480,"skill":22556,"orbitIndex":15,"name":"Evasion while Surrounded","orbit":3},"47833":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":619,"skill":47833,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"24511":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":49696}],"group":509,"skill":24511,"orbitIndex":6,"name":"All Attributes","orbit":7},"46499":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":46499,"stats":["Recover 3% of Life for each Endurance Charge consumed","+1 to Maximum Endurance Charges"],"recipe":["Suffering","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":99,"orbitIndex":0,"isNotable":true,"name":"Guts","orbit":0},"28839":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[],"group":246,"skill":28839,"orbitIndex":16,"name":"Cast Speed","orbit":2},"18895":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":3,"id":12661}],"group":663,"skill":18895,"orbitIndex":6,"name":"Stun Threshold from Energy Shield","orbit":1},"49088":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":49088,"stats":["Minions have +150 to Accuracy Rating","25% increased Minion Accuracy Rating"],"recipe":["Envy","Paranoia","Guilt"],"connections":[{"orbit":7,"id":17394}],"group":609,"orbitIndex":0,"isNotable":true,"name":"Fear of Death","orbit":0},"20582":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":55329}],"group":965,"skill":20582,"orbitIndex":21,"name":"Block","orbit":6},"44917":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":44917,"stats":["Gain 20% of maximum Energy Shield as additional Stun Threshold","20% increased Stun Threshold while on Full Life"],"recipe":["Ire","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":34984}],"group":663,"orbitIndex":0,"isNotable":true,"name":"Self Mortification","orbit":7},"17468":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17468,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[],"orbitIndex":48,"name":"Attribute","orbit":6},"42076":{"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-7,"id":17706}],"group":594,"skill":42076,"orbitIndex":0,"name":"Energy Shield Recharge and Mana Flask Recovery","orbit":0},"56616":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":56616,"stats":["Regenerate 1.5% of Life per second while on Low Life","40% increased Life Recovery from Flasks used when on Low Life"],"recipe":["Despair","Disgust","Ire"],"connections":[{"orbit":3,"id":13562},{"orbit":0,"id":41415}],"group":360,"orbitIndex":0,"isNotable":true,"name":"Desperate Times","orbit":2},"10998":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":10998,"stats":["Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet"],"recipe":["Paranoia","Ire","Guilt"],"connections":[{"orbit":0,"id":21438},{"orbit":0,"id":62235}],"group":618,"orbitIndex":24,"isNotable":true,"name":"Strong Chin","orbit":4},"25304":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-2,"id":61056}],"group":855,"skill":25304,"orbitIndex":5,"name":"Energy","orbit":7},"6839":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":39581}],"group":394,"skill":6839,"orbitIndex":14,"name":"Stun Buildup","orbit":7},"53901":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":7,"id":34375}],"group":261,"skill":53901,"orbitIndex":12,"name":"Shield Block","orbit":3},"39237":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":903,"skill":39237,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"35809":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":35809,"stats":["Regenerate 1% of Life per Second if you've used a Life Flask in the past 10 seconds"],"recipe":["Disgust","Envy","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":811,"orbitIndex":6,"isNotable":true,"name":"Reinvigoration","orbit":1},"43736":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","id":38659}},"skill":43736,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":533,"connections":[{"orbit":4,"id":29695}],"orbitIndex":3,"name":"Energy Shield Delay","orbit":2},"32233":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":545,"skill":32233,"orbitIndex":21,"name":"Duration Mastery","orbit":2},"27674":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44082}],"group":289,"skill":27674,"orbitIndex":10,"name":"Energy Shield Recharge","orbit":2},"13675":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds","skill":13675,"stats":["The most Damaging Poison on Enemies you Kill is Spread to other Enemies within 1.5 metres"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":61804}],"group":1050,"orbitIndex":0,"isNotable":true,"name":"Contagious Contamination","orbit":0},"54099":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54099,"stats":["+5 to any Attribute"],"isAttribute":true,"group":443,"connections":[{"orbit":0,"id":8493},{"orbit":0,"id":54127}],"orbitIndex":0,"name":"Attribute","orbit":0},"50795":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":50795,"stats":["16% increased Projectile Damage","40% increased Accuracy Rating at Close Range"],"recipe":["Guilt","Guilt","Paranoia"],"connections":[{"orbit":0,"id":58013},{"orbit":0,"id":20744}],"group":645,"orbitIndex":7,"isNotable":true,"name":"Careful Aim","orbit":7},"33823":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":757,"skill":33823,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"52191":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":52191,"stats":["53% increased Chaos Damage","Lose 3% of Life and Energy Shield when you use a Chaos Skill"],"recipe":["Despair","Isolation","Guilt"],"connections":[{"orbit":-7,"id":57724}],"group":856,"orbitIndex":0,"isNotable":true,"name":"Event Horizon","orbit":0},"6872":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":0,"id":18448}],"group":67,"skill":6872,"orbitIndex":4,"name":"Maximum Cold Resistance","orbit":4},"42604":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":243,"skill":42604,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"53975":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":33254},{"orbit":0,"id":40783}],"group":555,"skill":53975,"orbitIndex":0,"name":"Spell Damage","orbit":2},"59779":{"stats":["+10 to Armour","+8 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":50986},{"orbit":6,"id":42350},{"orbit":6,"id":97},{"orbit":5,"id":11311}],"group":493,"skill":59779,"orbitIndex":0,"name":"Armour and Evasion","orbit":0},"41225":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":626,"skill":41225,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"4271":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","connections":[{"orbit":0,"id":62887},{"orbit":-3,"id":33225},{"orbit":-7,"id":61768},{"orbit":-2,"id":63926}],"group":626,"skill":4271,"orbitIndex":8,"name":"Minion Resistances","orbit":2},"5163":{"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":0,"id":26726}],"group":937,"skill":5163,"orbitIndex":19,"name":"Knockback and Stun Buildup","orbit":2},"9020":{"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":9020,"stats":["25% increased Damage with Hits against Rare and Unique Enemies","20% increased Accuracy Rating against Rare or Unique Enemies","20% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Despair","Isolation","Despair"],"connections":[{"orbit":0,"id":35118}],"group":685,"orbitIndex":11,"isNotable":true,"name":"Giantslayer","orbit":1},"15180":{"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-2,"id":61444}],"group":262,"skill":15180,"orbitIndex":8,"name":"Unleash Seal Generation","orbit":2},"29458":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":1003,"skill":29458,"orbitIndex":14,"name":"Poison Damage","orbit":7},"3203":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-4,"id":30562}],"group":767,"skill":3203,"orbitIndex":12,"name":"Evasion and Energy Shield","orbit":7},"20416":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":20416,"stats":["5% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","+1 to Maximum Endurance Charges"],"recipe":["Suffering","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":383,"orbitIndex":0,"isNotable":true,"name":"Grit","orbit":0},"4527":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4527,"stats":["+5 to any Attribute"],"isAttribute":true,"group":128,"connections":[{"orbit":0,"id":54701}],"orbitIndex":0,"name":"Attribute","orbit":0},"1869":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":27095}],"group":745,"skill":1869,"orbitIndex":1,"name":"Freeze Buildup","orbit":2},"29788":{"stats":["12% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-2,"id":46060}],"group":336,"skill":29788,"orbitIndex":0,"name":"Life Leech","orbit":7},"61703":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":61703,"stats":["25% increased Attack Damage"],"recipe":["Ire","Greed","Greed"],"connections":[],"group":111,"orbitIndex":0,"isNotable":true,"name":"Sharpened Claw","orbit":0},"37190":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":35855}],"group":592,"skill":37190,"orbitIndex":7,"name":"Life Leech","orbit":2},"6715":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":3,"id":116},{"orbit":0,"id":41372}],"group":584,"skill":6715,"orbitIndex":17,"name":"Energy Shield and Mana Regeneration","orbit":7},"45383":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":23930},{"orbit":0,"id":30662}],"group":146,"skill":45383,"orbitIndex":36,"name":"Lightning Damage","orbit":4},"59390":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":11472},{"orbit":0,"id":65009}],"group":741,"skill":59390,"orbitIndex":4,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"45709":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":52803}],"group":857,"skill":45709,"orbitIndex":21,"name":"Life Flask Charges","orbit":7},"34817":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds","skill":34817,"stats":["50% reduced Darkness Reservation Duration"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":64,"isNotable":true,"name":"Inner Silence","orbit":9},"47555":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47555,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":0,"id":51184},{"orbit":0,"id":18407},{"orbit":0,"id":39886}],"orbitIndex":22,"name":"Attribute","orbit":6},"8260":{"stats":["20% increased Armour Break Duration"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":21453}],"group":127,"skill":8260,"orbitIndex":0,"name":"Armour Break Duration","orbit":7},"52254":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":42290}],"group":565,"skill":52254,"orbitIndex":14,"name":"Curse Effect","orbit":7},"17903":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":40117}],"group":133,"skill":17903,"orbitIndex":6,"name":"Thorns","orbit":7},"6748":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":48618},{"orbit":3,"id":62122}],"group":319,"skill":6748,"orbitIndex":8,"name":"Damage from Mana","orbit":7},"54228":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":64240}],"group":81,"skill":54228,"orbitIndex":18,"name":"Physical Damage","orbit":2},"9796":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-4,"id":62310}],"group":345,"skill":9796,"orbitIndex":18,"name":"Ignite Chance","orbit":2},"55888":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":18746},{"orbit":0,"id":49256},{"orbit":0,"id":440}],"group":51,"skill":55888,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":0},"38044":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-4,"id":37695}],"group":800,"skill":38044,"orbitIndex":4,"name":"Evasion","orbit":7},"24477":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":17532}],"group":322,"skill":24477,"orbitIndex":20,"name":"Stun Threshold and Strength","orbit":2},"16367":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":723,"skill":16367,"orbitIndex":0,"name":"Elemental Damage","orbit":0},"43396":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":43396,"stats":["25% increased Totem Placement speed","50% increased Totem Placement range"],"recipe":["Suffering","Paranoia","Ire"],"connections":[{"orbit":0,"id":40550}],"group":209,"orbitIndex":0,"isNotable":true,"name":"Ancestral Reach","orbit":0},"59720":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":59720,"stats":["100% increased Evasion Rating from Equipped Body Armour"],"recipe":["Greed","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":0,"id":41163}],"group":982,"orbitIndex":42,"isNotable":true,"name":"Beastial Skin","orbit":5},"5295":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":5961}],"group":652,"skill":5295,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"2113":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":2113,"stats":["25% increased Accuracy Rating with Quarterstaves","25% increased Critical Damage Bonus with Quarterstaves","+25 to Dexterity"],"recipe":["Isolation","Ire","Fear"],"connections":[{"orbit":0,"id":326},{"orbit":0,"id":59694}],"group":1021,"orbitIndex":13,"isNotable":true,"name":"Martial Artistry","orbit":3},"20645":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":64284}],"group":315,"skill":20645,"orbitIndex":14,"name":"Attack Area","orbit":3},"6686":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":29472}},"skill":6686,"stats":["10% increased Mana Regeneration Rate"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":51184}],"orbitIndex":1,"name":"Mana Regeneration","orbit":2},"36927":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":5,"id":44756}],"group":914,"skill":36927,"orbitIndex":11,"name":"Mark Cast Speed","orbit":2},"15374":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":15374,"stats":["15% increased Life Recovery rate"],"recipe":["Despair","Paranoia","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":48035}],"group":337,"orbitIndex":0,"isNotable":true,"name":"Hale Heart","orbit":0},"54632":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":36507}],"group":448,"skill":54632,"orbitIndex":12,"name":"Minion Life and Chaos Resistance","orbit":2},"2656":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":5701}],"group":782,"skill":2656,"orbitIndex":6,"name":"Mark Effect","orbit":2},"15855":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":37963}],"group":352,"skill":15855,"orbitIndex":41,"name":"Sword Damage","orbit":5},"35671":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":3,"id":31172}],"group":896,"skill":35671,"orbitIndex":57,"name":"Attack Speed and Dexterity","orbit":4},"22057":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":2,"id":30143},{"orbit":4,"id":36808}],"group":790,"skill":22057,"orbitIndex":21,"name":"Shield Defences","orbit":7},"36788":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":36788,"stats":["11% increased Chaos Damage"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":25781}],"orbitIndex":8,"name":"Chaos Damage","orbit":6},"61768":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[],"group":629,"skill":61768,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"39037":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39037,"stats":["+5 to any Attribute"],"isAttribute":true,"group":538,"connections":[{"orbit":0,"id":11672}],"orbitIndex":0,"name":"Attribute","orbit":0},"48611":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","connections":[{"orbit":0,"id":4271},{"orbit":0,"id":46554}],"group":626,"skill":48611,"orbitIndex":0,"name":"Minion Resistances","orbit":2},"61429":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":44902}],"group":114,"skill":61429,"orbitIndex":18,"name":"Attack and Spell Damage","orbit":7},"11014":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":177,"skill":11014,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"8904":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":8904,"stats":["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m","Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"],"recipe":["Isolation","Fear","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":925,"orbitIndex":0,"isNotable":true,"name":"Death from Afar","orbit":0},"19249":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":19249,"stats":["25% increased Damage while you have a Totem","Totems have 2% increased Cast Speed per Summoned Totem","Totems have 2% increased Attack Speed per Summoned Totem"],"recipe":["Fear","Disgust","Isolation"],"connections":[{"orbit":4,"id":33209},{"orbit":0,"id":40550}],"group":209,"orbitIndex":0,"isNotable":true,"name":"Supportive Ancestors","orbit":6},"50273":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":47893},{"orbit":0,"id":63267},{"orbit":0,"id":3131}],"group":551,"skill":50273,"orbitIndex":0,"name":"Dual Wielding Damage","orbit":0},"917":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":65160}],"group":69,"skill":917,"orbitIndex":10,"name":"Stun Threshold","orbit":3},"53965":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":12337}],"group":700,"skill":53965,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"20909":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":2147483647,"id":44891}],"group":978,"skill":20909,"orbitIndex":0,"name":"Cold Penetration","orbit":2},"49280":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":3,"id":36170}],"group":428,"skill":49280,"orbitIndex":7,"name":"Armour and Evasion","orbit":7},"46034":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46034,"stats":["+5 to any Attribute"],"isAttribute":true,"group":696,"connections":[{"orbit":0,"id":41029},{"orbit":0,"id":10552}],"orbitIndex":0,"name":"Attribute","orbit":0},"55947":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":3,"id":46088}],"group":624,"skill":55947,"orbitIndex":12,"name":"Spell Critical Chance","orbit":2},"42280":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":21205}],"group":509,"skill":42280,"orbitIndex":22,"name":"All Attributes","orbit":7},"19125":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":19125,"stats":["30% increased Spell Damage","5% reduced Cast Speed"],"recipe":["Paranoia","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":555,"orbitIndex":4,"isNotable":true,"name":"Potent Incantation","orbit":1},"33887":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":33887,"stats":["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"],"recipe":["Ire","Isolation","Greed"],"connections":[{"orbit":0,"id":61432}],"group":612,"orbitIndex":7,"isNotable":true,"name":"Full Salvo","orbit":4},"62230":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":62230,"stats":["60% increased maximum Energy Shield","20% slower start of Energy Shield Recharge"],"recipe":["Suffering","Isolation","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":0,"id":19355}],"group":679,"orbitIndex":0,"isNotable":true,"name":"Patient Barrier","orbit":6},"41739":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":13279}],"group":362,"skill":41739,"orbitIndex":2,"name":"Stun Buildup","orbit":2},"18489":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":13356},{"orbit":-7,"id":12751},{"orbit":0,"id":37258}],"group":284,"skill":18489,"orbitIndex":19,"name":"One Handed Damage","orbit":7},"40760":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":21779},{"orbit":0,"id":9185},{"orbit":0,"id":47177}],"group":619,"skill":40760,"orbitIndex":1,"name":"Critical Chance","orbit":2},"28573":{"stats":["Minions Revive 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[],"group":630,"skill":28573,"orbitIndex":6,"name":"Minion Revive Speed","orbit":7},"14777":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":14777,"stats":["Empowered Attacks have 50% increased Stun Buildup","100% increased Stun Threshold during Empowered Attacks"],"recipe":["Suffering","Guilt","Despair"],"connections":[{"orbit":4,"id":59466},{"orbit":0,"id":20015}],"group":223,"orbitIndex":20,"isNotable":true,"name":"Bravado","orbit":7},"59909":{"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":4,"id":30539}],"group":709,"skill":59909,"orbitIndex":2,"name":"Corpses","orbit":7},"41615":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":4,"id":10534},{"orbit":0,"id":22616}],"group":209,"skill":41615,"orbitIndex":10,"name":"Totem Placement Speed","orbit":7},"52973":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":12851},{"orbit":0,"id":57555}],"group":426,"skill":52973,"orbitIndex":9,"name":"Bleed Chance","orbit":2},"53698":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":20916},{"orbit":0,"id":59355}],"group":802,"skill":53698,"orbitIndex":22,"name":"Attack Damage","orbit":7},"4985":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":4985,"stats":["Recover 20% of Life when you Heavy Stun a Rare or Unique Enemy"],"recipe":["Ire","Disgust","Ire"],"connections":[],"group":125,"orbitIndex":6,"isNotable":true,"name":"Flip the Script","orbit":7},"59256":{"stats":["20% increased Critical Hit Chance if you have Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":8531}],"group":331,"skill":59256,"orbitIndex":8,"name":"Critical Chance","orbit":2},"13823":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":13823,"stats":["25% increased Critical Hit Chance for Spells","Hits have 25% reduced Critical Hit Chance against you"],"recipe":["Envy","Fear","Isolation"],"connections":[{"orbit":0,"id":63861},{"orbit":0,"id":32054}],"group":624,"orbitIndex":0,"isNotable":true,"name":"Controlling Magic","orbit":3},"60173":{"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":2,"id":4238}],"group":826,"skill":60173,"orbitIndex":20,"name":"One Handed Accuracy","orbit":7},"24338":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":48581}],"group":411,"skill":24338,"orbitIndex":70,"name":"Damage against Ailments","orbit":5},"6133":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":6133,"stats":["100% increased Defences from Equipped Shield"],"recipe":["Paranoia","Greed","Fear"],"connections":[{"orbit":0,"id":33402},{"orbit":0,"id":58138}],"group":52,"orbitIndex":48,"isNotable":true,"name":"Core of the Guardian","orbit":4},"12419":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-1,"id":56063}],"group":617,"skill":12419,"orbitIndex":4,"name":"Chaos Damage and Duration","orbit":2},"55746":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-2,"id":61935}],"group":330,"skill":55746,"orbitIndex":4,"name":"Rage on Hit","orbit":7},"16647":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":321,"skill":16647,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"42205":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":197,"skill":42205,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"41210":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":41210,"stats":["15% increased Projectile Damage","Projectiles have 10% chance to Chain an additional time from terrain"],"recipe":["Ire","Disgust","Disgust"],"connections":[{"orbit":0,"id":1477},{"orbit":0,"id":43578}],"group":525,"orbitIndex":21,"isNotable":true,"name":"Ricochet","orbit":4},"32438":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":55149}],"group":879,"skill":32438,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"8881":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":8881,"stats":["+4 to Maximum Rage","Inherent Rage Loss starts 1 second later"],"recipe":["Isolation","Greed","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":161,"orbitIndex":6,"isNotable":true,"name":"Unforgiving","orbit":4},"52442":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":513,"skill":52442,"orbitIndex":20,"name":"Attack Speed","orbit":2},"9393":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":688,"skill":9393,"orbitIndex":6,"name":"Flask Mastery","orbit":1},"13505":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":13505,"stats":["20% increased Life Regeneration rate","5% of Damage taken Recouped as Life"],"recipe":["Envy","Guilt","Envy"],"connections":[{"orbit":3,"id":63209},{"orbit":0,"id":4956}],"group":369,"orbitIndex":0,"isNotable":true,"name":"Resilient Soul","orbit":0},"18629":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":64327}],"group":354,"skill":18629,"orbitIndex":0,"name":"Block","orbit":3},"34074":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":23259}],"group":695,"skill":34074,"orbitIndex":11,"name":"Attack Critical Chance","orbit":2},"59644":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-7,"id":42959}],"group":883,"skill":59644,"orbitIndex":15,"name":"Poison Damage","orbit":7},"13474":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":16084}],"group":225,"skill":13474,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"47759":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds","skill":47759,"isKeystone":true,"stats":["You can apply an additional Curse","Double Activation Delay of Curses"],"group":585,"connections":[{"orbit":2147483647,"id":62677}],"orbitIndex":0,"name":"Whispers of Doom","orbit":0},"6529":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-3,"id":32416}],"group":365,"skill":6529,"orbitIndex":0,"name":"Armour","orbit":2},"16845":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16845,"stats":["+5 to any Attribute"],"isAttribute":true,"group":571,"connections":[{"orbit":6,"id":46989}],"orbitIndex":36,"name":"Attribute","orbit":6},"28267":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":28267,"stats":["25% increased Critical Damage Bonus","Hits against you have 25% reduced Critical Damage Bonus"],"recipe":["Envy","Suffering","Greed"],"connections":[{"orbit":0,"id":2672},{"orbit":0,"id":35085}],"group":168,"orbitIndex":20,"isNotable":true,"name":"Desensitisation","orbit":3},"33221":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":0,"id":26331},{"orbit":0,"id":19722},{"orbit":0,"id":4959}],"group":863,"skill":33221,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"4956":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":370,"skill":4956,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"21670":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":29358}],"group":69,"skill":21670,"orbitIndex":7,"name":"Stun Buildup","orbit":1},"5398":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":51820}],"group":151,"skill":5398,"orbitIndex":40,"name":"Totem Cast Speed","orbit":4},"45244":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":45244,"stats":["Life Flasks gain 0.15 charges per Second"],"recipe":["Greed","Ire","Isolation"],"connections":[{"orbit":0,"id":23343},{"orbit":0,"id":41016}],"group":785,"orbitIndex":16,"isNotable":true,"name":"Refills","orbit":2},"58388":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":13157},{"orbit":0,"id":17702}],"group":785,"skill":58388,"orbitIndex":23,"name":"Life Flasks","orbit":3},"17268":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":17268,"stats":["15% increased Magnitude of Shock you inflict"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":3,"id":7621}],"orbitIndex":13,"name":"Shock Effect","orbit":6},"56216":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56216,"stats":["+5 to any Attribute"],"isAttribute":true,"group":537,"connections":[{"orbit":0,"id":9485}],"orbitIndex":0,"name":"Attribute","orbit":0},"45570":{"stats":["Offering Skills have 20% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":43713}],"group":456,"skill":45570,"orbitIndex":0,"name":"Offering Area","orbit":4},"35859":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":592,"skill":35859,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"46565":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":46565,"stats":["50% reduced Enemy Chance to Block Sword Attacks"],"recipe":["Ire","Guilt","Guilt"],"connections":[{"orbit":0,"id":15855}],"group":325,"orbitIndex":0,"isNotable":true,"name":"Stance Breaker","orbit":0},"23939":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":23939,"stats":["3% of Damage Taken Recouped as Life, Mana and Energy Shield"],"recipe":["Isolation","Fear","Fear"],"connections":[{"orbit":0,"id":857}],"group":381,"orbitIndex":12,"isNotable":true,"name":"Glazed Flesh","orbit":7},"3688":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":3688,"stats":["40% increased Damage if you've Triggered a Skill Recently","Meta Skills gain 15% increased Energy"],"recipe":["Isolation","Greed","Ire"],"connections":[{"orbit":-7,"id":47614},{"orbit":0,"id":32509}],"group":953,"orbitIndex":4,"isNotable":true,"name":"Dynamism","orbit":7},"64995":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":17924}],"group":232,"skill":64995,"orbitIndex":0,"name":"Damage against Enemies on Low Life","orbit":3},"47168":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47168,"stats":["+5 to any Attribute"],"isAttribute":true,"group":349,"connections":[{"orbit":-4,"id":6006},{"orbit":0,"id":54521}],"orbitIndex":0,"name":"Attribute","orbit":0},"17532":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":61934}],"group":322,"skill":17532,"orbitIndex":0,"name":"Stun Threshold","orbit":2},"36728":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds","skill":36728,"stats":["+1% to Maximum Cold Resistance per 4 Blue Support Gems Socketed","+1% to Maximum Fire Resistance per 4 Red Support Gems Socketed","+1% to Maximum Lightning Resistance per 4 Green Support Gems Socketed"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":318,"orbitIndex":0,"isNotable":true,"name":"Thaumaturgical Infusion","orbit":0},"18397":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":18397,"stats":["35% increased amount of Life Leeched","Leech Life 20% slower"],"recipe":["Despair","Ire","Ire"],"connections":[{"orbit":0,"id":55063},{"orbit":0,"id":4139}],"group":63,"orbitIndex":5,"isNotable":true,"name":"Savoured Blood","orbit":3},"58528":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":6,"id":5710}],"group":315,"skill":58528,"orbitIndex":2,"name":"Melee Damage","orbit":3},"48551":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":48551,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Blood Mage","group":607,"connections":[{"orbit":9,"id":26383}],"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"60634":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds","skill":60634,"stats":["Carry a Chest which adds 20 Inventory Slots"],"ascendancyName":"Titan","connections":[{"orbit":0,"id":27418}],"group":28,"orbitIndex":48,"isNotable":true,"name":"Colossal Capacity","orbit":5},"39365":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":39365,"stats":["20% increased Totem Life"],"ascendancyName":"Warbringer","group":15,"connections":[{"orbit":0,"id":39411}],"orbitIndex":0,"name":"Totem Life","orbit":0},"3242":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-4,"id":59636}],"group":505,"skill":3242,"orbitIndex":16,"name":"Mana Regeneration","orbit":2},"27705":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27705,"stats":["+5 to any Attribute"],"isAttribute":true,"group":998,"connections":[{"orbit":0,"id":48773},{"orbit":0,"id":2582},{"orbit":0,"id":38493},{"orbit":0,"id":65212}],"orbitIndex":0,"name":"Attribute","orbit":0},"13738":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":13738,"stats":["14% increased Lightning Damage","8% increased Attack and Cast Speed with Lightning Skills"],"recipe":["Fear","Fear","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":628,"orbitIndex":0,"isNotable":true,"name":"Lightning Quick","orbit":0},"27540":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":187,"skill":27540,"orbitIndex":0,"name":"Empowered Attack Damage","orbit":3},"61493":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":61493,"stats":["+5 to all Attributes","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Paranoia","Envy","Despair"],"connections":[{"orbit":0,"id":18240}],"group":193,"orbitIndex":19,"isNotable":true,"name":"Austerity Measures","orbit":3},"15522":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":6,"id":17348},{"orbit":-6,"id":24630}],"group":48,"skill":15522,"orbitIndex":21,"name":"Ignite Effect","orbit":3},"8540":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":45230}],"group":651,"skill":8540,"orbitIndex":10,"name":"Curse Area","orbit":2},"42794":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-5,"id":31433}],"group":875,"skill":42794,"orbitIndex":2,"name":"Elemental Attack Damage","orbit":3},"36325":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":-5,"id":54148}],"group":345,"skill":36325,"orbitIndex":71,"name":"Fire Penetration","orbit":4},"22419":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22419,"stats":["+5 to any Attribute"],"isAttribute":true,"group":477,"connections":[{"orbit":0,"id":18407},{"orbit":0,"id":4739}],"orbitIndex":0,"name":"Attribute","orbit":0},"39567":{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":39567,"stats":["+25 to Intelligence"],"recipe":["Ire","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":0,"isNotable":true,"name":"Ingenuity","orbit":5},"54557":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-6,"id":9421}],"group":860,"skill":54557,"orbitIndex":2,"name":"Cold Penetration","orbit":2},"41415":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":360,"skill":41415,"orbitIndex":0,"name":"Life Mastery","orbit":0},"19223":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":21755},{"orbit":0,"id":27270}],"group":553,"skill":19223,"orbitIndex":18,"name":"Attack Damage","orbit":7},"630":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":13419}],"group":720,"skill":630,"orbitIndex":4,"name":"Critical Damage","orbit":1},"62624":{"stats":["+30 to Evasion Rating","+15 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":905,"skill":62624,"orbitIndex":22,"name":"Evasion and Energy Shield","orbit":7},"31273":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17372}],"group":946,"skill":31273,"orbitIndex":6,"name":"Melee Damage","orbit":2},"49996":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49996,"stats":["+5 to any Attribute"],"isAttribute":true,"group":920,"connections":[{"orbit":0,"id":32183},{"orbit":-4,"id":38215},{"orbit":7,"id":5163}],"orbitIndex":0,"name":"Attribute","orbit":0},"55348":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":23227}],"group":379,"skill":55348,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"47155":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":35896},{"orbit":2,"id":63545},{"orbit":-2,"id":17394}],"group":609,"skill":47155,"orbitIndex":3,"name":"Minion Damage","orbit":3},"5088":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":49537}],"group":197,"skill":5088,"orbitIndex":18,"name":"Elemental","orbit":3},"28638":{"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"orbit":0,"id":37514},{"orbit":0,"id":2113}],"group":1022,"skill":28638,"orbitIndex":0,"name":"Quarterstaff Mastery","orbit":0},"53440":{"stats":["Gain 2 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":11306}],"group":78,"skill":53440,"orbitIndex":7,"name":"Axe Rage on Hit","orbit":3},"56605":{"icon":"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds","skill":56605,"isKeystone":true,"stats":["Dodge Roll cannot Avoid Damage","Take 30% less Damage from Hits while Dodge Rolling"],"group":300,"connections":[],"orbitIndex":0,"name":"Bulwark","orbit":0},"1200":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1200,"stats":["+5 to any Attribute"],"isAttribute":true,"group":46,"connections":[{"orbit":-4,"id":53822},{"orbit":0,"id":55190}],"orbitIndex":36,"name":"Attribute","orbit":4},"28002":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28002,"stats":["+5 to any Attribute"],"isAttribute":true,"group":242,"connections":[{"orbit":0,"id":32194}],"orbitIndex":0,"name":"Attribute","orbit":0},"53762":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":53762,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":312,"connections":[{"orbit":2147483647,"id":36728}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"29398":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":29398,"stats":["25% increased Chill Duration on Enemies"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":18849}],"orbitIndex":2,"name":"Chill Duration","orbit":6},"58651":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":55194},{"orbit":0,"id":49357}],"group":342,"skill":58651,"orbitIndex":71,"name":"Minion Damage","orbit":4},"21205":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":44176}],"group":509,"skill":21205,"orbitIndex":60,"name":"All Attributes","orbit":5},"7049":{"stats":["30% increased Armour while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":22556}],"group":480,"skill":7049,"orbitIndex":19,"name":"Armour while Surrounded","orbit":3},"61897":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":61897,"stats":["15% increased Armour and Evasion Rating"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":8,"id":38601}],"orbitIndex":32,"name":"Armour and Evasion","orbit":8},"58329":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58329,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":56360},{"orbit":0,"id":61196},{"orbit":0,"id":56638}],"orbitIndex":18,"name":"Attribute","orbit":6},"47683":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":547,"skill":47683,"orbitIndex":23,"name":"Chaining Projectiles","orbit":2},"32660":{"stats":["20% increased Critical Hit Chance if you have Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[],"group":331,"skill":32660,"orbitIndex":22,"name":"Critical Chance","orbit":2},"26821":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":25729}],"group":944,"skill":26821,"orbitIndex":14,"name":"Cast Speed","orbit":3},"45713":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":45713,"stats":["20% chance for Flasks you use to not consume Charges"],"recipe":["Disgust","Ire","Isolation"],"connections":[],"group":916,"orbitIndex":0,"isNotable":true,"name":"Savouring","orbit":0},"41538":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":3,"id":9112},{"orbit":0,"id":30047}],"group":734,"skill":41538,"orbitIndex":18,"name":"Ailment Threshold","orbit":3},"4931":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":4931,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"recipe":["Ire","Fear","Envy"],"connections":[{"orbit":0,"id":21404},{"orbit":0,"id":27307}],"group":289,"orbitIndex":0,"isNotable":true,"name":"Dependable Ward","orbit":2},"36450":{"stats":["12% increased Spell Damage while on Full Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":-4,"id":11838}],"group":719,"skill":36450,"orbitIndex":0,"name":"Spell Damage on full Energy Shield","orbit":3},"34076":{"stats":["25% increased Block Recovery"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":37244}],"group":790,"skill":34076,"orbitIndex":12,"name":"Block Recovery","orbit":7},"21438":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":1019}],"group":618,"skill":21438,"orbitIndex":5,"name":"Armour and Evasion","orbit":7},"44255":{"stats":["Minions Revive 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":-3,"id":28573}],"group":630,"skill":44255,"orbitIndex":12,"name":"Minion Revive Speed","orbit":7},"10053":{"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds","skill":10053,"stats":["10% chance for Flasks you use to not consume Charges","20% increased Life and Mana Recovery from Flasks"],"recipe":["Guilt","Greed","Ire"],"connections":[{"orbit":0,"id":19470},{"orbit":0,"id":9458}],"group":658,"orbitIndex":20,"isNotable":true,"name":"Combat Alchemy","orbit":2},"52836":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":7,"id":11980},{"orbit":0,"id":56806}],"group":655,"skill":52836,"orbitIndex":0,"name":"Block","orbit":4},"41414":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":-7,"id":4547}],"group":130,"skill":41414,"orbitIndex":23,"name":"Maximum Cold Resistance","orbit":7},"6079":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":10242}],"group":836,"skill":6079,"orbitIndex":16,"name":"Life Recoup","orbit":2},"14832":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":56,"skill":14832,"orbitIndex":0,"name":"Mace Mastery","orbit":0},"38172":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":60568}],"group":314,"skill":38172,"orbitIndex":5,"name":"Totem Placement Speed","orbit":7},"12761":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":760,"skill":12761,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":2},"29959":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":6891},{"orbit":-3,"id":60362}],"group":1002,"skill":29959,"orbitIndex":13,"name":"Critical Damage","orbit":2},"34340":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":34340,"stats":["Regenerate 0.5% of Life per second","Allies in your Presence Regenerate 1% of your Maximum Life per second"],"recipe":["Ire","Paranoia","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":17294}],"group":435,"orbitIndex":48,"isNotable":true,"name":"Mass Rejuvenation","orbit":4},"61632":{"stats":["20% increased Daze Buildup with Quarterstaves","20% increased Freeze Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":34316}],"group":1021,"skill":61632,"orbitIndex":2,"name":"Quarterstaff Freeze and Daze Buildup","orbit":5},"56214":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":30334}],"group":64,"skill":56214,"orbitIndex":6,"name":"Ignite Effect on You","orbit":3},"1169":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":1169,"stats":["Recover 2% of Life and Mana when you use a Warcry","24% increased Warcry Speed","18% increased Warcry Cooldown Recovery Rate"],"recipe":["Fear","Isolation","Suffering"],"connections":[{"orbit":0,"id":25031}],"group":166,"orbitIndex":14,"isNotable":true,"name":"Urgent Call","orbit":7},"6570":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":866,"skill":6570,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"28175":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28175,"stats":["+5 to any Attribute"],"isAttribute":true,"group":280,"connections":[{"orbit":0,"id":64471},{"orbit":0,"id":21716}],"orbitIndex":0,"name":"Attribute","orbit":0},"62887":{"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","skill":62887,"stats":["Minions have +22% to all Elemental Resistances","Minions have +3% to all Maximum Elemental Resistances"],"recipe":["Greed","Suffering","Disgust"],"connections":[{"orbit":0,"id":41225}],"group":626,"orbitIndex":16,"isNotable":true,"name":"Living Death","orbit":2},"42999":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":4925},{"orbit":3,"id":30808}],"group":1013,"skill":42999,"orbitIndex":14,"name":"Chaos Damage","orbit":3},"20015":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":223,"skill":20015,"orbitIndex":2,"name":"Warcry Mastery","orbit":7},"44783":{"stats":["Spell Skills have 12% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":22949}],"group":233,"skill":44783,"orbitIndex":18,"name":"Area Damage","orbit":2},"47418":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":47418,"stats":["10% reduced Flask Charges used from Mana Flasks","Remove a Curse when you use a Mana Flask"],"recipe":["Greed","Envy","Paranoia"],"connections":[{"orbit":0,"id":23839},{"orbit":0,"id":10738}],"group":887,"orbitIndex":9,"isNotable":true,"name":"Warding Potions","orbit":2},"20744":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":645,"skill":20744,"orbitIndex":3,"name":"Projectile Mastery","orbit":1},"23940":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":23940,"stats":["Increases and Reductions to Armour also apply to Energy Shield","Recharge Rate at 40% of their value"],"recipe":["Isolation","Envy","Ire"],"connections":[{"orbit":3,"id":14342},{"orbit":0,"id":58138}],"group":52,"orbitIndex":20,"isNotable":true,"name":"Adamant Recovery","orbit":7},"51921":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51921,"stats":["+5 to any Attribute"],"isAttribute":true,"group":392,"connections":[{"orbit":-4,"id":36629}],"orbitIndex":54,"name":"Attribute","orbit":6},"50459":{"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","classesStart":["Ranger","Huntress"],"skill":50459,"stats":[],"group":578,"connections":[{"orbit":0,"id":46990},{"orbit":0,"id":1583},{"orbit":0,"id":24665},{"orbit":0,"id":41736},{"orbit":0,"id":63493},{"orbit":0,"id":36365},{"orbit":0,"id":13828},{"orbit":0,"id":56651}],"orbitIndex":0,"name":"RANGER","orbit":0},"11938":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":39964}],"group":615,"skill":11938,"orbitIndex":0,"name":"Mana Regeneration","orbit":0},"49466":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":30871},{"orbit":0,"id":7526}],"group":812,"skill":49466,"orbitIndex":12,"name":"Life Flasks","orbit":7},"45774":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":54975}],"group":837,"skill":45774,"orbitIndex":71,"name":"Slow Effect","orbit":4},"7656":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":7656,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":0,"id":8415}],"orbitIndex":0,"name":"Life","orbit":8},"45712":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":65009}],"group":828,"skill":45712,"orbitIndex":60,"name":"Elemental Damage and Ignite Chance","orbit":5},"9642":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":9642,"stats":["28% increased maximum Energy Shield","Gain 12% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Guilt","Fear","Isolation"],"connections":[{"orbit":6,"id":517},{"orbit":-4,"id":14666}],"group":539,"orbitIndex":21,"isNotable":true,"name":"Dampening Shield","orbit":7},"44316":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":169,"skill":44316,"orbitIndex":6,"name":"Life Mastery","orbit":1},"10534":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-7,"id":46205}],"group":209,"skill":10534,"orbitIndex":2,"name":"Totem Cast Speed","orbit":2},"7788":{"stats":["8% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":5,"id":57805}],"group":517,"skill":7788,"orbitIndex":4,"name":"Knockback","orbit":7},"25565":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":722}],"group":969,"skill":25565,"orbitIndex":2,"name":"Lightning Damage","orbit":2},"8556":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":430,"skill":8556,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"36389":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-3,"id":53989}],"group":219,"skill":36389,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"34015":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34015,"stats":["+5 to any Attribute"],"isAttribute":true,"group":870,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":11825}],"orbitIndex":0,"name":"Attribute","orbit":0},"24045":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[],"group":648,"skill":24045,"orbitIndex":9,"name":"Mana Flask Recovery","orbit":2},"15507":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15507,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":48401}],"orbitIndex":10,"name":"Attribute","orbit":3},"38235":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":322,"skill":38235,"orbitIndex":0,"name":"Life Mastery","orbit":0},"43263":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-2,"id":64492}],"group":826,"skill":43263,"orbitIndex":12,"name":"One Handed Attack Speed","orbit":7},"35660":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":18548}],"group":620,"skill":35660,"orbitIndex":13,"name":"Attack Speed","orbit":2},"4295":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":4295,"stats":["20% reduced Life Regeneration rate","20% of Damage taken Recouped as Mana"],"recipe":["Ire","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":-3,"id":34248}],"group":319,"orbitIndex":0,"isNotable":true,"name":"Adverse Growth","orbit":0},"74":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":74,"stats":[],"ascendancyName":"Acolyte of Chayula","isAscendancyStart":true,"group":1058,"connections":[{"orbit":0,"id":17923},{"orbit":-9,"id":24475},{"orbit":0,"id":36788},{"orbit":0,"id":25779},{"orbit":-8,"id":1347}],"orbitIndex":24,"name":"Acolyte of Chayula","orbit":9},"38111":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":38111,"stats":["6% of Damage taken Recouped as Life","25% increased speed of Recoup Effects"],"recipe":["Greed","Disgust","Isolation"],"connections":[{"orbit":0,"id":32241}],"group":836,"orbitIndex":0,"isNotable":true,"name":"Pliable Flesh","orbit":2},"32271":{"stats":["15% increased Magnitude of Ignite you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":54311}],"group":196,"skill":32271,"orbitIndex":15,"name":"Critical Ignite Effect","orbit":7},"64406":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"orbit":0,"id":17762}],"group":293,"skill":64406,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"46628":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46628,"stats":["+5 to any Attribute"],"isAttribute":true,"group":248,"connections":[{"orbit":0,"id":40894},{"orbit":0,"id":60013}],"orbitIndex":67,"name":"Attribute","orbit":4},"13855":{"stats":["+10 to Armour","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":50626},{"orbit":0,"id":64370}],"group":442,"skill":13855,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":0},"3215":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":3215,"stats":["40% increased maximum Energy Shield","10% reduced maximum Mana"],"recipe":["Guilt","Envy","Suffering"],"connections":[{"orbit":0,"id":44359}],"group":584,"orbitIndex":9,"isNotable":true,"name":"Melding","orbit":7},"59913":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds","skill":59913,"stats":["You can apply an additional Mark"],"ascendancyName":"Deadeye","connections":[],"group":1031,"orbitIndex":0,"isNotable":true,"name":"Called Shots","orbit":0},"33612":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8983}],"group":282,"skill":33612,"orbitIndex":8,"name":"Minion Damage","orbit":1},"4328":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4328,"stats":["+5 to any Attribute"],"isAttribute":true,"group":834,"connections":[{"orbit":0,"id":63132},{"orbit":0,"id":21208}],"orbitIndex":0,"name":"Attribute","orbit":0},"39228":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":62603},{"orbit":0,"id":63021}],"group":445,"skill":39228,"orbitIndex":18,"name":"Fire Penetration","orbit":3},"38763":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":27859}],"group":574,"skill":38763,"orbitIndex":16,"name":"Herald Reservation","orbit":7},"21206":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":21206,"stats":["15% increased Area of Effect","Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"],"recipe":["Greed","Disgust","Fear"],"connections":[{"orbit":0,"id":45899},{"orbit":0,"id":11505}],"group":340,"orbitIndex":9,"isNotable":true,"name":"Explosive Impact","orbit":3},"47359":{"stats":["Triggered Spells deal 16% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":14231}],"group":855,"skill":47359,"orbitIndex":17,"name":"Triggered Spell Damage","orbit":7},"46830":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46830,"stats":["+5 to any Attribute"],"isAttribute":true,"group":725,"connections":[{"orbit":0,"id":18923}],"orbitIndex":0,"name":"Attribute","orbit":0},"44179":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":541,"skill":44179,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"50588":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6010}],"group":803,"skill":50588,"orbitIndex":2,"name":"Accuracy","orbit":2},"58591":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds","skill":58591,"stats":["Inherent bonuses from Intelligence, Strength and Dexterity are doubled"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":338,"orbitIndex":0,"isNotable":true,"name":"Enhanced Effectiveness","orbit":0},"16680":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":48137}],"group":612,"skill":16680,"orbitIndex":15,"name":"Crossbow Reload Speed","orbit":4},"28860":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":56104}],"group":401,"skill":28860,"orbitIndex":0,"name":"Armour Break","orbit":0},"61432":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":6178}],"group":636,"skill":61432,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"14429":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds","skill":14429,"stats":["30% less Cost of Skills","Skill Gems have 30% more Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":220,"orbitIndex":0,"isNotable":true,"name":"Advanced Thaumaturgy","orbit":0},"62159":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":-7,"id":59603}],"group":635,"skill":62159,"orbitIndex":8,"name":"Life Recoup","orbit":2},"11248":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11248,"stats":["+5 to any Attribute"],"isAttribute":true,"group":167,"connections":[{"orbit":0,"id":41263},{"orbit":0,"id":35831},{"orbit":0,"id":21568},{"orbit":0,"id":30260}],"orbitIndex":0,"name":"Attribute","orbit":0},"61490":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61490,"stats":["+5 to any Attribute"],"isAttribute":true,"group":239,"connections":[{"orbit":0,"id":48768},{"orbit":-8,"id":47429},{"orbit":0,"id":64995}],"orbitIndex":0,"name":"Attribute","orbit":0},"13987":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":7604}],"group":946,"skill":13987,"orbitIndex":10,"name":"Melee Attack Speed","orbit":2},"4716":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":4716,"stats":["8% more chance to Evade Melee Attacks"],"recipe":["Guilt","Greed","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":423,"orbitIndex":18,"isNotable":true,"name":"Afterimage","orbit":3},"6772":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6772,"stats":["+5 to any Attribute"],"isAttribute":true,"group":690,"connections":[{"orbit":0,"id":60505}],"orbitIndex":6,"name":"Attribute","orbit":4},"30115":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds","skill":30115,"stats":["50% increased effect of Small Passive Skills"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":16,"isNotable":true,"name":"Hulking Form","orbit":7},"20105":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":13895}],"group":985,"skill":20105,"orbitIndex":0,"name":"Spear Damage","orbit":0},"10286":{"stats":["10% increased Armour","Break 15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":-4,"id":38066}],"group":127,"skill":10286,"orbitIndex":8,"name":"Armour Break and Armour","orbit":7},"44707":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":54785},{"orbit":0,"id":7628}],"group":446,"skill":44707,"orbitIndex":0,"name":"Shield Damage","orbit":0},"61027":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":61027,"stats":["+20 to maximum Mana","5% increased maximum Mana"],"recipe":["Guilt","Despair","Guilt"],"connections":[],"group":539,"orbitIndex":0,"isNotable":true,"name":"Mana Blessing","orbit":0},"43650":{"stats":["15% increased Stun Buildup with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":21070},{"orbit":0,"id":53386}],"group":113,"skill":43650,"orbitIndex":11,"name":"Critical Stun Buildup","orbit":1},"12777":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":-4,"id":28950}],"group":420,"skill":12777,"orbitIndex":23,"name":"Armour and Energy Shield","orbit":2},"36778":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":36479}],"group":667,"skill":36778,"orbitIndex":58,"name":"Shock Chance","orbit":4},"33225":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[],"group":616,"skill":33225,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"27307":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":289,"skill":27307,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"64471":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":64471,"stats":["+5 to any Attribute"],"isAttribute":true,"group":368,"connections":[],"orbitIndex":54,"name":"Attribute","orbit":4},"45248":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":45248,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":236,"connections":[{"orbit":2147483647,"id":14429}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"55611":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":55611,"stats":["12% increased Elemental Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-2,"id":64031}],"orbitIndex":15,"name":"Elemental Damage","orbit":4},"35987":{"icon":"Art/2DArt/SkillIcons/passives/finesse.dds","skill":35987,"stats":["4% increased Movement Speed","20% increased Evasion Rating","+10 to Dexterity"],"recipe":["Paranoia","Disgust","Ire"],"connections":[{"orbit":0,"id":32274},{"orbit":0,"id":19470},{"orbit":0,"id":55397}],"group":604,"orbitIndex":27,"isNotable":true,"name":"Blur","orbit":4},"3921":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":3921,"stats":["15% reduced Reservation of Herald Skills"],"recipe":["Fear","Despair","Greed"],"connections":[{"orbit":0,"id":38398}],"group":334,"orbitIndex":10,"isNotable":true,"name":"Fate Finding","orbit":7},"58714":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":58714,"stats":["Grenade Skills have +1 Cooldown Use"],"recipe":["Paranoia","Fear","Isolation"],"connections":[{"orbit":0,"id":39431}],"group":469,"orbitIndex":60,"isNotable":true,"name":"Grenadier","orbit":4},"8983":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":282,"skill":8983,"orbitIndex":12,"name":"Minion Damage","orbit":3},"13576":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":17024}],"group":656,"skill":13576,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"56806":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":56806,"stats":["12% increased Block chance","1% increased Movement Speed for each time you've Blocked in the past 10 seconds"],"recipe":["Ire","Fear","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":655,"orbitIndex":0,"isNotable":true,"name":"Parrying Motion","orbit":7},"65189":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":33502}],"group":100,"skill":65189,"orbitIndex":0,"name":"Shapeshifting","orbit":5},"56996":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":9568}],"group":387,"skill":56996,"orbitIndex":36,"name":"Totem Life","orbit":4},"45962":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":7183},{"orbit":0,"id":15617}],"group":313,"skill":45962,"orbitIndex":23,"name":"Life Flask Recovery","orbit":3},"14693":{"stats":["14% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":13937}],"group":56,"skill":14693,"orbitIndex":27,"name":"Mace Damage","orbit":4},"22188":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":38763},{"orbit":0,"id":21274}],"group":574,"skill":22188,"orbitIndex":0,"name":"Herald Reservation","orbit":7},"55088":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","connections":[{"orbit":5,"id":61196}],"group":665,"skill":55088,"orbitIndex":2,"name":"Critical Chance","orbit":7},"33815":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":6,"id":35644}],"group":769,"skill":33815,"orbitIndex":5,"name":"Poison Duration","orbit":2},"49406":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":52125}],"group":547,"skill":49406,"orbitIndex":45,"name":"Projectile Damage","orbit":4},"39431":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":469,"skill":39431,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"39369":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":39369,"stats":["Attacks have +1% to Critical Hit Chance"],"recipe":["Isolation","Despair","Greed"],"connections":[{"orbit":3,"id":2936},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":27,"isNotable":true,"name":"Struck Through","orbit":4},"21164":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":21164,"stats":["Minions gain 15% of their Maximum Life as Extra Maximum Energy Shield"],"recipe":["Isolation","Greed","Fear"],"connections":[{"orbit":0,"id":62670}],"group":70,"orbitIndex":10,"isNotable":true,"name":"Fleshcrafting","orbit":7},"47097":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds","skill":47097,"stats":["Corpses in your Presence Explode when you Warcry,","dealing 25% of their Life as Physical Damage"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":64117}],"group":17,"orbitIndex":0,"isNotable":true,"name":"Warcaller's Bellow","orbit":0},"21005":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":24347}],"group":782,"skill":21005,"orbitIndex":18,"name":"Mark Cast Speed","orbit":2},"59647":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":8791}],"group":279,"skill":59647,"orbitIndex":9,"name":"Minion Life","orbit":7},"61026":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":61026,"stats":["Minions have +20% to all Elemental Resistances","Minions have +5% to all Maximum Elemental Resistances"],"recipe":["Despair","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":17378}],"group":278,"orbitIndex":0,"isNotable":true,"name":"Crystalline Flesh","orbit":3},"32427":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":4456}],"group":464,"skill":32427,"orbitIndex":18,"name":"Cold Penetration","orbit":2},"19644":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":19644,"stats":["Minions have 20% additional Physical Damage Reduction","Minions have +23% to Chaos Resistance"],"recipe":["Isolation","Suffering","Envy"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":29,"isNotable":true,"name":"Left Hand of Darkness","orbit":4},"45111":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":14446}],"group":871,"skill":45111,"orbitIndex":2,"name":"Curse Duration","orbit":7},"632":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":56366}],"group":1004,"skill":632,"orbitIndex":0,"name":"Dagger Speed","orbit":0},"18585":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":18585,"stats":["20% increased Armour"],"ascendancyName":"Warbringer","group":7,"connections":[{"orbit":0,"id":6127}],"orbitIndex":0,"name":"Armour","orbit":0},"7251":{"stats":["10% increased Attack Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":336,"skill":7251,"orbitIndex":12,"name":"Attack Damage","orbit":7},"42736":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42736,"stats":["+5 to any Attribute"],"isAttribute":true,"group":587,"connections":[{"orbit":-3,"id":60685}],"orbitIndex":0,"name":"Attribute","orbit":0},"18651":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":11736},{"orbit":0,"id":63863}],"group":562,"skill":18651,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"37244":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":37244,"stats":["12% increased Block chance","40% increased Block Recovery"],"recipe":["Disgust","Greed","Fear"],"connections":[{"orbit":3,"id":33445},{"orbit":0,"id":37795}],"group":790,"orbitIndex":8,"isNotable":true,"name":"Shield Expertise","orbit":2},"63074":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":63074,"stats":["+1 to Level of all Chaos Skills"],"recipe":["Despair","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1013,"orbitIndex":4,"isNotable":true,"name":"Dark Entries","orbit":1},"63545":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":609,"skill":63545,"orbitIndex":6,"name":"Minion Damage","orbit":7},"19873":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":36602},{"orbit":-4,"id":17655}],"group":350,"skill":19873,"orbitIndex":22,"name":"Area of Effect","orbit":2},"22359":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-2,"id":60692}],"group":723,"skill":22359,"orbitIndex":36,"name":"Elemental Damage","orbit":4},"54883":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":34473}],"group":873,"skill":54883,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"52106":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":44005},{"orbit":0,"id":10295}],"group":157,"skill":52106,"orbitIndex":34,"name":"Cast Speed","orbit":6},"29652":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":35911},{"orbit":0,"id":28002}],"group":262,"skill":29652,"orbitIndex":16,"name":"Spell Damage","orbit":2},"3188":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":3188,"stats":["12% increased Attack Speed if you've been Hit Recently"],"recipe":["Ire","Disgust","Isolation"],"connections":[{"orbit":0,"id":38670}],"group":38,"orbitIndex":21,"isNotable":true,"name":"Revenge","orbit":3},"12249":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":12761}],"group":760,"skill":12249,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":2},"39292":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":39292,"stats":["12% increased Flask Charges gained"],"ascendancyName":"Pathfinder","group":1054,"connections":[{"orbit":0,"id":40}],"orbitIndex":0,"name":"Flask Charges Gained","orbit":0},"38827":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":7,"id":1546}],"group":393,"skill":38827,"orbitIndex":1,"name":"Armour and Energy Shield","orbit":7},"26282":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds","skill":26282,"stats":["Gain 10% of Damage as Extra Physical Damage","Elemental Damage also Contributes to Bleeding Magnitude"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":66,"isNotable":true,"name":"Blood Barbs","orbit":5},"1140":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1140,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":15507}],"orbitIndex":22,"name":"Attribute","orbit":2},"18496":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":18496,"stats":["5% reduced Attack Speed","30% increased Magnitude of Ailments you inflict","20% increased Duration of Damaging Ailments on Enemies"],"recipe":["Suffering","Paranoia","Envy"],"connections":[],"group":134,"orbitIndex":12,"isNotable":true,"name":"Lasting Trauma","orbit":7},"60241":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":57178}],"group":292,"skill":60241,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"14926":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":50609},{"orbit":-6,"id":56910}],"group":526,"skill":14926,"orbitIndex":20,"name":"Life Regeneration","orbit":3},"56997":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":56997,"stats":["Hits that Heavy Stun Enemies have Culling Strike"],"recipe":["Ire","Envy","Despair"],"connections":[{"orbit":-5,"id":23861},{"orbit":0,"id":56595}],"group":254,"orbitIndex":6,"isNotable":true,"name":"Heavy Contact","orbit":4},"38703":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":8249}],"group":747,"skill":38703,"orbitIndex":16,"name":"Accuracy and Attack Critical Chance","orbit":7},"60505":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":60505,"stats":["+5 to any Attribute"],"isAttribute":true,"group":733,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":65009},{"orbit":0,"id":21005},{"orbit":0,"id":19808}],"orbitIndex":0,"name":"Attribute","orbit":0},"12661":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":12661,"stats":["Stun Threshold is based on 30% of your Energy Shield instead of Life"],"recipe":["Isolation","Ire","Guilt"],"connections":[{"orbit":0,"id":34984}],"group":663,"orbitIndex":16,"isNotable":true,"name":"Asceticism","orbit":7},"27108":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":27108,"stats":["Allies in your Presence have 6% increased Attack Speed","6% increased Attack Speed"],"recipe":["Disgust","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":47796}],"group":435,"orbitIndex":36,"isNotable":true,"name":"Mass Hysteria","orbit":4},"62677":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":62677,"stats":["+5 to any Attribute"],"isAttribute":true,"group":572,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"3987":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":3987,"stats":["4% increased Skill Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":30}],"orbitIndex":27,"name":"Skill Speed","orbit":8},"3762":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds","skill":3762,"stats":["Every second Slam Skill you use yourself is Ancestrally Boosted"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":125,"isNotable":true,"name":"Ancestral Empowerment","orbit":9},"21568":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21568,"stats":["+5 to any Attribute"],"isAttribute":true,"group":160,"connections":[{"orbit":0,"id":47931}],"orbitIndex":0,"name":"Attribute","orbit":0},"31898":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":3921}],"group":334,"skill":31898,"orbitIndex":7,"name":"Herald Reservation","orbit":7},"10783":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":9762},{"orbit":0,"id":38564}],"group":356,"skill":10783,"orbitIndex":16,"name":"Sword Damage","orbit":2},"25101":{"stats":["10% increased Cold Exposure Effect","10% increased Fire Exposure Effect","10% increased Lightning Exposure Effect"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":5,"id":22439},{"orbit":0,"id":52199},{"orbit":-5,"id":44498},{"orbit":0,"id":56409}],"group":466,"skill":25101,"orbitIndex":4,"name":"Exposure Effect","orbit":3},"37974":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":62230}],"group":679,"skill":37974,"orbitIndex":68,"name":"Energy Shield","orbit":6},"65328":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":48565}],"group":75,"skill":65328,"orbitIndex":13,"name":"Sentinels","orbit":2},"8867":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds","skill":8867,"stats":["You have Arcane Surge"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":7246}],"group":308,"orbitIndex":60,"isNotable":true,"name":"Constant Gale","orbit":8},"18419":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":18419,"stats":["Regenerate 1% of Life per second while you have a Totem","Totems Regenerate 3% of Life per second"],"recipe":["Envy","Fear","Paranoia"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16784},{"orbit":0,"id":23667}],"group":177,"orbitIndex":18,"isNotable":true,"name":"Ancestral Mending","orbit":7},"14383":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":14383,"stats":["30% increased amount of Mana Leeched","Unaffected by Chill while Leeching Mana"],"recipe":["Fear","Despair","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":46601}],"group":868,"orbitIndex":0,"isNotable":true,"name":"Suffusion","orbit":0},"6330":{"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[],"group":907,"skill":6330,"orbitIndex":5,"name":"Accuracy and Attack Damage","orbit":7},"52774":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":5084}],"group":445,"skill":52774,"orbitIndex":18,"name":"Ignite Chance","orbit":2},"38300":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":39716},{"orbit":6,"id":57373}],"group":329,"skill":38300,"orbitIndex":0,"name":"Ignite Chance","orbit":0},"35787":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":42813}],"group":257,"skill":35787,"orbitIndex":0,"name":"Increased Duration","orbit":1},"2575":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":2575,"stats":["30% increased Totem Placement speed","8% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Suffering","Paranoia","Guilt"],"connections":[{"orbit":0,"id":65154}],"group":77,"orbitIndex":14,"isNotable":true,"name":"Ancestral Alacrity","orbit":2},"60034":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":60034,"stats":["1% increased Attack Speed per 250 Accuracy Rating"],"recipe":["Isolation","Paranoia","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":15207},{"orbit":0,"id":22208}],"group":907,"orbitIndex":0,"isNotable":true,"name":"Falcon Dive","orbit":0},"11838":{"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":11838,"stats":["25% increased Spell Damage while on Full Energy Shield","75% increased Energy Shield from Equipped Focus"],"recipe":["Disgust","Suffering","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":-4,"id":33112}],"group":719,"orbitIndex":6,"isNotable":true,"name":"Dreamcatcher","orbit":7},"4084":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":4,"id":17600}],"group":279,"skill":4084,"orbitIndex":0,"name":"Minion Damage","orbit":2},"46819":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46819,"stats":["+5 to any Attribute"],"isAttribute":true,"group":496,"connections":[{"orbit":0,"id":8616}],"orbitIndex":0,"name":"Attribute","orbit":0},"5777":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":5777,"stats":["Minions deal 15% increased Damage","Minions have 20% increased Critical Hit Chance"],"recipe":["Paranoia","Despair","Disgust"],"connections":[{"orbit":0,"id":58651}],"group":342,"orbitIndex":4,"isNotable":true,"name":"Deadly Swarm","orbit":4},"38564":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":20091}],"group":356,"skill":38564,"orbitIndex":15,"name":"Sword Damage","orbit":3},"28272":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":1594}],"group":771,"skill":28272,"orbitIndex":0,"name":"Flask Charges Gained","orbit":3},"50389":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":50389,"stats":["Link Skills Link to 1 additional random target"],"recipe":["Guilt","Envy","Disgust"],"connections":[{"orbit":7,"id":13694},{"orbit":0,"id":11762}],"group":255,"orbitIndex":1,"isNotable":true,"name":"Twinned Tethers","orbit":2},"2672":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":45569}],"group":162,"skill":2672,"orbitIndex":0,"name":"Spell Critical Damage","orbit":0},"3700":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":6842}],"group":878,"skill":3700,"orbitIndex":6,"name":"Stun and Freeze Buildup","orbit":2},"37509":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":33797}],"group":95,"skill":37509,"orbitIndex":3,"name":"Shapeshifting","orbit":5},"45576":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":547,"skill":45576,"orbitIndex":3,"name":"Projectile Mastery","orbit":7},"55276":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55276,"stats":["+5 to any Attribute"],"isAttribute":true,"group":615,"connections":[{"orbit":5,"id":13411}],"orbitIndex":24,"name":"Attribute","orbit":5},"14515":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":43778}],"group":149,"skill":14515,"orbitIndex":8,"name":"Jagged Ground Effect","orbit":3},"12925":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":5,"id":61196}],"group":667,"skill":12925,"orbitIndex":2,"name":"Shock Chance","orbit":4},"40550":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":209,"skill":40550,"orbitIndex":0,"name":"Totem Mastery","orbit":4},"41017":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41017,"stats":["+5 to any Attribute"],"isAttribute":true,"group":963,"connections":[{"orbit":0,"id":14262},{"orbit":0,"id":1801}],"orbitIndex":0,"name":"Attribute","orbit":0},"10372":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-3,"id":36191},{"orbit":0,"id":55933}],"group":269,"skill":10372,"orbitIndex":1,"name":"Stun Threshold","orbit":1},"55152":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"orbit":0,"id":5580}],"group":387,"skill":55152,"orbitIndex":12,"name":"Totem Mastery","orbit":3},"14267":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14267,"stats":["+5 to any Attribute"],"isAttribute":true,"group":1008,"connections":[{"orbit":0,"id":32763}],"orbitIndex":0,"name":"Attribute","orbit":0},"3025":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3025,"stats":["+5 to any Attribute"],"isAttribute":true,"group":543,"connections":[{"orbit":0,"id":38732},{"orbit":0,"id":36782},{"orbit":0,"id":25594}],"orbitIndex":0,"name":"Attribute","orbit":0},"36191":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":40325}],"group":269,"skill":36191,"orbitIndex":21,"name":"Stun Threshold","orbit":2},"16051":{"stats":["Attacks used by Totems have 4% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":177,"skill":16051,"orbitIndex":4,"name":"Totem Attack Speed","orbit":5},"54485":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":25482}],"group":215,"skill":54485,"orbitIndex":22,"name":"Strength","orbit":7},"27834":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":63659},{"orbit":0,"id":34449}],"group":974,"skill":27834,"orbitIndex":41,"name":"Trap Critical Chance","orbit":4},"21227":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":36290}],"group":891,"skill":21227,"orbitIndex":39,"name":"Energy Shield Delay","orbit":4},"17923":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":17923,"stats":["12% increased amount of Mana Leeched"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":18826}],"orbitIndex":16,"name":"Mana Leech","orbit":9},"49734":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49734,"stats":["+5 to any Attribute"],"isAttribute":true,"group":145,"connections":[{"orbit":0,"id":46741}],"orbitIndex":0,"name":"Attribute","orbit":0},"58117":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":13839},{"orbit":0,"id":8493},{"orbit":0,"id":56996}],"group":387,"skill":58117,"orbitIndex":36,"name":"Totem Damage","orbit":5},"12382":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":35849}],"group":79,"skill":12382,"orbitIndex":3,"name":"Life Mastery","orbit":1},"64724":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[],"group":64,"skill":64724,"orbitIndex":17,"name":"Ignite Chance","orbit":2},"25893":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":51169}],"group":519,"skill":25893,"orbitIndex":18,"name":"Energy Shield Recharge","orbit":2},"39759":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":48035}],"group":337,"skill":39759,"orbitIndex":6,"name":"Life Regeneration","orbit":2},"315":{"stats":["10% increased Bleeding Duration"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33216}],"group":462,"skill":315,"orbitIndex":0,"name":"Bleeding Duration","orbit":0},"46554":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46554,"stats":["+5 to any Attribute"],"isAttribute":true,"group":625,"connections":[{"orbit":0,"id":62677},{"orbit":0,"id":36379},{"orbit":0,"id":10131},{"orbit":0,"id":55947}],"orbitIndex":0,"name":"Attribute","orbit":0},"59372":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds","skill":59372,"stats":["Your Hits are Crushing Blows"],"ascendancyName":"Titan","connections":[{"orbit":-5,"id":56842}],"group":30,"orbitIndex":0,"isNotable":true,"name":"Crushing Impacts","orbit":0},"22484":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":5398}],"group":151,"skill":22484,"orbitIndex":20,"name":"Totem Cast Speed","orbit":7},"25026":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":6,"id":3567}],"group":680,"skill":25026,"orbitIndex":20,"name":"Mana Regeneration","orbit":3},"19288":{"icon":"Art/2DArt/SkillIcons/passives/GlancingBlows.dds","skill":19288,"isKeystone":true,"stats":["Block Chance is doubled","You take 50% of Damage from Blocked Hits"],"group":653,"connections":[],"orbitIndex":0,"name":"Glancing Blows","orbit":0},"10729":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":749,"skill":10729,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"56409":{"stats":["12% increased chance to Ignite","12% increased Freeze Buildup","12% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":43139},{"orbit":0,"id":65248}],"group":466,"skill":56409,"orbitIndex":12,"name":"Elemental Ailment Chance","orbit":4},"25992":{"stats":["10% increased Accuracy Rating with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[],"group":1006,"skill":25992,"orbitIndex":7,"name":"Bow Accuracy Rating","orbit":6},"53632":{"stats":["12% increased chance to Ignite","6% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":3,"id":28482}],"group":196,"skill":53632,"orbitIndex":8,"name":"Ignite and Critical Chance","orbit":2},"17702":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17702,"stats":["+5 to any Attribute"],"isAttribute":true,"group":777,"connections":[{"orbit":0,"id":46882},{"orbit":7,"id":27262}],"orbitIndex":0,"name":"Attribute","orbit":0},"18121":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":794,"skill":18121,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"858":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":5,"id":58387}],"group":393,"skill":858,"orbitIndex":18,"name":"Chaos Damage","orbit":5},"15671":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15671,"stats":["+5 to any Attribute"],"isAttribute":true,"group":148,"connections":[{"orbit":0,"id":14654},{"orbit":0,"id":23930}],"orbitIndex":0,"name":"Attribute","orbit":0},"13856":{"stats":["1% reduced Attack Speed","12% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":18496}],"group":134,"skill":13856,"orbitIndex":9,"name":"Ailment Effect and Reduced Attack Speed","orbit":7},"50328":{"stats":["10% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":28992},{"orbit":0,"id":10053}],"group":658,"skill":50328,"orbitIndex":23,"name":"Life and Mana Flask Recovery","orbit":3},"21755":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21755,"stats":["+5 to any Attribute"],"isAttribute":true,"group":516,"connections":[{"orbit":0,"id":2847},{"orbit":0,"id":48635},{"orbit":0,"id":61281},{"orbit":0,"id":52274}],"orbitIndex":0,"name":"Attribute","orbit":0},"55680":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":61112}],"group":954,"skill":55680,"orbitIndex":14,"name":"Spear Damage","orbit":4},"62023":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":159,"skill":62023,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"7998":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":7998,"stats":["20% increased chance to Shock"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":39640}],"orbitIndex":70,"name":"Shock Chance","orbit":6},"34671":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":24477},{"orbit":0,"id":48418}],"group":322,"skill":34671,"orbitIndex":14,"name":"Stun Threshold and Strength","orbit":2},"21336":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":62984}],"group":681,"skill":21336,"orbitIndex":19,"name":"Evasion and Energy Shield","orbit":2},"19750":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":444,"skill":19750,"orbitIndex":0,"name":"Armour and Evasion Mastery","orbit":0},"59636":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":59636,"stats":["25% increased Mana Regeneration Rate"],"recipe":["Guilt","Guilt","Ire"],"connections":[{"orbit":-4,"id":13769},{"orbit":0,"id":48007}],"group":505,"orbitIndex":12,"isNotable":true,"name":"Open Mind","orbit":7},"16744":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-5,"id":24009},{"orbit":0,"id":24748}],"group":423,"skill":16744,"orbitIndex":12,"name":"Evasion","orbit":3},"10830":{"stats":["18% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":59589}],"group":76,"skill":10830,"orbitIndex":2,"name":"Armour","orbit":7},"49661":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":49661,"stats":["30% increased Critical Hit Chance against Bleeding Enemies","20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"],"recipe":["Fear","Paranoia","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":776,"orbitIndex":2,"isNotable":true,"name":"Perfectly Placed Knife","orbit":1},"23508":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds","skill":23508,"stats":["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"],"ascendancyName":"Deadeye","connections":[],"group":1039,"orbitIndex":0,"isNotable":true,"name":"Thrilling Chase","orbit":0},"49537":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":197,"skill":49537,"orbitIndex":16,"name":"Speed with Elemental Skills","orbit":3},"52574":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-7,"id":55478}],"group":385,"skill":52574,"orbitIndex":21,"name":"Attack Area","orbit":7},"59710":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":52618}],"group":71,"skill":59710,"orbitIndex":6,"name":"Shapeshifting","orbit":7},"6338":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":0,"id":2254}],"group":533,"skill":6338,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"25620":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":25620,"stats":["15% chance to not destroy Corpses when Consuming Corpses"],"recipe":["Paranoia","Despair","Guilt"],"connections":[{"orbit":0,"id":9083}],"group":709,"orbitIndex":18,"isNotable":true,"name":"Meat Recycling","orbit":7},"23415":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":23415,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":9,"id":8143}],"orbitIndex":14,"name":"Evasion and Energy Shield","orbit":9},"64789":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":64789,"stats":["4% increased maximum Mana"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":8867}],"orbitIndex":68,"name":"Mana","orbit":8},"43778":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":36894}],"group":149,"skill":43778,"orbitIndex":2,"name":"Bleed Chance","orbit":3},"8852":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[],"group":63,"skill":8852,"orbitIndex":17,"name":"Life Leech and Slower Leech","orbit":2},"63732":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":8440}],"group":590,"skill":63732,"orbitIndex":1,"name":"Damage against Enemies on Low Life","orbit":1},"22713":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":19722},{"orbit":0,"id":4959},{"orbit":0,"id":19003}],"group":861,"skill":22713,"orbitIndex":6,"name":"Cold Damage","orbit":7},"64665":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":51847},{"orbit":0,"id":21274}],"group":553,"skill":64665,"orbitIndex":30,"name":"Attack Damage and Accuracy","orbit":4},"56472":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":690,"skill":56472,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"17330":{"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":17330,"stats":["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground","40% increased Jagged Ground Duration"],"recipe":["Greed","Greed","Suffering"],"connections":[{"orbit":0,"id":61927}],"group":149,"orbitIndex":23,"isNotable":true,"name":"Perforation","orbit":2},"33415":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":31763}],"group":612,"skill":33415,"orbitIndex":31,"name":"Crossbow Critical Chance","orbit":4},"13701":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":17871},{"orbit":0,"id":59538}],"group":947,"skill":13701,"orbitIndex":2,"name":"Freeze and Chill Resistance","orbit":2},"63608":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":48,"skill":63608,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"40024":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":2091}],"group":849,"skill":40024,"orbitIndex":4,"name":"Poison Chance","orbit":7},"61419":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":61419,"stats":[],"group":498,"connections":[{"orbit":0,"id":41669},{"orbit":0,"id":62677},{"orbit":0,"id":50720}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"2486":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":2486,"stats":["Damage with Hits is Lucky against Enemies that are on Low Life"],"recipe":["Suffering","Envy","Isolation"],"connections":[{"orbit":3,"id":63732},{"orbit":7,"id":19341},{"orbit":0,"id":58884}],"group":590,"orbitIndex":22,"isNotable":true,"name":"Stars Aligned","orbit":7},"45037":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":9736}],"group":618,"skill":45037,"orbitIndex":15,"name":"Armour and Evasion","orbit":7},"36782":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":1151}],"group":541,"skill":36782,"orbitIndex":12,"name":"Freeze Buildup","orbit":7},"26520":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":14340},{"orbit":0,"id":37190}],"group":592,"skill":26520,"orbitIndex":11,"name":"Life Leech","orbit":2},"60362":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":56265}],"group":1002,"skill":60362,"orbitIndex":5,"name":"Critical Damage","orbit":2},"32194":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32194,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":55933}],"orbitIndex":60,"name":"Attribute","orbit":6},"22558":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22558,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":55933}],"orbitIndex":66,"name":"Attribute","orbit":6},"54886":{"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":-4,"id":56997}],"group":254,"skill":54886,"orbitIndex":20,"name":"Two Handed Damage and Stun","orbit":7},"3704":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds","skill":3704,"stats":["Enemies have Maximum Concentration equal to 40% of their Maximum Life","Break enemy Concentration on Hit equal to 100% of Damage Dealt","Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":25172}],"group":152,"orbitIndex":36,"isNotable":true,"name":"Witchbane","orbit":5},"17625":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":-5,"id":10873}],"group":71,"skill":17625,"orbitIndex":18,"name":"Shapeshifting","orbit":7},"42522":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds","skill":42522,"stats":["40% of Elemental Damage taken Recouped as Energy Shield"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":127,"isNotable":true,"name":"Heart of the Storm","orbit":9},"58718":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":35015}],"group":438,"skill":58718,"orbitIndex":0,"name":"Bleeding Damage","orbit":0},"11311":{"stats":["+10 to Armour","+8 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":38057}],"group":527,"skill":11311,"orbitIndex":61,"name":"Armour and Evasion","orbit":5},"15617":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":15617,"stats":["30% increased Flask Effect Duration","20% increased Life Recovery from Flasks","Recover 5% of Life when you use a Life Flask while on Low Life"],"recipe":["Envy","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":313,"orbitIndex":0,"isNotable":true,"name":"Heavy Drinker","orbit":0},"8697":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[],"group":730,"skill":8697,"orbitIndex":2,"name":"Elemental Attack Damage","orbit":3},"60568":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":52348}],"group":314,"skill":60568,"orbitIndex":13,"name":"Totem Placement Speed","orbit":3},"56934":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":345,"skill":56934,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"48745":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":22558},{"orbit":-2,"id":7878}],"group":261,"skill":48745,"orbitIndex":0,"name":"Shield Block","orbit":0},"14725":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":-5,"id":49220},{"orbit":0,"id":34233}],"group":671,"skill":14725,"orbitIndex":18,"name":"Skill Speed","orbit":2},"39621":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":14176},{"orbit":0,"id":53719}],"group":161,"skill":39621,"orbitIndex":0,"name":"Slower Rage Decay","orbit":0},"2102":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":447,"skill":2102,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"18451":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[],"group":706,"skill":18451,"orbitIndex":6,"name":"Frenzy Charge Duration","orbit":2},"52765":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":761,"skill":52765,"orbitIndex":12,"name":"Mana Regeneration","orbit":2},"11505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":340,"skill":11505,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"2455":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":490,"skill":2455,"orbitIndex":11,"name":"Projectile Damage","orbit":5},"43579":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":35369}],"group":117,"skill":43579,"orbitIndex":9,"name":"Mana Mastery","orbit":1},"11257":{"stats":["30% increased Evasion Rating while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":10271},{"orbit":0,"id":54282}],"group":480,"skill":11257,"orbitIndex":11,"name":"Evasion while Surrounded","orbit":3},"2645":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":2645,"stats":["20% more Damage against Heavy Stunned Enemies with Maces"],"recipe":["Ire","Isolation","Ire"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":52829}],"group":56,"orbitIndex":69,"isNotable":true,"name":"Skullcrusher","orbit":4},"45363":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds","skill":45363,"stats":["20% increased Melee Damage","40% increased Melee Damage against Heavy Stunned enemies"],"recipe":["Envy","Envy","Ire"],"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":58528}],"group":315,"orbitIndex":23,"isNotable":true,"name":"Smash","orbit":3},"48014":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":48014,"stats":["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently","50% increased Melee Damage against Immobilised Enemies"],"recipe":["Ire","Guilt","Fear"],"connections":[],"group":101,"orbitIndex":63,"isNotable":true,"name":"Honourless","orbit":5},"29328":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":0,"id":43201}],"group":492,"skill":29328,"orbitIndex":61,"name":"Ailment Chance","orbit":4},"63731":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":244}],"group":674,"skill":63731,"orbitIndex":0,"name":"Attack Damage","orbit":0},"12367":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[],"group":448,"skill":12367,"orbitIndex":0,"name":"Chaos Damage","orbit":3},"38365":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":34626},{"orbit":0,"id":46499}],"group":99,"skill":38365,"orbitIndex":22,"name":"Recover Life on consuming Endurance Charge","orbit":2},"57388":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":57388,"stats":["20% increased Critical Hit Chance for Attacks","20% increased Critical Damage Bonus for Attack Damage","20% increased Stun Buildup with Critical Hits"],"recipe":["Despair","Envy","Disgust"],"connections":[{"orbit":0,"id":9698}],"group":113,"orbitIndex":22,"isNotable":true,"name":"Overwhelming Strike","orbit":3},"2071":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":38420}],"group":321,"skill":2071,"orbitIndex":2,"name":"Mana Regeneration","orbit":2},"37372":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":13738}],"group":643,"skill":37372,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"16168":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16168,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":-5,"id":54232},{"orbit":0,"id":25374},{"orbit":0,"id":45916}],"orbitIndex":48,"name":"Attribute","orbit":6},"46882":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":46882,"stats":[],"group":827,"connections":[],"orbitIndex":8,"name":"Jewel Socket","orbit":1},"18684":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds","skill":18684,"isKeystone":true,"stats":["75% of Damage Converted to Fire Damage","Deal no Non-Fire Damage"],"group":58,"connections":[],"orbitIndex":0,"name":"Avatar of Fire","orbit":0},"55802":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55802,"stats":["+5 to any Attribute"],"isAttribute":true,"group":569,"connections":[{"orbit":0,"id":54127},{"orbit":0,"id":3717}],"orbitIndex":0,"name":"Attribute","orbit":0},"45503":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":4,"id":37746}],"group":243,"skill":45503,"orbitIndex":0,"name":"Ignite Chance","orbit":2},"33866":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":49220}],"group":610,"skill":33866,"orbitIndex":4,"name":"Attack Damage","orbit":2},"46696":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":46696,"stats":["25% increased Damage with One Handed Weapons","Attacks have 10% chance to Maim on Hit"],"recipe":["Envy","Suffering","Disgust"],"connections":[{"orbit":0,"id":8629}],"group":226,"orbitIndex":68,"isNotable":true,"name":"Impair","orbit":4},"50392":{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":50392,"stats":["10% reduced maximum Mana","1% increased Damage per 15 Strength"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":108,"orbitIndex":0,"isNotable":true,"name":"Brute Strength","orbit":0},"57462":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":12078}],"group":912,"skill":57462,"orbitIndex":17,"name":"Projectile Speed","orbit":3},"54282":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54282,"stats":["+5 to any Attribute"],"isAttribute":true,"group":522,"connections":[{"orbit":0,"id":52125},{"orbit":2147483647,"id":11066}],"orbitIndex":0,"name":"Attribute","orbit":3},"18913":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":12419}],"group":617,"skill":18913,"orbitIndex":22,"name":"Chaos Damage and Duration","orbit":7},"62153":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":3,"id":55947}],"group":624,"skill":62153,"orbitIndex":4,"name":"Spell Critical Damage","orbit":3},"53960":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53960,"stats":["+5 to any Attribute"],"isAttribute":true,"group":666,"connections":[{"orbit":-5,"id":8975}],"orbitIndex":54,"name":"Attribute","orbit":5},"13174":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds","skill":13174,"stats":["Maximum Mana is replaced by Maximum Infernal Flame","Gain Infernal Flame instead of spending Mana for Skill costs","Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum","Lose all Infernal Flame on reaching maximum Infernal Flame","10% of Infernal Flame lost per second if none was gained in the past 2 seconds"],"ascendancyName":"Infernalist","connections":[{"orbit":4,"id":63484},{"orbit":0,"id":770}],"group":486,"orbitIndex":3,"isNotable":true,"name":"Pyromantic Pact","orbit":6},"14958":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":17548}],"group":720,"skill":14958,"orbitIndex":10,"name":"Critical Chance","orbit":1},"32951":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":32951,"stats":["25% increased Skill Effect Duration"],"recipe":["Disgust","Suffering","Ire"],"connections":[{"orbit":0,"id":39280},{"orbit":0,"id":41522}],"group":735,"orbitIndex":20,"isNotable":true,"name":"Preservation","orbit":3},"38769":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":38769,"stats":["Break 25% increased Armour"],"ascendancyName":"Warbringer","group":4,"connections":[{"orbit":0,"id":58704}],"orbitIndex":0,"name":"Armour Break","orbit":0},"34006":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":3,"id":15408}],"group":533,"skill":34006,"orbitIndex":19,"name":"Energy Shield","orbit":2},"51509":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":51509,"stats":["Recover 2% of Life when you use a Mana Flask","Mana Flasks gain 0.1 charges per Second"],"recipe":["Greed","Fear","Disgust"],"connections":[{"orbit":7,"id":35848},{"orbit":0,"id":9393}],"group":688,"orbitIndex":0,"isNotable":true,"name":"Waters of Life","orbit":0},"3995":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":12311}],"group":605,"skill":3995,"orbitIndex":15,"name":"Crossbow Reload Speed","orbit":7},"45969":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45969,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":-7,"id":28693},{"orbit":0,"id":24880}],"orbitIndex":36,"name":"Attribute","orbit":6},"1594":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":56870}],"group":771,"skill":1594,"orbitIndex":22,"name":"Flask Charges Gained","orbit":2},"43578":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":525,"skill":43578,"orbitIndex":26,"name":"Projectile Damage","orbit":4},"28361":{"stats":["20% increased Weapon Swap Speed"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":518,"skill":28361,"orbitIndex":16,"name":"Weapon Swap Speed","orbit":7},"32664":{"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","skill":32664,"stats":["20% increased Area of Effect while Unarmed","25% reduced Damage with Unarmed Attacks","20% increased Unarmed Attack Speed"],"recipe":["Fear","Suffering","Guilt"],"connections":[{"orbit":-3,"id":17724}],"group":979,"orbitIndex":5,"isNotable":true,"name":"Flurry","orbit":1},"2936":{"stats":["20% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":13407}],"group":1014,"skill":2936,"orbitIndex":10,"name":"Attack Critical Damage","orbit":7},"23738":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":23738,"stats":["Gain 6% of Physical Damage as extra Chaos Damage"],"recipe":["Ire","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34520}],"group":661,"orbitIndex":0,"isNotable":true,"name":"Madness in the Bones","orbit":0},"51707":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":51707,"stats":["30% increased Evasion Rating","8% increased Dexterity"],"recipe":["Fear","Ire","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":5,"id":38728},{"orbit":0,"id":41163}],"group":982,"orbitIndex":66,"isNotable":true,"name":"Enhanced Reflexes","orbit":5},"39886":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39886,"stats":["+5 to any Attribute"],"isAttribute":true,"group":449,"connections":[{"orbit":0,"id":56935}],"orbitIndex":0,"name":"Attribute","orbit":0},"49799":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":46224}],"group":648,"skill":49799,"orbitIndex":20,"name":"Mana Flask Recovery","orbit":2},"31805":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-3,"id":44461},{"orbit":0,"id":29041}],"group":158,"skill":31805,"orbitIndex":15,"name":"Increased Duration","orbit":3},"1755":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":31707}},"skill":1755,"stats":["8% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":18845}],"orbitIndex":17,"name":"Spell Damage","orbit":2},"30905":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":5,"id":8697},{"orbit":6,"id":34201}],"group":730,"skill":30905,"orbitIndex":21,"name":"Elemental Attack Damage","orbit":4},"1019":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":45037},{"orbit":0,"id":6230}],"group":618,"skill":1019,"orbitIndex":0,"name":"Armour and Evasion","orbit":0},"16013":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":41811}],"group":938,"skill":16013,"orbitIndex":6,"name":"Daze Buildup","orbit":7},"23416":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds","skill":23416,"stats":["10% of Spell Damage Leeched as Life"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":64,"isNotable":true,"name":"Vitality Siphon","orbit":6},"50253":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":50253,"stats":["40% increased Aftershock Area of Effect"],"recipe":["Despair","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":191,"orbitIndex":0,"isNotable":true,"name":"Aftershocks","orbit":0},"20236":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":4346}],"group":759,"skill":20236,"orbitIndex":0,"name":"Critical Chance","orbit":0},"51184":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","options":{"Witch":{"stats":["16% increased Spell Damage","Minions deal 16% increased Damage","+10 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","name":"Raw Destruction","id":5788}},"skill":51184,"stats":["20% increased Spell Damage","+10 to Intelligence"],"recipe":["Greed","Envy","Despair"],"isSwitchable":true,"connections":[{"orbit":-4,"id":41965},{"orbit":6,"id":29502},{"orbit":-4,"id":3242}],"group":474,"orbitIndex":0,"isNotable":true,"name":"Raw Power","orbit":0},"51847":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":33974}],"group":553,"skill":51847,"orbitIndex":24,"name":"Attack Damage and Accuracy","orbit":4},"53697":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53697,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":7,"id":47555},{"orbit":-3,"id":3041}],"orbitIndex":26,"name":"Attribute","orbit":5},"63267":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":65424}],"group":551,"skill":63267,"orbitIndex":3,"name":"Dual Wielding Damage","orbit":2},"64927":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":4,"id":52464},{"orbit":-4,"id":51741},{"orbit":-6,"id":54351}],"group":845,"skill":64927,"orbitIndex":18,"name":"Life on Kill","orbit":6},"27667":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds","skill":27667,"stats":["Your Curses have infinite Duration"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":8,"isNotable":true,"name":"Open Sores","orbit":6},"28625":{"stats":["15% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":5,"id":32135},{"orbit":0,"id":35848}],"group":688,"skill":28625,"orbitIndex":20,"name":"Flask Recovery","orbit":7},"63209":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":30704}],"group":369,"skill":63209,"orbitIndex":12,"name":"Life Regeneration","orbit":7},"12033":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds","skill":12033,"stats":["Skills fire an additional Projectile"],"ascendancyName":"Deadeye","connections":[],"group":1030,"orbitIndex":8,"isNotable":true,"name":"Endless Munitions","orbit":2},"54283":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":26324}],"group":272,"skill":54283,"orbitIndex":21,"name":"Armour","orbit":3},"13624":{"stats":["Mark Skills have 25% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-2,"id":28258}],"group":914,"skill":13624,"orbitIndex":23,"name":"Mark Duration","orbit":2},"25528":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":891,"skill":25528,"orbitIndex":15,"name":"Mana Mastery","orbit":3},"15408":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":4,"id":2254},{"orbit":0,"id":6338}],"group":533,"skill":15408,"orbitIndex":23,"name":"Energy Shield","orbit":2},"4061":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":27491}],"group":412,"skill":4061,"orbitIndex":36,"name":"Energy Shield","orbit":4},"32135":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":5,"id":12322},{"orbit":0,"id":16484}],"group":688,"skill":32135,"orbitIndex":0,"name":"Flask Charges Gained","orbit":4},"62350":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":846,"skill":62350,"orbitIndex":12,"name":"Attack Speed and Flask Duration","orbit":2},"52829":{"stats":["12% increased Stun Buildup","10% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":375}],"group":56,"skill":52829,"orbitIndex":63,"name":"Mace Damage and Stun Buildup","orbit":4},"6222":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":57608},{"orbit":0,"id":9037},{"orbit":0,"id":65189}],"group":107,"skill":6222,"orbitIndex":64,"name":"Shapeshifting","orbit":5},"19674":{"stats":["8% increased Attack Area Damage","5% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":41493}],"group":180,"skill":19674,"orbitIndex":2,"name":"Attack Area Damage and Area","orbit":3},"33216":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":33216,"stats":["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"],"recipe":["Disgust","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":463,"orbitIndex":10,"isNotable":true,"name":"Deep Wounds","orbit":2},"5314":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":5314,"stats":["+5 to any Attribute"],"isAttribute":true,"group":500,"connections":[{"orbit":0,"id":29009}],"orbitIndex":36,"name":"Attribute","orbit":4},"63002":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":63002,"stats":["Buffs on you expire 10% slower"],"ascendancyName":"Chronomancer","group":176,"connections":[{"orbit":0,"id":58747}],"orbitIndex":0,"name":"Buff Expiry Rate","orbit":0},"44836":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":44836,"stats":["20% increased Armour and Evasion Rating","20% increased Stun Threshold"],"recipe":["Paranoia","Greed","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"orbit":0,"id":47150}],"group":514,"orbitIndex":12,"isNotable":true,"name":"Feel no Pain","orbit":2},"21070":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57388}],"group":113,"skill":21070,"orbitIndex":20,"name":"Attack Critical Chance","orbit":7},"54811":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54811,"stats":["+5 to any Attribute"],"isAttribute":true,"group":227,"connections":[{"orbit":0,"id":13474}],"orbitIndex":0,"name":"Attribute","orbit":0},"9163":{"stats":["18% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":76,"skill":9163,"orbitIndex":8,"name":"Armour","orbit":7},"55668":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55668,"stats":["+5 to any Attribute"],"isAttribute":true,"group":704,"connections":[{"orbit":0,"id":25557},{"orbit":0,"id":47754}],"orbitIndex":0,"name":"Attribute","orbit":0},"63861":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":624,"skill":63861,"orbitIndex":0,"name":"Critical Mastery","orbit":2},"55478":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":48006},{"orbit":-3,"id":16168}],"group":385,"skill":55478,"orbitIndex":2,"name":"Attack Area","orbit":2},"1433":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1433,"stats":["+5 to any Attribute"],"isAttribute":true,"group":333,"connections":[{"orbit":0,"id":31238}],"orbitIndex":56,"name":"Attribute","orbit":6},"30615":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[],"group":977,"skill":30615,"orbitIndex":13,"name":"Critical Damage when consuming a Power Charge","orbit":2},"32813":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-7,"id":59600},{"orbit":0,"id":35809}],"group":810,"skill":32813,"orbitIndex":12,"name":"Life Flasks","orbit":2},"5702":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":5702,"stats":["+5 to any Attribute"],"isAttribute":true,"group":731,"connections":[{"orbit":-5,"id":13411}],"orbitIndex":0,"name":"Attribute","orbit":0},"31763":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":43155}],"group":612,"skill":31763,"orbitIndex":27,"name":"Crossbow Critical Chance","orbit":4},"46760":{"stats":["20% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":51534},{"orbit":0,"id":8631}],"group":331,"skill":46760,"orbitIndex":0,"name":"Critical Chance","orbit":0},"14113":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":10029},{"orbit":0,"id":8660}],"group":233,"skill":14113,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"54148":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":54148,"stats":["Damage Penetrates 15% Fire Resistance","15% increased Duration of Damaging Ailments on Enemies"],"recipe":["Isolation","Envy","Fear"],"connections":[{"orbit":0,"id":52746},{"orbit":0,"id":56934}],"group":345,"orbitIndex":6,"isNotable":true,"name":"Smoke Inhalation","orbit":2},"62341":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":7,"id":52836}],"group":655,"skill":62341,"orbitIndex":67,"name":"Block","orbit":4},"40803":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":40803,"stats":["30% increased Damage with Hits against Chilled Enemies"],"recipe":["Suffering","Disgust","Guilt"],"connections":[{"orbit":0,"id":3218},{"orbit":0,"id":44298}],"group":131,"orbitIndex":21,"isNotable":true,"name":"Sigil of Ice","orbit":4},"53958":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":2,"id":51006}],"group":887,"skill":53958,"orbitIndex":23,"name":"Mana Flask Recovery","orbit":3},"14082":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":43964}],"group":805,"skill":14082,"orbitIndex":11,"name":"Physical Damage","orbit":7},"44373":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":44373,"stats":["Unwithered enemies are Withered for 8 seconds when they enter your Presence","20% increased Effect of Withered"],"recipe":["Guilt","Guilt","Isolation"],"connections":[],"group":897,"orbitIndex":0,"isNotable":true,"name":"Wither Away","orbit":0},"50720":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":43557},{"orbit":-3,"id":11376},{"orbit":3,"id":34199},{"orbit":3,"id":30523}],"group":485,"skill":50720,"orbitIndex":0,"name":"Minion Damage","orbit":3},"6416":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":51821}],"group":163,"skill":6416,"orbitIndex":20,"name":"Armour and Energy Shield","orbit":2},"54288":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":21568}],"group":169,"skill":54288,"orbitIndex":20,"name":"Life Recoup","orbit":7},"56999":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":56999,"stats":["15% increased Critical Hit Chance for Attacks","15% increased Accuracy Rating"],"recipe":["Despair","Disgust","Envy"],"connections":[],"group":660,"orbitIndex":0,"isNotable":true,"name":"Locked On","orbit":0},"16347":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":52373}],"group":212,"skill":16347,"orbitIndex":2,"name":"Maximum Rage","orbit":2},"35265":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35265,"stats":["+5 to any Attribute"],"isAttribute":true,"group":317,"connections":[{"orbit":0,"id":31903},{"orbit":0,"id":48589},{"orbit":0,"id":18374},{"orbit":0,"id":6274}],"orbitIndex":0,"name":"Attribute","orbit":0},"54676":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":39759},{"orbit":0,"id":37612}],"group":337,"skill":54676,"orbitIndex":11,"name":"Life Regeneration","orbit":2},"3999":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":37665}],"group":430,"skill":3999,"orbitIndex":15,"name":"Area Damage","orbit":4},"48267":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":64,"skill":48267,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"25618":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":25618,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":38578}],"orbitIndex":18,"name":"Spell Critical Chance","orbit":8},"7246":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":7246,"stats":["4% increased maximum Mana"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":39204}],"orbitIndex":54,"name":"Mana","orbit":8},"9458":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":658,"skill":9458,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"56336":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":21208}],"group":859,"skill":56336,"orbitIndex":20,"name":"Curse Activation Speed and Effect","orbit":7},"9908":{"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":9908,"stats":["10% reduced Mana Cost of Attacks","18% of Skill Mana Costs Converted to Life Costs"],"recipe":["Envy","Fear","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":210,"orbitIndex":8,"isNotable":true,"name":"Price of Freedom","orbit":2},"23382":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23382,"stats":["+5 to any Attribute"],"isAttribute":true,"group":174,"connections":[{"orbit":0,"id":59093},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"64851":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":64851,"stats":["12% increased Block chance","40% increased Defences from Equipped Shield"],"recipe":["Greed","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[{"orbit":0,"id":39658}],"group":722,"orbitIndex":0,"isNotable":true,"name":"Flashy Deflection","orbit":0},"4748":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":48235}},"skill":4748,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":539,"connections":[{"orbit":6,"id":2254}],"orbitIndex":6,"name":"Energy Shield Delay","orbit":3},"40276":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32745},{"orbit":0,"id":60241}],"group":291,"skill":40276,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"28492":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds","skill":28492,"isKeystone":true,"stats":["Converts all Evasion Rating to Armour"],"group":461,"connections":[{"orbit":0,"id":54099}],"orbitIndex":0,"name":"Iron Reflexes","orbit":0},"16401":{"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44490}],"group":928,"skill":16401,"orbitIndex":0,"name":"Lightning Damage and Electrocute Buildup","orbit":0},"17394":{"stats":["15% increased Minion Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-3,"id":45530}],"group":609,"skill":17394,"orbitIndex":0,"name":"Minion Accuracy","orbit":7},"26518":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":26518,"stats":["25% increased Cold Damage","15% increased Chill Duration on Enemies"],"recipe":["Envy","Fear","Guilt"],"connections":[],"group":131,"orbitIndex":5,"isNotable":true,"name":"Cold Nature","orbit":4},"35855":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":35855,"stats":["20% increased amount of Life Leeched","40% increased Armour and Evasion Rating while Leeching"],"recipe":["Greed","Paranoia","Fear"],"connections":[{"orbit":0,"id":48583},{"orbit":0,"id":35859}],"group":592,"orbitIndex":3,"isNotable":true,"name":"Fortifying Blood","orbit":2},"46561":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":635,"skill":46561,"orbitIndex":6,"name":"Recovery Mastery","orbit":2},"4203":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4203,"stats":["+5 to any Attribute"],"isAttribute":true,"group":600,"connections":[{"orbit":4,"id":30555},{"orbit":-4,"id":42736},{"orbit":-4,"id":59603},{"orbit":0,"id":49046},{"orbit":3,"id":42076}],"orbitIndex":0,"name":"Attribute","orbit":0},"38694":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":22188}],"group":574,"skill":38694,"orbitIndex":8,"name":"Herald Damage","orbit":7},"11855":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":30829}],"group":660,"skill":11855,"orbitIndex":16,"name":"Accuracy","orbit":2},"46887":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-6,"id":43720},{"orbit":0,"id":38463}],"group":868,"skill":46887,"orbitIndex":12,"name":"Mana Leech","orbit":3},"32258":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":19644}],"group":282,"skill":32258,"orbitIndex":8,"name":"Minion Life","orbit":3},"55933":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55933,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":60886}],"orbitIndex":48,"name":"Attribute","orbit":6},"47614":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":22219}],"group":953,"skill":47614,"orbitIndex":22,"name":"Triggered Spell Damage","orbit":2},"51248":{"stats":["10% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":38292},{"orbit":4,"id":6015}],"group":327,"skill":51248,"orbitIndex":9,"name":"Fire Damage","orbit":2},"4492":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":509,"skill":4492,"orbitIndex":0,"name":"Attributes Mastery","orbit":0},"24825":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24825,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":-3,"id":16460},{"orbit":-3,"id":29479},{"orbit":-3,"id":60738}],"orbitIndex":10,"name":"Attribute","orbit":3},"9528":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-4,"id":62200}],"group":93,"skill":9528,"orbitIndex":15,"name":"Warcry Cooldown Speed","orbit":3},"17724":{"stats":["15% increased Area of Effect while Unarmed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[],"group":971,"skill":17724,"orbitIndex":0,"name":"Unarmed Area","orbit":0},"45227":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42111}],"group":97,"skill":45227,"orbitIndex":1,"name":"Armour Break","orbit":3},"43443":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":32148},{"orbit":0,"id":49370},{"orbit":0,"id":8535}],"group":41,"skill":43443,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"36507":{"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","skill":36507,"stats":["Minions have 20% increased maximum Life","Minions Regenerate 3% of Life per second","Minions have +13% to Chaos Resistance"],"recipe":["Greed","Fear","Fear"],"connections":[{"orbit":0,"id":60313}],"group":448,"orbitIndex":4,"isNotable":true,"name":"Vile Mending","orbit":2},"42914":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":42914,"stats":["15% increased Damage with Flails","6% increased Attack Speed with Flails"],"recipe":["Greed","Guilt","Suffering"],"connections":[{"orbit":0,"id":33393},{"orbit":0,"id":50847}],"group":50,"orbitIndex":60,"isNotable":true,"name":"Ball and Chain","orbit":4},"4847":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":6294}],"group":393,"skill":4847,"orbitIndex":66,"name":"Cast Speed","orbit":5},"15618":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":57710}],"group":504,"skill":15618,"orbitIndex":0,"name":"Spell Critical Damage","orbit":3},"51446":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":51446,"stats":["+1 to Evasion Rating per 1 Armour on Equipped Gloves"],"recipe":["Greed","Suffering","Ire"],"connections":[{"orbit":-7,"id":53647},{"orbit":0,"id":19750}],"group":444,"orbitIndex":16,"isNotable":true,"name":"Leather Bound Gauntlets","orbit":3},"6230":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":6230,"stats":[],"group":606,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":3995},{"orbit":0,"id":18115}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"33404":{"icon":"Art/2DArt/SkillIcons/passives/EternalYouth.dds","skill":33404,"isKeystone":true,"stats":["Life Recharges instead of Energy Shield","Life Recovery from Flasks applies to Energy Shield instead"],"group":910,"connections":[{"orbit":0,"id":57821}],"orbitIndex":0,"name":"Eternal Youth","orbit":0},"12430":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17584}],"group":406,"skill":12430,"orbitIndex":13,"name":"Melee Damage","orbit":2},"17600":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":17600,"stats":["Minions deal 25% increased Damage"],"recipe":["Ire","Greed","Suffering"],"connections":[{"orbit":0,"id":54849},{"orbit":3,"id":18519}],"group":279,"orbitIndex":18,"isNotable":true,"name":"Resourceful Ally","orbit":3},"4624":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":3,"id":49550}],"group":330,"skill":4624,"orbitIndex":7,"name":"Rage on Hit","orbit":7},"52703":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds","skill":52703,"stats":["1% increased Critical Damage Bonus per 40 Life"],"ascendancyName":"Blood Mage","connections":[{"orbit":8,"id":48551}],"group":647,"orbitIndex":59,"isNotable":true,"name":"Gore Spike","orbit":8},"8349":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":31644}],"group":447,"skill":8349,"orbitIndex":19,"name":"Energy Shield Recharge","orbit":2},"53560":{"stats":["20% chance for Lightning Skills to Chain an additional time"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":46157}],"group":669,"skill":53560,"orbitIndex":0,"name":"Lightning Skill Chain Chance","orbit":0},"36709":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":408,"skill":36709,"orbitIndex":6,"name":"Stun Threshold","orbit":7},"64726":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":46296},{"orbit":0,"id":38479}],"group":613,"skill":64726,"orbitIndex":8,"name":"Projectile Mastery","orbit":2},"5227":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":5227,"stats":["100% increased Evasion Rating if you have been Hit Recently","30% reduced Evasion Rating if you haven't been Hit Recently"],"recipe":["Despair","Paranoia","Despair"],"connections":[{"orbit":0,"id":51708}],"group":750,"orbitIndex":20,"isNotable":true,"name":"Escape Strategy","orbit":3},"38493":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":55621}],"group":1014,"skill":38493,"orbitIndex":63,"name":"Critical Damage","orbit":4},"10552":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":703},{"orbit":3,"id":18895}],"group":663,"skill":10552,"orbitIndex":8,"name":"Stun Threshold from Energy Shield","orbit":7},"23305":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":21279},{"orbit":0,"id":51602}],"group":936,"skill":23305,"orbitIndex":4,"name":"Mark Cast Speed","orbit":2},"45693":{"stats":["30% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":722,"skill":45693,"orbitIndex":10,"name":"Shield Defences","orbit":2},"51974":{"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"orbit":0,"id":25711}],"group":480,"skill":51974,"orbitIndex":0,"name":"Fortify Mastery","orbit":0},"45631":{"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":3630}],"group":905,"skill":45631,"orbitIndex":14,"name":"Evasion and Energy Shield Recharge","orbit":7},"45569":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":55596}],"group":168,"skill":45569,"orbitIndex":14,"name":"Spell Critical Damage","orbit":2},"5710":{"icon":"Art/2DArt/SkillIcons/passives/strongarm.dds","skill":5710,"stats":["10% increased Stun Buildup","16% increased Melee Damage","+10 to Strength"],"recipe":["Despair","Despair","Envy"],"connections":[{"orbit":-3,"id":6839},{"orbit":0,"id":38323},{"orbit":0,"id":14923},{"orbit":-4,"id":6529}],"group":394,"orbitIndex":51,"isNotable":true,"name":"Brutal","orbit":4},"10265":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":10265,"stats":["25% increased Damage with Spears"],"recipe":["Greed","Despair","Disgust"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":48,"isNotable":true,"name":"Javelin","orbit":6},"18186":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":13942}],"group":423,"skill":18186,"orbitIndex":0,"name":"Armour","orbit":3},"25031":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":166,"skill":25031,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"24240":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":24240,"stats":["Debuffs you inflict have 10% increased Slow Magnitude","Debuffs on you expire 20% faster"],"recipe":["Fear","Despair","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"orbit":-7,"id":11764}],"group":837,"orbitIndex":0,"isNotable":true,"name":"Time Manipulation","orbit":0},"62603":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":3,"id":19715}],"group":445,"skill":62603,"orbitIndex":20,"name":"Fire Penetration","orbit":3},"10909":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10909,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[{"orbit":6,"id":16489},{"orbit":3,"id":33053}],"orbitIndex":8,"name":"Attribute","orbit":3},"2847":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2847,"stats":["+5 to any Attribute"],"isAttribute":true,"group":521,"connections":[{"orbit":0,"id":54282},{"orbit":0,"id":15182},{"orbit":0,"id":56978}],"orbitIndex":0,"name":"Attribute","orbit":0},"35453":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":35453,"stats":["Slam Skills have 12% increased Area of Effect"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":42275}],"orbitIndex":52,"name":"Slam Area of Effect","orbit":5},"63470":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":-3,"id":9908}],"group":238,"skill":63470,"orbitIndex":14,"name":"Life Costs","orbit":3},"24438":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":24438,"stats":["Totems gain +20% to all Elemental Resistances","Totems have 20% additional Physical Damage Reduction"],"recipe":["Despair","Greed","Despair"],"connections":[{"orbit":0,"id":46748},{"orbit":0,"id":17745}],"group":270,"orbitIndex":0,"isNotable":true,"name":"Hardened Wood","orbit":0},"28797":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":632}],"group":1011,"skill":28797,"orbitIndex":65,"name":"Dagger Speed","orbit":6},"38292":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":33397}],"group":327,"skill":38292,"orbitIndex":15,"name":"Ignite Chance","orbit":2},"26319":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-7,"id":30990}],"group":602,"skill":26319,"orbitIndex":0,"name":"Critical Chance","orbit":2},"51048":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51048,"stats":["+5 to any Attribute"],"isAttribute":true,"group":729,"connections":[{"orbit":0,"id":17702},{"orbit":0,"id":58814},{"orbit":0,"id":33946}],"orbitIndex":0,"name":"Attribute","orbit":0},"25229":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":21390}],"group":153,"skill":25229,"orbitIndex":20,"name":"Endurance Charge Duration","orbit":2},"6127":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds","skill":6127,"stats":["Gain a stack of Jade every second","Grants Skill: Encase in Jade"],"ascendancyName":"Warbringer","connections":[],"group":6,"orbitIndex":0,"isNotable":true,"name":"Jade Heritage","orbit":0},"47150":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-5,"id":56910}],"group":514,"skill":47150,"orbitIndex":16,"name":"Armour and Evasion","orbit":2},"7960":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":7960,"stats":[],"group":208,"connections":[],"orbitIndex":2,"name":"Jewel Socket","orbit":1},"45304":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-4,"id":6078}],"group":958,"skill":45304,"orbitIndex":18,"name":"Poison Duration","orbit":3},"53030":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":53030,"stats":["25% increased Magnitude of Ignite you inflict","+10 to Strength"],"recipe":["Ire","Despair","Disgust"],"connections":[{"orbit":0,"id":11525},{"orbit":0,"id":48267}],"group":64,"orbitIndex":5,"isNotable":true,"name":"Immolation","orbit":2},"37113":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":43090}],"group":932,"skill":37113,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"13307":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":381,"skill":13307,"orbitIndex":25,"name":"Stun Threshold from Energy Shield","orbit":4},"39347":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":39347,"stats":["30% increased Stun Buildup","15% increased Area of Effect if you have Stunned an Enemy Recently"],"recipe":["Disgust","Disgust","Disgust"],"connections":[],"group":101,"orbitIndex":21,"isNotable":true,"name":"Breaking Blows","orbit":3},"49388":{"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":37304},{"orbit":-7,"id":38215},{"orbit":7,"id":4806}],"group":898,"skill":49388,"orbitIndex":19,"name":"Elemental","orbit":2},"49198":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":3,"id":49023}],"group":172,"skill":49198,"orbitIndex":22,"name":"Shield Block","orbit":7},"60620":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":45992}],"group":215,"skill":60620,"orbitIndex":4,"name":"Strength","orbit":7},"16499":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":16499,"stats":["40% increased Curse Duration","10% increased Effect of your Curses"],"recipe":["Isolation","Despair","Envy"],"connections":[{"orbit":0,"id":36814}],"group":567,"orbitIndex":12,"isNotable":true,"name":"Lingering Whispers","orbit":7},"1468":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":519,"skill":1468,"orbitIndex":6,"name":"Mana Regeneration","orbit":2},"55931":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":62313}],"group":67,"skill":55931,"orbitIndex":18,"name":"Maximum Fire Resistance","orbit":3},"55807":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":21429}},"skill":55807,"stats":["10% increased Mana Regeneration Rate"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":6686}],"orbitIndex":5,"name":"Mana Regeneration","orbit":2},"56928":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":7,"id":62350}],"group":846,"skill":56928,"orbitIndex":15,"name":"Attack Speed and Flask Duration","orbit":3},"44498":{"stats":["10% increased Cold Exposure Effect","10% increased Fire Exposure Effect","10% increased Lightning Exposure Effect"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-5,"id":22439},{"orbit":0,"id":38068}],"group":466,"skill":44498,"orbitIndex":20,"name":"Exposure Effect","orbit":3},"64064":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[],"group":902,"skill":64064,"orbitIndex":0,"name":"Accuracy","orbit":0},"37641":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":163,"skill":37641,"orbitIndex":0,"name":"Armour and Energy Shield Mastery","orbit":0},"30539":{"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":25620}],"group":709,"skill":30539,"orbitIndex":22,"name":"Corpses","orbit":7},"3041":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3041,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-4,"id":59795},{"orbit":0,"id":858},{"orbit":6,"id":19240}],"orbitIndex":10,"name":"Attribute","orbit":3},"14548":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":7,"id":59541}],"group":630,"skill":14548,"orbitIndex":0,"name":"Minion Life","orbit":7},"54675":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":58814}],"group":639,"skill":54675,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"53294":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":53294,"stats":["15% increased Fire Damage","Damage Penetrates 10% Fire Resistance","10% increased Magnitude of Ignite you inflict"],"recipe":["Fear","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"orbit":0,"id":33397}],"group":327,"orbitIndex":0,"isNotable":true,"name":"Burn Away","orbit":0},"58109":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58109,"stats":["+5 to any Attribute"],"isAttribute":true,"group":559,"connections":[{"orbit":0,"id":14340}],"orbitIndex":0,"name":"Attribute","orbit":0},"42916":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":11030}],"group":163,"skill":42916,"orbitIndex":4,"name":"Energy Shield Delay","orbit":3},"43383":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":43383,"stats":["15% increased chance to inflict Ailments","Break 30% increased Armour on enemies affected by Ailments"],"recipe":["Envy","Paranoia","Greed"],"connections":[{"orbit":0,"id":62588},{"orbit":0,"id":37450}],"group":492,"orbitIndex":51,"isNotable":true,"name":"Exposed Wounds","orbit":4},"22949":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":35171},{"orbit":0,"id":41263}],"group":233,"skill":22949,"orbitIndex":18,"name":"Spell Area of Effect","orbit":3},"63659":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":63659,"stats":["25% increased Critical Hit Chance with Traps"],"recipe":["Disgust","Guilt","Despair"],"connections":[{"orbit":0,"id":33964},{"orbit":0,"id":37616}],"group":974,"orbitIndex":45,"isNotable":true,"name":"Clever Construction","orbit":4},"29358":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-7,"id":917}],"group":69,"skill":29358,"orbitIndex":7,"name":"Stun Buildup","orbit":2},"31175":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":31175,"stats":["Minions have 40% increased Critical Damage Bonus"],"recipe":["Isolation","Despair","Ire"],"connections":[{"orbit":0,"id":20119}],"group":419,"orbitIndex":22,"isNotable":true,"name":"Grip of Evil","orbit":2},"2211":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":7,"id":7473}],"group":334,"skill":2211,"orbitIndex":19,"name":"Herald Damage","orbit":7},"55342":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55342,"stats":["+5 to any Attribute"],"isAttribute":true,"group":610,"connections":[{"orbit":-5,"id":17248}],"orbitIndex":60,"name":"Attribute","orbit":5},"46748":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":5,"id":51206},{"orbit":-5,"id":60568}],"group":287,"skill":46748,"orbitIndex":0,"name":"Totem Life","orbit":0},"12166":{"stats":["3% increased Cast Speed with Cold Skills"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":861,"skill":12166,"orbitIndex":22,"name":"Cast Speed with Cold Skills","orbit":7},"7741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":42500}],"orbitIndex":5,"name":"Attribute","orbit":6},"26905":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":8821}],"group":575,"skill":26905,"orbitIndex":2,"name":"Lightning Damage","orbit":3},"40341":{"stats":["3% increased Movement Speed if you've Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":-3,"id":17340},{"orbit":9,"id":21274}],"group":531,"skill":40341,"orbitIndex":6,"name":"Movement Speed","orbit":3},"8092":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":6,"id":44605},{"orbit":0,"id":59028}],"group":525,"skill":8092,"orbitIndex":11,"name":"Projectile Damage","orbit":4},"42127":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":4456},{"orbit":0,"id":41573}],"group":464,"skill":42127,"orbitIndex":10,"name":"Fire Penetration","orbit":2},"9164":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":25513}],"group":481,"skill":9164,"orbitIndex":45,"name":"Two Handed Damage","orbit":5},"60685":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":60685,"stats":["+5 to any Attribute"],"isAttribute":true,"group":564,"connections":[{"orbit":0,"id":1826}],"orbitIndex":0,"name":"Attribute","orbit":0},"62015":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":204,"skill":62015,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"53822":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[],"group":57,"skill":53822,"orbitIndex":14,"name":"Rage when Hit","orbit":7},"8272":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds","skill":8272,"stats":["20 Passive Skill Points become Weapon Set Skill Points"],"ascendancyName":"Witchhunter","connections":[],"group":103,"orbitIndex":0,"isNotable":true,"name":"Weapon Master","orbit":0},"1214":{"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":53823}],"group":80,"skill":1214,"orbitIndex":1,"name":"Block and Shield Defences","orbit":3},"34058":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34058,"stats":["+5 to any Attribute"],"isAttribute":true,"group":439,"connections":[{"orbit":-6,"id":59376},{"orbit":0,"id":4456}],"orbitIndex":0,"name":"Attribute","orbit":0},"23570":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23570,"stats":["+5 to any Attribute"],"isAttribute":true,"group":408,"connections":[{"orbit":0,"id":41031}],"orbitIndex":18,"name":"Attribute","orbit":4},"23667":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":25312}],"group":177,"skill":23667,"orbitIndex":40,"name":"Totem Life","orbit":5},"6655":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":6655,"stats":["10% chance to Aggravate Bleeding on targets you Hit with Attacks"],"recipe":["Despair","Suffering","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":431,"orbitIndex":14,"isNotable":true,"name":"Aggravation","orbit":2},"44563":{"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":59053}],"group":739,"skill":44563,"orbitIndex":0,"name":"Slow Effect and Hinder Duration","orbit":0},"5049":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":49231},{"orbit":7,"id":42177}],"group":389,"skill":5049,"orbitIndex":14,"name":"Attack Speed and Dexterity","orbit":7},"62609":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":62609,"stats":["Totems have 4% increased Attack Speed per Summoned Totem"],"recipe":["Suffering","Fear","Envy"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16051}],"group":177,"orbitIndex":6,"isNotable":true,"name":"Ancestral Unity","orbit":7},"54416":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":60274}],"group":66,"skill":54416,"orbitIndex":12,"name":"Armour","orbit":7},"36634":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":36634,"stats":[],"group":410,"connections":[{"orbit":0,"id":13279},{"orbit":0,"id":54818},{"orbit":0,"id":21468},{"orbit":0,"id":33369}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"43444":{"stats":["8% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[],"group":517,"skill":43444,"orbitIndex":8,"name":"Knockback","orbit":7},"1823":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":1823,"stats":["20% increased Light Radius","70% increased Energy Shield from Equipped Helmet"],"recipe":["Suffering","Paranoia","Suffering"],"connections":[],"group":412,"orbitIndex":60,"isNotable":true,"name":"Illuminated Crown","orbit":4},"48007":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":36302}],"group":505,"skill":48007,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"39752":{"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":5936},{"orbit":0,"id":38068}],"group":466,"skill":39752,"orbitIndex":48,"name":"Elemental Ailment Duration","orbit":4},"42981":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":42981,"stats":["Break 40% increased Armour","25% increased Physical Damage"],"recipe":["Suffering","Envy","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":418,"orbitIndex":0,"isNotable":true,"name":"Cruel Methods","orbit":0},"32727":{"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[],"group":426,"skill":32727,"orbitIndex":21,"name":"Armour Break","orbit":2},"44765":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":44765,"stats":["10% increased Cooldown Recovery Rate","Enemies in your Presence have 10% reduced Cooldown Recovery Rate"],"recipe":["Envy","Guilt","Suffering"],"connections":[{"orbit":0,"id":32233}],"group":545,"orbitIndex":21,"isNotable":true,"name":"Distracting Presence","orbit":3},"42857":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":3,"id":20024},{"orbit":0,"id":7576}],"group":610,"skill":42857,"orbitIndex":16,"name":"Skill Speed","orbit":7},"19044":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":19044,"stats":["3% increased Spell Damage per 100 maximum Mana"],"recipe":["Disgust","Fear","Despair"],"connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":0,"isNotable":true,"name":"Arcane Intensity","orbit":1},"58182":{"stats":["Gain 3 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":-5,"id":49220}],"group":681,"skill":58182,"orbitIndex":22,"name":"Life on Kill","orbit":3},"33345":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":61923},{"orbit":0,"id":10131}],"group":680,"skill":33345,"orbitIndex":14,"name":"Mana Regeneration","orbit":4},"42250":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42250,"stats":["+5 to any Attribute"],"isAttribute":true,"group":689,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":16484},{"orbit":0,"id":44014}],"orbitIndex":0,"name":"Attribute","orbit":0},"30117":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":30117,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Blood Mage","group":598,"connections":[{"orbit":5,"id":52703},{"orbit":-5,"id":8415}],"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"22147":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":22147,"stats":[],"ascendancyName":"Chronomancer","isAscendancyStart":true,"group":200,"connections":[{"orbit":0,"id":18678},{"orbit":0,"id":50219},{"orbit":0,"id":1579},{"orbit":-4,"id":27990},{"orbit":4,"id":43128}],"orbitIndex":0,"name":"Chronomancer","orbit":9},"53094":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":38703},{"orbit":0,"id":51048}],"group":747,"skill":53094,"orbitIndex":22,"name":"Accuracy","orbit":7},"8629":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":222,"skill":8629,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"28556":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28556,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[],"orbitIndex":12,"name":"Attribute","orbit":3},"39411":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds","skill":39411,"stats":["Trigger Ancestral Spirits when you Summon a Totem","Grants Skill: Ancestral Spirits"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":48682}],"group":13,"orbitIndex":0,"isNotable":true,"name":"Answered Call","orbit":0},"10320":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":14548}],"group":630,"skill":10320,"orbitIndex":18,"name":"Minion Defences","orbit":7},"6626":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":4,"id":46475}],"group":423,"skill":6626,"orbitIndex":21,"name":"Armour and Evasion","orbit":2},"60230":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":19602}},"skill":60230,"stats":["8% increased Elemental Damage"],"isSwitchable":true,"group":475,"connections":[{"orbit":0,"id":56935},{"orbit":-6,"id":51335}],"orbitIndex":0,"name":"Elemental Damage","orbit":5},"44298":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":46024}],"group":140,"skill":44298,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"45632":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":45632,"stats":["10% increased Mana Regeneration Rate","6% of Damage taken Recouped as Mana"],"recipe":["Fear","Ire","Paranoia"],"connections":[{"orbit":0,"id":24551}],"group":147,"orbitIndex":17,"isNotable":true,"name":"Mind Eraser","orbit":7},"5817":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds","skill":5817,"stats":["3% less Damage taken per Tailwind"],"ascendancyName":"Deadeye","connections":[],"group":1029,"orbitIndex":0,"isNotable":true,"name":"Wind Ward","orbit":0},"53823":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":53823,"stats":["50% increased Defences from Equipped Shield","25% increased Chance to Block if you've Blocked with Active Block Recently"],"recipe":["Ire","Despair","Guilt"],"connections":[],"group":80,"orbitIndex":4,"isNotable":true,"name":"Towering Shield","orbit":3},"30910":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":28175},{"orbit":-7,"id":59647}],"group":279,"skill":30910,"orbitIndex":6,"name":"Minion Damage","orbit":1},"10072":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":10072,"stats":["6% increased Block chance"],"ascendancyName":"Warbringer","group":19,"connections":[{"orbit":-2,"id":52068}],"orbitIndex":0,"name":"Block Chance","orbit":0},"42390":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":42390,"stats":["Hits that Heavy Stun inflict Fire Exposure"],"recipe":["Disgust","Suffering","Guilt"],"connections":[{"orbit":3,"id":11433},{"orbit":0,"id":63608}],"group":48,"orbitIndex":4,"isNotable":true,"name":"Overheating Blow","orbit":4},"56926":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":630,"skill":56926,"orbitIndex":3,"name":"Minion Defence Mastery","orbit":2},"55995":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":41873}],"group":1000,"skill":55995,"orbitIndex":4,"name":"Frenzy Charge Duration","orbit":2},"24129":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":831,"skill":24129,"orbitIndex":0,"name":"Critical Mastery","orbit":1},"22314":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":53140}},"skill":22314,"stats":["8% increased Elemental Damage"],"isSwitchable":true,"group":473,"connections":[{"orbit":0,"id":51184},{"orbit":5,"id":51968}],"orbitIndex":0,"name":"Elemental Damage","orbit":0},"56061":{"stats":["14% increased Damage with Hits against Burning Enemies"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":243,"skill":56061,"orbitIndex":12,"name":"Damage against Burning Enemies","orbit":2},"62732":{"icon":"Art/2DArt/SkillIcons/passives/Hearty.dds","skill":62732,"stats":["25% increased Stun Threshold","20% increased Life Regeneration Rate while moving"],"recipe":["Ire","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":64192},{"orbit":0,"id":49391}],"group":354,"orbitIndex":9,"isNotable":true,"name":"Titan's Determination","orbit":3},"62542":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":7,"id":16329},{"orbit":0,"id":57821}],"group":916,"skill":62542,"orbitIndex":4,"name":"Flask Charges Gained","orbit":3},"24922":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24922,"stats":["+5 to any Attribute"],"isAttribute":true,"group":763,"connections":[{"orbit":0,"id":18923}],"orbitIndex":0,"name":"Attribute","orbit":0},"43183":{"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":11153}],"group":389,"skill":43183,"orbitIndex":2,"name":"Attack Speed and Accuracy","orbit":7},"57190":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":57190,"stats":["Herald Skills have 30% increased Area of Effect","Herald Skills deal 30% increased Damage"],"recipe":["Paranoia","Guilt","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":27859}],"group":574,"orbitIndex":6,"isNotable":true,"name":"Doomsayer","orbit":1},"26739":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":43893}],"group":197,"skill":26739,"orbitIndex":8,"name":"Elemental Damage","orbit":3},"10677":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":56638}],"group":677,"skill":10677,"orbitIndex":20,"name":"Stun Threshold if not Stunned recently","orbit":2},"59767":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":59767,"stats":["Break 25% increased Armour","16% increased Area of Effect for Attacks"],"recipe":["Envy","Paranoia","Despair"],"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":20645}],"group":315,"orbitIndex":11,"isNotable":true,"name":"Reverberating Impact","orbit":3},"48006":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":48006,"stats":["15% increased Attack Area Damage","15% increased Area of Effect for Attacks"],"recipe":["Ire","Ire","Despair"],"connections":[{"orbit":0,"id":33604}],"group":385,"orbitIndex":9,"isNotable":true,"name":"Devastation","orbit":7},"59362":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59362,"stats":["+5 to any Attribute"],"isAttribute":true,"group":501,"connections":[{"orbit":0,"id":3025},{"orbit":0,"id":5314},{"orbit":0,"id":46819}],"orbitIndex":0,"name":"Attribute","orbit":0},"4157":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","connections":[{"orbit":-6,"id":49220}],"group":665,"skill":4157,"orbitIndex":18,"name":"Critical Chance","orbit":7},"29514":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":29514,"stats":["50% increased Grenade fuse duration","Grenade Skills Fire an additional Projectile"],"recipe":["Suffering","Isolation","Disgust"],"connections":[{"orbit":0,"id":39431}],"group":469,"orbitIndex":3,"isNotable":true,"name":"Cluster Bombs","orbit":3},"34199":{"stats":["Minions have 15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":485,"skill":34199,"orbitIndex":58,"name":"Minion Critical Damage","orbit":4},"18548":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":28992}],"group":620,"skill":18548,"orbitIndex":8,"name":"Attack Speed","orbit":7},"31364":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":31364,"stats":["25% increased Charm Effect Duration","25% increased Charm Charges gained"],"recipe":["Guilt","Greed","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":819,"orbitIndex":0,"isNotable":true,"name":"Primal Protection","orbit":0},"12462":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":64299}],"group":342,"skill":12462,"orbitIndex":20,"name":"Aura Effect","orbit":3},"16100":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":16100,"stats":["20% increased Evasion Rating"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":7,"id":65173}],"orbitIndex":0,"name":"Evasion","orbit":8},"48658":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":48658,"stats":["25% increased Freeze Buildup","15% increased Chill Duration on Enemies","15% increased Magnitude of Chill you inflict"],"recipe":["Greed","Fear","Despair"],"connections":[],"group":745,"orbitIndex":0,"isNotable":true,"name":"Shattering","orbit":0},"49189":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds","skill":49189,"stats":["Exposure you inflict lowers the affected Resistance by an additional 20%"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":17,"isNotable":true,"name":"Scouring Winds","orbit":9},"43711":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":43711,"stats":["+5% to Thorns Critical Hit Chance"],"recipe":["Ire","Greed","Fear"],"connections":[],"group":171,"orbitIndex":18,"isNotable":true,"name":"Thornhide","orbit":2},"6502":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":39,"skill":6502,"orbitIndex":0,"name":"Flail Mastery","orbit":0},"36170":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-3,"id":53853},{"orbit":-4,"id":7628}],"group":428,"skill":36170,"orbitIndex":13,"name":"Armour and Evasion","orbit":2},"18746":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[],"group":59,"skill":18746,"orbitIndex":0,"name":"Shield Block","orbit":0},"14890":{"stats":["10% increased Chill Duration on Enemies","10% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":21080}],"group":745,"skill":14890,"orbitIndex":13,"name":"Chill Effect and Duration","orbit":2},"13075":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":50392}],"group":123,"skill":13075,"orbitIndex":0,"name":"Strength and Reduced Mana","orbit":0},"38497":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-5,"id":62803}],"group":915,"skill":38497,"orbitIndex":19,"name":"Charm Charges Used","orbit":7},"63863":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[],"group":580,"skill":63863,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"15782":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15782,"stats":["+5 to any Attribute"],"isAttribute":true,"group":256,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":46628}],"orbitIndex":0,"name":"Attribute","orbit":0},"1953":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":23905}],"group":820,"skill":1953,"orbitIndex":0,"name":"Shock Effect","orbit":0},"5726":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":475,"skill":5726,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"52556":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-7,"id":16347},{"orbit":0,"id":28304}],"group":212,"skill":52556,"orbitIndex":8,"name":"Maximum Rage","orbit":2},"41522":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":735,"skill":41522,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"12120":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-7,"id":51606}],"group":850,"skill":12120,"orbitIndex":18,"name":"Evasion","orbit":3},"47931":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47931,"stats":["+5 to any Attribute"],"isAttribute":true,"group":141,"connections":[{"orbit":0,"id":11741},{"orbit":0,"id":39710}],"orbitIndex":0,"name":"Attribute","orbit":0},"8831":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":8831,"stats":["20% increased Critical Damage Bonus","+10 to Strength","20% increased Physical Damage"],"recipe":["Isolation","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":14082}],"group":805,"orbitIndex":0,"isNotable":true,"name":"Tempered Mind","orbit":0},"44239":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":29479}],"group":754,"skill":44239,"orbitIndex":16,"name":"Pin Buildup","orbit":7},"4128":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":3,"id":54283},{"orbit":0,"id":54811}],"group":272,"skill":4128,"orbitIndex":18,"name":"Armour","orbit":2},"46023":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":272,"skill":46023,"orbitIndex":3,"name":"Armour","orbit":3},"42781":{"icon":"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds","skill":42781,"stats":["15% chance to Pierce an Enemy","15% increased Projectile Damage"],"recipe":["Despair","Ire","Greed"],"connections":[{"orbit":0,"id":55429},{"orbit":0,"id":56472}],"group":690,"orbitIndex":2,"isNotable":true,"name":"Clean Shot","orbit":2},"28101":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":57571},{"orbit":-7,"id":43867}],"group":990,"skill":28101,"orbitIndex":12,"name":"Fire Penetration","orbit":2},"3084":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":3084,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":296,"connections":[{"orbit":2147483647,"id":57819}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"9343":{"stats":["Link Skills have 20% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":0,"id":25412},{"orbit":7,"id":50389},{"orbit":7,"id":37458}],"group":255,"skill":9343,"orbitIndex":7,"name":"Link Duration","orbit":7},"35581":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":35581,"stats":["16% reduced Skill Effect Duration","10% reduced Slowing Potency of Debuffs on You"],"recipe":["Paranoia","Isolation","Paranoia"],"connections":[{"orbit":0,"id":26895}],"group":306,"orbitIndex":0,"isNotable":true,"name":"Near at Hand","orbit":0},"52630":{"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":61800},{"orbit":0,"id":28371}],"group":945,"skill":52630,"orbitIndex":15,"name":"Critical Damage vs Full Life","orbit":7},"34324":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":34324,"stats":["+1 to Maximum Energy Shield per 12 Evasion Rating on Equipped Body Armour"],"recipe":["Envy","Fear","Suffering"],"connections":[{"orbit":-5,"id":56838}],"group":905,"orbitIndex":0,"isNotable":true,"name":"Spectral Ward","orbit":4},"44891":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":2147483647,"id":52537},{"orbit":0,"id":15775}],"group":978,"skill":44891,"orbitIndex":6,"name":"Cold Penetration","orbit":2},"26383":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds","skill":26383,"stats":["Base Critical Hit Chance for Spells is 15%"],"ascendancyName":"Blood Mage","connections":[],"group":632,"orbitIndex":0,"isNotable":true,"name":"Sunder the Flesh","orbit":0},"45230":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":28229}],"group":651,"skill":45230,"orbitIndex":4,"name":"Curse Area","orbit":2},"10429":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":610,"skill":10429,"orbitIndex":11,"name":"Trap Mastery","orbit":1},"4739":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":17306}},"skill":4739,"stats":["10% increased Spell Damage"],"isSwitchable":true,"group":523,"connections":[{"orbit":0,"id":18845}],"orbitIndex":22,"name":"Spell Damage","orbit":3},"57379":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":57379,"stats":["40% increased Melee Damage with Hits at Close Range"],"recipe":["Fear","Greed","Envy"],"connections":[{"orbit":0,"id":39190},{"orbit":0,"id":49111}],"group":37,"orbitIndex":15,"isNotable":true,"name":"In Your Face","orbit":3},"59303":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":59303,"stats":["30% increased Damage while you have an active Charm","6% increased Movement Speed while you have an active Charm"],"recipe":["Isolation","Disgust","Ire"],"connections":[{"orbit":0,"id":25029}],"group":881,"orbitIndex":3,"isNotable":true,"name":"Lucky Rabbit Foot","orbit":4},"10398":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":10398,"stats":["16% increased Critical Hit Chance for Spells","8% increased Cast Speed if you've dealt a Critical Hit Recently"],"recipe":["Disgust","Paranoia","Fear"],"connections":[{"orbit":-3,"id":3472}],"group":479,"orbitIndex":20,"isNotable":true,"name":"Sudden Escalation","orbit":7},"55066":{"stats":["16% increased Attack Damage against Bleeding Enemies"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":19796}],"group":478,"skill":55066,"orbitIndex":21,"name":"Attack Damage vs Bleeding Enemies","orbit":2},"44098":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4061},{"orbit":0,"id":34531}],"group":412,"skill":44098,"orbitIndex":12,"name":"Stun Threshold from Energy Shield","orbit":7},"55473":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":43164}],"group":394,"skill":55473,"orbitIndex":23,"name":"Melee Damage","orbit":7},"50121":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":3128}],"group":842,"skill":50121,"orbitIndex":0,"name":"Cold Damage","orbit":0},"14262":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14262,"stats":["+5 to any Attribute"],"isAttribute":true,"group":987,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":61718}],"orbitIndex":0,"name":"Attribute","orbit":0},"27176":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":27176,"stats":["20% increased Critical Damage Bonus if you've gained a Power Charge Recently","+1 to Maximum Power Charges"],"recipe":["Envy","Paranoia","Suffering"],"connections":[],"group":718,"orbitIndex":0,"isNotable":true,"name":"The Power Within","orbit":0},"37691":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-6,"id":42750}],"group":845,"skill":37691,"orbitIndex":13,"name":"Attack Damage","orbit":7},"23839":{"stats":["4% reduced Flask Charges used from Mana Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":-2,"id":51006}],"group":887,"skill":23839,"orbitIndex":2,"name":"Mana Flask Charges Used","orbit":2},"1922":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":51184}],"group":484,"skill":1922,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"20205":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":33059}],"group":631,"skill":20205,"orbitIndex":4,"name":"Stun Threshold if no recent Stun","orbit":2},"26614":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44344},{"orbit":0,"id":46275}],"group":381,"skill":26614,"orbitIndex":40,"name":"Stun Threshold from Energy Shield","orbit":4},"21089":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":7,"id":31848}],"group":133,"skill":21089,"orbitIndex":18,"name":"Armour if Hit","orbit":7},"46146":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":43691}],"group":743,"skill":46146,"orbitIndex":4,"name":"Mana Leech","orbit":7},"9638":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":39083}],"group":271,"skill":9638,"orbitIndex":0,"name":"Skill Speed","orbit":0},"35985":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[],"group":946,"skill":35985,"orbitIndex":24,"name":"Melee Damage","orbit":6},"35380":{"stats":["10% increased Effect of Withered"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":44373}],"group":895,"skill":35380,"orbitIndex":20,"name":"Withered Effect","orbit":2},"32354":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":32354,"stats":["80% increased Armour and Evasion Rating when on Low Life"],"recipe":["Envy","Guilt","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"orbit":-2,"id":6626}],"group":423,"orbitIndex":0,"isNotable":true,"name":"Defiance","orbit":0},"17366":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":29361}],"group":615,"skill":17366,"orbitIndex":10,"name":"Evasion and Energy Shield","orbit":7},"34061":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":52442},{"orbit":0,"id":38057}],"group":527,"skill":34061,"orbitIndex":55,"name":"Armour and Evasion","orbit":5},"44176":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":57047}],"group":509,"skill":44176,"orbitIndex":18,"name":"All Attributes","orbit":7},"17754":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds","skill":17754,"stats":["20% of Damage from Hits is taken from your Hellhound's Life before you","Grants Skill: Summon Infernal Hound"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":7,"isNotable":true,"name":"Loyal Hellhound","orbit":8},"50847":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":1130}],"group":50,"skill":50847,"orbitIndex":20,"name":"Flail Damage","orbit":7},"35644":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":6,"id":45193},{"orbit":0,"id":65009}],"group":769,"skill":35644,"orbitIndex":23,"name":"Poison Damage","orbit":3},"37226":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":2,"id":4015},{"orbit":-6,"id":9187}],"group":223,"skill":37226,"orbitIndex":4,"name":"Warcry Speed","orbit":3},"57320":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":428,"skill":57320,"orbitIndex":0,"name":"Armour and Evasion Mastery","orbit":0},"46224":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":46224,"stats":["Mana Flasks gain 0.1 charges per Second","+10 to Intelligence"],"recipe":["Envy","Greed","Greed"],"connections":[{"orbit":0,"id":24045},{"orbit":0,"id":45019}],"group":648,"orbitIndex":2,"isNotable":true,"name":"Arcane Alchemy","orbit":2},"23013":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":846,"skill":23013,"orbitIndex":42,"name":"Attack Mastery","orbit":4},"18049":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies within 2m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":5802}],"group":900,"skill":18049,"orbitIndex":22,"name":"Projectile Damage","orbit":7},"41665":{"stats":["20% increased Critical Damage Bonus","5% increased Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":6,"id":50562}],"group":184,"skill":41665,"orbitIndex":2,"name":"Critical Damage and Increased Mana Cost","orbit":3},"29843":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":35987}],"group":668,"skill":29843,"orbitIndex":19,"name":"Evasion","orbit":7},"33596":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":605,"skill":33596,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"62936":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":51891}],"group":891,"skill":62936,"orbitIndex":11,"name":"Damage from Mana","orbit":2},"39274":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":2119}],"group":409,"skill":39274,"orbitIndex":6,"name":"Life Leech","orbit":2},"18115":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":48856}],"group":605,"skill":18115,"orbitIndex":9,"name":"Grenade Damage","orbit":7},"60483":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":7809}],"group":952,"skill":60483,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"14712":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":3866}],"group":282,"skill":14712,"orbitIndex":2,"name":"Minion Life","orbit":3},"51968":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","options":{"Witch":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","id":18040}},"skill":51968,"stats":["10% increased Fire Damage"],"isSwitchable":true,"group":475,"connections":[],"orbitIndex":18,"name":"Fire Damage","orbit":3},"42379":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42379,"stats":["+5 to any Attribute"],"isAttribute":true,"group":835,"connections":[{"orbit":0,"id":16705},{"orbit":0,"id":25520}],"orbitIndex":0,"name":"Attribute","orbit":0},"1218":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":14945}],"group":278,"skill":1218,"orbitIndex":18,"name":"Minion Life","orbit":3},"43713":{"stats":["Offering Skills have 20% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":3051},{"orbit":0,"id":27009},{"orbit":0,"id":35602}],"group":456,"skill":43713,"orbitIndex":0,"name":"Offering Area","orbit":0},"4046":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":8875}],"group":472,"skill":4046,"orbitIndex":8,"name":"Electrocute Buildup","orbit":2},"9227":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":9227,"stats":["8% increased Attack Speed with Spears"],"recipe":["Fear","Ire","Greed"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":4,"isNotable":true,"name":"Swift Skewering","orbit":2},"22517":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":59644},{"orbit":-4,"id":32896}],"group":883,"skill":22517,"orbitIndex":0,"name":"Poison Chance","orbit":7},"45885":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45885,"stats":["+5 to any Attribute"],"isAttribute":true,"group":455,"connections":[{"orbit":0,"id":54521},{"orbit":0,"id":61419},{"orbit":0,"id":45570}],"orbitIndex":0,"name":"Attribute","orbit":0},"2091":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":849,"skill":2091,"orbitIndex":18,"name":"Poison Chance","orbit":4},"40345":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":40345,"stats":["25% reduced Curse Duration","18% increased Effect of your Curses"],"recipe":["Suffering","Fear","Suffering"],"connections":[{"orbit":0,"id":37991},{"orbit":0,"id":50540}],"group":565,"orbitIndex":0,"isNotable":true,"name":"Master of Hexes","orbit":7},"3472":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":-3,"id":26682}],"group":479,"skill":3472,"orbitIndex":14,"name":"Spell Critical Chance","orbit":7},"9421":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":9421,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"recipe":["Isolation","Guilt","Disgust"],"connections":[{"orbit":0,"id":60170}],"group":860,"orbitIndex":8,"isNotable":true,"name":"Snowpiercer","orbit":2},"15356":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":18815}],"group":959,"skill":15356,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"57181":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":57181,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-7,"id":52448}],"orbitIndex":24,"name":"Critical Chance","orbit":8},"37956":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":35581}],"group":302,"skill":37956,"orbitIndex":0,"name":"Reduced Duration","orbit":0},"65248":{"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":466,"skill":65248,"orbitIndex":24,"name":"Elemental Ailment Duration","orbit":4},"6898":{"icon":"Art/2DArt/SkillIcons/passives/PressurePoints.dds","skill":6898,"stats":["10% increased Damage","10% increased Critical Hit Chance","+5 to Strength and Intelligence"],"recipe":["Envy","Paranoia","Envy"],"connections":[{"orbit":0,"id":17517},{"orbit":-4,"id":63209},{"orbit":-4,"id":17584},{"orbit":5,"id":61067},{"orbit":0,"id":48305}],"group":375,"orbitIndex":0,"isNotable":true,"name":"Relentless Vindicator","orbit":0},"5284":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":5284,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"recipe":["Guilt","Isolation","Greed"],"connections":[{"orbit":0,"id":32278}],"group":303,"orbitIndex":0,"isNotable":true,"name":"Shredding Force","orbit":0},"14363":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":61338}],"group":464,"skill":14363,"orbitIndex":2,"name":"Lightning Penetration","orbit":3},"30834":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":50216},{"orbit":0,"id":57967}],"group":373,"skill":30834,"orbitIndex":2,"name":"Mana Regeneration","orbit":2},"20504":{"stats":["Recover 5 Life when you Block"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-5,"id":62341}],"group":655,"skill":20504,"orbitIndex":0,"name":"Block","orbit":0},"46475":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":18186},{"orbit":0,"id":51299}],"group":423,"skill":46475,"orbitIndex":63,"name":"Armour and Evasion","orbit":4},"58170":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":61067}],"group":406,"skill":58170,"orbitIndex":1,"name":"Spell Damage","orbit":2},"10251":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":7204}],"group":125,"skill":10251,"orbitIndex":0,"name":"Stun Buildup","orbit":0},"49657":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49657,"stats":["+5 to any Attribute"],"isAttribute":true,"group":510,"connections":[{"orbit":0,"id":54417},{"orbit":6,"id":63526},{"orbit":6,"id":43578},{"orbit":0,"id":58109}],"orbitIndex":33,"name":"Attribute","orbit":6},"61804":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":61804,"stats":["12% increased Magnitude of Poison you inflict"],"ascendancyName":"Pathfinder","group":1051,"connections":[{"orbit":0,"id":29074}],"orbitIndex":0,"name":"Poison Effect","orbit":0},"48135":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":0,"id":12750}],"group":692,"skill":48135,"orbitIndex":12,"name":"Charm Charges","orbit":7},"55397":{"stats":["15% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":44527}],"group":668,"skill":55397,"orbitIndex":21,"name":"Flask Charges Gained","orbit":7},"25482":{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":25482,"stats":["+25 to Strength"],"recipe":["Fear","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":61472},{"orbit":0,"id":51702},{"orbit":0,"id":60620}],"group":215,"orbitIndex":0,"isNotable":true,"name":"Beef","orbit":0},"33209":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":209,"skill":33209,"orbitIndex":2,"name":"Totem Cast Speed","orbit":4},"15899":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":9,"id":21627}],"group":478,"skill":15899,"orbitIndex":6,"name":"Bleeding Damage","orbit":2},"13634":{"stats":["Offering Skills have 30% increased Duration"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":544,"skill":13634,"orbitIndex":18,"name":"Offering Duration","orbit":7},"4015":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":47429},{"orbit":-6,"id":59466}],"group":223,"skill":4015,"orbitIndex":6,"name":"Warcry Cooldown","orbit":4},"36576":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":25055},{"orbit":0,"id":54984}],"group":951,"skill":36576,"orbitIndex":14,"name":"Attack Damage","orbit":7},"11337":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":5,"id":23427},{"orbit":0,"id":44455}],"group":497,"skill":11337,"orbitIndex":16,"name":"Chill Effect","orbit":3},"17553":{"stats":["10% chance for Projectiles to Pierce Enemies within 3m distance of you"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":613,"skill":17553,"orbitIndex":5,"name":"Projectile Pierce","orbit":7},"11306":{"stats":["Gain 1 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":57880}],"group":78,"skill":11306,"orbitIndex":5,"name":"Axe Rage on Hit","orbit":2},"32155":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":25700}],"group":828,"skill":32155,"orbitIndex":16,"name":"Elemental Damage and Shock Chance","orbit":7},"51903":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":55058},{"orbit":0,"id":39347}],"group":101,"skill":51903,"orbitIndex":17,"name":"Melee Damage","orbit":3},"511":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":0,"id":49734}],"group":114,"skill":511,"orbitIndex":6,"name":"Attack and Spell Damage","orbit":7},"28992":{"icon":"Art/2DArt/SkillIcons/passives/Hunter.dds","skill":28992,"stats":["8% increased Projectile Speed","8% increased Attack Speed","+10 to Dexterity"],"recipe":["Despair","Envy","Paranoia"],"connections":[{"orbit":0,"id":62628},{"orbit":0,"id":43923}],"group":620,"orbitIndex":21,"isNotable":true,"name":"Honed Instincts","orbit":4},"56914":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":50121}],"group":814,"skill":56914,"orbitIndex":5,"name":"Lightning Penetration","orbit":7},"49192":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":43396},{"orbit":0,"id":41615}],"group":209,"skill":49192,"orbitIndex":12,"name":"Totem Placement Speed","orbit":7},"11275":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":13893}],"group":48,"skill":11275,"orbitIndex":12,"name":"Fire Penetration","orbit":7},"35118":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":685,"skill":35118,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"63926":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[],"group":646,"skill":63926,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"14658":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14658,"stats":["+5 to any Attribute"],"isAttribute":true,"group":882,"connections":[{"orbit":0,"id":12253},{"orbit":0,"id":22517},{"orbit":0,"id":52053}],"orbitIndex":0,"name":"Attribute","orbit":0},"57178":{"stats":["10% increased Critical Hit Chance for Spells","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":21245},{"orbit":0,"id":5284}],"group":310,"skill":57178,"orbitIndex":0,"name":"Spell Critical Chance and Critical Ailment Effect","orbit":0},"41263":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":41263,"stats":[],"group":195,"connections":[{"orbit":0,"id":46628}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"58838":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":6,"id":53719}],"group":173,"skill":58838,"orbitIndex":60,"name":"Stun Threshold","orbit":5},"59028":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":41210}],"group":525,"skill":59028,"orbitIndex":16,"name":"Projectile Damage","orbit":4},"32353":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":32353,"stats":["25% increased Attack Damage"],"recipe":["Suffering","Fear","Despair"],"connections":[],"group":118,"orbitIndex":0,"isNotable":true,"name":"Swift Claw","orbit":0},"27373":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27373,"stats":["+5 to any Attribute"],"isAttribute":true,"group":315,"connections":[{"orbit":-6,"id":53405},{"orbit":-6,"id":51369}],"orbitIndex":51,"name":"Attribute","orbit":5},"38888":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":38888,"stats":["10% increased Accuracy Rating with One Handed Melee Weapons","10% increased Accuracy Rating with Two Handed Melee Weapons","+2 to Melee Strike Range"],"recipe":["Greed","Disgust","Ire"],"connections":[{"orbit":0,"id":39116}],"group":593,"orbitIndex":12,"isNotable":true,"name":"Unerring Impact","orbit":7},"44690":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":14127}],"group":735,"skill":44690,"orbitIndex":8,"name":"Reduced Duration","orbit":2},"7922":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":45962}],"group":313,"skill":7922,"orbitIndex":17,"name":"Flask Duration","orbit":2},"703":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":44917}],"group":663,"skill":703,"orbitIndex":2,"name":"Stun Threshold from Energy Shield","orbit":1},"2254":{"icon":"Art/2DArt/SkillIcons/passives/deepwisdom.dds","skill":2254,"stats":["30% increased maximum Energy Shield","+10 to Intelligence"],"recipe":["Fear","Guilt","Disgust"],"connections":[{"orbit":0,"id":60685},{"orbit":5,"id":43736},{"orbit":6,"id":14666}],"group":540,"orbitIndex":0,"isNotable":true,"name":"Pure Energy","orbit":0},"60886":{"stats":["20% increased Stun Recovery"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":59213}],"group":269,"skill":60886,"orbitIndex":5,"name":"Stun Recovery","orbit":1},"6229":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":6229,"stats":["40% increased Critical Damage Bonus with One Handed Melee Weapons"],"recipe":["Fear","Ire","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":7,"id":26490}],"group":284,"orbitIndex":5,"isNotable":true,"name":"Push the Advantage","orbit":7},"44566":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":44566,"stats":["Lightning Damage with Non-Critical Hits is Lucky"],"recipe":["Suffering","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":582,"orbitIndex":0,"isNotable":true,"name":"Lightning Rod","orbit":0},"35708":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":41154}],"group":119,"skill":35708,"orbitIndex":12,"name":"Chill Effect","orbit":2},"52695":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-6,"id":57230}],"group":845,"skill":52695,"orbitIndex":1,"name":"Physical Damage","orbit":7},"56651":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":38143}],"group":620,"skill":56651,"orbitIndex":57,"name":"Projectile Damage","orbit":4},"43575":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":41512}],"group":586,"skill":43575,"orbitIndex":16,"name":"Melee Damage ","orbit":7},"49984":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":49984,"stats":["32% increased Spell Damage while wielding a Melee Weapon","+10 to Dexterity"],"recipe":["Despair","Fear","Fear"],"connections":[],"group":845,"orbitIndex":57,"isNotable":true,"name":"Spellblade","orbit":5},"29611":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29611,"stats":["+5 to any Attribute"],"isAttribute":true,"group":61,"connections":[{"orbit":0,"id":41768}],"orbitIndex":0,"name":"Attribute","orbit":0},"39881":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":39881,"stats":["20% increased Critical Damage Bonus","20% increased Knockback Distance","20% increased Physical Damage"],"recipe":["Guilt","Isolation","Despair"],"connections":[{"orbit":0,"id":16013},{"orbit":0,"id":35173}],"group":941,"orbitIndex":0,"isNotable":true,"name":"Staggering Palm","orbit":0},"24135":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":24135,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":34419}],"orbitIndex":6,"name":"Critical Chance","orbit":9},"36639":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":-6,"id":62677},{"orbit":0,"id":32009}],"group":567,"skill":36639,"orbitIndex":22,"name":"Curse Duration","orbit":7},"31238":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31238,"stats":["+5 to any Attribute"],"isAttribute":true,"group":259,"connections":[{"orbit":0,"id":48552},{"orbit":0,"id":45918}],"orbitIndex":0,"name":"Attribute","orbit":0},"18519":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-7,"id":30910}],"group":279,"skill":18519,"orbitIndex":15,"name":"Minion Damage","orbit":7},"21684":{"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":33452},{"orbit":-6,"id":1214}],"group":80,"skill":21684,"orbitIndex":66,"name":"Block and Shield Defences","orbit":4},"35848":{"stats":["15% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":688,"skill":35848,"orbitIndex":16,"name":"Flask Recovery","orbit":7},"2021":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":2021,"stats":["30% increased Mana Recovery from Flasks","8% increased Attack and Cast Speed during Effect of any Mana Flask"],"recipe":["Disgust","Greed","Guilt"],"connections":[{"orbit":0,"id":25857}],"group":972,"orbitIndex":0,"isNotable":true,"name":"Wellspring","orbit":7},"21327":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":56876},{"orbit":0,"id":43691}],"group":774,"skill":21327,"orbitIndex":14,"name":"Energy Shield if Consumed Power Charge","orbit":2},"32683":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":32683,"stats":["Gain 5% of Damage as Extra Cold Damage","20% increased Freeze Buildup"],"recipe":["Despair","Ire","Suffering"],"connections":[{"orbit":0,"id":53149},{"orbit":0,"id":54413}],"group":698,"orbitIndex":30,"isNotable":true,"name":"Essence of the Mountain","orbit":4},"54138":{"stats":["3% increased Attack Speed with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":38564},{"orbit":0,"id":37963}],"group":352,"skill":54138,"orbitIndex":12,"name":"Sword Speed","orbit":2},"51299":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51299,"stats":["+5 to any Attribute"],"isAttribute":true,"group":341,"connections":[{"orbit":0,"id":33169},{"orbit":0,"id":35265},{"orbit":0,"id":19802}],"orbitIndex":0,"name":"Attribute","orbit":2},"47733":{"stats":["12% increased Chance to inflict Ailments with One-Handed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":528,"skill":47733,"orbitIndex":7,"name":"One Handed Ailment Chance","orbit":2},"39540":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":19680}],"group":342,"skill":39540,"orbitIndex":49,"name":"Critical Chance","orbit":4},"20691":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":41739}],"group":362,"skill":20691,"orbitIndex":8,"name":"Stun Buildup","orbit":2},"3251":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3251,"stats":["+5 to any Attribute"],"isAttribute":true,"group":772,"connections":[{"orbit":0,"id":21984}],"orbitIndex":0,"name":"Attribute","orbit":0},"46275":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":3894}],"group":381,"skill":46275,"orbitIndex":35,"name":"Stun Threshold from Energy Shield","orbit":4},"32559":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":32559,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":3704}],"orbitIndex":36,"name":"Cooldown Recovery Rate","orbit":8},"18717":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":60483}],"group":955,"skill":18717,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"31890":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":7,"id":38827}],"group":393,"skill":31890,"orbitIndex":5,"name":"Armour and Energy Shield","orbit":3},"2448":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2448,"stats":["+5 to any Attribute"],"isAttribute":true,"group":847,"connections":[{"orbit":0,"id":26598},{"orbit":0,"id":57945},{"orbit":0,"id":14658},{"orbit":0,"id":1631}],"orbitIndex":8,"name":"Attribute","orbit":2},"59093":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59093,"stats":["+5 to any Attribute"],"isAttribute":true,"group":150,"connections":[{"orbit":0,"id":14110},{"orbit":0,"id":5088}],"orbitIndex":0,"name":"Attribute","orbit":0},"31692":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":46197}],"group":903,"skill":31692,"orbitIndex":3,"name":"Critical Chance","orbit":2},"64379":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":64379,"stats":["12% increased Spell Damage"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-4,"id":25239}],"orbitIndex":69,"name":"Spell Damage","orbit":8},"64643":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":56360},{"orbit":0,"id":27176}],"group":718,"skill":64643,"orbitIndex":3,"name":"Power Charge Duration","orbit":2},"4850":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":35503}],"group":659,"skill":4850,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"2863":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":2863,"stats":["15% increased Freeze Buildup","15% increased Chill and Freeze Duration on Enemies"],"recipe":["Guilt","Ire","Isolation"],"connections":[],"group":119,"orbitIndex":0,"isNotable":true,"name":"Perpetual Freeze","orbit":0},"29049":{"stats":["10% increased Charm Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":3,"id":56893}],"group":848,"skill":29049,"orbitIndex":10,"name":"Charm Duration","orbit":2},"33397":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":39594}],"group":327,"skill":33397,"orbitIndex":21,"name":"Fire Damage","orbit":2},"7604":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":7604,"stats":["+30 to Accuracy Rating","8% increased Melee Attack Speed"],"recipe":["Ire","Fear","Fear"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"group":946,"orbitIndex":10,"isNotable":true,"name":"Rapid Strike","orbit":3},"47204":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":43014}],"group":234,"skill":47204,"orbitIndex":22,"name":"Melee Damage","orbit":3},"45019":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":648,"skill":45019,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"26447":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":26447,"stats":["30% increased Energy Shield Recharge Rate","20% increased Mana Regeneration Rate"],"recipe":["Paranoia","Suffering","Ire"],"connections":[{"orbit":0,"id":12918},{"orbit":0,"id":49633}],"group":536,"orbitIndex":0,"isNotable":true,"name":"Refocus","orbit":2},"23608":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":2,"id":61741},{"orbit":-2,"id":24401}],"group":849,"skill":23608,"orbitIndex":20,"name":"Poison Damage","orbit":7},"8483":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":8483,"stats":["35% increased Spell Area Damage","Spell Skills have 10% reduced Area of Effect"],"recipe":["Greed","Despair","Suffering"],"connections":[{"orbit":0,"id":6588}],"group":571,"orbitIndex":7,"isNotable":true,"name":"Ruin","orbit":7},"23930":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":46024},{"orbit":0,"id":58295}],"group":146,"skill":23930,"orbitIndex":40,"name":"Elemental Damage","orbit":4},"25745":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":31890}],"group":393,"skill":25745,"orbitIndex":30,"name":"Armour and Energy Shield","orbit":4},"3414":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[{"orbit":0,"id":14575}],"group":376,"skill":3414,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"13619":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":12208},{"orbit":0,"id":59600}],"group":811,"skill":13619,"orbitIndex":0,"name":"Life Flask Charges","orbit":7},"40270":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":40270,"stats":["5% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","+1 to Maximum Frenzy Charges"],"recipe":["Ire","Suffering","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":741,"orbitIndex":0,"isNotable":true,"name":"Frenetic","orbit":0},"20831":{"icon":"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds","skill":20831,"stats":["25% increased Evasion Rating","25% increased Evasion Rating if you've Dodge Rolled Recently"],"recipe":["Paranoia","Guilt","Ire"],"connections":[{"orbit":0,"id":29843},{"orbit":0,"id":44875}],"group":668,"orbitIndex":14,"isNotable":true,"name":"Catlike Agility","orbit":2},"61281":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":9217}],"group":528,"skill":61281,"orbitIndex":14,"name":"One Handed Damage","orbit":2},"55194":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":342,"skill":55194,"orbitIndex":66,"name":"Minion Damage","orbit":4},"48401":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48401,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":35987},{"orbit":0,"id":61312},{"orbit":5,"id":10909}],"orbitIndex":30,"name":"Attribute","orbit":6},"40596":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-6,"id":48768}],"group":173,"skill":40596,"orbitIndex":36,"name":"Stun Threshold","orbit":5},"49256":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":14439}],"group":52,"skill":49256,"orbitIndex":12,"name":"Armour and Energy Shield","orbit":3},"58704":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds","skill":58704,"stats":["Break Armour equal to 10% of Hit Damage dealt"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":49380}],"group":3,"orbitIndex":0,"isNotable":true,"name":"Anvil's Weight","orbit":0},"5936":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":65248}],"group":466,"skill":5936,"orbitIndex":36,"name":"Elemental","orbit":4},"12890":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":12890,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":0,"id":59740},{"orbit":0,"id":2091}],"orbitIndex":12,"name":"Attribute","orbit":6},"19338":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[],"group":950,"skill":19338,"orbitIndex":0,"name":"Dexterity","orbit":3},"37695":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-5,"id":11813}],"group":796,"skill":37695,"orbitIndex":0,"name":"Evasion","orbit":0},"3988":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51832}],"group":90,"skill":3988,"orbitIndex":13,"name":"Empowered Attack Damage","orbit":2},"45824":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":61441},{"orbit":0,"id":8493}],"group":386,"skill":45824,"orbitIndex":0,"name":"Sword Damage","orbit":0},"27859":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":38694}],"group":574,"skill":27859,"orbitIndex":12,"name":"Herald Damage","orbit":7},"16596":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":38535},{"orbit":0,"id":5088}],"group":197,"skill":16596,"orbitIndex":20,"name":"Speed with Elemental Skills","orbit":3},"31039":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":720,"skill":31039,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"59695":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":28950}],"group":420,"skill":59695,"orbitIndex":19,"name":"Mana Regeneration","orbit":2},"46088":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":13823}],"group":624,"skill":46088,"orbitIndex":20,"name":"Spell Critical Chance","orbit":3},"30634":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":694,"skill":30634,"orbitIndex":6,"name":"Energy Shield Delay","orbit":2},"25885":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":25885,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":31116}],"orbitIndex":20,"name":"Darkness","orbit":8},"56063":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":56063,"stats":["23% increased Chaos Damage","15% increased Skill Effect Duration"],"recipe":["Isolation","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":617,"orbitIndex":0,"isNotable":true,"name":"Lingering Horror","orbit":0},"41529":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-2,"id":21380}],"group":762,"skill":41529,"orbitIndex":21,"name":"Critical Damage","orbit":2},"48198":{"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","skill":48198,"stats":["4% increased Movement Speed","15% increased Mana Regeneration Rate","+5 to Dexterity and Intelligence"],"recipe":["Despair","Despair","Ire"],"connections":[{"orbit":3,"id":29361},{"orbit":-5,"id":65437},{"orbit":-6,"id":40068},{"orbit":0,"id":1215},{"orbit":6,"id":13411}],"group":615,"orbitIndex":12,"isNotable":true,"name":"Step Like Mist","orbit":4},"151":{"stats":["16% increased Accuracy Rating at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":34747}],"group":358,"skill":151,"orbitIndex":5,"name":"Accuracy","orbit":7},"60083":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":60083,"stats":["30% increased Pin Buildup","5% increased Movement Speed if you've Pinned an Enemy Recently"],"recipe":["Disgust","Despair","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":44239}],"group":754,"orbitIndex":0,"isNotable":true,"name":"Pin and Run","orbit":0},"61338":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":61338,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"recipe":["Disgust","Paranoia","Isolation"],"connections":[],"group":464,"orbitIndex":6,"isNotable":true,"name":"Breath of Lightning","orbit":4},"10694":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds","skill":10694,"stats":["While on High Infernal Flame, you and Allies in your","Presence Gain 20% of Damage as Fire Damage"],"ascendancyName":"Infernalist","connections":[],"group":529,"orbitIndex":0,"isNotable":true,"name":"Seething Body","orbit":0},"24070":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[{"orbit":0,"id":58397}],"group":934,"skill":24070,"orbitIndex":0,"name":"Dexterity","orbit":0},"6588":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":571,"skill":6588,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"61404":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":61404,"stats":["30% increased Attack Damage if you've Cast a Spell Recently","10% increased Cast Speed if you've Attacked Recently"],"recipe":["Fear","Suffering","Despair"],"connections":[{"orbit":0,"id":51210},{"orbit":0,"id":61429}],"group":114,"orbitIndex":0,"isNotable":true,"name":"Equilibrium","orbit":0},"57506":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57506,"stats":["+5 to any Attribute"],"isAttribute":true,"group":305,"connections":[{"orbit":0,"id":1433}],"orbitIndex":0,"name":"Attribute","orbit":0},"17791":{"stats":["18% increased Stun Buildup with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":526}],"group":56,"skill":17791,"orbitIndex":3,"name":"Mace Stun Buildup","orbit":7},"62998":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":63600}],"group":983,"skill":62998,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"4664":{"stats":["6% increased Trap Throwing Speed"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":43938}],"group":974,"skill":4664,"orbitIndex":42,"name":"Trap Throw Speed","orbit":6},"52220":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":81,"skill":52220,"orbitIndex":0,"name":"Physical Mastery","orbit":0},"41186":{"stats":["12% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":58117}],"group":387,"skill":41186,"orbitIndex":33,"name":"Totem Placement Speed","orbit":5},"55598":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":4,"id":15644},{"orbit":-3,"id":9112},{"orbit":0,"id":28050}],"group":734,"skill":55598,"orbitIndex":2,"name":"Ailment Threshold","orbit":3},"35974":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":51105}],"group":151,"skill":35974,"orbitIndex":0,"name":"Totem Life","orbit":2},"21716":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-5,"id":9583}],"group":281,"skill":21716,"orbitIndex":0,"name":"Life Leech","orbit":4},"34717":{"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":24120}],"group":892,"skill":34717,"orbitIndex":20,"name":"Mana Regeneration while not on Low Mana","orbit":3},"41062":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":751,"skill":41062,"orbitIndex":48,"name":"Projectile Mastery","orbit":4},"26339":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":26339,"stats":["Attack Skills have +1 to maximum number of Summoned Totems","20% increased Totem Placement range"],"recipe":["Suffering","Suffering","Suffering"],"connections":[{"orbit":0,"id":64405},{"orbit":0,"id":11014}],"group":177,"orbitIndex":0,"isNotable":true,"name":"Ancestral Artifice","orbit":1},"50510":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":46384}],"group":52,"skill":50510,"orbitIndex":18,"name":"Shield Block","orbit":4},"16311":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":32600},{"orbit":0,"id":14654}],"group":211,"skill":16311,"orbitIndex":20,"name":"Life Regeneration","orbit":2},"19808":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","connections":[],"group":690,"skill":19808,"orbitIndex":9,"name":"Ailment Chance","orbit":7},"21945":{"stats":["20% increased Damage against Dazed Enemies"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":2,"id":38342}],"group":988,"skill":21945,"orbitIndex":6,"name":"Damage vs Dazed Enemies","orbit":2},"28693":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":49280}],"group":428,"skill":28693,"orbitIndex":1,"name":"Armour and Evasion","orbit":2},"49455":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":381,"skill":49455,"orbitIndex":5,"name":"Energy Shield","orbit":4},"65310":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":22682}],"group":794,"skill":65310,"orbitIndex":0,"name":"Additional Spell Projectiles","orbit":3},"64443":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":64443,"stats":["20% increased Stun Buildup","25% increased Attack Area Damage"],"recipe":["Fear","Ire","Fear"],"connections":[{"orbit":0,"id":41126},{"orbit":0,"id":62023}],"group":159,"orbitIndex":8,"isNotable":true,"name":"Impact Force","orbit":3},"18815":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":40990}],"group":967,"skill":18815,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"10314":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":16256}],"group":680,"skill":10314,"orbitIndex":30,"name":"Mana Regeneration","orbit":4},"12611":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":12611,"stats":["15% increased Damage for each type of Elemental Ailment on Enemy"],"recipe":["Disgust","Disgust","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":3,"id":32155},{"orbit":3,"id":44204}],"group":828,"orbitIndex":0,"isNotable":true,"name":"Harness the Elements","orbit":0},"36564":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds","skill":36564,"stats":["Reserves 25% of Life","+1 to Maximum Mana per 6 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":100,"isNotable":true,"name":"Beidat's Gaze","orbit":9},"31765":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31765,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":24958}],"orbitIndex":0,"name":"Attribute","orbit":0},"11656":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":53822},{"orbit":-3,"id":9106}],"group":57,"skill":11656,"orbitIndex":8,"name":"Rage when Hit","orbit":7},"23764":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":23764,"stats":["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently","20% increased Magnitude of Shock you inflict"],"recipe":["Ire","Ire","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":650,"orbitIndex":0,"isNotable":true,"name":"Alternating Current","orbit":0},"6006":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":38105}],"group":381,"skill":6006,"orbitIndex":62,"name":"Energy Shield","orbit":4},"25513":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":25513,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"recipe":["Despair","Fear","Envy"],"connections":[],"group":481,"orbitIndex":45,"isNotable":true,"name":"Overwhelm","orbit":6},"4313":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":28992}],"group":620,"skill":4313,"orbitIndex":6,"name":"Projectile Damage","orbit":7},"57373":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":44733}],"group":323,"skill":57373,"orbitIndex":0,"name":"Ignite Chance","orbit":0},"30047":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30047,"stats":["+5 to any Attribute"],"isAttribute":true,"group":697,"connections":[{"orbit":0,"id":21280}],"orbitIndex":0,"name":"Attribute","orbit":0},"61403":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61403,"stats":["+5 to any Attribute"],"isAttribute":true,"group":852,"connections":[{"orbit":0,"id":56349},{"orbit":3,"id":14231}],"orbitIndex":0,"name":"Attribute","orbit":0},"43576":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":7971}],"group":519,"skill":43576,"orbitIndex":8,"name":"Mana Regeneration","orbit":3},"23993":{"stats":["12% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":8115}],"group":424,"skill":23993,"orbitIndex":0,"name":"Physical Damage","orbit":0},"55060":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":55060,"stats":["30% chance to Pierce an Enemy","Projectiles have 10% chance to Chain an additional time from terrain"],"recipe":["Guilt","Guilt","Disgust"],"connections":[{"orbit":0,"id":33037},{"orbit":0,"id":45576}],"group":547,"orbitIndex":9,"isNotable":true,"name":"Shrapnel","orbit":5},"17229":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":17229,"stats":["Minions have +20% to all Elemental Resistances"],"recipe":["Fear","Greed","Disgust"],"connections":[{"orbit":0,"id":34493},{"orbit":0,"id":47242}],"group":75,"orbitIndex":20,"isNotable":true,"name":"Silent Guardian","orbit":3},"50437":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":35987}],"group":604,"skill":50437,"orbitIndex":8,"name":"Evasion","orbit":7},"48589":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":7922}],"group":313,"skill":48589,"orbitIndex":11,"name":"Life Flask Recovery","orbit":2},"55789":{"stats":["20% increased Critical Damage Bonus","5% increased Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-2,"id":41665}],"group":184,"skill":55789,"orbitIndex":3,"name":"Critical Damage and Increased Mana Cost","orbit":4},"4346":{"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":4519},{"orbit":0,"id":20677}],"group":765,"skill":4346,"orbitIndex":0,"name":"Damage on Critical","orbit":0},"63790":{"stats":["20% increased Melee Damage against Immobilised Enemies"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":48014}],"group":101,"skill":63790,"orbitIndex":54,"name":"Melee Damage against Immobilised","orbit":5},"32771":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":32771,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":34817}],"orbitIndex":55,"name":"Darkness","orbit":9},"25779":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":25779,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":41076}],"orbitIndex":34,"name":"Darkness","orbit":9},"22616":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22616,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":51052},{"orbit":0,"id":17468},{"orbit":0,"id":48631}],"orbitIndex":54,"name":"Attribute","orbit":6},"33601":{"stats":["10% increased Chill and Freeze Duration on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":2863}],"group":119,"skill":33601,"orbitIndex":0,"name":"Chill and Freeze Duration","orbit":2},"63451":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":63451,"stats":["30% increased Stun Buildup","Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"],"recipe":["Greed","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":44406},{"orbit":0,"id":64312}],"group":221,"orbitIndex":6,"isNotable":true,"name":"Cranial Impact","orbit":6},"57513":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds","skill":57513,"isKeystone":true,"stats":["Converts all Energy Shield to Mana"],"group":710,"connections":[],"orbitIndex":0,"name":"Eldritch Battery","orbit":0},"50635":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":25971},{"orbit":5,"id":42750},{"orbit":-5,"id":9050}],"group":840,"skill":50635,"orbitIndex":13,"name":"Attack Speed","orbit":3},"24753":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":24753,"stats":["30% increased Accuracy Rating at Close Range","+10 to Dexterity"],"recipe":["Ire","Greed","Envy"],"connections":[{"orbit":0,"id":34747},{"orbit":0,"id":56567},{"orbit":0,"id":151}],"group":358,"orbitIndex":0,"isNotable":true,"name":"Determined Precision","orbit":0},"11771":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":11771,"stats":["4% increased Skill Speed"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":664}],"orbitIndex":21,"name":"Skill Speed","orbit":5},"1347":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":1347,"stats":["4% increased Skill Speed"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":7,"id":50098}],"orbitIndex":12,"name":"Skill Speed","orbit":6},"47796":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-4,"id":62640}],"group":435,"skill":47796,"orbitIndex":12,"name":"Attack Speed","orbit":2},"37629":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37629,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":55933}],"orbitIndex":42,"name":"Attribute","orbit":6},"49642":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":4882}],"group":314,"skill":49642,"orbitIndex":1,"name":"Totem Damage","orbit":7},"47344":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":47344,"stats":["12% increased amount of Mana Leeched"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":3781}],"orbitIndex":0,"name":"Mana Leech","orbit":9},"33989":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":33989,"stats":[],"group":144,"connections":[{"orbit":0,"id":49734}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"31116":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds","skill":31116,"stats":["Gain 1% of Damage as Extra Chaos Damage per 20 Unreserved Darkness"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":25,"isNotable":true,"name":"Grasp of the Void","orbit":8},"63393":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":7721},{"orbit":0,"id":36709}],"group":408,"skill":63393,"orbitIndex":12,"name":"Stun Threshold","orbit":7},"41076":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds","skill":41076,"stats":["Removes all Spirit","Base Maximum Darkness is 100","Damage taken is Reserved from Darkness before being taken from Life or Energy Shield","Darkness Reservation lasts for 10 seconds","+5 to Maximum Darkness per Level"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":32771},{"orbit":-6,"id":25885}],"group":1058,"orbitIndex":45,"isNotable":true,"name":"Embrace the Darkness","orbit":9},"664":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds","skill":664,"stats":["Effect and Duration of Flames of Chayula on You is Doubled"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":27,"isNotable":true,"name":"Lucid Dreaming","orbit":5},"50098":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds","skill":50098,"stats":["Grants Skill: Into the Breach"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":11771}],"group":1058,"orbitIndex":16,"isNotable":true,"name":"Waking Dream","orbit":5},"30554":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":29611}],"group":70,"skill":30554,"orbitIndex":20,"name":"Minion Life","orbit":7},"25781":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds","skill":25781,"stats":["23% chance to Gain 25% of Damage with Hits as Extra Chaos Damage","13% chance to Gain 50% of Damage with Hits as Extra Chaos Damage","7% chance to Gain 100% of Damage with Hits as Extra Chaos Damage"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":2,"isNotable":true,"name":"Reality Rending","orbit":5},"3781":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds","skill":3781,"stats":["You cannot Recharge Energy Shield","Mana Leech effects also Recover Energy Shield"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":136,"isNotable":true,"name":"Consuming Questions","orbit":9},"58090":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":48774}],"group":546,"skill":58090,"orbitIndex":18,"name":"Life Recoup","orbit":7},"8631":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":32660},{"orbit":0,"id":59256},{"orbit":0,"id":30979}],"group":331,"skill":8631,"orbitIndex":3,"name":"Critical Chance","orbit":3},"2964":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":18374}],"group":293,"skill":2964,"orbitIndex":15,"name":"Thorns","orbit":2},"40":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds","skill":40,"stats":["50% more Flask Charges gained"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":16}],"group":1057,"orbitIndex":0,"isNotable":true,"name":"Connected Chemistry","orbit":0},"44430":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":7062}],"group":614,"skill":44430,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"51690":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":51690,"stats":["Regenerate 0.5% of Life per second"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":-5,"id":12000}],"orbitIndex":43,"name":"Life Regeneration","orbit":6},"19277":{"stats":["Spell Skills have 12% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":44783}],"group":233,"skill":19277,"orbitIndex":10,"name":"Area Damage","orbit":2},"59759":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds","skill":59759,"stats":["+10% to Maximum Chaos Resistance","Chaos Resistance is doubled"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":4,"isNotable":true,"name":"Chayula's Gift","orbit":8},"41619":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds","skill":41619,"stats":["Life Flask Effects are not removed when Unreserved Life is Filled","Life Flask Effects do not Queue"],"ascendancyName":"Pathfinder","connections":[],"group":1055,"orbitIndex":0,"isNotable":true,"name":"Enduring Elixirs","orbit":0},"61196":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61196,"stats":["+5 to any Attribute"],"isAttribute":true,"group":748,"connections":[{"orbit":5,"id":56045},{"orbit":0,"id":13419}],"orbitIndex":54,"name":"Attribute","orbit":6},"29074":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds","skill":29074,"stats":["Double the number of your Poisons that targets can be affected by at the same time","35% less Poison Duration"],"ascendancyName":"Pathfinder","connections":[],"group":1052,"orbitIndex":0,"isNotable":true,"name":"Overwhelming Toxicity","orbit":0},"58379":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds","skill":58379,"stats":["Grants Skill: Poisonous Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1049,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Poisonous Concoction","orbit":0},"64318":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":61063},{"orbit":0,"id":7960}],"group":197,"skill":64318,"orbitIndex":2,"name":"Elemental Penetration","orbit":3},"21387":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21387,"stats":["+5 to any Attribute"],"isAttribute":true,"group":85,"connections":[{"orbit":0,"id":26725},{"orbit":0,"id":3988}],"orbitIndex":0,"name":"Attribute","orbit":0},"44756":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":44756,"stats":["30% reduced Mana Cost of Mark Skills","4% increased Movement Speed if you've cast a Mark Spell Recently"],"recipe":["Despair","Disgust","Suffering"],"connections":[{"orbit":5,"id":44841}],"group":914,"orbitIndex":15,"isNotable":true,"name":"Marked Agility","orbit":3},"21127":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":151,"skill":21127,"orbitIndex":36,"name":"Totem Mastery","orbit":4},"49503":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":49503,"stats":["20% increased Mana Flask Charges gained"],"ascendancyName":"Pathfinder","group":1047,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Mana Flask Charges","orbit":0},"18940":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds","skill":18940,"stats":["Grants Skill: Shattering Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1045,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Shattering Concoction","orbit":0},"9710":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds","skill":9710,"stats":["Grants Skill: Bleeding Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1044,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Bleeding Concoction","orbit":0},"7488":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":336,"skill":7488,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"38004":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds","skill":38004,"stats":["Grants Skill: Explosive Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1043,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Explosive Concoction","orbit":0},"37336":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds","skill":37336,"stats":["30% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"ascendancyName":"Deadeye","connections":[{"orbit":0,"id":35801}],"group":1042,"orbitIndex":0,"isNotable":true,"name":"Avidity","orbit":0},"6596":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":41171}],"group":685,"skill":6596,"orbitIndex":30,"name":"Attack Speed","orbit":4},"51105":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51105,"stats":["30% increased Totem Life","30% increased Totem Duration"],"recipe":["Greed","Ire","Fear"],"connections":[{"orbit":0,"id":48979},{"orbit":0,"id":21127}],"group":151,"orbitIndex":6,"isNotable":true,"name":"Spirit Bond","orbit":1},"9112":{"stats":["25% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":0,"id":44612}],"group":734,"skill":9112,"orbitIndex":11,"name":"Ailment Threshold","orbit":1},"1583":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":1583,"stats":[],"ascendancyName":"Pathfinder","isAscendancyStart":true,"group":1041,"connections":[{"orbit":-6,"id":39292},{"orbit":-6,"id":14508},{"orbit":0,"id":9798},{"orbit":-5,"id":49503},{"orbit":6,"id":36676}],"orbitIndex":48,"name":"Pathfinder","orbit":9},"18158":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds","skill":18158,"stats":["While not on Low Infernal Flame, all Damage from you and","Allies in your Presence contributes to Ignite Chance and Magnitude"],"ascendancyName":"Infernalist","connections":[],"group":470,"orbitIndex":0,"isNotable":true,"name":"Bringer of Flame","orbit":0},"20677":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":20677,"stats":["30% increased Critical Damage Bonus","+10 to Intelligence"],"recipe":["Paranoia","Suffering","Guilt"],"connections":[{"orbit":0,"id":9586},{"orbit":0,"id":535}],"group":791,"orbitIndex":0,"isNotable":true,"name":"For the Jugular","orbit":0},"17726":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":33053}],"group":621,"skill":17726,"orbitIndex":5,"name":"Stun Buildup","orbit":7},"33736":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":33736,"stats":["4% increased Skill Speed"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":24868}],"orbitIndex":86,"name":"Skill Speed","orbit":9},"1286":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":17903}],"group":133,"skill":1286,"orbitIndex":10,"name":"Thorns","orbit":7},"46742":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds","skill":46742,"isKeystone":true,"stats":["Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure","Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure","Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure"],"group":833,"connections":[],"orbitIndex":0,"name":"Elemental Equilibrium","orbit":0},"21713":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":11604},{"orbit":0,"id":50588}],"group":803,"skill":21713,"orbitIndex":20,"name":"Accuracy","orbit":2},"48588":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":2455},{"orbit":0,"id":13081}],"group":490,"skill":48588,"orbitIndex":14,"name":"Projectile Damage","orbit":5},"46454":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds","skill":46454,"stats":["Grants 5 Passive Skill Point"],"ascendancyName":"Pathfinder","connections":[],"group":1041,"orbitIndex":42,"isNotable":true,"name":"Traveller's Wisdom","orbit":8},"61991":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds","skill":61991,"stats":["30% less Movement Speed Penalty from using Skills while moving"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":33736}],"group":1041,"orbitIndex":72,"isNotable":true,"name":"Running Assault","orbit":9},"35801":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":35801,"stats":["25% increased Frenzy Charge Duration"],"ascendancyName":"Deadeye","group":1040,"connections":[{"orbit":0,"id":23508}],"orbitIndex":0,"name":"Frenzy Charge Duration","orbit":0},"12526":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-9,"id":54818}],"group":489,"skill":12526,"orbitIndex":18,"name":"Ailment Threshold","orbit":3},"41875":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds","skill":41875,"stats":["Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres"],"isMultipleChoiceOption":true,"ascendancyName":"Deadeye","group":1037,"connections":[{"orbit":0,"id":42416}],"orbitIndex":0,"name":"Point Blank","orbit":0},"24226":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds","skill":24226,"stats":["You have no Accuracy Penalty at Distance"],"ascendancyName":"Deadeye","connections":[],"group":1036,"orbitIndex":0,"isNotable":true,"name":"Eagle Eyes","orbit":0},"30":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds","skill":30,"stats":["Gain Tailwind on Skill use","Lose all Tailwind when Hit"],"ascendancyName":"Deadeye","connections":[{"orbit":0,"id":29871}],"group":1035,"orbitIndex":0,"isNotable":true,"name":"Gathering Winds","orbit":0},"5703":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":5703,"stats":["30% increased Elemental Damage if you've Shocked an Enemy Recently"],"recipe":["Despair","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":4,"isNotable":true,"name":"Echoing Thunder","orbit":7},"54937":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":54937,"stats":["Gain 5 Rage when Hit by an Enemy","Every Rage also grants 1% increased Armour"],"recipe":["Suffering","Ire","Despair"],"connections":[],"group":57,"orbitIndex":9,"isNotable":true,"name":"Vengeful Fury","orbit":1},"60287":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds","skill":60287,"stats":["+1 to Level of all Skills"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":207,"orbitIndex":0,"isNotable":true,"name":"Implanted Gems","orbit":0},"33059":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":33059,"stats":["80% increased Stun Recovery"],"recipe":["Ire","Guilt","Greed"],"connections":[{"orbit":0,"id":2841}],"group":631,"orbitIndex":12,"isNotable":true,"name":"Back in Action","orbit":2},"3131":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":2394}],"group":551,"skill":3131,"orbitIndex":9,"name":"Dual Wielding Speed","orbit":2},"41126":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":1170},{"orbit":0,"id":9918}],"group":159,"skill":41126,"orbitIndex":4,"name":"Area Damage","orbit":3},"37946":{"stats":["15% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[],"group":801,"skill":37946,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"10873":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":10873,"stats":["25% increased Attack Damage"],"recipe":["Ire","Disgust","Fear"],"connections":[{"orbit":0,"id":32777}],"group":71,"orbitIndex":21,"isNotable":true,"name":"Bestial Rage","orbit":3},"39280":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":44669}],"group":735,"skill":39280,"orbitIndex":4,"name":"Increased Duration","orbit":3},"9994":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":9994,"stats":[],"ascendancyName":"Invoker","isAscendancyStart":true,"group":1033,"connections":[{"orbit":0,"id":23415},{"orbit":0,"id":44357},{"orbit":0,"id":13065},{"orbit":0,"id":27686},{"orbit":2147483647,"id":25434},{"orbit":0,"id":17268}],"orbitIndex":24,"name":"Master of the Elements","orbit":9},"27686":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":27686,"stats":["20% increased Energy Shield Recharge Rate"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":0,"id":12876}],"orbitIndex":10,"name":"Energy Shield Recharge Rate","orbit":8},"13356":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":6229}],"group":284,"skill":13356,"orbitIndex":0,"name":"One Handed Damage","orbit":2},"57710":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57710,"stats":["+5 to any Attribute"],"isAttribute":true,"group":503,"connections":[{"orbit":0,"id":39037},{"orbit":0,"id":40783}],"orbitIndex":0,"name":"Attribute","orbit":6},"52746":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":9796},{"orbit":-3,"id":64471}],"group":345,"skill":52746,"orbitIndex":12,"name":"Fire Damage","orbit":2},"23374":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":2500}],"group":1007,"skill":23374,"orbitIndex":0,"name":"Poison Chance","orbit":0},"36364":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":36364,"stats":["Enemies you Electrocute have 20% increased Damage taken"],"recipe":["Paranoia","Suffering","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":970,"orbitIndex":0,"isNotable":true,"name":"Electrocution","orbit":0},"25281":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":677,"skill":25281,"orbitIndex":10,"name":"Life Mastery","orbit":1},"57776":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":33914}],"group":193,"skill":57776,"orbitIndex":5,"name":"Energy Shield and Mana Regeneration","orbit":3},"8957":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":8957,"stats":["Minions have 20% increased Area of Effect","Minions have 10% chance to inflict Withered on Hit"],"recipe":["Envy","Isolation","Suffering"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":44,"isNotable":true,"name":"Right Hand of Darkness","orbit":4},"64119":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":64119,"stats":["40% increased Crossbow Reload Speed"],"recipe":["Fear","Guilt","Suffering"],"connections":[{"orbit":0,"id":33596}],"group":605,"orbitIndex":22,"isNotable":true,"name":"Instant Reload","orbit":7},"29133":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":29133,"stats":["12% increased Elemental Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":2,"id":64031}],"orbitIndex":9,"name":"Elemental Damage","orbit":4},"37276":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":37276,"stats":["+8 to Maximum Rage"],"recipe":["Isolation","Disgust","Fear"],"connections":[{"orbit":0,"id":33244}],"group":212,"orbitIndex":14,"isNotable":true,"name":"Battle Trance","orbit":2},"61356":{"stats":["10% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[{"orbit":0,"id":12498}],"group":792,"skill":61356,"orbitIndex":12,"name":"Quiver Effect","orbit":7},"15829":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":15829,"stats":["Recover 2% of Mana on Kill","25% increased amount of Mana Leeched"],"recipe":["Paranoia","Envy","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":46146}],"group":743,"orbitIndex":0,"isNotable":true,"name":"Siphon","orbit":0},"51369":{"stats":["14% increased Damage with Hits against Burning Enemies"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":56061},{"orbit":0,"id":45503}],"group":243,"skill":51369,"orbitIndex":6,"name":"Damage against Burning Enemies","orbit":2},"12876":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds","skill":12876,"stats":["Grants Skill: Meditate"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":7,"isNotable":true,"name":"Faith is a Choice","orbit":6},"1447":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":22393}],"group":278,"skill":1447,"orbitIndex":14,"name":"Minion Damage","orbit":3},"52448":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds","skill":52448,"stats":["Trigger Elemental Expression on Melee Critical Hit","Grants Skill: Elemental Expression"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":53,"isNotable":true,"name":"...and Scatter Them to the Winds","orbit":9},"336":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":336,"stats":["Damage Penetrates 15% Cold Resistance","Damage Penetrates 8% Lightning Resistance"],"recipe":["Envy","Suffering","Suffering"],"connections":[{"orbit":-3,"id":4806}],"group":898,"orbitIndex":15,"isNotable":true,"name":"Storm Swell","orbit":3},"36290":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":23046}],"group":891,"skill":36290,"orbitIndex":33,"name":"Energy Shield Delay","orbit":4},"57846":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":63451},{"orbit":6,"id":38876}],"group":221,"skill":57846,"orbitIndex":12,"name":"Stun Buildup","orbit":6},"33137":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":36894},{"orbit":0,"id":17330}],"group":149,"skill":33137,"orbitIndex":17,"name":"Bleed Damage","orbit":2},"31566":{"stats":["30% increased Armour while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":7049},{"orbit":0,"id":54818}],"group":480,"skill":31566,"orbitIndex":23,"name":"Armour while Surrounded","orbit":3},"23587":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds","skill":23587,"stats":["Gain 10% of Damage as Extra Cold Damage","On Freezing Enemies create Chilled Ground"],"ascendancyName":"Invoker","connections":[{"orbit":7,"id":25434},{"orbit":0,"id":29133}],"group":1033,"orbitIndex":9,"isNotable":true,"name":"I am the Blizzard...","orbit":5},"22873":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":7777},{"orbit":0,"id":64318}],"group":197,"skill":22873,"orbitIndex":4,"name":"Elemental Penetration","orbit":3},"11672":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11672,"stats":["+5 to any Attribute"],"isAttribute":true,"group":591,"connections":[{"orbit":0,"id":47177},{"orbit":0,"id":48030}],"orbitIndex":0,"name":"Attribute","orbit":0},"65173":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds","skill":65173,"stats":["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating","40% less Evasion Rating"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":139,"isNotable":true,"name":"...and Protect me from Harm","orbit":9},"8143":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds","skill":8143,"stats":["Gain 1 Spirit for every 6 Energy Shield on equipped Body Armour","Gain 1 Spirit for every 15 Evasion Rating on equipped Body Armour","Cannot gain Spirit from Equipment"],"ascendancyName":"Invoker","connections":[{"orbit":4,"id":16100}],"group":1033,"orbitIndex":5,"isNotable":true,"name":"Lead me through Grace...","orbit":9},"41747":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":-3,"id":61847}],"group":40,"skill":41747,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"17420":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":18717},{"orbit":0,"id":25565},{"orbit":0,"id":15356}],"group":966,"skill":17420,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"40196":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":788,"skill":40196,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"46990":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":46990,"stats":[],"ascendancyName":"Deadeye","isAscendancyStart":true,"group":1030,"connections":[{"orbit":0,"id":49165},{"orbit":0,"id":39723},{"orbit":0,"id":3987},{"orbit":0,"id":24295},{"orbit":0,"id":61461}],"orbitIndex":48,"name":"Deadeye","orbit":9},"5663":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":5663,"stats":["+2 to Maximum Endurance Charges"],"recipe":["Guilt","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":153,"orbitIndex":0,"isNotable":true,"name":"Endurance","orbit":0},"28229":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":50485}],"group":651,"skill":28229,"orbitIndex":0,"name":"Curse Area","orbit":2},"39723":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":39723,"stats":["12% increased Accuracy Rating"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":24226}],"orbitIndex":21,"name":"Accuracy","orbit":6},"3775":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":45244}],"group":785,"skill":3775,"orbitIndex":12,"name":"Life Flask Charges","orbit":2},"25055":{"stats":["2% increased Movement Speed","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":41580}],"group":951,"skill":25055,"orbitIndex":8,"name":"Attack Damage and Movement Speed","orbit":2},"61461":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":61461,"stats":["10% increased Projectile Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":2147483647,"id":42416}],"orbitIndex":24,"name":"Projectile Speed","orbit":6},"44082":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4931}],"group":289,"skill":44082,"orbitIndex":6,"name":"Energy Shield Recharge","orbit":2},"30996":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds","skill":30996,"stats":["You can use two copies of the same Support Gem in different Skills"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":298,"orbitIndex":0,"isNotable":true,"name":"Gem Studded","orbit":0},"55058":{"stats":["20% increased Melee Damage against Immobilised Enemies"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":63790}],"group":101,"skill":55058,"orbitIndex":48,"name":"Melee Damage against Immobilised","orbit":5},"1546":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":1546,"stats":["3% increased Movement Speed","25% increased Armour","25% increased maximum Energy Shield"],"recipe":["Envy","Despair","Suffering"],"connections":[],"group":393,"orbitIndex":20,"isNotable":true,"name":"Spiral into Depression","orbit":2},"56842":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":56842,"stats":["18% increased Stun Buildup"],"ascendancyName":"Titan","group":31,"connections":[{"orbit":-5,"id":59540}],"orbitIndex":0,"name":"Stun Buildup","orbit":0},"2999":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":2999,"stats":["20% increased Cast Speed when on Low Life","10% reduced Cast Speed when on Full Life"],"recipe":["Isolation","Despair","Disgust"],"connections":[],"group":157,"orbitIndex":22,"isNotable":true,"name":"Final Barrage","orbit":6},"42416":{"isMultipleChoice":true,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds","skill":42416,"stats":[],"ascendancyName":"Deadeye","connections":[],"group":1030,"orbitIndex":24,"isNotable":true,"name":"Projectile Proximity Specialisation","orbit":5},"32442":{"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":2361}],"group":1024,"skill":32442,"orbitIndex":0,"name":"Quarterstaff Stun and Knockback","orbit":0},"30839":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-3,"id":35671}],"group":896,"skill":30839,"orbitIndex":17,"name":"Attack Speed and Dexterity","orbit":3},"38614":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":38614,"stats":["12% chance for Spell Skills to fire 2 additional Projectiles"],"recipe":["Paranoia","Disgust","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":27662},{"orbit":0,"id":44201}],"group":687,"orbitIndex":20,"isNotable":true,"name":"Psychic Fragmentation","orbit":3},"64700":{"stats":["20% increased Daze Buildup with Quarterstaves","20% increased Freeze Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":61632}],"group":1023,"skill":64700,"orbitIndex":0,"name":"Quarterstaff Freeze and Daze Buildup","orbit":0},"36163":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":30390}],"group":265,"skill":36163,"orbitIndex":9,"name":"Block","orbit":2},"34984":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":663,"skill":34984,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"4577":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":3999}],"group":430,"skill":4577,"orbitIndex":8,"name":"Attack Area","orbit":7},"7302":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":7302,"stats":["Final Repeat of Spells has 40% increased Area of Effect"],"recipe":["Fear","Envy","Ire"],"connections":[{"orbit":0,"id":52615}],"group":944,"orbitIndex":0,"isNotable":true,"name":"Echoing Pulse","orbit":7},"1994":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":1994,"stats":["20% increased Warcry Speed"],"ascendancyName":"Warbringer","group":11,"connections":[{"orbit":0,"id":47097}],"orbitIndex":0,"name":"Warcry Speed","orbit":0},"44516":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":2113}],"group":1021,"skill":44516,"orbitIndex":13,"name":"Quarterstaff Speed","orbit":2},"11598":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":4536},{"orbit":0,"id":44516},{"orbit":0,"id":14267}],"group":1021,"skill":11598,"orbitIndex":0,"name":"Quarterstaff Speed","orbit":0},"34316":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":34316,"stats":["30% increased Defences while wielding a Staff","30% increased Daze Buildup with Quarterstaves","30% increased Freeze Buildup with Quarterstaves","30% increased Stun Buildup with Quarterstaves"],"recipe":["Guilt","Paranoia","Isolation"],"connections":[],"group":1021,"orbitIndex":3,"isNotable":true,"name":"One with the River","orbit":6},"48979":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":51820}],"group":151,"skill":48979,"orbitIndex":12,"name":"Totem Life","orbit":3},"52399":{"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":9444}],"group":1021,"skill":52399,"orbitIndex":38,"name":"Quarterstaff Critical Damage","orbit":5},"9444":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":9444,"stats":["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"],"recipe":["Isolation","Suffering","Disgust"],"connections":[],"group":1021,"orbitIndex":39,"isNotable":true,"name":"One with the Storm","orbit":6},"35977":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":187,"skill":35977,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"38878":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":34898}],"group":837,"skill":38878,"orbitIndex":35,"name":"Debuff Expiry","orbit":4},"4709":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":4709,"stats":["60% increased Accuracy Rating at Close Range"],"recipe":["Ire","Envy","Paranoia"],"connections":[],"group":902,"orbitIndex":19,"isNotable":true,"name":"Near Sighted","orbit":2},"31449":{"stats":["12% increased Critical Hit Chance with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":9444}],"group":1021,"skill":31449,"orbitIndex":40,"name":"Quarterstaff Critical Chance","orbit":5},"37514":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":37514,"stats":["8% increased Attack Speed with Quarterstaves","Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"],"recipe":["Envy","Disgust","Greed"],"connections":[{"orbit":0,"id":32442},{"orbit":0,"id":64700}],"group":1021,"orbitIndex":1,"isNotable":true,"name":"Whirling Assault","orbit":3},"41129":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":24338}],"group":411,"skill":41129,"orbitIndex":70,"name":"Damage against Ailments","orbit":4},"59694":{"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":52399}],"group":1020,"skill":59694,"orbitIndex":0,"name":"Quarterstaff Critical Damage","orbit":0},"326":{"stats":["12% increased Critical Hit Chance with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":31449}],"group":1019,"skill":326,"orbitIndex":0,"name":"Quarterstaff Critical Chance","orbit":0},"328":{"stats":["10% increased Accuracy Rating with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":25992},{"orbit":0,"id":60764},{"orbit":0,"id":21112}],"group":1018,"skill":328,"orbitIndex":0,"name":"Bow Accuracy Rating","orbit":0},"11292":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":7,"id":2575},{"orbit":-7,"id":56757}],"group":77,"skill":11292,"orbitIndex":0,"name":"Totem Placement Speed","orbit":2},"256":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":-7,"id":13694}],"group":237,"skill":256,"orbitIndex":1,"name":"Link Effect","orbit":2},"27626":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":27626,"stats":["40% increased effect of Arcane Surge on you"],"recipe":["Despair","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":15628}],"group":251,"orbitIndex":12,"isNotable":true,"name":"Touch the Arcane","orbit":5},"28044":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":28044,"stats":["50% increased Cold Damage while affected by Herald of Ice","50% increased Fire Damage while affected by Herald of Ash","50% increased Lightning Damage while affected by Herald of Thunder"],"recipe":["Disgust","Isolation","Suffering"],"connections":[{"orbit":0,"id":178},{"orbit":0,"id":28835}],"group":1017,"orbitIndex":12,"isNotable":true,"name":"Coming Calamity","orbit":3},"39607":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":-2,"id":2559},{"orbit":0,"id":45713}],"group":916,"skill":39607,"orbitIndex":16,"name":"Flask Charges Gained","orbit":2},"23227":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":23227,"stats":["30% increased Melee Damage when on Full Life","16% increased Attack Speed if you haven't Attacked Recently"],"recipe":["Greed","Ire","Envy"],"connections":[],"group":377,"orbitIndex":0,"isNotable":true,"name":"Initiative","orbit":4},"46402":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":18923},{"orbit":0,"id":37220},{"orbit":0,"id":50342}],"group":750,"skill":46402,"orbitIndex":13,"name":"Evasion","orbit":7},"8157":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":8157,"orbitIndex":18,"name":"Herald Reservation","orbit":2},"16691":{"stats":["Leech Life 15% faster"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-5,"id":21716}],"group":281,"skill":16691,"orbitIndex":3,"name":"Life Leech Speed","orbit":7},"56847":{"stats":["12% increased Damage while affected by a Herald"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":56847,"orbitIndex":0,"name":"Herald Damage","orbit":7},"51820":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51820,"stats":["12% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Despair","Suffering","Suffering"],"connections":[{"orbit":0,"id":21127}],"group":151,"orbitIndex":36,"isNotable":true,"name":"Ancestral Conduits","orbit":6},"22152":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":10382},{"orbit":0,"id":15304}],"group":788,"skill":22152,"orbitIndex":12,"name":"Cast Speed","orbit":2},"60480":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":60480,"orbitIndex":6,"name":"Herald Reservation","orbit":2},"28835":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":28835,"stats":["12% increased Damage while affected by a Herald"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1017,"connections":[{"orbit":0,"id":56847},{"orbit":0,"id":60480},{"orbit":0,"id":8157}],"orbitIndex":0,"name":"Herald Damage","orbit":0},"5407":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":56910}],"group":488,"skill":5407,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"13783":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","connections":[{"orbit":0,"id":28992}],"group":690,"skill":13783,"orbitIndex":19,"name":"Ailment Chance","orbit":7},"62001":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":62001,"stats":["25% increased Critical Damage Bonus with Daggers"],"recipe":["Envy","Ire","Isolation"],"connections":[],"group":1016,"orbitIndex":1,"isNotable":true,"name":"Backstabbing","orbit":2},"60013":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":57776}],"group":193,"skill":60013,"orbitIndex":8,"name":"Energy Shield","orbit":3},"62986":{"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":4,"id":60173}],"group":826,"skill":62986,"orbitIndex":17,"name":"One Handed Accuracy","orbit":7},"1352":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":1352,"stats":["3% increased maximum Life","30% increased Stun Threshold"],"recipe":["Fear","Despair","Paranoia"],"connections":[{"orbit":0,"id":53216}],"group":136,"orbitIndex":10,"isNotable":true,"name":"Unbending","orbit":7},"46604":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":7,"id":2138}],"group":393,"skill":46604,"orbitIndex":17,"name":"Chaos Damage","orbit":7},"4423":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":4423,"stats":["Critical Hits with Daggers have a 25% chance to Poison the Enemy"],"recipe":["Ire","Despair","Suffering"],"connections":[{"orbit":0,"id":54058}],"group":1016,"orbitIndex":7,"isNotable":true,"name":"Coated Knife","orbit":2},"35755":{"stats":["10% increased Critical Damage Bonus with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":54058}],"group":1016,"skill":35755,"orbitIndex":16,"name":"Dagger Critical Damage","orbit":2},"17882":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":17882,"stats":["25% reduced Grenade fuse duration"],"recipe":["Paranoia","Ire","Despair"],"connections":[{"orbit":0,"id":33596}],"group":605,"orbitIndex":2,"isNotable":true,"name":"Volatile Grenades","orbit":7},"41657":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":273,"skill":41657,"orbitIndex":10,"name":"Armour","orbit":3},"54058":{"stats":["10% increased Critical Damage Bonus with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":62001}],"group":1016,"skill":54058,"orbitIndex":0,"name":"Dagger Critical Damage","orbit":0},"19573":{"stats":["10% chance for Projectiles to Pierce Enemies within 3m distance of you"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-5,"id":38479},{"orbit":-3,"id":19342}],"group":613,"skill":19573,"orbitIndex":11,"name":"Projectile Pierce","orbit":7},"56366":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":56366,"stats":["5% increased Attack Speed with Daggers","15% increased Critical Hit Chance with Daggers"],"recipe":["Suffering","Greed","Despair"],"connections":[{"orbit":0,"id":35755}],"group":1016,"orbitIndex":16,"isNotable":true,"name":"Silent Shiv","orbit":3},"51583":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1014,"skill":51583,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"43829":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":43829,"stats":["25% increased chance to inflict Ailments with Projectiles"],"recipe":["Guilt","Fear","Greed"],"connections":[{"orbit":0,"id":51944},{"orbit":0,"id":45576}],"group":547,"orbitIndex":0,"isNotable":true,"name":"Advanced Munitions","orbit":0},"54983":{"stats":["15% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":39369}],"group":1014,"skill":54983,"orbitIndex":8,"name":"Attack Critical Chance","orbit":7},"51169":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":51169,"stats":["15% increased Energy Shield Recovery rate"],"recipe":["Despair","Ire","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":519,"orbitIndex":21,"isNotable":true,"name":"Soul Bloom","orbit":7},"48714":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":47354}],"group":234,"skill":48714,"orbitIndex":7,"name":"Melee Attack Speed","orbit":2},"39204":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds","skill":39204,"stats":["1% increased Effect of Arcane Surge on you per 15 maximum Mana"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":48,"isNotable":true,"name":"Force of Will","orbit":8},"23040":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":38493}],"group":1014,"skill":23040,"orbitIndex":20,"name":"Critical Damage","orbit":7},"13407":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":13407,"stats":["35% increased Critical Damage Bonus","+10 to Strength"],"recipe":["Isolation","Paranoia","Fear"],"connections":[{"orbit":-3,"id":23040},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":15,"isNotable":true,"name":"Heartbreaking","orbit":2},"2491":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":2491,"stats":[],"group":217,"connections":[{"orbit":0,"id":28175}],"orbitIndex":10,"name":"Jewel Socket","orbit":1},"19680":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":50558}],"group":342,"skill":19680,"orbitIndex":54,"name":"Critical Chance","orbit":4},"52348":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":52348,"stats":["20% increased Totem Damage","6% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Suffering","Suffering","Ire"],"connections":[{"orbit":-5,"id":51206},{"orbit":0,"id":34487}],"group":314,"orbitIndex":15,"isNotable":true,"name":"Carved Earth","orbit":7},"2138":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":2138,"stats":["29% increased Chaos Damage","10% increased Global Defences"],"recipe":["Greed","Isolation","Envy"],"connections":[],"group":393,"orbitIndex":12,"isNotable":true,"name":"Spiral into Insanity","orbit":2},"33914":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":21935}],"group":193,"skill":33914,"orbitIndex":2,"name":"Energy Shield and Mana Regeneration","orbit":3},"37746":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":6544}],"group":243,"skill":37746,"orbitIndex":19,"name":"Ignite Chance","orbit":7},"10245":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":234,"skill":10245,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"18146":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":18146,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":288,"connections":[{"orbit":2147483647,"id":30996}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"1579":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":1579,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Chronomancer","group":230,"connections":[{"orbit":-9,"id":10987}],"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"4925":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":7,"id":19779}],"group":1013,"skill":4925,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"40399":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":40399,"stats":["25% chance for Trigger skills to refund half of Energy Spent"],"recipe":["Isolation","Guilt","Paranoia"],"connections":[{"orbit":0,"id":20641}],"group":855,"orbitIndex":6,"isNotable":true,"name":"Energise","orbit":5},"32600":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":6304},{"orbit":-7,"id":20303}],"group":211,"skill":32600,"orbitIndex":12,"name":"Life Regeneration","orbit":2},"29517":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29517,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":32701},{"orbit":0,"id":37695}],"orbitIndex":24,"name":"Attribute","orbit":6},"43036":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":2244}],"group":251,"skill":43036,"orbitIndex":4,"name":"Mana Regeneration","orbit":7},"19779":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":2,"id":63891}],"group":1013,"skill":19779,"orbitIndex":2,"name":"Chaos Damage","orbit":2},"38993":{"stats":["16% increased Critical Damage Bonus with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":21112}],"group":1012,"skill":38993,"orbitIndex":0,"name":"Bow Critical Damage","orbit":0},"20429":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":28797}],"group":1011,"skill":20429,"orbitIndex":62,"name":"Dagger Speed","orbit":6},"3419":{"stats":["10% increased Damage with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":20429},{"orbit":2,"id":30973}],"group":1011,"skill":3419,"orbitIndex":59,"name":"Dagger Damage","orbit":6},"44419":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":7,"id":7251},{"orbit":-7,"id":29788}],"group":336,"skill":44419,"orbitIndex":6,"name":"Life Leech","orbit":7},"52215":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":56366}],"group":1010,"skill":52215,"orbitIndex":0,"name":"Dagger Critical Chance","orbit":0},"63600":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":36364}],"group":976,"skill":63600,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"44357":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":44357,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-9,"id":63713}],"orbitIndex":34,"name":"Critical Chance","orbit":9},"25586":{"stats":["16% increased Critical Damage Bonus with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":38993}],"group":1006,"skill":25586,"orbitIndex":35,"name":"Bow Critical Damage","orbit":6},"34300":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":34300,"stats":["20% increased Mana Regeneration Rate","8% reduced Mana Cost of Skills"],"recipe":["Disgust","Disgust","Ire"],"connections":[{"orbit":0,"id":45481},{"orbit":0,"id":13862}],"group":761,"orbitIndex":22,"isNotable":true,"name":"Conservative Casting","orbit":2},"21112":{"stats":["10% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":31055}],"group":1006,"skill":21112,"orbitIndex":57,"name":"Bow Damage","orbit":4},"21788":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":8573},{"orbit":0,"id":34612}],"group":1006,"skill":21788,"orbitIndex":21,"name":"Bow Damage","orbit":5},"57774":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":49657}],"group":551,"skill":57774,"orbitIndex":21,"name":"Dual Wielding Speed","orbit":3},"31991":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":36070}],"group":751,"skill":31991,"orbitIndex":15,"name":"Attack Area","orbit":7},"44141":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":18969},{"orbit":0,"id":21788}],"group":1006,"skill":44141,"orbitIndex":7,"name":"Bow Speed","orbit":3},"38814":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38814,"stats":["+5 to any Attribute"],"isAttribute":true,"group":654,"connections":[{"orbit":0,"id":19288},{"orbit":0,"id":62341},{"orbit":0,"id":11980}],"orbitIndex":0,"name":"Attribute","orbit":0},"11526":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":11526,"stats":["Arrows gain Critical Hit Chance as they travel farther, up to 60% increased Critical Hit Chance"],"recipe":["Isolation","Suffering","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":38993}],"group":1006,"orbitIndex":30,"isNotable":true,"name":"Sniper","orbit":5},"9485":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":9485,"stats":["+5 to any Attribute"],"isAttribute":true,"group":554,"connections":[{"orbit":0,"id":60685}],"orbitIndex":0,"name":"Attribute","orbit":0},"44683":{"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","classesStart":["Shadow","Monk"],"skill":44683,"stats":[],"group":577,"connections":[{"orbit":0,"id":5162},{"orbit":0,"id":45406},{"orbit":0,"id":50198},{"orbit":0,"id":11495},{"orbit":0,"id":9994},{"orbit":0,"id":74},{"orbit":0,"id":52980}],"orbitIndex":0,"name":"SIX","orbit":0},"60764":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":60764,"stats":["Increases and Reductions to Projectile Speed also apply to Damage with Bows"],"recipe":["Isolation","Suffering","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1006,"orbitIndex":12,"isNotable":true,"name":"Feathered Fletching","orbit":5},"17029":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":17029,"stats":["Defend with 200% of Armour against Critical Hits","+15 to Strength"],"recipe":["Fear","Envy","Guilt"],"connections":[{"orbit":0,"id":45992}],"group":273,"orbitIndex":12,"isNotable":true,"name":"Blade Catcher","orbit":2},"46017":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":54962}],"group":79,"skill":46017,"orbitIndex":8,"name":"Life Regeneration while Stationary","orbit":7},"24958":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24958,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":-4,"id":52464},{"orbit":6,"id":41877}],"orbitIndex":30,"name":"Attribute","orbit":6},"28823":{"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":21111},{"orbit":5,"id":59303}],"group":881,"skill":28823,"orbitIndex":23,"name":"Charm Activation Chance","orbit":7},"38628":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":38628,"stats":["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"],"recipe":["Despair","Isolation","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1003,"orbitIndex":19,"isNotable":true,"name":"Escalating Toxins","orbit":2},"19003":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":12166},{"orbit":0,"id":3128}],"group":862,"skill":19003,"orbitIndex":0,"name":"Cold Damage","orbit":0},"61796":{"stats":["20% increased Armour Break Duration"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":-4,"id":8260}],"group":127,"skill":61796,"orbitIndex":20,"name":"Armour Break Duration","orbit":7},"1723":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":53595},{"orbit":0,"id":9703}],"group":1003,"skill":1723,"orbitIndex":22,"name":"Poison Duration","orbit":3},"59822":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":59822,"stats":[],"ascendancyName":"Blood Mage","isAscendancyStart":true,"group":647,"connections":[{"orbit":0,"id":7656}],"orbitIndex":0,"name":"Blood Mage","orbit":9},"58426":{"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":58426,"stats":["50% increased Blind Effect"],"recipe":["Paranoia","Guilt","Paranoia"],"connections":[{"orbit":0,"id":34401}],"group":961,"orbitIndex":20,"isNotable":true,"name":"Pocket Sand","orbit":2},"46343":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"orbit":0,"id":13708},{"orbit":0,"id":25513},{"orbit":0,"id":47363}],"group":467,"skill":46343,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"43677":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":43677,"stats":["25% chance for Attacks to Maim on Hit against Poisoned Enemies","25% increased Magnitude of Poison you inflict"],"recipe":["Envy","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":769,"orbitIndex":0,"isNotable":true,"name":"Crippling Toxins","orbit":0},"53595":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":7,"id":29458},{"orbit":0,"id":38628}],"group":1003,"skill":53595,"orbitIndex":19,"name":"Poison Damage","orbit":3},"61267":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds","skill":61267,"stats":["Maximum 10 Demonflame"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":60,"isNotable":true,"name":"Mastered Darkness","orbit":6},"58038":{"stats":["25% increased Attack Damage while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":31566}],"group":480,"skill":58038,"orbitIndex":3,"name":"Attack Damage while Surrounded","orbit":3},"15986":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":15986,"stats":["25% reduced Poison Duration","Targets can be affected by +1 of your Poisons at the same time"],"recipe":["Greed","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":0,"id":6030}],"group":1003,"orbitIndex":5,"isNotable":true,"name":"Building Toxins","orbit":2},"21885":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":1352}],"group":136,"skill":21885,"orbitIndex":14,"name":"Stun Threshold and Strength","orbit":7},"51702":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[],"group":215,"skill":51702,"orbitIndex":16,"name":"Strength","orbit":7},"61333":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":46197}],"group":903,"skill":61333,"orbitIndex":11,"name":"Critical Chance","orbit":2},"60210":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":0,"id":63431}],"group":958,"skill":60210,"orbitIndex":9,"name":"Poison Mastery","orbit":1},"14226":{"icon":"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds","skill":14226,"isKeystone":true,"stats":["25% more Skill Speed while Off Hand is empty and you have","a One-Handed Martial Weapon equipped in your Main Hand"],"group":968,"connections":[],"orbitIndex":0,"name":"Dance with Death","orbit":0},"56265":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":56265,"stats":["60% increased Critical Damage Bonus","20% reduced Critical Hit Chance"],"recipe":["Greed","Envy","Isolation"],"connections":[{"orbit":0,"id":42802}],"group":1002,"orbitIndex":1,"isNotable":true,"name":"Throatseeker","orbit":2},"45612":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":45612,"stats":["12% increased Block chance","2 Mana gained when you Block"],"recipe":["Greed","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"orbit":0,"id":53901}],"group":261,"orbitIndex":12,"isNotable":true,"name":"Defensive Reflexes","orbit":2},"16816":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":16816,"stats":["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"],"recipe":["Isolation","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":747,"orbitIndex":0,"isNotable":true,"name":"Pinpoint Shot","orbit":0},"35901":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35901,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":-6,"id":12120},{"orbit":6,"id":62464},{"orbit":0,"id":34015},{"orbit":0,"id":6951}],"orbitIndex":60,"name":"Attribute","orbit":6},"25535":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":980,"skill":25535,"orbitIndex":8,"name":"Shield Mastery","orbit":3},"21537":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":21537,"stats":["+2 to Maximum Frenzy Charges"],"recipe":["Fear","Guilt","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1000,"orbitIndex":16,"isNotable":true,"name":"Fervour","orbit":2},"57970":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":55995},{"orbit":0,"id":21537}],"group":1000,"skill":57970,"orbitIndex":10,"name":"Frenzy Charge Duration","orbit":2},"55463":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":27875}],"group":839,"skill":55463,"orbitIndex":14,"name":"Shock Chance","orbit":3},"7628":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7628,"stats":["+5 to any Attribute"],"isAttribute":true,"group":427,"connections":[{"orbit":0,"id":41646},{"orbit":0,"id":55231}],"orbitIndex":30,"name":"Attribute","orbit":6},"41873":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[],"group":1000,"skill":41873,"orbitIndex":22,"name":"Frenzy Charge Duration","orbit":2},"28862":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":281,"skill":28862,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"8531":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":8531,"stats":["100% increased Critical Hit Chance against Enemies on Full Life"],"recipe":["Despair","Guilt","Guilt"],"connections":[{"orbit":0,"id":51534}],"group":332,"orbitIndex":0,"isNotable":true,"name":"Leaping Ambush","orbit":0},"4031":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":4031,"stats":["Gain 100% of Maximum Energy Shield as additional Freeze Threshold"],"recipe":["Ire","Paranoia","Fear"],"connections":[{"orbit":0,"id":50403}],"group":947,"orbitIndex":15,"isNotable":true,"name":"Icebreaker","orbit":3},"47722":{"stats":["16% increased Damage with Warcries"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":6514}],"group":90,"skill":47722,"orbitIndex":4,"name":"Warcry Damage","orbit":3},"27658":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":21540}],"group":546,"skill":27658,"orbitIndex":6,"name":"Life Recoup","orbit":7},"20830":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":20830,"stats":["10% increased Area of Effect"],"ascendancyName":"Witchhunter","group":179,"connections":[{"orbit":6,"id":37078}],"orbitIndex":0,"name":"Area of Effect","orbit":0},"19236":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":19236,"stats":["30% increased Armour","Defend with 120% of Armour against Projectile Attacks"],"recipe":["Ire","Fear","Despair"],"connections":[],"group":66,"orbitIndex":0,"isNotable":true,"name":"Projectile Bulwark","orbit":0},"54998":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":54998,"stats":["20% increased Skill Effect Duration","15% increased Duration of Damaging Ailments on Enemies"],"recipe":["Despair","Disgust","Guilt"],"connections":[{"orbit":0,"id":29993}],"group":158,"orbitIndex":5,"isNotable":true,"name":"Protraction","orbit":2},"35048":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":43650}],"group":113,"skill":35048,"orbitIndex":12,"name":"Attack Critical Chance","orbit":2},"30808":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30808,"stats":["+5 to any Attribute"],"isAttribute":true,"group":997,"connections":[{"orbit":0,"id":14267},{"orbit":-4,"id":28101},{"orbit":0,"id":29959}],"orbitIndex":0,"name":"Attribute","orbit":0},"27270":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[],"group":553,"skill":27270,"orbitIndex":22,"name":"Attack Damage and Accuracy","orbit":7},"2582":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2582,"stats":["+5 to any Attribute"],"isAttribute":true,"group":996,"connections":[{"orbit":0,"id":48116},{"orbit":0,"id":41873}],"orbitIndex":0,"name":"Attribute","orbit":0},"15775":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15775,"stats":["+5 to any Attribute"],"isAttribute":true,"group":995,"connections":[{"orbit":0,"id":30808},{"orbit":0,"id":28976}],"orbitIndex":0,"name":"Attribute","orbit":0},"62588":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":50609}],"group":482,"skill":62588,"orbitIndex":0,"name":"Life Mastery","orbit":0},"27303":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":27303,"stats":["10% reduced maximum Mana","+10 to Strength","35% increased Critical Hit Chance"],"recipe":["Ire","Guilt","Despair"],"connections":[{"orbit":0,"id":43142}],"group":184,"orbitIndex":16,"isNotable":true,"name":"Vulgar Methods","orbit":7},"30973":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":49320}],"group":994,"skill":30973,"orbitIndex":34,"name":"Dagger Critical Chance","orbit":6},"59425":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":23939}],"group":381,"skill":59425,"orbitIndex":16,"name":"Life Recoup","orbit":7},"1773":{"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":4,"id":51213}],"group":781,"skill":1773,"orbitIndex":0,"name":"Ailment Effect and Duration","orbit":0},"49320":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":52215}],"group":994,"skill":49320,"orbitIndex":31,"name":"Dagger Critical Chance","orbit":6},"7888":{"stats":["14% increased Damage with Unarmed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":3,"id":3640},{"orbit":2,"id":32664}],"group":993,"skill":7888,"orbitIndex":13,"name":"Unarmed Damage","orbit":3},"28963":{"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","skill":28963,"stats":["25% increased Evasion if you have Hit an Enemy Recently","50% increased maximum Dash Distance with Unarmed Attack Skills"],"recipe":["Guilt","Greed","Despair"],"connections":[{"orbit":4,"id":17724}],"group":993,"orbitIndex":66,"isNotable":true,"name":"Way of the Wind","orbit":4},"62464":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":7,"id":17854}],"group":850,"skill":62464,"orbitIndex":22,"name":"Evasion","orbit":3},"56876":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":46380}],"group":774,"skill":56876,"orbitIndex":6,"name":"Energy Shield if Consumed Power Charge","orbit":2},"25557":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":25557,"stats":["+5 to any Attribute"],"isAttribute":true,"group":712,"connections":[{"orbit":0,"id":29763},{"orbit":0,"id":4059}],"orbitIndex":16,"name":"Attribute","orbit":6},"19112":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":36358}],"group":448,"skill":19112,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"57571":{"stats":["30% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","connections":[{"orbit":-3,"id":37905}],"group":990,"skill":57571,"orbitIndex":6,"name":"Fire Penetration","orbit":2},"37905":{"stats":["30% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","connections":[],"group":990,"skill":37905,"orbitIndex":2,"name":"Fire Penetration","orbit":3},"43867":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":2,"id":10423}],"group":990,"skill":43867,"orbitIndex":23,"name":"Fire Penetration","orbit":7},"64637":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":32543}],"group":989,"skill":64637,"orbitIndex":15,"name":"Slow Effect on You","orbit":3},"60899":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":32543}],"group":989,"skill":60899,"orbitIndex":23,"name":"Slow Effect on You","orbit":3},"16626":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":16626,"stats":["15% increased Area of Effect if you have Stunned an Enemy Recently","15% increased Area of Effect for Attacks"],"recipe":["Paranoia","Envy","Disgust"],"connections":[{"orbit":0,"id":53089},{"orbit":0,"id":62023}],"group":159,"orbitIndex":20,"isNotable":true,"name":"Impact Area","orbit":2},"32543":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":32543,"stats":["3% increased Movement Speed","20% reduced Slowing Potency of Debuffs on You"],"connections":[],"group":989,"orbitIndex":0,"isNotable":true,"name":"Unhindered","orbit":0},"46016":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":46016,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":7,"id":24039}],"orbitIndex":54,"name":"Life","orbit":6},"31292":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":315,"skill":31292,"orbitIndex":0,"name":"Mace Mastery","orbit":0},"36894":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":61938}],"group":149,"skill":36894,"orbitIndex":20,"name":"Bleed Chance","orbit":3},"32278":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":297,"skill":32278,"orbitIndex":11,"name":"Minion Offence Mastery","orbit":7},"54204":{"stats":["20% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":-2,"id":38342}],"group":988,"skill":54204,"orbitIndex":18,"name":"Daze Buildup","orbit":2},"49512":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49512,"stats":["+5 to any Attribute"],"isAttribute":true,"group":465,"connections":[{"orbit":0,"id":59362},{"orbit":0,"id":15885},{"orbit":0,"id":5936}],"orbitIndex":0,"name":"Attribute","orbit":0},"38342":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":38342,"stats":["25% increased Critical Hit Chance against Dazed Enemies","25% increased Damage against Dazed Enemies","25% increased Daze Buildup"],"recipe":["Paranoia","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":988,"orbitIndex":0,"isNotable":true,"name":"Stupefy","orbit":1},"24321":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24321,"stats":["+5 to any Attribute"],"isAttribute":true,"group":738,"connections":[{"orbit":0,"id":25557},{"orbit":0,"id":26804}],"orbitIndex":0,"name":"Attribute","orbit":0},"19341":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":590,"skill":19341,"orbitIndex":16,"name":"Damage against Enemies on Low Life","orbit":3},"22975":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22975,"stats":["+5 to any Attribute"],"isAttribute":true,"group":170,"connections":[{"orbit":0,"id":27439},{"orbit":0,"id":53719},{"orbit":0,"id":51702}],"orbitIndex":0,"name":"Attribute","orbit":0},"18750":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":771,"skill":18750,"orbitIndex":12,"name":"Flask Mastery","orbit":2},"27501":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":435,"skill":27501,"orbitIndex":44,"name":"Life Regeneration","orbit":4},"37220":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":17955}],"group":750,"skill":37220,"orbitIndex":9,"name":"Evasion","orbit":2},"39935":{"icon":"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds","skill":39935,"isKeystone":true,"stats":["All bonuses from an Equipped Amulet apply to your Minions instead of you"],"group":348,"connections":[{"orbit":0,"id":44344}],"orbitIndex":0,"name":"Necromantic Talisman","orbit":0},"22909":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":21415}],"group":193,"skill":22909,"orbitIndex":14,"name":"Stun Threshold from Energy Shield","orbit":3},"49976":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":62936},{"orbit":-3,"id":47976}],"group":891,"skill":49976,"orbitIndex":5,"name":"Damage from Mana","orbit":7},"9405":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":59720}],"group":982,"skill":9405,"orbitIndex":12,"name":"Evasion","orbit":7},"14539":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":44776}],"group":982,"skill":14539,"orbitIndex":4,"name":"Evasion","orbit":7},"3209":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-6,"id":59720},{"orbit":4,"id":65091}],"group":982,"skill":3209,"orbitIndex":16,"name":"Evasion","orbit":7},"44776":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":48773},{"orbit":5,"id":1841}],"group":982,"skill":44776,"orbitIndex":18,"name":"Evasion","orbit":5},"38728":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":14539}],"group":982,"skill":38728,"orbitIndex":0,"name":"Evasion","orbit":7},"5802":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":5802,"stats":["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m","Projectiles deal 25% increased Damage with Hits against Enemies within 2m"],"recipe":["Disgust","Greed","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":900,"orbitIndex":0,"isNotable":true,"name":"Stand and Deliver","orbit":0},"65091":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":51707}],"group":982,"skill":65091,"orbitIndex":20,"name":"Evasion","orbit":7},"61142":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":38365}],"group":99,"skill":61142,"orbitIndex":14,"name":"Recover Life on consuming Endurance Charge","orbit":2},"43893":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":55101},{"orbit":0,"id":1433}],"group":197,"skill":43893,"orbitIndex":10,"name":"Elemental Damage","orbit":3},"38668":{"stats":["3% increased Unarmed Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":-3,"id":28963},{"orbit":2,"id":32664}],"group":981,"skill":38668,"orbitIndex":0,"name":"Unarmed Attack Speed","orbit":0},"37484":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds","skill":37484,"isKeystone":true,"stats":["Can Evade all Hits","70% less Evasion Rating"],"group":1001,"connections":[],"orbitIndex":0,"name":"Acrobatics","orbit":0},"7062":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":7062,"stats":["15% chance for Crossbow Attacks to not consume a bolt"],"recipe":["Paranoia","Isolation","Despair"],"connections":[{"orbit":0,"id":16680},{"orbit":0,"id":61432}],"group":612,"orbitIndex":19,"isNotable":true,"name":"Reusable Ammunition","orbit":4},"61935":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":4624}],"group":330,"skill":61935,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"35043":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[],"group":980,"skill":35043,"orbitIndex":36,"name":"Shield Evasion","orbit":4},"6842":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":18472}],"group":878,"skill":6842,"orbitIndex":9,"name":"Stun and Freeze Buildup","orbit":3},"10742":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":41991}],"group":278,"skill":10742,"orbitIndex":4,"name":"Minion Attack and Cast Speed","orbit":3},"50562":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":50562,"stats":["45% increased Critical Damage Bonus","10% increased Mana Cost of Skills","+10 to Strength"],"recipe":["Guilt","Despair","Envy"],"connections":[{"orbit":0,"id":43142}],"group":184,"orbitIndex":8,"isNotable":true,"name":"Barbaric Strength","orbit":7},"28153":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds","skill":28153,"stats":["Recoup Effects instead occur over 4 seconds"],"ascendancyName":"Chronomancer","connections":[],"group":199,"orbitIndex":6,"isNotable":true,"name":"The Rapid River","orbit":2},"37616":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":974,"skill":37616,"orbitIndex":45,"name":"Trap Mastery","orbit":5},"4238":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":4238,"stats":["6% increased Attack Speed with One Handed Melee Weapons","15% increased Accuracy Rating with One Handed Melee Weapons","+10 to Strength and Dexterity"],"recipe":["Ire","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":826,"orbitIndex":0,"isNotable":true,"name":"Versatile Arms","orbit":0},"33978":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":33978,"stats":["10% increased Block chance","15% reduced Slowing Potency of Debuffs on You"],"recipe":["Fear","Paranoia","Ire"],"connections":[{"orbit":7,"id":31609},{"orbit":0,"id":62581}],"group":265,"orbitIndex":21,"isNotable":true,"name":"Unstoppable Barrier","orbit":7},"39594":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":51248},{"orbit":0,"id":53294}],"group":327,"skill":39594,"orbitIndex":3,"name":"Fire Penetration","orbit":2},"13233":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":13233,"stats":["10% increased Area of Effect","10% increased Area Damage"],"recipe":["Paranoia","Greed","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":62978}],"group":350,"orbitIndex":0,"isNotable":true,"name":"Radial Force","orbit":0},"6744":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6744,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":49357}],"orbitIndex":6,"name":"Attribute","orbit":6},"20414":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":20414,"stats":["Attack Skills deal 25% increased Damage while holding a Shield","75% increased Evasion from Equipped Shield"],"recipe":["Ire","Despair","Despair"],"connections":[{"orbit":0,"id":25535},{"orbit":0,"id":35043},{"orbit":0,"id":52410}],"group":980,"orbitIndex":31,"isNotable":true,"name":"Reprisal","orbit":4},"22219":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":52351}],"group":953,"skill":22219,"orbitIndex":16,"name":"Triggered Spell Damage","orbit":7},"32745":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":50104},{"orbit":0,"id":61179}],"group":290,"skill":32745,"orbitIndex":0,"name":"Physical Damage","orbit":0},"31366":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":3843}],"group":927,"skill":31366,"orbitIndex":15,"name":"Block","orbit":3},"29582":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":35987}],"group":658,"skill":29582,"orbitIndex":14,"name":"Accuracy","orbit":2},"13419":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":14958}],"group":720,"skill":13419,"orbitIndex":14,"name":"Critical Damage","orbit":7},"6294":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":4,"id":52429}],"group":393,"skill":6294,"orbitIndex":54,"name":"Cast Speed","orbit":4},"63830":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":63830,"stats":["Enemies you Mark take 10% increased Damage"],"recipe":["Guilt","Disgust","Isolation"],"connections":[{"orbit":-5,"id":13624},{"orbit":5,"id":45390}],"group":914,"orbitIndex":3,"isNotable":true,"name":"Marked for Sickness","orbit":3},"7023":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":978,"skill":7023,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"52537":{"stats":["10% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":978,"skill":52537,"orbitIndex":12,"name":"Cold Penetration","orbit":2},"55835":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":55835,"stats":["Damage Penetrates 15% Cold Resistance","Cold Exposure you inflict lowers Total Cold Resistance by an extra 5%"],"recipe":["Isolation","Fear","Paranoia"],"connections":[{"orbit":2147483647,"id":52537},{"orbit":-9,"id":20909},{"orbit":0,"id":7023}],"group":978,"orbitIndex":18,"isNotable":true,"name":"Exposed to the Cosmos","orbit":2},"1130":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":29611}],"group":50,"skill":1130,"orbitIndex":0,"name":"Flail Damage","orbit":0},"35911":{"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":15180}],"group":262,"skill":35911,"orbitIndex":12,"name":"Unleash Seal Generation","orbit":2},"46205":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":7,"id":2174},{"orbit":-7,"id":33209},{"orbit":-7,"id":51683}],"group":209,"skill":46205,"orbitIndex":0,"name":"Totem Damage","orbit":3},"48856":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":17882}],"group":605,"skill":48856,"orbitIndex":6,"name":"Grenade Damage","orbit":7},"3336":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":30615}],"group":977,"skill":3336,"orbitIndex":19,"name":"Critical Damage when consuming a Power Charge","orbit":2},"44359":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":584,"skill":44359,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"53405":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53405,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":17468},{"orbit":6,"id":16090},{"orbit":4,"id":26798}],"orbitIndex":42,"name":"Attribute","orbit":6},"24430":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":3601},{"orbit":0,"id":38707}],"group":138,"skill":24430,"orbitIndex":66,"name":"Elemental Damage","orbit":4},"10162":{"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":977,"skill":10162,"orbitIndex":0,"name":"Power Charge Mastery","orbit":0},"13171":{"stats":["Totems have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":5,"id":24438}],"group":258,"skill":13171,"orbitIndex":0,"name":"Totem Physical Damage Reduction","orbit":0},"8415":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds","skill":8415,"stats":["Skills gain a Base Life Cost equal to Base Mana Cost","Grants Skill: Life Remnants"],"ascendancyName":"Blood Mage","connections":[{"orbit":0,"id":62388},{"orbit":-5,"id":3165},{"orbit":0,"id":30071},{"orbit":0,"id":59342}],"group":647,"orbitIndex":0,"isNotable":true,"name":"Sanguimancy","orbit":6},"18969":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[],"group":1009,"skill":18969,"orbitIndex":0,"name":"Bow Speed","orbit":0},"45086":{"stats":["Gain 2% of Physical Damage as extra Chaos Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":34520}],"group":661,"skill":45086,"orbitIndex":21,"name":"Physical as Extra Chaos Damage","orbit":2},"18845":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":27384}},"skill":18845,"stats":["10% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-5,"id":55807}],"orbitIndex":11,"name":"Spell Damage","orbit":7},"61067":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[],"group":406,"skill":61067,"orbitIndex":21,"name":"Spell Critical Damage","orbit":2},"60735":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":60735,"stats":[],"group":975,"connections":[{"orbit":0,"id":22927}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"14505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":282,"skill":14505,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"3492":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":3492,"stats":["29% increased Chaos Damage","Enemies you Curse have -3% to Chaos Resistance"],"recipe":["Isolation","Ire","Disgust"],"connections":[{"orbit":0,"id":60313},{"orbit":0,"id":19112}],"group":448,"orbitIndex":12,"isNotable":true,"name":"Void","orbit":3},"34449":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":37688}],"group":974,"skill":34449,"orbitIndex":36,"name":"Trap Critical Chance","orbit":4},"36293":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":27785},{"orbit":0,"id":55708}],"group":581,"skill":36293,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"44490":{"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":37113}],"group":940,"skill":44490,"orbitIndex":0,"name":"Lightning Damage and Electrocute Buildup","orbit":0},"62496":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":34912}],"group":974,"skill":62496,"orbitIndex":48,"name":"Trap Damage","orbit":6},"59886":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":0,"id":23307}],"group":67,"skill":59886,"orbitIndex":23,"name":"Maximum Lightning Resistance","orbit":5},"27417":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":27417,"stats":["25% increased Trap Damage"],"recipe":["Envy","Ire","Despair"],"connections":[{"orbit":0,"id":64295},{"orbit":0,"id":37616}],"group":974,"orbitIndex":54,"isNotable":true,"name":"Destructive Apparatus","orbit":6},"10362":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":10830},{"orbit":0,"id":9163}],"group":76,"skill":10362,"orbitIndex":0,"name":"Armour","orbit":0},"11037":{"icon":"Art/2DArt/SkillIcons/ExplosiveGrenade.dds","skill":11037,"stats":["10% increased Area of Effect","10% increased Cooldown Recovery Rate"],"recipe":["Greed","Guilt","Ire"],"connections":[{"orbit":0,"id":57039}],"group":491,"orbitIndex":6,"isNotable":true,"name":"Volatile Catalyst","orbit":3},"37688":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":37688,"stats":["25% increased Trap Damage"],"recipe":["Disgust","Envy","Greed"],"connections":[{"orbit":0,"id":37616}],"group":974,"orbitIndex":36,"isNotable":true,"name":"Devestating Devices","orbit":6},"64295":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[],"group":974,"skill":64295,"orbitIndex":54,"name":"Trap Critical Chance","orbit":4},"31630":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":64474}],"group":749,"skill":31630,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"41497":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":21164}],"group":70,"skill":41497,"orbitIndex":6,"name":"Minion Life and Chaos Resistance","orbit":7},"8644":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":62496},{"orbit":0,"id":27417}],"group":974,"skill":8644,"orbitIndex":51,"name":"Trap Damage","orbit":6},"55329":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":42036}],"group":980,"skill":55329,"orbitIndex":12,"name":"Block","orbit":4},"30300":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":12565},{"orbit":0,"id":1200}],"group":38,"skill":30300,"orbitIndex":5,"name":"Armour if Hit","orbit":2},"60274":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":13293},{"orbit":0,"id":19236}],"group":66,"skill":60274,"orbitIndex":6,"name":"Armour","orbit":7},"3717":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":19998},{"orbit":0,"id":35653}],"group":570,"skill":3717,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"36027":{"stats":["1% reduced Attack Speed","15% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":2,"id":18073}],"group":134,"skill":36027,"orbitIndex":22,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"25857":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":972,"skill":25857,"orbitIndex":12,"name":"Flask Mastery","orbit":3},"30143":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":34201}],"group":790,"skill":30143,"orbitIndex":0,"name":"Block","orbit":7},"4882":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":38172},{"orbit":0,"id":51921}],"group":314,"skill":4882,"orbitIndex":3,"name":"Totem Damage","orbit":2},"61934":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":48418}],"group":322,"skill":61934,"orbitIndex":6,"name":"Stun Threshold","orbit":2},"10472":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":2147483647,"id":17687},{"orbit":3,"id":27422}],"group":972,"skill":10472,"orbitIndex":32,"name":"Mana Flask Recovery","orbit":4},"21017":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-7,"id":26969},{"orbit":7,"id":55789}],"group":184,"skill":21017,"orbitIndex":0,"name":"Critical Chance","orbit":5},"65265":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":65265,"stats":["12% increased Block chance","10 Mana gained when you Block"],"recipe":["Guilt","Envy","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[{"orbit":0,"id":17146},{"orbit":0,"id":31366}],"group":927,"orbitIndex":0,"isNotable":true,"name":"Smooth Buckler","orbit":0},"36302":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":36302,"stats":["6% increased Cast Speed"],"recipe":["Greed","Guilt","Envy"],"connections":[{"orbit":6,"id":47307}],"group":505,"orbitIndex":0,"isNotable":true,"name":"Practiced Signs","orbit":7},"6030":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":1003,"skill":6030,"orbitIndex":5,"name":"Poison Chance","orbit":3},"29246":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":22927},{"orbit":0,"id":35043}],"group":965,"skill":29246,"orbitIndex":27,"name":"Shield Evasion","orbit":6},"36070":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":14045}],"group":751,"skill":36070,"orbitIndex":45,"name":"Attack Area","orbit":4},"15270":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":964,"skill":15270,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"7378":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":65016}],"group":340,"skill":7378,"orbitIndex":21,"name":"Fire Damage","orbit":3},"16460":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16460,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[{"orbit":0,"id":28992},{"orbit":0,"id":6772}],"orbitIndex":18,"name":"Attribute","orbit":6},"37361":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":2147483647,"id":40043}],"group":457,"skill":37361,"orbitIndex":6,"name":"Bleeding Damage","orbit":1},"50629":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":3218},{"orbit":0,"id":23930},{"orbit":0,"id":24430}],"group":139,"skill":50629,"orbitIndex":0,"name":"Elemental Damage","orbit":0},"64462":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":53150}],"group":964,"skill":64462,"orbitIndex":20,"name":"Mana Leech","orbit":2},"1106":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-2,"id":44628}],"group":797,"skill":1106,"orbitIndex":0,"name":"Attack Speed","orbit":0},"17294":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-5,"id":19330},{"orbit":4,"id":27501}],"group":435,"skill":17294,"orbitIndex":16,"name":"Life Regeneration","orbit":2},"62388":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":62388,"stats":["15% chance to inflict Bleeding on Critical Hit"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":0,"id":26282}],"orbitIndex":6,"name":"Bleed on Critical Chance","orbit":5},"8246":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":37548},{"orbit":0,"id":64462}],"group":964,"skill":8246,"orbitIndex":14,"name":"Attack Damage","orbit":2},"45012":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":8246},{"orbit":0,"id":64462},{"orbit":0,"id":41017}],"group":964,"skill":45012,"orbitIndex":15,"name":"Attack Damage","orbit":3},"63431":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":63431,"stats":["30% increased Magnitude of Poison you inflict","Recover 2% of Life on Killing a Poisoned Enemy"],"recipe":["Greed","Suffering","Suffering"],"connections":[],"group":958,"orbitIndex":3,"isNotable":true,"name":"Leeching Toxins","orbit":1},"53150":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":53150,"stats":["5% increased Attack Speed","30% increased Accuracy Rating against Rare or Unique Enemies"],"recipe":["Guilt","Disgust","Ire"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":17589}],"group":964,"orbitIndex":21,"isNotable":true,"name":"Sharp Sight","orbit":3},"2334":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[{"orbit":6,"id":65091},{"orbit":-6,"id":3209}],"group":962,"skill":2334,"orbitIndex":0,"name":"Dexterity","orbit":0},"34401":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":961,"skill":34401,"orbitIndex":0,"name":"Blind Mastery","orbit":0},"14575":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[],"group":372,"skill":14575,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"26331":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":26331,"stats":["8% increased Cast Speed with Cold Skills","16% increased Skill Effect Duration"],"recipe":["Fear","Despair","Ire"],"connections":[{"orbit":0,"id":3128},{"orbit":0,"id":12166}],"group":862,"orbitIndex":18,"isNotable":true,"name":"Harsh Winter","orbit":7},"4725":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[],"group":75,"skill":4725,"orbitIndex":24,"name":"Sentinels","orbit":4},"30341":{"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":30341,"stats":["30% increased bonuses gained from Equipped Quiver"],"recipe":["Fear","Despair","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":1995},{"orbit":0,"id":37946}],"group":792,"orbitIndex":0,"isNotable":true,"name":"Master Fletching","orbit":7},"40990":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":40990,"stats":["Damage Penetrates 18% Lightning Resistance","30% increased Critical Hit Chance against enemies with Lightning Exposure"],"recipe":["Envy","Isolation","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":960,"orbitIndex":0,"isNotable":true,"name":"Exposed to the Storm","orbit":0},"57110":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":57110,"stats":["+20 to maximum Life","8% of Damage taken Recouped as Life"],"recipe":["Greed","Envy","Envy"],"connections":[{"orbit":-2,"id":62159},{"orbit":0,"id":46561}],"group":635,"orbitIndex":5,"isNotable":true,"name":"Infused Flesh","orbit":7},"64370":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":64370,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":0,"id":53396}],"orbitIndex":17,"name":"Attribute","orbit":6},"20397":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":20397,"stats":["20% increased Area of Effect for Attacks","10% increased Cooldown Recovery Rate"],"recipe":["Greed","Envy","Suffering"],"connections":[{"orbit":3,"id":4577},{"orbit":0,"id":8556}],"group":432,"orbitIndex":0,"isNotable":true,"name":"Authority","orbit":0},"17589":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":36085},{"orbit":-5,"id":64462}],"group":964,"skill":17589,"orbitIndex":2,"name":"Attack Damage","orbit":2},"58387":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":52454}],"group":393,"skill":58387,"orbitIndex":6,"name":"Chaos Damage","orbit":4},"41645":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":6490},{"orbit":0,"id":10382}],"group":805,"skill":41645,"orbitIndex":69,"name":"Physical Damage","orbit":4},"52875":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":937,"skill":52875,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"64325":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-4,"id":45304}],"group":958,"skill":64325,"orbitIndex":11,"name":"Poison Damage","orbit":3},"6078":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":61119}],"group":958,"skill":6078,"orbitIndex":1,"name":"Poison Chance","orbit":3},"54725":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":56336}],"group":859,"skill":54725,"orbitIndex":0,"name":"Curse Activation Speed and Effect","orbit":7},"8273":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":8273,"stats":["25% chance on Consuming a Shock on an Enemy to reapply it"],"recipe":["Isolation","Despair","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":25565}],"group":957,"orbitIndex":0,"isNotable":true,"name":"Endless Circuit","orbit":0},"28623":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":874,"skill":28623,"orbitIndex":0,"name":"Spell Suppression Mastery","orbit":0},"17655":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[],"group":342,"skill":17655,"orbitIndex":0,"name":"Aura Effect","orbit":0},"64312":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":-7,"id":23861},{"orbit":7,"id":54886}],"group":254,"skill":64312,"orbitIndex":2,"name":"Two Handed Damage","orbit":7},"33452":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":23192}],"group":80,"skill":33452,"orbitIndex":54,"name":"Block","orbit":5},"54340":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":213,"skill":54340,"orbitIndex":3,"name":"Armour Mastery","orbit":2},"19767":{"stats":["3% increased Attack Speed with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":35223},{"orbit":0,"id":13895}],"group":954,"skill":19767,"orbitIndex":10,"name":"Spear Attack Speed","orbit":4},"9703":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":6030}],"group":1003,"skill":9703,"orbitIndex":2,"name":"Poison Duration","orbit":3},"21225":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":38369}],"group":954,"skill":21225,"orbitIndex":16,"name":"Spear Damage","orbit":3},"18910":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":10265}],"group":954,"skill":18910,"orbitIndex":48,"name":"Spear Damage","orbit":5},"38215":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":-3,"id":61921}],"group":898,"skill":38215,"orbitIndex":4,"name":"Lightning Penetration","orbit":2},"61112":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":61112,"stats":["25% increased Damage with Spears"],"recipe":["Guilt","Paranoia","Disgust"],"connections":[{"orbit":0,"id":36071},{"orbit":0,"id":20105}],"group":954,"orbitIndex":14,"isNotable":true,"name":"Roll and Strike","orbit":5},"19342":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-3,"id":17553},{"orbit":0,"id":46296},{"orbit":0,"id":27493}],"group":613,"skill":19342,"orbitIndex":8,"name":"Projectile Damage","orbit":3},"19796":{"stats":["16% increased Attack Damage against Bleeding Enemies"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":18308}],"group":478,"skill":19796,"orbitIndex":16,"name":"Attack Damage vs Bleeding Enemies","orbit":7},"13895":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":13895,"stats":["25% increased Damage with Spears"],"recipe":["Guilt","Envy","Despair"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":10,"isNotable":true,"name":"Precise Point","orbit":5},"63585":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":63585,"stats":["50% increased Electrocute Buildup against Shocked Enemies","50% increased Shock Chance against Electrocuted Enemies"],"recipe":["Despair","Paranoia","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":736,"orbitIndex":0,"isNotable":true,"name":"Thunderstruck","orbit":0},"39990":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":39990,"stats":["20% increased Skill Effect Duration","Debuffs you inflict have 10% increased Slow Magnitude"],"recipe":["Despair","Fear","Despair"],"connections":[{"orbit":0,"id":13294}],"group":363,"orbitIndex":0,"isNotable":true,"name":"Chronomancy","orbit":2},"61396":{"stats":["16% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":10998}],"group":618,"skill":61396,"orbitIndex":9,"name":"Armour and Evasion","orbit":3},"39083":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":39083,"stats":["6% increased Skill Speed","6% of Skill Mana Costs Converted to Life Costs"],"recipe":["Guilt","Fear","Disgust"],"connections":[],"group":264,"orbitIndex":0,"isNotable":true,"name":"Blood Rush","orbit":0},"38541":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":61601}],"group":818,"skill":38541,"orbitIndex":0,"name":"Critical Chance","orbit":0},"6269":{"stats":["3% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":45990}],"group":78,"skill":6269,"orbitIndex":1,"name":"Axe Attack Speed","orbit":2},"40325":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":40325,"stats":["10% increased Global Defences","25% increased Stun Threshold"],"recipe":["Envy","Disgust","Envy"],"connections":[{"orbit":0,"id":7392},{"orbit":0,"id":48505}],"group":269,"orbitIndex":21,"isNotable":true,"name":"Resolution","orbit":3},"38369":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":18910}],"group":954,"skill":38369,"orbitIndex":48,"name":"Spear Damage","orbit":4},"23329":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":7,"id":9343},{"orbit":-7,"id":13694}],"group":255,"skill":23329,"orbitIndex":13,"name":"Link Effect","orbit":2},"38479":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":38479,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"recipe":["Ire","Paranoia","Ire"],"connections":[{"orbit":-5,"id":17553}],"group":613,"orbitIndex":20,"isNotable":true,"name":"Close Confines","orbit":2},"37548":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":37742},{"orbit":0,"id":17589}],"group":964,"skill":37548,"orbitIndex":8,"name":"Mana Leech","orbit":2},"42111":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":21387},{"orbit":0,"id":26437}],"group":98,"skill":42111,"orbitIndex":19,"name":"Armour Break","orbit":3},"35966":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":35966,"stats":["6% of Damage taken Recouped as Life","Regenerate 0.4% of Life per second if you have been Hit Recently"],"recipe":["Paranoia","Despair","Ire"],"connections":[{"orbit":0,"id":41105},{"orbit":0,"id":44316}],"group":169,"orbitIndex":4,"isNotable":true,"name":"Heart Tissue","orbit":7},"43895":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-5,"id":48670}],"group":359,"skill":43895,"orbitIndex":6,"name":"Life Regeneration on Low Life","orbit":7},"52351":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":52260}],"group":953,"skill":52351,"orbitIndex":12,"name":"Energy","orbit":2},"52410":{"stats":["15% increased Block chance","You take 5% of damage from Blocked Hits"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[],"group":980,"skill":52410,"orbitIndex":26,"name":"Block and Damage Taken from Blocked Hits","orbit":4},"8115":{"stats":["12% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981}],"group":425,"skill":8115,"orbitIndex":0,"name":"Physical Damage","orbit":0},"50626":{"stats":["+10 to Armour","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":32597}],"group":420,"skill":50626,"orbitIndex":7,"name":"Armour and Energy Shield","orbit":2},"41298":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":951,"skill":41298,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"41580":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":41580,"stats":["25% increased Attack Damage","Attacks have 25% chance to Maim on Hit"],"recipe":["Despair","Isolation","Ire"],"connections":[{"orbit":3,"id":13799},{"orbit":0,"id":41298}],"group":951,"orbitIndex":2,"isNotable":true,"name":"Maiming Strike","orbit":7},"13799":{"stats":["8% increased Attack Damage","Debuffs you inflict have 4% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":36576}],"group":951,"skill":13799,"orbitIndex":20,"name":"Attack Damage and Slow Effect","orbit":2},"24295":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":24295,"stats":["25% increased Frenzy Charge Duration"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":2147483647,"id":37336}],"orbitIndex":20,"name":"Frenzy Charge Duration","orbit":8},"54194":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":54194,"stats":["Debuffs on you expire 10% faster"],"ascendancyName":"Chronomancer","group":199,"connections":[{"orbit":0,"id":28153}],"orbitIndex":12,"name":"Debuff Expiry Rate","orbit":2},"6752":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":7378},{"orbit":4,"id":29148}],"group":340,"skill":6752,"orbitIndex":0,"name":"Fire Damage","orbit":3},"31647":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[],"group":950,"skill":31647,"orbitIndex":12,"name":"Dexterity","orbit":3},"55063":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":4,"id":51535}],"group":63,"skill":55063,"orbitIndex":5,"name":"Life Leech and Slower Leech","orbit":2},"46688":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-2,"id":4238}],"group":826,"skill":46688,"orbitIndex":0,"name":"One Handed Attack Speed","orbit":7},"21390":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":7972}],"group":153,"skill":21390,"orbitIndex":12,"name":"Endurance Charge Duration","orbit":2},"43082":{"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":43082,"stats":["3% increased Movement Speed","10% increased Skill Speed"],"recipe":["Fear","Envy","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":948,"orbitIndex":20,"isNotable":true,"name":"Acceleration","orbit":2},"5305":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":3431},{"orbit":0,"id":24287}],"group":948,"skill":5305,"orbitIndex":2,"name":"Skill Speed","orbit":1},"10029":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":10029,"stats":["Area Skills have 20% chance to Knock Enemies Back on Hit","20% increased Spell Area Damage"],"recipe":["Disgust","Paranoia","Despair"],"connections":[{"orbit":0,"id":19277}],"group":233,"orbitIndex":2,"isNotable":true,"name":"Repulsion","orbit":2},"28304":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28304,"stats":["+5 to any Attribute"],"isAttribute":true,"group":240,"connections":[{"orbit":0,"id":37258},{"orbit":0,"id":2491}],"orbitIndex":0,"name":"Attribute","orbit":0},"50403":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":947,"skill":50403,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"14110":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":22484},{"orbit":0,"id":35974}],"group":151,"skill":14110,"orbitIndex":0,"name":"Totem Damage","orbit":3},"38138":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":35688}],"group":509,"skill":38138,"orbitIndex":36,"name":"Reduced Attribute Requirements","orbit":5},"11813":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-4,"id":30456}],"group":800,"skill":11813,"orbitIndex":12,"name":"Evasion","orbit":7},"9151":{"stats":["Projectiles have 25% chance for an additional Projectile when Forking"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":42302}],"group":890,"skill":9151,"orbitIndex":18,"name":"Forking Projectiles","orbit":2},"10681":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":10681,"stats":["1% increased Damage per 1% Chance to Block"],"recipe":["Disgust","Fear","Isolation"],"connections":[{"orbit":5,"id":27581},{"orbit":0,"id":58138}],"group":52,"orbitIndex":0,"isNotable":true,"name":"Offensive Stance","orbit":4},"20091":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":46565}],"group":356,"skill":20091,"orbitIndex":43,"name":"Sword Damage","orbit":5},"33797":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":61703}],"group":95,"skill":33797,"orbitIndex":15,"name":"Shapeshifting","orbit":5},"3042":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":51871}],"group":880,"skill":3042,"orbitIndex":19,"name":"Life Mastery","orbit":2},"48531":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":13987}],"group":946,"skill":48531,"orbitIndex":8,"name":"Melee Attack Speed","orbit":1},"44423":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":25971}],"group":840,"skill":44423,"orbitIndex":1,"name":"Attack Mastery","orbit":2},"38014":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":38014,"stats":["Slam Skills have 12% increased Area of Effect"],"ascendancyName":"Titan","group":26,"connections":[{"orbit":5,"id":3762}],"orbitIndex":0,"name":"Slam Area of Effect","orbit":0},"8560":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":31273}],"group":946,"skill":8560,"orbitIndex":0,"name":"Melee Damage","orbit":1},"19074":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":946,"skill":19074,"orbitIndex":8,"name":"Attack Mastery","orbit":7},"17283":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":760,"skill":17283,"orbitIndex":0,"name":"Evasion and Energy Shield Mastery","orbit":0},"56118":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-5,"id":19341},{"orbit":0,"id":42250}],"group":590,"skill":56118,"orbitIndex":30,"name":"Damage against Enemies on Low Life","orbit":4},"1514":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":29527}],"group":945,"skill":1514,"orbitIndex":7,"name":"Attack Mastery","orbit":1},"29527":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":29527,"stats":["50% increased Critical Hit Chance against Enemies on Full Life","Cannot be Blinded while on Full Life","80% increased Damage with Hits against Enemies that are on Full Life"],"recipe":["Paranoia","Ire","Fear"],"connections":[{"orbit":0,"id":61800}],"group":945,"orbitIndex":10,"isNotable":true,"name":"First Approach","orbit":7},"60560":{"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":29527}],"group":945,"skill":60560,"orbitIndex":0,"name":"Damage vs Full Life","orbit":0},"18970":{"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":17366},{"orbit":0,"id":11938}],"group":615,"skill":18970,"orbitIndex":16,"name":"Evasion and Energy Shield","orbit":7},"57196":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":568,"skill":57196,"orbitIndex":16,"name":"Attack Speed","orbit":3},"18846":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":233,"skill":18846,"orbitIndex":6,"name":"Spell Area of Effect","orbit":3},"51561":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51561,"stats":["+5 to any Attribute"],"isAttribute":true,"group":178,"connections":[{"orbit":0,"id":25312},{"orbit":0,"id":2491}],"orbitIndex":0,"name":"Attribute","orbit":0},"46533":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":28329}],"group":878,"skill":46533,"orbitIndex":18,"name":"Stun and Freeze Buildup","orbit":2},"61800":{"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":945,"skill":61800,"orbitIndex":13,"name":"Critical Damage vs Full Life","orbit":7},"37876":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":14516},{"orbit":0,"id":26821}],"group":944,"skill":37876,"orbitIndex":45,"name":"Spell Damage","orbit":4},"33391":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":56330},{"orbit":0,"id":49661}],"group":776,"skill":33391,"orbitIndex":5,"name":"Critical Bleeding Effect","orbit":3},"25729":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":33093}],"group":944,"skill":25729,"orbitIndex":12,"name":"Cast Speed","orbit":7},"39131":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39131,"stats":["+5 to any Attribute"],"isAttribute":true,"group":83,"connections":[{"orbit":0,"id":11741}],"orbitIndex":0,"name":"Attribute","orbit":0},"52615":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":14516}],"group":944,"skill":52615,"orbitIndex":18,"name":"Spell Area of Effect","orbit":7},"14459":{"stats":["25% increased Thorns Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":3,"id":5544}],"group":171,"skill":14459,"orbitIndex":2,"name":"Thorn Critical Damage","orbit":2},"4407":{"stats":["Minions have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[],"group":353,"skill":4407,"orbitIndex":0,"name":"Minion Physical Damage Reduction","orbit":0},"28482":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":28482,"stats":["25% increased Critical Damage Bonus against Burning Enemies","10% chance to refresh Ignite Duration on Critical Hit"],"recipe":["Guilt","Isolation","Suffering"],"connections":[{"orbit":0,"id":19846}],"group":196,"orbitIndex":1,"isNotable":true,"name":"Total Incineration","orbit":7},"14516":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":944,"skill":14516,"orbitIndex":16,"name":"Spell Area of Effect","orbit":3},"45013":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":45013,"stats":["60% increased Damage with Hits against Enemies that are on Low Life","30% increased Stun Buildup against Enemies that are on Low Life"],"recipe":["Despair","Guilt","Ire"],"connections":[{"orbit":0,"id":58884}],"group":590,"orbitIndex":10,"isNotable":true,"name":"Finishing Blows","orbit":7},"65176":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":14045},{"orbit":0,"id":42250}],"group":751,"skill":65176,"orbitIndex":48,"name":"Projectile Damage","orbit":6},"7809":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":7809,"stats":["15% more Maximum Lightning Damage"],"recipe":["Isolation","Fear","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":942,"orbitIndex":0,"isNotable":true,"name":"Wild Storm","orbit":0},"62122":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":-3,"id":4295}],"group":319,"skill":62122,"orbitIndex":4,"name":"Damage from Mana","orbit":3},"44951":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":5777}],"group":342,"skill":44951,"orbitIndex":9,"name":"Minion Damage","orbit":4},"49370":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":49370,"stats":["30% increased Critical Hit Chance with Flails","20% increased Critical Damage Bonus with Flails"],"recipe":["Envy","Greed","Suffering"],"connections":[{"orbit":0,"id":6502}],"group":41,"orbitIndex":15,"isNotable":true,"name":"Morning Star","orbit":2},"34912":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":4664}],"group":974,"skill":34912,"orbitIndex":45,"name":"Trap Damage","orbit":6},"56640":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":-3,"id":10398}],"group":479,"skill":56640,"orbitIndex":2,"name":"Spell Critical Damage","orbit":7},"60404":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":60404,"stats":["30% increased Stun Buildup","Damage with Hits is Lucky against Heavy Stunned Enemies"],"recipe":["Ire","Suffering","Suffering"],"connections":[{"orbit":0,"id":20691},{"orbit":0,"id":25011}],"group":362,"orbitIndex":14,"isNotable":true,"name":"Perfect Opportunity","orbit":2},"48519":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":28272}],"group":771,"skill":48519,"orbitIndex":2,"name":"Flask Duration","orbit":2},"20165":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":20165,"stats":["Mark Skills have 60% increased Skill Effect Duration"],"recipe":["Greed","Disgust","Disgust"],"connections":[{"orbit":3,"id":2656},{"orbit":-3,"id":24347}],"group":782,"orbitIndex":3,"isNotable":true,"name":"No Escape","orbit":3},"31286":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":16140}],"group":938,"skill":31286,"orbitIndex":14,"name":"Physical","orbit":3},"55250":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-4,"id":56649},{"orbit":4,"id":41669}],"group":497,"skill":55250,"orbitIndex":30,"name":"Cold Penetration","orbit":4},"11433":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":-6,"id":24630}],"group":48,"skill":11433,"orbitIndex":0,"name":"Fire Damage","orbit":7},"16140":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":16013}],"group":938,"skill":16140,"orbitIndex":10,"name":"Daze Buildup","orbit":2},"35173":{"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":1599}],"group":938,"skill":35173,"orbitIndex":22,"name":"Physical Damage and Critical Chance","orbit":7},"1599":{"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":31286}],"group":938,"skill":1599,"orbitIndex":18,"name":"Physical Damage and Critical Chance","orbit":2},"58884":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":590,"skill":58884,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"27491":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":27491,"stats":["40% increased maximum Energy Shield","10% reduced maximum Life"],"recipe":["Greed","Paranoia","Isolation"],"connections":[],"group":412,"orbitIndex":24,"isNotable":true,"name":"Heavy Buffer","orbit":4},"26726":{"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":0,"id":48103}],"group":937,"skill":26726,"orbitIndex":4,"name":"Knockback and Stun Buildup","orbit":2},"5920":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-3,"id":52574},{"orbit":5,"id":51921}],"group":385,"skill":5920,"orbitIndex":16,"name":"Attack Area","orbit":2},"25971":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":25971,"stats":["4% increased Attack Speed","6% increased Attack Speed if you've been Hit Recently","+10 to Strength"],"recipe":["Greed","Fear","Guilt"],"connections":[],"group":840,"orbitIndex":0,"isNotable":true,"name":"Tenfold Attacks","orbit":0},"6178":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":6178,"stats":["15% reduced Attack Speed with Crossbows","80% increased Critical Damage Bonus with Crossbows"],"recipe":["Paranoia","Isolation","Suffering"],"connections":[{"orbit":0,"id":33415}],"group":612,"orbitIndex":35,"isNotable":true,"name":"Power Shots","orbit":4},"56910":{"icon":"Art/2DArt/SkillIcons/passives/Meleerange.dds","skill":56910,"stats":["Hits against you have 20% reduced Critical Damage Bonus","20% increased Armour and Evasion Rating","+5 to Strength and Dexterity"],"recipe":["Greed","Guilt","Paranoia"],"connections":[{"orbit":6,"id":28510},{"orbit":0,"id":34061},{"orbit":6,"id":29328}],"group":527,"orbitIndex":51,"isNotable":true,"name":"Battle-hardened","orbit":5},"37813":{"stats":["20% increased Shock Duration"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":14724},{"orbit":0,"id":50701}],"group":926,"skill":37813,"orbitIndex":0,"name":"Shock Duration","orbit":0},"57703":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57703,"stats":["+5 to any Attribute"],"isAttribute":true,"group":188,"connections":[{"orbit":0,"id":54811},{"orbit":0,"id":54485},{"orbit":0,"id":38130},{"orbit":0,"id":19674}],"orbitIndex":0,"name":"Attribute","orbit":0},"9106":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":54937}],"group":57,"skill":9106,"orbitIndex":2,"name":"Rage when Hit","orbit":7},"17745":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":263,"skill":17745,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"4828":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":19044}],"group":680,"skill":4828,"orbitIndex":12,"name":"Mana Regeneration","orbit":2},"13893":{"stats":["10% increased Stun Buildup","Damage Penetrates 5% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":-5,"id":42390}],"group":48,"skill":13893,"orbitIndex":5,"name":"Fire Penetration and Stun Buildup","orbit":7},"35534":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":44280}],"group":936,"skill":35534,"orbitIndex":16,"name":"Mark Cast Speed","orbit":2},"36231":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":3336},{"orbit":0,"id":722}],"group":977,"skill":36231,"orbitIndex":1,"name":"Critical Damage when consuming a Power Charge","orbit":2},"517":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":6,"id":39037},{"orbit":9,"id":61027}],"group":535,"skill":517,"orbitIndex":0,"name":"Energy Shield Recharge","orbit":0},"42578":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":23192}],"group":80,"skill":42578,"orbitIndex":11,"name":"Block","orbit":3},"44484":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":44484,"stats":["+4% to all Elemental Resistances"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":42522}],"orbitIndex":136,"name":"Elemental Resistances","orbit":9},"35564":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":35564,"stats":["20% reduced Projectile Speed for Spell Skills"],"recipe":["Fear","Fear","Despair"],"connections":[{"orbit":0,"id":18121},{"orbit":0,"id":65310}],"group":794,"orbitIndex":22,"isNotable":true,"name":"Turn the Clock Back","orbit":3},"18505":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":18505,"stats":["5% reduced Attack Speed","30% increased Stun Buildup","50% increased Attack Damage"],"recipe":["Envy","Suffering","Ire"],"connections":[{"orbit":0,"id":45090}],"group":134,"orbitIndex":16,"isNotable":true,"name":"Crushing Verdict","orbit":7},"51602":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":51602,"stats":["Enemies near Enemies you Mark are Blinded","Enemies you Mark cannot deal Critical Hits"],"recipe":["Suffering","Disgust","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":936,"orbitIndex":0,"isNotable":true,"name":"Unsight","orbit":0},"13862":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":761,"skill":13862,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"12239":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":39881},{"orbit":0,"id":41811}],"group":935,"skill":12239,"orbitIndex":0,"name":"Physical Mastery","orbit":0},"50701":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":44932}],"group":933,"skill":50701,"orbitIndex":0,"name":"Shock Effect","orbit":0},"28589":{"stats":["5% increased Attack Speed if you've been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":30300}],"group":38,"skill":28589,"orbitIndex":2,"name":"Attack Speed if Hit","orbit":3},"44932":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":54984}],"group":931,"skill":44932,"orbitIndex":4,"name":"Shock Effect","orbit":3},"6789":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":4313}],"group":620,"skill":6789,"orbitIndex":1,"name":"Projectile Damage","orbit":2},"5084":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":2,"id":35324}],"group":445,"skill":5084,"orbitIndex":22,"name":"Ignite Chance","orbit":2},"9750":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":1169}],"group":166,"skill":9750,"orbitIndex":10,"name":"Warcry Cooldown","orbit":7},"13839":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":65287}],"group":387,"skill":13839,"orbitIndex":39,"name":"Totem Damage","orbit":5},"57967":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":57967,"stats":["+30 to maximum Mana","14% increased Mana Regeneration Rate"],"recipe":["Isolation","Envy","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":373,"orbitIndex":0,"isNotable":true,"name":"Sturdy Mind","orbit":0},"24786":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24786,"stats":["+5 to any Attribute"],"isAttribute":true,"group":929,"connections":[{"orbit":0,"id":24287},{"orbit":0,"id":30657},{"orbit":0,"id":4378},{"orbit":0,"id":21225}],"orbitIndex":0,"name":"Attribute","orbit":0},"42035":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds","skill":42035,"stats":["30% of Damage taken Recouped as Life"],"ascendancyName":"Chronomancer","connections":[{"orbit":0,"id":54194}],"group":199,"orbitIndex":18,"isNotable":true,"name":"Circular Heartbeat","orbit":2},"17687":{"stats":["15% increased Mana Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":-3,"id":27422}],"group":972,"skill":17687,"orbitIndex":40,"name":"Mana Flask Charges","orbit":4},"61923":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-6,"id":16256}],"group":680,"skill":61923,"orbitIndex":4,"name":"Mana Regeneration","orbit":3},"3843":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":65265}],"group":927,"skill":3843,"orbitIndex":9,"name":"Block","orbit":2},"57518":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":31366},{"orbit":0,"id":59740}],"group":927,"skill":57518,"orbitIndex":21,"name":"Block","orbit":2},"17146":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":57518},{"orbit":-4,"id":3843}],"group":927,"skill":17146,"orbitIndex":3,"name":"Block","orbit":3},"26400":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies further than 6m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":8904}],"group":925,"skill":26400,"orbitIndex":18,"name":"Projectile Damage","orbit":7},"32545":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":4,"id":61196}],"group":671,"skill":32545,"orbitIndex":2,"name":"Skill Speed","orbit":2},"10648":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies further than 6m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":26400}],"group":925,"skill":10648,"orbitIndex":54,"name":"Projectile Damage","orbit":4},"2408":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2408,"stats":["+5 to any Attribute"],"isAttribute":true,"group":924,"connections":[{"orbit":0,"id":35696},{"orbit":0,"id":59740},{"orbit":0,"id":35534}],"orbitIndex":0,"name":"Attribute","orbit":0},"13157":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":3,"id":30392}],"group":785,"skill":13157,"orbitIndex":1,"name":"Life Flasks","orbit":3},"12253":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":12253,"stats":["+5 to any Attribute"],"isAttribute":true,"group":922,"connections":[{"orbit":0,"id":32183},{"orbit":0,"id":41017},{"orbit":0,"id":35696},{"orbit":0,"id":34497},{"orbit":0,"id":16401}],"orbitIndex":0,"name":"Attribute","orbit":0},"47263":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47263,"stats":["+5 to any Attribute"],"isAttribute":true,"group":87,"connections":[{"orbit":0,"id":38707},{"orbit":0,"id":18448},{"orbit":0,"id":58295}],"orbitIndex":0,"name":"Attribute","orbit":0},"43695":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":43695,"stats":["25% increased Flask Effect Duration","25% increased Flask Charges gained"],"recipe":["Despair","Disgust","Despair"],"connections":[{"orbit":0,"id":62438},{"orbit":0,"id":18750}],"group":771,"orbitIndex":12,"isNotable":true,"name":"Lasting Concoctions","orbit":7},"50104":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50104,"stats":["+5 to any Attribute"],"isAttribute":true,"group":286,"connections":[{"orbit":0,"id":47168},{"orbit":0,"id":37594},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"32054":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":62153}],"group":624,"skill":32054,"orbitIndex":2,"name":"Spell Critical Damage","orbit":3},"55554":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":8821},{"orbit":0,"id":22271}],"group":563,"skill":55554,"orbitIndex":0,"name":"Shock Chance","orbit":0},"32301":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":32301,"stats":["15% increased Mana Regeneration Rate","30% increased Magnitude of Shock you inflict"],"recipe":["Despair","Disgust","Paranoia"],"connections":[{"orbit":0,"id":50277}],"group":917,"orbitIndex":0,"isNotable":true,"name":"Frazzled","orbit":0},"16329":{"stats":["5% reduced Flask Charges used"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":-2,"id":39607}],"group":916,"skill":16329,"orbitIndex":6,"name":"Flask Charges Used","orbit":2},"934":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":934,"stats":["+4 to Ailment Threshold per Dexterity"],"recipe":["Greed","Suffering","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"orbit":-4,"id":12526}],"group":489,"orbitIndex":63,"isNotable":true,"name":"Natural Immunity","orbit":4},"2559":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":7,"id":62542}],"group":916,"skill":2559,"orbitIndex":2,"name":"Flask Charges Gained","orbit":2},"26268":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":22710}],"group":871,"skill":26268,"orbitIndex":12,"name":"Curse Duration","orbit":7},"25029":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":915,"skill":25029,"orbitIndex":51,"name":"Charms Mastery","orbit":5},"37612":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37612,"stats":["+5 to any Attribute"],"isAttribute":true,"group":339,"connections":[{"orbit":0,"id":13279},{"orbit":0,"id":17532}],"orbitIndex":0,"name":"Attribute","orbit":0},"62803":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":62803,"stats":["Charms applied to you have 25% increased Effect"],"recipe":["Suffering","Guilt","Isolation"],"connections":[{"orbit":0,"id":25029}],"group":915,"orbitIndex":51,"isNotable":true,"name":"Woodland Aspect","orbit":4},"15809":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":31175},{"orbit":7,"id":26945}],"group":419,"skill":15809,"orbitIndex":22,"name":"Minion Critical Chance","orbit":3},"48462":{"stats":["Charms applied to you have 10% increased Effect"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":5,"id":11094},{"orbit":5,"id":62803}],"group":915,"skill":48462,"orbitIndex":15,"name":"Charm Effect","orbit":7},"41180":{"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":61703},{"orbit":0,"id":17260},{"orbit":0,"id":32353}],"group":106,"skill":41180,"orbitIndex":0,"name":"Shapeshifting Mastery","orbit":1},"24813":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":3,"id":20397}],"group":430,"skill":24813,"orbitIndex":14,"name":"Attack Area","orbit":7},"36976":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":36976,"stats":["Culling Strike against Enemies you Mark"],"recipe":["Isolation","Suffering","Guilt"],"connections":[],"group":914,"orbitIndex":9,"isNotable":true,"name":"Marked for Death","orbit":3},"28258":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":28258,"stats":["10% increased Effect of your Mark Skills"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":914,"connections":[{"orbit":0,"id":36976},{"orbit":0,"id":59064},{"orbit":2,"id":36927}],"orbitIndex":0,"name":"Mark Effect","orbit":0},"23427":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":23427,"stats":["20% increased Chill Duration on Enemies","30% increased Magnitude of Chill you inflict"],"recipe":["Suffering","Despair","Despair"],"connections":[{"orbit":5,"id":62914}],"group":497,"orbitIndex":54,"isNotable":true,"name":"Chilled to the Bone","orbit":4},"59064":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[],"group":914,"skill":59064,"orbitIndex":21,"name":"Mark Effect","orbit":3},"51683":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":209,"skill":51683,"orbitIndex":22,"name":"Totem Damage","orbit":2},"44841":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":36927},{"orbit":2,"id":28258}],"group":914,"skill":44841,"orbitIndex":19,"name":"Mark Cast Speed","orbit":2},"12116":{"stats":["15% increased Block chance","You take 5% of damage from Blocked Hits"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":42036},{"orbit":0,"id":52410}],"group":980,"skill":12116,"orbitIndex":22,"name":"Block and Damage Taken from Blocked Hits","orbit":4},"47976":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47976,"stats":["+5 to any Attribute"],"isAttribute":true,"group":913,"connections":[{"orbit":0,"id":14446},{"orbit":0,"id":37876}],"orbitIndex":0,"name":"Attribute","orbit":0},"21453":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":21453,"stats":["Break 60% increased Armour","10% chance to Defend with 200% of Armour"],"recipe":["Fear","Envy","Greed"],"connections":[{"orbit":0,"id":10286}],"group":129,"orbitIndex":0,"isNotable":true,"name":"Breakage","orbit":0},"26107":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":26107,"stats":["3% increased Movement Speed","15% increased Projectile Speed","15% increased Projectile Damage"],"recipe":["Ire","Isolation","Despair"],"connections":[{"orbit":7,"id":33713}],"group":912,"orbitIndex":0,"isNotable":true,"name":"Kite Runner","orbit":0},"33713":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-2,"id":57462}],"group":912,"skill":33713,"orbitIndex":17,"name":"Projectile Speed","orbit":2},"8827":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":8827,"stats":["Life Leech effects are not removed when Unreserved Life is Filled"],"recipe":["Suffering","Isolation","Suffering"],"connections":[{"orbit":0,"id":16691},{"orbit":0,"id":28862}],"group":281,"orbitIndex":8,"isNotable":true,"name":"Fast Metabolism","orbit":7},"44223":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[],"group":610,"skill":44223,"orbitIndex":1,"name":"Critical Damage","orbit":7},"12078":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":53771},{"orbit":-4,"id":41877}],"group":912,"skill":12078,"orbitIndex":39,"name":"Projectile Damage","orbit":5},"53771":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-2,"id":52361}],"group":912,"skill":53771,"orbitIndex":9,"name":"Projectile Damage","orbit":3},"16861":{"stats":["5% reduced maximum Mana","15% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-5,"id":27303}],"group":184,"skill":16861,"orbitIndex":22,"name":"Critical Chance and Reduced Mana","orbit":3},"14343":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":14343,"stats":["Damaging Ailments Cannot Be inflicted on you while you already have one","20% increased Magnitude of Damaging Ailments you inflict"],"recipe":["Paranoia","Paranoia","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":724,"orbitIndex":0,"isNotable":true,"name":"Deterioration","orbit":0},"8509":{"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":59061}],"group":168,"skill":8509,"orbitIndex":2,"name":"Critical Damage","orbit":2},"18308":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":18308,"stats":["+250 to Accuracy against Bleeding Enemies","Bleeding you inflict deals Damage 10% faster"],"recipe":["Despair","Suffering","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":478,"orbitIndex":48,"isNotable":true,"name":"Bleeding Out","orbit":4},"59213":{"stats":["20% increased Stun Recovery"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":48240}],"group":269,"skill":59213,"orbitIndex":15,"name":"Stun Recovery","orbit":2},"26532":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-3,"id":46023},{"orbit":3,"id":41657},{"orbit":0,"id":36629}],"group":272,"skill":26532,"orbitIndex":6,"name":"Armour","orbit":2},"49046":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49046,"stats":["+5 to any Attribute"],"isAttribute":true,"group":634,"connections":[{"orbit":0,"id":8569}],"orbitIndex":0,"name":"Attribute","orbit":0},"11604":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11604,"stats":["+5 to any Attribute"],"isAttribute":true,"group":773,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":29408},{"orbit":0,"id":52765}],"orbitIndex":0,"name":"Attribute","orbit":0},"52361":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":26107}],"group":912,"skill":52361,"orbitIndex":9,"name":"Projectile Damage","orbit":2},"51749":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds","skill":51749,"isKeystone":true,"stats":["Removes all Mana","Skill Mana Costs Converted to Life Costs"],"group":60,"connections":[{"orbit":0,"id":30141}],"orbitIndex":0,"name":"Blood Magic","orbit":0},"14724":{"stats":["20% increased Shock Duration"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":62185}],"group":911,"skill":14724,"orbitIndex":0,"name":"Shock Duration","orbit":0},"61534":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":4665}],"group":408,"skill":61534,"orbitIndex":18,"name":"Life Regeneration","orbit":7},"35503":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":23764}],"group":670,"skill":35503,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"34308":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":34308,"stats":["20% increased Melee Damage","25% increased Melee Damage against Immobilised Enemies"],"recipe":["Disgust","Despair","Ire"],"connections":[{"orbit":0,"id":37414},{"orbit":0,"id":10245}],"group":234,"orbitIndex":16,"isNotable":true,"name":"Personal Touch","orbit":3},"44875":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":668,"skill":44875,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"41646":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41646,"stats":["+5 to any Attribute"],"isAttribute":true,"group":416,"connections":[{"orbit":0,"id":48670},{"orbit":0,"id":14091}],"orbitIndex":0,"name":"Attribute","orbit":0},"57966":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":695,"skill":57966,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"2119":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":53505}],"group":409,"skill":2119,"orbitIndex":0,"name":"Life Leech","orbit":2},"34497":{"icon":"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds","skill":34497,"isKeystone":true,"stats":["Take 50% less Damage over Time if you've started taking Damage over Time in the past second","Take 50% more Damage over Time if you've haven't started taking Damage over Time in the past second"],"group":909,"connections":[],"orbitIndex":0,"name":"Heartstopper","orbit":0},"5257":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":5257,"stats":["30% increased Elemental Damage if you've Chilled an Enemy Recently"],"recipe":["Suffering","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":20,"isNotable":true,"name":"Echoing Frost","orbit":7},"4378":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6330},{"orbit":0,"id":59503}],"group":907,"skill":4378,"orbitIndex":9,"name":"Accuracy","orbit":7},"15207":{"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6330}],"group":907,"skill":15207,"orbitIndex":0,"name":"Accuracy and Attack Damage","orbit":7},"22208":{"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":15207}],"group":907,"skill":22208,"orbitIndex":18,"name":"Accuracy and Critical Chance","orbit":7},"59503":{"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":22208}],"group":907,"skill":59503,"orbitIndex":13,"name":"Accuracy and Critical Chance","orbit":7},"56453":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":56453,"stats":["30% increased Attack Damage when on Full Life","50% increased Attack Damage when on Low Life"],"recipe":["Greed","Paranoia","Greed"],"connections":[{"orbit":0,"id":37691}],"group":845,"orbitIndex":39,"isNotable":true,"name":"Killer Instinct","orbit":5},"41972":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":41972,"stats":["Damage Penetrates 18% Cold Resistance","25% increased Cold Exposure Effect"],"recipe":["Paranoia","Guilt","Isolation"],"connections":[{"orbit":4,"id":56649},{"orbit":-4,"id":60515}],"group":497,"orbitIndex":18,"isNotable":true,"name":"Glaciation","orbit":4},"42805":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":26034}],"group":905,"skill":42805,"orbitIndex":6,"name":"Evasion and Energy Shield","orbit":7},"30372":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":42065}],"group":843,"skill":30372,"orbitIndex":7,"name":"Lightning Penetration","orbit":2},"46535":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds","skill":46535,"stats":["Deal up to 30% more Damage to Enemies based on their missing Concentration"],"ascendancyName":"Witchhunter","connections":[],"group":152,"orbitIndex":6,"isNotable":true,"name":"No Mercy","orbit":1},"42750":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":4,"id":17088},{"orbit":-4,"id":9050}],"group":845,"skill":42750,"orbitIndex":42,"name":"Attack Damage","orbit":6},"3630":{"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":62624}],"group":905,"skill":3630,"orbitIndex":18,"name":"Evasion and Energy Shield Recharge","orbit":3},"33393":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":7,"id":41747}],"group":50,"skill":33393,"orbitIndex":60,"name":"Flail Damage","orbit":5},"58022":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":5186},{"orbit":-7,"id":26762}],"group":904,"skill":58022,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"32148":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":32148,"stats":["25% increased Damage with Flails"],"recipe":["Greed","Despair","Despair"],"connections":[],"group":41,"orbitIndex":23,"isNotable":true,"name":"Rattling Ball","orbit":2},"20387":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":57810}],"group":623,"skill":20387,"orbitIndex":0,"name":"Shock Chance","orbit":0},"11736":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":62677}],"group":576,"skill":11736,"orbitIndex":36,"name":"Lightning Damage","orbit":4},"36822":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":36822,"stats":["3% increased Attributes"],"ascendancyName":"Gemling Legionnaire","group":324,"connections":[{"orbit":0,"id":58591}],"orbitIndex":0,"name":"Attributes","orbit":0},"45702":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":61333},{"orbit":3,"id":31692}],"group":903,"skill":45702,"orbitIndex":19,"name":"Critical Chance","orbit":2},"27388":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":27388,"stats":["20% increased Mana Regeneration Rate","10% chance to Gain Arcane Surge when you deal a Critical Hit"],"recipe":["Suffering","Greed","Greed"],"connections":[{"orbit":0,"id":28578},{"orbit":0,"id":24551}],"group":147,"orbitIndex":21,"isNotable":true,"name":"Aspiring Genius","orbit":7},"17548":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":17548,"stats":["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently","20% increased Critical Hit Chance"],"recipe":["Ire","Suffering","Disgust"],"connections":[{"orbit":0,"id":630},{"orbit":0,"id":31039}],"group":720,"orbitIndex":2,"isNotable":true,"name":"Moment of Truth","orbit":7},"6153":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":44952},{"orbit":0,"id":10362}],"group":76,"skill":6153,"orbitIndex":14,"name":"Life Regeneration","orbit":7},"1104":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":1104,"stats":["5% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges","+1 to Maximum Power Charges"],"recipe":["Isolation","Guilt","Guilt"],"connections":[{"orbit":0,"id":56876}],"group":774,"orbitIndex":0,"isNotable":true,"name":"Lust for Power","orbit":0},"16489":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16489,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[{"orbit":6,"id":28556},{"orbit":7,"id":49799}],"orbitIndex":30,"name":"Attribute","orbit":6},"354":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":48429}],"group":469,"skill":354,"orbitIndex":16,"name":"Grenade Cooldown Recovery Rate","orbit":3},"48583":{"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":58783}],"group":592,"skill":48583,"orbitIndex":23,"name":"Life Leech. Armour and Evasion while Leeching","orbit":2},"40328":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-5,"id":28564}],"group":93,"skill":40328,"orbitIndex":3,"name":"Warcry Speed","orbit":3},"54232":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54232,"stats":["+5 to any Attribute"],"isAttribute":true,"group":414,"connections":[{"orbit":5,"id":44659}],"orbitIndex":0,"name":"Attribute","orbit":0},"21081":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":5,"id":25745}],"group":393,"skill":21081,"orbitIndex":42,"name":"Armour and Energy Shield","orbit":5},"10277":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":64064}],"group":902,"skill":10277,"orbitIndex":7,"name":"Accuracy","orbit":2},"35426":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35426,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":6,"id":8406}],"orbitIndex":54,"name":"Attribute","orbit":6},"42500":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42500,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":59881}],"orbitIndex":10,"name":"Attribute","orbit":6},"15301":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":4709},{"orbit":0,"id":64064}],"group":902,"skill":15301,"orbitIndex":13,"name":"Accuracy","orbit":2},"62185":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":62185,"stats":["+20 to maximum Mana","50% increased Shock Duration"],"recipe":["Greed","Fear","Ire"],"connections":[],"group":901,"orbitIndex":0,"isNotable":true,"name":"Rattled","orbit":0},"5501":{"icon":"Art/2DArt/SkillIcons/passives/Annihilation.dds","skill":5501,"stats":["15% increased Critical Hit Chance for Spells","15% increased Spell Damage if you've dealt a Critical Hit Recently"],"recipe":["Guilt","Envy","Ire"],"connections":[{"orbit":0,"id":48821}],"group":504,"orbitIndex":0,"isNotable":true,"name":"Critical Overload","orbit":0},"53266":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":13576},{"orbit":0,"id":20387},{"orbit":0,"id":53560}],"group":644,"skill":53266,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"55190":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":55190,"stats":[],"group":42,"connections":[],"orbitIndex":0,"name":"Jewel Socket","orbit":1},"1841":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":9405}],"group":982,"skill":1841,"orbitIndex":8,"name":"Evasion","orbit":7},"61525":{"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","classesStart":["Templar","Druid"],"skill":61525,"stats":[],"group":453,"connections":[{"orbit":0,"id":13855},{"orbit":0,"id":35715},{"orbit":0,"id":26353},{"orbit":0,"id":950},{"orbit":0,"id":28429},{"orbit":0,"id":35535},{"orbit":0,"id":42761}],"orbitIndex":0,"name":"TEMPLAR","orbit":0},"47374":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies within 2m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":18049}],"group":900,"skill":47374,"orbitIndex":66,"name":"Projectile Damage","orbit":4},"22710":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":45111}],"group":871,"skill":22710,"orbitIndex":8,"name":"Curse Duration","orbit":7},"47790":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":17625}],"group":71,"skill":47790,"orbitIndex":16,"name":"Shapeshifting","orbit":7},"24239":{"stats":["Gain 5 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":0,"id":34136}],"group":721,"skill":24239,"orbitIndex":9,"name":"Life on Kill","orbit":1},"13715":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":13715,"stats":["18% increased Stun Buildup"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":59372}],"orbitIndex":44,"name":"Stun Buildup","orbit":5},"55568":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":55568,"stats":["16% reduced Skill Effect Duration","10% increased Cooldown Recovery Rate"],"recipe":["Despair","Greed","Suffering"],"connections":[{"orbit":0,"id":41522},{"orbit":0,"id":44690}],"group":735,"orbitIndex":0,"isNotable":true,"name":"Forthcoming","orbit":2},"64543":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":64543,"stats":["40% increased Chill Duration on Enemies","40% increased Shock Duration","25% increased Magnitude of Chill you inflict","25% increased Magnitude of Shock you inflict"],"recipe":["Disgust","Envy","Guilt"],"connections":[],"group":898,"orbitIndex":57,"isNotable":true,"name":"Unbound Forces","orbit":5},"26697":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"orbit":0,"id":59263},{"orbit":0,"id":27290},{"orbit":0,"id":46565}],"group":343,"skill":26697,"orbitIndex":0,"name":"Sword Mastery","orbit":0},"37304":{"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":336},{"orbit":-4,"id":61921},{"orbit":0,"id":64543}],"group":898,"skill":37304,"orbitIndex":57,"name":"Elemental","orbit":4},"4806":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-4,"id":32183}],"group":898,"skill":4806,"orbitIndex":10,"name":"Cold Penetration","orbit":2},"12311":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":64119}],"group":605,"skill":12311,"orbitIndex":18,"name":"Crossbow Reload Speed","orbit":7},"40918":{"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-4,"id":1773}],"group":779,"skill":40918,"orbitIndex":0,"name":"Ailment Effect and Duration","orbit":0},"39987":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-3,"id":18913},{"orbit":-5,"id":47177}],"group":617,"skill":39987,"orbitIndex":14,"name":"Chaos Damage and Duration","orbit":3},"51812":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":156,"skill":51812,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"49111":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":37,"skill":49111,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"31172":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":31172,"stats":["1% increased Attack Speed per 15 Dexterity"],"recipe":["Suffering","Suffering","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":896,"orbitIndex":51,"isNotable":true,"name":"Falcon Technique","orbit":5},"48116":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48116,"stats":["+5 to any Attribute"],"isAttribute":true,"group":986,"connections":[{"orbit":0,"id":21112},{"orbit":0,"id":60735},{"orbit":0,"id":10472}],"orbitIndex":0,"name":"Attribute","orbit":0},"47429":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":223,"skill":47429,"orbitIndex":6,"name":"Warcry Cooldown","orbit":6},"49049":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds","skill":49049,"stats":["Enemies in your Presence are Slowed by 20%"],"ascendancyName":"Chronomancer","connections":[],"group":218,"orbitIndex":0,"isNotable":true,"name":"Apex of the Moment","orbit":0},"30657":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30657,"stats":["+5 to any Attribute"],"isAttribute":true,"group":894,"connections":[{"orbit":0,"id":38463},{"orbit":0,"id":6842},{"orbit":0,"id":59064}],"orbitIndex":0,"name":"Attribute","orbit":0},"54678":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":41877}],"group":865,"skill":54678,"orbitIndex":0,"name":"Shock Chance","orbit":0},"62978":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":19873}],"group":350,"skill":62978,"orbitIndex":14,"name":"Area of Effect","orbit":2},"13397":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13397,"stats":["+5 to any Attribute"],"isAttribute":true,"group":394,"connections":[{"orbit":0,"id":1207}],"orbitIndex":6,"name":"Attribute","orbit":4},"59881":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59881,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":54417},{"orbit":-5,"id":28556}],"orbitIndex":16,"name":"Attribute","orbit":6},"23005":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds","skill":23005,"stats":["Gain 40% Base Chance to Block from Equipped Shield instead of the Shield's value"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":10072}],"group":18,"orbitIndex":0,"isNotable":true,"name":"Renly's Training","orbit":0},"10495":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":892,"skill":10495,"orbitIndex":18,"name":"Mana Mastery","orbit":7},"21380":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":21380,"stats":["100% increased Critical Damage Bonus against Enemies that are on Full Life"],"recipe":["Guilt","Disgust","Greed"],"connections":[],"group":762,"orbitIndex":1,"isNotable":true,"name":"Preemptive Strike","orbit":7},"31388":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":51394}],"group":158,"skill":31388,"orbitIndex":7,"name":"Slow Effect on You","orbit":3},"14048":{"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":34717}],"group":892,"skill":14048,"orbitIndex":54,"name":"Mana Regeneration while not on Low Mana","orbit":4},"24855":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":39347},{"orbit":0,"id":48014}],"group":101,"skill":24855,"orbitIndex":58,"name":"Attack Mastery","orbit":4},"52053":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":14048},{"orbit":-4,"id":24120}],"group":892,"skill":52053,"orbitIndex":16,"name":"Mana Regeneration","orbit":3},"4547":{"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","skill":4547,"stats":["2% to Maximum Fire Resistance for each 40% Uncapped Fire Resistance"],"recipe":["Isolation","Isolation","Isolation"],"connections":[{"orbit":0,"id":2946}],"group":130,"orbitIndex":0,"isNotable":true,"name":"Unnatural Resilience","orbit":0},"12000":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds","skill":12000,"stats":["15% more Maximum Life"],"ascendancyName":"Titan","connections":[],"group":29,"orbitIndex":0,"isNotable":true,"name":"Mysterious Lineage","orbit":0},"30346":{"stats":["+10 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":44871},{"orbit":-5,"id":29695},{"orbit":6,"id":34006}],"group":533,"skill":30346,"orbitIndex":13,"name":"Energy Shield","orbit":7},"60269":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":60269,"stats":["10% reduced Spell Area Damage","Spell Skills have 30% increased Area of Effect"],"recipe":["Disgust","Greed","Ire"],"connections":[{"orbit":0,"id":6588}],"group":571,"orbitIndex":19,"isNotable":true,"name":"Roil","orbit":7},"51891":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":51891,"stats":["8% of Damage is taken from Mana before Life","+15 to Intelligence"],"recipe":["Envy","Disgust","Suffering"],"connections":[{"orbit":0,"id":25528}],"group":891,"orbitIndex":17,"isNotable":true,"name":"Lucidity","orbit":7},"23046":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":5,"id":47976}],"group":891,"skill":23046,"orbitIndex":27,"name":"Energy Shield Delay","orbit":4},"52274":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":3109},{"orbit":0,"id":21077}],"group":469,"skill":52274,"orbitIndex":9,"name":"Grenade Damage","orbit":3},"63713":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds","skill":63713,"stats":["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"],"ascendancyName":"Invoker","connections":[{"orbit":-4,"id":57181}],"group":1033,"orbitIndex":43,"isNotable":true,"name":"Sunder my Enemies...","orbit":9},"58295":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58295,"stats":["+5 to any Attribute"],"isAttribute":true,"group":126,"connections":[{"orbit":0,"id":15671}],"orbitIndex":4,"name":"Attribute","orbit":2},"57626":{"stats":["8% increased Fire Damage","8% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":36782}],"group":542,"skill":57626,"orbitIndex":16,"name":"Cold and Fire Damage","orbit":7},"24483":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":24483,"stats":["40% increased Critical Hit Chance against Enemies that are affected","by no Elemental Ailments"],"recipe":["Disgust","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":32660}],"group":299,"orbitIndex":0,"isNotable":true,"name":"Direct Approach","orbit":0},"18448":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18448,"stats":["+5 to any Attribute"],"isAttribute":true,"group":72,"connections":[{"orbit":0,"id":30141},{"orbit":0,"id":18822}],"orbitIndex":0,"name":"Attribute","orbit":0},"3628":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":64474},{"orbit":0,"id":3251}],"group":749,"skill":3628,"orbitIndex":2,"name":"Energy Shield Delay","orbit":2},"40453":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":25304}],"group":855,"skill":40453,"orbitIndex":9,"name":"Energy","orbit":7},"52971":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":52971,"stats":["20% faster start of Energy Shield Recharge","30% faster start of Energy Shield Recharge when not on Full Life"],"recipe":["Envy","Disgust","Fear"],"connections":[{"orbit":-2,"id":21227},{"orbit":0,"id":25528}],"group":891,"orbitIndex":45,"isNotable":true,"name":"Quick Response","orbit":4},"45481":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":52765}],"group":761,"skill":45481,"orbitIndex":16,"name":"Mana Regeneration","orbit":2},"44952":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":44952,"stats":["15% of Physical Damage prevented Recouped as Life"],"recipe":["Suffering","Fear","Guilt"],"connections":[{"orbit":0,"id":9163}],"group":76,"orbitIndex":11,"isNotable":true,"name":"Made to Last","orbit":3},"43090":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":43090,"stats":["5% increased Skill Speed","30% increased Electrocute Buildup"],"recipe":["Suffering","Ire","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":939,"orbitIndex":0,"isNotable":true,"name":"Electrotherapy","orbit":0},"37795":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":790,"skill":37795,"orbitIndex":0,"name":"Shield Mastery","orbit":0},"23362":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":23362,"stats":["25% reduced Effect of Chill on you","Unaffected by Chill during Dodge Roll"],"recipe":["Despair","Disgust","Greed"],"connections":[{"orbit":0,"id":32672},{"orbit":0,"id":50403}],"group":947,"orbitIndex":9,"isNotable":true,"name":"Slippery Ice","orbit":3},"33245":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":9151},{"orbit":-2,"id":31918},{"orbit":2,"id":45331}],"group":890,"skill":33245,"orbitIndex":3,"name":"Projectile Damage","orbit":1},"42302":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":42302,"stats":["Projectiles have 75% chance for an additional Projectile when Forking"],"recipe":["Ire","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":4,"id":45331},{"orbit":-4,"id":31918}],"group":890,"orbitIndex":54,"isNotable":true,"name":"Split Shot","orbit":4},"4534":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":4534,"stats":["50% chance to Pierce an Enemy"],"recipe":["Disgust","Guilt","Disgust"],"connections":[],"group":890,"orbitIndex":13,"isNotable":true,"name":"Piercing Shot","orbit":3},"23221":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":23221,"stats":["Projectiles have 15% chance to Chain an additional time from terrain"],"recipe":["Suffering","Isolation","Guilt"],"connections":[],"group":890,"orbitIndex":23,"isNotable":true,"name":"Trick Shot","orbit":3},"62581":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":265,"skill":62581,"orbitIndex":0,"name":"Block Mastery","orbit":0},"9417":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":48121},{"orbit":5,"id":13171}],"group":253,"skill":9417,"orbitIndex":0,"name":"Totem Life","orbit":0},"6792":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33245},{"orbit":0,"id":2408}],"group":890,"skill":6792,"orbitIndex":6,"name":"Projectile Damage","orbit":7},"48846":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44566}],"group":597,"skill":48846,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"33053":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":645,"skill":33053,"orbitIndex":22,"name":"Projectile Damage","orbit":7},"59740":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":59740,"stats":[],"group":918,"connections":[],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"6516":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":7,"id":63981},{"orbit":0,"id":12890}],"group":889,"skill":6516,"orbitIndex":22,"name":"Stun Threshold if no recent Stun","orbit":7},"26176":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":43650}],"group":113,"skill":26176,"orbitIndex":8,"name":"Attack Critical Damage","orbit":2},"63981":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":63981,"stats":["30% increased Stun Recovery","30% increased Stun Threshold if you haven't been Stunned Recently"],"recipe":["Envy","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":8194}],"group":889,"orbitIndex":4,"isNotable":true,"name":"Deft Recovery","orbit":7},"41877":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41877,"stats":["+5 to any Attribute"],"isAttribute":true,"group":888,"connections":[{"orbit":0,"id":53958}],"orbitIndex":0,"name":"Attribute","orbit":0},"64299":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":64299,"stats":["20% increased Effect of Auras from your Aura Skills"],"recipe":["Despair","Envy","Suffering"],"connections":[{"orbit":0,"id":17655}],"group":342,"orbitIndex":20,"isNotable":true,"name":"Bolstering Presence","orbit":2},"54818":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54818,"stats":["+5 to any Attribute"],"isAttribute":true,"group":459,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"11788":{"stats":["12% increased Spell Area Damage","Spell Skills have 5% reduced Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":-4,"id":38732}],"group":571,"skill":11788,"orbitIndex":0,"name":"Spell Area of Effect","orbit":7},"63517":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":48974},{"orbit":2,"id":53958}],"group":887,"skill":63517,"orbitIndex":22,"name":"Mana Flask Recovery","orbit":2},"57832":{"stats":["10% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":46300}],"group":445,"skill":57832,"orbitIndex":9,"name":"Ignite Effect","orbit":2},"48974":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":48974,"stats":["25% increased Mana Recovery from Flasks","10% increased Mana Recovery Rate during Effect of any Mana Flask"],"recipe":["Ire","Envy","Guilt"],"connections":[{"orbit":0,"id":47418},{"orbit":0,"id":10738}],"group":887,"orbitIndex":15,"isNotable":true,"name":"Altered Brain Chemistry","orbit":2},"36358":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":12367}],"group":448,"skill":36358,"orbitIndex":4,"name":"Chaos Damage","orbit":3},"11825":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11825,"stats":["+5 to any Attribute"],"isAttribute":true,"group":886,"connections":[{"orbit":0,"id":8194},{"orbit":4,"id":42794},{"orbit":0,"id":54984},{"orbit":0,"id":47374},{"orbit":0,"id":10648}],"orbitIndex":0,"name":"Attribute","orbit":0},"14446":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14446,"stats":["+5 to any Attribute"],"isAttribute":true,"group":885,"connections":[{"orbit":0,"id":61403},{"orbit":0,"id":22713},{"orbit":9,"id":58022},{"orbit":0,"id":45702}],"orbitIndex":0,"name":"Attribute","orbit":0},"55149":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":55149,"stats":["Gain 11% of Damage as Extra Chaos Damage"],"recipe":["Envy","Isolation","Guilt"],"connections":[],"group":884,"orbitIndex":0,"isNotable":true,"name":"Pure Chaos","orbit":0},"29009":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29009,"stats":["+5 to any Attribute"],"isAttribute":true,"group":499,"connections":[{"orbit":0,"id":10079},{"orbit":0,"id":61419}],"orbitIndex":0,"name":"Attribute","orbit":0},"49110":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":7,"id":54746}],"group":752,"skill":49110,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"10247":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10247,"stats":["+5 to any Attribute"],"isAttribute":true,"group":511,"connections":[{"orbit":0,"id":28370}],"orbitIndex":51,"name":"Attribute","orbit":6},"32896":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":883,"skill":32896,"orbitIndex":9,"name":"Poison Chance","orbit":7},"42959":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":42959,"stats":["60% increased Effect of Poison you inflict on targets that are not Poisoned"],"recipe":["Suffering","Greed","Isolation"],"connections":[{"orbit":-2,"id":32896},{"orbit":0,"id":28903}],"group":883,"orbitIndex":12,"isNotable":true,"name":"Low Tolerance","orbit":7},"28903":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":883,"skill":28903,"orbitIndex":0,"name":"Poison Mastery","orbit":0},"11094":{"stats":["Charms applied to you have 10% increased Effect"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-6,"id":59303}],"group":881,"skill":11094,"orbitIndex":3,"name":"Charm Effect","orbit":7},"36746":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":40691}],"group":519,"skill":36746,"orbitIndex":16,"name":"Energy Shield Recharge","orbit":3},"9324":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":41768}],"group":64,"skill":9324,"orbitIndex":0,"name":"Ignite Effect on You","orbit":3},"8045":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-6,"id":64927},{"orbit":5,"id":52464}],"group":880,"skill":8045,"orbitIndex":7,"name":"Mana Leech","orbit":3},"51871":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":51871,"stats":["15% increased maximum Energy Shield","25% increased amount of Mana Leeched"],"recipe":["Guilt","Suffering","Guilt"],"connections":[{"orbit":0,"id":8045}],"group":880,"orbitIndex":0,"isNotable":true,"name":"Immortal Thirst","orbit":0},"45278":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":38138}],"group":509,"skill":45278,"orbitIndex":14,"name":"Reduced Attribute Requirements","orbit":7},"29399":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":23888},{"orbit":-7,"id":51446}],"group":444,"skill":29399,"orbitIndex":20,"name":"Armour and Evasion","orbit":3},"28329":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds","skill":28329,"stats":["35% increased Stun Buildup","35% increased Freeze Buildup"],"recipe":["Guilt","Despair","Ire"],"connections":[{"orbit":3,"id":36723}],"group":878,"orbitIndex":21,"isNotable":true,"name":"Pressure Points","orbit":3},"9037":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":21912}],"group":107,"skill":9037,"orbitIndex":69,"name":"Shapeshifting","orbit":5},"34248":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":37327}],"group":319,"skill":34248,"orbitIndex":20,"name":"Mana Regeneration","orbit":3},"58096":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":58096,"stats":["20% increased Spell Damage","20% increased Skill Effect Duration"],"recipe":["Isolation","Greed","Disgust"],"connections":[{"orbit":0,"id":17411}],"group":262,"orbitIndex":1,"isNotable":true,"name":"Lasting Incantations","orbit":3},"42036":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":42036,"stats":["30% increased Block chance","You take 10% of damage from Blocked Hits"],"recipe":["Greed","Fear","Suffering"],"connections":[{"orbit":0,"id":25535}],"group":980,"orbitIndex":17,"isNotable":true,"name":"Deflection","orbit":4},"59775":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-4,"id":20782}],"group":877,"skill":59775,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"26432":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26432,"stats":["+5 to any Attribute"],"isAttribute":true,"group":876,"connections":[{"orbit":0,"id":12890},{"orbit":0,"id":34015}],"orbitIndex":0,"name":"Attribute","orbit":0},"9968":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":9968,"stats":["25% reduced Shock duration on you","40% increased Elemental Ailment Threshold"],"recipe":["Paranoia","Suffering","Disgust"],"connections":[{"orbit":-6,"id":38678},{"orbit":0,"id":28623}],"group":874,"orbitIndex":0,"isNotable":true,"name":"Feel the Earth","orbit":4},"21495":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":0,"id":31683}],"group":875,"skill":21495,"orbitIndex":14,"name":"Elemental Attack Damage","orbit":3},"31433":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":31433,"stats":["20% increased Elemental Damage with Attacks","5% of Physical Damage from Hits taken as Damage of a Random Element"],"recipe":["Isolation","Isolation","Paranoia"],"connections":[{"orbit":-4,"id":21495},{"orbit":0,"id":5348}],"group":875,"orbitIndex":8,"isNotable":true,"name":"Catalysis","orbit":2},"5348":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":875,"skill":5348,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"38678":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-7,"id":30463},{"orbit":-6,"id":60464}],"group":874,"skill":38678,"orbitIndex":20,"name":"Ailment Threshold","orbit":2},"35831":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":904}],"group":147,"skill":35831,"orbitIndex":7,"name":"Mana Regeneration","orbit":7},"58971":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-6,"id":12998},{"orbit":-7,"id":38678}],"group":874,"skill":58971,"orbitIndex":12,"name":"Ailment Threshold","orbit":2},"30463":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-7,"id":58971},{"orbit":-6,"id":9968}],"group":874,"skill":30463,"orbitIndex":4,"name":"Ailment Threshold","orbit":2},"8975":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8975,"stats":["+5 to any Attribute"],"isAttribute":true,"group":682,"connections":[{"orbit":4,"id":61196}],"orbitIndex":0,"name":"Attribute","orbit":0},"38732":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38732,"stats":["+5 to any Attribute"],"isAttribute":true,"group":561,"connections":[{"orbit":0,"id":28475}],"orbitIndex":0,"name":"Attribute","orbit":0},"55180":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":55180,"stats":["Minions have 20% increased Movement Speed","Minions have 8% increased Attack and Cast Speed"],"recipe":["Despair","Fear","Isolation"],"connections":[],"group":609,"orbitIndex":15,"isNotable":true,"name":"Relentless Fallen","orbit":3},"12998":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":12998,"stats":["25% reduced Freeze Duration on you","60% increased Freeze Threshold"],"recipe":["Ire","Suffering","Fear"],"connections":[{"orbit":-6,"id":30463},{"orbit":0,"id":28623}],"group":874,"orbitIndex":24,"isNotable":true,"name":"Warm the Heart","orbit":4},"21982":{"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":47371}],"group":204,"skill":21982,"orbitIndex":18,"name":"Empowered Attack Damage and Bleeding Chance","orbit":2},"38670":{"stats":["5% increased Attack Speed if you've been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":28589}],"group":38,"skill":38670,"orbitIndex":0,"name":"Attack Speed if Hit","orbit":2},"29148":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29148,"stats":["+5 to any Attribute"],"isAttribute":true,"group":364,"connections":[{"orbit":0,"id":34840},{"orbit":0,"id":33631}],"orbitIndex":0,"name":"Attribute","orbit":0},"33099":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":33099,"stats":["+1 Charm Slot"],"recipe":["Paranoia","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":25029}],"group":872,"orbitIndex":27,"isNotable":true,"name":"Hunter's Talisman","orbit":4},"54990":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":54990,"stats":["10% chance to inflict Bleeding on Hit","15% increased Magnitude of Bleeding you inflict"],"recipe":["Fear","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":457,"orbitIndex":1,"isNotable":true,"name":"Bloodletting","orbit":7},"43522":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":38497},{"orbit":6,"id":33099}],"group":872,"skill":43522,"orbitIndex":7,"name":"Charm Charges Used","orbit":7},"59541":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":59541,"stats":["Minions have 40% increased maximum Life","Minions have 10% reduced Life Recovery rate"],"recipe":["Fear","Guilt","Fear"],"connections":[{"orbit":7,"id":28573},{"orbit":0,"id":56926}],"group":630,"orbitIndex":3,"isNotable":true,"name":"Necrotised Flesh","orbit":3},"10131":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10131,"stats":["+5 to any Attribute"],"isAttribute":true,"group":728,"connections":[{"orbit":0,"id":3251},{"orbit":0,"id":44669},{"orbit":0,"id":14127}],"orbitIndex":0,"name":"Attribute","orbit":0},"50755":{"stats":["+8 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","connections":[{"orbit":9,"id":10131},{"orbit":0,"id":39567},{"orbit":8,"id":19355}],"group":680,"skill":50755,"orbitIndex":5,"name":"Intelligence","orbit":5},"59214":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":59214,"stats":["30% increased Curse Duration","Enemies Cursed by you have 50% reduced Life Regeneration Rate","Enemies you Curse cannot Recharge Energy Shield"],"recipe":["Disgust","Isolation","Despair"],"connections":[{"orbit":0,"id":26268},{"orbit":0,"id":6570}],"group":871,"orbitIndex":18,"isNotable":true,"name":"Fated End","orbit":7},"38463":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38463,"stats":["+5 to any Attribute"],"isAttribute":true,"group":869,"connections":[{"orbit":0,"id":46882},{"orbit":-6,"id":21111},{"orbit":5,"id":43522}],"orbitIndex":0,"name":"Attribute","orbit":0},"48585":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":21280},{"orbit":0,"id":20831}],"group":668,"skill":48585,"orbitIndex":9,"name":"Evasion","orbit":7},"14654":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14654,"stats":["+5 to any Attribute"],"isAttribute":true,"group":185,"connections":[{"orbit":0,"id":22616},{"orbit":0,"id":14459},{"orbit":0,"id":21017}],"orbitIndex":0,"name":"Attribute","orbit":0},"29372":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":29372,"stats":["3% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"],"recipe":["Fear","Suffering","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":245,"orbitIndex":0,"isNotable":true,"name":"Sudden Infuriation","orbit":0},"53935":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":53935,"stats":["60% increased Stun Threshold for each time you've been Stunned Recently"],"recipe":["Guilt","Ire","Paranoia"],"connections":[{"orbit":2,"id":10677},{"orbit":0,"id":25281}],"group":677,"orbitIndex":14,"isNotable":true,"name":"Briny Carapace","orbit":2},"46601":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":18568},{"orbit":0,"id":43720}],"group":868,"skill":46601,"orbitIndex":0,"name":"Mana Leech","orbit":2},"10100":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10100,"stats":["+5 to any Attribute"],"isAttribute":true,"group":88,"connections":[{"orbit":0,"id":47263},{"orbit":0,"id":25300}],"orbitIndex":0,"name":"Attribute","orbit":0},"38003":{"stats":["20% increased Weapon Swap Speed"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":4,"id":63526}],"group":518,"skill":38003,"orbitIndex":20,"name":"Weapon Swap Speed","orbit":7},"18568":{"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-5,"id":46887}],"group":868,"skill":18568,"orbitIndex":7,"name":"Mana Leech and Cold Resistance","orbit":2},"43720":{"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[],"group":868,"skill":43720,"orbitIndex":17,"name":"Mana Leech and Cold Resistance","orbit":2},"53396":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53396,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":6,"id":10156}],"orbitIndex":12,"name":"Attribute","orbit":6},"37594":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8983}],"group":282,"skill":37594,"orbitIndex":35,"name":"Minion Damage","orbit":5},"20782":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-3,"id":52191},{"orbit":0,"id":42361}],"group":867,"skill":20782,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"41573":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":24655}],"group":464,"skill":41573,"orbitIndex":10,"name":"Fire Penetration","orbit":3},"52803":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":52803,"stats":["20% increased Life Recovery from Flasks","Life Flasks gain 0.1 charges per Second"],"recipe":["Envy","Disgust","Disgust"],"connections":[{"orbit":0,"id":59356}],"group":857,"orbitIndex":0,"isNotable":true,"name":"Hale Traveller","orbit":7},"4844":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33053}],"group":645,"skill":4844,"orbitIndex":1,"name":"Projectile Damage","orbit":7},"34473":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":34473,"stats":["3% increased Movement Speed","29% increased Chaos Damage","-13% to Chaos Resistance","23% reduced Light Radius","7% increased Attributes"],"recipe":["Isolation","Despair","Fear"],"connections":[{"orbit":0,"id":42361}],"group":867,"orbitIndex":8,"isNotable":true,"name":"Spaghettification","orbit":2},"26885":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-4,"id":59775}],"group":867,"skill":26885,"orbitIndex":60,"name":"Chaos Damage","orbit":4},"62844":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":32427}],"group":464,"skill":62844,"orbitIndex":18,"name":"Cold Penetration","orbit":3},"64240":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":64240,"stats":["5% increased Attack and Cast Speed","25% increased Physical Damage"],"recipe":["Disgust","Guilt","Isolation"],"connections":[{"orbit":0,"id":52220}],"group":81,"orbitIndex":22,"isNotable":true,"name":"Battle Fever","orbit":2},"57724":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-7,"id":54883}],"group":867,"skill":57724,"orbitIndex":20,"name":"Chaos Damage","orbit":7},"26762":{"stats":["10% increased Effect of Withered"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":35380}],"group":893,"skill":26762,"orbitIndex":0,"name":"Withered Effect","orbit":0},"42658":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42658,"stats":["+5 to any Attribute"],"isAttribute":true,"group":864,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"27662":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":687,"skill":27662,"orbitIndex":14,"name":"Additional Spell Projectiles","orbit":2},"60":{"stats":["5% chance to Blind Enemies on Hit"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":0,"id":58426}],"group":961,"skill":60,"orbitIndex":12,"name":"Blind Chance","orbit":2},"19240":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":19240,"stats":["+5 to any Attribute"],"isAttribute":true,"group":400,"connections":[{"orbit":-6,"id":46358},{"orbit":5,"id":4847}],"orbitIndex":0,"name":"Attribute","orbit":0},"25011":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":362,"skill":25011,"orbitIndex":0,"name":"Life Mastery","orbit":0},"13711":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":4,"id":30562}],"group":767,"skill":13711,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":7},"8789":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":54818},{"orbit":3,"id":63182}],"group":458,"skill":8789,"orbitIndex":12,"name":"Minion Damage","orbit":2},"6355":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":14110},{"orbit":4,"id":38124}],"group":151,"skill":6355,"orbitIndex":4,"name":"Totem Damage","orbit":7},"38143":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38143,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[],"orbitIndex":18,"name":"Attribute","orbit":2},"19722":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":19722,"stats":["20% increased Freeze Buildup","50% increased Damage with Hits against Frozen Enemies"],"recipe":["Suffering","Ire","Greed"],"connections":[],"group":862,"orbitIndex":10,"isNotable":true,"name":"Thin Ice","orbit":7},"9782":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":20677}],"group":798,"skill":9782,"orbitIndex":0,"name":"Critical Damage","orbit":0},"535":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":34621}],"group":799,"skill":535,"orbitIndex":0,"name":"Critical Damage","orbit":0},"60170":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":860,"skill":60170,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"28086":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-6,"id":57088},{"orbit":0,"id":144}],"group":860,"skill":28086,"orbitIndex":14,"name":"Cold Penetration","orbit":2},"18073":{"stats":["1% reduced Attack Speed","12% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":7,"id":49952},{"orbit":4,"id":63114}],"group":134,"skill":18073,"orbitIndex":2,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"61487":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-4,"id":36596},{"orbit":0,"id":58109}],"group":590,"skill":61487,"orbitIndex":66,"name":"Damage against Enemies on Low Life","orbit":4},"45343":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":50483},{"orbit":0,"id":14505}],"group":282,"skill":45343,"orbitIndex":19,"name":"Minion Area","orbit":7},"26638":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds","skill":26638,"stats":["Grants Skill: Temporal Rift"],"ascendancyName":"Chronomancer","connections":[{"orbit":9,"id":63002}],"group":186,"orbitIndex":0,"isNotable":true,"name":"Footprints in the Sand","orbit":0},"55708":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":55708,"stats":["Damage Penetrates 18% Lightning Resistance","25% increased Lightning Exposure Effect"],"recipe":["Isolation","Fear","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":581,"orbitIndex":10,"isNotable":true,"name":"Electric Amplification","orbit":7},"28050":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28050,"stats":["+5 to any Attribute"],"isAttribute":true,"group":716,"connections":[{"orbit":0,"id":63888}],"orbitIndex":24,"name":"Attribute","orbit":6},"62051":{"stats":["3% increased Movement Speed if you've Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":-9,"id":21755}],"group":531,"skill":62051,"orbitIndex":0,"name":"Movement Speed","orbit":3},"49235":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42077}],"group":447,"skill":49235,"orbitIndex":7,"name":"Energy Shield Delay","orbit":2},"968":{"stats":["6% increased Fire Damage","6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":6752}],"group":340,"skill":968,"orbitIndex":3,"name":"Fire Damage and Area","orbit":3},"58747":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds","skill":58747,"stats":["Grants Skill: Time Freeze"],"ascendancyName":"Chronomancer","connections":[],"group":192,"orbitIndex":0,"isNotable":true,"name":"Ultimate Command","orbit":0},"21748":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":21748,"stats":["40% faster Curse Activation","Your Curses have 20% increased Effect if 50% of Curse Duration expired"],"recipe":["Envy","Isolation","Ire"],"connections":[{"orbit":0,"id":54725},{"orbit":0,"id":6570}],"group":859,"orbitIndex":6,"isNotable":true,"name":"Impending Doom","orbit":7},"61927":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":14515},{"orbit":0,"id":3698}],"group":149,"skill":61927,"orbitIndex":5,"name":"Jagged Ground Effect","orbit":2},"41044":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-7,"id":47591}],"group":96,"skill":41044,"orbitIndex":19,"name":"Mana Regeneration","orbit":7},"37414":{"stats":["10% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":65193}],"group":234,"skill":37414,"orbitIndex":13,"name":"Accuracy","orbit":2},"21208":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[],"group":859,"skill":21208,"orbitIndex":14,"name":"Curse Activation Speed and Effect","orbit":7},"59356":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":858,"skill":59356,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"57945":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":7412}],"group":858,"skill":57945,"orbitIndex":12,"name":"Life Flask Charge Generation","orbit":7},"29479":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29479,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":0,"id":50469}],"orbitIndex":18,"name":"Attribute","orbit":5},"50302":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":0,"id":63470}],"group":238,"skill":50302,"orbitIndex":11,"name":"Life Costs","orbit":3},"63182":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":29930}],"group":458,"skill":63182,"orbitIndex":6,"name":"Minion Life","orbit":7},"16705":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16705,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":4,"id":25851},{"orbit":0,"id":34621},{"orbit":0,"id":31765}],"orbitIndex":66,"name":"Attribute","orbit":6},"53207":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":47635},{"orbit":0,"id":56914}],"group":814,"skill":53207,"orbitIndex":4,"name":"Lightning Penetration","orbit":1},"59540":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds","skill":59540,"stats":["40% more Damage against Heavy Stunned Enemies"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":67,"isNotable":true,"name":"Surprising Strength","orbit":9},"11504":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":7,"id":30839},{"orbit":0,"id":35696}],"group":896,"skill":11504,"orbitIndex":19,"name":"Attack Speed and Dexterity","orbit":2},"61056":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-4,"id":40399}],"group":855,"skill":61056,"orbitIndex":1,"name":"Energy","orbit":7},"43281":{"stats":["Triggered Spells deal 16% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":47359},{"orbit":7,"id":51934}],"group":855,"skill":43281,"orbitIndex":21,"name":"Triggered Spell Damage","orbit":7},"19846":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":196,"skill":19846,"orbitIndex":6,"name":"Fire Mastery","orbit":1},"14231":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":40453}],"group":855,"skill":14231,"orbitIndex":13,"name":"Triggered Spell Damage","orbit":7},"2511":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":2511,"stats":["25% increased Critical Damage Bonus for Attack Damage","+25% to Critical Damage Bonus against Stunned Enemies"],"recipe":["Disgust","Paranoia","Ire"],"connections":[],"group":307,"orbitIndex":20,"isNotable":true,"name":"Sundering","orbit":3},"56841":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":18451}],"group":706,"skill":56841,"orbitIndex":14,"name":"Frenzy Charge Duration","orbit":2},"3985":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":3985,"stats":["Attack Damage Penetrates 15% of Enemy Elemental Resistances"],"recipe":["Suffering","Isolation","Ire"],"connections":[{"orbit":0,"id":48660},{"orbit":3,"id":64140}],"group":730,"orbitIndex":15,"isNotable":true,"name":"Forces of Nature","orbit":2},"47441":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":47441,"stats":["Offerings have 30% increased Maximum Life","Recover 3% of Life when you create an Offering"],"recipe":["Disgust","Guilt","Fear"],"connections":[{"orbit":0,"id":61992}],"group":544,"orbitIndex":12,"isNotable":true,"name":"Stigmata","orbit":7},"38066":{"stats":["10% increased Armour","Break 15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":25300}],"group":127,"skill":38066,"orbitIndex":12,"name":"Armour Break and Armour","orbit":7},"5009":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":5009,"stats":["25% increased Daze Buildup","25% increased Daze Duration"],"recipe":["Ire","Guilt","Paranoia"],"connections":[{"orbit":0,"id":12169}],"group":854,"orbitIndex":0,"isNotable":true,"name":"Seeing Stars","orbit":0},"44420":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":28021}],"group":817,"skill":44420,"orbitIndex":0,"name":"Critical Chance","orbit":0},"17854":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":17854,"stats":["3% increased Movement Speed","30% increased Evasion Rating"],"recipe":["Greed","Disgust","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":7,"id":55275}],"group":850,"orbitIndex":0,"isNotable":true,"name":"Escape Velocity","orbit":4},"46197":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":46197,"stats":["20% reduced Critical Damage Bonus","50% increased Critical Hit Chance"],"recipe":["Suffering","Envy","Greed"],"connections":[{"orbit":0,"id":39237}],"group":903,"orbitIndex":7,"isNotable":true,"name":"Careful Assassin","orbit":2},"45202":{"icon":"Art/2DArt/SkillIcons/passives/totemmax.dds","skill":45202,"isKeystone":true,"stats":["Unlimited number of Summoned Totems","Totems reserve 100 Spirit each"],"group":137,"connections":[{"orbit":0,"id":59093}],"orbitIndex":0,"name":"Ancestral Bond","orbit":0},"18678":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":18678,"stats":["Buffs on you expire 10% slower"],"ascendancyName":"Chronomancer","group":175,"connections":[{"orbit":9,"id":26638}],"orbitIndex":0,"name":"Buff Expiry Rate","orbit":0},"55275":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":12890}],"group":850,"skill":55275,"orbitIndex":2,"name":"Evasion","orbit":3},"57039":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":6,"id":44605}],"group":491,"skill":57039,"orbitIndex":4,"name":"Cooldown Recovery Rate","orbit":3},"904":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":28578}],"group":147,"skill":904,"orbitIndex":2,"name":"Mana Regeneration","orbit":7},"63566":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63566,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":62350}],"orbitIndex":36,"name":"Attribute","orbit":6},"3601":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":47191}],"group":138,"skill":3601,"orbitIndex":62,"name":"Fire Damage","orbit":4},"24401":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":63759}],"group":849,"skill":24401,"orbitIndex":22,"name":"Poison Duration","orbit":3},"40200":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":33612},{"orbit":0,"id":61842}],"group":282,"skill":40200,"orbitIndex":0,"name":"Minion Damage","orbit":2},"63759":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":63759,"stats":["Targets can be affected by +1 of your Poisons at the same time","20% reduced Magnitude of Poison you inflict"],"recipe":["Isolation","Disgust","Paranoia"],"connections":[{"orbit":0,"id":26565}],"group":849,"orbitIndex":0,"isNotable":true,"name":"Stacking Toxins","orbit":3},"6951":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":23608}],"group":849,"skill":6951,"orbitIndex":54,"name":"Poison Damage","orbit":4},"61741":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":61741,"stats":["10% increased Skill Effect Duration","50% increased Poison Duration"],"recipe":["Despair","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":2,"id":40024}],"group":849,"orbitIndex":0,"isNotable":true,"name":"Lasting Toxins","orbit":0},"56045":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56045,"stats":["+5 to any Attribute"],"isAttribute":true,"group":732,"connections":[{"orbit":4,"id":24647},{"orbit":0,"id":11604}],"orbitIndex":0,"name":"Attribute","orbit":0},"29041":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":31388}],"group":158,"skill":29041,"orbitIndex":12,"name":"Slow Effect on You","orbit":3},"26596":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":5766},{"orbit":-5,"id":51416}],"group":815,"skill":26596,"orbitIndex":19,"name":"Cast Speed","orbit":3},"14001":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-3,"id":56893}],"group":848,"skill":14001,"orbitIndex":22,"name":"Charm Charges Used","orbit":2},"1631":{"stats":["10% increased Charm Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":3,"id":29049},{"orbit":-3,"id":14001}],"group":848,"skill":1631,"orbitIndex":4,"name":"Charm Duration","orbit":2},"14127":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":735,"skill":14127,"orbitIndex":16,"name":"Reduced Duration","orbit":2},"52":{"icon":"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds","skill":52,"isKeystone":true,"stats":["Excess Life Recovery from Regeneration is applied to Energy Shield","Energy Shield does not Recharge"],"group":82,"connections":[{"orbit":0,"id":39131}],"orbitIndex":0,"name":"Zealot's Oath","orbit":0},"17282":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":47252}],"group":117,"skill":17282,"orbitIndex":20,"name":"Mana Regeneration","orbit":7},"27290":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":27290,"stats":["25% increased Damage with Swords"],"recipe":["Guilt","Greed","Suffering"],"connections":[{"orbit":0,"id":38564}],"group":326,"orbitIndex":0,"isNotable":true,"name":"Heavy Blade","orbit":0},"7163":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":7163,"stats":["12% increased Attack Speed during any Flask Effect"],"recipe":["Despair","Greed","Greed"],"connections":[{"orbit":3,"id":45100},{"orbit":0,"id":23013}],"group":846,"orbitIndex":45,"isNotable":true,"name":"Stimulants","orbit":5},"45100":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-3,"id":56928}],"group":846,"skill":45100,"orbitIndex":37,"name":"Attack Speed and Flask Duration","orbit":4},"52319":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52319,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":-6,"id":48305}],"orbitIndex":36,"name":"Attribute","orbit":6},"63525":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":53094}],"group":747,"skill":63525,"orbitIndex":4,"name":"Accuracy and Attack Critical Chance","orbit":7},"5766":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-4,"id":51416},{"orbit":4,"id":16705}],"group":845,"skill":5766,"orbitIndex":60,"name":"Spell Damage","orbit":6},"53196":{"stats":["8% increased Flask and Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":46692}],"group":688,"skill":53196,"orbitIndex":8,"name":"Flask and Charm Charges Gained","orbit":7},"52464":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[],"group":845,"skill":52464,"orbitIndex":24,"name":"Life on Kill","orbit":6},"17348":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":11275}],"group":48,"skill":17348,"orbitIndex":17,"name":"Ignite Effect","orbit":7},"1459":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":47252}],"group":117,"skill":1459,"orbitIndex":12,"name":"Mana Regeneration","orbit":7},"54351":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":-6,"id":52464}],"group":845,"skill":54351,"orbitIndex":7,"name":"Life on Kill","orbit":7},"32885":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":6689}],"group":446,"skill":32885,"orbitIndex":33,"name":"Shield Block","orbit":4},"28950":{"icon":"Art/2DArt/SkillIcons/passives/bodysoul.dds","skill":28950,"stats":["10% increased Mana Regeneration Rate","Regenerate 0.5% of Life per second","+5 to Strength and Intelligence"],"recipe":["Despair","Envy","Envy"],"connections":[{"orbit":0,"id":63469},{"orbit":4,"id":22045},{"orbit":0,"id":10156}],"group":403,"orbitIndex":0,"isNotable":true,"name":"Devoted Protector","orbit":0},"34840":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34840,"stats":["+5 to any Attribute"],"isAttribute":true,"group":320,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":27674},{"orbit":0,"id":48618}],"orbitIndex":0,"name":"Attribute","orbit":0},"3698":{"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":3698,"stats":["Enemies in Jagged Ground you create take 10% increased Damage"],"recipe":["Isolation","Isolation","Greed"],"connections":[{"orbit":0,"id":33137}],"group":149,"orbitIndex":11,"isNotable":true,"name":"Spike Pit","orbit":2},"20032":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":20032,"stats":["16% increased Cast Speed if you've dealt a Critical Hit Recently","10% reduced Critical Hit Chance"],"recipe":["Despair","Greed","Guilt"],"connections":[{"orbit":0,"id":28680},{"orbit":0,"id":56762}],"group":246,"orbitIndex":0,"isNotable":true,"name":"Erraticism","orbit":2},"17088":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17088,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":4,"id":51416}],"orbitIndex":48,"name":"Attribute","orbit":6},"41171":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":36341}],"group":685,"skill":41171,"orbitIndex":4,"name":"Attack Speed","orbit":7},"15182":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15182,"stats":["+5 to any Attribute"],"isAttribute":true,"group":471,"connections":[{"orbit":0,"id":54818}],"orbitIndex":0,"name":"Attribute","orbit":0},"7412":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":45709}],"group":858,"skill":7412,"orbitIndex":15,"name":"Life Flask Charges","orbit":7},"28578":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":147,"skill":28578,"orbitIndex":0,"name":"Mana Regeneration","orbit":7},"30562":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":30562,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","25% reduced effect of Curses on you"],"recipe":["Envy","Greed","Isolation"],"connections":[{"orbit":0,"id":11032}],"group":767,"orbitIndex":16,"isNotable":true,"name":"Inner Faith","orbit":2},"48773":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48773,"stats":["+5 to any Attribute"],"isAttribute":true,"group":1005,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":37484},{"orbit":0,"id":56847}],"orbitIndex":0,"name":"Attribute","orbit":0},"61992":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":544,"skill":61992,"orbitIndex":6,"name":"Minion Offence Mastery","orbit":1},"46989":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":571,"skill":46989,"orbitIndex":12,"name":"Spell Area of Effect","orbit":7},"21746":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21746,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":46782}],"orbitIndex":12,"name":"Attribute","orbit":6},"25851":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-6,"id":52695},{"orbit":5,"id":36270}],"group":845,"skill":25851,"orbitIndex":0,"name":"Physical Damage","orbit":6},"60138":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":60138,"stats":["Break 30% increased Armour on enemies affected by Ailments","+10 to Strength","25% increased Physical Damage"],"recipe":["Greed","Paranoia","Suffering"],"connections":[{"orbit":0,"id":52695}],"group":845,"orbitIndex":3,"isNotable":true,"name":"Stylebender","orbit":5},"9472":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":9472,"stats":["15% increased Projectile Speed","15% increased Area of Effect for Attacks"],"recipe":["Envy","Disgust","Guilt"],"connections":[{"orbit":0,"id":31991},{"orbit":0,"id":41062}],"group":751,"orbitIndex":0,"isNotable":true,"name":"Catapult","orbit":0},"57821":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57821,"stats":["+5 to any Attribute"],"isAttribute":true,"group":906,"connections":[{"orbit":0,"id":61834},{"orbit":0,"id":26034},{"orbit":0,"id":22219}],"orbitIndex":12,"name":"Attribute","orbit":4},"56838":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-4,"id":42805},{"orbit":5,"id":62624}],"group":905,"skill":56838,"orbitIndex":2,"name":"Evasion and Energy Shield","orbit":3},"25520":{"icon":"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds","skill":25520,"isKeystone":true,"stats":["Gain Power Charges instead of Frenzy Charges","Gain Frenzy Charges instead of Endurance Charges","Gain Endurance Charges instead of Power Charges"],"group":844,"connections":[],"orbitIndex":0,"name":"Resonance","orbit":0},"63469":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":30834},{"orbit":0,"id":50216}],"group":373,"skill":63469,"orbitIndex":10,"name":"Mana Regeneration","orbit":2},"10364":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":0,"id":44683},{"orbit":4,"id":55342},{"orbit":0,"id":42857}],"group":610,"skill":10364,"orbitIndex":48,"name":"Skill Speed","orbit":4},"4113":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4627}],"group":541,"skill":4113,"orbitIndex":4,"name":"Freeze Buildup","orbit":7},"7668":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":7668,"stats":["20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks","Empowered Attacks deal 30% increased Damage"],"recipe":["Guilt","Despair","Paranoia"],"connections":[{"orbit":0,"id":62015}],"group":204,"orbitIndex":3,"isNotable":true,"name":"Internal Bleeding","orbit":2},"27785":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":63863}],"group":580,"skill":27785,"orbitIndex":10,"name":"Lightning Penetration","orbit":7},"55400":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":30372}],"group":843,"skill":55400,"orbitIndex":13,"name":"Lightning Penetration","orbit":2},"24812":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":64643}],"group":718,"skill":24812,"orbitIndex":11,"name":"Power Charge Duration","orbit":2},"42065":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":42065,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"recipe":["Fear","Envy","Isolation"],"connections":[{"orbit":0,"id":37532}],"group":843,"orbitIndex":1,"isNotable":true,"name":"Surging Currents","orbit":2},"33180":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":46989},{"orbit":0,"id":60269}],"group":571,"skill":33180,"orbitIndex":15,"name":"Spell Area of Effect","orbit":7},"26034":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":45631}],"group":905,"skill":26034,"orbitIndex":10,"name":"Evasion and Energy Shield","orbit":3},"35492":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":485,"skill":35492,"orbitIndex":22,"name":"Minion Offence Mastery","orbit":7},"14655":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":7,"id":372}],"group":213,"skill":14655,"orbitIndex":3,"name":"Armour","orbit":3},"9185":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":60107}],"group":619,"skill":9185,"orbitIndex":5,"name":"Critical Chance","orbit":2},"55041":{"stats":["8% increased Spell Damage","8% reduced Projectile Speed for Spell Skills"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":35564}],"group":794,"skill":55041,"orbitIndex":19,"name":"Spell Damage and Projectile Speed","orbit":3},"39050":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":39050,"stats":["25% increased Damage with Hits against Enemies affected by Elemental Ailments","15% increased Duration of Ignite, Shock and Chill on Enemies"],"recipe":["Disgust","Envy","Isolation"],"connections":[],"group":841,"orbitIndex":4,"isNotable":true,"name":"Exploit","orbit":2},"21572":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":-7,"id":6660},{"orbit":0,"id":7526}],"group":841,"skill":21572,"orbitIndex":20,"name":"Damage against Ailments","orbit":2},"3446":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3446,"stats":["+5 to any Attribute"],"isAttribute":true,"group":124,"connections":[{"orbit":0,"id":61938}],"orbitIndex":0,"name":"Attribute","orbit":0},"32123":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":54678}],"group":839,"skill":32123,"orbitIndex":4,"name":"Shock Chance","orbit":3},"51821":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51821,"stats":["+5 to any Attribute"],"isAttribute":true,"group":143,"connections":[{"orbit":0,"id":46857},{"orbit":0,"id":33989}],"orbitIndex":0,"name":"Attribute","orbit":0},"12125":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":211,"skill":12125,"orbitIndex":0,"name":"Life Mastery","orbit":0},"47856":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":32561}],"group":481,"skill":47856,"orbitIndex":15,"name":"Two Handed Damage","orbit":2},"55193":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":55193,"stats":["+2 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet"],"recipe":["Ire","Suffering","Paranoia"],"connections":[{"orbit":-2,"id":10944}],"group":838,"orbitIndex":4,"isNotable":true,"name":"Subterfuge Mask","orbit":1},"35688":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":16618}],"group":509,"skill":35688,"orbitIndex":10,"name":"Reduced Attribute Requirements","orbit":7},"10944":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":838,"skill":10944,"orbitIndex":0,"name":"Evasion and Energy Shield","orbit":2},"34898":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":38463}],"group":837,"skill":34898,"orbitIndex":31,"name":"Debuff Expiry","orbit":5},"26772":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":2,"id":24240},{"orbit":3,"id":45774}],"group":837,"skill":26772,"orbitIndex":22,"name":"Slow Effect","orbit":7},"24062":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":24062,"stats":["10% increased Energy Shield Recharge Rate","Recover 2% of Life on Kill","+10 to Intelligence"],"recipe":["Envy","Suffering","Fear"],"connections":[{"orbit":0,"id":54351}],"group":845,"orbitIndex":21,"isNotable":true,"name":"Immortal Infamy","orbit":5},"39470":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":39470,"stats":["Minions have 12% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-6,"id":17754}],"orbitIndex":3,"name":"Minion Life","orbit":8},"32241":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":836,"skill":32241,"orbitIndex":0,"name":"Life Mastery","orbit":0},"8616":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8616,"stats":["+5 to any Attribute"],"isAttribute":true,"group":502,"connections":[{"orbit":0,"id":57710},{"orbit":-4,"id":43576},{"orbit":4,"id":36746}],"orbitIndex":0,"name":"Attribute","orbit":0},"16725":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16725,"stats":["+5 to any Attribute"],"isAttribute":true,"group":283,"connections":[{"orbit":6,"id":27373},{"orbit":-6,"id":36629},{"orbit":0,"id":54811},{"orbit":0,"id":36163}],"orbitIndex":0,"name":"Attribute","orbit":0},"56776":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":56776,"stats":["50% increased Critical Damage Bonus during any Flask Effect"],"recipe":["Suffering","Ire","Envy"],"connections":[{"orbit":0,"id":45609},{"orbit":0,"id":24129}],"group":831,"orbitIndex":6,"isNotable":true,"name":"Cooked","orbit":1},"19470":{"stats":["10% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":658,"skill":19470,"orbitIndex":17,"name":"Life and Mana Flask Recovery","orbit":3},"5108":{"stats":["12% increased Chance to inflict Ailments with One-Handed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":528,"skill":5108,"orbitIndex":21,"name":"One Handed Ailment Chance","orbit":2},"9798":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":9798,"stats":["4% increased Skill Speed"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":61991}],"orbitIndex":58,"name":"Skill Speed","orbit":9},"9046":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":39569},{"orbit":0,"id":56776}],"group":831,"skill":9046,"orbitIndex":6,"name":"Critical Chance","orbit":2},"39569":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":35901}],"group":831,"skill":39569,"orbitIndex":0,"name":"Critical Damage","orbit":7},"17686":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":53996},{"orbit":0,"id":43575}],"group":586,"skill":17686,"orbitIndex":19,"name":"Melee Damage ","orbit":7},"23905":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":27875}],"group":830,"skill":23905,"orbitIndex":0,"name":"Shock Effect","orbit":0},"34375":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-2,"id":48745}],"group":261,"skill":34375,"orbitIndex":8,"name":"Shield Defences","orbit":2},"50420":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-2,"id":51241},{"orbit":0,"id":31364}],"group":819,"skill":50420,"orbitIndex":2,"name":"Charm Charges","orbit":2},"7526":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7526,"stats":["+5 to any Attribute"],"isAttribute":true,"group":829,"connections":[{"orbit":0,"id":31683},{"orbit":0,"id":46742}],"orbitIndex":0,"name":"Attribute","orbit":0},"23259":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":22864}],"group":695,"skill":23259,"orbitIndex":19,"name":"Attack Critical Chance","orbit":2},"144":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":26598}],"group":828,"skill":144,"orbitIndex":12,"name":"Elemental Damage and Freeze Buildup","orbit":5},"8854":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":8854,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":46644}],"orbitIndex":54,"name":"Life","orbit":8},"19955":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":19955,"stats":["+1 to Level of all Cold Skills"],"recipe":["Isolation","Suffering","Fear"],"connections":[],"group":497,"orbitIndex":6,"isNotable":true,"name":"Endless Blizzard","orbit":4},"33729":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":45712}],"group":828,"skill":33729,"orbitIndex":66,"name":"Elemental Damage and Ignite Chance","orbit":4},"24481":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":721,"skill":24481,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"55582":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":55582,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":214,"connections":[{"orbit":2147483647,"id":60287}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"11376":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":11376,"stats":["Minions have 40% increased Critical Hit Chance"],"recipe":["Despair","Despair","Suffering"],"connections":[{"orbit":0,"id":35492}],"group":485,"orbitIndex":0,"isNotable":true,"name":"Necrotic Touch","orbit":1},"65154":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":77,"skill":65154,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"31295":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":9352}],"group":37,"skill":31295,"orbitIndex":4,"name":"Attack Area","orbit":3},"9736":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":9736,"stats":["Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"],"recipe":["Ire","Ire","Ire"],"connections":[{"orbit":0,"id":61318},{"orbit":0,"id":62235}],"group":618,"orbitIndex":36,"isNotable":true,"name":"Insulated Treads","orbit":4},"35896":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35896,"stats":["+5 to any Attribute"],"isAttribute":true,"group":662,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":53266}],"orbitIndex":0,"name":"Attribute","orbit":0},"64213":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-3,"id":12611},{"orbit":3,"id":61246}],"group":828,"skill":64213,"orbitIndex":8,"name":"Elemental Damage and Freeze Buildup","orbit":7},"45609":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":7,"id":39569}],"group":831,"skill":45609,"orbitIndex":18,"name":"Critical Damage","orbit":2},"20649":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":62998},{"orbit":0,"id":2582}],"group":991,"skill":20649,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"59538":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59538,"stats":["+5 to any Attribute"],"isAttribute":true,"group":949,"connections":[{"orbit":0,"id":34912},{"orbit":0,"id":47976}],"orbitIndex":0,"name":"Attribute","orbit":0},"14934":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":14934,"stats":["10% increased Cast Speed","+7% to Chaos Resistance"],"recipe":["Ire","Envy","Suffering"],"connections":[],"group":393,"orbitIndex":4,"isNotable":true,"name":"Spiral into Mania","orbit":2},"17316":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-4,"id":40244},{"orbit":5,"id":62986}],"group":826,"skill":17316,"orbitIndex":48,"name":"One Handed Damage","orbit":4},"63132":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":63132,"stats":[],"group":825,"connections":[{"orbit":0,"id":26885},{"orbit":0,"id":28021},{"orbit":0,"id":42379}],"orbitIndex":5,"name":"Jewel Socket","orbit":4},"54176":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":55463},{"orbit":0,"id":26598}],"group":824,"skill":54176,"orbitIndex":0,"name":"Shock Chance","orbit":0},"61601":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":61601,"stats":["+10 to Dexterity","20% increased Critical Hit Chance"],"recipe":["Ire","Guilt","Disgust"],"connections":[{"orbit":0,"id":44420},{"orbit":0,"id":9586}],"group":823,"orbitIndex":0,"isNotable":true,"name":"True Strike","orbit":0},"21984":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":21984,"stats":[],"group":822,"connections":[{"orbit":0,"id":61403}],"orbitIndex":4,"name":"Jewel Socket","orbit":1},"24165":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24165,"stats":["+5 to any Attribute"],"isAttribute":true,"group":821,"connections":[{"orbit":0,"id":8908},{"orbit":0,"id":25557},{"orbit":0,"id":44628},{"orbit":-6,"id":4328},{"orbit":0,"id":6079}],"orbitIndex":0,"name":"Attribute","orbit":0},"41372":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":48030}],"group":584,"skill":41372,"orbitIndex":21,"name":"Energy Shield and Mana Regeneration","orbit":7},"37742":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":37742,"stats":["50% increased amount of Mana Leeched","25% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Paranoia","Paranoia","Fear"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":8246}],"group":964,"orbitIndex":9,"isNotable":true,"name":"Manifold Method","orbit":3},"51241":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-2,"id":55118}],"group":819,"skill":51241,"orbitIndex":10,"name":"Charm Charges","orbit":2},"59480":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":3999},{"orbit":0,"id":36634}],"group":430,"skill":59480,"orbitIndex":69,"name":"Area Damage","orbit":4},"31650":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":16051},{"orbit":0,"id":31017},{"orbit":0,"id":48768}],"group":177,"skill":31650,"orbitIndex":0,"name":"Totem Damage","orbit":5},"55846":{"stats":["Gain 5 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":0,"id":24239}],"group":721,"skill":55846,"orbitIndex":5,"name":"Life on Kill","orbit":1},"38130":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":187,"skill":38130,"orbitIndex":12,"name":"Warcry Cooldown Speed","orbit":3},"31683":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":31683,"stats":[],"group":851,"connections":[{"orbit":0,"id":63566},{"orbit":0,"id":38678}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"40480":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":40480,"stats":["25% increased Critical Hit Chance against Shocked Enemies","40% increased Magnitude of Shock you inflict with Critical Hits"],"recipe":["Paranoia","Fear","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":1953}],"group":816,"orbitIndex":0,"isNotable":true,"name":"Harmonic Generator","orbit":0},"17254":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":17254,"stats":["15% increased Evasion Rating","8% increased Cast Speed"],"recipe":["Ire","Guilt","Isolation"],"connections":[{"orbit":0,"id":14272},{"orbit":0,"id":26596}],"group":815,"orbitIndex":0,"isNotable":true,"name":"Spell Haste","orbit":0},"38068":{"stats":["12% increased chance to Ignite","12% increased Freeze Buildup","12% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":56409}],"group":466,"skill":38068,"orbitIndex":60,"name":"Elemental Ailment Chance","orbit":4},"40783":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":40783,"stats":["+5 to any Attribute"],"isAttribute":true,"group":560,"connections":[{"orbit":0,"id":11672},{"orbit":0,"id":15358},{"orbit":-6,"id":16845}],"orbitIndex":0,"name":"Attribute","orbit":0},"52373":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-2,"id":37276},{"orbit":7,"id":56342}],"group":212,"skill":52373,"orbitIndex":20,"name":"Maximum Rage","orbit":2},"39423":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":53207}],"group":814,"skill":39423,"orbitIndex":20,"name":"Lightning Penetration","orbit":2},"30456":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":30456,"stats":["50% increased Evasion Rating when on Full Life","25% increased Stun Threshold while on Full Life"],"recipe":["Ire","Ire","Greed"],"connections":[{"orbit":-5,"id":38044}],"group":813,"orbitIndex":0,"isNotable":true,"name":"High Alert","orbit":0},"40721":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":40721,"stats":[],"ascendancyName":"Stormweaver","isAscendancyStart":true,"group":308,"connections":[{"orbit":-6,"id":64789},{"orbit":6,"id":65413},{"orbit":-4,"id":49759},{"orbit":4,"id":13673},{"orbit":0,"id":12488},{"orbit":0,"id":44484}],"orbitIndex":0,"name":"Stormweaver","orbit":9},"30871":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":12208}],"group":812,"skill":30871,"orbitIndex":9,"name":"Life Flasks","orbit":7},"13980":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":13980,"stats":["10% chance to Aftershock for Slam Skills you use with Maces","10% chance to Aftershock for Strike Skills you use with Maces"],"recipe":["Isolation","Paranoia","Disgust"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":14693}],"group":56,"orbitIndex":33,"isNotable":true,"name":"Split the Earth","orbit":4},"35369":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":35369,"stats":["40% increased Mana Regeneration Rate while stationary","20% reduced Mana Regeneration Rate while moving"],"recipe":["Ire","Ire","Envy"],"connections":[{"orbit":0,"id":1459}],"group":117,"orbitIndex":0,"isNotable":true,"name":"Investing Energies","orbit":0},"9411":{"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":49466}],"group":812,"skill":9411,"orbitIndex":15,"name":"Life Flasks","orbit":7},"17411":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":262,"skill":17411,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"41512":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":41512,"stats":["15% increased Melee Damage","15% increased Stun Buildup with Melee Damage","+15 to Strength"],"recipe":["Paranoia","Disgust","Envy"],"connections":[],"group":586,"orbitIndex":13,"isNotable":true,"name":"Heavy Weaponry","orbit":7},"59600":{"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":9411}],"group":811,"skill":59600,"orbitIndex":21,"name":"Life Flasks","orbit":7},"6689":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":51735}],"group":446,"skill":6689,"orbitIndex":39,"name":"Shield Damage","orbit":4},"14045":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33848}],"group":751,"skill":14045,"orbitIndex":48,"name":"Projectile Damage","orbit":5},"18245":{"stats":["Minions have 8% increased maximum Life","Minions have 8% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":30554},{"orbit":0,"id":21164}],"group":70,"skill":18245,"orbitIndex":16,"name":"Minion Life and Physical Damage Reduction","orbit":7},"43746":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":43746,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[{"orbit":0,"id":16460},{"orbit":0,"id":38143}],"orbitIndex":6,"name":"Attribute","orbit":3},"33445":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-2,"id":30143}],"group":790,"skill":33445,"orbitIndex":3,"name":"Block","orbit":7},"18470":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":3234},{"orbit":0,"id":35901}],"group":809,"skill":18470,"orbitIndex":4,"name":"Pin Buildup","orbit":2},"45530":{"stats":["15% increased Minion Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-7,"id":55180}],"group":609,"skill":45530,"orbitIndex":18,"name":"Minion Accuracy","orbit":7},"56762":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":28839}],"group":246,"skill":56762,"orbitIndex":20,"name":"Cast Speed","orbit":2},"47252":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":117,"skill":47252,"orbitIndex":16,"name":"Mana Regeneration","orbit":7},"9272":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[],"group":809,"skill":9272,"orbitIndex":18,"name":"Slow Effect","orbit":7},"53194":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":38130}],"group":187,"skill":53194,"orbitIndex":16,"name":"Warcry Cooldown Speed","orbit":2},"10927":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[],"group":809,"skill":10927,"orbitIndex":14,"name":"Slow Effect","orbit":7},"3234":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":4447}],"group":809,"skill":3234,"orbitIndex":8,"name":"Pin Buildup","orbit":1},"19330":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":435,"skill":19330,"orbitIndex":52,"name":"Life Regeneration","orbit":4},"35028":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":35028,"stats":["Regenerate 2.5% of Life per second while Surrounded"],"recipe":["Disgust","Despair","Greed"],"connections":[{"orbit":0,"id":51974}],"group":480,"orbitIndex":21,"isNotable":true,"name":"In the Thick of It","orbit":2},"38596":{"stats":["15% reduced effect of Curses on you"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":5,"id":31925}],"group":250,"skill":38596,"orbitIndex":14,"name":"Curse Effect on Self","orbit":4},"56638":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":677,"skill":56638,"orbitIndex":2,"name":"Stun Threshold if not Stunned recently","orbit":2},"27733":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":44005},{"orbit":0,"id":2999}],"group":157,"skill":27733,"orbitIndex":30,"name":"Caster Mastery","orbit":4},"43964":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":41645}],"group":805,"skill":43964,"orbitIndex":7,"name":"Armour Break","orbit":2},"57555":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":37608}],"group":422,"skill":57555,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"28982":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28982,"stats":["+5 to any Attribute"],"isAttribute":true,"group":47,"connections":[{"orbit":0,"id":31295},{"orbit":0,"id":55190}],"orbitIndex":0,"name":"Attribute","orbit":0},"49380":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":49380,"stats":["Break 25% increased Armour"],"ascendancyName":"Warbringer","group":2,"connections":[{"orbit":-7,"id":36659}],"orbitIndex":0,"name":"Armour Break","orbit":0},"26148":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":38969}],"group":804,"skill":26148,"orbitIndex":0,"name":"Accuracy Mastery","orbit":0},"38969":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":38969,"stats":["10% increased Accuracy Rating","Gain Accuracy Rating equal to your Intelligence"],"recipe":["Fear","Suffering","Disgust"],"connections":[{"orbit":0,"id":50588}],"group":803,"orbitIndex":0,"isNotable":true,"name":"Finesse","orbit":0},"13367":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":38969},{"orbit":0,"id":21713}],"group":803,"skill":13367,"orbitIndex":14,"name":"Accuracy","orbit":2},"59355":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":802,"skill":59355,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"20916":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":20916,"stats":["24% increased Attack Damage","10% chance to Blind Enemies on Hit with Attacks"],"recipe":["Envy","Fear","Envy"],"connections":[{"orbit":0,"id":59355}],"group":802,"orbitIndex":8,"isNotable":true,"name":"Blinding Strike","orbit":7},"53989":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-7,"id":29372}],"group":235,"skill":53989,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"29270":{"stats":["10% increased Attack Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-2,"id":7251}],"group":336,"skill":29270,"orbitIndex":16,"name":"Attack Damage","orbit":7},"23861":{"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[],"group":254,"skill":23861,"orbitIndex":8,"name":"Two Handed Damage and Stun","orbit":7},"3128":{"stats":["3% increased Cast Speed with Cold Skills"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":19722}],"group":861,"skill":3128,"orbitIndex":14,"name":"Cast Speed with Cold Skills","orbit":7},"48544":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":40166}],"group":797,"skill":48544,"orbitIndex":8,"name":"Attack Mastery","orbit":1},"40166":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":40166,"stats":["8% increased Attack Speed","10% reduced Cost of Skills"],"recipe":["Fear","Ire","Despair"],"connections":[],"group":797,"orbitIndex":8,"isNotable":true,"name":"Deep Trance","orbit":7},"57819":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds","skill":57819,"stats":["Grants 3 additional Skill Slots"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":53762},{"orbit":0,"id":18146}],"group":304,"orbitIndex":0,"isNotable":true,"name":"Integrated Efficiency","orbit":0},"44628":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":20820}],"group":797,"skill":44628,"orbitIndex":0,"name":"Attack Speed","orbit":7},"59603":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[],"group":635,"skill":59603,"orbitIndex":0,"name":"Life Recoup","orbit":0},"55118":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":0,"id":50420}],"group":819,"skill":55118,"orbitIndex":18,"name":"Charm Charges","orbit":2},"20820":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":40166}],"group":797,"skill":20820,"orbitIndex":16,"name":"Attack Speed","orbit":7},"32856":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":32856,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Chronomancer","group":231,"connections":[{"orbit":0,"id":3605},{"orbit":9,"id":10987}],"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"10382":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10382,"stats":["+5 to any Attribute"],"isAttribute":true,"group":795,"connections":[{"orbit":0,"id":21984}],"orbitIndex":0,"name":"Attribute","orbit":0},"25711":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":25711,"stats":["20% increased Attack Speed while Surrounded"],"recipe":["Guilt","Suffering","Ire"],"connections":[{"orbit":-7,"id":58038}],"group":480,"orbitIndex":9,"isNotable":true,"name":"Thrill of Battle","orbit":2},"16090":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":0,"id":50302}],"group":238,"skill":16090,"orbitIndex":8,"name":"Life Costs","orbit":3},"22682":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":794,"skill":22682,"orbitIndex":2,"name":"Additional Spell Projectiles","orbit":3},"3027":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":54228}],"group":81,"skill":3027,"orbitIndex":14,"name":"Physical Damage","orbit":2},"50561":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":12418}],"group":90,"skill":50561,"orbitIndex":18,"name":"Empowered Attack Damage","orbit":3},"51565":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":2335},{"orbit":0,"id":22682}],"group":794,"skill":51565,"orbitIndex":4,"name":"Additional Spell Projectiles","orbit":3},"2335":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":2335,"stats":["20% increased Projectile Speed for Spell Skills"],"recipe":["Despair","Fear","Guilt"],"connections":[{"orbit":0,"id":18121}],"group":794,"orbitIndex":6,"isNotable":true,"name":"Turn the Clock Forward","orbit":3},"62518":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":4,"id":41414}],"group":130,"skill":62518,"orbitIndex":7,"name":"Maximum Fire Resistance","orbit":3},"33244":{"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":212,"skill":33244,"orbitIndex":0,"name":"Rage Mastery","orbit":0},"6923":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":1087}],"group":229,"skill":6923,"orbitIndex":10,"name":"Two Handed Damage","orbit":3},"6660":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":-7,"id":39050}],"group":841,"skill":6660,"orbitIndex":12,"name":"Damage against Ailments","orbit":2},"63888":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63888,"stats":["+5 to any Attribute"],"isAttribute":true,"group":793,"connections":[{"orbit":0,"id":35901},{"orbit":0,"id":28272},{"orbit":0,"id":61356},{"orbit":0,"id":55118}],"orbitIndex":0,"name":"Attribute","orbit":0},"53524":{"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32727}],"group":415,"skill":53524,"orbitIndex":0,"name":"Armour Break","orbit":0},"11916":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":526,"skill":11916,"orbitIndex":16,"name":"Life Regeneration","orbit":3},"12498":{"stats":["10% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[{"orbit":0,"id":30341}],"group":792,"skill":12498,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"13065":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":13065,"stats":["Triggered Spells deal 16% increased Spell Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":0,"id":63236}],"orbitIndex":14,"name":"Triggered Spell Damage","orbit":8},"64492":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":46688}],"group":826,"skill":64492,"orbitIndex":8,"name":"One Handed Attack Speed","orbit":7},"45331":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":23221}],"group":890,"skill":45331,"orbitIndex":21,"name":"Chaining Projectiles","orbit":7},"4377":{"stats":["10% increased Accuracy Rating while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":50273}],"group":551,"skill":4377,"orbitIndex":15,"name":"Dual Wielding Accuracy","orbit":2},"9583":{"stats":["10% increased amount of Life Leeched","10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":47316}],"group":281,"skill":9583,"orbitIndex":21,"name":"Life Leech and Physical Damage","orbit":7},"34201":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34201,"stats":["+5 to any Attribute"],"isAttribute":true,"group":789,"connections":[{"orbit":0,"id":24922},{"orbit":0,"id":46882},{"orbit":0,"id":17316}],"orbitIndex":0,"name":"Attribute","orbit":0},"16466":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":16466,"stats":["5% increased Cast Speed","15% increased Mana Regeneration Rate","+10 to Intelligence"],"recipe":["Fear","Envy","Paranoia"],"connections":[{"orbit":0,"id":40196}],"group":788,"orbitIndex":4,"isNotable":true,"name":"Mental Alacrity","orbit":2},"15304":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":16466}],"group":788,"skill":15304,"orbitIndex":20,"name":"Cast Speed","orbit":2},"43423":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":43423,"stats":["25% increased chance to Ignite","25% increased Freeze Buildup","25% increased chance to Shock","25% increased Electrocute Buildup"],"recipe":["Suffering","Disgust","Greed"],"connections":[{"orbit":0,"id":48660}],"group":730,"orbitIndex":23,"isNotable":true,"name":"Emboldened Avatar","orbit":2},"56330":{"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":6,"id":39570}],"group":776,"skill":56330,"orbitIndex":22,"name":"Bleeding Chance on Critical","orbit":7},"27726":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-4,"id":7721}],"group":365,"skill":27726,"orbitIndex":8,"name":"Armour","orbit":2},"6008":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":64020},{"orbit":2,"id":58096}],"group":262,"skill":6008,"orbitIndex":0,"name":"Spell Damage","orbit":2},"8800":{"stats":["15% increased Melee Damage with Hits at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":28982}],"group":37,"skill":8800,"orbitIndex":10,"name":"Melee Damage","orbit":3},"55572":{"stats":["8% increased Fire Damage","8% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":57626}],"group":541,"skill":55572,"orbitIndex":20,"name":"Cold and Fire Damage","orbit":7},"40117":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":40117,"stats":["Gain Physical Thorns damage equal to 2% of Armour from equipped Body Armour"],"recipe":["Despair","Guilt","Disgust"],"connections":[],"group":133,"orbitIndex":2,"isNotable":true,"name":"Spiked Armour","orbit":7},"41016":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":785,"skill":41016,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"41965":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":37463}},"skill":41965,"stats":["8% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-6,"id":1755}],"orbitIndex":21,"name":"Spell Damage","orbit":2},"8821":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":63863}],"group":576,"skill":8821,"orbitIndex":0,"name":"Lightning Damage","orbit":3},"28106":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":3775}],"group":785,"skill":28106,"orbitIndex":8,"name":"Life Flask Charges","orbit":2},"49165":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":49165,"stats":["12% increased Effect of your Mark Skills"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":59913}],"orbitIndex":27,"name":"Mark Effect","orbit":6},"35696":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35696,"stats":["+5 to any Attribute"],"isAttribute":true,"group":923,"connections":[{"orbit":0,"id":24070},{"orbit":0,"id":64064}],"orbitIndex":0,"name":"Attribute","orbit":0},"34501":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":34501,"stats":["15% increased Armour and Evasion Rating"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":6935}],"orbitIndex":25,"name":"Armour and Evasion","orbit":5},"30392":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":30392,"stats":["30% increased Life Regeneration rate during Effect of any Life Flask"],"recipe":["Disgust","Despair","Guilt"],"connections":[{"orbit":0,"id":28106},{"orbit":0,"id":41016}],"group":785,"orbitIndex":3,"isNotable":true,"name":"Succour","orbit":2},"23343":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":3,"id":58388}],"group":785,"skill":23343,"orbitIndex":21,"name":"Life Flasks","orbit":2},"36298":{"stats":["10% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":3,"id":8510},{"orbit":6,"id":40918}],"group":784,"skill":36298,"orbitIndex":0,"name":"Ailment Effect","orbit":0},"770":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":770,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-7,"id":10694}],"orbitIndex":7,"name":"Mana","orbit":6},"63236":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds","skill":63236,"stats":["Meta Skills gain 35% more Energy"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":17,"isNotable":true,"name":"The Soul Springs Eternal","orbit":6},"5701":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":21005}],"group":782,"skill":5701,"orbitIndex":12,"name":"Mark Effect","orbit":2},"1207":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1207,"stats":["+5 to any Attribute"],"isAttribute":true,"group":394,"connections":[{"orbit":0,"id":38323}],"orbitIndex":69,"name":"Attribute","orbit":4},"15051":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":15051,"stats":["Enemies you Mark have 15% reduced Accuracy Rating"],"recipe":["Paranoia","Envy","Ire"],"connections":[{"orbit":3,"id":21005},{"orbit":-7,"id":5701}],"group":782,"orbitIndex":15,"isNotable":true,"name":"Break Focus","orbit":3},"38535":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":38535,"stats":["40% increased Elemental Damage if you've dealt a Critical Hit Recently","20% increased Critical Hit Chance"],"recipe":["Fear","Fear","Envy"],"connections":[{"orbit":7,"id":61063},{"orbit":0,"id":42205}],"group":197,"orbitIndex":66,"isNotable":true,"name":"Stormcharged","orbit":4},"59047":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":59047,"stats":["15% increased Effect of your Mark Skills"],"recipe":["Envy","Isolation","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"orbit":-2,"id":21005},{"orbit":2,"id":5701},{"orbit":-2,"id":2656}],"group":782,"orbitIndex":0,"isNotable":true,"name":"Hold Focus","orbit":0},"9586":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":780,"skill":9586,"orbitIndex":10,"name":"Critical Mastery","orbit":4},"3332":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[],"group":390,"skill":3332,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"51213":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":51213,"stats":["15% increased Duration of Damaging Ailments on Enemies","30% increased Damage with Hits against Enemies affected by Ailments"],"recipe":["Guilt","Fear","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":787,"orbitIndex":0,"isNotable":true,"name":"Wasting","orbit":0},"21286":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":4128},{"orbit":0,"id":45992}],"group":273,"skill":21286,"orbitIndex":14,"name":"Armour","orbit":3},"40073":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":40073,"stats":["40% increased chance to Shock","Gain 5% of Lightning Damage as Extra Cold Damage"],"recipe":["Isolation","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":608,"orbitIndex":0,"isNotable":true,"name":"Drenched","orbit":0},"49394":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":23786}],"group":776,"skill":49394,"orbitIndex":19,"name":"Critical Bleeding Effect","orbit":7},"13724":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":13724,"stats":["30% increased Damage if you've dealt a Critical Hit in the past 8 seconds","12% increased Critical Hit Chance"],"recipe":["Disgust","Suffering","Envy"],"connections":[{"orbit":0,"id":20236},{"orbit":0,"id":33823}],"group":775,"orbitIndex":54,"isNotable":true,"name":"Deadly Force","orbit":4},"1143":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":58170},{"orbit":0,"id":50084}],"group":406,"skill":1143,"orbitIndex":5,"name":"Spell Critical Damage","orbit":2},"3640":{"stats":["14% increased Damage with Unarmed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":-6,"id":14267},{"orbit":6,"id":5188}],"group":993,"skill":3640,"orbitIndex":6,"name":"Unarmed Damage","orbit":7},"48774":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":48774,"stats":["15% of Physical Damage taken Recouped as Life"],"recipe":["Disgust","Ire","Paranoia"],"connections":[{"orbit":0,"id":44850}],"group":546,"orbitIndex":22,"isNotable":true,"name":"Taut Flesh","orbit":7},"46380":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":21327}],"group":774,"skill":46380,"orbitIndex":22,"name":"Energy Shield if Consumed Power Charge","orbit":2},"26363":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":49291},{"orbit":0,"id":52803}],"group":857,"skill":26363,"orbitIndex":3,"name":"Life Flask Charge Generation","orbit":7},"56870":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":771,"skill":56870,"orbitIndex":15,"name":"Flask Charges Gained","orbit":7},"22533":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-2,"id":26663},{"orbit":0,"id":21274}],"group":545,"skill":22533,"orbitIndex":23,"name":"Cooldown Recovery Rate","orbit":7},"27990":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":27990,"stats":["Debuffs you inflict have 6% increased Slow Magnitude"],"ascendancyName":"Chronomancer","group":216,"connections":[{"orbit":-3,"id":49049}],"orbitIndex":0,"name":"Slow Effect","orbit":0},"65160":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":65160,"stats":["30% increased Stun Buildup","30% increased Stun Threshold","5% increased Strength"],"recipe":["Despair","Paranoia","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":44069}],"group":69,"orbitIndex":7,"isNotable":true,"name":"Titanic","orbit":3},"62438":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":48519}],"group":771,"skill":62438,"orbitIndex":9,"name":"Flask Duration","orbit":7},"8510":{"stats":["Damaging Ailments deal damage 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":13030}],"group":770,"skill":8510,"orbitIndex":0,"name":"Faster Ailments","orbit":0},"37806":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":37806,"stats":["60% chance for Lightning Skills to Chain an additional time"],"recipe":["Suffering","Disgust","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":675,"orbitIndex":0,"isNotable":true,"name":"Branching Bolts","orbit":0},"33974":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":31189}],"group":553,"skill":33974,"orbitIndex":18,"name":"Attack Damage and Accuracy","orbit":4},"52796":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-6,"id":27687}],"group":80,"skill":52796,"orbitIndex":21,"name":"Shield Damage","orbit":7},"9240":{"stats":["3% increased Attack Speed with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":21225}],"group":954,"skill":9240,"orbitIndex":16,"name":"Spear Attack Speed","orbit":2},"22141":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":54521},{"orbit":0,"id":51797}],"group":381,"skill":22141,"orbitIndex":6,"name":"Life Recoup","orbit":7},"50342":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":50342,"stats":["15% increased Evasion Rating"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":750,"connections":[{"orbit":0,"id":5227}],"orbitIndex":17,"name":"Evasion","orbit":2},"48171":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":131,"skill":48171,"orbitIndex":13,"name":"Cold Damage","orbit":4},"11032":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":767,"skill":11032,"orbitIndex":0,"name":"Evasion and Energy Shield Mastery","orbit":0},"51825":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":47363},{"orbit":0,"id":9164},{"orbit":0,"id":13708}],"group":481,"skill":51825,"orbitIndex":45,"name":"Two Handed Damage","orbit":4},"46325":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":3936},{"orbit":0,"id":33556}],"group":394,"skill":46325,"orbitIndex":5,"name":"Melee Damage","orbit":7},"4959":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":4959,"stats":["20% increased Freeze Buildup","Hits ignore non-negative Elemental Resistances of Frozen Enemies"],"recipe":["Despair","Fear","Paranoia"],"connections":[{"orbit":0,"id":12166}],"group":862,"orbitIndex":2,"isNotable":true,"name":"Heavy Frost","orbit":7},"18742":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-6,"id":7721},{"orbit":0,"id":62732}],"group":354,"skill":18742,"orbitIndex":6,"name":"Stun Threshold","orbit":3},"51741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":0,"id":31765},{"orbit":-4,"id":57230},{"orbit":0,"id":57821}],"orbitIndex":12,"name":"Attribute","orbit":6},"27262":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":49110}],"group":766,"skill":27262,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"55":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":55,"stats":["Damaging Ailments deal damage 12% faster"],"recipe":["Paranoia","Greed","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":764,"orbitIndex":0,"isNotable":true,"name":"Fast Acting Toxins","orbit":0},"65424":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":58109}],"group":551,"skill":65424,"orbitIndex":3,"name":"Dual Wielding Damage","orbit":3},"32818":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":48135}],"group":692,"skill":32818,"orbitIndex":6,"name":"Charm Charges","orbit":7},"38923":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":61429},{"orbit":-3,"id":511}],"group":114,"skill":38923,"orbitIndex":12,"name":"Skill Speed","orbit":7},"17024":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":37372}],"group":638,"skill":17024,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"61438":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61438,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":0,"id":28510}],"orbitIndex":62,"name":"Attribute","orbit":6},"31888":{"stats":["4% reduced Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","connections":[{"orbit":0,"id":34300}],"group":761,"skill":31888,"orbitIndex":4,"name":"Reduced Mana Cost","orbit":2},"42026":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":63813}],"group":166,"skill":42026,"orbitIndex":22,"name":"Warcry Speed","orbit":7},"12817":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-7,"id":22967}],"group":172,"skill":12817,"orbitIndex":4,"name":"Shield Defences","orbit":7},"8573":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":11526}],"group":1006,"skill":8573,"orbitIndex":26,"name":"Bow Damage","orbit":5},"63037":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":63037,"stats":["30% increased Damage with Hits against Ignited Enemies"],"recipe":["Suffering","Guilt","Ire"],"connections":[{"orbit":0,"id":24430},{"orbit":0,"id":44298}],"group":138,"orbitIndex":70,"isNotable":true,"name":"Sigil of Fire","orbit":4},"31855":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[],"group":737,"skill":31855,"orbitIndex":7,"name":"Life Flasks","orbit":7},"10295":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":10295,"stats":["16% increased Cast Speed","15% increased Mana Cost of Skills"],"recipe":["Fear","Despair","Isolation"],"connections":[{"orbit":0,"id":27733}],"group":157,"orbitIndex":30,"isNotable":true,"name":"Overzealous","orbit":5},"26437":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":51129}],"group":86,"skill":26437,"orbitIndex":19,"name":"Armour Break","orbit":3},"22795":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":28992},{"orbit":0,"id":42781}],"group":690,"skill":22795,"orbitIndex":21,"name":"Projectile Damage","orbit":7},"29408":{"stats":["4% reduced Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","connections":[{"orbit":0,"id":31888}],"group":761,"skill":29408,"orbitIndex":8,"name":"Reduced Mana Cost","orbit":2},"34626":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":61142},{"orbit":0,"id":4527}],"group":99,"skill":34626,"orbitIndex":6,"name":"Recover Life on consuming Endurance Charge","orbit":2},"47316":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":47316,"stats":["5% reduced maximum Life","30% increased amount of Life Leeched","40% increased Physical Damage"],"recipe":["Ire","Isolation","Isolation"],"connections":[{"orbit":0,"id":2888},{"orbit":0,"id":28862}],"group":281,"orbitIndex":16,"isNotable":true,"name":"Goring","orbit":7},"30071":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":30071,"stats":["6% increased Effect of your Curses"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":-9,"id":27667}],"orbitIndex":4,"name":"Curse Effect","orbit":6},"7395":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":7395,"stats":["75% increased Thorns damage if you've Blocked Recently"],"recipe":["Ire","Fear","Suffering"],"connections":[{"orbit":0,"id":30007}],"group":38,"orbitIndex":13,"isNotable":true,"name":"Retaliation","orbit":3},"10047":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":62757}],"group":156,"skill":10047,"orbitIndex":9,"name":"Stun Buildup","orbit":2},"42290":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":-6,"id":38732}],"group":565,"skill":42290,"orbitIndex":10,"name":"Curse Effect","orbit":7},"62841":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-6,"id":17367},{"orbit":0,"id":56045},{"orbit":5,"id":53941}],"group":760,"skill":62841,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":3},"12786":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"orbit":0,"id":5777},{"orbit":0,"id":18465},{"orbit":0,"id":64299}],"group":335,"skill":12786,"orbitIndex":0,"name":"Aura Mastery","orbit":0},"3516":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":62039},{"orbit":0,"id":23227}],"group":377,"skill":3516,"orbitIndex":0,"name":"Melee Damage","orbit":7},"36814":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[],"group":567,"skill":36814,"orbitIndex":6,"name":"Curse Duration","orbit":7},"17367":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-6,"id":53941},{"orbit":0,"id":12761}],"group":760,"skill":17367,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":3},"53941":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":53941,"stats":["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently","3% increased Movement Speed while you have Energy Shield"],"recipe":["Envy","Envy","Suffering"],"connections":[{"orbit":0,"id":17283}],"group":760,"orbitIndex":12,"isNotable":true,"name":"Shimmering","orbit":3},"50485":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":50485,"stats":["40% increased Area of Effect of Curses","8% increased Effect of your Curses","Enemies you Curse are Hindered, with 15% reduced Movement Speed"],"recipe":["Isolation","Isolation","Envy"],"connections":[{"orbit":0,"id":22959}],"group":651,"orbitIndex":18,"isNotable":true,"name":"Zone of Control","orbit":2},"19156":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":19156,"stats":["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds","30% increased Evasion Rating while you have Energy Shield"],"recipe":["Ire","Disgust","Envy"],"connections":[{"orbit":-7,"id":12249},{"orbit":0,"id":17283}],"group":760,"orbitIndex":12,"isNotable":true,"name":"Immaterial","orbit":2},"4519":{"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":13724}],"group":758,"skill":4519,"orbitIndex":0,"name":"Damage on Critical","orbit":0},"55270":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":60083}],"group":754,"skill":55270,"orbitIndex":1,"name":"Pin Buildup","orbit":7},"33979":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds","skill":33979,"isKeystone":true,"stats":["If you would gain a Charge, Allies in your Presence gain that Charge instead"],"group":753,"connections":[{"orbit":0,"id":4059}],"orbitIndex":0,"name":"Conduit","orbit":0},"36085":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":36085,"stats":["10% increased Critical Hit Chance for Attacks","30% increased Attack Damage against Rare or Unique Enemies"],"recipe":["Paranoia","Disgust","Greed"],"connections":[{"orbit":0,"id":37548},{"orbit":0,"id":15270}],"group":964,"orbitIndex":3,"isNotable":true,"name":"Serrated Edges","orbit":3},"54984":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54984,"stats":["+5 to any Attribute"],"isAttribute":true,"group":943,"connections":[{"orbit":0,"id":60735}],"orbitIndex":0,"name":"Attribute","orbit":0},"7651":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":7651,"stats":["Arrows Pierce an additional Target"],"recipe":["Despair","Isolation","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":21788}],"group":1006,"orbitIndex":21,"isNotable":true,"name":"Pierce the Heart","orbit":6},"7878":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":7,"id":53901}],"group":261,"skill":7878,"orbitIndex":16,"name":"Shield Damage from Shield Defences","orbit":2},"33848":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":47677}],"group":751,"skill":33848,"orbitIndex":51,"name":"Projectile Speed","orbit":4},"37543":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":37543,"stats":["15% increased Life Regeneration rate","15% increased Mana Regeneration Rate"],"recipe":["Despair","Envy","Guilt"],"connections":[{"orbit":0,"id":16647}],"group":321,"orbitIndex":18,"isNotable":true,"name":"Full Recovery","orbit":2},"4447":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":4447,"stats":["Enemies are Maimed for 4 seconds after becoming Unpinned","40% increased Pin Buildup"],"recipe":["Disgust","Despair","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":9272},{"orbit":0,"id":10927}],"group":809,"orbitIndex":16,"isNotable":true,"name":"Pinned Down","orbit":3},"47677":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":9472}],"group":751,"skill":47677,"orbitIndex":17,"name":"Projectile Speed","orbit":7},"27296":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27296,"stats":["+5 to any Attribute"],"isAttribute":true,"group":62,"connections":[{"orbit":0,"id":59777},{"orbit":-9,"id":11275},{"orbit":0,"id":18684},{"orbit":0,"id":21670}],"orbitIndex":0,"name":"Attribute","orbit":0},"51708":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":750,"skill":51708,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"29369":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":5,"id":11337},{"orbit":-4,"id":41669}],"group":497,"skill":29369,"orbitIndex":42,"name":"Chill Effect","orbit":4},"17955":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":17955,"stats":["30% reduced Evasion Rating if you have been Hit Recently","100% increased Evasion Rating if you haven't been Hit Recently"],"recipe":["Paranoia","Paranoia","Greed"],"connections":[{"orbit":0,"id":51708}],"group":750,"orbitIndex":6,"isNotable":true,"name":"Careful Consideration","orbit":3},"4059":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4059,"stats":["+5 to any Attribute"],"isAttribute":true,"group":768,"connections":[{"orbit":0,"id":10382}],"orbitIndex":0,"name":"Attribute","orbit":0},"36623":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":36623,"stats":["15% reduced Energy Shield Recharge Rate","40% faster start of Energy Shield Recharge"],"recipe":["Disgust","Suffering","Greed"],"connections":[{"orbit":0,"id":10729},{"orbit":0,"id":31630}],"group":749,"orbitIndex":10,"isNotable":true,"name":"Convalescence","orbit":2},"17517":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":62978},{"orbit":0,"id":19873}],"group":350,"skill":17517,"orbitIndex":6,"name":"Area of Effect","orbit":2},"29402":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":4046},{"orbit":0,"id":54282}],"group":472,"skill":29402,"orbitIndex":3,"name":"Electrocute Buildup","orbit":7},"47782":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":47782,"stats":["50% increased Weapon Swap Speed"],"recipe":["Envy","Disgust","Ire"],"connections":[{"orbit":4,"id":38003},{"orbit":-4,"id":28361}],"group":518,"orbitIndex":54,"isNotable":true,"name":"Quick-change Act","orbit":4},"14508":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":14508,"stats":["12% increased Magnitude of Poison you inflict"],"ascendancyName":"Pathfinder","group":1053,"connections":[{"orbit":0,"id":13675}],"orbitIndex":0,"name":"Poison Effect","orbit":0},"12918":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4017}],"group":536,"skill":12918,"orbitIndex":8,"name":"Energy Shield Recharge","orbit":2},"41669":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":497,"skill":41669,"orbitIndex":12,"name":"Cold Damage","orbit":3},"6891":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":56265}],"group":1002,"skill":6891,"orbitIndex":21,"name":"Critical Damage","orbit":2},"9698":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":113,"skill":9698,"orbitIndex":22,"name":"Critical Mastery","orbit":2},"54127":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":54127,"stats":[],"group":508,"connections":[{"orbit":0,"id":45272}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"8249":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":63525},{"orbit":0,"id":16816}],"group":747,"skill":8249,"orbitIndex":10,"name":"Accuracy and Attack Critical Chance","orbit":7},"51416":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-6,"id":32016}],"group":845,"skill":51416,"orbitIndex":54,"name":"Spell Damage","orbit":6},"372":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":372,"stats":["25% of Armour also applies to Fire Damage taken from Hits"],"recipe":["Disgust","Disgust","Greed"],"connections":[{"orbit":0,"id":54340}],"group":213,"orbitIndex":6,"isNotable":true,"name":"Heatproofing","orbit":7},"32701":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32701,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":26598}],"orbitIndex":18,"name":"Attribute","orbit":6},"57230":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-4,"id":25851},{"orbit":-6,"id":36270}],"group":845,"skill":57230,"orbitIndex":6,"name":"Physical Damage","orbit":6},"9217":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":5108},{"orbit":0,"id":16538},{"orbit":0,"id":47733}],"group":528,"skill":9217,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"19658":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":237,"skill":19658,"orbitIndex":0,"name":"Link Mastery","orbit":0},"43691":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":43691,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":55270}],"orbitIndex":6,"name":"Attribute","orbit":6},"13081":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-5,"id":14254}],"group":490,"skill":13081,"orbitIndex":17,"name":"Projectile Damage","orbit":5},"32474":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32474,"stats":["+5 to any Attribute"],"isAttribute":true,"group":65,"connections":[{"orbit":0,"id":29611},{"orbit":0,"id":26196},{"orbit":0,"id":55888}],"orbitIndex":0,"name":"Attribute","orbit":0},"58783":{"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":26520}],"group":592,"skill":58783,"orbitIndex":19,"name":"Life Leech. Armour and Evasion while Leeching","orbit":2},"54746":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-7,"id":14343}],"group":744,"skill":54746,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"55227":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":29479},{"orbit":0,"id":15829}],"group":743,"skill":55227,"orbitIndex":13,"name":"Mana Leech","orbit":7},"32507":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":32507,"stats":["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt","10% chance to inflict Bleeding on Hit","20% increased Physical Damage"],"recipe":["Despair","Envy","Isolation"],"connections":[],"group":426,"orbitIndex":0,"isNotable":true,"name":"Cut to the Bone","orbit":0},"24347":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":2656},{"orbit":-2,"id":59047}],"group":782,"skill":24347,"orbitIndex":0,"name":"Mark Cast Speed","orbit":2},"33939":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":6872}],"group":67,"skill":33939,"orbitIndex":2,"name":"Maximum Cold Resistance","orbit":3},"37078":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds","skill":37078,"stats":["10% chance for Enemies you Kill to Explode, dealing 100%","of their maximum Life as Physical Damage","Chance is doubled against Undead and Demons"],"ascendancyName":"Witchhunter","connections":[],"group":190,"orbitIndex":0,"isNotable":true,"name":"Zealous Inquisition","orbit":0},"19880":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":59390}],"group":741,"skill":19880,"orbitIndex":12,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"7721":{"icon":"Art/2DArt/SkillIcons/passives/Warrior.dds","skill":7721,"stats":["15% increased Armour","Regenerate 0.5% of Life per second","+10 to Strength"],"recipe":["Despair","Despair","Greed"],"connections":[{"orbit":0,"id":54232},{"orbit":3,"id":61534},{"orbit":-6,"id":18629},{"orbit":0,"id":64683}],"group":408,"orbitIndex":45,"isNotable":true,"name":"Relentless","orbit":4},"11472":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":19880},{"orbit":0,"id":40270}],"group":741,"skill":11472,"orbitIndex":20,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"13942":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":65023}],"group":423,"skill":13942,"orbitIndex":3,"name":"Armour","orbit":3},"12451":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-9,"id":24922}],"group":740,"skill":12451,"orbitIndex":12,"name":"Cooldown Recovery Rate","orbit":3},"52068":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds","skill":52068,"stats":["35% less Block chance","Can Block Damage from all Hits while Shield is not Raised"],"ascendancyName":"Warbringer","connections":[],"group":22,"orbitIndex":0,"isNotable":true,"name":"Turtle Charm","orbit":0},"8810":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":8810,"stats":["15% increased Skill Effect Duration","12% increased Cooldown Recovery Rate"],"recipe":["Paranoia","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"orbit":2,"id":33751}],"group":740,"orbitIndex":4,"isNotable":true,"name":"Multitasking","orbit":1},"33751":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":7,"id":12451}],"group":740,"skill":33751,"orbitIndex":18,"name":"Cooldown Recovery Rate","orbit":7},"54805":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":54805,"stats":["30% increased Damage with Hits against Hindered Enemies","Debuffs you inflict have 10% increased Slow Magnitude"],"recipe":["Suffering","Greed","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":739,"orbitIndex":27,"isNotable":true,"name":"Hindered Capabilities","orbit":5},"46761":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":737,"skill":46761,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"60738":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":37408}],"group":737,"skill":60738,"orbitIndex":19,"name":"Life Flasks","orbit":2},"37408":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":37408,"stats":["Life Flasks gain 0.1 charges per Second","+10 to Strength"],"recipe":["Envy","Despair","Disgust"],"connections":[{"orbit":7,"id":31855},{"orbit":0,"id":46761}],"group":737,"orbitIndex":13,"isNotable":true,"name":"Staunching","orbit":2},"51944":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":49406},{"orbit":0,"id":51728},{"orbit":0,"id":47683}],"group":547,"skill":51944,"orbitIndex":15,"name":"Projectile Damage","orbit":3},"44669":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":735,"skill":44669,"orbitIndex":12,"name":"Increased Duration","orbit":3},"61921":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":61921,"stats":["Damage Penetrates 8% Cold Resistance","Damage Penetrates 15% Lightning Resistance"],"recipe":["Envy","Isolation","Greed"],"connections":[],"group":898,"orbitIndex":23,"isNotable":true,"name":"Storm Surge","orbit":3},"41905":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":41905,"stats":["Minions Revive 15% faster","You gain 2% Life when one of your Minions is Revived"],"recipe":["Ire","Fear","Disgust"],"connections":[{"orbit":0,"id":56926},{"orbit":7,"id":44255}],"group":630,"orbitIndex":0,"isNotable":true,"name":"Gravedigger","orbit":0},"15644":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":15644,"stats":["40% increased Elemental Ailment Threshold","10% reduced Duration of Ailments on You"],"recipe":["Envy","Ire","Paranoia"],"connections":[{"orbit":6,"id":41538},{"orbit":0,"id":44612}],"group":734,"orbitIndex":10,"isNotable":true,"name":"Shedding Skin","orbit":3},"32416":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":32416,"stats":["80% increased Armour from Equipped Body Armour"],"recipe":["Paranoia","Greed","Disgust"],"connections":[{"orbit":-3,"id":27726}],"group":365,"orbitIndex":16,"isNotable":true,"name":"Sturdy Metal","orbit":2},"56703":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":15782},{"orbit":0,"id":28839}],"group":246,"skill":56703,"orbitIndex":8,"name":"Cast Speed","orbit":2},"44612":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":734,"skill":44612,"orbitIndex":0,"name":"Spell Suppression Mastery","orbit":0},"56893":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":56893,"stats":["20% chance for Charms you use to not consume Charges","Recover 5% of Mana when a Charm is used"],"recipe":["Paranoia","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":848,"orbitIndex":16,"isNotable":true,"name":"Thicket Warding","orbit":7},"45923":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45923,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":0,"id":50084},{"orbit":0,"id":52319}],"orbitIndex":31,"name":"Attribute","orbit":6},"31326":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":31326,"stats":["20% increased Ignite Duration on Enemies","20% increased Magnitude of Ignite you inflict"],"recipe":["Guilt","Suffering","Paranoia"],"connections":[{"orbit":0,"id":44092},{"orbit":0,"id":11505}],"group":340,"orbitIndex":19,"isNotable":true,"name":"Slow Burn","orbit":2},"48660":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"skill":48660,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"38895":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":38895,"stats":["40% increased Elemental Damage with Attack Skills during any Flask Effect"],"recipe":["Fear","Suffering","Greed"],"connections":[{"orbit":3,"id":8697},{"orbit":0,"id":48660}],"group":730,"orbitIndex":7,"isNotable":true,"name":"Crystal Elixir","orbit":2},"38537":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":38537,"stats":["+10 to Intelligence","25% increased Critical Hit Chance"],"recipe":["Ire","Despair","Paranoia"],"connections":[{"orbit":-3,"id":54983},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":3,"isNotable":true,"name":"Heartstopping","orbit":2},"51336":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":4,"id":56818},{"orbit":0,"id":53965}],"group":730,"skill":51336,"orbitIndex":45,"name":"Elemental Attack Damage","orbit":4},"64140":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-5,"id":51336},{"orbit":-4,"id":30905}],"group":730,"skill":64140,"orbitIndex":10,"name":"Elemental Attack Damage","orbit":3},"21415":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":61493}],"group":193,"skill":21415,"orbitIndex":16,"name":"Stun Threshold from Energy Shield","orbit":3},"24259":{"stats":["Attacks used by Totems have 4% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":62609}],"group":177,"skill":24259,"orbitIndex":32,"name":"Totem Attack Speed","orbit":5},"58939":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":58939,"stats":["80% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"recipe":["Envy","Envy","Paranoia"],"connections":[{"orbit":0,"id":44608}],"group":602,"orbitIndex":8,"isNotable":true,"name":"Dispatch Foes","orbit":2},"27274":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":727,"skill":27274,"orbitIndex":2,"name":"Cold Mastery","orbit":1},"14997":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":47856},{"orbit":0,"id":28370}],"group":483,"skill":14997,"orbitIndex":0,"name":"Two Handed Damage","orbit":0},"49691":{"stats":["+16 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":13828},{"orbit":0,"id":31409},{"orbit":0,"id":61106}],"group":604,"skill":49691,"orbitIndex":21,"name":"Evasion","orbit":7},"2841":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":631,"skill":2841,"orbitIndex":0,"name":"Life Mastery","orbit":0},"55847":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":55847,"stats":["200% increased Ice Crystal Life"],"recipe":["Fear","Paranoia","Disgust"],"connections":[{"orbit":0,"id":27274}],"group":727,"orbitIndex":8,"isNotable":true,"name":"Ice Walls","orbit":7},"49740":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":49740,"stats":["60% reduced Ice Crystal Life"],"recipe":["Suffering","Fear","Ire"],"connections":[{"orbit":0,"id":27274}],"group":727,"orbitIndex":0,"isNotable":true,"name":"Shattered Crystal","orbit":7},"36474":{"stats":["15% reduced effect of Curses on you"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":38596}],"group":250,"skill":36474,"orbitIndex":4,"name":"Curse Effect on Self","orbit":2},"39716":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":31326}],"group":340,"skill":39716,"orbitIndex":13,"name":"Ignite Chance","orbit":2},"47754":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":23455}],"group":727,"skill":47754,"orbitIndex":16,"name":"Cold Damage","orbit":7},"25100":{"icon":"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds","skill":25100,"isKeystone":true,"stats":["Cannot use Charms","30% more Recovery from Flasks"],"group":726,"connections":[],"orbitIndex":0,"name":"Oasis","orbit":0},"59542":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds","skill":59542,"stats":["Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres"],"isMultipleChoiceOption":true,"ascendancyName":"Deadeye","group":1034,"connections":[{"orbit":0,"id":42416}],"orbitIndex":0,"name":"Far Shot","orbit":0},"60692":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":60692,"stats":["30% increased Elemental Damage if you've Ignited an Enemy Recently"],"recipe":["Guilt","Suffering","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":12,"isNotable":true,"name":"Echoing Flames","orbit":7},"64357":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":50062},{"orbit":0,"id":506}],"group":163,"skill":64357,"orbitIndex":8,"name":"Armour and Energy Shield","orbit":2},"35760":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":6,"id":22359}],"group":723,"skill":35760,"orbitIndex":8,"name":"Elemental Damage","orbit":3},"38338":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-2,"id":5257}],"group":723,"skill":38338,"orbitIndex":60,"name":"Elemental Damage","orbit":4},"13748":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":38338},{"orbit":0,"id":41029}],"group":723,"skill":13748,"orbitIndex":0,"name":"Elemental Damage","orbit":3},"9141":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":13748},{"orbit":6,"id":35760},{"orbit":-2,"id":5703}],"group":723,"skill":9141,"orbitIndex":12,"name":"Elemental Damage","orbit":4},"44605":{"icon":"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds","skill":44605,"stats":["15% increased Projectile Damage","30% increased Stun Buildup against enemies within 2 metres","+5 to Strength and Dexterity"],"recipe":["Greed","Disgust","Guilt"],"connections":[{"orbit":-6,"id":59881},{"orbit":0,"id":13081}],"group":490,"orbitIndex":21,"isNotable":true,"name":"Remorseless","orbit":5},"55507":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":22359},{"orbit":6,"id":38338}],"group":723,"skill":55507,"orbitIndex":16,"name":"Elemental Damage","orbit":3},"5186":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":6800}],"group":908,"skill":5186,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"39658":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-3,"id":45693},{"orbit":3,"id":18831}],"group":722,"skill":39658,"orbitIndex":4,"name":"Block","orbit":7},"49633":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":536,"skill":49633,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"49545":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":45693},{"orbit":0,"id":64851}],"group":722,"skill":49545,"orbitIndex":16,"name":"Shield Defences","orbit":7},"53589":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53589,"stats":["+5 to any Attribute"],"isAttribute":true,"group":405,"connections":[{"orbit":0,"id":25374}],"orbitIndex":0,"name":"Attribute","orbit":0},"13562":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":23650}],"group":359,"skill":13562,"orbitIndex":18,"name":"Life Regeneration on Low Life","orbit":7},"40213":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":40213,"stats":["Gain 20 Life per Enemy Killed","2% chance to Recover all Life when you Kill an Enemy"],"recipe":["Envy","Ire","Greed"],"connections":[{"orbit":0,"id":55846},{"orbit":0,"id":24481}],"group":721,"orbitIndex":1,"isNotable":true,"name":"Taste for Blood","orbit":1},"6800":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":32438}],"group":899,"skill":6800,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"16":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":16,"stats":["20% increased Life Flask Charges gained"],"ascendancyName":"Pathfinder","group":1056,"connections":[{"orbit":0,"id":41619}],"orbitIndex":0,"name":"Life Flask Charges","orbit":0},"36676":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":36676,"stats":["Grants 1 Passive Skill Point"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":46454}],"orbitIndex":30,"name":"Passive Points","orbit":8},"5564":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48833},{"orbit":0,"id":63585}],"group":717,"skill":5564,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"50219":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":50219,"stats":["Debuffs on you expire 10% faster"],"ascendancyName":"Chronomancer","group":199,"connections":[{"orbit":0,"id":42035}],"orbitIndex":0,"name":"Debuff Expiry Rate","orbit":2},"45090":{"stats":["1% reduced Attack Speed","15% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":36027}],"group":134,"skill":45090,"orbitIndex":19,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"23880":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":23880,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":3,"id":13174}],"orbitIndex":0,"name":"Mana","orbit":8},"30260":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":-7,"id":256},{"orbit":7,"id":57097}],"group":237,"skill":30260,"orbitIndex":19,"name":"Link Buff Effect","orbit":7},"21280":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21280,"stats":["+5 to any Attribute"],"isAttribute":true,"group":713,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":61312},{"orbit":0,"id":40630},{"orbit":0,"id":18831}],"orbitIndex":0,"name":"Attribute","orbit":0},"40244":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-3,"id":43263}],"group":826,"skill":40244,"orbitIndex":15,"name":"One Handed Attack Speed","orbit":7},"56935":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56935,"stats":["+5 to any Attribute"],"isAttribute":true,"group":476,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":34058}],"orbitIndex":0,"name":"Attribute","orbit":0},"9083":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":709,"skill":9083,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"38398":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":38398,"stats":["40% reduced Damage","+6% to Critical Hit Chance of Herald Skills"],"recipe":["Suffering","Paranoia","Greed"],"connections":[{"orbit":7,"id":2211}],"group":334,"orbitIndex":14,"isNotable":true,"name":"Apocalypse","orbit":7},"55405":{"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":25620}],"group":709,"skill":55405,"orbitIndex":0,"name":"Corpses","orbit":1},"26804":{"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":55405},{"orbit":0,"id":59909}],"group":709,"skill":26804,"orbitIndex":6,"name":"Corpses","orbit":7},"21912":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":32353}],"group":107,"skill":21912,"orbitIndex":9,"name":"Shapeshifting","orbit":5},"13500":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-3,"id":41044},{"orbit":0,"id":4140}],"group":96,"skill":13500,"orbitIndex":11,"name":"Mana Regeneration","orbit":3},"30136":{"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":22626}],"group":97,"skill":30136,"orbitIndex":7,"name":"Damage vs Armour Broken Enemies","orbit":3},"13694":{"stats":["Link Skills have 20% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":0,"id":19658}],"group":255,"skill":13694,"orbitIndex":19,"name":"Link Duration","orbit":7},"42354":{"icon":"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds","skill":42354,"stats":["20% increased Blind Effect","Blind Enemies when they Stun you"],"recipe":["Ire","Guilt","Ire"],"connections":[{"orbit":2,"id":43562},{"orbit":7,"id":3660}],"group":568,"orbitIndex":2,"isNotable":true,"name":"Blinding Flash","orbit":2},"41991":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":61026}],"group":278,"skill":41991,"orbitIndex":2,"name":"Minion Attack and Cast Speed","orbit":3},"30820":{"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":26786}],"group":707,"skill":30820,"orbitIndex":16,"name":"Attack Damage and Skill Duration","orbit":7},"50483":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":61842}],"group":282,"skill":50483,"orbitIndex":22,"name":"Minion Area","orbit":3},"19442":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":19442,"stats":["16% increased Attack Damage","16% increased Skill Effect Duration","Buffs on you expire 10% slower"],"recipe":["Guilt","Despair","Suffering"],"connections":[{"orbit":-3,"id":25170},{"orbit":0,"id":8606}],"group":707,"orbitIndex":8,"isNotable":true,"name":"Prolonged Assault","orbit":2},"32534":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":32534,"stats":[],"ascendancyName":"Titan","isAscendancyStart":true,"group":28,"connections":[{"orbit":0,"id":35453},{"orbit":0,"id":19424},{"orbit":0,"id":13715},{"orbit":0,"id":51690},{"orbit":0,"id":29323}],"orbitIndex":96,"name":"Titan","orbit":9},"56956":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":-4,"id":15885},{"orbit":0,"id":54632}],"group":448,"skill":56956,"orbitIndex":20,"name":"Minion Life and Chaos Resistance","orbit":2},"63255":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":63255,"stats":["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently","+1 to Maximum Frenzy Charges"],"recipe":["Suffering","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":706,"orbitIndex":0,"isNotable":true,"name":"Savagery","orbit":0},"19424":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":19424,"stats":["4% increased Strength"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":60634}],"orbitIndex":48,"name":"Strength","orbit":6},"10474":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":64443},{"orbit":0,"id":53785}],"group":159,"skill":10474,"orbitIndex":12,"name":"Attack Area","orbit":3},"39515":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":23450}],"group":445,"skill":39515,"orbitIndex":8,"name":"Fire Damage","orbit":3},"41363":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":-4,"id":62518},{"orbit":0,"id":62498}],"group":130,"skill":41363,"orbitIndex":9,"name":"Maximum Lightning Resistance","orbit":4},"55048":{"icon":"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds","skill":55048,"isKeystone":true,"stats":["30% less Critical Damage Bonus when on Full Life","30% more Critical Damage Bonus when on Low Life"],"group":44,"connections":[],"orbitIndex":0,"name":"Pain Attunement","orbit":0},"44014":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":11855}],"group":660,"skill":44014,"orbitIndex":8,"name":"Accuracy","orbit":2},"11366":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":11366,"stats":["Gain 8% of Damage as Extra Fire Damage","+20% to Fire Resistance"],"recipe":["Suffering","Isolation","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":6,"id":558}],"group":445,"orbitIndex":2,"isNotable":true,"name":"Volcanic Skin","orbit":5},"29432":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":4061}],"group":412,"skill":29432,"orbitIndex":48,"name":"Energy Shield","orbit":4},"8154":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":3921},{"orbit":0,"id":38398}],"group":334,"skill":8154,"orbitIndex":0,"name":"Herald Mastery","orbit":0},"34136":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34136,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":-5,"id":29479}],"orbitIndex":1,"name":"Attribute","orbit":3},"22331":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":8983},{"orbit":0,"id":40200}],"group":282,"skill":22331,"orbitIndex":3,"name":"Minion Resistances","orbit":1},"58814":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58814,"stats":["+5 to any Attribute"],"isAttribute":true,"group":657,"connections":[{"orbit":0,"id":55802},{"orbit":0,"id":244}],"orbitIndex":0,"name":"Attribute","orbit":0},"3165":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":3165,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":699,"connections":[{"orbit":-4,"id":56162}],"orbitIndex":0,"name":"Life","orbit":0},"53149":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":-5,"id":24647}],"group":698,"skill":53149,"orbitIndex":22,"name":"Freeze Buildup","orbit":4},"65413":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":65413,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":12882}],"orbitIndex":4,"name":"Spell Critical Chance","orbit":8},"40068":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":32683}],"group":698,"skill":40068,"orbitIndex":38,"name":"Freeze Buildup","orbit":4},"22864":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":22864,"stats":["25% increased Critical Hit Chance for Attacks","30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"recipe":["Ire","Despair","Greed"],"connections":[{"orbit":0,"id":57966}],"group":695,"orbitIndex":19,"isNotable":true,"name":"Tainted Strike","orbit":3},"57227":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-5,"id":23259}],"group":695,"skill":57227,"orbitIndex":3,"name":"Attack Critical Chance","orbit":2},"19104":{"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","skill":19104,"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"recipe":["Ire","Greed","Guilt"],"connections":[{"orbit":0,"id":29582}],"group":672,"orbitIndex":0,"isNotable":true,"name":"Eagle Eye","orbit":0},"54413":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":694,"skill":54413,"orbitIndex":10,"name":"Spell Suppression Mastery","orbit":3},"65437":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":63064}],"group":694,"skill":65437,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"30334":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":9324}],"group":64,"skill":30334,"orbitIndex":3,"name":"Ignite Effect on You","orbit":3},"63064":{"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","skill":63064,"stats":["30% faster start of Energy Shield Recharge","30% increased Stun Threshold while on Full Life"],"recipe":["Fear","Greed","Guilt"],"connections":[{"orbit":3,"id":30634},{"orbit":0,"id":54413}],"group":694,"orbitIndex":10,"isNotable":true,"name":"Mystic Stance","orbit":2},"58013":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":4844}],"group":645,"skill":58013,"orbitIndex":4,"name":"Projectile Damage","orbit":7},"16618":{"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":16618,"stats":["2% increased Damage per 5 of your lowest Attribute"],"recipe":["Greed","Fear","Envy"],"connections":[{"orbit":0,"id":24511},{"orbit":0,"id":4492}],"group":509,"orbitIndex":24,"isNotable":true,"name":"Jack of all Trades","orbit":5},"50192":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":50192,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":693,"connections":[{"orbit":-9,"id":31223}],"orbitIndex":0,"name":"Life","orbit":0},"12750":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":12750,"stats":["Charms gain 0.15 charges per Second"],"recipe":["Greed","Disgust","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":692,"orbitIndex":0,"isNotable":true,"name":"Vale Shelter","orbit":0},"31284":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"orbit":0,"id":21380}],"group":762,"skill":31284,"orbitIndex":11,"name":"Critical Mastery","orbit":1},"24009":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-4,"id":34433},{"orbit":0,"id":21755}],"group":423,"skill":24009,"orbitIndex":27,"name":"Armour and Evasion","orbit":4},"2461":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":44605}],"group":532,"skill":2461,"orbitIndex":0,"name":"Accuracy Mastery","orbit":0},"40043":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54990}],"group":457,"skill":40043,"orbitIndex":0,"name":"Bleeding Damage","orbit":1},"17584":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[],"group":406,"skill":17584,"orbitIndex":17,"name":"Attack Area","orbit":2},"8660":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":8660,"stats":["Spell Skills have 20% increased Area of Effect"],"recipe":["Paranoia","Guilt","Fear"],"connections":[{"orbit":0,"id":18846}],"group":233,"orbitIndex":12,"isNotable":true,"name":"Reverberation","orbit":3},"37266":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":37266,"stats":["Minions deal 25% increased Damage"],"recipe":["Ire","Fear","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":29930}],"group":458,"orbitIndex":0,"isNotable":true,"name":"Two-Pronged Attack","orbit":0},"50084":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":0,"id":61525}],"group":436,"skill":50084,"orbitIndex":0,"name":"Damage","orbit":0},"22967":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":22967,"stats":["12% increased Block chance","6 Life gained when you Block"],"recipe":["Guilt","Envy","Guilt"],"connections":[{"orbit":-7,"id":49198},{"orbit":0,"id":38921}],"group":172,"orbitIndex":1,"isNotable":true,"name":"Vigilance","orbit":3},"8875":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":50687}],"group":472,"skill":8875,"orbitIndex":8,"name":"Electrocute Buildup","orbit":1},"27493":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":17118}],"group":613,"skill":27493,"orbitIndex":24,"name":"Projectile Damage","orbit":4},"30695":{"icon":"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds","skill":30695,"stats":["33% increased Damage with Hits against Enemies affected by Elemental Ailments"],"recipe":["Paranoia","Despair","Suffering"],"connections":[{"orbit":0,"id":13783},{"orbit":0,"id":19808},{"orbit":0,"id":56472}],"group":690,"orbitIndex":14,"isNotable":true,"name":"Vile Wounds","orbit":2},"46692":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":46692,"stats":["20% increased Flask and Charm Charges gained","40% increased Life and Mana Recovery from Flasks while you have an active Charm"],"recipe":["Fear","Ire","Guilt"],"connections":[{"orbit":0,"id":9393}],"group":688,"orbitIndex":12,"isNotable":true,"name":"Efficient Alchemy","orbit":7},"12322":{"stats":["8% increased Flask and Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":53196}],"group":688,"skill":12322,"orbitIndex":4,"name":"Flask and Charm Charges Gained","orbit":7},"36677":{"stats":["10% increased Critical Hit Chance with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":9240},{"orbit":0,"id":36071},{"orbit":0,"id":9227}],"group":954,"skill":36677,"orbitIndex":0,"name":"Spear Critical Chance","orbit":0},"21540":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":34367},{"orbit":0,"id":40783}],"group":546,"skill":21540,"orbitIndex":10,"name":"Life Recoup","orbit":7},"25827":{"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":55241}],"group":687,"skill":25827,"orbitIndex":8,"name":"Additional Spell Projectiles","orbit":3},"46157":{"stats":["20% chance for Lightning Skills to Chain an additional time"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":37806}],"group":686,"skill":46157,"orbitIndex":0,"name":"Lightning Skill Chain Chance","orbit":0},"36341":{"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":36341,"stats":["25% increased Culling Strike Threshold"],"recipe":["Despair","Guilt","Suffering"],"connections":[{"orbit":0,"id":35118}],"group":685,"orbitIndex":10,"isNotable":true,"name":"Cull the Hordes","orbit":2},"32349":{"icon":"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds","skill":32349,"isKeystone":true,"stats":["You can wield Two-Handed Axes, Maces and Swords in one hand","Triple Attribute requirements of weapons"],"group":102,"connections":[{"orbit":0,"id":3446}],"orbitIndex":0,"name":"Giant's Blood","orbit":0},"59342":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":59342,"stats":["12% increased amount of Life Leeched"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":9,"id":23416}],"orbitIndex":68,"name":"Life Leech","orbit":6},"26196":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":26196,"stats":[],"group":73,"connections":[{"orbit":0,"id":33722},{"orbit":0,"id":39131}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"37767":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":9020},{"orbit":0,"id":6596},{"orbit":0,"id":63731}],"group":685,"skill":37767,"orbitIndex":16,"name":"Attack Speed","orbit":7},"244":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":52354}],"group":685,"skill":244,"orbitIndex":66,"name":"Attack Damage","orbit":4},"52354":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":41171}],"group":684,"skill":52354,"orbitIndex":0,"name":"Attack Damage","orbit":0},"52300":{"stats":["Gain 1 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":53440}],"group":78,"skill":52300,"orbitIndex":9,"name":"Axe Rage on Hit","orbit":3},"16948":{"stats":["Link Skills have 8% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":50423},{"orbit":7,"id":21879}],"group":285,"skill":16948,"orbitIndex":7,"name":"Link Cast Speed","orbit":7},"26931":{"stats":["Gain 3 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":5,"id":48198}],"group":681,"skill":26931,"orbitIndex":10,"name":"Life on Kill","orbit":3},"45599":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":45599,"stats":["1% increased Damage per 1% Chance to Block"],"recipe":["Fear","Envy","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"orbit":0,"id":6689},{"orbit":0,"id":32885}],"group":446,"orbitIndex":12,"isNotable":true,"name":"Lay Siege","orbit":7},"54785":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":32885}],"group":446,"skill":54785,"orbitIndex":7,"name":"Shield Block","orbit":2},"10738":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":887,"skill":10738,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"39190":{"stats":["15% increased Melee Damage with Hits at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":8800}],"group":37,"skill":39190,"orbitIndex":12,"name":"Melee Damage","orbit":3},"62984":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":62984,"stats":["24% increased Evasion Rating","24% increased maximum Energy Shield"],"recipe":["Paranoia","Envy","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"orbit":0,"id":15975}],"group":681,"orbitIndex":4,"isNotable":true,"name":"Mindful Awareness","orbit":2},"59466":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-7,"id":37226}],"group":223,"skill":59466,"orbitIndex":0,"name":"Empowered Attack Damage","orbit":7},"61985":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds","skill":61985,"stats":["Targets can be affected by two of your Chills at the same time","Your Chills can Slow targets by up to a maximum of 35%","25% less Magnitude of Chill you inflict"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":29398}],"group":308,"orbitIndex":6,"isNotable":true,"name":"Heavy Snows","orbit":6},"15975":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":5,"id":48198}],"group":681,"skill":15975,"orbitIndex":13,"name":"Evasion and Energy Shield","orbit":2},"46854":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":46854,"stats":["10% increased Projectile Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":12033},{"orbit":0,"id":42416}],"orbitIndex":8,"name":"Projectile Speed","orbit":3},"25172":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":25172,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":46535}],"orbitIndex":12,"name":"Cooldown Recovery Rate","orbit":3},"8535":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":8535,"stats":["25% increased Damage with Flails"],"recipe":["Disgust","Envy","Paranoia"],"connections":[],"group":41,"orbitIndex":7,"isNotable":true,"name":"Spiked Whip","orbit":2},"49759":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":49759,"stats":["20% increased chance to Shock"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":6,"id":2857}],"orbitIndex":71,"name":"Shock Chance","orbit":8},"47709":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":63814},{"orbit":0,"id":40336}],"group":451,"skill":47709,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"46296":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":46296,"stats":["15% reduced Projectile Speed","20% increased Projectile Damage"],"recipe":["Suffering","Guilt","Envy"],"connections":[],"group":613,"orbitIndex":4,"isNotable":true,"name":"Short Shot","orbit":1},"38601":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds","skill":38601,"stats":["50% less Armour and Evasion Rating","Grants Skill: Sorcery Ward"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":34501}],"group":152,"orbitIndex":28,"isNotable":true,"name":"Obsessive Rituals","orbit":6},"36379":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":25026}],"group":680,"skill":36379,"orbitIndex":58,"name":"Mana Regeneration","orbit":4},"49938":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49938,"stats":["+5 to any Attribute"],"isAttribute":true,"group":189,"connections":[{"orbit":0,"id":47931},{"orbit":0,"id":28002},{"orbit":0,"id":51795}],"orbitIndex":0,"name":"Attribute","orbit":0},"48635":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48635,"stats":["+5 to any Attribute"],"isAttribute":true,"group":515,"connections":[{"orbit":0,"id":63526},{"orbit":4,"id":28361},{"orbit":-4,"id":43444}],"orbitIndex":0,"name":"Attribute","orbit":0},"46060":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":46060,"stats":["20% of Leech is Instant"],"recipe":["Greed","Isolation","Suffering"],"connections":[{"orbit":-2,"id":29270},{"orbit":0,"id":7488}],"group":336,"orbitIndex":20,"isNotable":true,"name":"Voracious","orbit":7},"38053":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":38053,"stats":["25% increased Warcry Cooldown Recovery Rate","8% increased Damage for each time you've Warcried Recently"],"recipe":["Disgust","Guilt","Paranoia"],"connections":[{"orbit":0,"id":8460},{"orbit":-2,"id":40328}],"group":93,"orbitIndex":1,"isNotable":true,"name":"Deafening Cries","orbit":3},"37608":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":53524},{"orbit":0,"id":61042}],"group":426,"skill":37608,"orbitIndex":45,"name":"Physical Damage","orbit":4},"54311":{"stats":["15% increased Magnitude of Ignite you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":7,"id":28482}],"group":196,"skill":54311,"orbitIndex":18,"name":"Critical Ignite Effect","orbit":2},"28021":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":9782}],"group":807,"skill":28021,"orbitIndex":0,"name":"Critical Damage","orbit":0},"29871":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":29871,"stats":["4% increased Skill Speed"],"ascendancyName":"Deadeye","group":1032,"connections":[{"orbit":0,"id":5817}],"orbitIndex":0,"name":"Skill Speed","orbit":0},"43142":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":184,"skill":43142,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"56162":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds","skill":56162,"stats":["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"],"ascendancyName":"Blood Mage","connections":[{"orbit":-9,"id":50192}],"group":647,"orbitIndex":13,"isNotable":true,"name":"Grasping Wounds","orbit":8},"62200":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-3,"id":8460},{"orbit":-4,"id":38053}],"group":93,"skill":62200,"orbitIndex":20,"name":"Warcry Cooldown Speed","orbit":2},"44343":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44343,"stats":["+5 to any Attribute"],"isAttribute":true,"group":615,"connections":[{"orbit":0,"id":55276}],"orbitIndex":36,"name":"Attribute","orbit":5},"63445":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":43562}],"group":568,"skill":63445,"orbitIndex":8,"name":"Attack Speed","orbit":3},"48717":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":98,"skill":48717,"orbitIndex":16,"name":"Armour Mastery","orbit":7},"4456":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4456,"stats":["+5 to any Attribute"],"isAttribute":true,"group":464,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":4776}],"orbitIndex":0,"name":"Attribute","orbit":0},"57097":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":57097,"stats":["Link Skills can target Damageable Minions"],"recipe":["Greed","Ire","Suffering"],"connections":[{"orbit":0,"id":19658},{"orbit":7,"id":13694}],"group":237,"orbitIndex":13,"isNotable":true,"name":"Spirit Bonds","orbit":2},"54708":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":13855},{"orbit":0,"id":3918}],"group":420,"skill":54708,"orbitIndex":11,"name":"Mana Regeneration","orbit":2},"31977":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":4828},{"orbit":6,"id":10314}],"group":680,"skill":31977,"orbitIndex":36,"name":"Mana Regeneration","orbit":5},"37872":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":37872,"stats":["Allies in your Presence have +100 to Accuracy Rating","35% increased Attack Damage while you have an Ally in your Presence"],"recipe":["Ire","Fear","Isolation"],"connections":[{"orbit":0,"id":27270},{"orbit":0,"id":28863}],"group":553,"orbitIndex":4,"isNotable":true,"name":"Presence Present","orbit":7},"11762":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":255,"skill":11762,"orbitIndex":0,"name":"Link Mastery","orbit":0},"7473":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":64471}],"group":334,"skill":7473,"orbitIndex":23,"name":"Herald Damage","orbit":7},"56104":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981}],"group":402,"skill":56104,"orbitIndex":0,"name":"Armour Break","orbit":0},"51394":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":51394,"stats":["24% reduced Slowing Potency of Debuffs on You"],"recipe":["Isolation","Envy","Isolation"],"connections":[{"orbit":0,"id":29993}],"group":158,"orbitIndex":2,"isNotable":true,"name":"Unimpeded","orbit":3},"44017":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds","skill":44017,"isKeystone":true,"stats":["Your Hits can't be Evaded","Never deal Critical Hits"],"group":122,"connections":[{"orbit":0,"id":4527}],"orbitIndex":0,"name":"Resolute Technique","orbit":0},"48821":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":-6,"id":15618}],"group":504,"skill":48821,"orbitIndex":6,"name":"Spell Critical Damage","orbit":2},"47242":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":75,"skill":47242,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"43366":{"stats":["Minions have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":2606},{"orbit":0,"id":4407}],"group":355,"skill":43366,"orbitIndex":0,"name":"Minion Physical Damage Reduction","orbit":0},"23786":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33391}],"group":776,"skill":23786,"orbitIndex":9,"name":"Critical Bleeding Effect","orbit":2},"23078":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":23078,"stats":["Minions have 25% increased maximum Life"],"recipe":["Disgust","Despair","Suffering"],"connections":[{"orbit":0,"id":47242}],"group":75,"orbitIndex":3,"isNotable":true,"name":"Holy Protector","orbit":3},"25213":{"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":19223}],"group":553,"skill":25213,"orbitIndex":12,"name":"Attack Damage with nearby Ally","orbit":7},"53089":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":9918},{"orbit":0,"id":10474}],"group":159,"skill":53089,"orbitIndex":12,"name":"Attack Area","orbit":2},"13769":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-4,"id":2254}],"group":505,"skill":13769,"orbitIndex":8,"name":"Mana Regeneration","orbit":2},"14439":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":3,"id":5728}],"group":52,"skill":14439,"orbitIndex":8,"name":"Armour and Energy Shield","orbit":7},"25700":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":41096}],"group":828,"skill":25700,"orbitIndex":42,"name":"Elemental Damage and Shock Chance","orbit":4},"61063":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":197,"skill":61063,"orbitIndex":0,"name":"Elemental Penetration","orbit":3},"53188":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":680,"skill":53188,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"51832":{"stats":["16% increased Damage with Warcries"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":47722}],"group":90,"skill":51832,"orbitIndex":6,"name":"Warcry Damage","orbit":2},"45272":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":42280}],"group":509,"skill":45272,"orbitIndex":0,"name":"All Attributes","orbit":5},"43938":{"stats":["6% increased Trap Throwing Speed"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":37688}],"group":974,"skill":43938,"orbitIndex":39,"name":"Trap Throw Speed","orbit":6},"28475":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":28475,"stats":[],"group":611,"connections":[{"orbit":0,"id":35896}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"50986":{"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","classesStart":["Duelist","Mercenary"],"skill":50986,"stats":[],"group":512,"connections":[{"orbit":0,"id":39383},{"orbit":0,"id":10889},{"orbit":0,"id":62386},{"orbit":0,"id":36252},{"orbit":0,"id":7120},{"orbit":0,"id":55536},{"orbit":0,"id":59915}],"orbitIndex":0,"name":"DUELIST","orbit":0},"21606":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":2606},{"orbit":0,"id":29148}],"group":367,"skill":21606,"orbitIndex":12,"name":"Minion Life","orbit":3},"28975":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":28975,"stats":["2% increased Lightning Damage per 10 Intelligence"],"recipe":["Suffering","Guilt","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":26905}],"group":576,"orbitIndex":0,"isNotable":true,"name":"Pure Power","orbit":6},"25312":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":24259},{"orbit":0,"id":64405}],"group":177,"skill":25312,"orbitIndex":36,"name":"Totem Damage","orbit":5},"48581":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":48581,"stats":["24% increased Damage with Hits against Enemies affected by Elemental Ailments","30% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Greed","Fear","Isolation"],"connections":[{"orbit":0,"id":33242},{"orbit":0,"id":13387}],"group":411,"orbitIndex":0,"isNotable":true,"name":"Exploit the Elements","orbit":6},"53329":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":64724},{"orbit":0,"id":41768}],"group":64,"skill":53329,"orbitIndex":23,"name":"Ignite Chance","orbit":2},"41163":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":982,"skill":41163,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"30829":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":56999}],"group":660,"skill":30829,"orbitIndex":0,"name":"Accuracy","orbit":2},"16084":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":57552}],"group":224,"skill":16084,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"18407":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18407,"stats":["+5 to any Attribute"],"isAttribute":true,"group":468,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"40915":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds","skill":40915,"stats":["20% of Damage from Hits is taken from your nearest Totem's Life before you"],"ascendancyName":"Warbringer","connections":[],"group":9,"orbitIndex":0,"isNotable":true,"name":"Wooden Wall","orbit":0},"27418":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":27418,"stats":["4% increased Strength"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":30115}],"orbitIndex":48,"name":"Strength","orbit":4},"15083":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":15083,"stats":["25% increased Shock Duration","25% increased Magnitude of Shock you inflict"],"recipe":["Guilt","Suffering","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":556,"orbitIndex":0,"isNotable":true,"name":"Power Conduction","orbit":0},"12337":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":12337,"stats":["30% increased chance to Shock","Damage Penetrates 15% Lightning Resistance"],"recipe":["Paranoia","Ire","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":5295}],"group":676,"orbitIndex":0,"isNotable":true,"name":"Flash Storm","orbit":0},"29323":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":29323,"stats":["20% increased Armour"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":4,"id":24807}],"orbitIndex":53,"name":"Armour","orbit":6},"65023":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":65023,"stats":["Defend with 150% of Armour against Attacks from further than 6m"],"recipe":["Paranoia","Paranoia","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":423,"orbitIndex":6,"isNotable":true,"name":"Impenetrable Shell","orbit":3},"30457":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":54416},{"orbit":0,"id":28982}],"group":66,"skill":30457,"orbitIndex":18,"name":"Armour","orbit":7},"60464":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":60464,"stats":["25% reduced Ignite Duration on you","40% increased Elemental Ailment Threshold"],"recipe":["Suffering","Paranoia","Despair"],"connections":[{"orbit":-6,"id":58971},{"orbit":0,"id":28623}],"group":874,"orbitIndex":48,"isNotable":true,"name":"Fan the Flames","orbit":4},"43562":{"stats":["8% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":0,"id":3660}],"group":568,"skill":43562,"orbitIndex":4,"name":"Blind Chance","orbit":3},"50423":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50423,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[{"orbit":0,"id":38856}],"orbitIndex":57,"name":"Attribute","orbit":6},"32274":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":604,"skill":32274,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"23702":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":55802},{"orbit":0,"id":57196},{"orbit":0,"id":63445}],"group":568,"skill":23702,"orbitIndex":12,"name":"Attack Speed","orbit":3},"46857":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42916}],"group":163,"skill":46857,"orbitIndex":22,"name":"Energy Shield Delay","orbit":3},"39517":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":354,"skill":39517,"orbitIndex":18,"name":"Block","orbit":3},"59785":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59785,"stats":["+5 to any Attribute"],"isAttribute":true,"group":54,"connections":[{"orbit":0,"id":27296},{"orbit":0,"id":1200},{"orbit":0,"id":33452},{"orbit":0,"id":8852}],"orbitIndex":0,"name":"Attribute","orbit":0},"17378":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":40894}],"group":278,"skill":17378,"orbitIndex":22,"name":"Minion Life","orbit":3},"34552":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":278,"skill":34552,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"8194":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":889,"skill":8194,"orbitIndex":10,"name":"Stun Threshold if no recent Stun","orbit":7},"24630":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":24630,"stats":["40% increased chance to Ignite","40% increased Damage with Hits against Ignited Enemies"],"recipe":["Suffering","Suffering","Greed"],"connections":[{"orbit":0,"id":63608}],"group":45,"orbitIndex":0,"isNotable":true,"name":"Fulmination","orbit":0},"30523":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":30523,"stats":["Minions have 25% increased Evasion Rating","Your Dexterity is added to your Minions"],"recipe":["Despair","Fear","Ire"],"connections":[{"orbit":0,"id":35492}],"group":485,"orbitIndex":64,"isNotable":true,"name":"Dead can Dance","orbit":5},"53386":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57388}],"group":113,"skill":53386,"orbitIndex":0,"name":"Attack Critical Damage","orbit":7},"35653":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":35653},{"orbit":0,"id":65468}],"group":557,"skill":35653,"orbitIndex":0,"name":"Grenade Damage","orbit":0},"51052":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51052,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":22558}],"orbitIndex":60,"name":"Attribute","orbit":6},"18465":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":18465,"stats":["20% increased Critical Damage Bonus","20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"recipe":["Envy","Greed","Despair"],"connections":[{"orbit":0,"id":39540}],"group":342,"orbitIndex":44,"isNotable":true,"name":"Cruel Fate","orbit":4},"39448":{"stats":["3% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":11178}],"group":78,"skill":39448,"orbitIndex":21,"name":"Axe Attack Speed","orbit":3},"14540":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds","skill":14540,"isKeystone":true,"stats":["Your Stun Threshold is doubled","Cannot Dodge Roll"],"group":268,"connections":[{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Unwavering Stance","orbit":0},"65287":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":5580}],"group":387,"skill":65287,"orbitIndex":17,"name":"Totem Damage","orbit":2},"50687":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":50687,"stats":["40% increased Electrocute Buildup","30% increased Shock Chance against Electrocuted Enemies"],"recipe":["Envy","Disgust","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":472,"orbitIndex":14,"isNotable":true,"name":"Coursing Energy","orbit":7},"32183":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32183,"stats":["+5 to any Attribute"],"isAttribute":true,"group":921,"connections":[{"orbit":7,"id":28371}],"orbitIndex":0,"name":"Attribute","orbit":0},"28564":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":8460}],"group":93,"skill":28564,"orbitIndex":8,"name":"Warcry Speed","orbit":2},"44280":{"stats":["8% increased Effect of your Mark Skills","5% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":23305}],"group":936,"skill":44280,"orbitIndex":10,"name":"Mark Effect and Blind Chance","orbit":2},"61444":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":61444,"stats":["Skills Supported by Unleash have 25% increased Seal gain frequency"],"recipe":["Fear","Envy","Despair"],"connections":[{"orbit":0,"id":17411},{"orbit":0,"id":34096}],"group":262,"orbitIndex":7,"isNotable":true,"name":"Anticipation","orbit":3},"178":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":178,"orbitIndex":36,"name":"Herald Reservation","orbit":5},"8440":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-7,"id":45013}],"group":590,"skill":8440,"orbitIndex":7,"name":"Damage against Enemies on Low Life","orbit":1},"38323":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38323,"stats":["+5 to any Attribute"],"isAttribute":true,"group":346,"connections":[{"orbit":-6,"id":6015},{"orbit":-5,"id":22928}],"orbitIndex":0,"name":"Attribute","orbit":0},"27950":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":27950,"stats":["25% increased Armour","50% of Base Armour from Equipment also added to Stun Threshold"],"recipe":["Paranoia","Guilt","Despair"],"connections":[{"orbit":0,"id":26324},{"orbit":0,"id":52462}],"group":272,"orbitIndex":0,"isNotable":true,"name":"Polished Iron","orbit":2},"7204":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":53527},{"orbit":0,"id":4985}],"group":125,"skill":7204,"orbitIndex":2,"name":"Stun Buildup","orbit":7},"59142":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":59142,"stats":["Flasks applied to you have 25% increased Effect"],"recipe":["Disgust","Ire","Guilt"],"connections":[{"orbit":3,"id":56870},{"orbit":0,"id":18750}],"group":771,"orbitIndex":6,"isNotable":true,"name":"Potent Concoctions","orbit":1},"35849":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":35849,"stats":["5% reduced Movement Speed","Regenerate 1% of Life per second while stationary"],"recipe":["Envy","Guilt","Greed"],"connections":[],"group":79,"orbitIndex":0,"isNotable":true,"name":"Thickened Arteries","orbit":0},"36880":{"stats":["15% increased effect of Arcane Surge on you"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":43036}],"group":251,"skill":36880,"orbitIndex":15,"name":"Arcane Surge Effect","orbit":4},"29763":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":39423}],"group":786,"skill":29763,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"47307":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":2254}],"group":505,"skill":47307,"orbitIndex":4,"name":"Cast Speed","orbit":2},"43653":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":26518},{"orbit":0,"id":48171}],"group":131,"skill":43653,"orbitIndex":9,"name":"Cold Damage","orbit":4},"33812":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":33812,"stats":[],"ascendancyName":"Warbringer","isAscendancyStart":true,"group":16,"connections":[{"orbit":0,"id":38769},{"orbit":5,"id":18585},{"orbit":5,"id":25935},{"orbit":4,"id":1994},{"orbit":3,"id":39365}],"orbitIndex":48,"name":"Brute","orbit":6},"31159":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":46017},{"orbit":0,"id":39131}],"group":79,"skill":31159,"orbitIndex":4,"name":"Life Regeneration while Stationary","orbit":7},"8357":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":10742}],"group":278,"skill":8357,"orbitIndex":6,"name":"Minion Attack and Cast Speed","orbit":3},"3109":{"stats":["12% increased Grenade Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":29514}],"group":469,"skill":3109,"orbitIndex":6,"name":"Grenade Area","orbit":3},"18849":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds","skill":18849,"stats":["All Damage from Hits Contributes to Chill Magnitude"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":2,"isNotable":true,"name":"Shaper of Winter","orbit":5},"56757":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":10100}],"group":77,"skill":56757,"orbitIndex":10,"name":"Totem Placement Speed","orbit":2},"35408":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":36474},{"orbit":0,"id":7960}],"group":250,"skill":35408,"orbitIndex":12,"name":"Focus Energy Shield","orbit":2},"34367":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":58090},{"orbit":0,"id":57710}],"group":546,"skill":34367,"orbitIndex":14,"name":"Life Recoup","orbit":7},"6490":{"stats":["10% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":14082}],"group":805,"skill":6490,"orbitIndex":15,"name":"Critical Damage","orbit":2},"54783":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":595,"skill":54783,"orbitIndex":10,"name":"Energy Shield Mastery","orbit":1},"63891":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":63074}],"group":1013,"skill":63891,"orbitIndex":9,"name":"Chaos Damage","orbit":1},"56567":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":151}],"group":358,"skill":56567,"orbitIndex":11,"name":"Accuracy","orbit":7},"9187":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":9187,"stats":["25% increased Warcry Speed","20% increased Damage for each different Warcry you've used Recently"],"recipe":["Isolation","Greed","Guilt"],"connections":[{"orbit":0,"id":20015}],"group":223,"orbitIndex":8,"isNotable":true,"name":"Escalation","orbit":2},"61938":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":14515}],"group":149,"skill":61938,"orbitIndex":14,"name":"Jagged Ground Effect","orbit":3},"49291":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":57945}],"group":858,"skill":49291,"orbitIndex":9,"name":"Life Flask Charge Generation","orbit":7},"37532":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":843,"skill":37532,"orbitIndex":0,"name":"Lightning Mastery","orbit":0},"40691":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":7,"id":25893}],"group":519,"skill":40691,"orbitIndex":62,"name":"Energy Shield Recharge","orbit":4},"46741":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[],"group":156,"skill":46741,"orbitIndex":21,"name":"Stun Buildup","orbit":2},"49357":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49357,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":32194}],"orbitIndex":0,"name":"Attribute","orbit":6},"9918":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":16626}],"group":159,"skill":9918,"orbitIndex":4,"name":"Area Damage","orbit":2},"54849":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":279,"skill":54849,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"2174":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":4,"id":19249}],"group":209,"skill":2174,"orbitIndex":70,"name":"Totem Damage","orbit":4},"65212":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":64637},{"orbit":0,"id":60899}],"group":989,"skill":65212,"orbitIndex":7,"name":"Slow Effect on You","orbit":3},"29645":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds","skill":29645,"stats":["Ignore Warcry Cooldowns"],"ascendancyName":"Warbringer","connections":[],"group":23,"orbitIndex":0,"isNotable":true,"name":"Greatwolf's Howl","orbit":0},"26798":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":9638}],"group":274,"skill":26798,"orbitIndex":0,"name":"Skill Speed","orbit":0},"57047":{"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":57047,"stats":["10% increased Attributes"],"recipe":["Isolation","Suffering","Paranoia"],"connections":[{"orbit":0,"id":45278},{"orbit":0,"id":4492}],"group":509,"orbitIndex":48,"isNotable":true,"name":"Polymathy","orbit":5},"24287":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24287,"stats":["+5 to any Attribute"],"isAttribute":true,"group":956,"connections":[{"orbit":0,"id":60735},{"orbit":0,"id":14226}],"orbitIndex":0,"name":"Attribute","orbit":0},"10273":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":45272}],"group":509,"skill":10273,"orbitIndex":2,"name":"All Attributes","orbit":7},"49696":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":10273}],"group":509,"skill":49696,"orbitIndex":12,"name":"All Attributes","orbit":5},"59596":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":59596,"stats":["25% increased Energy Shield Recharge Rate","Gain 20 Energy Shield when you Block"],"recipe":["Paranoia","Despair","Greed"],"connections":[{"orbit":0,"id":37641}],"group":163,"orbitIndex":16,"isNotable":true,"name":"Covering Ward","orbit":3},"33964":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":64295}],"group":974,"skill":33964,"orbitIndex":49,"name":"Trap Critical Chance","orbit":4},"6304":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":6304,"stats":["Regenerate 1% of Life per second while affected by any Damaging Ailment","Regenerate 1% of Life per second while stationary"],"recipe":["Greed","Paranoia","Guilt"],"connections":[{"orbit":0,"id":12125}],"group":211,"orbitIndex":4,"isNotable":true,"name":"Stand Ground","orbit":2},"1170":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":15671}],"group":159,"skill":1170,"orbitIndex":22,"name":"Area Damage","orbit":3},"47284":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[{"orbit":0,"id":3332}],"group":382,"skill":47284,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"3431":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":43082}],"group":948,"skill":3431,"orbitIndex":6,"name":"Skill Speed","orbit":1},"10242":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":38111}],"group":836,"skill":10242,"orbitIndex":8,"name":"Life Recoup","orbit":2},"3605":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds","skill":3605,"stats":["Grants Skill: Time Snap"],"ascendancyName":"Chronomancer","connections":[],"group":205,"orbitIndex":0,"isNotable":true,"name":"Unbound Encore","orbit":0},"64031":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds","skill":64031,"stats":["Grants Skill: Unbound Avatar"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":4,"isNotable":true,"name":"...and I Shall Rage","orbit":3},"7341":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":7341,"stats":["Gain 3 Rage when Hit by an Enemy","Every Rage also grants 2% increased Stun Threshold"],"recipe":["Despair","Fear","Suffering"],"connections":[],"group":198,"orbitIndex":0,"isNotable":true,"name":"Ignore Pain","orbit":0},"21567":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":59710}],"group":71,"skill":21567,"orbitIndex":8,"name":"Shapeshifting","orbit":7},"24807":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds","skill":24807,"stats":["50% more Armour from Equipped Body Armour"],"ascendancyName":"Titan","connections":[],"group":25,"orbitIndex":0,"isNotable":true,"name":"Stone Skin","orbit":0},"43201":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":0,"id":43383}],"group":492,"skill":43201,"orbitIndex":56,"name":"Ailment Chance","orbit":4},"52618":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":52618,"stats":["25% increased Attack Damage"],"recipe":["Fear","Suffering","Paranoia"],"connections":[{"orbit":0,"id":32777}],"group":71,"orbitIndex":3,"isNotable":true,"name":"Feral Force","orbit":3},"62313":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":0,"id":1200}],"group":67,"skill":62313,"orbitIndex":52,"name":"Maximum Fire Resistance","orbit":5},"50816":{"stats":["+8 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","connections":[{"orbit":-9,"id":46554},{"orbit":0,"id":39567},{"orbit":-5,"id":37974}],"group":680,"skill":50816,"orbitIndex":67,"name":"Intelligence","orbit":5},"44871":{"stats":["+10 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":54447},{"orbit":0,"id":56216}],"group":495,"skill":44871,"orbitIndex":2,"name":"Energy Shield","orbit":3},"36602":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":18465}],"group":342,"skill":36602,"orbitIndex":39,"name":"Critical Damage","orbit":4},"23307":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23307,"stats":["+5 to any Attribute"],"isAttribute":true,"group":89,"connections":[{"orbit":0,"id":10100}],"orbitIndex":0,"name":"Attribute","orbit":0},"64683":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":408,"skill":64683,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"7576":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":33866}],"group":610,"skill":7576,"orbitIndex":0,"name":"Attack Damage","orbit":0},"44345":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48833}],"group":683,"skill":44345,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"14666":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":539,"skill":14666,"orbitIndex":18,"name":"Energy Shield Recharge","orbit":3},"21721":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":15899},{"orbit":0,"id":55066}],"group":478,"skill":21721,"orbitIndex":4,"name":"Bleeding Chance","orbit":3},"36478":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":47204},{"orbit":0,"id":28002}],"group":234,"skill":36478,"orbitIndex":1,"name":"Melee Damage","orbit":2},"24551":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":147,"skill":24551,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"32009":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":36814}],"group":567,"skill":32009,"orbitIndex":2,"name":"Curse Duration","orbit":7},"61842":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":33240},{"orbit":0,"id":14712}],"group":282,"skill":61842,"orbitIndex":0,"name":"Minion Damage","orbit":3},"44733":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44733,"stats":["+5 to any Attribute"],"isAttribute":true,"group":328,"connections":[{"orbit":0,"id":10742},{"orbit":0,"id":57506},{"orbit":-6,"id":29432}],"orbitIndex":12,"name":"Attribute","orbit":2},"51867":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":51867,"stats":["120% increased Damage with Hits against Enemies that are on Low Life","5% increased Damage taken while on Low Life"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":232,"orbitIndex":0,"isNotable":true,"name":"Finality","orbit":0},"42350":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42350,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":0,"id":61438}],"orbitIndex":67,"name":"Attribute","orbit":6},"23915":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-1,"id":41529}],"group":762,"skill":23915,"orbitIndex":0,"name":"Critical Damage","orbit":0},"13293":{"stats":["20% increased Armour if you haven't been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":30457}],"group":66,"skill":13293,"orbitIndex":0,"name":"Armour","orbit":7},"45522":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","options":{"Witch":{"stats":["10% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","id":40885}},"skill":45522,"stats":["10% increased Lightning Damage"],"isSwitchable":true,"group":475,"connections":[{"orbit":5,"id":22314}],"orbitIndex":6,"name":"Lightning Damage","orbit":3},"27095":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":14890},{"orbit":0,"id":48658}],"group":745,"skill":27095,"orbitIndex":7,"name":"Freeze Buildup","orbit":7},"46024":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":46024,"stats":["30% increased Damage with Hits against Shocked Enemies"],"recipe":["Paranoia","Suffering","Paranoia"],"connections":[],"group":146,"orbitIndex":44,"isNotable":true,"name":"Sigil of Lightning","orbit":4},"61718":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":-2,"id":54204},{"orbit":2,"id":21945}],"group":988,"skill":61718,"orbitIndex":6,"name":"Daze Buildup","orbit":1},"53527":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":53527,"stats":["Break 50% of Armour on Heavy Stunning an Enemy"],"recipe":["Fear","Guilt","Guilt"],"connections":[],"group":125,"orbitIndex":22,"isNotable":true,"name":"Shattering Blow","orbit":7},"27439":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27439,"stats":["+5 to any Attribute"],"isAttribute":true,"group":182,"connections":[{"orbit":0,"id":48768},{"orbit":0,"id":21982}],"orbitIndex":0,"name":"Attribute","orbit":0},"41768":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41768,"stats":["+5 to any Attribute"],"isAttribute":true,"group":55,"connections":[{"orbit":0,"id":28982},{"orbit":0,"id":55048}],"orbitIndex":0,"name":"Attribute","orbit":0},"19482":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":19482,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":36564}],"orbitIndex":109,"name":"Life","orbit":9},"10055":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":30554},{"orbit":0,"id":41497}],"group":70,"skill":10055,"orbitIndex":2,"name":"Minion Life and Chaos Resistance","orbit":7},"52125":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52125,"stats":["+5 to any Attribute"],"isAttribute":true,"group":507,"connections":[{"orbit":0,"id":54127},{"orbit":0,"id":21721}],"orbitIndex":0,"name":"Attribute","orbit":0},"39640":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds","skill":39640,"stats":["All Damage from Hits Contributes to Shock Chance"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":70,"isNotable":true,"name":"Shaper of Storms","orbit":5},"31918":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-3,"id":4534}],"group":890,"skill":31918,"orbitIndex":15,"name":"Pierce Chance","orbit":7},"32561":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":51825}],"group":481,"skill":32561,"orbitIndex":15,"name":"Two Handed Damage","orbit":3},"8908":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":4,"id":13711},{"orbit":-5,"id":3203}],"group":767,"skill":8908,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":7},"48565":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":48565,"stats":["Minions deal 25% increased Damage"],"recipe":["Envy","Fear","Disgust"],"connections":[{"orbit":0,"id":47242}],"group":75,"orbitIndex":13,"isNotable":true,"name":"Bringer of Order","orbit":3},"4665":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":1913}],"group":408,"skill":4665,"orbitIndex":0,"name":"Life Regeneration","orbit":7},"9226":{"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":9226,"stats":["10% of Damage is taken from Mana before Life"],"recipe":["Ire","Disgust","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":96,"orbitIndex":5,"isNotable":true,"name":"Mental Perseverance","orbit":1},"54964":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":23078}],"group":75,"skill":54964,"orbitIndex":3,"name":"Sentinels","orbit":2},"33722":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":33722,"stats":["+5 to any Attribute"],"isAttribute":true,"group":84,"connections":[{"orbit":0,"id":4140},{"orbit":0,"id":4725},{"orbit":0,"id":6222}],"orbitIndex":0,"name":"Attribute","orbit":0},"26682":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":46819},{"orbit":-3,"id":56640}],"group":479,"skill":26682,"orbitIndex":8,"name":"Spell Critical Damage","orbit":7},"55575":{"stats":["Gain 2% of Physical Damage as extra Chaos Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":58002}],"group":661,"skill":55575,"orbitIndex":9,"name":"Physical as Extra Chaos Damage","orbit":2},"14176":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":18004}],"group":161,"skill":14176,"orbitIndex":0,"name":"Slower Rage Decay","orbit":2},"2500":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":7,"id":6030}],"group":1003,"skill":2500,"orbitIndex":10,"name":"Poison Chance","orbit":7},"10987":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds","skill":10987,"stats":["Skills have 33% chance to not consume a Cooldown when used"],"ascendancyName":"Chronomancer","connections":[],"group":206,"orbitIndex":0,"isNotable":true,"name":"Now and Again","orbit":0},"37963":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[],"group":352,"skill":37963,"orbitIndex":13,"name":"Sword Damage","orbit":3},"21627":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":19796}],"group":478,"skill":21627,"orbitIndex":12,"name":"Bleeding Damage","orbit":2},"35284":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-2,"id":31898},{"orbit":-7,"id":64471}],"group":334,"skill":35284,"orbitIndex":3,"name":"Herald Reservation","orbit":7},"2946":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":130,"skill":2946,"orbitIndex":1,"name":"Fire Resistance Mastery","orbit":1},"16484":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16484,"stats":["+5 to any Attribute"],"isAttribute":true,"group":711,"connections":[{"orbit":0,"id":46830},{"orbit":0,"id":25100}],"orbitIndex":0,"name":"Attribute","orbit":2},"44204":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":3,"id":33729}],"group":828,"skill":44204,"orbitIndex":0,"name":"Elemental Damage and Ignite Chance","orbit":7},"17349":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":-3,"id":23940},{"orbit":0,"id":58138}],"group":52,"skill":17349,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":7},"18004":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":8881}],"group":161,"skill":18004,"orbitIndex":3,"name":"Slower Rage Decay","orbit":3},"49618":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":49618,"stats":["20% increased Melee Critical Hit Chance"],"recipe":["Envy","Ire","Guilt"],"connections":[{"orbit":0,"id":38663},{"orbit":0,"id":55348}],"group":378,"orbitIndex":0,"isNotable":true,"name":"Deadly Flourish","orbit":0},"22821":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","options":{"Witch":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","id":183}},"skill":22821,"stats":["10% increased Cold Damage"],"isSwitchable":true,"group":473,"connections":[{"orbit":0,"id":3823},{"orbit":0,"id":22314}],"orbitIndex":0,"name":"Cold Damage","orbit":7},"62436":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":3215}],"group":584,"skill":62436,"orbitIndex":5,"name":"Energy Shield","orbit":7},"39581":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":46325}],"group":394,"skill":39581,"orbitIndex":8,"name":"Stun Buildup","orbit":7},"30007":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":3188}],"group":38,"skill":30007,"orbitIndex":8,"name":"Armour if Hit","orbit":1},"59376":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59376,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[],"orbitIndex":3,"name":"Attribute","orbit":6},"53853":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":53853,"stats":["40% increased Evasion Rating if you have been Hit Recently","40% increased Armour if you haven't been Hit Recently"],"recipe":["Greed","Greed","Ire"],"connections":[{"orbit":0,"id":57320}],"group":428,"orbitIndex":19,"isNotable":true,"name":"Backup Plan","orbit":7},"17706":{"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":46972}],"group":594,"skill":17706,"orbitIndex":20,"name":"Energy Shield Recharge and Mana Flask Recovery","orbit":2},"36169":{"stats":["12% increased Grenade Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":29514}],"group":469,"skill":36169,"orbitIndex":23,"name":"Grenade Area","orbit":3},"62510":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":4,"id":8697},{"orbit":6,"id":17118}],"group":730,"skill":62510,"orbitIndex":69,"name":"Elemental Attack Damage","orbit":4},"52659":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":10362}],"group":76,"skill":52659,"orbitIndex":20,"name":"Life Regeneration","orbit":7},"30555":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30555,"stats":["+5 to any Attribute"],"isAttribute":true,"group":599,"connections":[{"orbit":3,"id":53960}],"orbitIndex":0,"name":"Attribute","orbit":0},"50062":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":50062,"stats":["20% increased maximum Energy Shield","Defend with 120% of Armour while not on Low Energy Shield"],"recipe":["Despair","Greed","Envy"],"connections":[{"orbit":0,"id":37641}],"group":163,"orbitIndex":2,"isNotable":true,"name":"Reinforced Barrier","orbit":2},"62670":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":70,"skill":62670,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"44406":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-6,"id":48768}],"group":221,"skill":44406,"orbitIndex":0,"name":"Stun Buildup","orbit":6},"23091":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":45885},{"orbit":0,"id":39515}],"group":445,"skill":23091,"orbitIndex":10,"name":"Fire Damage","orbit":3},"19011":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":45363}],"group":315,"skill":19011,"orbitIndex":20,"name":"Melee Damage","orbit":3},"33112":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":-7,"id":10881}],"group":719,"skill":33112,"orbitIndex":12,"name":"Focus Energy Shield","orbit":3},"44344":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44344,"stats":["+5 to any Attribute"],"isAttribute":true,"group":371,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"18086":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":18086,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"recipe":["Suffering","Disgust","Suffering"],"connections":[{"orbit":0,"id":62844}],"group":464,"orbitIndex":54,"isNotable":true,"name":"Breath of Ice","orbit":4},"21274":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21274,"stats":["+5 to any Attribute"],"isAttribute":true,"group":573,"connections":[{"orbit":0,"id":6230}],"orbitIndex":0,"name":"Attribute","orbit":0},"30123":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":6923},{"orbit":0,"id":26092}],"group":229,"skill":30123,"orbitIndex":12,"name":"Two Handed Damage","orbit":3},"31903":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31903,"stats":["+5 to any Attribute"],"isAttribute":true,"group":295,"connections":[{"orbit":0,"id":37612},{"orbit":0,"id":56605}],"orbitIndex":0,"name":"Attribute","orbit":0},"52462":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":272,"skill":52462,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"61409":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":13075}],"group":110,"skill":61409,"orbitIndex":22,"name":"Strength and Reduced Mana","orbit":7},"36479":{"icon":"Art/2DArt/SkillIcons/passives/Storm Weaver.dds","skill":36479,"stats":["Gain 5% of Damage as Extra Lightning Damage","30% increased chance to Shock"],"recipe":["Greed","Fear","Paranoia"],"connections":[{"orbit":0,"id":12925}],"group":667,"orbitIndex":66,"isNotable":true,"name":"Essence of the Storm","orbit":4},"16123":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":671,"skill":16123,"orbitIndex":22,"name":"Critical Mastery","orbit":3},"22271":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":15083}],"group":558,"skill":22271,"orbitIndex":0,"name":"Shock Chance","orbit":0},"20303":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":9908}],"group":210,"skill":20303,"orbitIndex":16,"name":"Life Regeneration","orbit":2},"63814":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33216}],"group":454,"skill":63814,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"48035":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":11329}],"group":337,"skill":48035,"orbitIndex":23,"name":"Life Regeneration","orbit":2},"56564":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":8349}],"group":447,"skill":56564,"orbitIndex":15,"name":"Energy Shield Recharge","orbit":2},"44608":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":602,"skill":44608,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"11980":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-5,"id":20504}],"group":655,"skill":11980,"orbitIndex":5,"name":"Block","orbit":4},"49593":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":4725}],"group":75,"skill":49593,"orbitIndex":8,"name":"Sentinels","orbit":7},"61973":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds","skill":61973,"stats":["Culling Strike"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":40719}],"group":152,"orbitIndex":44,"isNotable":true,"name":"Pitiless Killer","orbit":6},"24767":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":35408}],"group":250,"skill":24767,"orbitIndex":34,"name":"Focus Energy Shield","orbit":4},"39116":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":593,"skill":39116,"orbitIndex":14,"name":"Physical Mastery","orbit":3},"34493":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":65328},{"orbit":0,"id":54964},{"orbit":0,"id":49593}],"group":75,"skill":34493,"orbitIndex":20,"name":"Sentinels","orbit":2},"7390":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":17150}],"group":444,"skill":7390,"orbitIndex":4,"name":"Armour and Evasion","orbit":3},"10208":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":22909},{"orbit":0,"id":60013}],"group":193,"skill":10208,"orbitIndex":11,"name":"Stun Threshold from Energy Shield","orbit":3},"52260":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-2,"id":3688}],"group":953,"skill":52260,"orbitIndex":8,"name":"Energy","orbit":2},"45899":{"stats":["6% increased Fire Damage","6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":968}],"group":340,"skill":45899,"orbitIndex":6,"name":"Fire Damage and Area","orbit":3},"7183":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":48589}],"group":313,"skill":7183,"orbitIndex":5,"name":"Life Flask Recovery","orbit":2},"26070":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":26070,"stats":["Empowered Attacks deal 30% increased Damage","Warcry Skills have 30% increased Area of Effect"],"recipe":["Suffering","Disgust","Paranoia"],"connections":[{"orbit":3,"id":27540},{"orbit":0,"id":35977}],"group":187,"orbitIndex":4,"isNotable":true,"name":"Bolstering Yell","orbit":2},"47635":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":47635,"stats":["Damage Penetrates 10% Lightning Resistance if on Low Mana","Damage Penetrates 15% Lightning Resistance"],"recipe":["Paranoia","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":814,"orbitIndex":8,"isNotable":true,"name":"Overload","orbit":3},"22439":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":5936}],"group":466,"skill":22439,"orbitIndex":12,"name":"Elemental Damage","orbit":3},"49391":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":354,"skill":49391,"orbitIndex":0,"name":"Block Mastery","orbit":0},"30371":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":4,"id":52796},{"orbit":0,"id":36044}],"group":80,"skill":30371,"orbitIndex":6,"name":"Shield Damage","orbit":2},"44005":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":44005,"stats":["15% reduced Spell Damage","6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"recipe":["Fear","Greed","Isolation"],"connections":[],"group":157,"orbitIndex":38,"isNotable":true,"name":"Casting Cascade","orbit":6},"38501":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-4,"id":47796}],"group":435,"skill":38501,"orbitIndex":40,"name":"Attack Speed","orbit":4},"48670":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48670,"stats":["+5 to any Attribute"],"isAttribute":true,"group":407,"connections":[{"orbit":0,"id":13241},{"orbit":0,"id":33169},{"orbit":0,"id":53589},{"orbit":0,"id":19122}],"orbitIndex":42,"name":"Attribute","orbit":6},"26663":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":0,"id":44765}],"group":545,"skill":26663,"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"30662":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":26291}],"group":146,"skill":30662,"orbitIndex":32,"name":"Lightning Damage","orbit":4},"25170":{"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":30820}],"group":707,"skill":25170,"orbitIndex":22,"name":"Attack Damage and Skill Duration","orbit":2},"55235":{"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"orbit":0,"id":63830},{"orbit":0,"id":44756},{"orbit":0,"id":36976}],"group":914,"skill":55235,"orbitIndex":4,"name":"Mark Mastery","orbit":1},"49231":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":43183}],"group":389,"skill":49231,"orbitIndex":20,"name":"Attack Speed","orbit":7},"57810":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":40073}],"group":603,"skill":57810,"orbitIndex":0,"name":"Shock Chance","orbit":0},"29993":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":158,"skill":29993,"orbitIndex":8,"name":"Duration Mastery","orbit":1},"1215":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":615,"skill":1215,"orbitIndex":5,"name":"Evasion and Energy Shield Mastery","orbit":1},"40336":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":6655}],"group":440,"skill":40336,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"34090":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":7,"id":14655},{"orbit":-7,"id":64870}],"group":213,"skill":34090,"orbitIndex":0,"name":"Armour","orbit":7},"21404":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42825}],"group":289,"skill":21404,"orbitIndex":18,"name":"Energy Shield Delay","orbit":2},"49952":{"stats":["1% reduced Attack Speed","12% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":13856}],"group":134,"skill":49952,"orbitIndex":6,"name":"Ailment Effect and Reduced Attack Speed","orbit":7},"35223":{"stats":["10% increased Critical Hit Chance with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":55680},{"orbit":0,"id":9227}],"group":954,"skill":35223,"orbitIndex":4,"name":"Spear Critical Chance","orbit":3},"97":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":52442}],"group":513,"skill":97,"orbitIndex":0,"name":"Attack Speed","orbit":2},"43647":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":32507}],"group":426,"skill":43647,"orbitIndex":15,"name":"Minion Offence Mastery","orbit":2},"28680":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":246,"skill":28680,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"42361":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":867,"skill":42361,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"20049":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":5,"id":32818}],"group":692,"skill":20049,"orbitIndex":0,"name":"Charm Charges","orbit":7},"34433":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":32354}],"group":423,"skill":34433,"orbitIndex":9,"name":"Armour and Evasion","orbit":2},"59795":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59795,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-3,"id":10156}],"orbitIndex":33,"name":"Attribute","orbit":5},"10156":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10156,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-6,"id":6744}],"orbitIndex":38,"name":"Attribute","orbit":6},"18348":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds","skill":18348,"stats":["20% of Cold Damage taken as Fire Damage","20% of Lightning Damage taken as Fire Damage","20% of Physical Damage taken as Chaos Damage"],"ascendancyName":"Infernalist","connections":[{"orbit":5,"id":19482},{"orbit":0,"id":8854},{"orbit":8,"id":46016}],"group":486,"orbitIndex":60,"isNotable":true,"name":"Altered Flesh","orbit":8},"1151":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4113}],"group":542,"skill":1151,"orbitIndex":8,"name":"Freeze Buildup","orbit":7},"17501":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[],"group":419,"skill":17501,"orbitIndex":7,"name":"Minion Damage","orbit":2},"54067":{"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":27626},{"orbit":-4,"id":2244}],"group":251,"skill":54067,"orbitIndex":7,"name":"Arcane Surge on Critical Hit","orbit":5},"38124":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":8,"id":51820}],"group":151,"skill":38124,"orbitIndex":32,"name":"Totem Damage","orbit":4},"22393":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":28458}],"group":278,"skill":22393,"orbitIndex":12,"name":"Minion Damage","orbit":3},"54521":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54521,"stats":["+5 to any Attribute"],"isAttribute":true,"group":413,"connections":[{"orbit":5,"id":13537},{"orbit":0,"id":58789}],"orbitIndex":0,"name":"Attribute","orbit":0},"14091":{"stats":["Break 10% increased Armour","6% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981},{"orbit":0,"id":23993},{"orbit":0,"id":28860}],"group":417,"skill":14091,"orbitIndex":0,"name":"Armour Break and Physical Damage","orbit":0},"55596":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":8509},{"orbit":0,"id":41263}],"group":168,"skill":55596,"orbitIndex":8,"name":"Critical Damage","orbit":3},"25434":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":25434,"stats":["15% increased Magnitude of Chill you inflict"],"ascendancyName":"Invoker","group":1033,"connections":[],"orbitIndex":11,"name":"Chill Effect","orbit":6},"34882":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":34882,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":247,"connections":[{"orbit":2147483647,"id":11641}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"24871":{"stats":["3% increased Attack Speed with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":10602}],"group":226,"skill":24871,"orbitIndex":4,"name":"Attack Speed","orbit":4},"11030":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":59596}],"group":163,"skill":11030,"orbitIndex":10,"name":"Energy Shield Delay","orbit":3},"47191":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":138,"skill":47191,"orbitIndex":58,"name":"Fire Damage","orbit":4},"47354":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":36478}],"group":234,"skill":47354,"orbitIndex":4,"name":"Melee Attack Speed","orbit":3},"27068":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":35831}],"group":147,"skill":27068,"orbitIndex":12,"name":"Mana Regeneration","orbit":7},"34168":{"icon":"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds","skill":34168,"stats":["36% increased Damage if you've dealt a Critical Hit in the past 8 seconds"],"recipe":["Envy","Guilt","Despair"],"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":4157},{"orbit":0,"id":55088}],"group":665,"orbitIndex":22,"isNotable":true,"name":"Crashing Wave","orbit":7},"1087":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":1087,"stats":["30% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"],"recipe":["Greed","Paranoia","Ire"],"connections":[],"group":229,"orbitIndex":7,"isNotable":true,"name":"Shockwaves","orbit":3},"58016":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":58016,"stats":["+5% to all Elemental Resistances","30% increased Elemental Damage"],"recipe":["Fear","Fear","Greed"],"connections":[{"orbit":7,"id":49537},{"orbit":0,"id":42205}],"group":197,"orbitIndex":42,"isNotable":true,"name":"All Natural","orbit":4},"53505":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":6,"id":21468}],"group":409,"skill":53505,"orbitIndex":18,"name":"Life Leech","orbit":2},"17260":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":17260,"stats":["25% increased Attack Damage"],"recipe":["Greed","Ire","Despair"],"connections":[{"orbit":-5,"id":33502}],"group":116,"orbitIndex":0,"isNotable":true,"name":"Tough Claw","orbit":0},"64117":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":64117,"stats":["20% increased Warcry Speed"],"ascendancyName":"Warbringer","group":20,"connections":[{"orbit":2,"id":29645}],"orbitIndex":0,"name":"Warcry Speed","orbit":0},"48631":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48631,"stats":["+5 to any Attribute"],"isAttribute":true,"group":277,"connections":[{"orbit":0,"id":35426},{"orbit":-4,"id":59006}],"orbitIndex":0,"name":"Attribute","orbit":0},"17505":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":52106},{"orbit":0,"id":28774},{"orbit":0,"id":23382}],"group":157,"skill":17505,"orbitIndex":30,"name":"Cast Speed","orbit":6},"56818":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-3,"id":43423},{"orbit":-6,"id":62510}],"group":730,"skill":56818,"orbitIndex":18,"name":"Elemental Attack Damage","orbit":3},"49220":{"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":49220,"stats":["8% increased Attack and Cast Speed","+5 to Dexterity and Intelligence"],"recipe":["Greed","Guilt","Despair"],"connections":[{"orbit":0,"id":10429},{"orbit":-3,"id":44223},{"orbit":-6,"id":53960},{"orbit":5,"id":21336},{"orbit":6,"id":36778}],"group":610,"orbitIndex":12,"isNotable":true,"name":"Flow Like Water","orbit":4},"43939":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":43939,"stats":["+15% to Fire Resistance","25% reduced effect of Ignite on you"],"recipe":["Fear","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":48267},{"orbit":0,"id":56214}],"group":64,"orbitIndex":9,"isNotable":true,"name":"Fireproof","orbit":3},"3218":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":48171}],"group":131,"skill":3218,"orbitIndex":17,"name":"Elemental Damage","orbit":4},"8791":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":8791,"stats":["Minions have 25% increased maximum Life"],"recipe":["Fear","Greed","Despair"],"connections":[{"orbit":0,"id":54849},{"orbit":4,"id":4084}],"group":279,"orbitIndex":6,"isNotable":true,"name":"Sturdy Ally","orbit":3},"26969":{"stats":["5% reduced maximum Mana","15% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":2,"id":16861}],"group":184,"skill":26969,"orbitIndex":69,"name":"Critical Chance and Reduced Mana","orbit":4},"17138":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":51903}],"group":101,"skill":17138,"orbitIndex":0,"name":"Melee Damage","orbit":0},"18160":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":26945}],"group":419,"skill":18160,"orbitIndex":14,"name":"Minion Critical Chance","orbit":7},"31017":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":26339}],"group":177,"skill":31017,"orbitIndex":0,"name":"Totem Damage","orbit":3},"31950":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31950,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":58329},{"orbit":0,"id":8569},{"orbit":0,"id":21080},{"orbit":0,"id":7405}],"orbitIndex":12,"name":"Attribute","orbit":6},"14254":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":97}],"group":513,"skill":14254,"orbitIndex":4,"name":"Attack Speed","orbit":2},"55536":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":55536,"stats":[],"ascendancyName":"Gemling Legionnaire","isAscendancyStart":true,"group":266,"connections":[{"orbit":2147483647,"id":34882},{"orbit":0,"id":1442},{"orbit":2147483647,"id":3084}],"orbitIndex":72,"name":"Gambler","orbit":9},"24224":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":78,"skill":24224,"orbitIndex":0,"name":"Axe Mastery","orbit":0},"4673":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":4673,"stats":["30% increased Stun Buildup","+15 to Strength"],"recipe":["Disgust","Guilt","Guilt"],"connections":[{"orbit":0,"id":10047},{"orbit":0,"id":51812}],"group":156,"orbitIndex":15,"isNotable":true,"name":"Hulking Smash","orbit":2},"29762":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":29762,"stats":["30% increased Warcry Speed","Warcry Skills have 30% increased Area of Effect"],"recipe":["Paranoia","Ire","Disgust"],"connections":[{"orbit":5,"id":28564},{"orbit":0,"id":8460},{"orbit":-2,"id":9528}],"group":93,"orbitIndex":13,"isNotable":true,"name":"Guttural Roar","orbit":3},"26565":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":40024}],"group":849,"skill":26565,"orbitIndex":2,"name":"Poison Duration","orbit":3},"64020":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":29652}],"group":262,"skill":64020,"orbitIndex":20,"name":"Spell Damage","orbit":2},"18374":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[],"group":293,"skill":18374,"orbitIndex":7,"name":"Thorns","orbit":2},"8606":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":707,"skill":8606,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"26598":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26598,"stats":["+5 to any Attribute"],"isAttribute":true,"group":832,"connections":[{"orbit":3,"id":33366}],"orbitIndex":0,"name":"Attribute","orbit":0},"32016":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-6,"id":5766},{"orbit":0,"id":49984}],"group":845,"skill":32016,"orbitIndex":19,"name":"Spell Damage","orbit":7},"44330":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":44330,"stats":["25% increased Damage with One Handed Weapons","20% increased Chance to inflict Ailments with One-Handed Attacks"],"recipe":["Fear","Greed","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":528,"orbitIndex":2,"isNotable":true,"name":"Coated Arms","orbit":3},"48505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":269,"skill":48505,"orbitIndex":18,"name":"Life Mastery","orbit":2},"19355":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":679,"skill":19355,"orbitIndex":4,"name":"Energy Shield","orbit":6},"3894":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":3894,"stats":["3% increased maximum Life, Mana and Energy Shield","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Isolation","Guilt","Isolation"],"connections":[{"orbit":0,"id":13307},{"orbit":0,"id":857}],"group":381,"orbitIndex":30,"isNotable":true,"name":"Eldritch Will","orbit":4},"3918":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":59695}],"group":420,"skill":3918,"orbitIndex":15,"name":"Mana Regeneration","orbit":2},"4442":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":59886}],"group":67,"skill":4442,"orbitIndex":10,"name":"Maximum Lightning Resistance","orbit":3},"47371":{"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":7668}],"group":204,"skill":47371,"orbitIndex":22,"name":"Empowered Attack Damage and Bleeding Chance","orbit":2},"53921":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":53921,"stats":["30% increased Stun Threshold","30% increased Elemental Ailment Threshold"],"recipe":["Paranoia","Envy","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":58838},{"orbit":0,"id":40596}],"group":173,"orbitIndex":48,"isNotable":true,"name":"Unbreaking","orbit":5},"19802":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":2,"id":64399}],"group":307,"skill":19802,"orbitIndex":8,"name":"Attack Critical Damage","orbit":2},"41105":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":54288}],"group":169,"skill":41105,"orbitIndex":12,"name":"Life Recoup","orbit":7},"42177":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":42177,"stats":["5% increased Attack Speed","10% increased Accuracy Rating","5% increased Dexterity"],"recipe":["Despair","Paranoia","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":7,"id":11153}],"group":384,"orbitIndex":0,"isNotable":true,"name":"Blurred Motion","orbit":0},"35171":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":18846}],"group":233,"skill":35171,"orbitIndex":0,"name":"Spell Area of Effect","orbit":3},"41493":{"stats":["8% increased Attack Area Damage","5% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":9,"id":50253}],"group":183,"skill":41493,"orbitIndex":0,"name":"Attack Area Damage and Area","orbit":0},"64284":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":27373},{"orbit":4,"id":19011}],"group":315,"skill":64284,"orbitIndex":51,"name":"Melee Damage","orbit":4},"45990":{"stats":["4% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":39448}],"group":78,"skill":45990,"orbitIndex":23,"name":"Axe Attack Speed","orbit":3},"7392":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":10571}],"group":269,"skill":7392,"orbitIndex":19,"name":"Stun Threshold","orbit":3},"13537":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":49455}],"group":381,"skill":13537,"orbitIndex":10,"name":"Energy Shield","orbit":4},"62310":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":62310,"stats":["30% increased chance to Ignite","30% increased Damage with Hits against Burning Enemies"],"recipe":["Isolation","Disgust","Guilt"],"connections":[{"orbit":2,"id":36325},{"orbit":0,"id":56934}],"group":345,"orbitIndex":22,"isNotable":true,"name":"Incendiary","orbit":7},"40719":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":40719,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":17646}],"orbitIndex":47,"name":"Damage vs Low Life Enemies","orbit":5},"47591":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-2,"id":9226}],"group":96,"skill":47591,"orbitIndex":1,"name":"Mana Regeneration","orbit":2},"33402":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":58125}],"group":52,"skill":33402,"orbitIndex":54,"name":"Shield Defences","orbit":4},"32404":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":6,"id":15618},{"orbit":0,"id":5501},{"orbit":-6,"id":22290}],"group":504,"skill":32404,"orbitIndex":18,"name":"Spell Critical Chance","orbit":2},"62640":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":24880}],"group":435,"skill":62640,"orbitIndex":32,"name":"Attack Speed","orbit":4},"38368":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":-2,"id":35966},{"orbit":2,"id":54288}],"group":169,"skill":38368,"orbitIndex":0,"name":"Life Recoup","orbit":0},"59006":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":37956}],"group":276,"skill":59006,"orbitIndex":0,"name":"Reduced Duration","orbit":0},"30704":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":22045},{"orbit":0,"id":17655}],"group":369,"skill":30704,"orbitIndex":20,"name":"Life Regeneration","orbit":7},"20388":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":20388,"stats":["Minions Recoup 10% of Damage taken as Life"],"recipe":["Greed","Disgust","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":367,"orbitIndex":22,"isNotable":true,"name":"Regenerative Flesh","orbit":2},"14572":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-6,"id":49657},{"orbit":0,"id":11037}],"group":491,"skill":14572,"orbitIndex":8,"name":"Cooldown Recovery Rate","orbit":3},"2857":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds","skill":2857,"stats":["Targets can be affected by two of your Shocks at the same time","50% less Shock Duration"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":7998}],"group":308,"orbitIndex":66,"isNotable":true,"name":"Strike Twice","orbit":6},"26895":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":294,"skill":26895,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"33618":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"orbit":0,"id":39990}],"group":363,"skill":33618,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"9762":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":45824}],"group":356,"skill":9762,"orbitIndex":5,"name":"Sword Damage","orbit":6},"31644":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":14739},{"orbit":0,"id":34058}],"group":447,"skill":31644,"orbitIndex":23,"name":"Energy Shield Delay","orbit":2},"48768":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":48768,"stats":[],"group":203,"connections":[{"orbit":0,"id":43778}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"51606":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":51606,"stats":["30% increased Evasion Rating","30% increased Evasion Rating if you've Dodge Rolled Recently"],"recipe":["Greed","Greed","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":-7,"id":65207}],"group":850,"orbitIndex":48,"isNotable":true,"name":"Freedom of Movement","orbit":4},"14324":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":14324,"stats":["15% increased Mana Recovery rate"],"recipe":["Envy","Despair","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":-2,"id":1468}],"group":519,"orbitIndex":3,"isNotable":true,"name":"Arcane Blossom","orbit":7},"57471":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":57471,"stats":["Recover 20 Life when you Block","80% less Knockback Distance for Blocked Hits"],"recipe":["Despair","Despair","Paranoia"],"connections":[{"orbit":-4,"id":42578}],"group":80,"orbitIndex":8,"isNotable":true,"name":"Hunker Down","orbit":3},"38420":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":37543}],"group":321,"skill":38420,"orbitIndex":22,"name":"Mana Regeneration","orbit":2},"6015":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6015,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":6,"id":35426}],"orbitIndex":15,"name":"Attribute","orbit":3},"506":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":6416}],"group":163,"skill":506,"orbitIndex":14,"name":"Armour and Energy Shield","orbit":2},"37458":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":37458,"stats":["Link Skills have 20% increased Buff Effect","Link Skills have 20% increased Skill Effect Duration"],"recipe":["Guilt","Disgust","Envy"],"connections":[{"orbit":7,"id":16948},{"orbit":0,"id":25412}],"group":285,"orbitIndex":13,"isNotable":true,"name":"Strong Links","orbit":2},"35876":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":35876,"stats":["25% increased Warcry Speed","25% increased Warcry Cooldown Recovery Rate"],"recipe":["Disgust","Suffering","Disgust"],"connections":[{"orbit":4,"id":53194},{"orbit":-3,"id":27540},{"orbit":0,"id":35977}],"group":187,"orbitIndex":20,"isNotable":true,"name":"Admonisher","orbit":2},"33502":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[],"group":100,"skill":33502,"orbitIndex":12,"name":"Shapeshifting","orbit":5},"24880":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":38501}],"group":435,"skill":24880,"orbitIndex":36,"name":"Attack Speed","orbit":5},"31223":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds","skill":31223,"stats":["Gain Energy Shield from equipped Body Armour as extra maximum Life"],"ascendancyName":"Blood Mage","connections":[],"group":664,"orbitIndex":0,"isNotable":true,"name":"Crimson Power","orbit":0},"48240":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":48240,"stats":["40% increased Stun Recovery","Regenerate 5% of Life over 1 second when Stunned"],"recipe":["Despair","Suffering","Greed"],"connections":[{"orbit":0,"id":48505}],"group":269,"orbitIndex":15,"isNotable":true,"name":"Quick Recovery","orbit":3},"61847":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":-4,"id":43443}],"group":43,"skill":61847,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"18882":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18882,"stats":["+5 to any Attribute"],"isAttribute":true,"group":649,"connections":[{"orbit":-2,"id":24045},{"orbit":0,"id":26786},{"orbit":0,"id":30047},{"orbit":0,"id":56841}],"orbitIndex":6,"name":"Attribute","orbit":5},"7621":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds","skill":7621,"stats":["Gain 10% of Damage as Extra Lightning Damage","25% chance on Shocking Enemies to created Shocked Ground"],"ascendancyName":"Invoker","connections":[{"orbit":0,"id":55611}],"group":1033,"orbitIndex":15,"isNotable":true,"name":"I am the Thunder...","orbit":5},"61441":{"stats":["3% increased Attack Speed with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":54138}],"group":352,"skill":61441,"orbitIndex":7,"name":"Sword Speed","orbit":6},"21279":{"stats":["8% increased Effect of your Mark Skills","10% increased Blind Effect"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":35534}],"group":936,"skill":21279,"orbitIndex":22,"name":"Mark Effect and Blind Effect","orbit":2},"24475":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":24475,"stats":["+7% to Chaos Resistance"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":-9,"id":59759}],"orbitIndex":8,"name":"Chaos Resistance","orbit":8},"46782":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":53698}],"group":802,"skill":46782,"orbitIndex":16,"name":"Attack Damage","orbit":7},"50540":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"orbit":0,"id":16499}],"group":566,"skill":50540,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"55101":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":58016}],"group":197,"skill":55101,"orbitIndex":12,"name":"Elemental Damage","orbit":3},"61318":{"stats":["16% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":61396}],"group":618,"skill":61318,"orbitIndex":11,"name":"Armour and Evasion","orbit":3},"526":{"stats":["18% increased Stun Buildup with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":2645}],"group":56,"skill":526,"orbitIndex":4,"name":"Mace Stun Buildup","orbit":4},"56761":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":8560},{"orbit":0,"id":48531},{"orbit":0,"id":2408}],"group":946,"skill":56761,"orbitIndex":20,"name":"Melee Damage","orbit":3},"12565":{"stats":["4% increased Block chance","10% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":3245}],"group":38,"skill":12565,"orbitIndex":8,"name":"Thorns and Block","orbit":3},"62235":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":618,"skill":62235,"orbitIndex":10,"name":"Armour and Evasion Mastery","orbit":2},"54911":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":54911,"stats":["40% increased chance to Ignite","Enemies Ignited by you have -5% to Fire Resistance"],"recipe":["Greed","Isolation","Guilt"],"connections":[{"orbit":0,"id":11505},{"orbit":0,"id":39716}],"group":340,"orbitIndex":7,"isNotable":true,"name":"Firestarter","orbit":2},"44069":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-7,"id":29358}],"group":69,"skill":44069,"orbitIndex":4,"name":"Stun Buildup","orbit":3},"35085":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":168,"skill":35085,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"51129":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":51129,"stats":["60% increased Damage against Enemies with Fully Broken Armour"],"recipe":["Isolation","Ire","Ire"],"connections":[{"orbit":0,"id":15892},{"orbit":0,"id":48717}],"group":86,"orbitIndex":16,"isNotable":true,"name":"Pile On","orbit":7},"3245":{"stats":["4% increased Block chance","10% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":7395}],"group":38,"skill":3245,"orbitIndex":10,"name":"Thorns and Block","orbit":2},"57552":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":24871},{"orbit":0,"id":46696}],"group":226,"skill":57552,"orbitIndex":0,"name":"One Handed Damage","orbit":4},"2888":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":8827}],"group":281,"skill":2888,"orbitIndex":12,"name":"Life Leech","orbit":7},"26135":{"stats":["8% increased Spell Damage","8% increased Projectile Speed for Spell Skills"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":2335}],"group":794,"skill":26135,"orbitIndex":9,"name":"Spell Damage and Projectile Speed","orbit":3},"36629":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":36629,"stats":["+5 to any Attribute"],"isAttribute":true,"group":354,"connections":[{"orbit":0,"id":44659}],"orbitIndex":45,"name":"Attribute","orbit":5},"33037":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":47683}],"group":547,"skill":33037,"orbitIndex":2,"name":"Chaining Projectiles","orbit":3},"64192":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":53373}],"group":354,"skill":64192,"orbitIndex":12,"name":"Stun Threshold","orbit":3},"60107":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57204}],"group":619,"skill":60107,"orbitIndex":9,"name":"Critical Chance","orbit":2},"558":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":445,"skill":558,"orbitIndex":4,"name":"Fire Damage","orbit":3},"3660":{"stats":["8% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":-7,"id":25619},{"orbit":0,"id":57196}],"group":568,"skill":3660,"orbitIndex":20,"name":"Blind Chance","orbit":3},"31925":{"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":31925,"stats":["30% increased Damage per Curse on you","30% reduced effect of Curses on you","60% increased Energy Shield from Equipped Focus"],"recipe":["Fear","Suffering","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":5,"id":24767}],"group":250,"orbitIndex":8,"isNotable":true,"name":"Warding Fetish","orbit":7},"16938":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":3,"id":8789}],"group":458,"skill":16938,"orbitIndex":18,"name":"Minion Damage","orbit":7},"26490":{"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":12751}],"group":284,"skill":26490,"orbitIndex":9,"name":"One Handed Critical Chance","orbit":2},"55241":{"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":38614}],"group":687,"skill":55241,"orbitIndex":4,"name":"Additional Spell Projectiles","orbit":1},"34030":{"stats":["Offerings have 15% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":47441},{"orbit":0,"id":13634},{"orbit":0,"id":42614}],"group":544,"skill":34030,"orbitIndex":0,"name":"Offering Life","orbit":0},"38663":{"stats":["10% increased Melee Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":3516}],"group":378,"skill":38663,"orbitIndex":6,"name":"Melee Critical Chance","orbit":7},"44659":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44659,"stats":["+5 to any Attribute"],"isAttribute":true,"group":354,"connections":[],"orbitIndex":27,"name":"Attribute","orbit":5},"14355":{"stats":["12% increased Spell Area Damage","Spell Skills have 5% reduced Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":11788},{"orbit":0,"id":8483}],"group":571,"skill":14355,"orbitIndex":3,"name":"Spell Area of Effect","orbit":7},"42813":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":42813,"stats":["25% increased Skill Effect Duration"],"recipe":["Paranoia","Suffering","Fear"],"connections":[{"orbit":0,"id":55491}],"group":257,"orbitIndex":19,"isNotable":true,"name":"Tides of Change","orbit":7},"5728":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":5728,"stats":["60% increased Armour from Equipped Body Armour","60% increased Energy Shield from Equipped Body Armour"],"recipe":["Despair","Paranoia","Envy"],"connections":[{"orbit":-3,"id":17349},{"orbit":0,"id":58138}],"group":52,"orbitIndex":4,"isNotable":true,"name":"Ancient Aegis","orbit":7},"60064":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":47263},{"orbit":0,"id":3027}],"group":81,"skill":60064,"orbitIndex":10,"name":"Physical Damage","orbit":2},"39564":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":62039},{"orbit":0,"id":38663},{"orbit":0,"id":13279}],"group":377,"skill":39564,"orbitIndex":12,"name":"Melee Damage","orbit":7},"58138":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":52,"skill":58138,"orbitIndex":6,"name":"Armour and Energy Shield Mastery","orbit":1},"62039":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":49618}],"group":378,"skill":62039,"orbitIndex":18,"name":"Melee Damage","orbit":7},"52298":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52298,"stats":["+5 to any Attribute"],"isAttribute":true,"group":135,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":53719},{"orbit":0,"id":53308},{"orbit":0,"id":31805},{"orbit":0,"id":52126}],"orbitIndex":0,"name":"Attribute","orbit":0},"51797":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":23939}],"group":381,"skill":51797,"orbitIndex":8,"name":"Life Recoup","orbit":7},"44299":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":44299,"stats":["25% increased maximum Energy Shield","+1% to all Maximum Elemental Resistances"],"recipe":["Isolation","Paranoia","Isolation"],"connections":[{"orbit":0,"id":38105},{"orbit":0,"id":49455},{"orbit":0,"id":857}],"group":381,"orbitIndex":0,"isNotable":true,"name":"Enhanced Barrier","orbit":4},"61179":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":21245}],"group":301,"skill":61179,"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"56618":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds","skill":56618,"stats":["Grants Skill: Fulminating Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1048,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Fulminating Concoction","orbit":0},"3567":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":3567,"stats":["12% increased maximum Mana","10% increased Mana Cost of Skills"],"recipe":["Suffering","Ire","Isolation"],"connections":[{"orbit":0,"id":53188},{"orbit":0,"id":10159}],"group":680,"orbitIndex":16,"isNotable":true,"name":"Raw Mana","orbit":3},"54417":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54417,"stats":["+5 to any Attribute"],"isAttribute":true,"group":510,"connections":[],"orbitIndex":21,"name":"Attribute","orbit":6},"22691":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":19990}},"skill":22691,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":548,"connections":[{"orbit":-6,"id":39037},{"orbit":-9,"id":61027}],"orbitIndex":0,"name":"Energy Shield Delay","orbit":0},"48103":{"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":48103,"stats":["20% increased Stun Buildup","20% increased Knockback Distance","+10 to Strength"],"recipe":["Greed","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":52875}],"group":937,"orbitIndex":12,"isNotable":true,"name":"Forcewave","orbit":2},"22783":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[{"orbit":0,"id":18160},{"orbit":0,"id":17501}],"group":419,"skill":22783,"orbitIndex":10,"name":"Minion Damage","orbit":7},"28432":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":20416},{"orbit":0,"id":23062}],"group":383,"skill":28432,"orbitIndex":4,"name":"Armour if Consumed Endurance Charge","orbit":2},"33604":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":385,"skill":33604,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"1826":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1826,"stats":["+5 to any Attribute"],"isAttribute":true,"group":579,"connections":[{"orbit":0,"id":39037}],"orbitIndex":0,"name":"Attribute","orbit":0},"50277":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":50701}],"group":930,"skill":50277,"orbitIndex":0,"name":"Shock Effect","orbit":0},"8493":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8493,"stats":["+5 to any Attribute"],"isAttribute":true,"group":388,"connections":[{"orbit":0,"id":64471}],"orbitIndex":0,"name":"Attribute","orbit":0},"11329":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":54676}],"group":337,"skill":11329,"orbitIndex":18,"name":"Life Regeneration","orbit":2},"17118":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17118,"stats":["+5 to any Attribute"],"isAttribute":true,"group":691,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":20049}],"orbitIndex":0,"name":"Attribute","orbit":0},"48429":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":58714},{"orbit":0,"id":36169}],"group":469,"skill":48429,"orbitIndex":20,"name":"Grenade Cooldown Recovery Rate","orbit":3},"36044":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":36044,"stats":[],"group":104,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":23307},{"orbit":0,"id":45327}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"61119":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":64325},{"orbit":0,"id":63431}],"group":958,"skill":61119,"orbitIndex":18,"name":"Poison Duration","orbit":2},"52454":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":46604}],"group":393,"skill":52454,"orbitIndex":21,"name":"Chaos Damage","orbit":3},"56342":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":7341}],"group":194,"skill":56342,"orbitIndex":0,"name":"Rage when Hit","orbit":0},"48305":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48305,"stats":["+5 to any Attribute"],"isAttribute":true,"group":347,"connections":[{"orbit":6,"id":37629}],"orbitIndex":0,"name":"Attribute","orbit":0},"64327":{"icon":"Art/2DArt/SkillIcons/passives/steelspan.dds","skill":64327,"stats":["12% increased Block chance","Stagger empties 50% faster while your Shield is lowered"],"recipe":["Guilt","Paranoia","Greed"],"connections":[{"orbit":0,"id":39517},{"orbit":0,"id":49391}],"group":354,"orbitIndex":21,"isNotable":true,"name":"Defender's Resolve","orbit":3},"28976":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":23374},{"orbit":0,"id":29458}],"group":999,"skill":28976,"orbitIndex":0,"name":"Poison Duration","orbit":0},"41029":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41029,"stats":["+5 to any Attribute"],"isAttribute":true,"group":715,"connections":[{"orbit":0,"id":24321},{"orbit":0,"id":25827},{"orbit":-4,"id":44563}],"orbitIndex":0,"name":"Attribute","orbit":0},"4776":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":14363}],"group":464,"skill":4776,"orbitIndex":2,"name":"Lightning Penetration","orbit":2},"38876":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38876,"stats":["+5 to any Attribute"],"isAttribute":true,"group":260,"connections":[{"orbit":0,"id":61490},{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Attribute","orbit":0},"46358":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46358,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[{"orbit":0,"id":50423},{"orbit":0,"id":59376}],"orbitIndex":66,"name":"Attribute","orbit":6},"13241":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13241,"stats":["+5 to any Attribute"],"isAttribute":true,"group":404,"connections":[{"orbit":0,"id":51921},{"orbit":0,"id":55746}],"orbitIndex":48,"name":"Attribute","orbit":6},"2244":{"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":251,"skill":2244,"orbitIndex":9,"name":"Arcane Surge on Critical Hit","orbit":4},"43557":{"stats":["Minions have 15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":485,"skill":43557,"orbitIndex":18,"name":"Minion Critical Damage","orbit":3},"36808":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":36808,"stats":["50% increased Defences from Equipped Shield","1% increased Attack Damage per 75 Armour or Evasion Rating on Shield"],"recipe":["Fear","Suffering","Fear"],"connections":[{"orbit":3,"id":34076},{"orbit":0,"id":37795}],"group":790,"orbitIndex":16,"isNotable":true,"name":"Spiked Shield","orbit":2},"10731":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds","skill":10731,"stats":["Every 12 seconds, gain 50% more Cast Speed for 4 seconds"],"ascendancyName":"Chronomancer","connections":[],"group":181,"orbitIndex":0,"isNotable":true,"name":"Quicksand Hourglass","orbit":0},"27581":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":50510}],"group":52,"skill":27581,"orbitIndex":12,"name":"Shield Block","orbit":4},"62498":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":62498,"stats":["+5 to any Attribute"],"isAttribute":true,"group":154,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":51561},{"orbit":0,"id":21390}],"orbitIndex":0,"name":"Attribute","orbit":0},"63894":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":63894,"stats":["12% increased Spell Damage"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-4,"id":61267}],"orbitIndex":64,"name":"Spell Damage","orbit":6},"43139":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":43139,"stats":["15% increased Damage for each type of Elemental Ailment on Enemy"],"recipe":["Isolation","Despair","Guilt"],"connections":[{"orbit":0,"id":38068}],"group":466,"orbitIndex":0,"isNotable":true,"name":"Stormbreaker","orbit":4},"25412":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":285,"skill":25412,"orbitIndex":0,"name":"Link Mastery","orbit":0},"2508":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":47168},{"orbit":0,"id":59425}],"group":381,"skill":2508,"orbitIndex":18,"name":"Life Recoup","orbit":7},"58930":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":7,"id":14934}],"group":393,"skill":58930,"orbitIndex":9,"name":"Cast Speed","orbit":7},"34927":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":445,"skill":34927,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"31373":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":31373,"stats":["Warcries Empower an additional Attack"],"recipe":["Isolation","Isolation","Despair"],"connections":[{"orbit":0,"id":50561},{"orbit":0,"id":47173}],"group":90,"orbitIndex":63,"isNotable":true,"name":"Vocal Empowerment","orbit":4},"44902":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":511}],"group":114,"skill":44902,"orbitIndex":0,"name":"Attack and Spell Damage","orbit":7},"13387":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":411,"skill":13387,"orbitIndex":0,"name":"Elemental Mastery","orbit":5},"58183":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":58183,"stats":["15% increased Magnitude of Bleeding you inflict","25% increased Physical Damage"],"recipe":["Despair","Isolation","Greed"],"connections":[{"orbit":0,"id":60241},{"orbit":0,"id":21245},{"orbit":0,"id":32278}],"group":297,"orbitIndex":11,"isNotable":true,"name":"Blood Tearing","orbit":2},"4":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":11578}],"group":703,"skill":4,"orbitIndex":0,"name":"Shock Chance","orbit":0},"42825":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":31238}],"group":289,"skill":42825,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"34531":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":34531,"stats":["20% increased Stun Recovery","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Despair","Disgust","Disgust"],"connections":[],"group":412,"orbitIndex":4,"isNotable":true,"name":"Hallowed","orbit":7},"38856":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38856,"stats":["+5 to any Attribute"],"isAttribute":true,"group":398,"connections":[{"orbit":0,"id":49357},{"orbit":0,"id":2071},{"orbit":5,"id":21081}],"orbitIndex":54,"name":"Attribute","orbit":6},"48833":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":4}],"group":702,"skill":48833,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"36994":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":27491}],"group":412,"skill":36994,"orbitIndex":12,"name":"Energy Shield","orbit":4},"57088":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-5,"id":54557}],"group":860,"skill":57088,"orbitIndex":20,"name":"Cold Penetration","orbit":2},"58789":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":13307}],"group":381,"skill":58789,"orbitIndex":20,"name":"Stun Threshold from Energy Shield","orbit":4},"34290":{"stats":["10% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":57832}],"group":445,"skill":34290,"orbitIndex":4,"name":"Ignite Effect","orbit":2},"43164":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":5710}],"group":394,"skill":43164,"orbitIndex":20,"name":"Melee Damage","orbit":7},"26945":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":419,"skill":26945,"orbitIndex":17,"name":"Minion Critical Chance","orbit":2},"30720":{"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":30720,"stats":["Minions have +13% to Chaos Resistance","Minions gain 8% of Physical Damage as Chaos Damage"],"recipe":["Suffering","Suffering","Envy"],"connections":[{"orbit":0,"id":20119}],"group":419,"orbitIndex":2,"isNotable":true,"name":"Entropic Incarnation","orbit":2},"45992":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":41657}],"group":273,"skill":45992,"orbitIndex":12,"name":"Armour","orbit":3},"32597":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":12777}],"group":420,"skill":32597,"orbitIndex":3,"name":"Armour and Energy Shield","orbit":2},"29240":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29240,"stats":["+5 to any Attribute"],"isAttribute":true,"group":705,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":10881},{"orbit":0,"id":31977},{"orbit":0,"id":57513}],"orbitIndex":0,"name":"Attribute","orbit":0},"57021":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8957},{"orbit":0,"id":45343},{"orbit":0,"id":14505}],"group":282,"skill":57021,"orbitIndex":16,"name":"Minion Area","orbit":3},"52429":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":7,"id":58930}],"group":393,"skill":52429,"orbitIndex":13,"name":"Cast Speed","orbit":3},"54447":{"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","classesStart":["Witch","Sorceress"],"skill":54447,"stats":[],"group":506,"connections":[{"orbit":0,"id":23710},{"orbit":0,"id":59822},{"orbit":0,"id":32699},{"orbit":0,"id":40721},{"orbit":0,"id":22147},{"orbit":0,"id":8305},{"orbit":0,"id":4739}],"orbitIndex":0,"name":"WITCH","orbit":0},"3051":{"stats":["Offerings have 30% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":456,"skill":3051,"orbitIndex":18,"name":"Offering Life","orbit":7},"37258":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37258,"stats":["+5 to any Attribute"],"isAttribute":true,"group":252,"connections":[{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Attribute","orbit":0},"27687":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":27687,"stats":["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield"],"recipe":["Suffering","Fear","Disgust"],"connections":[{"orbit":-6,"id":10508}],"group":80,"orbitIndex":18,"isNotable":true,"name":"Greatest Defence","orbit":3},"34419":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds","skill":34419,"stats":["Become Ignited when you deal a Critical Hit, taking 15% of your Life and Energy Shield as Fire Damage per second","30% more Critical Damage Bonus"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":12,"isNotable":true,"name":"Grinning Immolation","orbit":9},"33240":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":33240,"stats":["Minions have 12% reduced Reservation"],"recipe":["Isolation","Isolation","Ire"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":71,"isNotable":true,"name":"Lord of Horrors","orbit":5},"24748":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":4716}],"group":423,"skill":24748,"orbitIndex":15,"name":"Evasion","orbit":3},"28458":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":38972}],"group":278,"skill":28458,"orbitIndex":10,"name":"Minion Damage","orbit":3},"47173":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":90,"skill":47173,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"17646":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds","skill":17646,"stats":["Decimating Strike"],"ascendancyName":"Witchhunter","connections":[],"group":132,"orbitIndex":0,"isNotable":true,"name":"Judge, Jury, and Executioner","orbit":0},"46644":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds","skill":46644,"stats":["Reserves 25% of Life","+1 to Maximum Spirit per 25 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":48,"isNotable":true,"name":"Beidat's Will","orbit":8},"18822":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":-3,"id":21567},{"orbit":3,"id":47790}],"group":71,"skill":18822,"orbitIndex":0,"name":"Shapeshifting","orbit":1},"14342":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":49256}],"group":52,"skill":14342,"orbitIndex":16,"name":"Armour and Energy Shield","orbit":7},"31189":{"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":31189,"stats":["10% increased Attack Damage","Gain Accuracy Rating equal to your Strength"],"recipe":["Despair","Greed","Isolation"],"connections":[{"orbit":0,"id":28863}],"group":553,"orbitIndex":12,"isNotable":true,"name":"Unexpected Finesse","orbit":4},"45327":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":10251}],"group":125,"skill":45327,"orbitIndex":14,"name":"Stun Buildup","orbit":7},"34233":{"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":34233,"stats":["5% increased Skill Speed","15% increased Mana Regeneration Rate"],"recipe":["Despair","Guilt","Envy"],"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":32545}],"group":671,"orbitIndex":22,"isNotable":true,"name":"Flow State","orbit":2},"9737":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":36522},{"orbit":4,"id":24813},{"orbit":0,"id":59480}],"group":430,"skill":9737,"orbitIndex":51,"name":"Attack Area","orbit":4},"7972":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":25229},{"orbit":0,"id":5663}],"group":153,"skill":7972,"orbitIndex":4,"name":"Endurance Charge Duration","orbit":2},"12276":{"stats":["8% chance to Aftershock for Slam Skills you use with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":13980}],"group":56,"skill":12276,"orbitIndex":39,"name":"Mace Aftershock Chance","orbit":4},"13828":{"stats":["+16 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":1140}],"group":604,"skill":13828,"orbitIndex":63,"name":"Evasion","orbit":4},"50216":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":44951},{"orbit":4,"id":17655}],"group":373,"skill":50216,"orbitIndex":18,"name":"Mana Regeneration","orbit":2},"51934":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":51934,"stats":["Recover 3% of Mana when you Invoke a Spell","Triggered Spells deal 45% increased Spell Damage"],"recipe":["Isolation","Envy","Paranoia"],"connections":[],"group":855,"orbitIndex":0,"isNotable":true,"name":"Invocated Efficiency","orbit":0},"21245":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[],"group":309,"skill":21245,"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"60515":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":-4,"id":19955}],"group":497,"skill":60515,"orbitIndex":4,"name":"Cold Damage","orbit":3},"14945":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":14945,"stats":["Minions have 20% increased Area of Effect","Minions have 20% increased Cooldown Recovery Rate"],"recipe":["Guilt","Paranoia","Fear"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":1447}],"group":278,"orbitIndex":16,"isNotable":true,"name":"Growing Swarm","orbit":3},"38779":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":44605},{"orbit":0,"id":44836}],"group":514,"skill":38779,"orbitIndex":8,"name":"Armour and Evasion","orbit":2},"34621":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":38541}],"group":808,"skill":34621,"orbitIndex":0,"name":"Critical Damage","orbit":0},"9941":{"stats":["8% increased Accuracy Rating with One Handed Melee Weapons","8% increased Accuracy Rating with Two Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":38888}],"group":593,"skill":9941,"orbitIndex":15,"name":"Melee Damage","orbit":7},"10079":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":536,"skill":10079,"orbitIndex":16,"name":"Energy Shield Recharge","orbit":2},"18472":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":0,"id":46533}],"group":878,"skill":18472,"orbitIndex":12,"name":"Stun and Freeze Buildup","orbit":2},"26291":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":26291,"stats":["25% increased Lightning Damage","15% increased Shock Duration"],"recipe":["Envy","Greed","Paranoia"],"connections":[],"group":146,"orbitIndex":28,"isNotable":true,"name":"Electrifying Nature","orbit":4},"6514":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":6514,"stats":["40% increased Damage with Warcries","Warcry Skills have 25% increased Area of Effect"],"recipe":["Isolation","Guilt","Fear"],"connections":[{"orbit":0,"id":47173}],"group":90,"orbitIndex":5,"isNotable":true,"name":"Cacophony","orbit":4},"39570":{"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":6,"id":49394}],"group":776,"skill":39570,"orbitIndex":59,"name":"Bleeding Chance on Critical","orbit":4},"65016":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":65016,"stats":["35% increased Damage with Hits against Burning Enemies"],"recipe":["Guilt","Suffering","Fear"],"connections":[{"orbit":0,"id":11505}],"group":340,"orbitIndex":17,"isNotable":true,"name":"Intense Flames","orbit":3},"35324":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":35324,"stats":["Ignites you inflict deal Damage 15% faster"],"recipe":["Isolation","Greed","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":4,"id":34290}],"group":445,"orbitIndex":0,"isNotable":true,"name":"Burnout","orbit":3},"26324":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":46023}],"group":272,"skill":26324,"orbitIndex":0,"name":"Armour","orbit":3},"54975":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":7526}],"group":837,"skill":54975,"orbitIndex":66,"name":"Slow Effect","orbit":5},"48618":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":37327}],"group":319,"skill":48618,"orbitIndex":12,"name":"Mana Regeneration","orbit":3},"3823":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","options":{"Witch":{"stats":["Minions deal 15% increased Damage","Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Power of the Dead","id":17324}},"skill":3823,"stats":["18% increased Cold Damage","30% increased Freeze Buildup"],"recipe":["Suffering","Envy","Despair"],"isSwitchable":true,"connections":[{"orbit":0,"id":60230},{"orbit":0,"id":5726}],"group":475,"orbitIndex":0,"isNotable":true,"name":"Path of Winter","orbit":1},"48568":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48568,"stats":["+5 to any Attribute"],"isAttribute":true,"group":633,"connections":[{"orbit":0,"id":16489}],"orbitIndex":0,"name":"Attribute","orbit":0},"62216":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":26070},{"orbit":-3,"id":38130}],"group":187,"skill":62216,"orbitIndex":8,"name":"Empowered Attack Damage","orbit":2},"60313":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":448,"skill":60313,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"65322":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54818},{"orbit":0,"id":13425},{"orbit":0,"id":47709},{"orbit":0,"id":58718}],"group":450,"skill":65322,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"43014":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":34308}],"group":234,"skill":43014,"orbitIndex":19,"name":"Melee Damage","orbit":2},"16256":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":16256,"stats":["25% reduced Mana Regeneration Rate while stationary","50% increased Mana Regeneration Rate while moving"],"recipe":["Envy","Greed","Envy"],"connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":8,"isNotable":true,"name":"Ether Flow","orbit":3},"27009":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":27009,"stats":["40% increased Minion Damage while you have at least two different active Offerings"],"recipe":["Disgust","Suffering","Paranoia"],"connections":[{"orbit":0,"id":30459}],"group":456,"orbitIndex":12,"isNotable":true,"name":"Lust for Sacrifice","orbit":7},"5961":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":54675},{"orbit":0,"id":11315}],"group":637,"skill":5961,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"30459":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":456,"skill":30459,"orbitIndex":6,"name":"Minion Offence Mastery","orbit":1},"59061":{"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":28267}],"group":164,"skill":59061,"orbitIndex":0,"name":"Critical Damage","orbit":0},"23650":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":43895}],"group":360,"skill":23650,"orbitIndex":12,"name":"Life Regeneration on Low Life","orbit":2},"1442":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":1442,"stats":["3% increased Attributes"],"ascendancyName":"Gemling Legionnaire","group":311,"connections":[{"orbit":0,"id":53108}],"orbitIndex":0,"name":"Attributes","orbit":0},"25300":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":61796}],"group":120,"skill":25300,"orbitIndex":0,"name":"Armour Break","orbit":0},"7344":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":7344,"stats":["Recover 3% of Life on Kill"],"recipe":["Greed","Greed","Greed"],"connections":[{"orbit":0,"id":58182},{"orbit":0,"id":26931}],"group":681,"orbitIndex":4,"isNotable":true,"name":"Life from Death","orbit":3},"3443":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-4,"id":14548},{"orbit":-3,"id":63545},{"orbit":7,"id":55180}],"group":609,"skill":3443,"orbitIndex":12,"name":"Minion Damage","orbit":7},"24655":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":24655,"stats":["Damage Penetrates 15% Fire Resistance","+10 to Strength"],"recipe":["Fear","Ire","Isolation"],"connections":[],"group":464,"orbitIndex":30,"isNotable":true,"name":"Breath of Fire","orbit":4},"39710":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39710,"stats":["+5 to any Attribute"],"isAttribute":true,"group":142,"connections":[{"orbit":0,"id":51821}],"orbitIndex":0,"name":"Attribute","orbit":0},"4140":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4140,"stats":["+5 to any Attribute"],"isAttribute":true,"group":105,"connections":[{"orbit":0,"id":59093}],"orbitIndex":0,"name":"Attribute","orbit":0},"15969":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":41129},{"orbit":0,"id":59376}],"group":411,"skill":15969,"orbitIndex":0,"name":"Damage against Ailments","orbit":3},"32071":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":32071,"stats":["20% increased Area of Effect if you've Killed Recently","10% increased Area of Effect for Attacks"],"recipe":["Envy","Fear","Fear"],"connections":[{"orbit":0,"id":15427},{"orbit":0,"id":49111}],"group":37,"orbitIndex":23,"isNotable":true,"name":"Primal Growth","orbit":3},"62439":{"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":62439,"stats":["+10 to Maximum Rage while wielding an Axe"],"recipe":["Isolation","Isolation","Fear"],"connections":[{"orbit":0,"id":24224},{"orbit":0,"id":52300}],"group":78,"orbitIndex":11,"isNotable":true,"name":"Enraged Reaver","orbit":3},"6544":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":6544,"stats":["Gain 12% of Physical Damage as Extra Fire Damage"],"recipe":["Envy","Disgust","Isolation"],"connections":[{"orbit":6,"id":56061},{"orbit":0,"id":42604}],"group":243,"orbitIndex":53,"isNotable":true,"name":"Burning Strikes","orbit":4},"57880":{"stats":["12% increased Damage with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":27082},{"orbit":0,"id":6269}],"group":78,"skill":57880,"orbitIndex":3,"name":"Axe Damage","orbit":3},"51795":{"stats":["12% increased chance to Ignite","6% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":32271},{"orbit":7,"id":53632}],"group":196,"skill":51795,"orbitIndex":12,"name":"Ignite and Critical Chance","orbit":7},"35739":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":35739,"stats":["25% increased Armour Break Duration","25% increased Attack Area Damage"],"recipe":["Greed","Isolation","Ire"],"connections":[{"orbit":3,"id":42410},{"orbit":0,"id":8556}],"group":429,"orbitIndex":0,"isNotable":true,"name":"Crushing Judgement","orbit":0},"13673":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":13673,"stats":["25% increased Chill Duration on Enemies"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":-8,"id":61985}],"orbitIndex":1,"name":"Chill Duration","orbit":8},"22626":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":22626,"stats":["100% increased Armour Break Duration"],"recipe":["Guilt","Despair","Disgust"],"connections":[{"orbit":0,"id":45227},{"orbit":0,"id":48717}],"group":97,"orbitIndex":4,"isNotable":true,"name":"Irreparable","orbit":7},"14340":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14340,"stats":["+5 to any Attribute"],"isAttribute":true,"group":601,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":26319}],"orbitIndex":0,"name":"Attribute","orbit":0},"56360":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":24812}],"group":718,"skill":56360,"orbitIndex":19,"name":"Power Charge Duration","orbit":2},"55429":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":60505}],"group":690,"skill":55429,"orbitIndex":7,"name":"Projectile Damage","orbit":7},"11826":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":11826,"stats":["8% reduced Attack Speed","40% increased Projectile Damage","40% increased Projectile Stun Buildup"],"recipe":["Guilt","Greed","Greed"],"connections":[{"orbit":0,"id":17726}],"group":621,"orbitIndex":8,"isNotable":true,"name":"Heavy Ammunition","orbit":7},"56595":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":254,"skill":56595,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"64046":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","options":{"Witch":{"stats":["18% increased Chaos Damage","15% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Entropy","id":10941}},"skill":64046,"stats":["18% increased Lightning Damage","30% increased chance to Shock"],"recipe":["Fear","Fear","Ire"],"isSwitchable":true,"connections":[{"orbit":6,"id":45522},{"orbit":-6,"id":60230},{"orbit":0,"id":5726}],"group":475,"orbitIndex":3,"isNotable":true,"name":"Path of Storms","orbit":7},"38578":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds","skill":38578,"stats":["Elemental Storm has 150% more Cooldown Recovery Rate"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":24,"isNotable":true,"name":"Rain Dancer","orbit":8},"5544":{"stats":["25% increased Thorns Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":3,"id":43711}],"group":171,"skill":5544,"orbitIndex":10,"name":"Thorn Critical Damage","orbit":2},"51737":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":51737,"stats":["4 Passive Skill Points become Weapon Set Skill Points"],"ascendancyName":"Witchhunter","group":121,"connections":[{"orbit":-6,"id":8272}],"orbitIndex":0,"name":"Specialisation Points","orbit":0},"18240":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":193,"skill":18240,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"17340":{"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":17340,"stats":["4% increased Movement Speed if you've Killed Recently","8% increased Attack Speed if you've Killed Recently"],"recipe":["Disgust","Ire","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":-4,"id":62051}],"group":531,"orbitIndex":9,"isNotable":true,"name":"Adrenaline Rush","orbit":4},"10271":{"stats":["25% increased Attack Damage while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":58038}],"group":480,"skill":10271,"orbitIndex":7,"name":"Attack Damage while Surrounded","orbit":3},"4017":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":10079}],"group":536,"skill":4017,"orbitIndex":12,"name":"Energy Shield Recharge","orbit":2},"13708":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":13708,"stats":["15% increased Accuracy Rating","+10 to Dexterity"],"recipe":["Greed","Fear","Greed"],"connections":[],"group":481,"orbitIndex":40,"isNotable":true,"name":"Curved Weapon","orbit":4},"62034":{"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","skill":62034,"stats":["+1% to all Maximum Elemental Resistances","+5% to all Elemental Resistances"],"recipe":["Isolation","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":67,"orbitIndex":0,"isNotable":true,"name":"Prism Guard","orbit":0},"17150":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":17150,"stats":["Gain 8% of Evasion Rating as extra Armour"],"recipe":["Paranoia","Fear","Envy"],"connections":[{"orbit":7,"id":53647},{"orbit":0,"id":19750}],"group":444,"orbitIndex":8,"isNotable":true,"name":"General's Bindings","orbit":3},"20718":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":30979}],"group":363,"skill":20718,"orbitIndex":10,"name":"Duration","orbit":7},"29930":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":3,"id":16938}],"group":458,"skill":29930,"orbitIndex":0,"name":"Minion Damage","orbit":2},"25374":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":25374,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":6,"id":45969}],"orbitIndex":42,"name":"Attribute","orbit":6},"20024":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":44223}],"group":610,"skill":20024,"orbitIndex":22,"name":"Critical Damage","orbit":7},"53719":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53719,"stats":["+5 to any Attribute"],"isAttribute":true,"group":155,"connections":[{"orbit":0,"id":57703}],"orbitIndex":0,"name":"Attribute","orbit":0},"64399":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":2511}],"group":307,"skill":64399,"orbitIndex":7,"name":"Attack Critical Damage","orbit":1},"50558":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":55194},{"orbit":0,"id":32194},{"orbit":0,"id":12462}],"group":342,"skill":50558,"orbitIndex":60,"name":"Aura Effect","orbit":4},"43128":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":43128,"stats":["4% increased Cast Speed"],"ascendancyName":"Chronomancer","group":202,"connections":[{"orbit":4,"id":10731}],"orbitIndex":60,"name":"Cast Speed","orbit":4},"42410":{"stats":["Break 10% increased Armour","8% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":9737}],"group":430,"skill":42410,"orbitIndex":20,"name":"Area Damage and Armour Break","orbit":7},"11764":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":38878}],"group":837,"skill":11764,"orbitIndex":11,"name":"Debuff Expiry","orbit":7},"61976":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61976,"stats":["+5 to any Attribute"],"isAttribute":true,"group":783,"connections":[{"orbit":0,"id":7526},{"orbit":4,"id":36298}],"orbitIndex":0,"name":"Attribute","orbit":0},"1913":{"stats":["+20 to Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":38646},{"orbit":0,"id":36709}],"group":408,"skill":1913,"orbitIndex":3,"name":"Armour","orbit":7},"41031":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41031,"stats":["+5 to any Attribute"],"isAttribute":true,"group":408,"connections":[{"orbit":0,"id":54232}],"orbitIndex":27,"name":"Attribute","orbit":4},"7793":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":7793,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":6,"id":18348}],"orbitIndex":130,"name":"Life","orbit":9},"11066":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":2,"id":26663}],"group":545,"skill":11066,"orbitIndex":19,"name":"Cooldown Recovery Rate","orbit":7},"53785":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":1170},{"orbit":0,"id":23307}],"group":159,"skill":53785,"orbitIndex":18,"name":"Attack Area","orbit":3},"57805":{"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":57805,"stats":["20% increased Knockback Distance","20% chance to Knock Enemies Back with Hits at Close Range"],"recipe":["Paranoia","Guilt","Guilt"],"connections":[{"orbit":4,"id":43444}],"group":517,"orbitIndex":18,"isNotable":true,"name":"Clear Space","orbit":4},"51210":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":115,"skill":51210,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"59589":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":59589,"stats":["100% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"],"recipe":["Despair","Fear","Greed"],"connections":[{"orbit":0,"id":52659}],"group":76,"orbitIndex":23,"isNotable":true,"name":"Heavy Armour","orbit":3},"55104":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-7,"id":33254},{"orbit":7,"id":19125}],"group":555,"skill":55104,"orbitIndex":14,"name":"Spell Damage","orbit":7},"12882":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds","skill":12882,"stats":["Trigger Elemental Storm on Critical Hit with Spells","Grants Skill: Elemental Storm"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":25618}],"group":308,"orbitIndex":12,"isNotable":true,"name":"Tempest Caller","orbit":8},"62628":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":620,"skill":62628,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"51206":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":49642}],"group":314,"skill":51206,"orbitIndex":17,"name":"Totem Damage","orbit":3},"52199":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":52199,"stats":["30% increased Cold Exposure Effect","30% increased Fire Exposure Effect","30% increased Lightning Exposure Effect"],"recipe":["Suffering","Isolation","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":44498}],"group":466,"orbitIndex":0,"isNotable":true,"name":"Overexposure","orbit":0},"8406":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8406,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":-4,"id":48305}],"orbitIndex":21,"name":"Attribute","orbit":3},"28446":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":12430},{"orbit":0,"id":50084}],"group":406,"skill":28446,"orbitIndex":9,"name":"Attack Area","orbit":2},"17924":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-7,"id":51867}],"group":232,"skill":17924,"orbitIndex":20,"name":"Damage against Enemies on Low Life","orbit":3},"12851":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32507},{"orbit":0,"id":32727}],"group":426,"skill":12851,"orbitIndex":3,"name":"Physical Damage","orbit":7},"45916":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-4,"id":27501},{"orbit":4,"id":19330}],"group":435,"skill":45916,"orbitIndex":48,"name":"Life Regeneration","orbit":5},"47270":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":47270,"stats":["40% increased Freeze Buildup","20% increased Freeze Duration on Enemies"],"recipe":["Ire","Paranoia","Isolation"],"connections":[],"group":497,"orbitIndex":66,"isNotable":true,"name":"Inescapable Cold","orbit":4},"30990":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":58939}],"group":602,"skill":30990,"orbitIndex":16,"name":"Critical Chance","orbit":2},"65193":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":65193,"stats":["8% increased Melee Attack Speed","+10 to Dexterity"],"recipe":["Disgust","Greed","Paranoia"],"connections":[{"orbit":0,"id":48714},{"orbit":0,"id":10245}],"group":234,"orbitIndex":10,"isNotable":true,"name":"Viciousness","orbit":3},"44455":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":41669},{"orbit":0,"id":60515}],"group":497,"skill":44455,"orbitIndex":0,"name":"Cold Damage","orbit":0},"62914":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":5,"id":47270},{"orbit":0,"id":44455}],"group":497,"skill":62914,"orbitIndex":20,"name":"Cold Damage","orbit":3},"7424":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":36994},{"orbit":-4,"id":33631},{"orbit":0,"id":1823}],"group":412,"skill":7424,"orbitIndex":0,"name":"Energy Shield","orbit":4},"24647":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24647,"stats":["+5 to any Attribute"],"isAttribute":true,"group":748,"connections":[{"orbit":4,"id":5702},{"orbit":0,"id":43691},{"orbit":4,"id":30634}],"orbitIndex":42,"name":"Attribute","orbit":6},"59777":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59777,"stats":["+5 to any Attribute"],"isAttribute":true,"group":68,"connections":[{"orbit":0,"id":10362},{"orbit":0,"id":17791},{"orbit":0,"id":13937},{"orbit":0,"id":26725}],"orbitIndex":0,"name":"Attribute","orbit":0},"26092":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":52392}],"group":229,"skill":26092,"orbitIndex":14,"name":"Two Handed Damage","orbit":3},"13937":{"stats":["14% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":17791}],"group":56,"skill":13937,"orbitIndex":7,"name":"Mace Damage","orbit":7},"48290":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"orbit":0,"id":55180},{"orbit":0,"id":49088}],"group":609,"skill":48290,"orbitIndex":15,"name":"Minion Defence Mastery","orbit":2},"54701":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":2,"id":21089},{"orbit":-7,"id":1286}],"group":133,"skill":54701,"orbitIndex":14,"name":"Thorns","orbit":7},"27422":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":2021}],"group":972,"skill":27422,"orbitIndex":0,"name":"Mana Flask Recovery","orbit":0},"6935":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds","skill":6935,"stats":["50% increased effect of Sorcery Ward","Sorcery Ward recovers 50% faster"],"ascendancyName":"Witchhunter","connections":[],"group":165,"orbitIndex":0,"isNotable":true,"name":"Ceremonial Ablution","orbit":0},"26786":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26786,"stats":["+5 to any Attribute"],"isAttribute":true,"group":649,"connections":[{"orbit":0,"id":64352},{"orbit":0,"id":48568}],"orbitIndex":0,"name":"Attribute","orbit":0},"9825":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-4,"id":934},{"orbit":9,"id":21755}],"group":489,"skill":9825,"orbitIndex":0,"name":"Ailment Threshold","orbit":3},"31345":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":55400}],"group":843,"skill":31345,"orbitIndex":19,"name":"Lightning Penetration","orbit":2},"46300":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":63021},{"orbit":0,"id":52774}],"group":445,"skill":46300,"orbitIndex":14,"name":"Ignite Chance","orbit":2},"25935":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":25935,"stats":["6% increased Block chance"],"ascendancyName":"Warbringer","group":14,"connections":[{"orbit":0,"id":23005}],"orbitIndex":0,"name":"Block Chance","orbit":0},"33366":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":10944}],"group":838,"skill":33366,"orbitIndex":14,"name":"Evasion and Energy Shield","orbit":7},"857":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":381,"skill":857,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"4627":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":4627,"stats":["20% increased Freeze Buildup","Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"],"recipe":["Greed","Isolation","Despair"],"connections":[{"orbit":0,"id":44179},{"orbit":0,"id":55572}],"group":542,"orbitIndex":0,"isNotable":true,"name":"Climate Change","orbit":7},"34483":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":34483,"stats":[],"group":919,"connections":[{"orbit":6,"id":41877},{"orbit":0,"id":45304},{"orbit":0,"id":49996},{"orbit":0,"id":31286}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"4083":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":33815},{"orbit":0,"id":43677}],"group":769,"skill":4083,"orbitIndex":11,"name":"Poison Damage","orbit":2},"17380":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":0,"id":41972},{"orbit":0,"id":23427},{"orbit":0,"id":47270},{"orbit":0,"id":19955}],"group":497,"skill":17380,"orbitIndex":6,"name":"Cold Mastery","orbit":1},"13425":{"stats":["10% increased Bleeding Duration"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":315}],"group":460,"skill":13425,"orbitIndex":0,"name":"Bleeding Duration","orbit":0},"61042":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61042,"stats":["+5 to any Attribute"],"isAttribute":true,"group":395,"connections":[{"orbit":0,"id":44344}],"orbitIndex":0,"name":"Attribute","orbit":0},"24039":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds","skill":24039,"stats":["Reserves 25% of Life","+1 to Maximum Energy Shield per 8 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":51,"isNotable":true,"name":"Beidat's Hand","orbit":5},"21879":{"stats":["Link Skills have 8% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":7,"id":9343}],"group":285,"skill":21879,"orbitIndex":1,"name":"Link Cast Speed","orbit":2},"47175":{"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","classesStart":["Marauder","Warrior"],"skill":47175,"stats":[],"group":452,"connections":[{"orbit":0,"id":16732},{"orbit":0,"id":51916},{"orbit":0,"id":54579},{"orbit":0,"id":5852},{"orbit":0,"id":33812},{"orbit":0,"id":32534},{"orbit":0,"id":3936},{"orbit":0,"id":38646}],"orbitIndex":0,"name":"MARAUDER","orbit":0},"11578":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":11578,"stats":["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"],"recipe":["Guilt","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":714,"orbitIndex":0,"isNotable":true,"name":"Spreading Shocks","orbit":0},"16538":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":44330}],"group":528,"skill":16538,"orbitIndex":2,"name":"One Handed Damage","orbit":2},"375":{"stats":["15% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":12276}],"group":56,"skill":375,"orbitIndex":17,"name":"Mace Damage","orbit":7},"2606":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":47284},{"orbit":0,"id":20388},{"orbit":0,"id":15194},{"orbit":0,"id":3414}],"group":367,"skill":2606,"orbitIndex":6,"name":"Minion Life","orbit":1},"31419":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":35787},{"orbit":4,"id":53405}],"group":257,"skill":31419,"orbitIndex":9,"name":"Increased Duration","orbit":7},"24120":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":24120,"stats":["18% increased Mana Regeneration Rate","15% reduced Mana Cost while not on Low Mana"],"recipe":["Envy","Fear","Greed"],"connections":[{"orbit":0,"id":10495}],"group":892,"orbitIndex":0,"isNotable":true,"name":"Mental Toughness","orbit":0},"29695":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","id":31204}},"skill":29695,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":533,"connections":[],"orbitIndex":7,"name":"Energy Shield Delay","orbit":2},"41154":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-2,"id":33601}],"group":119,"skill":41154,"orbitIndex":18,"name":"Chill Effect","orbit":2},"33242":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":15838}],"group":411,"skill":33242,"orbitIndex":2,"name":"Ailment Chance","orbit":5},"22045":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":13505}],"group":369,"skill":22045,"orbitIndex":4,"name":"Life Regeneration","orbit":7},"34747":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6274}],"group":358,"skill":34747,"orbitIndex":23,"name":"Accuracy","orbit":7},"15628":{"stats":["15% increased effect of Arcane Surge on you"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":36880}],"group":251,"skill":15628,"orbitIndex":17,"name":"Arcane Surge Effect","orbit":5},"48121":{"stats":["Totems gain +12% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-5,"id":24438}],"group":267,"skill":48121,"orbitIndex":0,"name":"Totem Elemental Resistance","orbit":0},"17973":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 15% increased maximum Life","Minions Revive 15% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Living Death","id":48926}},"skill":17973,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"recipe":["Guilt","Ire","Disgust"],"isSwitchable":true,"connections":[{"orbit":4,"id":4748},{"orbit":-6,"id":22691}],"group":539,"orbitIndex":3,"isNotable":true,"name":"Rapid Recharge","orbit":7},"65204":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":65204,"stats":["+2 to Maximum Power Charges"],"recipe":["Isolation","Envy","Greed"],"connections":[{"orbit":0,"id":30615},{"orbit":0,"id":10162}],"group":977,"orbitIndex":7,"isNotable":true,"name":"Overflowing Power","orbit":2},"46972":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":46972,"stats":["25% increased Energy Shield Recharge Rate","Mana Flasks gain 0.1 charges per Second"],"recipe":["Paranoia","Paranoia","Guilt"],"connections":[{"orbit":0,"id":54783}],"group":594,"orbitIndex":23,"isNotable":true,"name":"Arcane Mixtures","orbit":7},"20641":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":51934}],"group":855,"skill":20641,"orbitIndex":1,"name":"Caster Mastery","orbit":1},"32699":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":32699,"stats":[],"ascendancyName":"Infernalist","isAscendancyStart":true,"group":486,"connections":[{"orbit":0,"id":7793},{"orbit":0,"id":23880},{"orbit":0,"id":24135},{"orbit":4,"id":39470},{"orbit":-9,"id":64379}],"orbitIndex":0,"name":"Infernalist","orbit":9},"18826":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds","skill":18826,"stats":["Mana Leech is instant"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":47344}],"group":1058,"orbitIndex":8,"isNotable":true,"name":"Ravenous Doubts","orbit":9},"13542":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":13542,"stats":["15% of Elemental Damage taken Recouped as Life"],"recipe":["Ire","Fear","Greed"],"connections":[{"orbit":7,"id":27658},{"orbit":0,"id":44850}],"group":546,"orbitIndex":2,"isNotable":true,"name":"Loose Flesh","orbit":7},"32509":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":953,"skill":32509,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"18923":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18923,"stats":["+5 to any Attribute"],"isAttribute":true,"group":742,"connections":[{"orbit":0,"id":61976},{"orbit":0,"id":17118},{"orbit":0,"id":39570}],"orbitIndex":36,"name":"Attribute","orbit":6},"31609":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":36163}],"group":265,"skill":31609,"orbitIndex":0,"name":"Shield Defences","orbit":3},"11741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":92,"connections":[{"orbit":0,"id":17282}],"orbitIndex":8,"name":"Attribute","orbit":3},"32777":{"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":71,"skill":32777,"orbitIndex":0,"name":"Shapeshifting Mastery","orbit":2},"56978":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56978,"stats":["+5 to any Attribute"],"isAttribute":true,"group":549,"connections":[{"orbit":0,"id":21274}],"orbitIndex":0,"name":"Attribute","orbit":0},"45488":{"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":45488,"stats":["20% increased Accuracy Rating while Dual Wielding","3% increased Movement Speed while Dual Wielding"],"recipe":["Guilt","Greed","Envy"],"connections":[{"orbit":0,"id":4377}],"group":551,"orbitIndex":15,"isNotable":true,"name":"Cross Strike","orbit":3},"2394":{"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":2394,"stats":["6% increased Attack Speed while Dual Wielding","15% increased Attack Critical Hit Chance while Dual Wielding"],"recipe":["Envy","Envy","Despair"],"connections":[],"group":551,"orbitIndex":9,"isNotable":true,"name":"Blade Flurry","orbit":3},"52799":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":47270},{"orbit":4,"id":19955},{"orbit":0,"id":44455}],"group":497,"skill":52799,"orbitIndex":0,"name":"Freeze Buildup","orbit":3},"28863":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":553,"skill":28863,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"48552":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48552,"stats":["+5 to any Attribute"],"isAttribute":true,"group":249,"connections":[{"orbit":0,"id":43036},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"43155":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":65468},{"orbit":0,"id":7062}],"group":612,"skill":43155,"orbitIndex":23,"name":"Crossbow Critical Chance","orbit":4},"65468":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":65468,"stats":["Grenades have 15% chance to activate a second time"],"recipe":["Suffering","Despair","Isolation"],"connections":[{"orbit":0,"id":61432}],"group":583,"orbitIndex":0,"isNotable":true,"name":"Repeating Explosives","orbit":0},"33254":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[],"group":555,"skill":33254,"orbitIndex":17,"name":"Spell Damage","orbit":2},"17999":{"stats":["8% increased Warcry Speed","6% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51561},{"orbit":0,"id":42026},{"orbit":0,"id":63979}],"group":166,"skill":17999,"orbitIndex":2,"name":"Warcry Cooldown and Speed","orbit":7},"44461":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":54998}],"group":158,"skill":44461,"orbitIndex":21,"name":"Increased Duration","orbit":7},"35477":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":35477,"stats":["30% reduced penalty to Accuracy Rating at range"],"recipe":["Guilt","Ire","Fear"],"connections":[{"orbit":0,"id":10277}],"group":902,"orbitIndex":1,"isNotable":true,"name":"Far Sighted","orbit":2},"58002":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":45086},{"orbit":0,"id":55668}],"group":661,"skill":58002,"orbitIndex":3,"name":"Physical Damage","orbit":3},"34520":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":55575},{"orbit":4,"id":14548},{"orbit":-4,"id":63545}],"group":661,"skill":34520,"orbitIndex":15,"name":"Physical Damage","orbit":7},"9568":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":5580}],"group":387,"skill":9568,"orbitIndex":12,"name":"Totem Life","orbit":2},"11178":{"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":11178,"stats":["50% chance to gain Onslaught on Killing Blow with Axes"],"recipe":["Isolation","Ire","Paranoia"],"connections":[{"orbit":0,"id":24224}],"group":78,"orbitIndex":19,"isNotable":true,"name":"Whirling Onslaught","orbit":3},"17762":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":17762,"stats":["40% increased Thorns damage"],"recipe":["Guilt","Fear","Envy"],"connections":[{"orbit":-7,"id":2964}],"group":293,"orbitIndex":23,"isNotable":true,"name":"Vengeance","orbit":2},"25619":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":25619,"stats":["10% increased Attack Speed","15% chance to Blind Enemies on Hit with Attacks"],"recipe":["Despair","Despair","Despair"],"connections":[{"orbit":3,"id":43562}],"group":568,"orbitIndex":14,"isNotable":true,"name":"Sand in the Eyes","orbit":2},"28371":{"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":60560}],"group":945,"skill":28371,"orbitIndex":18,"name":"Damage vs Full Life","orbit":7},"52980":{"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":18970},{"orbit":-4,"id":44343}],"group":615,"skill":52980,"orbitIndex":48,"name":"Evasion and Energy Shield","orbit":4},"44787":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":14654},{"orbit":0,"id":49192},{"orbit":-4,"id":51683}],"group":209,"skill":44787,"orbitIndex":14,"name":"Totem Placement Speed","orbit":7},"59501":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"orbit":0,"id":25619},{"orbit":0,"id":42354}],"group":568,"skill":59501,"orbitIndex":0,"name":"Blind Mastery","orbit":0},"34096":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":58096}],"group":262,"skill":34096,"orbitIndex":4,"name":"Spell Damage","orbit":3},"61834":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":61834,"stats":[],"group":973,"connections":[{"orbit":0,"id":59538},{"orbit":0,"id":722}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"51006":{"stats":["4% reduced Flask Charges used from Mana Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":41877}],"group":887,"skill":51006,"orbitIndex":1,"name":"Mana Flask Charges Used","orbit":3},"10058":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"orbit":0,"id":55149},{"orbit":0,"id":44373}],"group":895,"skill":10058,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"14739":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":49235}],"group":447,"skill":14739,"orbitIndex":3,"name":"Energy Shield Delay","orbit":2},"39839":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":20205},{"orbit":0,"id":14340}],"group":631,"skill":39839,"orbitIndex":20,"name":"Stun Threshold if no recent Stun","orbit":2},"63526":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63526,"stats":["+5 to any Attribute"],"isAttribute":true,"group":520,"connections":[{"orbit":6,"id":28370},{"orbit":4,"id":7788}],"orbitIndex":0,"name":"Attribute","orbit":0},"31848":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":7,"id":40117}],"group":133,"skill":31848,"orbitIndex":22,"name":"Armour if Hit","orbit":7},"21871":{"stats":["10% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":51847},{"orbit":0,"id":37872},{"orbit":0,"id":25213}],"group":553,"skill":21871,"orbitIndex":8,"name":"Attack Damage","orbit":7},"9352":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":32071}],"group":37,"skill":9352,"orbitIndex":2,"name":"Attack Area","orbit":3},"51735":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":44707}],"group":446,"skill":51735,"orbitIndex":17,"name":"Shield Damage","orbit":2},"64939":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":30123}],"group":229,"skill":64939,"orbitIndex":12,"name":"Two Handed Damage","orbit":2},"116":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":116,"stats":["18% increased maximum Energy Shield","12% increased Mana Regeneration Rate","6% increased Intelligence"],"recipe":["Guilt","Disgust","Fear"],"connections":[{"orbit":0,"id":44359}],"group":584,"orbitIndex":13,"isNotable":true,"name":"Insightfulness","orbit":7},"64870":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":27439}],"group":213,"skill":64870,"orbitIndex":0,"name":"Armour","orbit":0},"54962":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":35849}],"group":79,"skill":54962,"orbitIndex":12,"name":"Life Regeneration while Stationary","orbit":7},"53996":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":7,"id":9941},{"orbit":3,"id":28556}],"group":586,"skill":53996,"orbitIndex":22,"name":"Melee Damage","orbit":7},"45390":{"stats":["Mark Skills have 25% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":13624},{"orbit":2,"id":28258}],"group":914,"skill":45390,"orbitIndex":7,"name":"Mark Duration","orbit":2},"17372":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":17372,"stats":["25% increased Melee Damage","+2 to Melee Strike Range"],"recipe":["Isolation","Paranoia","Guilt"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"group":946,"orbitIndex":6,"isNotable":true,"name":"Reaching Strike","orbit":3},"5580":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":5580,"stats":["Attack Skills have +1 to maximum number of Summoned Totems","Skills that would Summon a Totem have 20% chance to Summon two Totems instead"],"recipe":["Disgust","Suffering","Suffering"],"connections":[{"orbit":0,"id":42710}],"group":387,"orbitIndex":0,"isNotable":true,"name":"Watchtowers","orbit":0},"19998":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":44430}],"group":589,"skill":19998,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"15892":{"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":30136}],"group":86,"skill":15892,"orbitIndex":13,"name":"Damage vs Armour Broken Enemies","orbit":3},"51534":{"stats":["20% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":24483}],"group":331,"skill":51534,"orbitIndex":15,"name":"Critical Chance","orbit":3},"8460":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":93,"skill":8460,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"38921":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":172,"skill":38921,"orbitIndex":1,"name":"Block Mastery","orbit":2},"11153":{"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":5049}],"group":389,"skill":11153,"orbitIndex":8,"name":"Attack Speed and Accuracy","orbit":7},"56649":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":44455}],"group":497,"skill":56649,"orbitIndex":8,"name":"Cold Penetration","orbit":3},"33631":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":33631,"stats":[],"group":396,"connections":[{"orbit":0,"id":15885},{"orbit":0,"id":61042}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"15194":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[{"orbit":0,"id":25303}],"group":357,"skill":15194,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"55231":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":37361},{"orbit":0,"id":9857}],"group":457,"skill":55231,"orbitIndex":13,"name":"Bleeding Chance","orbit":7},"1477":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":11037}],"group":534,"skill":1477,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"30390":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":33978}],"group":265,"skill":30390,"orbitIndex":18,"name":"Block","orbit":3},"17248":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17248,"stats":["+5 to any Attribute"],"isAttribute":true,"group":610,"connections":[{"orbit":-5,"id":53960}],"orbitIndex":0,"name":"Attribute","orbit":5},"42710":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":41186}],"group":387,"skill":42710,"orbitIndex":7,"name":"Totem Placement Speed","orbit":2},"22290":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":-6,"id":48821},{"orbit":0,"id":36302}],"group":504,"skill":22290,"orbitIndex":12,"name":"Spell Critical Chance","orbit":3},"36596":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":45013}],"group":590,"skill":36596,"orbitIndex":4,"name":"Damage against Enemies on Low Life","orbit":3},"38105":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":381,"skill":38105,"orbitIndex":67,"name":"Energy Shield","orbit":4},"48137":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":33887}],"group":612,"skill":48137,"orbitIndex":11,"name":"Crossbow Reload Speed","orbit":4},"59653":{"stats":["2% increased Movement Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":35987}],"group":604,"skill":59653,"orbitIndex":10,"name":"Movement Speed","orbit":7},"25303":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[],"group":344,"skill":25303,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"63114":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63114,"stats":["+5 to any Attribute"],"isAttribute":true,"group":109,"connections":[{"orbit":0,"id":53719},{"orbit":0,"id":21387},{"orbit":0,"id":26176},{"orbit":0,"id":35048}],"orbitIndex":4,"name":"Attribute","orbit":3},"10159":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":31977}],"group":680,"skill":10159,"orbitIndex":42,"name":"Mana Regeneration","orbit":4},"23888":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":7390},{"orbit":0,"id":54099}],"group":444,"skill":23888,"orbitIndex":0,"name":"Armour and Evasion","orbit":3},"58125":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":5,"id":10681}],"group":52,"skill":58125,"orbitIndex":60,"name":"Shield Defences","orbit":4},"30141":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30141,"stats":["+5 to any Attribute"],"isAttribute":true,"group":53,"connections":[{"orbit":0,"id":55190}],"orbitIndex":0,"name":"Attribute","orbit":0},"45918":{"icon":"Art/2DArt/SkillIcons/passives/heroicspirit.dds","skill":45918,"isKeystone":true,"stats":["All Damage is taken from Mana before Life","50% less Mana Recovery Rate"],"group":244,"connections":[],"orbitIndex":0,"name":"Mind Over Matter","orbit":0},"21779":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57204}],"group":619,"skill":21779,"orbitIndex":19,"name":"Critical Damage","orbit":2},"35234":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":35660},{"orbit":0,"id":6789},{"orbit":0,"id":56651}],"group":620,"skill":35234,"orbitIndex":19,"name":"Projectile Damage","orbit":7},"61472":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":9417},{"orbit":-7,"id":36389}],"group":215,"skill":61472,"orbitIndex":10,"name":"Strength","orbit":7},"35602":{"stats":["Offerings have 30% reduced Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":456,"skill":35602,"orbitIndex":6,"name":"Offering Life","orbit":7},"37665":{"stats":["Break 10% increased Armour","8% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":3,"id":35739}],"group":430,"skill":37665,"orbitIndex":2,"name":"Area Damage and Armour Break","orbit":7},"44092":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":54911}],"group":340,"skill":44092,"orbitIndex":1,"name":"Ignite Effect","orbit":2},"42614":{"stats":["Offering Skills have 30% reduced Duration"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":544,"skill":42614,"orbitIndex":6,"name":"Offering Duration","orbit":7},"27875":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":27875,"stats":["40% increased chance to Shock","5% increased Attack and Cast Speed with Lightning Skills"],"recipe":["Isolation","Suffering","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":32123}],"group":839,"orbitIndex":0,"isNotable":true,"name":"General Electric","orbit":0},"24646":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":61409}],"group":110,"skill":24646,"orbitIndex":18,"name":"Strength and Reduced Mana","orbit":3},"49023":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":3,"id":12817},{"orbit":0,"id":22975}],"group":172,"skill":49023,"orbitIndex":6,"name":"Shield Block","orbit":1},"31055":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":18969}],"group":1006,"skill":31055,"orbitIndex":19,"name":"Bow Speed","orbit":2},"51728":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":6505}],"group":547,"skill":51728,"orbitIndex":7,"name":"Pierce Chance","orbit":2},"19715":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":19715,"stats":["Damage Penetrates 18% Fire Resistance","25% increased Fire Exposure Effect"],"recipe":["Isolation","Disgust","Isolation"],"connections":[{"orbit":0,"id":34927}],"group":445,"orbitIndex":66,"isNotable":true,"name":"Cremation","orbit":4},"53216":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":136,"skill":53216,"orbitIndex":0,"name":"Life Mastery","orbit":0},"37991":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":52254}],"group":565,"skill":37991,"orbitIndex":18,"name":"Curse Effect","orbit":7},"14923":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":394,"skill":14923,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"63979":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":9750}],"group":166,"skill":63979,"orbitIndex":6,"name":"Warcry Cooldown","orbit":7}},"max_x":22310.387360804,"constants":{"classes":{"DexIntClass":6,"IntClass":3,"StrDexIntClass":0,"StrIntClass":5,"StrDexClass":4,"DexClass":2,"StrClass":1},"orbitRadii":[0,82,162,335,493,662,846,251,1080,1322],"characterAttributes":{"Strength":0,"Intelligence":2,"Dexterity":1},"PSSCentreInnerRadius":130,"skillsPerOrbit":[1,12,24,24,72,72,72,24,72,144]}} \ No newline at end of file +{"assets":{"Orbit6Normal":["orbit_normal3.png"],"LineConnectorNormal":["orbit_normal0.png"],"Orbit9Normal":["orbit_normal1.png"],"Orbit8Normal":["orbit_normal2.png"],"Orbit9Active":["orbit_active1.png"],"LineConnectorActive":["orbit_active0.png"],"Orbit7Normal":["orbit_normal7.png"],"Orbit5Normal":["orbit_normal4.png"],"Orbit2Active":["orbit_active8.png"],"Orbit4Normal":["orbit_normal5.png"],"Orbit6Active":["orbit_active3.png"],"Orbit2Normal":["orbit_normal8.png"],"Orbit3Normal":["orbit_normal6.png"],"Orbit8Active":["orbit_active2.png"],"Orbit3Active":["orbit_active6.png"],"Orbit7Intermediate":["orbit_intermediate7.png"],"Orbit8Intermediate":["orbit_intermediate2.png"],"Orbit9Intermediate":["orbit_intermediate1.png"],"Orbit5Active":["orbit_active4.png"],"Orbit3Intermediate":["orbit_intermediate6.png"],"Orbit4Intermediate":["orbit_intermediate5.png"],"Orbit5Intermediate":["orbit_intermediate4.png"],"Orbit6Intermediate":["orbit_intermediate3.png"],"Orbit4Active":["orbit_active5.png"],"Orbit1Active":["orbit_active9.png"],"Orbit1Intermediate":["orbit_intermediate9.png"],"Orbit2Intermediate":["orbit_intermediate8.png"],"Orbit7Active":["orbit_active7.png"],"LineConnectorIntermediate":["orbit_intermediate0.png"],"Orbit1Normal":["orbit_normal9.png"]},"min_y":-23471.530076896,"groups":[null,{"y":5452.3167634307,"x":-14496.148300903,"nodes":[49380],"orbits":[0]},{"y":5815.3167634307,"x":-14496.148300903,"nodes":[58704],"orbits":[0]},{"y":6178.3167634307,"x":-14496.148300903,"nodes":[38769],"orbits":[0]},{"y":5202.1467634307,"x":-14429.118300903,"nodes":[36659],"orbits":[0]},{"y":5624.0267634307,"x":-14339.388300903,"nodes":[6127],"orbits":[0]},{"y":6037.1767634307,"x":-14339.388300903,"nodes":[18585],"orbits":[0]},null,{"y":5202.1067634307,"x":-14241.668300903,"nodes":[40915],"orbits":[0]},null,{"y":6716.2967634307,"x":-14174.808300903,"nodes":[1994],"orbits":[0]},{"y":5452.3167634307,"x":-14174.628300903,"nodes":[48682],"orbits":[0]},{"y":5815.3167634307,"x":-14174.628300903,"nodes":[39411],"orbits":[0]},{"y":6542.0967634307,"x":-14174.628300903,"nodes":[25935],"orbits":[0]},{"y":6178.3167634307,"x":-14174.008300903,"nodes":[39365],"orbits":[0]},{"y":6122.5967634307,"x":-13769.548300903,"nodes":[33812],"orbits":[6]},{"y":6795.3467634307,"x":-13720.868300903,"nodes":[47097],"orbits":[0]},{"y":6464.9067634307,"x":-13717.058300903,"nodes":[23005],"orbits":[0]},{"y":6395.2167634307,"x":-13266.078300903,"nodes":[10072],"orbits":[0]},{"y":6864.3867634307,"x":-13266.078300903,"nodes":[64117],"orbits":[0]},null,{"y":6542.0967634307,"x":-13076.698300903,"nodes":[52068],"orbits":[0]},{"y":6716.2967634307,"x":-13076.698300903,"nodes":[29645],"orbits":[0]},null,{"y":8293.7734034478,"x":-13031.501188436,"nodes":[24807],"orbits":[0]},{"y":8070.8734034478,"x":-12634.551188436,"nodes":[38014],"orbits":[0]},{"y":8579.6634034478,"x":-12456.631188436,"nodes":[42275],"orbits":[0]},{"y":8851.6534034478,"x":-12195.691188436,"nodes":[3762,59540,30115,60634,35453,13715,19424,27418,51690,29323,32534],"orbits":[4,5,6,7,9]},{"y":9854.5734034478,"x":-12130.191188436,"nodes":[12000],"orbits":[0]},{"y":9213.4234034478,"x":-12089.821188436,"nodes":[59372],"orbits":[0]},{"y":9629.1734034478,"x":-11736.201188436,"nodes":[56842],"orbits":[0]},null,null,null,null,null,{"y":-1276.68,"x":-11263.31,"nodes":[9352,31295,32071,49111,39190,8800,15427,57379],"orbits":[0,3]},{"y":1114.01,"x":-11179.3,"nodes":[28589,7395,38670,30007,12565,3245,30300,3188],"orbits":[1,2,3]},{"y":-3254.38,"x":-11095.46,"nodes":[6502],"orbits":[0]},{"y":-3602.71,"x":-11052.33,"nodes":[41747],"orbits":[0]},{"y":-3162.26,"x":-11003.87,"nodes":[49370,32148,8535,43443],"orbits":[0,2]},{"y":88.39,"x":-10939.38,"nodes":[55190],"orbits":[1]},{"y":-3409.07,"x":-10798.26,"nodes":[61847],"orbits":[0]},{"y":-2405.56,"x":-10716.12,"nodes":[55048],"orbits":[0]},{"y":2443.13,"x":-10708.76,"nodes":[24630],"orbits":[0]},{"y":445.3,"x":-10682.77,"nodes":[1200],"orbits":[4]},{"y":-1117.08,"x":-10667.72,"nodes":[28982],"orbits":[0]},{"y":3051.94,"x":-10615.17,"nodes":[17348,11433,15522,13893,11275,42390,63608],"orbits":[0,3,4,7]},{"y":-4677.69,"x":-10609.92,"nodes":[440],"orbits":[0]},{"y":-3587.33,"x":-10416.8,"nodes":[1130,50847,33393,42914],"orbits":[0,4,5,7]},{"y":-4500.02,"x":-10391.25,"nodes":[55888],"orbits":[0]},{"y":-5225.09,"x":-10391.18,"nodes":[17349,5728,23940,14342,49256,14439,58138,46384,33402,58125,6133,10681,27581,50510],"orbits":[1,3,4,7]},{"y":5.97,"x":-10364.84,"nodes":[30141],"orbits":[0]},{"y":2132.05,"x":-10358.72,"nodes":[59785],"orbits":[0]},{"y":-2405.56,"x":-10338.12,"nodes":[41768],"orbits":[0]},{"y":4633.75,"x":-10240.12,"nodes":[375,12276,14693,13937,13980,17791,526,2645,52829,14832],"orbits":[0,4,7]},{"y":1109.9,"x":-10203.05,"nodes":[11656,9106,53822,54937],"orbits":[1,7]},{"y":3733,"x":-10198.75,"nodes":[18684],"orbits":[0]},{"y":-4677.69,"x":-10180.38,"nodes":[18746],"orbits":[0]},{"y":273.26,"x":-10097.55,"nodes":[51749],"orbits":[0]},{"y":-3391.47,"x":-10087.16,"nodes":[29611],"orbits":[0]},{"y":3405.64,"x":-10009.75,"nodes":[27296],"orbits":[0]},{"y":2362.11,"x":-9927.8,"nodes":[51535,18397,55063,8852,4139],"orbits":[0,2,3]},{"y":-2071.56,"x":-9865.43,"nodes":[11525,64724,53329,53030,30334,9324,43939,56214,48267],"orbits":[0,2,3]},{"y":-4500.02,"x":-9791.13,"nodes":[32474],"orbits":[0]},{"y":-1117.08,"x":-9724.5,"nodes":[30457,13293,54416,19236,60274],"orbits":[0,7]},{"y":710.66,"x":-9715.33,"nodes":[4442,59886,62313,62034,55931,33939,6872],"orbits":[0,3,4,5]},{"y":4489.54,"x":-9701.92,"nodes":[59777],"orbits":[0]},{"y":3334.63,"x":-9636.83,"nodes":[917,44069,65160,21670,29358],"orbits":[1,2,3]},{"y":-3088.59,"x":-9562.54,"nodes":[62670,41497,30554,21164,18245,10055],"orbits":[0,7]},{"y":-421.46,"x":-9548.42,"nodes":[32777,17625,59710,21567,18822,10873,52618,47790],"orbits":[1,2,3,7]},{"y":4,"x":-9548.42,"nodes":[18448],"orbits":[0]},{"y":-5501.21,"x":-9524.42,"nodes":[26196],"orbits":[0]},{"y":5442.15,"x":-9427.5,"nodes":[26725],"orbits":[0]},{"y":-6626.42,"x":-9380.56,"nodes":[47242,34493,48565,23078,65328,54964,49593,4725,17229],"orbits":[0,2,3,4,7]},{"y":4400.29,"x":-9363.33,"nodes":[10362,10830,9163,59589,44952,6153,52659],"orbits":[0,3,7]},{"y":362.33,"x":-9064.75,"nodes":[65154,2575,56757,11292],"orbits":[0,2]},{"y":6723.44,"x":-9040.02,"nodes":[53440,52300,11178,62439,57880,11306,6269,45990,39448,24224],"orbits":[0,2,3]},{"y":-4631.81,"x":-9038.93,"nodes":[31159,54962,35849,46017,12382],"orbits":[0,1,7]},{"y":1954.01,"x":-8945,"nodes":[33452,57471,53823,23192,21684,1214,42578,52796,10508,30371,27687],"orbits":[2,3,4,5,7]},{"y":-499.46,"x":-8895.04,"nodes":[52220,60064,3027,54228,64240],"orbits":[0,2]},{"y":-5473.9,"x":-8822.42,"nodes":[52],"orbits":[0]},{"y":-5095.9,"x":-8822.42,"nodes":[39131],"orbits":[0]},{"y":-6271.82,"x":-8766.41,"nodes":[33722],"orbits":[0]},{"y":5036.5,"x":-8724.91,"nodes":[21387],"orbits":[0]},{"y":5497.5,"x":-8689.66,"nodes":[51129,26437,15892],"orbits":[3,7]},{"y":4,"x":-8684.42,"nodes":[47263],"orbits":[0]},{"y":504.36,"x":-8684.42,"nodes":[10100],"orbits":[0]},{"y":988.33,"x":-8684.42,"nodes":[23307],"orbits":[0]},{"y":4650.55,"x":-8647.35,"nodes":[47173,51832,6514,31373,47722,12418,50561,3988],"orbits":[0,2,3,4]},{"y":6301.67,"x":-8618.25,"nodes":[27082],"orbits":[0]},{"y":-4931.21,"x":-8541.12,"nodes":[11741],"orbits":[3]},{"y":-1405.65,"x":-8485.92,"nodes":[8460,40328,62200,9528,38053,29762,28564],"orbits":[0,2,3]},{"y":-5912.71,"x":-8440.72,"nodes":[57608],"orbits":[0]},{"y":-5238.98,"x":-8386.71,"nodes":[33797,37509],"orbits":[5]},{"y":-7446.29,"x":-8351.37,"nodes":[9226,13500,47591,41044],"orbits":[1,2,3,7]},{"y":5293.13,"x":-8335.67,"nodes":[22626,45227,30136],"orbits":[3,7]},{"y":5282.9,"x":-8316.62,"nodes":[42111,48717],"orbits":[7,3]},{"y":2567.51,"x":-8204.79,"nodes":[38365,61142,34626,46499],"orbits":[0,2]},{"y":-5390.69,"x":-8193.3,"nodes":[33502,65189],"orbits":[5]},{"y":3447.68,"x":-8158.65,"nodes":[24855,17138,53308,51903,39347,48014,55058,63790],"orbits":[0,3,4,5]},{"y":7278.13,"x":-8156.4,"nodes":[32349],"orbits":[0]},{"y":15228.739842601,"x":494.95218939594,"nodes":[8272],"orbits":[0]},{"y":1954.92,"x":-8116.65,"nodes":[36044],"orbits":[0]},{"y":-6945.65,"x":-8086.9,"nodes":[4140],"orbits":[0]},{"y":-5943.05,"x":-8083.42,"nodes":[41180],"orbits":[1]},{"y":-5590.82,"x":-8069.54,"nodes":[6222,9037,21912],"orbits":[5]},{"y":6352.38,"x":-8048.02,"nodes":[50392],"orbits":[0]},{"y":4659.56,"x":-8046.92,"nodes":[63114],"orbits":[3]},{"y":6041.9,"x":-8024.48,"nodes":[61409,24646],"orbits":[3,7]},{"y":-5646.06,"x":-8021.07,"nodes":[61703],"orbits":[0]},{"y":-1123.01,"x":-7996.37,"nodes":[38707],"orbits":[0]},{"y":4130.84,"x":-7966.51,"nodes":[35048,26176,43650,21070,57388,53386,9698],"orbits":[1,2,3,7]},{"y":-2253.24,"x":-7964.19,"nodes":[61404,38923,44902,61429,511],"orbits":[0,7]},{"y":-2252.73,"x":-7958.8,"nodes":[51210],"orbits":[0]},{"y":-5882.19,"x":-7948.8,"nodes":[17260],"orbits":[0]},{"y":-4279.3,"x":-7938.92,"nodes":[35369,1459,47252,17282,43579],"orbits":[0,1,7]},{"y":-6121.04,"x":-7930.02,"nodes":[32353],"orbits":[0]},{"y":-3214.3,"x":-7929.94,"nodes":[33601,5692,35708,41154,2863],"orbits":[0,2]},{"y":504.36,"x":-7924.75,"nodes":[25300],"orbits":[0]},{"y":16024.069842601,"x":761.71218939594,"nodes":[51737],"orbits":[0]},{"y":2887.75,"x":-7848.77,"nodes":[44017],"orbits":[0]},{"y":6139.63,"x":-7835.27,"nodes":[13075],"orbits":[0]},{"y":7089.13,"x":-7829.04,"nodes":[3446],"orbits":[0]},{"y":1455.71,"x":-7828.44,"nodes":[53527,4985,45327,7204,10251],"orbits":[0,7]},{"y":84.99,"x":-7826.84,"nodes":[58295],"orbits":[2]},{"y":452.74,"x":-7815.5,"nodes":[61796,38066,8260,10286],"orbits":[7]},{"y":2567.51,"x":-7762.96,"nodes":[4527],"orbits":[0]},{"y":402.68,"x":-7704.81,"nodes":[21453],"orbits":[0]},{"y":8468.77,"x":-7587.21,"nodes":[2946,62518,4547,41414,41363],"orbits":[0,1,3,4,7]},{"y":-849.36,"x":-7586.04,"nodes":[43653,48171,26518,40803,3218],"orbits":[4]},{"y":15084.319842601,"x":1056.8821893959,"nodes":[17646],"orbits":[0]},{"y":2094.68,"x":-7489.98,"nodes":[40117,31848,1286,21089,17903,54701],"orbits":[7]},{"y":4960.9,"x":-7463.54,"nodes":[18505,18496,18073,36027,49952,45090,13856],"orbits":[7]},{"y":3131.16,"x":-7437.53,"nodes":[52298],"orbits":[0]},{"y":3624.13,"x":-7437.53,"nodes":[53216,52126,21885,1352],"orbits":[0,2,7]},{"y":-8009.76,"x":-7428.15,"nodes":[45202],"orbits":[0]},{"y":-465.35,"x":-7355.98,"nodes":[24430,47191,3601,8554,63037],"orbits":[4]},{"y":-745.79,"x":-7348.69,"nodes":[50629],"orbits":[0]},{"y":-750.41,"x":-7347.5,"nodes":[44298],"orbits":[0]},{"y":-4246.42,"x":-7344.38,"nodes":[47931],"orbits":[0]},{"y":-3696.47,"x":-7344.38,"nodes":[39710],"orbits":[0]},{"y":-3214.3,"x":-7344.38,"nodes":[51821],"orbits":[0]},{"y":-2738.33,"x":-7344.38,"nodes":[33989],"orbits":[0]},{"y":-2252.28,"x":-7344.38,"nodes":[49734],"orbits":[0]},{"y":-916.14,"x":-7180.07,"nodes":[23930,30662,45383,26291,46024],"orbits":[4]},{"y":-5288.35,"x":-7101.54,"nodes":[45632,25503,27068,35831,27388,28578,904,24551],"orbits":[0,7]},{"y":4,"x":-7053.86,"nodes":[15671],"orbits":[0]},{"y":6434.42,"x":-7050.79,"nodes":[43778,36894,17330,3698,61938,14515,61927,33137],"orbits":[2,3]},{"y":-8009.76,"x":-7050.15,"nodes":[59093],"orbits":[0]},{"y":-7282.44,"x":-7044.46,"nodes":[21127,35974,51105,5398,22484,51820,38124,6355,14110,48979],"orbits":[1,2,3,4,6,7]},{"y":14984.739842601,"x":1595.0621893959,"nodes":[61973,3704,46535,38601,43131,40719,25172,32559,61897,34501,7120],"orbits":[1,3,5,6,9,8]},{"y":7409.4,"x":-7025.42,"nodes":[25229,7972,21390,5663],"orbits":[0,2]},{"y":7906.98,"x":-7025.42,"nodes":[62498],"orbits":[0]},{"y":4002.72,"x":-6934.34,"nodes":[53719],"orbits":[0]},{"y":-1830.65,"x":-6922.75,"nodes":[51812,62757,4673,10047,46741],"orbits":[0,2]},{"y":-9652.12,"x":-6910.15,"nodes":[28774,17505,52106,2999,44005,10295,27733],"orbits":[4,5,6]},{"y":2724.36,"x":-6905.82,"nodes":[31805,44461,54998,29041,31388,51394,29993],"orbits":[1,2,3,7]},{"y":988.34,"x":-6886.36,"nodes":[1170,53089,16626,64443,41126,10474,53785,9918,62023],"orbits":[0,2,3]},{"y":-4712.38,"x":-6880.96,"nodes":[21568],"orbits":[0]},{"y":3687.64,"x":-6849.92,"nodes":[39621,14176,18004,8881],"orbits":[0,2,3,4]},{"y":-6035.54,"x":-6615.6,"nodes":[2672],"orbits":[0]},{"y":-2925.02,"x":-6560.84,"nodes":[50062,64357,6416,506,46857,59596,42916,11030,37641],"orbits":[0,2,3]},{"y":-6197.75,"x":-6532.5,"nodes":[59061],"orbits":[0]},{"y":15084.319842601,"x":2133.2321893959,"nodes":[6935],"orbits":[0]},{"y":9257.25,"x":-6498.25,"nodes":[25031,17999,63979,9750,1169,42026,63813],"orbits":[0,7]},{"y":-5120.01,"x":-6473.32,"nodes":[11248],"orbits":[0]},{"y":-6058.3,"x":-6455.65,"nodes":[8509,45569,55596,28267,35085],"orbits":[0,2,3]},{"y":-4380.23,"x":-6419.58,"nodes":[35966,41105,38368,54288,44316],"orbits":[0,1,7]},{"y":4911.79,"x":-6409.48,"nodes":[22975],"orbits":[0]},{"y":420.58,"x":-6370.69,"nodes":[43711,5544,14459],"orbits":[2]},{"y":4501.4,"x":-6353.65,"nodes":[38921,49023,49198,12817,22967],"orbits":[1,2,3,7]},{"y":5063.19,"x":-6324.27,"nodes":[53921,40596,58838],"orbits":[5]},{"y":-8752.42,"x":-6317.55,"nodes":[23382],"orbits":[0]},{"y":-15644.835865568,"x":4153.1390050971,"nodes":[18678],"orbits":[0]},{"y":-13441.015865568,"x":4153.1390050971,"nodes":[63002],"orbits":[0]},{"y":7289.19,"x":-6210.4,"nodes":[11014,16784,26339,62609,18419,25312,24259,23667,64405,31650,16051,31017],"orbits":[0,1,3,5,7]},{"y":8758.64,"x":-6210.4,"nodes":[51561],"orbits":[0]},{"y":16024.069842601,"x":2430.1421893959,"nodes":[20830],"orbits":[0]},{"y":3942.14,"x":-6203.21,"nodes":[19674],"orbits":[3]},{"y":-15207.235865568,"x":4255.0590050971,"nodes":[10731],"orbits":[0]},{"y":5297.48,"x":-6186.82,"nodes":[27439],"orbits":[0]},{"y":3951.76,"x":-6116.29,"nodes":[41493],"orbits":[0]},{"y":1197.89,"x":-6026.21,"nodes":[21017,26969,16861,55789,41665,27303,50562,43142],"orbits":[0,3,4,5,7]},{"y":4,"x":-6014.13,"nodes":[14654],"orbits":[0]},{"y":-14545.815865568,"x":4467.1090050971,"nodes":[26638],"orbits":[0]},{"y":2748.83,"x":-5982.73,"nodes":[35977,38130,53194,35876,27540,62216,26070],"orbits":[0,2,3]},{"y":3453.31,"x":-5982.73,"nodes":[57703],"orbits":[0]},{"y":-3432.51,"x":-5945.28,"nodes":[49938],"orbits":[0]},{"y":15228.739842601,"x":2695.7521893959,"nodes":[37078],"orbits":[0]},{"y":4065.73,"x":-5918.9,"nodes":[50253],"orbits":[0]},{"y":-13441.015865568,"x":4533.7590050971,"nodes":[58747],"orbits":[0]},{"y":-6840.02,"x":-5903.5,"nodes":[57776,60013,10208,21935,33914,18240,21415,22909,61493],"orbits":[0,3]},{"y":8492.27,"x":-5887.44,"nodes":[56342],"orbits":[0]},{"y":-5721.92,"x":-5873.02,"nodes":[41263],"orbits":[0]},{"y":-3998.09,"x":-5849.35,"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7]},{"y":-8089.09,"x":-5816.56,"nodes":[64318,5088,55101,43893,26739,61063,38535,7777,58016,22873,16596,49537,42205],"orbits":[0,3,4]},{"y":8207.66,"x":-5800.9,"nodes":[7341],"orbits":[0]},{"y":-15271.545865568,"x":4656.6990050971,"nodes":[42035,28153,50219,54194],"orbits":[2]},{"y":-14331.845865568,"x":4656.6990050971,"nodes":[22147],"orbits":[9]},null,{"y":-15191.545865568,"x":4720.4690050971,"nodes":[43128],"orbits":[4]},{"y":6145.17,"x":-5697,"nodes":[48768],"orbits":[0]},{"y":5052.28,"x":-5694.65,"nodes":[62015,7668,21982,47371],"orbits":[0,2]},{"y":-13440.615865568,"x":4796.5490050971,"nodes":[3605],"orbits":[0]},{"y":-14545.815865568,"x":4829.0790050971,"nodes":[10987],"orbits":[0]},{"y":14817.049401417,"x":-2649.9263435605,"nodes":[60287],"orbits":[0]},{"y":-9484.56,"x":-5597.85,"nodes":[7960],"orbits":[1]},{"y":-521.46,"x":-5585.44,"nodes":[40550,46205,41615,49192,44787,43396,10534,33209,2174,51683,19249],"orbits":[0,2,3,4,6,7]},{"y":811.34,"x":-5535.94,"nodes":[20303,9908],"orbits":[2]},{"y":426.08,"x":-5532.01,"nodes":[16311,32600,6304,12125],"orbits":[0,2]},{"y":8732.2,"x":-5520.38,"nodes":[33244,52373,16347,52556,37276],"orbits":[0,2]},{"y":5566.61,"x":-5497.37,"nodes":[64870,34090,14655,372,54340],"orbits":[0,2,3,7]},{"y":15324.159401417,"x":-2514.0463435605,"nodes":[55582],"orbits":[0]},{"y":4362.34,"x":-5457.8,"nodes":[25482,51702,54485,60620,61472],"orbits":[0,7]},{"y":-15442.485865568,"x":5020.0290050971,"nodes":[27990],"orbits":[0]},{"y":9533.46,"x":-5399.53,"nodes":[2491],"orbits":[1]},{"y":-15207.235865568,"x":5054.3490050971,"nodes":[49049],"orbits":[0]},{"y":4839.82,"x":-5384.36,"nodes":[36389],"orbits":[0]},{"y":14405.429401417,"x":-2429.3763435605,"nodes":[14429],"orbits":[0]},{"y":6756.96,"x":-5333.21,"nodes":[44406,63451,57846],"orbits":[6]},{"y":2555.07,"x":-5326.03,"nodes":[8629],"orbits":[0]},{"y":7792.71,"x":-5317.19,"nodes":[20015,14777,37226,4015,47429,9187,59466],"orbits":[2,3,4,6,7]},{"y":2655.72,"x":-5314.13,"nodes":[16084],"orbits":[0]},{"y":2829.25,"x":-5314.13,"nodes":[13474],"orbits":[0]},{"y":2922.83,"x":-5314.13,"nodes":[10602,24871,57552,46696],"orbits":[4]},{"y":3067.3,"x":-5314.13,"nodes":[54811],"orbits":[0]},{"y":3397.64,"x":-5314.13,"nodes":[34210],"orbits":[0]},{"y":3520.75,"x":-5314.13,"nodes":[6923,1087,64939,30123,26092,52392],"orbits":[2,3]},{"y":-15651.845865568,"x":5159.6990050971,"nodes":[1579],"orbits":[0]},{"y":-13440.615865568,"x":5159.6990050971,"nodes":[32856],"orbits":[0]},{"y":7013.03,"x":-5288.23,"nodes":[64995,51867,17924],"orbits":[0,3]},{"y":-5561.46,"x":-5260.1,"nodes":[44783,19277,35171,10029,8660,18846,22949,14113],"orbits":[0,2,3]},{"y":-2342.95,"x":-5255.44,"nodes":[10245,34308,65193,47204,36478,48714,43014,47354,37414],"orbits":[0,2,3]},{"y":5058.67,"x":-5245.55,"nodes":[53989],"orbits":[0]},{"y":14912.539401417,"x":-2293.5063435605,"nodes":[45248],"orbits":[0]},{"y":-4772.19,"x":-5175.23,"nodes":[57097,30260,256,19658],"orbits":[0,2,7]},{"y":833.39,"x":-5165.01,"nodes":[63470,50302,16090],"orbits":[3]},{"y":6455.65,"x":-5159.25,"nodes":[61490],"orbits":[0]},{"y":8943.84,"x":-5153.8,"nodes":[28304],"orbits":[0]},{"y":15419.659401417,"x":-2157.6163435605,"nodes":[11641],"orbits":[0]},{"y":-2941.61,"x":-5095.02,"nodes":[28002],"orbits":[0]},{"y":1520.57,"x":-5034.82,"nodes":[51369,56061,6544,45503,37746,42604],"orbits":[0,2,4,7]},{"y":-7996.23,"x":-5019.88,"nodes":[45918],"orbits":[0]},{"y":5187.94,"x":-5015.19,"nodes":[29372],"orbits":[0]},{"y":-7125.77,"x":-4988.29,"nodes":[56703,28839,56762,20032,28680],"orbits":[0,2]},{"y":15926.769401417,"x":-2021.7363435605,"nodes":[34882],"orbits":[0]},{"y":-5972.03,"x":-4966.28,"nodes":[46628],"orbits":[4]},{"y":-8466.87,"x":-4915.6,"nodes":[48552],"orbits":[0]},{"y":-9561.39,"x":-4903.23,"nodes":[35408,36474,38596,24767,31925],"orbits":[2,4,7]},{"y":-8530.05,"x":-4806.19,"nodes":[36880,15628,27626,2244,54067,43036],"orbits":[4,5,7]},{"y":8363.52,"x":-4805.94,"nodes":[37258],"orbits":[0]},{"y":4919.46,"x":-4741.04,"nodes":[9417],"orbits":[0]},{"y":5689.48,"x":-4717.5,"nodes":[56595,23861,54886,56997,64312],"orbits":[0,4,7]},{"y":-4643.81,"x":-4696.12,"nodes":[13694,9343,50389,23329,11762],"orbits":[0,2,7]},{"y":-6892.17,"x":-4694.67,"nodes":[15782],"orbits":[0]},{"y":223.67,"x":-4660.69,"nodes":[31419,35787,42813,55491],"orbits":[1,7]},{"y":4612.59,"x":-4659.73,"nodes":[13171],"orbits":[0]},{"y":-7996.23,"x":-4643.88,"nodes":[31238],"orbits":[0]},{"y":6774.82,"x":-4606.4,"nodes":[38876],"orbits":[0]},{"y":-532.48,"x":-4583.03,"nodes":[7878,48745,53901,34375,45612],"orbits":[0,2,3]},{"y":-3251.11,"x":-4558.96,"nodes":[17411,61444,58096,6008,64020,29652,35911,15180,34096],"orbits":[0,2,3]},{"y":4730.38,"x":-4551.96,"nodes":[17745],"orbits":[0]},{"y":925.6,"x":-4542.4,"nodes":[39083],"orbits":[0]},{"y":2159.3,"x":-4507.44,"nodes":[33978,30390,31609,36163,62581],"orbits":[0,2,3,7]},{"y":14988.919401417,"x":-1555.2963435605,"nodes":[55536],"orbits":[9]},{"y":4838.15,"x":-4434.17,"nodes":[48121],"orbits":[0]},{"y":7184.65,"x":-4431.15,"nodes":[14540],"orbits":[0]},{"y":-1471.64,"x":-4422.17,"nodes":[48505,10372,48240,36191,59213,7392,10571,60886,40325],"orbits":[1,2,3]},{"y":4530.02,"x":-4351.6,"nodes":[24438],"orbits":[0]},{"y":843.27,"x":-4339.42,"nodes":[9638],"orbits":[0]},{"y":3287.25,"x":-4335.51,"nodes":[54283,26324,27950,4128,26532,46023,52462],"orbits":[0,2,3]},{"y":3380.39,"x":-4335.51,"nodes":[41657,21286,45992,17029],"orbits":[2,3]},{"y":619.91,"x":-4335.1,"nodes":[26798],"orbits":[0]},{"y":0.53,"x":-4308.23,"nodes":[51052,22616,17468,53405,22558],"orbits":[6]},{"y":407.49,"x":-4296.44,"nodes":[59006],"orbits":[0]},{"y":0.53,"x":-4289.92,"nodes":[48631],"orbits":[0]},{"y":-5891.9,"x":-4261.32,"nodes":[34552,61026,17378,40894,1218,8357,10742,41991,1447,38972,14945,22393,28458],"orbits":[0,3]},{"y":9595.01,"x":-4254.59,"nodes":[30910,17600,8791,18519,4084,59647,54849],"orbits":[0,1,2,3,7]},{"y":10064.45,"x":-4254.59,"nodes":[28175],"orbits":[0]},{"y":10800.08,"x":-4254.59,"nodes":[47316,2888,21716,8827,16691,9583,28862],"orbits":[0,4,7]},{"y":-10969.45,"x":-4242.62,"nodes":[14505,3866,22331,19644,32258,14712,33612,40200,61842,33240,45343,57021,8957,37594,50483,8983],"orbits":[0,1,2,3,4,5,7]},{"y":2439.49,"x":-4227.25,"nodes":[16725],"orbits":[0]},{"y":8626.35,"x":-4221.3,"nodes":[26490,12751,6229,13356,18489],"orbits":[7,2]},{"y":-4515.44,"x":-4217.02,"nodes":[16948,37458,21879,25412],"orbits":[0,2,7]},{"y":-10001.8,"x":-4185.36,"nodes":[50104],"orbits":[0]},{"y":4345.69,"x":-4167.26,"nodes":[46748],"orbits":[0]},{"y":15161.309401417,"x":-1210.1363435605,"nodes":[18146],"orbits":[0]},{"y":-8135.44,"x":-4117.42,"nodes":[4931,42825,21404,27674,44082,27307],"orbits":[0,2]},{"y":-9838.01,"x":-4116.33,"nodes":[32745],"orbits":[0]},{"y":-9545.42,"x":-4113.12,"nodes":[40276],"orbits":[0]},{"y":-9254.29,"x":-4113.12,"nodes":[60241],"orbits":[0]},{"y":6275.65,"x":-4107.23,"nodes":[17762,2964,18374,64406],"orbits":[0,2]},{"y":287.24,"x":-4082.88,"nodes":[26895],"orbits":[0]},{"y":7086.81,"x":-4066.02,"nodes":[31903],"orbits":[0]},{"y":15930.409401417,"x":-1085.2463435605,"nodes":[3084],"orbits":[0]},{"y":-9550.54,"x":-4030.62,"nodes":[32278,58183],"orbits":[2,7]},{"y":14653.229401417,"x":-1073.9963435605,"nodes":[30996],"orbits":[0]},{"y":-4999.56,"x":-3967.58,"nodes":[24483],"orbits":[0]},{"y":7450.38,"x":-3966.26,"nodes":[56605],"orbits":[0]},{"y":-9600.64,"x":-3955.44,"nodes":[61179],"orbits":[0]},{"y":394.73,"x":-3921.6,"nodes":[37956],"orbits":[0]},{"y":-9191.64,"x":-3905.87,"nodes":[5284],"orbits":[0]},{"y":15422.339401417,"x":-949.10634356052,"nodes":[57819],"orbits":[0]},{"y":-6696.51,"x":-3879.54,"nodes":[57506],"orbits":[0]},{"y":156.68,"x":-3872.48,"nodes":[35581],"orbits":[0]},{"y":5361.03,"x":-3870.16,"nodes":[2511,19802,64399],"orbits":[1,2,3]},{"y":-14986.842811271,"x":1575.1806527255,"nodes":[8867,42522,39204,12882,38578,2857,39640,61985,18849,49189,64789,44484,7246,65413,25618,49759,7998,13673,29398,12488,40721],"orbits":[6,5,9,8]},{"y":-9338.75,"x":-3804.23,"nodes":[21245],"orbits":[0]},{"y":-8886.17,"x":-3804.23,"nodes":[57178],"orbits":[0]},{"y":16166.269401417,"x":-849.38634356052,"nodes":[1442],"orbits":[0]},{"y":14914.259401417,"x":-812.96634356052,"nodes":[53762],"orbits":[0]},{"y":5937.79,"x":-3759.41,"nodes":[45962,48589,7922,7183,15617],"orbits":[0,2,3]},{"y":3905.64,"x":-3727.22,"nodes":[34487,4882,60568,38172,51206,49642,52348],"orbits":[0,2,3,7]},{"y":1390.39,"x":-3724.22,"nodes":[53443,20645,59767,31292,64284,58528,45363,19011,27373,22928],"orbits":[0,3,4,5]},{"y":15657.229401417,"x":-712.99634356052,"nodes":[53108],"orbits":[0]},{"y":6318.1,"x":-3657.51,"nodes":[35265],"orbits":[0]},{"y":14406.179401417,"x":-676.82634356052,"nodes":[36728],"orbits":[0]},{"y":-8544.35,"x":-3593.46,"nodes":[62122,6748,37327,34248,48618,4295],"orbits":[0,3,7]},{"y":-7995.13,"x":-3593.46,"nodes":[34840],"orbits":[0]},{"y":-3487.38,"x":-3550.83,"nodes":[2071,37543,38420,16647],"orbits":[0,2]},{"y":7968.38,"x":-3547.11,"nodes":[38235,34671,61934,24477,17532,48418],"orbits":[0,2]},{"y":-6483.81,"x":-3535.39,"nodes":[57373],"orbits":[0]},{"y":15148.189401417,"x":-576.58634356052,"nodes":[36822],"orbits":[0]},{"y":12785.01,"x":-3525.71,"nodes":[46565],"orbits":[0]},{"y":12100.8,"x":-3517.93,"nodes":[27290],"orbits":[0]},{"y":321.55,"x":-3498.41,"nodes":[33397,51248,53294,38292,39594],"orbits":[0,2]},{"y":-6221.4,"x":-3497.77,"nodes":[44733],"orbits":[2]},{"y":-6832.63,"x":-3495.34,"nodes":[38300],"orbits":[0]},{"y":4125.9,"x":-3484.73,"nodes":[49550,61935,55746,4624],"orbits":[0,7]},{"y":-4982.21,"x":-3483.61,"nodes":[32660,8631,59256,51534,46760],"orbits":[0,2,3]},{"y":-4515.73,"x":-3461.56,"nodes":[8531],"orbits":[0]},{"y":-7186.71,"x":-3428.17,"nodes":[1433],"orbits":[6]},{"y":11031.12,"x":-3425.8,"nodes":[35284,3921,38398,31898,7473,2211,8154],"orbits":[0,7]},{"y":-1975.64,"x":-3421.76,"nodes":[12786],"orbits":[0]},{"y":5010.9,"x":-3415.77,"nodes":[46060,29788,44419,7251,29270,7488],"orbits":[0,7]},{"y":7009.85,"x":-3408.57,"nodes":[15374,48035,54676,39759,11329],"orbits":[0,2]},{"y":14639.139401417,"x":-440.18634356052,"nodes":[58591],"orbits":[0]},{"y":7490.9,"x":-3366.12,"nodes":[37612],"orbits":[0]},{"y":-7237,"x":-3317.95,"nodes":[65016,21206,6752,7378,968,45899,54911,31326,39716,44092,11505],"orbits":[0,2,3]},{"y":5858.65,"x":-3292.33,"nodes":[51299],"orbits":[2]},{"y":-1894.64,"x":-3281.46,"nodes":[17655,64299,50558,12462,19680,18465,39540,36602,6744,49357,32194,58651,5777,55194,44951,37629,55933],"orbits":[0,2,3,4,6]},{"y":12291.17,"x":-3230.62,"nodes":[26697],"orbits":[0]},{"y":-8995.5,"x":-3196.2,"nodes":[25303],"orbits":[0]},{"y":9964.43,"x":-3179.99,"nodes":[52746,9796,62310,54148,36325,56934],"orbits":[0,2,4,7]},{"y":556.13,"x":-3154.84,"nodes":[38323],"orbits":[0]},{"y":-551.55,"x":-3144.84,"nodes":[48305],"orbits":[0]},{"y":-9385.96,"x":-3142.23,"nodes":[39935],"orbits":[0]},{"y":-10395.75,"x":-3125.69,"nodes":[47168],"orbits":[0]},{"y":-1268.82,"x":-3114.85,"nodes":[17517,13233,62978,19873],"orbits":[0,2]},{"y":-5381.56,"x":-3109.62,"nodes":[30979],"orbits":[0]},{"y":12010.8,"x":-3090.1,"nodes":[37963,15855,59263,61441,54138],"orbits":[2,3,4,5,6]},{"y":-8364.27,"x":-3069.12,"nodes":[4407],"orbits":[0]},{"y":2529.2,"x":-3067.29,"nodes":[64327,18629,39517,49391,36629,44659,62732,53373,64192,18742],"orbits":[0,3,4,5]},{"y":-8608.16,"x":-3061.21,"nodes":[43366],"orbits":[0]},{"y":12013.21,"x":-3054.65,"nodes":[9762,10783,38564,20091],"orbits":[2,3,5,6]},{"y":-8762.37,"x":-3049.19,"nodes":[15194],"orbits":[0]},{"y":6253.4,"x":-3044.02,"nodes":[34747,24753,56567,151,6274],"orbits":[0,7]},{"y":4483.94,"x":-2998.56,"nodes":[43895,13562],"orbits":[7]},{"y":4483.94,"x":-2977.66,"nodes":[23650,56616,41415],"orbits":[0,2]},{"y":5127.02,"x":-2964.62,"nodes":[33169],"orbits":[0]},{"y":8508.26,"x":-2957.46,"nodes":[25011,60404,20691,41739],"orbits":[0,2]},{"y":-5824.67,"x":-2919.8,"nodes":[33618,39990,20718,13294],"orbits":[0,1,2,7]},{"y":-7995.13,"x":-2904.82,"nodes":[29148],"orbits":[0]},{"y":1645.22,"x":-2851.04,"nodes":[27726,32416,6529],"orbits":[2]},{"y":0.53,"x":-2849.6,"nodes":[8406,6015,35426],"orbits":[6,3]},{"y":-8749.27,"x":-2824.48,"nodes":[2606,21606,20388],"orbits":[1,2,3]},{"y":10498.42,"x":-2808.97,"nodes":[64471],"orbits":[4]},{"y":-1621.78,"x":-2808.15,"nodes":[22045,63209,30704,13505],"orbits":[0,7]},{"y":-1621.78,"x":-2808.15,"nodes":[4956],"orbits":[0]},{"y":-9385.96,"x":-2764.23,"nodes":[44344],"orbits":[0]},{"y":-9028.75,"x":-2730.42,"nodes":[14575],"orbits":[0]},{"y":-2063.25,"x":-2656.19,"nodes":[63469,57967,50216,30834],"orbits":[0,2]},null,{"y":-1090.72,"x":-2644.37,"nodes":[6898],"orbits":[0]},{"y":-8808.47,"x":-2625.49,"nodes":[3414],"orbits":[0]},{"y":7375.23,"x":-2620.07,"nodes":[23227,39564,3516],"orbits":[4,7]},{"y":7379.36,"x":-2620.07,"nodes":[38663,49618,62039],"orbits":[0,7]},{"y":7389.42,"x":-2620.07,"nodes":[55348],"orbits":[0]},{"y":7921.63,"x":-2620.07,"nodes":[13279],"orbits":[0]},{"y":-10245.46,"x":-2597.32,"nodes":[38105,49455,13537,44299,6006,23939,59425,2508,51797,22141,857,58789,46275,13307,26614,3894],"orbits":[0,4,7]},{"y":-8604.12,"x":-2588.8,"nodes":[47284],"orbits":[0]},{"y":3935.52,"x":-2557.26,"nodes":[23062,19122,28432,20416],"orbits":[0,2]},{"y":5385.78,"x":-2556.85,"nodes":[42177],"orbits":[0]},{"y":3454.27,"x":-2551.13,"nodes":[5920,52574,55478,48006,33604],"orbits":[0,2,7]},{"y":11113.83,"x":-2545.36,"nodes":[45824],"orbits":[0]},{"y":9843.04,"x":-2542.83,"nodes":[55152,42710,65287,56996,9568,41186,58117,13839,5580],"orbits":[0,2,3,4,5]},{"y":10828.42,"x":-2542.83,"nodes":[8493],"orbits":[0]},{"y":5371.8,"x":-2540.65,"nodes":[5049,43183,11153,49231],"orbits":[7]},{"y":-8376.52,"x":-2530.04,"nodes":[3332],"orbits":[0]},{"y":-1450.05,"x":-2522.24,"nodes":[53396,64370,45923,52319],"orbits":[6]},{"y":3479.47,"x":-2502.19,"nodes":[51921],"orbits":[6]},{"y":-3479.87,"x":-2457.53,"nodes":[58930,52429,6294,4847,14934,858,58387,52454,46604,2138,1546,38827,31890,25745,21081],"orbits":[2,3,4,5,7]},{"y":1033.71,"x":-2393.09,"nodes":[5710,14923,46325,33556,55473,43164,1207,13397,39581,6839],"orbits":[0,4,7]},{"y":-8977.68,"x":-2364.29,"nodes":[61042],"orbits":[0]},{"y":-7995.13,"x":-2357.94,"nodes":[33631],"orbits":[0]},{"y":8496,"x":-2353.54,"nodes":[33369],"orbits":[0]},{"y":-3487.38,"x":-2351.05,"nodes":[38856],"orbits":[6]},{"y":-4007.49,"x":-2291.85,"nodes":[46358,50423,59376],"orbits":[6]},{"y":-4242.75,"x":-2241.38,"nodes":[19240],"orbits":[0]},{"y":4750.59,"x":-2234.02,"nodes":[28860],"orbits":[0]},{"y":5028.07,"x":-2234.02,"nodes":[56104],"orbits":[0]},{"y":-1722.64,"x":-2228.21,"nodes":[28950],"orbits":[0]},{"y":3539.9,"x":-2221.54,"nodes":[13241],"orbits":[6]},{"y":3805.96,"x":-2199.44,"nodes":[53589],"orbits":[0]},{"y":-968.66,"x":-2188.85,"nodes":[17584,28446,12430,61067,1143,58170],"orbits":[2]},{"y":3688.8,"x":-2134.26,"nodes":[48670],"orbits":[6]},{"y":1554.69,"x":-2092.78,"nodes":[1913,4665,61534,7721,64683,41031,23570,36709,63393],"orbits":[0,4,7]},{"y":7612.1,"x":-2086.96,"nodes":[10772,21468,2119,39274,53505],"orbits":[0,2,3]},{"y":8229.42,"x":-2086.96,"nodes":[36634],"orbits":[0]},{"y":-4701.25,"x":-2076.24,"nodes":[48581,15969,41129,24338,15838,33242,13387],"orbits":[3,4,5,6]},{"y":-6987.04,"x":-2073.61,"nodes":[7424,27491,1823,36994,29432,4061,34531,25363,44098],"orbits":[4,7]},{"y":-10395.75,"x":-2071.82,"nodes":[54521],"orbits":[0]},{"y":2453.77,"x":-2059.23,"nodes":[54232],"orbits":[0]},{"y":-9444.54,"x":-2031.54,"nodes":[53524],"orbits":[0]},{"y":4519.75,"x":-2012.03,"nodes":[41646],"orbits":[0]},{"y":4750.59,"x":-2012.03,"nodes":[14091],"orbits":[0]},{"y":5028.07,"x":-2012.03,"nodes":[42981],"orbits":[0]},{"y":-8506.27,"x":-1940.55,"nodes":[20119,18160,15809,26945,31175,22783,30720,54036,17501],"orbits":[0,2,3,7]},{"y":-1422.19,"x":-1927.77,"nodes":[50626,32597,12777,3918,54708,59695],"orbits":[2]},{"y":-3294.04,"x":-1892.34,"nodes":[3041,47555,53697,10156,59795],"orbits":[3,5,6]},{"y":-9329.81,"x":-1863.91,"nodes":[57555],"orbits":[0]},{"y":6665.33,"x":-1863.48,"nodes":[13942,65023,18186,6626,32354,34433,24009,46475,16744,4716,24748],"orbits":[0,2,3,4]},{"y":4750.59,"x":-1789.41,"nodes":[23993],"orbits":[0]},{"y":5028.07,"x":-1789.41,"nodes":[8115],"orbits":[0]},{"y":-9560.06,"x":-1781.92,"nodes":[43647,32727,32507,12851,52973,37608],"orbits":[0,2,4,7]},{"y":3906.89,"x":-1769.02,"nodes":[7628],"orbits":[6]},{"y":3932.27,"x":-1717.06,"nodes":[53853,36170,28693,49280,57320],"orbits":[0,2,7]},{"y":9721.18,"x":-1683.9,"nodes":[35739],"orbits":[0]},{"y":9899.02,"x":-1636.23,"nodes":[3999,9737,59480,36522,37665,4577,42410,24813,8556],"orbits":[0,4,7]},{"y":8920.12,"x":-1610.62,"nodes":[6655],"orbits":[2]},{"y":10076.34,"x":-1588.72,"nodes":[20397],"orbits":[0]},{"y":8880.27,"x":-1587.62,"nodes":[35015],"orbits":[0]},{"y":-7995.13,"x":-1545.44,"nodes":[15885],"orbits":[0]},{"y":2648.54,"x":-1533.68,"nodes":[47796,62640,38501,27108,24880,17294,27501,19330,45916,34340,16168,45969,25374],"orbits":[2,4,5,6]},{"y":-734.8,"x":-1527.89,"nodes":[50084],"orbits":[0]},{"y":733.41,"x":-1525.89,"nodes":[3936],"orbits":[0]},{"y":8698.1,"x":-1482.46,"nodes":[58718],"orbits":[0]},{"y":-4703.73,"x":-1432.94,"nodes":[34058],"orbits":[0]},{"y":8880.27,"x":-1410.85,"nodes":[40336],"orbits":[0]},{"y":957.2,"x":-1397.89,"nodes":[38646],"orbits":[0]},{"y":-954.59,"x":-1396.89,"nodes":[13855],"orbits":[0]},{"y":10828.42,"x":-1367.15,"nodes":[54099],"orbits":[0]},{"y":11595,"x":-1367.15,"nodes":[17150,23888,29399,7390,53647,51446,19750],"orbits":[0,3]},{"y":-11122.46,"x":-1351.99,"nodes":[23450,558,23091,63021,11366,39515,39228,62603,19715,46300,52774,57832,34290,5084,35324,34927],"orbits":[0,2,3,4,5]},{"y":4972.79,"x":-1349.52,"nodes":[44707,32885,54785,51735,6689,45599],"orbits":[0,2,4,7]},{"y":-4290.85,"x":-1322.31,"nodes":[8349,56564,42077,31644,49235,14739,2102],"orbits":[0,2]},{"y":-7376.61,"x":-1316.98,"nodes":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3]},{"y":-3298.79,"x":-1309.39,"nodes":[39886],"orbits":[0]},{"y":8391.66,"x":-1305.68,"nodes":[65322],"orbits":[0]},{"y":8698.1,"x":-1305.68,"nodes":[47709],"orbits":[0]},{"y":733.1,"x":-1271.19,"nodes":[47175],"orbits":[0]},{"y":-728.9,"x":-1245.18,"nodes":[61525],"orbits":[0]},{"y":8879.97,"x":-1200.68,"nodes":[63814],"orbits":[0]},{"y":-10395.75,"x":-1184.99,"nodes":[45885],"orbits":[0]},{"y":-9609.62,"x":-1184.99,"nodes":[45570,43713,3051,35602,27009,30459],"orbits":[0,1,4,7]},{"y":4121.27,"x":-1181.15,"nodes":[40043,9857,55231,37361,54990],"orbits":[1,2,7]},{"y":7733.04,"x":-1170.69,"nodes":[8789,16938,29930,63182,37266],"orbits":[0,2,7]},{"y":8229.42,"x":-1170.69,"nodes":[54818],"orbits":[0]},{"y":8698.1,"x":-1137.16,"nodes":[13425],"orbits":[0]},{"y":11095.71,"x":-1099.85,"nodes":[28492],"orbits":[0]},{"y":8879.97,"x":-1032.12,"nodes":[315],"orbits":[0]},{"y":8919.8,"x":-1009.12,"nodes":[33216],"orbits":[2]},{"y":-5546.35,"x":-949.03,"nodes":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776],"orbits":[0,2,3,4]},{"y":-7995.13,"x":-793.84,"nodes":[49512],"orbits":[0]},{"y":-8777.76,"x":-792.8,"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4]},{"y":5189.25,"x":-767.04,"nodes":[46343],"orbits":[0]},{"y":-2537.92,"x":-752.96,"nodes":[18407],"orbits":[0]},{"y":6556.71,"x":-617.1,"nodes":[58714,29514,21077,3109,36169,354,48429,52274,39431],"orbits":[0,3,4]},{"y":-14993.055865568,"x":-4948.9690050971,"nodes":[18158],"orbits":[0]},{"y":8229.42,"x":-593.45,"nodes":[15182],"orbits":[0]},{"y":9710.46,"x":-484.77,"nodes":[29402,4046,8875,50687],"orbits":[1,2,7]},{"y":-3316.19,"x":-478.3,"nodes":[22821,22314],"orbits":[0,7]},{"y":-3030.38,"x":-478.3,"nodes":[51184],"orbits":[0]},{"y":-3752.19,"x":-478.24,"nodes":[3823,60230,51968,51335,64046,45522,5726],"orbits":[0,1,3,5,7]},{"y":-4703.73,"x":-478.02,"nodes":[56935],"orbits":[0]},{"y":-2158.22,"x":-478.01,"nodes":[22419],"orbits":[0]},{"y":10441.13,"x":-457.32,"nodes":[55066,19796,15899,18308,21721,21627],"orbits":[2,3,4,7]},{"y":-7425.82,"x":-450.05,"nodes":[10398,3472,56640,26682],"orbits":[7]},{"y":8759.96,"x":-420.58,"nodes":[7049,25711,31566,22556,11257,10271,58038,35028,51974],"orbits":[0,2,3]},{"y":4842.33,"x":-420.12,"nodes":[47363,13708,9164,25513,51825,47856,32561],"orbits":[2,3,4,5,6]},{"y":3700.21,"x":-405.01,"nodes":[62588],"orbits":[0]},{"y":4798.23,"x":-376.02,"nodes":[14997],"orbits":[0]},{"y":-2574.13,"x":-374.23,"nodes":[55807,6686,1922,41965,1755,18845],"orbits":[0,2,7]},{"y":-9708.04,"x":-353.71,"nodes":[35492,30523,11376,50720,34199,43557],"orbits":[1,3,4,5,7]},{"y":-14331.845865568,"x":-4656.6990050971,"nodes":[36564,17754,24039,46644,18348,25239,61267,13174,34419,19482,39470,770,46016,8854,7793,64379,63894,23880,63484,24135,32699],"orbits":[6,5,9,8]},{"y":3156.44,"x":-262.23,"nodes":[28510,61438,42350],"orbits":[6]},{"y":2491.06,"x":-257.48,"nodes":[5407],"orbits":[0]},{"y":7972.75,"x":-248.37,"nodes":[934,9825,12526],"orbits":[4,3]},{"y":2592.67,"x":-203.43,"nodes":[44605,2455,48588,13081],"orbits":[5]},{"y":3700.23,"x":-152.71,"nodes":[57039,14572,11037],"orbits":[3]},{"y":3572.61,"x":-150.31,"nodes":[29328,43201,43383,37450],"orbits":[4]},{"y":1690.41,"x":-133.15,"nodes":[59779],"orbits":[0]},null,{"y":-1405.7,"x":-30.93,"nodes":[44871],"orbits":[3]},{"y":-7301.82,"x":-0.88,"nodes":[46819],"orbits":[0]},{"y":-11153.83,"x":0,"nodes":[11337,29369,23427,47270,52799,60515,44455,19955,62914,41669,55250,56649,41972,17380],"orbits":[0,1,3,4]},{"y":-10395.75,"x":0,"nodes":[61419],"orbits":[0]},{"y":-9772.2,"x":0,"nodes":[29009],"orbits":[0]},{"y":-9371.2,"x":0,"nodes":[5314],"orbits":[4]},{"y":-7995.13,"x":0,"nodes":[59362],"orbits":[0]},{"y":-5955.17,"x":0,"nodes":[8616],"orbits":[0]},{"y":-4700.35,"x":0,"nodes":[57710],"orbits":[6]},{"y":-4439.9,"x":0,"nodes":[22290,5501,48821,15618,32404],"orbits":[0,2,3]},{"y":-3031.45,"x":0,"nodes":[29502,47307,36302,3242,13769,59636,48007],"orbits":[0,2,7]},{"y":-1490.58,"x":0,"nodes":[54447],"orbits":[0]},{"y":10105.93,"x":0.13,"nodes":[52125],"orbits":[0]},{"y":10828.42,"x":0.13,"nodes":[54127],"orbits":[0]},{"y":11836.46,"x":0.13,"nodes":[44176,16618,10273,49696,42280,24511,45272,21205,57047,35688,38138,45278,4492],"orbits":[0,5,7]},{"y":3822.38,"x":1.25,"nodes":[54417,49657],"orbits":[6]},{"y":3822.38,"x":1.63,"nodes":[10247,28370],"orbits":[6]},{"y":1469.82,"x":1.95,"nodes":[50986],"orbits":[0]},{"y":2418.36,"x":1.95,"nodes":[52442,14254,97],"orbits":[2]},{"y":2829.7,"x":1.95,"nodes":[47150,38779,44836],"orbits":[2]},{"y":6250.78,"x":1.95,"nodes":[48635],"orbits":[0]},{"y":7013.94,"x":1.95,"nodes":[21755],"orbits":[0]},{"y":5712,"x":3.72,"nodes":[57805,43444,7788],"orbits":[4,7]},{"y":5712,"x":4.1,"nodes":[38003,28361,47782],"orbits":[4,7]},{"y":-6484.35,"x":5.06,"nodes":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7]},{"y":5223.21,"x":6.24,"nodes":[63526],"orbits":[0]},{"y":8229.42,"x":8.31,"nodes":[2847],"orbits":[0]},{"y":9742.42,"x":8.31,"nodes":[54282],"orbits":[3]},{"y":-1404.7,"x":28.94,"nodes":[4739],"orbits":[3]},{"y":1689.33,"x":136.86,"nodes":[59915],"orbits":[0]},{"y":3572.63,"x":150.01,"nodes":[41210,43578,59028,8092],"orbits":[4]},{"y":3700.21,"x":151.5,"nodes":[50609,14926,11916],"orbits":[3]},{"y":2596.07,"x":225.42,"nodes":[11311,38057,34061,56910],"orbits":[5]},{"y":6565.73,"x":260.71,"nodes":[16538,9217,61281,47733,5108,44330],"orbits":[0,2,3]},{"y":-14753.775865568,"x":-4086.0390050971,"nodes":[10694],"orbits":[0]},{"y":3155.84,"x":262.02,"nodes":[7741,42500,59881],"orbits":[6]},{"y":7972.57,"x":265.15,"nodes":[17340,40341,62051],"orbits":[4,3]},{"y":2491.06,"x":273.71,"nodes":[2461],"orbits":[0]},{"y":-2574.13,"x":371.9,"nodes":[30346,34006,15408,29695,43736,6338],"orbits":[0,2,7]},{"y":3700.23,"x":407.71,"nodes":[1477],"orbits":[0]},{"y":-4284.19,"x":419.3,"nodes":[517],"orbits":[0]},{"y":-9854.2,"x":424.33,"nodes":[4017,12918,26447,10079,49633],"orbits":[0,2]},{"y":-2158.22,"x":472.38,"nodes":[56216],"orbits":[0]},{"y":-4703.51,"x":486.61,"nodes":[39037],"orbits":[0]},{"y":-3752.19,"x":486.99,"nodes":[14666,9642,17973,4748,61027],"orbits":[0,3,7]},{"y":-3030.38,"x":486.99,"nodes":[2254],"orbits":[0]},{"y":-8654.59,"x":494.7,"nodes":[4113,36782,55572,44179],"orbits":[0,7]},{"y":-8654.42,"x":494.7,"nodes":[1151,4627,57626],"orbits":[7]},{"y":-7995.13,"x":497.14,"nodes":[3025],"orbits":[0]},{"y":-7301.82,"x":497.9,"nodes":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,4,7]},{"y":8723.77,"x":502.65,"nodes":[44765,22533,11066,26663,32233],"orbits":[0,2,3,7]},{"y":-5930.42,"x":533.4,"nodes":[58090,13542,48774,34367,21540,27658,44850],"orbits":[0,7]},{"y":9564.7,"x":541.38,"nodes":[45576,51944,55060,43829,49406,47683,51728,33037,6505],"orbits":[0,2,3,4,5,7]},{"y":-4284.19,"x":552.41,"nodes":[22691],"orbits":[0]},{"y":8229.3,"x":610.22,"nodes":[56978],"orbits":[0]},{"y":5034.86,"x":615.53,"nodes":[8872],"orbits":[0]},{"y":5034.86,"x":615.53,"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3]},null,{"y":7013.94,"x":729.71,"nodes":[19223,25213,27270,37872,21871,51847,33974,31189,64665,28863],"orbits":[0,4,7]},{"y":-2537.92,"x":756.52,"nodes":[9485],"orbits":[0]},{"y":-5167.46,"x":842.34,"nodes":[53975,55104,33254,19125],"orbits":[1,2,7]},{"y":-11153.83,"x":855.73,"nodes":[15083],"orbits":[0]},{"y":11379.02,"x":940.85,"nodes":[35653],"orbits":[0]},{"y":-11368.6,"x":979.73,"nodes":[22271],"orbits":[0]},{"y":4639.54,"x":1010.78,"nodes":[58109],"orbits":[0]},{"y":-5546.35,"x":1061.08,"nodes":[40783],"orbits":[0]},{"y":-7995.13,"x":1063.41,"nodes":[38732],"orbits":[0]},{"y":-11138.26,"x":1079.94,"nodes":[18651],"orbits":[0]},{"y":-11559.12,"x":1089.73,"nodes":[55554],"orbits":[0]},{"y":-3001.45,"x":1089.99,"nodes":[60685],"orbits":[0]},{"y":-9412.83,"x":1120.74,"nodes":[40345,42290,52254,37991],"orbits":[7]},{"y":-9540.92,"x":1123.28,"nodes":[50540],"orbits":[0]},{"y":-9669,"x":1125.8,"nodes":[36639,32009,36814,16499],"orbits":[7]},{"y":10210.59,"x":1168.66,"nodes":[25619,42354,57196,23702,43562,3660,63445,59501],"orbits":[0,2,3]},{"y":10828.42,"x":1168.66,"nodes":[55802],"orbits":[0]},{"y":11146.25,"x":1168.66,"nodes":[3717],"orbits":[0]},{"y":-7361.54,"x":1172.02,"nodes":[33180,11788,14355,60269,8483,46989,16845,6588],"orbits":[0,6,7]},{"y":-10395.55,"x":1185.03,"nodes":[62677],"orbits":[0]},{"y":8229.3,"x":1188.06,"nodes":[21274],"orbits":[0]},{"y":8669.63,"x":1188.06,"nodes":[57190,27859,38694,38763,22188],"orbits":[1,7]},{"y":-11753.77,"x":1197.13,"nodes":[26905],"orbits":[3]},{"y":-11414.66,"x":1199.73,"nodes":[11736,8821,28975],"orbits":[3,4,6]},{"y":-728.84,"x":1270.43,"nodes":[44683],"orbits":[0]},{"y":735.85,"x":1274.68,"nodes":[50459],"orbits":[0]},{"y":-3294.7,"x":1308.1,"nodes":[1826],"orbits":[0]},{"y":-11545.12,"x":1317.44,"nodes":[63863,27785],"orbits":[0,7]},{"y":-11139.64,"x":1331.34,"nodes":[36293,55708],"orbits":[0,7]},{"y":9646.22,"x":1353.57,"nodes":[44566],"orbits":[0]},{"y":11380.85,"x":1366.53,"nodes":[65468],"orbits":[0]},{"y":-4183.63,"x":1423.72,"nodes":[48030,6715,62436,116,3215,41372,44359],"orbits":[0,7]},{"y":-10128.26,"x":1452.32,"nodes":[47759],"orbits":[0]},{"y":3454.96,"x":1474.81,"nodes":[53996,17686,43575,41512],"orbits":[7]},{"y":-2826.54,"x":1484.79,"nodes":[42736],"orbits":[0]},{"y":2614.41,"x":1516.21,"nodes":[10909,16489,28556],"orbits":[6,3]},{"y":11253.56,"x":1559.69,"nodes":[19998],"orbits":[0]},{"y":5468.94,"x":1562.78,"nodes":[2486,19341,56118,61487,36596,8440,63732,45013,58884],"orbits":[0,1,3,4,7]},{"y":-4703.51,"x":1563.03,"nodes":[11672],"orbits":[0]},{"y":4074.07,"x":1564.64,"nodes":[58783,37190,35855,48583,26520,35859],"orbits":[0,2]},{"y":3240.19,"x":1598.81,"nodes":[39116,9941,38888],"orbits":[7,3]},{"y":-3445.28,"x":1600.36,"nodes":[42076,46972,17706],"orbits":[0,2,7]},{"y":-3528.07,"x":1609.6,"nodes":[54783],"orbits":[1]},{"y":1718.94,"x":1634.14,"nodes":[48401,15507,1140],"orbits":[2,3,6]},{"y":9770.52,"x":1657.19,"nodes":[48846],"orbits":[0]},{"y":-15936.832811271,"x":-2333.1006527255,"nodes":[30117],"orbits":[0]},{"y":-2698.11,"x":1695.71,"nodes":[30555],"orbits":[0]},{"y":-2969.93,"x":1714.69,"nodes":[4203],"orbits":[0]},{"y":4453,"x":1734.98,"nodes":[14340],"orbits":[0]},{"y":4819.73,"x":1734.98,"nodes":[58939,26319,30990,44608],"orbits":[0,2]},{"y":-8459.25,"x":1739.33,"nodes":[57810],"orbits":[0]},{"y":1310.44,"x":1749.97,"nodes":[13828,49691,31409,50437,32274,61106,59653,35987],"orbits":[0,2,4,7]},{"y":7652.52,"x":1756.1,"nodes":[3995,12311,64119,18115,48856,17882,33596],"orbits":[0,7]},{"y":8224.29,"x":1756.1,"nodes":[6230],"orbits":[0]},{"y":-14850.802811271,"x":-2257.2906527255,"nodes":[48551],"orbits":[0]},{"y":-8813.02,"x":1775.79,"nodes":[40073],"orbits":[0]},{"y":-7166.71,"x":1798.44,"nodes":[48290,49088,47155,55180,17394,45530,3443,63545],"orbits":[0,2,3,7]},{"y":-1202.94,"x":1821.35,"nodes":[7576,33866,10364,42857,20024,44223,55342,17248,10429,49220],"orbits":[0,1,2,4,5,7]},{"y":-7995.13,"x":1834.81,"nodes":[28475],"orbits":[0]},{"y":11423.83,"x":1857.66,"nodes":[7062,16680,48137,33887,43155,31763,33415,6178],"orbits":[4]},{"y":6744.84,"x":1899.93,"nodes":[64726,19573,17553,46296,38479,19342,27493],"orbits":[1,2,3,4,7]},{"y":11359.34,"x":1954.46,"nodes":[44430],"orbits":[0]},{"y":-978.15,"x":1958.85,"nodes":[44343,55276,52980,17366,18970,29361,11938,39964,1215,48198],"orbits":[0,1,2,4,5,7]},{"y":-9606.62,"x":1960.52,"nodes":[33225],"orbits":[0]},{"y":-5415.73,"x":1970.55,"nodes":[39987,12419,18913,56063],"orbits":[0,2,3,7]},{"y":8703.04,"x":1984.84,"nodes":[10998,9736,61396,61318,1019,45037,21438,62235],"orbits":[0,2,3,4,7]},{"y":-4242.81,"x":1986.68,"nodes":[21779,9185,40760,60107,57204,47833],"orbits":[0,2]},{"y":855.02,"x":2012.88,"nodes":[35660,18548,62628,4313,56651,35234,6789,28992],"orbits":[0,2,4,7]},{"y":2999.71,"x":2015.32,"nodes":[17726,11826],"orbits":[7]},{"y":9673.14,"x":2015.42,"nodes":[11315],"orbits":[0]},{"y":-8410.02,"x":2049.52,"nodes":[20387],"orbits":[0]},{"y":-10786.21,"x":2107.3,"nodes":[63861,55947,13823,46088,62153,32054],"orbits":[3,2]},{"y":-10394.21,"x":2107.3,"nodes":[46554],"orbits":[0]},{"y":-9931.58,"x":2107.3,"nodes":[41225,48611,4271,62887],"orbits":[0,2]},{"y":-4703.51,"x":2110.13,"nodes":[47177],"orbits":[0]},{"y":-9242.62,"x":2123.13,"nodes":[13738],"orbits":[0]},{"y":-9511.45,"x":2157.18,"nodes":[61768],"orbits":[0]},{"y":-6650.5,"x":2165.23,"nodes":[56926,44255,14548,59541,10320,28573,15358,41905],"orbits":[0,2,3,7]},{"y":4717.44,"x":2192.99,"nodes":[2841,33059,39839,20205],"orbits":[0,2]},{"y":-14556.092811271,"x":-1819.1806527255,"nodes":[26383],"orbits":[0]},{"y":3806.76,"x":2199.2,"nodes":[48568],"orbits":[0]},{"y":-3836.38,"x":2214.93,"nodes":[49046],"orbits":[0]},{"y":-3149.3,"x":2229.99,"nodes":[62159,59603,57110,46561],"orbits":[0,2,7]},{"y":11545.87,"x":2242.8,"nodes":[61432],"orbits":[0]},{"y":9939.27,"x":2260.4,"nodes":[5961],"orbits":[0]},{"y":-8744.45,"x":2262.33,"nodes":[17024],"orbits":[0]},{"y":10332.05,"x":2281.59,"nodes":[54675],"orbits":[0]},{"y":-3970.17,"x":2292.18,"nodes":[58329,31950,8569],"orbits":[6]},{"y":556.07,"x":2305.52,"nodes":[16460,43746,38143],"orbits":[2,3,6]},null,{"y":-9025.62,"x":2327.18,"nodes":[37372],"orbits":[0]},{"y":-8192.45,"x":2363.78,"nodes":[53266],"orbits":[0]},{"y":2986.75,"x":2377.83,"nodes":[20744,33053,4844,50795,58013],"orbits":[1,7]},{"y":-9611.59,"x":2393.91,"nodes":[63926],"orbits":[0]},{"y":-14986.842811271,"x":-1575.1806527255,"nodes":[52703,8415,26282,27667,23416,56162,7656,62388,30071,59342,59822],"orbits":[6,5,9,8]},{"y":3459.95,"x":2457.39,"nodes":[46224,24045,49799,45019],"orbits":[0,2]},{"y":4266.46,"x":2459.2,"nodes":[26786,18882],"orbits":[0,5]},{"y":-3622.89,"x":2459.21,"nodes":[23764],"orbits":[0]},{"y":-5120.46,"x":2474.06,"nodes":[50485,28229,8540,45230,22959],"orbits":[0,2]},{"y":9574.5,"x":2476.38,"nodes":[5295],"orbits":[0]},{"y":7415.67,"x":2503.68,"nodes":[19288],"orbits":[0]},{"y":7792.67,"x":2503.68,"nodes":[38814],"orbits":[0]},{"y":8595.66,"x":2503.68,"nodes":[20504,52836,56806,11980,62341],"orbits":[0,4,7]},{"y":-8588.17,"x":2524.57,"nodes":[13576],"orbits":[0]},{"y":10828.42,"x":2568.17,"nodes":[58814],"orbits":[0]},{"y":1485.46,"x":2573.06,"nodes":[29582,43923,19470,50328,10053,9458],"orbits":[0,2,3]},{"y":-4030.32,"x":2577.55,"nodes":[4850],"orbits":[0]},{"y":5169.65,"x":2590.36,"nodes":[11855,56999,44014,30829],"orbits":[0,2]},{"y":-7324.15,"x":2590.88,"nodes":[58002,55575,45086,34520,23738],"orbits":[0,2,3,7]},{"y":-7995.13,"x":2634.6,"nodes":[35896],"orbits":[0]},{"y":-5692.92,"x":2653.82,"nodes":[34984,12661,44917,18895,703,10552],"orbits":[0,1,7]},{"y":-14556.092811271,"x":-1331.1606527255,"nodes":[31223],"orbits":[0]},{"y":-2103.71,"x":2694.54,"nodes":[4157,55088,34168],"orbits":[7]},{"y":-2329.78,"x":2704.11,"nodes":[53960],"orbits":[5]},{"y":-2058.41,"x":2724.74,"nodes":[36479,36778,12925],"orbits":[4]},{"y":2024.66,"x":2727.45,"nodes":[61312,20831,29843,48585,55397,40630,44527,44875],"orbits":[0,2,4,7]},{"y":-8432.77,"x":2737.88,"nodes":[53560],"orbits":[0]},{"y":-3760.9,"x":2744.59,"nodes":[35503],"orbits":[0]},{"y":-2001.95,"x":2753.29,"nodes":[34233,14725,32545,16123],"orbits":[3,2]},{"y":1599.66,"x":2770.83,"nodes":[19104],"orbits":[0]},{"y":4311.96,"x":2806.74,"nodes":[64352],"orbits":[0]},{"y":11410.84,"x":2822.01,"nodes":[63731],"orbits":[0]},{"y":-8695.66,"x":2875.59,"nodes":[37806],"orbits":[0]},{"y":9533.6,"x":2880.86,"nodes":[12337],"orbits":[0]},{"y":-3430.12,"x":2886.44,"nodes":[25281,10677,56638,53935],"orbits":[1,2]},{"y":-4100.44,"x":2886.7,"nodes":[7405],"orbits":[0]},{"y":-10114.18,"x":2922.78,"nodes":[62230,19355,37974],"orbits":[6]},{"y":-9973.75,"x":2922.78,"nodes":[39567,50816,50755,10159,4828,25026,36379,31977,19044,3567,33345,10314,61923,16256,53188],"orbits":[0,1,2,3,4,5]},{"y":-1694.84,"x":2935.56,"nodes":[21336,15975,62984,58182,7344,26931],"orbits":[3,2]},{"y":-2768.08,"x":2939.76,"nodes":[8975],"orbits":[0]},{"y":4537.32,"x":2947.79,"nodes":[44345],"orbits":[0]},{"y":11341.18,"x":2951.74,"nodes":[52354],"orbits":[0]},{"y":11601.88,"x":3014.72,"nodes":[9020,244,41171,37767,6596,36341,35118],"orbits":[0,1,2,4,7]},{"y":-8449.68,"x":3025.39,"nodes":[46157],"orbits":[0]},{"y":-6418.35,"x":3049.32,"nodes":[38614,25827,55241,44201,27662],"orbits":[1,2,3]},{"y":6562.01,"x":3065.84,"nodes":[53196,12322,32135,35848,28625,46692,51509,9393],"orbits":[0,1,4,7]},{"y":5345.94,"x":3086.31,"nodes":[42250],"orbits":[0]},{"y":1336.95,"x":3109.38,"nodes":[6772,30695,13783,19808,56472,22795,55429,42781],"orbits":[0,2,4,7]},{"y":7440.94,"x":3112.88,"nodes":[17118],"orbits":[0]},{"y":8088.26,"x":3112.88,"nodes":[20049,30252,32818,48135,12750],"orbits":[0,7]},{"y":-14850.802811271,"x":-904.29065272554,"nodes":[50192],"orbits":[0]},{"y":-1389.24,"x":3116.47,"nodes":[63064,65437,30634,54413],"orbits":[3,2]},{"y":10116,"x":3117.89,"nodes":[33946,34074,57227,23259,22864,57966],"orbits":[0,2,3,7]},{"y":-5418.83,"x":3128.56,"nodes":[46034],"orbits":[0]},{"y":3080.1,"x":3144.14,"nodes":[30047],"orbits":[0]},{"y":-1331.11,"x":3145.56,"nodes":[40068,53149,32683],"orbits":[4]},{"y":-15936.802811271,"x":-816.76065272554,"nodes":[3165],"orbits":[0]},{"y":9325.66,"x":3203.89,"nodes":[53965],"orbits":[0]},{"y":0.42,"x":3203.92,"nodes":[24825,34136,29479],"orbits":[5,3]},{"y":4292.78,"x":3228.15,"nodes":[48833],"orbits":[0]},{"y":4552.82,"x":3249.41,"nodes":[4],"orbits":[0]},{"y":-8000,"x":3266.72,"nodes":[55668],"orbits":[0]},{"y":-9003.35,"x":3284.63,"nodes":[29240],"orbits":[0]},{"y":3552.85,"x":3291.21,"nodes":[13341,56841,18451,63255],"orbits":[0,2]},{"y":4003.79,"x":3312.53,"nodes":[25170,19442,30820,8606],"orbits":[0,2,7]},{"y":-1178.15,"x":3369.01,"nodes":[13411],"orbits":[5]},{"y":-6936.23,"x":3371.91,"nodes":[25620,26804,55405,59909,30539,9083],"orbits":[0,1,7]},{"y":-9368.47,"x":3382.46,"nodes":[57513],"orbits":[0]},{"y":6043.67,"x":3395.61,"nodes":[16484],"orbits":[2]},{"y":-7266.34,"x":3446.89,"nodes":[25557],"orbits":[6]},{"y":2467.05,"x":3498.09,"nodes":[21280],"orbits":[0]},{"y":4752.05,"x":3512.67,"nodes":[11578],"orbits":[0]},{"y":-6134.17,"x":3541.56,"nodes":[41029],"orbits":[0]},{"y":2050.41,"x":3551.58,"nodes":[28050],"orbits":[6]},{"y":4441.55,"x":3555.53,"nodes":[5564],"orbits":[0]},{"y":-3733.75,"x":3563.72,"nodes":[24812,56360,64643,27176],"orbits":[0,2]},{"y":-9003.35,"x":3612.63,"nodes":[11838,10881,33112,36450],"orbits":[0,3,7]},{"y":-2983.2,"x":3632.11,"nodes":[17548,14958,630,13419,31039],"orbits":[0,1,7]},{"y":-482.86,"x":3641.03,"nodes":[24239,55846,40213,24481],"orbits":[0,1]},{"y":2776,"x":3664.91,"nodes":[64851,49545,45693,39658,18831],"orbits":[0,2,7]},{"y":-5089.48,"x":3699.04,"nodes":[5257,55507,22359,9141,13748,38338,35760,16367,60692,5703],"orbits":[0,3,4,7]},{"y":9144.92,"x":3713.22,"nodes":[14343],"orbits":[0]},{"y":6441.08,"x":3718.59,"nodes":[46830],"orbits":[0]},{"y":5692.67,"x":3722.97,"nodes":[25100],"orbits":[0]},{"y":-8266.37,"x":3728.09,"nodes":[47754,23455,49740,55847,27274],"orbits":[0,1,7]},{"y":-10338.81,"x":3772.63,"nodes":[10131],"orbits":[0]},{"y":10291.5,"x":3772.84,"nodes":[51048],"orbits":[0]},{"y":8437.76,"x":3775.92,"nodes":[62510,3985,43423,8697,30905,64140,51336,56818,38895,48660],"orbits":[0,2,3,4]},{"y":-1186.7,"x":3849.74,"nodes":[5702],"orbits":[0]},{"y":-2226.59,"x":3856.59,"nodes":[56045],"orbits":[0]},{"y":1790.7,"x":3888.73,"nodes":[60505],"orbits":[0]},{"y":3186.63,"x":3903.72,"nodes":[44612,9112,41538,55598,15644],"orbits":[0,1,3]},{"y":-10915.24,"x":3912.58,"nodes":[39280,55568,44669,32951,14127,44690,41522],"orbits":[0,2,3]},{"y":4292.71,"x":3915.95,"nodes":[63585],"orbits":[0]},{"y":449.43,"x":3918.15,"nodes":[31855,37408,60738,46761],"orbits":[0,2,7]},{"y":-6815.5,"x":3934.94,"nodes":[24321],"orbits":[0]},{"y":-6120.94,"x":3937.85,"nodes":[44563,59053,54805],"orbits":[0,3,5]},{"y":7406.81,"x":3941.17,"nodes":[33751,8810,12451],"orbits":[1,3,7]},{"y":940.43,"x":3990.34,"nodes":[11472,19880,59390,40270],"orbits":[0,2]},{"y":6086.8,"x":3992.99,"nodes":[18923],"orbits":[6]},{"y":-485.92,"x":3994,"nodes":[46146,15829,55227],"orbits":[0,7]},{"y":9341.54,"x":4018.45,"nodes":[54746],"orbits":[0]},{"y":-4125.73,"x":4022.98,"nodes":[21080,1869,27095,48658,14890],"orbits":[0,2,7]},{"y":0.42,"x":4039.97,"nodes":[43691,21746,65009,29517,32701],"orbits":[6]},{"y":10777.04,"x":4053.17,"nodes":[38703,63525,8249,16816,53094],"orbits":[0,7]},{"y":-2406.01,"x":4137.88,"nodes":[24647,61196],"orbits":[6]},{"y":-9665.79,"x":4155.05,"nodes":[36623,3628,64474,31630,10729],"orbits":[0,2]},{"y":6218.3,"x":4182.56,"nodes":[37220,50342,5227,17955,46402,51708],"orbits":[0,2,3,7]},{"y":4693.55,"x":4216.28,"nodes":[41062,47677,14045,33848,31991,65176,36070,9472],"orbits":[0,4,5,6,7]},{"y":9522.08,"x":4254.44,"nodes":[49110],"orbits":[0]},{"y":-8159.77,"x":4274.57,"nodes":[33979],"orbits":[0]},{"y":-271.82,"x":4332.46,"nodes":[44239,60083,55270],"orbits":[0,7]},{"y":5420.02,"x":4364.01,"nodes":[13030],"orbits":[0]},{"y":0.42,"x":4375.94,"nodes":[50469],"orbits":[0]},{"y":-4923.23,"x":4408.83,"nodes":[33823],"orbits":[0]},{"y":-5257.07,"x":4412.03,"nodes":[4519],"orbits":[0]},{"y":-4689.37,"x":4412.03,"nodes":[20236],"orbits":[0]},{"y":-1892.44,"x":4435.38,"nodes":[12761,19156,53941,17367,62841,12249,17283],"orbits":[0,2,3]},{"y":-3100.56,"x":4438.01,"nodes":[45481,29408,52765,34300,31888,13862],"orbits":[0,2]},{"y":406.27,"x":4462.98,"nodes":[23915,41529,21380,31284],"orbits":[0,1,2,7]},{"y":7833.83,"x":4518.83,"nodes":[24922],"orbits":[0]},{"y":5167.31,"x":4545.96,"nodes":[55],"orbits":[0]},{"y":-4974.35,"x":4575.26,"nodes":[4346],"orbits":[0]},{"y":9590.47,"x":4580.98,"nodes":[27262],"orbits":[0]},{"y":-6637.17,"x":4594,"nodes":[30562,13711,3203,8908,11032],"orbits":[0,2,7]},{"y":-7970.77,"x":4601.94,"nodes":[4059],"orbits":[0]},{"y":1375.23,"x":4605.3,"nodes":[45193,4083,33815,35644,43677],"orbits":[0,2,3]},{"y":5645.34,"x":4609.67,"nodes":[8510],"orbits":[0]},{"y":3196.7,"x":4618.5,"nodes":[48519,62438,43695,59142,28272,1594,56870,18750],"orbits":[1,2,3,7]},{"y":-9922.16,"x":4663.79,"nodes":[3251],"orbits":[0]},{"y":-2696.8,"x":4671.13,"nodes":[11604],"orbits":[0]},{"y":-1131.48,"x":4693.48,"nodes":[46380,21327,56876,1104],"orbits":[0,2]},{"y":-4974.35,"x":4742.03,"nodes":[13724],"orbits":[4]},{"y":7381.77,"x":4763.42,"nodes":[49661,49394,23786,33391,56330,39570],"orbits":[1,2,3,4,7]},{"y":9831.08,"x":4788.07,"nodes":[17702],"orbits":[0]},{"y":2293.82,"x":4791.75,"nodes":[1995],"orbits":[0]},{"y":5399.33,"x":4794.28,"nodes":[40918],"orbits":[0]},{"y":-4604.29,"x":4807.36,"nodes":[9586],"orbits":[4]},{"y":5089.21,"x":4815.03,"nodes":[1773],"orbits":[0]},{"y":1790.7,"x":4836.36,"nodes":[59047,20165,15051,21005,5701,24347,2656],"orbits":[0,2,3]},{"y":6440.13,"x":4846.33,"nodes":[61976],"orbits":[0]},{"y":5874.26,"x":4853.1,"nodes":[36298],"orbits":[0]},{"y":10455.42,"x":4874.52,"nodes":[23343,30392,13157,3775,28106,45244,58388,41016],"orbits":[0,2,3]},{"y":-7413.25,"x":4889.32,"nodes":[29763],"orbits":[0]},{"y":4793.73,"x":4889.52,"nodes":[51213],"orbits":[0]},{"y":-9126,"x":4893.51,"nodes":[22152,15304,16466,40196],"orbits":[0,2]},{"y":8478.38,"x":4895,"nodes":[34201],"orbits":[0]},{"y":9227.51,"x":4895,"nodes":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7]},{"y":-4971.48,"x":4931.13,"nodes":[20677],"orbits":[0]},{"y":2387.3,"x":4953.65,"nodes":[61356,12498,30341],"orbits":[0,7]},{"y":2861.7,"x":4955.38,"nodes":[63888],"orbits":[0]},{"y":-10454.74,"x":4971.28,"nodes":[18121,45319,55041,26135,35564,2335,65310,51565,22682],"orbits":[0,3]},{"y":-8629.92,"x":4982.5,"nodes":[10382],"orbits":[0]},{"y":542.4,"x":4989.84,"nodes":[37695],"orbits":[0]},{"y":-6098.03,"x":5055.55,"nodes":[20820,1106,44628,40166,48544],"orbits":[0,1,7]},{"y":-5200.3,"x":5063.02,"nodes":[9782],"orbits":[0]},{"y":-4742.69,"x":5063.02,"nodes":[535],"orbits":[0]},{"y":585.09,"x":5074.6,"nodes":[38044,11813],"orbits":[7]},{"y":2295.51,"x":5112.65,"nodes":[37946],"orbits":[0]},{"y":-706.97,"x":5145.98,"nodes":[46782,53698,20916,59355],"orbits":[0,7]},{"y":-2374.62,"x":5158.73,"nodes":[13367,21713,50588,38969,6010],"orbits":[0,2]},{"y":-2375.16,"x":5164.36,"nodes":[26148],"orbits":[0]},{"y":-7902.46,"x":5181.81,"nodes":[41645,6490,43964,14082,8831],"orbits":[0,2,4,7]},null,{"y":-5429.12,"x":5194.92,"nodes":[28021],"orbits":[0]},{"y":-4513.87,"x":5194.92,"nodes":[34621],"orbits":[0]},{"y":3481.47,"x":5235.35,"nodes":[3234,10927,9272,18470,4447],"orbits":[1,2,3,7]},{"y":4976.96,"x":5279.84,"nodes":[32813],"orbits":[2]},{"y":5262.42,"x":5279.84,"nodes":[59600,12208,13619,35809],"orbits":[1,7]},{"y":5356.65,"x":5279.84,"nodes":[49466,9411,30871],"orbits":[7]},{"y":719.09,"x":5286.04,"nodes":[30456],"orbits":[0]},{"y":-7410.44,"x":5288.98,"nodes":[39423,47635,53207,56914],"orbits":[1,2,3,7]},{"y":-3797.31,"x":5300.06,"nodes":[17254,26596,14272],"orbits":[0,2,3]},{"y":-1936.96,"x":5325.31,"nodes":[40480],"orbits":[0]},{"y":-5200.42,"x":5327.07,"nodes":[44420],"orbits":[0]},{"y":-4742.78,"x":5327.07,"nodes":[38541],"orbits":[0]},{"y":2636.01,"x":5345.07,"nodes":[51241,50420,55118,31364],"orbits":[0,2]},{"y":-1650.02,"x":5349.84,"nodes":[1953],"orbits":[0]},{"y":-6761.17,"x":5409.48,"nodes":[24165],"orbits":[0]},{"y":-9562.99,"x":5445.28,"nodes":[21984],"orbits":[1]},{"y":-4981.71,"x":5449.63,"nodes":[61601],"orbits":[0]},{"y":-1107.81,"x":5478.57,"nodes":[54176],"orbits":[0]},{"y":-5233.52,"x":5541.11,"nodes":[63132],"orbits":[4]},{"y":8088.82,"x":5569.75,"nodes":[4238,60173,62986,17316,43263,46688,40244,64492],"orbits":[0,4,7]},{"y":9486.45,"x":5571.69,"nodes":[46882],"orbits":[1]},{"y":1347.41,"x":5581.73,"nodes":[64213,32155,44204,33729,25700,61246,144,41096,45712,12611],"orbits":[0,4,5,7]},{"y":6014.8,"x":5583.03,"nodes":[7526],"orbits":[0]},{"y":-1722.99,"x":5628.44,"nodes":[23905],"orbits":[0]},{"y":3736.42,"x":5633.09,"nodes":[39569,9046,45609,56776,24129],"orbits":[1,2,7]},{"y":0.51,"x":5646.98,"nodes":[26598],"orbits":[0]},{"y":5672.63,"x":5674.71,"nodes":[46742],"orbits":[0]},{"y":-6287.76,"x":5749.4,"nodes":[4328],"orbits":[0]},{"y":-4981.71,"x":5749.4,"nodes":[42379],"orbits":[0]},{"y":-6838.35,"x":5891.44,"nodes":[38111,10242,6079,32241],"orbits":[0,2]},{"y":7308.69,"x":5911.53,"nodes":[11764,38878,54975,26772,45774,34898,24240],"orbits":[0,4,5,7]},{"y":-625.86,"x":5924.32,"nodes":[10944,33366,55193],"orbits":[1,2,7]},{"y":-1636.31,"x":5928.56,"nodes":[27875,55463,32123],"orbits":[0,3]},{"y":-2670.25,"x":5933.04,"nodes":[25971,50635,44423],"orbits":[0,2,3]},{"y":6448.44,"x":5980.81,"nodes":[21572,39050,6660],"orbits":[2]},{"y":-7475.15,"x":5988.31,"nodes":[50121],"orbits":[0]},{"y":2157.49,"x":5995.83,"nodes":[31345,30372,42065,55400,37532],"orbits":[0,2]},{"y":-4981.71,"x":6128.38,"nodes":[25520],"orbits":[0]},{"y":-3563.57,"x":6172.4,"nodes":[42750,37691,9050,56453,60138,25851,52695,57230,24958,31765,51741,16705,17088,24062,54351,64927,52464,5766,51416,32016,49984],"orbits":[0,5,6,7]},{"y":4653.4,"x":6194.67,"nodes":[45100,56928,62350,7163,23013],"orbits":[2,3,4,5]},{"y":-80.99,"x":6319.8,"nodes":[2448],"orbits":[2]},{"y":360.01,"x":6319.8,"nodes":[1631,14001,56893,29049],"orbits":[7,2]},{"y":2786.09,"x":6359.19,"nodes":[23608,40024,2091,61741,6951,63759,26565,24401],"orbits":[0,3,4,7]},{"y":3674.83,"x":6365.75,"nodes":[35901,12890,63566,62464,55275,12120,65207,51606,17854],"orbits":[3,4,6]},{"y":5562.9,"x":6365.75,"nodes":[31683],"orbits":[0]},{"y":-8685.67,"x":6372.73,"nodes":[61403],"orbits":[0]},{"y":-8307.67,"x":6372.73,"nodes":[56349],"orbits":[0]},{"y":-4456.86,"x":6411.76,"nodes":[5009,36270,12169],"orbits":[0,2,3]},{"y":-9326.22,"x":6437.42,"nodes":[20641,14231,40399,51934,43281,25304,47359,40453,61056],"orbits":[0,1,5,7]},{"y":-5451.42,"x":6446.96,"nodes":[52191],"orbits":[0]},{"y":-547.41,"x":6460.1,"nodes":[45709,26363,52803],"orbits":[7]},{"y":-531.61,"x":6460.1,"nodes":[7412,49291,57945,59356],"orbits":[0,7]},{"y":-6987.61,"x":6488.25,"nodes":[54725,56336,21208,21748],"orbits":[7]},{"y":876.88,"x":6551.51,"nodes":[57088,9421,28086,54557,60170],"orbits":[0,2]},{"y":-7691.65,"x":6564.29,"nodes":[3128,22713,12166],"orbits":[7]},{"y":-7691.65,"x":6564.44,"nodes":[19722,4959,26331,19003],"orbits":[0,7]},{"y":-7691.65,"x":6564.44,"nodes":[33221],"orbits":[0]},{"y":4176.51,"x":6564.69,"nodes":[42658],"orbits":[0]},{"y":-2236.79,"x":6565.35,"nodes":[54678],"orbits":[0]},{"y":-6987.61,"x":6612.09,"nodes":[6570],"orbits":[0]},{"y":-5652.35,"x":6644.63,"nodes":[57724,26885,34473,20782,42361],"orbits":[0,2,3,4,7]},{"y":7705.54,"x":6649.25,"nodes":[43720,14383,18568,46601,46887],"orbits":[0,2,3]},{"y":8378.88,"x":6649.25,"nodes":[38463],"orbits":[0]},{"y":3890.84,"x":6729.48,"nodes":[34015],"orbits":[0]},{"y":-6987.61,"x":6735.94,"nodes":[26268,22710,45111,59214],"orbits":[7]},{"y":8501.01,"x":6771.38,"nodes":[21111,43522,33099],"orbits":[4,7]},{"y":-5798.13,"x":6793.65,"nodes":[54883],"orbits":[0]},{"y":5897.33,"x":6805.17,"nodes":[28623,60464,12998,9968,30463,58971,38678],"orbits":[0,4,2]},{"y":4801,"x":6846.27,"nodes":[21495,42794,31433,5348],"orbits":[0,2,3]},{"y":3596.76,"x":6900.54,"nodes":[26432],"orbits":[0]},{"y":-5934.94,"x":6930.48,"nodes":[59775],"orbits":[0]},{"y":7197.76,"x":7031.53,"nodes":[6842,28329,18472,46533,3700,36723],"orbits":[2,3]},{"y":-8704.87,"x":7037.31,"nodes":[32438],"orbits":[0]},{"y":-3324.15,"x":7065.9,"nodes":[51871,8045,3042],"orbits":[0,2,3]},{"y":9630.67,"x":7074.07,"nodes":[28823,11094,59303],"orbits":[4,7]},{"y":0,"x":7088.65,"nodes":[14658],"orbits":[0]},{"y":513.16,"x":7088.65,"nodes":[28903,42959,59644,32896,22517],"orbits":[0,7]},{"y":-8248.39,"x":7119.01,"nodes":[55149],"orbits":[0]},{"y":-7914.57,"x":7123.27,"nodes":[14446],"orbits":[0]},{"y":4152.81,"x":7191.57,"nodes":[11825],"orbits":[0]},{"y":-1655.98,"x":7271.19,"nodes":[48974,47418,63517,23839,53958,51006,10738],"orbits":[0,2,3]},{"y":-2313.18,"x":7273.71,"nodes":[41877],"orbits":[0]},{"y":3682.83,"x":7309.21,"nodes":[63981,6516,8194],"orbits":[7]},{"y":2075.69,"x":7345.82,"nodes":[6792,23221,4534,42302,33245,9151,45331,31918],"orbits":[1,2,3,4,7]},{"y":-6708.34,"x":7365.71,"nodes":[52971,21227,36290,23046,62936,51891,49976,25528],"orbits":[2,3,4,7]},{"y":-380.49,"x":7386.63,"nodes":[24120,52053,14048,34717,10495],"orbits":[0,3,4,7]},{"y":-8305.21,"x":7420.17,"nodes":[26762],"orbits":[0]},{"y":7597.17,"x":7430.94,"nodes":[30657],"orbits":[0]},{"y":-8440.87,"x":7466.03,"nodes":[35380,10058],"orbits":[0,2]},{"y":1196.11,"x":7495.21,"nodes":[35671,11504,30839,31172],"orbits":[2,3,4,5]},{"y":-8629.84,"x":7501.94,"nodes":[44373],"orbits":[0]},{"y":-906.8,"x":7520.58,"nodes":[336,4806,49388,37304,64543,61921,38215],"orbits":[2,3,4,5]},{"y":-8913.34,"x":7559.71,"nodes":[6800],"orbits":[0]},{"y":4790.76,"x":7559.9,"nodes":[47374,18049,5802],"orbits":[0,4,7]},{"y":5232.4,"x":7615.5,"nodes":[62185],"orbits":[0]},{"y":696.89,"x":7632.55,"nodes":[15301,10277,64064,4709,35477],"orbits":[0,2]},{"y":-7774.6,"x":7645.67,"nodes":[31692,46197,61333,45702,39237],"orbits":[0,2]},{"y":-8333.04,"x":7691.01,"nodes":[58022],"orbits":[0]},{"y":-5462.17,"x":7749.73,"nodes":[34324,13457,3630,56838,26034,45631,62624,42805],"orbits":[3,4,7]},{"y":-4481.19,"x":7752.6,"nodes":[57821],"orbits":[4]},{"y":6434.67,"x":7762.38,"nodes":[59503,22208,60034,6330,15207,4378],"orbits":[0,7]},{"y":-8668.33,"x":7764.53,"nodes":[5186],"orbits":[0]},{"y":226,"x":7768.26,"nodes":[34497],"orbits":[0]},{"y":-4823.01,"x":7810.1,"nodes":[33404],"orbits":[0]},{"y":5340.56,"x":7866.21,"nodes":[14724],"orbits":[0]},{"y":-3177.92,"x":7868.42,"nodes":[52361,57462,53771,12078,33713,26107],"orbits":[0,2,3,5]},{"y":-7151.38,"x":7886.46,"nodes":[47976],"orbits":[0]},{"y":8057.48,"x":7891.25,"nodes":[63830,44841,45390,13624,59064,44756,28258,36927,36976,55235],"orbits":[0,1,2,3]},{"y":8803.79,"x":7901.35,"nodes":[48462,38497,62803,25029],"orbits":[4,5,7]},{"y":-4161.35,"x":7948.31,"nodes":[62542,45713,39607,2559,16329],"orbits":[0,2,3]},{"y":5617.65,"x":7952.58,"nodes":[32301],"orbits":[0]},{"y":2729.64,"x":7993.13,"nodes":[59740],"orbits":[0]},{"y":-1873.69,"x":7994.25,"nodes":[34483],"orbits":[0]},{"y":-996.85,"x":7994.25,"nodes":[49996],"orbits":[0]},{"y":-571.97,"x":7994.25,"nodes":[32183],"orbits":[0]},{"y":0,"x":7994.25,"nodes":[12253],"orbits":[0]},{"y":1153.21,"x":7994.25,"nodes":[35696],"orbits":[0]},{"y":2075.69,"x":7994.25,"nodes":[2408],"orbits":[0]},{"y":4152.81,"x":8000.05,"nodes":[10648,26400,8904],"orbits":[0,4,7]},{"y":5171.69,"x":8057.07,"nodes":[37813],"orbits":[0]},{"y":3245.63,"x":8107.67,"nodes":[17146,57518,31366,3843,65265],"orbits":[0,2,3]},{"y":230.47,"x":8167.23,"nodes":[16401],"orbits":[0]},{"y":6850.21,"x":8177.92,"nodes":[24786],"orbits":[0]},{"y":5525.79,"x":8194.81,"nodes":[50277],"orbits":[0]},{"y":5351.13,"x":8197.54,"nodes":[44932],"orbits":[3]},{"y":446.42,"x":8246.52,"nodes":[37113],"orbits":[0]},{"y":5299.58,"x":8253.92,"nodes":[50701],"orbits":[0]},{"y":1153.21,"x":8357.14,"nodes":[24070],"orbits":[0]},{"y":-2532.39,"x":8374.56,"nodes":[12239],"orbits":[0]},{"y":1815.57,"x":8376,"nodes":[51602,23305,21279,44280,35534],"orbits":[0,2]},{"y":-1209.02,"x":8397.3,"nodes":[5163,48103,26726,52875],"orbits":[0,2]},{"y":-2579.71,"x":8401.88,"nodes":[1599,35173,16013,41811,16140,31286],"orbits":[2,3,7]},{"y":643.92,"x":8447.81,"nodes":[43090],"orbits":[0]},{"y":249.7,"x":8448.58,"nodes":[44490],"orbits":[0]},{"y":-2688.36,"x":8464.62,"nodes":[39881],"orbits":[0]},{"y":-3633.16,"x":8464.96,"nodes":[7809],"orbits":[0]},{"y":4890.73,"x":8470.97,"nodes":[54984],"orbits":[0]},{"y":-7759.19,"x":8494.27,"nodes":[7302,14516,52615,33093,25729,26821,37876],"orbits":[3,4,7]},{"y":-366.15,"x":8525.13,"nodes":[61800,52630,28371,60560,29527,1514],"orbits":[0,1,7]},{"y":2408.96,"x":8571.5,"nodes":[19074,8560,31273,35985,13987,48531,56761,7604,17372],"orbits":[1,2,3,6,7]},{"y":-5782.69,"x":8602.39,"nodes":[32672,23362,4031,17871,13701,50403],"orbits":[0,2,3]},{"y":5993.25,"x":8625.62,"nodes":[3431,5305,43082],"orbits":[1,2]},{"y":-6347.76,"x":8684.39,"nodes":[59538],"orbits":[0]},{"y":1153.21,"x":8692.14,"nodes":[58397,19338,31647],"orbits":[0,3]},{"y":4438.38,"x":8732.17,"nodes":[25055,13799,41580,36576,41298],"orbits":[0,2,7]},{"y":-3633.16,"x":8733.08,"nodes":[60483],"orbits":[0]},{"y":-4730.53,"x":8838.29,"nodes":[32509,47614,3688,22219,52351,52260],"orbits":[0,2,7]},{"y":7072.15,"x":8847.14,"nodes":[36071,38369,35223,36677,13895,61112,18910,21225,10265,9240,19767,55680,9227],"orbits":[0,2,3,4,5,6]},{"y":-3861.86,"x":8862.26,"nodes":[18717],"orbits":[0]},{"y":6141.88,"x":8886.25,"nodes":[24287],"orbits":[0]},{"y":-4178.25,"x":8922.01,"nodes":[8273],"orbits":[0]},{"y":-1873.69,"x":8940.31,"nodes":[60210,6078,64325,45304,61119,63431],"orbits":[1,2,3]},{"y":-3633.64,"x":8992.39,"nodes":[15356],"orbits":[0]},{"y":-3178.16,"x":8993.62,"nodes":[40990],"orbits":[0]},{"y":435.18,"x":8997.63,"nodes":[1801,60,58426,34401],"orbits":[0,2,7]},{"y":1153.21,"x":9027.14,"nodes":[2334],"orbits":[0]},{"y":0,"x":9032.75,"nodes":[41017],"orbits":[0]},{"y":-592.96,"x":9064.04,"nodes":[53150,17589,45012,8246,37742,64462,37548,15270,36085],"orbits":[0,2,3]},{"y":5264.15,"x":9118.25,"nodes":[22927,20582,29246],"orbits":[6]},{"y":-3861.86,"x":9124.17,"nodes":[17420],"orbits":[0]},{"y":-3407.73,"x":9125.5,"nodes":[18815],"orbits":[0]},{"y":6392.19,"x":9136.56,"nodes":[14226],"orbits":[0]},{"y":-4119.84,"x":9152.09,"nodes":[25565],"orbits":[2]},{"y":3214.99,"x":9235.75,"nodes":[36364],"orbits":[0]},{"y":-1050.49,"x":9358.95,"nodes":[17724],"orbits":[0]},{"y":3793.92,"x":9410.52,"nodes":[27422,2021,17687,10472,25857],"orbits":[0,3,4,7]},{"y":-5497.3,"x":9512.58,"nodes":[61834],"orbits":[0]},{"y":-7180.28,"x":9516.92,"nodes":[37616,8644,33964,64295,27834,63659,37688,27417,62496,34912,4664,43938,34449],"orbits":[4,5,6]},{"y":5500.5,"x":9527.62,"nodes":[60735],"orbits":[0]},{"y":2943.23,"x":9543.04,"nodes":[63600],"orbits":[0]},{"y":-3977.46,"x":9571.39,"nodes":[10162,3336,36231,30615,65204],"orbits":[0,2]},{"y":-3334.83,"x":9590.33,"nodes":[44891,55835,20909,52537,7023],"orbits":[0,2]},{"y":-1026.03,"x":9678.35,"nodes":[32664],"orbits":[1]},{"y":5590.69,"x":9689.37,"nodes":[12116,52410,20414,55329,42036,35043,25535],"orbits":[4,3]},{"y":-1158.91,"x":9690.7,"nodes":[38668],"orbits":[0]},{"y":1153.21,"x":9720.67,"nodes":[65091,1841,38728,44776,3209,14539,9405,51707,59720,41163],"orbits":[0,5,7]},{"y":3123.88,"x":9746.75,"nodes":[62998],"orbits":[0]},{"y":-4566.29,"x":9755.52,"nodes":[722],"orbits":[0]},{"y":6600.96,"x":9811.35,"nodes":[20105],"orbits":[0]},{"y":4319.11,"x":9826.06,"nodes":[48116],"orbits":[0]},{"y":0,"x":9858.64,"nodes":[14262],"orbits":[0]},{"y":-356.79,"x":9860.22,"nodes":[38342,21945,61718,54204],"orbits":[1,2]},{"y":1985.04,"x":9864.06,"nodes":[65212,32543,60899,64637],"orbits":[0,3]},{"y":-2442.76,"x":9893.67,"nodes":[43867,10423,37905,57571,28101],"orbits":[1,2,3,7]},{"y":2865.41,"x":9935.05,"nodes":[20649],"orbits":[0]},{"y":-1188.03,"x":9958.34,"nodes":[5188],"orbits":[0]},{"y":-1396.81,"x":9990.46,"nodes":[3640,28963,7888],"orbits":[3,4,7]},{"y":-5603.69,"x":10091.58,"nodes":[49320,30973],"orbits":[6]},{"y":-3334.83,"x":10091.7,"nodes":[15775],"orbits":[0]},{"y":3097.55,"x":10162.49,"nodes":[2582],"orbits":[0]},{"y":-2278.35,"x":10379,"nodes":[30808],"orbits":[0]},{"y":2135.38,"x":10425.2,"nodes":[27705],"orbits":[0]},{"y":-3334.83,"x":10447.67,"nodes":[28976],"orbits":[0]},{"y":3297.39,"x":10460.25,"nodes":[41873,55995,57970,21537],"orbits":[2]},{"y":824.72,"x":10493.01,"nodes":[37484],"orbits":[0]},{"y":-2799.95,"x":10518.76,"nodes":[29959,60362,6891,56265,42802],"orbits":[0,2]},{"y":-3790.36,"x":10572.13,"nodes":[6030,2500,15986,29458,53595,9703,1723,38628],"orbits":[2,3,7]},{"y":-5268.96,"x":10657.31,"nodes":[632],"orbits":[0]},{"y":1152.07,"x":10682.01,"nodes":[48773],"orbits":[0]},{"y":4548.52,"x":10682.25,"nodes":[34612,25992,60764,11526,31055,44141,7651,21788,21112,8573,25586],"orbits":[2,3,4,5,6]},{"y":-3334.83,"x":10697.51,"nodes":[23374],"orbits":[0]},{"y":-1058.34,"x":10699.04,"nodes":[14267],"orbits":[0]},{"y":4578.32,"x":10793.45,"nodes":[18969],"orbits":[0]},{"y":-5031.25,"x":10794.6,"nodes":[52215],"orbits":[0]},{"y":-4373.44,"x":10801.88,"nodes":[3419,28797,20429],"orbits":[6]},{"y":5275.51,"x":10852.75,"nodes":[38993],"orbits":[0]},{"y":-2373.09,"x":10896.21,"nodes":[19779,63891,63074,42999,4925],"orbits":[1,2,3]},{"y":2679.08,"x":10968.89,"nodes":[38493,38537,13407,39369,55621,2936,23040,54983,51583],"orbits":[0,2,4,7]},{"y":-82.24,"x":10978.46,"nodes":[32763],"orbits":[1]},{"y":-5335.92,"x":11047.97,"nodes":[56366,54058,35755,4423,62001],"orbits":[0,2,3]},{"y":1402.07,"x":11056,"nodes":[28835,60480,56847,8157,178,28044,6988],"orbits":[0,2,3,5,7]},{"y":4037.83,"x":11202.42,"nodes":[328],"orbits":[0]},{"y":-597.47,"x":11296.38,"nodes":[326],"orbits":[0]},{"y":-568.47,"x":11407.17,"nodes":[59694],"orbits":[0]},{"y":-1062.86,"x":11480.37,"nodes":[2361,37514,31449,9444,52399,2113,34316,61632,4536,11598,44516],"orbits":[0,2,3,5,6]},{"y":-1142.98,"x":11496.38,"nodes":[28638],"orbits":[0]},{"y":-1587.55,"x":11561.67,"nodes":[64700],"orbits":[0]},{"y":-1552.85,"x":11670.93,"nodes":[32442],"orbits":[0]},null,null,null,null,{"y":7117.1115012329,"x":13677.940095179,"nodes":[5817],"orbits":[0]},{"y":6128.5715012329,"x":13766.890095179,"nodes":[12033,42416,46854,61461,3987,24295,49165,39723,46990],"orbits":[2,3,5,6,8,9]},{"y":6667.4315012329,"x":13858.710095179,"nodes":[59913],"orbits":[0]},{"y":7041.2815012329,"x":13960.960095179,"nodes":[29871],"orbits":[0]},{"y":-8824.0642753814,"x":12215.667857404,"nodes":[8143,65173,7621,23587,64031,63713,52448,12876,63236,23415,13065,16100,17268,25434,55611,29133,57181,44357,27686,9994],"orbits":[3,4,5,6,8,9]},{"y":6496.0715012329,"x":14225.230095179,"nodes":[59542],"orbits":[0]},{"y":6965.4415012329,"x":14243.980095179,"nodes":[30],"orbits":[0]},{"y":5940.2315012329,"x":14277.950095179,"nodes":[24226],"orbits":[0]},{"y":6333.0715012329,"x":14318.750095179,"nodes":[41875],"orbits":[0]},null,{"y":5450.3415012329,"x":14670.730095179,"nodes":[23508],"orbits":[0]},{"y":5738.7015012329,"x":14722.620095179,"nodes":[35801],"orbits":[0]},{"y":8856.9449068475,"x":12191.848853047,"nodes":[61991,24868,46454,33736,9798,36676,1583],"orbits":[9,8]},{"y":6026.8615012329,"x":14775.690095179,"nodes":[37336],"orbits":[0]},{"y":8402.4449068475,"x":12692.888853047,"nodes":[38004],"orbits":[0]},{"y":8523.4449068475,"x":12692.888853047,"nodes":[9710],"orbits":[0]},{"y":8341.9449068475,"x":12797.688853047,"nodes":[18940],"orbits":[0]},{"y":8462.9449068475,"x":12797.688853047,"nodes":[57141],"orbits":[0]},{"y":8990.7249068475,"x":12797.688853047,"nodes":[49503],"orbits":[0]},{"y":8401.0449068475,"x":12902.478853047,"nodes":[56618],"orbits":[0]},{"y":8523.4449068475,"x":12902.478853047,"nodes":[58379],"orbits":[0]},{"y":8990.6549068475,"x":13002.908853047,"nodes":[13675],"orbits":[0]},{"y":8656.4449068475,"x":13092.478853047,"nodes":[61804],"orbits":[0]},{"y":8322.0149068475,"x":13182.028853047,"nodes":[29074],"orbits":[0]},{"y":8990.6549068475,"x":13193.918853047,"nodes":[14508],"orbits":[0]},{"y":8990.6549068475,"x":13335.008853047,"nodes":[39292],"orbits":[0]},{"y":8322.0149068475,"x":13346.868853047,"nodes":[41619],"orbits":[0]},{"y":8657.3249068475,"x":13436.718853047,"nodes":[16],"orbits":[0]},{"y":8990.6549068475,"x":13526.098853047,"nodes":[40],"orbits":[0]},{"y":-6091.4571409843,"x":13783.35232946,"nodes":[18826,3781,25781,59759,50098,664,41076,31116,34817,17923,47344,36788,24475,1347,11771,25779,25885,32771,74],"orbits":[6,8,9,5]}],"jewelSlots":[26725,36634,33989,41263,60735,61834,31683,28475,6230,48768,34483,7960,46882,55190,61419,2491,54127,32763,26196,33631,21984,59740,63132,36044],"classes":[{"base_str":7,"base_int":7,"ascendancies":[{"internalId":"Ranger1","name":"Deadeye","id":"Deadeye"},{"internalId":"Ranger3","name":"Pathfinder","id":"Pathfinder"}],"base_dex":15,"name":"Ranger"},{"base_str":15,"base_int":7,"ascendancies":[{"internalId":"Warrior1","name":"Titan","id":"Titan"},{"internalId":"Warrior2","name":"Warbringer","id":"Warbringer"}],"base_dex":7,"name":"Warrior"},{"base_str":11,"base_int":7,"ascendancies":[{"internalId":"Mercenary2","name":"Witchhunter","id":"Witchhunter"},{"internalId":"Mercenary3","name":"Gemling Legionnaire","id":"Gemling Legionnaire"}],"base_dex":11,"name":"Mercenary"},{"base_str":7,"base_int":15,"ascendancies":[{"internalId":"Witch1","name":"Infernalist","id":"Infernalist"},{"internalId":"Witch2","name":"Blood Mage","id":"Blood Mage"}],"base_dex":7,"name":"Witch"},{"base_str":7,"base_int":15,"ascendancies":[{"internalId":"Sorceress1","name":"Stormweaver","id":"Stormweaver"},{"internalId":"Sorceress2","name":"Chronomancer","id":"Chronomancer"}],"base_dex":7,"name":"Sorceress"},{"base_str":7,"base_int":11,"ascendancies":[{"internalId":"Monk2","name":"Invoker","id":"Invoker"},{"internalId":"Monk3","name":"Acolyte of Chayula","id":"Acolyte of Chayula"}],"base_dex":11,"name":"Monk"}],"max_y":23700.966667042,"ddsCoords":{"legion_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/DevotionNode.dds":3,"Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds":4,"Art/2DArt/SkillIcons/passives/VaalDefensive.dds":1,"Art/2DArt/SkillIcons/passives/VaalOffensive.dds":2},"legion_564_564_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds":12,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds":7},"skills_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"legion_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds":31,"Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds":9,"Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds":10,"Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds":30,"Art/2DArt/SkillIcons/passives/SupremeProdigy.dds":29,"Art/2DArt/SkillIcons/passives/WindDancer.dds":28,"Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds":27,"Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds":26,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":25,"Art/2DArt/SkillIcons/passives/TheBlindMonk.dds":1,"Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds":14,"Art/2DArt/SkillIcons/passives/CorruptedDefences.dds":24,"Art/2DArt/SkillIcons/passives/DivineFlesh.dds":23,"Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds":3,"Art/2DArt/SkillIcons/passives/FocusedRage.dds":4,"Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds":22,"Art/2DArt/SkillIcons/passives/SharpandBrittle.dds":21,"Art/2DArt/SkillIcons/passives/OasisKeystone.dds":16,"Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds":5,"Art/2DArt/SkillIcons/passives/SupremeDecadence.dds":20,"Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds":6,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":19,"Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds":18,"Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds":17,"Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds":12,"Art/2DArt/SkillIcons/passives/SupremeEgo.dds":2,"Art/2DArt/SkillIcons/passives/InnerConviction.dds":7,"Art/2DArt/SkillIcons/passives/DevotionNotable.dds":11,"Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds":13,"Art/2DArt/SkillIcons/passives/TemperedByWar.dds":8,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":15},"group-background_92_92_BC7.dds.zst":{"AscendancyMiddle":1},"group-background_756_756_BC7.dds.zst":{"PSGroupBackgroundMediumBlank":1},"jewel-sockets_152_156_BC7.dds.zst":{"Sapphire":6,"Time-Lost Ruby":2,"Diamond":6,"Time-Lost Emerald":5,"Emerald":3,"Time-Lost Diamond":4,"Ruby":1,"Timeless Jewel":4,"Time-Lost Sapphire":4},"group-background_440_440_BC7.dds.zst":{"PSGroupBackgroundSmallBlank":1},"group-background_220_224_BC7.dds.zst":{"KeystoneFrameUnallocated":1,"KeystoneFrameAllocated":2,"KeystoneFrameCanAllocate":3},"ascendancy-background_1500_1500_BC7.dds.zst":{"ClassesSorceress":12,"ClassesAcolyte of Chayula":24,"ClassesStormweaver":11,"ClassesMonk":5,"ClassesChronomancer":10,"ClassesMercenary":6,"ClassesGemling Legionnaire":1,"ClassesWarbringer":21,"ClassesInvoker":4,"ClassesInfernalist":13,"ClassesWitchhunter":23,"ClassesMarauder":2,"ClassesDuelist":22,"ClassesRanger":20,"ClassesTitan":19,"ClassesBlood Mage":18,"ClassesPathfinder":16,"ClassesWarrior":17,"ClassesWitch":14,"ClassesHuntress":15,"ClassesDeadeye":3,"ClassesShadow":9,"ClassesDruid":8,"ClassesTemplar":7},"skills_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":48,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":49,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":1,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":3,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":55,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":61,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds":4,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":5,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":6,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":8,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":63,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":71,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":72,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":9,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":79,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":62,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":80,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":81,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":87,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":11,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":99,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":93,"Art/2DArt/SkillIcons/passives/Harrier.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":95,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":13,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":96,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":178,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":65,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":103,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":101,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":16,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":177,"Art/2DArt/SkillIcons/passives/Deflection.dds":176,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":175,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":174,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds":17,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":173,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":106,"Art/2DArt/SkillIcons/passives/executioner.dds":172,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":107,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":115,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":19,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":20,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":110,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":111,"Art/2DArt/SkillIcons/passives/eagleeye.dds":171,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":170,"Art/2DArt/SkillIcons/passives/icebite.dds":98,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":168,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":167,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":22,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":23,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":166,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":165,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":51,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":97,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":163,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":24,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":94,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":59,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":25,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":119,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":83,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":161,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":27,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":160,"Art/2DArt/SkillIcons/passives/Hunter.dds":159,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":158,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":128,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":121,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":28,"Art/2DArt/SkillIcons/passives/finesse.dds":157,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":126,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":30,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":31,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":156,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":124,"Art/2DArt/SkillIcons/passives/BowDamage.dds":155,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":154,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":127,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":12,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":26,"Art/2DArt/SkillIcons/passives/Meleerange.dds":151,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":150,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":149,"Art/2DArt/SkillIcons/passives/steelspan.dds":125,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":118,"Art/2DArt/SkillIcons/passives/Poison.dds":33,"Art/2DArt/SkillIcons/passives/Annihilation.dds":148,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":54,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":134,"Art/2DArt/SkillIcons/passives/Hearty.dds":147,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds":47,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":58,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":57,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":36,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":142,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":141,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":139,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":138,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":137,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":135,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":90,"Art/2DArt/SkillIcons/passives/bodysoul.dds":132,"Art/2DArt/SkillIcons/passives/vaalpact.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":130,"Art/2DArt/SkillIcons/passives/strongarm.dds":129,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":37,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":74,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":145,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":60,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":21,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds":38,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":146,"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds":73,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":15,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":18,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":68,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":39,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":52,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":34,"Art/2DArt/SkillIcons/passives/DragonStyle.dds":40,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":50,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":64,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":14,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":100,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":56,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":29,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":10,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":41,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":75,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":117,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":66,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds":42,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":69,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds":43,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds":70,"Art/2DArt/SkillIcons/passives/Warrior.dds":67,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":2,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds":89,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":44,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":88,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":77,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds":45,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":92,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":82,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":162,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":84,"Art/2DArt/SkillIcons/passives/lifeleech.dds":85,"Art/2DArt/SkillIcons/passives/Blood2.dds":86,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":46,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":133,"Art/2DArt/SkillIcons/passives/totemmax.dds":91,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":78,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":164,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":169,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":53,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":105,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":108,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":109,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":32,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":112,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":113,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":116,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":122,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":123,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":76},"group-background_152_156_BC7.dds.zst":{"NotableFrameUnallocated":4,"JewelFrameAllocated":2,"NotableFrameCanAllocate":6,"JewelFrameCanAllocate":5,"NotableFrameAllocated":1,"JewelFrameUnallocated":3},"oils_108_108_RGBA.dds.zst":{"Greed":9,"Paranoia":4,"Envy":7,"Fear":8,"Guilt":3,"Suffering":5,"Disgust":10,"Despair":6,"Isolation":2,"Ire":1},"group-background_360_360_BC7.dds.zst":{"PSGroupBackground1":1},"ascendancy-background_4000_4000_BC7.dds.zst":{"BGTree":2,"BGTreeActive":1},"group-background_104_104_BC7.dds.zst":{"PSSkillFrameHighlighted":1,"PSSkillFrame":2,"PSSkillFrameActive":3},"mastery-active-effect_776_768_BC7.dds.zst":{"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern":6,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern":13,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern":55,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern":54,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern":53,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern":52,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern":51,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern":50,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern":49,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern":48,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern":32,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern":47,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern":46,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern":12,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern":45,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern":44,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern":43,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern":42,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern":23,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern":41,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern":20,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern":40,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern":39,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern":38,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern":37,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern":36,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern":11,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern":34,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern":33,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern":35,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern":24,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern":28,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern":10,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern":16,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern":30,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern":15,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern":17,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern":9,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern":1,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern":19,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern":26,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern":2,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern":14,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern":3,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern":4,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern":7,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern":18,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern":21,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern":22,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern":5,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern":25,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern":8,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern":27,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern":29,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern":31},"skills-disabled_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":49,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":50,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":1,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":2,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":3,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":56,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":62,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds":4,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":5,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":6,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":8,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":64,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":71,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":72,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":9,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":78,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":63,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":79,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":80,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":83,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":51,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":96,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":89,"Art/2DArt/SkillIcons/passives/icebite.dds":94,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":91,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":13,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":92,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":178,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":66,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":97,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":98,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":16,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":177,"Art/2DArt/SkillIcons/passives/Deflection.dds":176,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":175,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":174,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds":17,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":173,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":103,"Art/2DArt/SkillIcons/passives/executioner.dds":172,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":105,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":113,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":19,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":20,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":108,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":109,"Art/2DArt/SkillIcons/passives/eagleeye.dds":171,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":104,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":169,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":168,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":167,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":22,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":23,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":102,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":165,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":52,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":81,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":163,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":24,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":115,"Art/2DArt/SkillIcons/passives/vaalpact.dds":128,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":25,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":116,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":162,"Art/2DArt/SkillIcons/passives/Hunter.dds":161,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":27,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":160,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":159,"Art/2DArt/SkillIcons/passives/Harrier.dds":158,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":126,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":119,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":28,"Art/2DArt/SkillIcons/passives/finesse.dds":157,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":30,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":31,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":156,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":123,"Art/2DArt/SkillIcons/passives/BowDamage.dds":155,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":154,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":125,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":75,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":65,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":151,"Art/2DArt/SkillIcons/passives/Meleerange.dds":150,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":149,"Art/2DArt/SkillIcons/passives/strongarm.dds":127,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":32,"Art/2DArt/SkillIcons/passives/Hearty.dds":122,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":148,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":55,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":133,"Art/2DArt/SkillIcons/passives/Annihilation.dds":147,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":48,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":59,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":58,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":143,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":36,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":141,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":140,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":138,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":137,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":136,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":134,"Art/2DArt/SkillIcons/passives/Warrior.dds":132,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":130,"Art/2DArt/SkillIcons/passives/bodysoul.dds":129,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":37,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":74,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":145,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":61,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":21,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds":38,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":146,"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds":73,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":18,"Art/2DArt/SkillIcons/passives/Blood2.dds":95,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":54,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":39,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":34,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":53,"Art/2DArt/SkillIcons/passives/DragonStyle.dds":40,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":15,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":14,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":57,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":29,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":10,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":26,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":11,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":41,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":82,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":88,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":68,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds":42,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":69,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds":43,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":60,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds":77,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":12,"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds":86,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":44,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":85,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":84,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds":45,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":67,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":87,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":164,"Art/2DArt/SkillIcons/passives/totemmax.dds":90,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds":70,"Art/2DArt/SkillIcons/passives/steelspan.dds":120,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":46,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":47,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":100,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":101,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":166,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":170,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":106,"Art/2DArt/SkillIcons/passives/lifeleech.dds":107,"Art/2DArt/SkillIcons/passives/Poison.dds":33,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":110,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":111,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":112,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":114,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":93,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":118,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":121,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":117,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":76},"skills-disabled_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills-disabled_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":126,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":125,"Art/2DArt/SkillIcons/passives/chargedex.dds":124,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":123,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":122,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":1,"Art/2DArt/SkillIcons/passives/flaskdex.dds":121,"Art/2DArt/SkillIcons/passives/flaskint.dds":120,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":31,"Art/2DArt/SkillIcons/passives/fireresist.dds":60,"Art/2DArt/SkillIcons/passives/blankStr.dds":23,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":119,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":30,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":118,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":117,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/tempint.dds":115,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":114,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":86,"Art/2DArt/SkillIcons/passives/plusstrength.dds":112,"Art/2DArt/SkillIcons/passives/mana.dds":49,"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds":111,"Art/2DArt/SkillIcons/passives/knockback.dds":110,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":53,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":14,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":84,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":109,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":108,"Art/2DArt/SkillIcons/passives/manastr.dds":107,"Art/2DArt/SkillIcons/passives/blankInt.dds":106,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":105,"Art/2DArt/SkillIcons/passives/plusstrengthdexterity.dds":104,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":103,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":100,"Art/2DArt/SkillIcons/passives/castspeed.dds":48,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":99,"Art/2DArt/SkillIcons/passives/stun2h.dds":51,"Art/2DArt/SkillIcons/passives/plusintelligencedexterity.dds":17,"Art/2DArt/SkillIcons/passives/spellcritical.dds":98,"Art/2DArt/SkillIcons/passives/lightningint.dds":97,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":96,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":95,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":63,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":94,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":92,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":93,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":91,"Art/2DArt/SkillIcons/passives/minionlife.dds":90,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":89,"Art/2DArt/SkillIcons/passives/plusstrengthintelligence.dds":3,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":88,"Art/2DArt/SkillIcons/passives/chargeint.dds":87,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":113,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":85,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":83,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":71,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":61,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":82,"Art/2DArt/SkillIcons/passives/Rage.dds":81,"Art/2DArt/SkillIcons/passives/auraeffect.dds":80,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":79,"Art/2DArt/SkillIcons/passives/damagesword.dds":78,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":37,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":77,"Art/2DArt/SkillIcons/passives/chargestr.dds":76,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":7,"Art/2DArt/SkillIcons/passives/MarkNode.dds":75,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":74,"Art/2DArt/SkillIcons/passives/life1.dds":73,"Art/2DArt/SkillIcons/passives/colddamage.dds":54,"Art/2DArt/SkillIcons/passives/damagespells.dds":70,"Art/2DArt/SkillIcons/passives/plusattribute.dds":69,"Art/2DArt/SkillIcons/icongroundslam.dds":68,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":8,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":67,"Art/2DArt/SkillIcons/passives/damage_blue.dds":59,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":66,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":65,"Art/2DArt/SkillIcons/passives/firedamage.dds":28,"Art/2DArt/SkillIcons/passives/evade.dds":15,"Art/2DArt/SkillIcons/passives/trapdamage.dds":6,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":57,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":12,"Art/2DArt/SkillIcons/passives/attackspeed.dds":13,"Art/2DArt/SkillIcons/passives/flaskstr.dds":24,"Art/2DArt/SkillIcons/passives/accuracydex.dds":22,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":21,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":20,"Art/2DArt/SkillIcons/passives/stunstr.dds":50,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":46,"Art/2DArt/SkillIcons/passives/shieldblock.dds":45,"Art/2DArt/SkillIcons/passives/firedamageint.dds":10,"Art/2DArt/SkillIcons/passives/lightningstr.dds":16,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":5,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":58,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":64,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":11,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":2,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":33,"Art/2DArt/SkillIcons/passives/coldresist.dds":32,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":25,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":35,"Art/2DArt/SkillIcons/passives/damage.dds":41,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":42,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":38,"Art/2DArt/SkillIcons/passives/damageaxe.dds":43,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":40,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":47,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":18,"Art/2DArt/SkillIcons/passives/energyshield.dds":44,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":39,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":36,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":9,"Art/2DArt/SkillIcons/passives/macedmg.dds":4,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":19,"Art/2DArt/SkillIcons/passives/accuracystr.dds":52,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":27,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":72,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":55,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":56,"Art/2DArt/SkillIcons/passives/damagestaff.dds":26,"Art/2DArt/SkillIcons/passives/blockstr.dds":29,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":34,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":62},"skills_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":126,"Art/2DArt/SkillIcons/passives/chargedex.dds":125,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":124,"Art/2DArt/SkillIcons/passives/flaskint.dds":123,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":122,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":1,"Art/2DArt/SkillIcons/passives/coldresist.dds":121,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":120,"Art/2DArt/SkillIcons/passives/energyshield.dds":63,"Art/2DArt/SkillIcons/passives/minionlife.dds":29,"Art/2DArt/SkillIcons/passives/blankStr.dds":21,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":119,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":49,"Art/2DArt/SkillIcons/passives/blankDex.dds":118,"Art/2DArt/SkillIcons/passives/tempint.dds":117,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":116,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":115,"Art/2DArt/SkillIcons/passives/accuracystr.dds":114,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":113,"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds":112,"Art/2DArt/SkillIcons/passives/Rage.dds":30,"Art/2DArt/SkillIcons/passives/knockback.dds":111,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":110,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":31,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":15,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":82,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":109,"Art/2DArt/SkillIcons/passives/blankInt.dds":108,"Art/2DArt/SkillIcons/passives/manastr.dds":107,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":106,"Art/2DArt/SkillIcons/passives/plusstrengthdexterity.dds":105,"Art/2DArt/SkillIcons/passives/auraeffect.dds":83,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":103,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":102,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":100,"Art/2DArt/SkillIcons/passives/castspeed.dds":42,"Art/2DArt/SkillIcons/passives/spellcritical.dds":99,"Art/2DArt/SkillIcons/passives/stun2h.dds":45,"Art/2DArt/SkillIcons/passives/plusintelligencedexterity.dds":18,"Art/2DArt/SkillIcons/passives/lightningint.dds":98,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":97,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":96,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":95,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":57,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":94,"Art/2DArt/SkillIcons/passives/mana.dds":84,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":92,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":91,"Art/2DArt/SkillIcons/passives/fireresist.dds":90,"Art/2DArt/SkillIcons/passives/blockstr.dds":89,"Art/2DArt/SkillIcons/passives/plusstrengthintelligence.dds":3,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":88,"Art/2DArt/SkillIcons/passives/chargeint.dds":87,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":20,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":86,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":85,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":93,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":104,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":81,"Art/2DArt/SkillIcons/passives/accuracydex.dds":80,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":79,"Art/2DArt/SkillIcons/passives/damagesword.dds":78,"Art/2DArt/SkillIcons/passives/flaskstr.dds":77,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":36,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":76,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":75,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":7,"Art/2DArt/SkillIcons/passives/chargestr.dds":74,"Art/2DArt/SkillIcons/passives/MarkNode.dds":73,"Art/2DArt/SkillIcons/passives/life1.dds":72,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":71,"Art/2DArt/SkillIcons/passives/damageaxe.dds":70,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":69,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":68,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":8,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":67,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":61,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":66,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":65,"Art/2DArt/SkillIcons/passives/firedamage.dds":28,"Art/2DArt/SkillIcons/passives/evade.dds":24,"Art/2DArt/SkillIcons/passives/colddamage.dds":14,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":27,"Art/2DArt/SkillIcons/passives/flaskdex.dds":13,"Art/2DArt/SkillIcons/passives/trapdamage.dds":6,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":19,"Art/2DArt/SkillIcons/passives/attackspeed.dds":54,"Art/2DArt/SkillIcons/passives/shieldblock.dds":17,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":9,"Art/2DArt/SkillIcons/passives/stunstr.dds":4,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":47,"Art/2DArt/SkillIcons/passives/macedmg.dds":46,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":11,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":5,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":33,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":53,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":59,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":12,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":2,"Art/2DArt/SkillIcons/passives/plusstrength.dds":22,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":35,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":25,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":37,"Art/2DArt/SkillIcons/passives/damage.dds":40,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":64,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":39,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":41,"Art/2DArt/SkillIcons/passives/plusattribute.dds":38,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":60,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":23,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":58,"Art/2DArt/SkillIcons/passives/firedamageint.dds":50,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":34,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":10,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":48,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":51,"Art/2DArt/SkillIcons/passives/damage_blue.dds":52,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":43,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":16,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":55,"Art/2DArt/SkillIcons/passives/lightningstr.dds":56,"Art/2DArt/SkillIcons/passives/damagestaff.dds":26,"Art/2DArt/SkillIcons/passives/damagespells.dds":32,"Art/2DArt/SkillIcons/icongroundslam.dds":44,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":62},"group-background_208_208_BC7.dds.zst":{"AscendancyFrameLargeAllocated":1,"AscendancyFrameLargeCanAllocate":2,"AscendancyFrameLargeNormal":3},"group-background_468_468_BC7.dds.zst":{"PSGroupBackground2":1},"lines_1436_1436_BC7.dds.zst":{"CurvesNormal":1,"CurvesIntermediate":2,"CurvesActive":3},"group-background_952_988_BC7.dds.zst":{"PSGroupBackgroundLargeBlank":1},"skills-disabled_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"group-background_740_376_BC7.dds.zst":{"PSGroupBackground3":1},"group-background_528_528_BC7.dds.zst":{"PSStartNodeBackgroundInactive":1},"skills_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"background_1024_1024_BC7.dds.zst":{"Background2":1},"group-background_160_164_BC7.dds.zst":{"AscendancyFrameSmallAllocated":2,"AscendancyFrameSmallNormal":3,"AscendancyFrameSmallCanAllocate":1}},"min_x":-22030.845566528,"tree":"Default","nodes":{"61106":{"stats":["2% increased Movement Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":59653}],"group":604,"skill":61106,"orbitIndex":15,"name":"Movement Speed","orbit":2},"58397":{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":58397,"stats":["+25 to Dexterity"],"recipe":["Fear","Guilt","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":19338},{"orbit":0,"id":31647},{"orbit":0,"id":2334}],"group":950,"orbitIndex":0,"isNotable":true,"name":"Proficiency","orbit":0},"64352":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44345}],"group":673,"skill":64352,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"10508":{"stats":["3% increased Attack Speed while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":4,"id":30371}],"group":80,"skill":10508,"orbitIndex":15,"name":"Shield Attack Speed","orbit":7},"21111":{"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-5,"id":33099}],"group":872,"skill":21111,"orbitIndex":11,"name":"Charm Activation Chance","orbit":7},"4536":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":37514}],"group":1021,"skill":4536,"orbitIndex":1,"name":"Quarterstaff Speed","orbit":2},"13030":{"stats":["Damaging Ailments deal damage 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":55}],"group":755,"skill":13030,"orbitIndex":0,"name":"Faster Ailments","orbit":0},"21080":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":1869}],"group":745,"skill":21080,"orbitIndex":19,"name":"Freeze Buildup","orbit":7},"47363":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":47363,"stats":["15% increased Area of Effect for Attacks","+10 to Strength"],"recipe":["Fear","Greed","Ire"],"connections":[],"group":481,"orbitIndex":50,"isNotable":true,"name":"Colossal Weapon","orbit":4},"46384":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":46384,"stats":["30% increased Block chance","25% reduced Global Defences"],"recipe":["Envy","Isolation","Isolation"],"connections":[{"orbit":-5,"id":18746},{"orbit":0,"id":58138}],"group":52,"orbitIndex":24,"isNotable":true,"name":"Wide Barrier","orbit":4},"42275":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds","skill":42275,"stats":["20% chance for Slam Skills you use yourself to cause Aftershocks"],"ascendancyName":"Titan","connections":[{"orbit":5,"id":38014}],"group":27,"orbitIndex":0,"isNotable":true,"name":"Earthbreaker","orbit":0},"21468":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":6,"id":39274}],"group":409,"skill":21468,"orbitIndex":12,"name":"Life Leech","orbit":3},"61246":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":5,"id":144}],"group":828,"skill":61246,"orbitIndex":18,"name":"Elemental Damage and Freeze Buildup","orbit":4},"47177":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47177,"stats":["+5 to any Attribute"],"isAttribute":true,"group":627,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"61312":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61312,"stats":["+5 to any Attribute"],"isAttribute":true,"group":668,"connections":[],"orbitIndex":42,"name":"Attribute","orbit":4},"54036":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[{"orbit":0,"id":30720},{"orbit":-7,"id":15809},{"orbit":-7,"id":17501}],"group":419,"skill":54036,"orbitIndex":2,"name":"Minion Damage","orbit":3},"6274":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":56567}],"group":358,"skill":6274,"orbitIndex":17,"name":"Accuracy","orbit":7},"29502":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":4,"id":36302}],"group":505,"skill":29502,"orbitIndex":20,"name":"Cast Speed","orbit":2},"23062":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":19122}],"group":383,"skill":23062,"orbitIndex":20,"name":"Armour if Consumed Endurance Charge","orbit":2},"63484":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":63484,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":7,"id":18158}],"orbitIndex":71,"name":"Mana","orbit":6},"27082":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27082,"stats":["+5 to any Attribute"],"isAttribute":true,"group":91,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":24646}],"orbitIndex":0,"name":"Attribute","orbit":0},"7777":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":7777,"stats":["10% increased Duration of Elemental Ailments on Enemies","30% increased Magnitude of Non-Damaging Ailments you inflict"],"recipe":["Fear","Paranoia","Fear"],"connections":[{"orbit":7,"id":26739},{"orbit":0,"id":42205}],"group":197,"orbitIndex":18,"isNotable":true,"name":"Breaking Point","orbit":4},"52392":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":52392,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"recipe":["Disgust","Envy","Fear"],"connections":[],"group":229,"orbitIndex":17,"isNotable":true,"name":"Singular Purpose","orbit":3},"23450":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":558}],"group":445,"skill":23450,"orbitIndex":6,"name":"Fire Damage","orbit":3},"36270":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":5009}],"group":854,"skill":36270,"orbitIndex":1,"name":"Daze Buildup","orbit":3},"62757":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":46741}],"group":156,"skill":62757,"orbitIndex":3,"name":"Stun Buildup","orbit":2},"15838":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":15969}],"group":411,"skill":15838,"orbitIndex":2,"name":"Ailment Chance","orbit":4},"53443":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-6,"id":5710},{"orbit":0,"id":59767}],"group":315,"skill":53443,"orbitIndex":8,"name":"Attack Area","orbit":3},"18831":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":49545}],"group":722,"skill":18831,"orbitIndex":22,"name":"Block","orbit":2},"28370":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28370,"stats":["+5 to any Attribute"],"isAttribute":true,"group":511,"connections":[{"orbit":0,"id":7628},{"orbit":-6,"id":11916},{"orbit":-6,"id":37450}],"orbitIndex":39,"name":"Attribute","orbit":6},"10772":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":10772,"stats":["20% increased amount of Life Leeched","Leech Life 25% faster"],"recipe":["Disgust","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":2119}],"group":409,"orbitIndex":0,"isNotable":true,"name":"Bloodthirsty","orbit":0},"13294":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":20718}],"group":363,"skill":13294,"orbitIndex":6,"name":"Duration","orbit":1},"51535":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":8852}],"group":63,"skill":51535,"orbitIndex":13,"name":"Life Leech and Slower Leech","orbit":2},"8569":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8569,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":47177},{"orbit":0,"id":55507},{"orbit":0,"id":46034},{"orbit":0,"id":8540}],"orbitIndex":6,"name":"Attribute","orbit":6},"63021":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":23091}],"group":445,"skill":63021,"orbitIndex":14,"name":"Fire Damage","orbit":3},"6010":{"stats":["12% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":13367},{"orbit":0,"id":38969}],"group":803,"skill":6010,"orbitIndex":8,"name":"Accuracy","orbit":2},"55491":{"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":257,"skill":55491,"orbitIndex":7,"name":"Reservation Mastery","orbit":1},"59263":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":59263,"stats":["25% increased Damage with Swords"],"recipe":["Paranoia","Envy","Greed"],"connections":[{"orbit":0,"id":37963}],"group":352,"orbitIndex":33,"isNotable":true,"name":"Ripping Blade","orbit":4},"33369":{"icon":"Art/2DArt/SkillIcons/passives/vaalpact.dds","skill":33369,"isKeystone":true,"stats":["Life Leech is Instant","Cannot use Life Flasks"],"group":397,"connections":[],"orbitIndex":0,"name":"Vaal Pact","orbit":0},"19122":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":28432}],"group":383,"skill":19122,"orbitIndex":12,"name":"Armour if Consumed Endurance Charge","orbit":2},"7971":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-7,"id":1468}],"group":519,"skill":7971,"orbitIndex":10,"name":"Mana Regeneration","orbit":4},"20119":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":419,"skill":20119,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"50469":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50469,"stats":["+5 to any Attribute"],"isAttribute":true,"group":756,"connections":[{"orbit":0,"id":32701}],"orbitIndex":0,"name":"Attribute","orbit":0},"12751":{"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":284,"skill":12751,"orbitIndex":15,"name":"One Handed Critical Chance","orbit":2},"5692":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":35708},{"orbit":0,"id":51821}],"group":119,"skill":5692,"orbitIndex":6,"name":"Chill Effect","orbit":2},"9050":{"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-4,"id":24958},{"orbit":-6,"id":37691}],"group":845,"skill":9050,"orbitIndex":36,"name":"Attack Damage with nearby Ally","orbit":6},"440":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-5,"id":6133}],"group":49,"skill":440,"orbitIndex":0,"name":"Shield Defences","orbit":0},"3866":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":32258},{"orbit":0,"id":14505}],"group":282,"skill":3866,"orbitIndex":5,"name":"Minion Life","orbit":7},"15427":{"stats":["12% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":57379}],"group":37,"skill":15427,"orbitIndex":19,"name":"Melee Damage","orbit":3},"10423":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":10423,"stats":["Damage Penetrates 15% Fire Resistance","Fire Exposure you inflict lowers Total Fire Resistance by an extra 5%"],"recipe":["Isolation","Envy","Disgust"],"connections":[{"orbit":-7,"id":37905}],"group":990,"orbitIndex":0,"isNotable":true,"name":"Exposed to the Inferno","orbit":1},"11315":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48846}],"group":622,"skill":11315,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"29361":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":615,"skill":29361,"orbitIndex":7,"name":"Evasion and Energy Shield","orbit":7},"40630":{"stats":["15% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":44527}],"group":668,"skill":40630,"orbitIndex":7,"name":"Flask Charges Gained","orbit":7},"53308":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17138}],"group":101,"skill":53308,"orbitIndex":5,"name":"Melee Damage","orbit":3},"24868":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds","skill":24868,"stats":["Your speed is unaffected by Slows"],"ascendancyName":"Pathfinder","connections":[],"group":1041,"orbitIndex":96,"isNotable":true,"name":"Relentless Pursuit","orbit":9},"42802":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1002,"skill":42802,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"50609":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds","skill":50609,"stats":["40% increased Flask Life Recovery rate","Regenerate 0.75% of Life per second"],"recipe":["Guilt","Greed","Guilt"],"connections":[{"orbit":0,"id":11916}],"group":526,"orbitIndex":18,"isNotable":true,"name":"Hard to Kill","orbit":3},"28510":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28510,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":-5,"id":45969},{"orbit":0,"id":10247}],"orbitIndex":56,"name":"Attribute","orbit":6},"49550":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":49550,"stats":["Inherent loss of Rage is 25% slower"],"recipe":["Ire","Greed","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":330,"orbitIndex":12,"isNotable":true,"name":"Prolonged Fury","orbit":7},"56349":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds","skill":56349,"isKeystone":true,"stats":["Maximum Life becomes 1, Immune to Chaos Damage"],"group":853,"connections":[],"orbitIndex":0,"name":"Chaos Inoculation","orbit":0},"40894":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":1218}],"group":278,"skill":40894,"orbitIndex":20,"name":"Minion Life","orbit":3},"41811":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":41811,"stats":["30% increased Stun Buildup","30% increased Daze Buildup"],"recipe":["Greed","Despair","Paranoia"],"connections":[{"orbit":0,"id":35173}],"group":938,"orbitIndex":2,"isNotable":true,"name":"Shatter Palm","orbit":3},"64474":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":749,"skill":64474,"orbitIndex":22,"name":"Energy Shield Delay","orbit":2},"59915":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":7741},{"orbit":-6,"id":97},{"orbit":-6,"id":2455}],"group":524,"skill":59915,"orbitIndex":0,"name":"Projectile Damage","orbit":0},"22927":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":20582}],"group":965,"skill":22927,"orbitIndex":24,"name":"Shield Evasion","orbit":6},"44850":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":546,"skill":44850,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"36659":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds","skill":36659,"stats":["You can Break Enemy Armour to below 0"],"ascendancyName":"Warbringer","connections":[],"group":5,"orbitIndex":0,"isNotable":true,"name":"Imploding Impacts","orbit":0},"48030":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":62436}],"group":584,"skill":48030,"orbitIndex":1,"name":"Energy Shield","orbit":7},"21077":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":354}],"group":469,"skill":21077,"orbitIndex":12,"name":"Grenade Cooldown Recovery Rate","orbit":3},"2361":{"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":34316}],"group":1021,"skill":2361,"orbitIndex":4,"name":"Quarterstaff Stun and Knockback","orbit":5},"48418":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":48418,"stats":["+3 to Stun Threshold per Strength"],"recipe":["Ire","Disgust","Suffering"],"connections":[{"orbit":0,"id":38235}],"group":322,"orbitIndex":10,"isNotable":true,"name":"Hefty Unit","orbit":2},"9857":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54990}],"group":457,"skill":9857,"orbitIndex":8,"name":"Bleeding Chance","orbit":2},"45193":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":4083}],"group":769,"skill":45193,"orbitIndex":17,"name":"Poison Damage","orbit":2},"33556":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":55473}],"group":394,"skill":33556,"orbitIndex":2,"name":"Melee Damage","orbit":7},"37450":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[],"group":492,"skill":37450,"orbitIndex":46,"name":"Ailment Chance","orbit":4},"31409":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":50437}],"group":604,"skill":31409,"orbitIndex":3,"name":"Evasion","orbit":2},"1801":{"stats":["5% chance to Blind Enemies on Hit"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":3,"id":60}],"group":961,"skill":1801,"orbitIndex":4,"name":"Blind Chance","orbit":7},"63813":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":1169}],"group":166,"skill":63813,"orbitIndex":18,"name":"Warcry Speed","orbit":7},"48682":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":48682,"stats":["20% increased Totem Life"],"ascendancyName":"Warbringer","group":12,"connections":[{"orbit":4,"id":40915}],"orbitIndex":0,"name":"Totem Life","orbit":0},"11641":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds","skill":11641,"stats":["+10% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":45248},{"orbit":0,"id":55582}],"group":241,"orbitIndex":0,"isNotable":true,"name":"Crystalline Potential","orbit":0},"38707":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38707,"stats":["+5 to any Attribute"],"isAttribute":true,"group":112,"connections":[{"orbit":0,"id":49734},{"orbit":0,"id":28564}],"orbitIndex":0,"name":"Attribute","orbit":0},"34487":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":314,"skill":34487,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"6505":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":55060}],"group":547,"skill":6505,"orbitIndex":4,"name":"Pierce Chance","orbit":3},"13457":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":13457,"stats":["30% increased Evasion Rating if you have been Hit Recently","60% faster start of Energy Shield Recharge if you've been Stunned Recently"],"recipe":["Despair","Guilt","Despair"],"connections":[{"orbit":5,"id":3630}],"group":905,"orbitIndex":60,"isNotable":true,"name":"Shadow Dancing","orbit":4},"35015":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":6655}],"group":433,"skill":35015,"orbitIndex":0,"name":"Bleeding Damage","orbit":0},"52126":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":21885}],"group":136,"skill":52126,"orbitIndex":0,"name":"Stun Threshold and Strength","orbit":2},"15885":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15885,"stats":["+5 to any Attribute"],"isAttribute":true,"group":434,"connections":[{"orbit":3,"id":12367},{"orbit":0,"id":22783}],"orbitIndex":0,"name":"Attribute","orbit":0},"10881":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":3,"id":36450}],"group":719,"skill":10881,"orbitIndex":0,"name":"Focus Energy Shield","orbit":0},"32763":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":32763,"stats":[],"group":1015,"connections":[],"orbitIndex":6,"name":"Jewel Socket","orbit":1},"57141":{"isMultipleChoice":true,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds","skill":57141,"stats":[],"ascendancyName":"Pathfinder","connections":[],"group":1046,"orbitIndex":0,"isNotable":true,"name":"Brew Concoction","orbit":0},"41096":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":35901},{"orbit":0,"id":31345}],"group":828,"skill":41096,"orbitIndex":36,"name":"Elemental Damage and Shock Chance","orbit":5},"6988":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":28044}],"group":1017,"skill":6988,"orbitIndex":12,"name":"Herald Mastery","orbit":2},"16784":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":31650}],"group":177,"skill":16784,"orbitIndex":68,"name":"Totem Life","orbit":5},"47893":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":57774}],"group":551,"skill":47893,"orbitIndex":21,"name":"Dual Wielding Speed","orbit":2},"25363":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44098},{"orbit":0,"id":1823},{"orbit":0,"id":34531}],"group":412,"skill":25363,"orbitIndex":20,"name":"Stun Threshold from Energy Shield","orbit":7},"44201":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":687,"skill":44201,"orbitIndex":2,"name":"Additional Spell Projectiles","orbit":2},"51335":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","options":{"Witch":{"stats":["15% increased Critical Hit Chance for Spells","18% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Jagged Shards","id":64801}},"skill":51335,"stats":["18% increased Fire Damage","30% increased chance to Ignite"],"recipe":["Suffering","Fear","Greed"],"isSwitchable":true,"connections":[{"orbit":-6,"id":51968},{"orbit":0,"id":5726}],"group":475,"orbitIndex":21,"isNotable":true,"name":"Path of Flame","orbit":7},"722":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":722,"stats":["+5 to any Attribute"],"isAttribute":true,"group":984,"connections":[{"orbit":0,"id":3419},{"orbit":0,"id":15775}],"orbitIndex":0,"name":"Attribute","orbit":0},"28774":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":2999},{"orbit":0,"id":10295}],"group":157,"skill":28774,"orbitIndex":26,"name":"Cast Speed","orbit":6},"39964":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":48198}],"group":615,"skill":39964,"orbitIndex":4,"name":"Mana Regeneration","orbit":2},"32672":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4031}],"group":947,"skill":32672,"orbitIndex":12,"name":"Freeze and Chill Resistance","orbit":3},"44527":{"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds","skill":44527,"stats":["15% increased Flask Effect Duration","15% increased Flask Charges gained"],"recipe":["Disgust","Paranoia","Disgust"],"connections":[{"orbit":0,"id":44875}],"group":668,"orbitIndex":2,"isNotable":true,"name":"Cautious Concoctions","orbit":2},"33169":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":33169,"stats":["+5 to any Attribute"],"isAttribute":true,"group":361,"connections":[{"orbit":0,"id":44419},{"orbit":0,"id":49231}],"orbitIndex":0,"name":"Attribute","orbit":0},"53108":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds","skill":53108,"stats":["Attribute Requirements of Gems can be satisified by your highest Attribute"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":36822}],"group":316,"orbitIndex":0,"isNotable":true,"name":"Adaptive Capability","orbit":0},"23455":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":49740},{"orbit":0,"id":55847}],"group":727,"skill":23455,"orbitIndex":0,"name":"Cold Damage","orbit":0},"30252":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":20049},{"orbit":-4,"id":48135}],"group":692,"skill":30252,"orbitIndex":18,"name":"Charm Charges","orbit":7},"25239":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds","skill":25239,"stats":["Grants Skill: Demon Form"],"ascendancyName":"Infernalist","connections":[{"orbit":-3,"id":63894}],"group":486,"orbitIndex":66,"isNotable":true,"name":"Demonic Possession","orbit":8},"8872":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"orbit":0,"id":2394},{"orbit":0,"id":45488}],"group":550,"skill":8872,"orbitIndex":0,"name":"Dual Wielding Mastery","orbit":0},"21935":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":21935,"stats":["30% increased maximum Energy Shield","4% increased maximum Mana"],"recipe":["Suffering","Isolation","Despair"],"connections":[{"orbit":0,"id":18240}],"group":193,"orbitIndex":23,"isNotable":true,"name":"Calibration","orbit":3},"13279":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13279,"stats":["+5 to any Attribute"],"isAttribute":true,"group":380,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"55621":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":38537}],"group":1014,"skill":55621,"orbitIndex":22,"name":"Critical Chance","orbit":7},"30979":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30979,"stats":["+5 to any Attribute"],"isAttribute":true,"group":351,"connections":[{"orbit":0,"id":46358},{"orbit":0,"id":44733}],"orbitIndex":0,"name":"Attribute","orbit":0},"8554":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":8554,"stats":["25% increased Fire Damage","15% increased Ignite Duration on Enemies"],"recipe":["Greed","Isolation","Greed"],"connections":[{"orbit":0,"id":47191}],"group":138,"orbitIndex":54,"isNotable":true,"name":"Burning Nature","orbit":4},"53647":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[],"group":444,"skill":53647,"orbitIndex":12,"name":"Armour and Evasion","orbit":3},"25594":{"stats":["Offerings have 15% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":34030}],"group":544,"skill":25594,"orbitIndex":0,"name":"Offering Life","orbit":4},"34612":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":60764}],"group":1006,"skill":34612,"orbitIndex":16,"name":"Bow Damage","orbit":5},"37327":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":319,"skill":37327,"orbitIndex":16,"name":"Mana Regeneration","orbit":7},"38646":{"stats":["+20 to Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":23570}],"group":441,"skill":38646,"orbitIndex":0,"name":"Armour","orbit":0},"65009":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":65009,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":29517},{"orbit":0,"id":23915},{"orbit":7,"id":31855}],"orbitIndex":30,"name":"Attribute","orbit":6},"43131":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":43131,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":-9,"id":61973}],"orbitIndex":40,"name":"Damage vs Low Life Enemies","orbit":8},"1995":{"stats":["15% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[],"group":778,"skill":1995,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"36071":{"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern","connections":[],"group":954,"skill":36071,"orbitIndex":12,"name":"Spear Mastery","orbit":5},"25503":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":27068},{"orbit":0,"id":45632}],"group":147,"skill":25503,"orbitIndex":14,"name":"Mana Regeneration","orbit":7},"57204":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":57204,"stats":["25% increased Critical Hit Chance"],"recipe":["Envy","Paranoia","Ire"],"connections":[{"orbit":0,"id":47833}],"group":619,"orbitIndex":13,"isNotable":true,"name":"Critical Exploit","orbit":2},"65207":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-6,"id":63566}],"group":850,"skill":65207,"orbitIndex":14,"name":"Evasion","orbit":3},"11525":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":64724}],"group":64,"skill":11525,"orbitIndex":11,"name":"Ignite Chance","orbit":2},"7120":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":7120,"stats":[],"ascendancyName":"Witchhunter","isAscendancyStart":true,"group":152,"connections":[{"orbit":-8,"id":43131},{"orbit":0,"id":51737},{"orbit":8,"id":61897},{"orbit":0,"id":20830},{"orbit":0,"id":32559}],"orbitIndex":72,"name":"Witchhunter","orbit":9},"13341":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":63255},{"orbit":0,"id":56841},{"orbit":0,"id":18451}],"group":706,"skill":13341,"orbitIndex":22,"name":"Frenzy Charge Duration","orbit":2},"14272":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":815,"skill":14272,"orbitIndex":7,"name":"Spell Suppression Mastery","orbit":2},"10602":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":10602,"stats":["8% increased Attack Speed with One Handed Weapons","+15 to Dexterity"],"recipe":["Despair","Ire","Envy"],"connections":[{"orbit":0,"id":8629}],"group":226,"orbitIndex":9,"isNotable":true,"name":"Reaving","orbit":4},"5188":{"stats":["3% increased Unarmed Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":2,"id":38668}],"group":992,"skill":5188,"orbitIndex":0,"name":"Unarmed Attack Speed","orbit":0},"12418":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51832},{"orbit":0,"id":3988}],"group":90,"skill":12418,"orbitIndex":21,"name":"Empowered Attack Damage","orbit":2},"12169":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":60138}],"group":854,"skill":12169,"orbitIndex":13,"name":"Physical Mastery","orbit":2},"22959":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":651,"skill":22959,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"10571":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":48240}],"group":269,"skill":10571,"orbitIndex":17,"name":"Stun Threshold","orbit":3},"36723":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":0,"id":3700}],"group":878,"skill":36723,"orbitIndex":0,"name":"Stun and Freeze Buildup","orbit":2},"22928":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22928,"stats":["+5 to any Attribute"],"isAttribute":true,"group":315,"connections":[{"orbit":0,"id":27373}],"orbitIndex":69,"name":"Attribute","orbit":5},"38972":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":38972,"stats":["Minions Revive 25% faster"],"recipe":["Despair","Fear","Disgust"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":8357}],"group":278,"orbitIndex":8,"isNotable":true,"name":"Restless Dead","orbit":3},"38057":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[],"group":527,"skill":38057,"orbitIndex":58,"name":"Armour and Evasion","orbit":5},"15358":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":7,"id":10320},{"orbit":-7,"id":44255}],"group":630,"skill":15358,"orbitIndex":15,"name":"Minion Life","orbit":3},"45319":{"stats":["8% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":55041},{"orbit":0,"id":26135},{"orbit":0,"id":3251}],"group":794,"skill":45319,"orbitIndex":14,"name":"Spell Damage","orbit":3},"43923":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":19104}],"group":658,"skill":43923,"orbitIndex":2,"name":"Accuracy","orbit":2},"42077":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":42077,"stats":["40% increased Energy Shield Recharge Rate","+10 to Intelligence"],"recipe":["Envy","Envy","Greed"],"connections":[{"orbit":0,"id":56564},{"orbit":0,"id":2102}],"group":447,"orbitIndex":11,"isNotable":true,"name":"Essence Infusion","orbit":2},"7405":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":4850}],"group":678,"skill":7405,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"26725":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":26725,"stats":[],"group":74,"connections":[{"orbit":0,"id":27082}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"33946":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":34074},{"orbit":0,"id":57227}],"group":695,"skill":33946,"orbitIndex":7,"name":"Attack Critical Chance","orbit":7},"17871":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":32672}],"group":947,"skill":17871,"orbitIndex":12,"name":"Freeze and Chill Resistance","orbit":2},"3936":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":13397}],"group":437,"skill":3936,"orbitIndex":0,"name":"Melee Damage","orbit":0},"57608":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":37509}],"group":94,"skill":57608,"orbitIndex":0,"name":"Shapeshifting","orbit":0},"13411":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13411,"stats":["+5 to any Attribute"],"isAttribute":true,"group":708,"connections":[{"orbit":7,"id":34136}],"orbitIndex":42,"name":"Attribute","orbit":5},"33093":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":33093,"stats":["4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"recipe":["Suffering","Isolation","Envy"],"connections":[],"group":944,"orbitIndex":6,"isNotable":true,"name":"Effervescent","orbit":7},"59053":{"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":54805}],"group":739,"skill":59053,"orbitIndex":8,"name":"Slow Effect and Hinder Duration","orbit":3},"34210":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":54811},{"orbit":0,"id":64939}],"group":228,"skill":34210,"orbitIndex":0,"name":"Two Handed Damage","orbit":0},"12488":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":12488,"stats":["12% increased Elemental Damage"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":49189}],"orbitIndex":8,"name":"Elemental Damage","orbit":9},"36522":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":3999},{"orbit":0,"id":54099}],"group":430,"skill":36522,"orbitIndex":33,"name":"Attack Area","orbit":4},"23192":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":80,"skill":23192,"orbitIndex":42,"name":"Block","orbit":4},"53373":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":39517},{"orbit":0,"id":36629}],"group":354,"skill":53373,"orbitIndex":45,"name":"Stun Threshold","orbit":4},"64405":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":177,"skill":64405,"orbitIndex":12,"name":"Totem Damage","orbit":3},"4139":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":63,"skill":4139,"orbitIndex":0,"name":"Life Mastery","orbit":0},"12208":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-7,"id":32813}],"group":811,"skill":12208,"orbitIndex":3,"name":"Life Flasks","orbit":7},"22556":{"stats":["30% increased Evasion Rating while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":11257},{"orbit":7,"id":35028}],"group":480,"skill":22556,"orbitIndex":15,"name":"Evasion while Surrounded","orbit":3},"47833":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":619,"skill":47833,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"24511":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":49696}],"group":509,"skill":24511,"orbitIndex":6,"name":"All Attributes","orbit":7},"46499":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":46499,"stats":["Recover 3% of Life for each Endurance Charge consumed","+1 to Maximum Endurance Charges"],"recipe":["Suffering","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":99,"orbitIndex":0,"isNotable":true,"name":"Guts","orbit":0},"28839":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[],"group":246,"skill":28839,"orbitIndex":16,"name":"Cast Speed","orbit":2},"18895":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":3,"id":12661}],"group":663,"skill":18895,"orbitIndex":6,"name":"Stun Threshold from Energy Shield","orbit":1},"49088":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":49088,"stats":["Minions have +150 to Accuracy Rating","25% increased Minion Accuracy Rating"],"recipe":["Envy","Paranoia","Guilt"],"connections":[{"orbit":7,"id":17394}],"group":609,"orbitIndex":0,"isNotable":true,"name":"Fear of Death","orbit":0},"20582":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":55329}],"group":965,"skill":20582,"orbitIndex":21,"name":"Block","orbit":6},"44917":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":44917,"stats":["Gain 20% of maximum Energy Shield as additional Stun Threshold","20% increased Stun Threshold while on Full Life"],"recipe":["Ire","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":34984}],"group":663,"orbitIndex":0,"isNotable":true,"name":"Self Mortification","orbit":7},"17468":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17468,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[],"orbitIndex":48,"name":"Attribute","orbit":6},"42076":{"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-7,"id":17706}],"group":594,"skill":42076,"orbitIndex":0,"name":"Energy Shield Recharge and Mana Flask Recovery","orbit":0},"56616":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":56616,"stats":["Regenerate 1.5% of Life per second while on Low Life","40% increased Life Recovery from Flasks used when on Low Life"],"recipe":["Despair","Disgust","Ire"],"connections":[{"orbit":3,"id":13562},{"orbit":0,"id":41415}],"group":360,"orbitIndex":0,"isNotable":true,"name":"Desperate Times","orbit":2},"10998":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":10998,"stats":["Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet"],"recipe":["Paranoia","Ire","Guilt"],"connections":[{"orbit":0,"id":21438},{"orbit":0,"id":62235}],"group":618,"orbitIndex":24,"isNotable":true,"name":"Strong Chin","orbit":4},"25304":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-2,"id":61056}],"group":855,"skill":25304,"orbitIndex":5,"name":"Energy","orbit":7},"6839":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":39581}],"group":394,"skill":6839,"orbitIndex":14,"name":"Stun Buildup","orbit":7},"53901":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":7,"id":34375}],"group":261,"skill":53901,"orbitIndex":12,"name":"Shield Block","orbit":3},"39237":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":903,"skill":39237,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"35809":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":35809,"stats":["Regenerate 1% of Life per Second if you've used a Life Flask in the past 10 seconds"],"recipe":["Disgust","Envy","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":811,"orbitIndex":6,"isNotable":true,"name":"Reinvigoration","orbit":1},"43736":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","id":38659}},"skill":43736,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":533,"connections":[{"orbit":4,"id":29695}],"orbitIndex":3,"name":"Energy Shield Delay","orbit":2},"32233":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":545,"skill":32233,"orbitIndex":21,"name":"Duration Mastery","orbit":2},"27674":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44082}],"group":289,"skill":27674,"orbitIndex":10,"name":"Energy Shield Recharge","orbit":2},"13675":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPoisonSpreadsNearbyEnemies.dds","skill":13675,"stats":["The most Damaging Poison on Enemies you Kill is Spread to other Enemies within 1.5 metres"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":61804}],"group":1050,"orbitIndex":0,"isNotable":true,"name":"Contagious Contamination","orbit":0},"54099":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54099,"stats":["+5 to any Attribute"],"isAttribute":true,"group":443,"connections":[{"orbit":0,"id":8493},{"orbit":0,"id":54127}],"orbitIndex":0,"name":"Attribute","orbit":0},"50795":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":50795,"stats":["16% increased Projectile Damage","40% increased Accuracy Rating at Close Range"],"recipe":["Guilt","Guilt","Paranoia"],"connections":[{"orbit":0,"id":58013},{"orbit":0,"id":20744}],"group":645,"orbitIndex":7,"isNotable":true,"name":"Careful Aim","orbit":7},"33823":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":757,"skill":33823,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"52191":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":52191,"stats":["53% increased Chaos Damage","Lose 3% of Life and Energy Shield when you use a Chaos Skill"],"recipe":["Despair","Isolation","Guilt"],"connections":[{"orbit":-7,"id":57724}],"group":856,"orbitIndex":0,"isNotable":true,"name":"Event Horizon","orbit":0},"6872":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":0,"id":18448}],"group":67,"skill":6872,"orbitIndex":4,"name":"Maximum Cold Resistance","orbit":4},"42604":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":243,"skill":42604,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"53975":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":33254},{"orbit":0,"id":40783}],"group":555,"skill":53975,"orbitIndex":0,"name":"Spell Damage","orbit":2},"59779":{"stats":["+10 to Armour","+8 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":50986},{"orbit":6,"id":42350},{"orbit":6,"id":97},{"orbit":5,"id":11311}],"group":493,"skill":59779,"orbitIndex":0,"name":"Armour and Evasion","orbit":0},"41225":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":626,"skill":41225,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"4271":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","connections":[{"orbit":0,"id":62887},{"orbit":-3,"id":33225},{"orbit":-7,"id":61768},{"orbit":-2,"id":63926}],"group":626,"skill":4271,"orbitIndex":8,"name":"Minion Resistances","orbit":2},"5163":{"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":0,"id":26726}],"group":937,"skill":5163,"orbitIndex":19,"name":"Knockback and Stun Buildup","orbit":2},"9020":{"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":9020,"stats":["25% increased Damage with Hits against Rare and Unique Enemies","20% increased Accuracy Rating against Rare or Unique Enemies","20% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Despair","Isolation","Despair"],"connections":[{"orbit":0,"id":35118}],"group":685,"orbitIndex":11,"isNotable":true,"name":"Giantslayer","orbit":1},"15180":{"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-2,"id":61444}],"group":262,"skill":15180,"orbitIndex":8,"name":"Unleash Seal Generation","orbit":2},"29458":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":1003,"skill":29458,"orbitIndex":14,"name":"Poison Damage","orbit":7},"3203":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-4,"id":30562}],"group":767,"skill":3203,"orbitIndex":12,"name":"Evasion and Energy Shield","orbit":7},"20416":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":20416,"stats":["5% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","+1 to Maximum Endurance Charges"],"recipe":["Suffering","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":383,"orbitIndex":0,"isNotable":true,"name":"Grit","orbit":0},"4527":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4527,"stats":["+5 to any Attribute"],"isAttribute":true,"group":128,"connections":[{"orbit":0,"id":54701}],"orbitIndex":0,"name":"Attribute","orbit":0},"1869":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":27095}],"group":745,"skill":1869,"orbitIndex":1,"name":"Freeze Buildup","orbit":2},"29788":{"stats":["12% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-2,"id":46060}],"group":336,"skill":29788,"orbitIndex":0,"name":"Life Leech","orbit":7},"61703":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":61703,"stats":["25% increased Attack Damage"],"recipe":["Ire","Greed","Greed"],"connections":[],"group":111,"orbitIndex":0,"isNotable":true,"name":"Sharpened Claw","orbit":0},"37190":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":35855}],"group":592,"skill":37190,"orbitIndex":7,"name":"Life Leech","orbit":2},"6715":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":3,"id":116},{"orbit":0,"id":41372}],"group":584,"skill":6715,"orbitIndex":17,"name":"Energy Shield and Mana Regeneration","orbit":7},"45383":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":23930},{"orbit":0,"id":30662}],"group":146,"skill":45383,"orbitIndex":36,"name":"Lightning Damage","orbit":4},"59390":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":11472},{"orbit":0,"id":65009}],"group":741,"skill":59390,"orbitIndex":4,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"45709":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":52803}],"group":857,"skill":45709,"orbitIndex":21,"name":"Life Flask Charges","orbit":7},"34817":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds","skill":34817,"stats":["50% reduced Darkness Reservation Duration"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":64,"isNotable":true,"name":"Inner Silence","orbit":9},"47555":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47555,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":0,"id":51184},{"orbit":0,"id":18407},{"orbit":0,"id":39886}],"orbitIndex":22,"name":"Attribute","orbit":6},"8260":{"stats":["20% increased Armour Break Duration"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":21453}],"group":127,"skill":8260,"orbitIndex":0,"name":"Armour Break Duration","orbit":7},"52254":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":42290}],"group":565,"skill":52254,"orbitIndex":14,"name":"Curse Effect","orbit":7},"17903":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":40117}],"group":133,"skill":17903,"orbitIndex":6,"name":"Thorns","orbit":7},"6748":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":48618},{"orbit":3,"id":62122}],"group":319,"skill":6748,"orbitIndex":8,"name":"Damage from Mana","orbit":7},"54228":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":64240}],"group":81,"skill":54228,"orbitIndex":18,"name":"Physical Damage","orbit":2},"9796":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-4,"id":62310}],"group":345,"skill":9796,"orbitIndex":18,"name":"Ignite Chance","orbit":2},"55888":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":18746},{"orbit":0,"id":49256},{"orbit":0,"id":440}],"group":51,"skill":55888,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":0},"38044":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-4,"id":37695}],"group":800,"skill":38044,"orbitIndex":4,"name":"Evasion","orbit":7},"24477":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":17532}],"group":322,"skill":24477,"orbitIndex":20,"name":"Stun Threshold and Strength","orbit":2},"16367":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":723,"skill":16367,"orbitIndex":0,"name":"Elemental Damage","orbit":0},"43396":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":43396,"stats":["25% increased Totem Placement speed","50% increased Totem Placement range"],"recipe":["Suffering","Paranoia","Ire"],"connections":[{"orbit":0,"id":40550}],"group":209,"orbitIndex":0,"isNotable":true,"name":"Ancestral Reach","orbit":0},"59720":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":59720,"stats":["100% increased Evasion Rating from Equipped Body Armour"],"recipe":["Greed","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":0,"id":41163}],"group":982,"orbitIndex":42,"isNotable":true,"name":"Beastial Skin","orbit":5},"5295":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":5961}],"group":652,"skill":5295,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"2113":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":2113,"stats":["25% increased Accuracy Rating with Quarterstaves","25% increased Critical Damage Bonus with Quarterstaves","+25 to Dexterity"],"recipe":["Isolation","Ire","Fear"],"connections":[{"orbit":0,"id":326},{"orbit":0,"id":59694}],"group":1021,"orbitIndex":13,"isNotable":true,"name":"Martial Artistry","orbit":3},"20645":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":64284}],"group":315,"skill":20645,"orbitIndex":14,"name":"Attack Area","orbit":3},"6686":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":29472}},"skill":6686,"stats":["10% increased Mana Regeneration Rate"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":51184}],"orbitIndex":1,"name":"Mana Regeneration","orbit":2},"36927":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":5,"id":44756}],"group":914,"skill":36927,"orbitIndex":11,"name":"Mark Cast Speed","orbit":2},"15374":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":15374,"stats":["15% increased Life Recovery rate"],"recipe":["Despair","Paranoia","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":48035}],"group":337,"orbitIndex":0,"isNotable":true,"name":"Hale Heart","orbit":0},"54632":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":36507}],"group":448,"skill":54632,"orbitIndex":12,"name":"Minion Life and Chaos Resistance","orbit":2},"2656":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":5701}],"group":782,"skill":2656,"orbitIndex":6,"name":"Mark Effect","orbit":2},"15855":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":37963}],"group":352,"skill":15855,"orbitIndex":41,"name":"Sword Damage","orbit":5},"35671":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":3,"id":31172}],"group":896,"skill":35671,"orbitIndex":57,"name":"Attack Speed and Dexterity","orbit":4},"22057":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":2,"id":30143},{"orbit":4,"id":36808}],"group":790,"skill":22057,"orbitIndex":21,"name":"Shield Defences","orbit":7},"36788":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":36788,"stats":["11% increased Chaos Damage"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":25781}],"orbitIndex":8,"name":"Chaos Damage","orbit":6},"61768":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[],"group":629,"skill":61768,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"39037":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39037,"stats":["+5 to any Attribute"],"isAttribute":true,"group":538,"connections":[{"orbit":0,"id":11672}],"orbitIndex":0,"name":"Attribute","orbit":0},"48611":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","connections":[{"orbit":0,"id":4271},{"orbit":0,"id":46554}],"group":626,"skill":48611,"orbitIndex":0,"name":"Minion Resistances","orbit":2},"61429":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":44902}],"group":114,"skill":61429,"orbitIndex":18,"name":"Attack and Spell Damage","orbit":7},"11014":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":177,"skill":11014,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"8904":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":8904,"stats":["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m","Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"],"recipe":["Isolation","Fear","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":925,"orbitIndex":0,"isNotable":true,"name":"Death from Afar","orbit":0},"19249":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":19249,"stats":["25% increased Damage while you have a Totem","Totems have 2% increased Cast Speed per Summoned Totem","Totems have 2% increased Attack Speed per Summoned Totem"],"recipe":["Fear","Disgust","Isolation"],"connections":[{"orbit":4,"id":33209},{"orbit":0,"id":40550}],"group":209,"orbitIndex":0,"isNotable":true,"name":"Supportive Ancestors","orbit":6},"50273":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":47893},{"orbit":0,"id":63267},{"orbit":0,"id":3131}],"group":551,"skill":50273,"orbitIndex":0,"name":"Dual Wielding Damage","orbit":0},"917":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":65160}],"group":69,"skill":917,"orbitIndex":10,"name":"Stun Threshold","orbit":3},"53965":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":12337}],"group":700,"skill":53965,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"20909":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":2147483647,"id":44891}],"group":978,"skill":20909,"orbitIndex":0,"name":"Cold Penetration","orbit":2},"49280":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":3,"id":36170}],"group":428,"skill":49280,"orbitIndex":7,"name":"Armour and Evasion","orbit":7},"46034":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46034,"stats":["+5 to any Attribute"],"isAttribute":true,"group":696,"connections":[{"orbit":0,"id":41029},{"orbit":0,"id":10552}],"orbitIndex":0,"name":"Attribute","orbit":0},"55947":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":3,"id":46088}],"group":624,"skill":55947,"orbitIndex":12,"name":"Spell Critical Chance","orbit":2},"42280":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":21205}],"group":509,"skill":42280,"orbitIndex":22,"name":"All Attributes","orbit":7},"19125":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":19125,"stats":["30% increased Spell Damage","5% reduced Cast Speed"],"recipe":["Paranoia","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":555,"orbitIndex":4,"isNotable":true,"name":"Potent Incantation","orbit":1},"33887":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":33887,"stats":["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"],"recipe":["Ire","Isolation","Greed"],"connections":[{"orbit":0,"id":61432}],"group":612,"orbitIndex":7,"isNotable":true,"name":"Full Salvo","orbit":4},"62230":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":62230,"stats":["60% increased maximum Energy Shield","20% slower start of Energy Shield Recharge"],"recipe":["Suffering","Isolation","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":0,"id":19355}],"group":679,"orbitIndex":0,"isNotable":true,"name":"Patient Barrier","orbit":6},"41739":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":13279}],"group":362,"skill":41739,"orbitIndex":2,"name":"Stun Buildup","orbit":2},"18489":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":13356},{"orbit":-7,"id":12751},{"orbit":0,"id":37258}],"group":284,"skill":18489,"orbitIndex":19,"name":"One Handed Damage","orbit":7},"40760":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":21779},{"orbit":0,"id":9185},{"orbit":0,"id":47177}],"group":619,"skill":40760,"orbitIndex":1,"name":"Critical Chance","orbit":2},"28573":{"stats":["Minions Revive 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[],"group":630,"skill":28573,"orbitIndex":6,"name":"Minion Revive Speed","orbit":7},"14777":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":14777,"stats":["Empowered Attacks have 50% increased Stun Buildup","100% increased Stun Threshold during Empowered Attacks"],"recipe":["Suffering","Guilt","Despair"],"connections":[{"orbit":4,"id":59466},{"orbit":0,"id":20015}],"group":223,"orbitIndex":20,"isNotable":true,"name":"Bravado","orbit":7},"59909":{"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":4,"id":30539}],"group":709,"skill":59909,"orbitIndex":2,"name":"Corpses","orbit":7},"41615":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":4,"id":10534},{"orbit":0,"id":22616}],"group":209,"skill":41615,"orbitIndex":10,"name":"Totem Placement Speed","orbit":7},"52973":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":12851},{"orbit":0,"id":57555}],"group":426,"skill":52973,"orbitIndex":9,"name":"Bleed Chance","orbit":2},"53698":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":20916},{"orbit":0,"id":59355}],"group":802,"skill":53698,"orbitIndex":22,"name":"Attack Damage","orbit":7},"4985":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":4985,"stats":["Recover 20% of Life when you Heavy Stun a Rare or Unique Enemy"],"recipe":["Ire","Disgust","Ire"],"connections":[],"group":125,"orbitIndex":6,"isNotable":true,"name":"Flip the Script","orbit":7},"59256":{"stats":["20% increased Critical Hit Chance if you have Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":8531}],"group":331,"skill":59256,"orbitIndex":8,"name":"Critical Chance","orbit":2},"13823":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":13823,"stats":["25% increased Critical Hit Chance for Spells","Hits have 25% reduced Critical Hit Chance against you"],"recipe":["Envy","Fear","Isolation"],"connections":[{"orbit":0,"id":63861},{"orbit":0,"id":32054}],"group":624,"orbitIndex":0,"isNotable":true,"name":"Controlling Magic","orbit":3},"60173":{"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":2,"id":4238}],"group":826,"skill":60173,"orbitIndex":20,"name":"One Handed Accuracy","orbit":7},"24338":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":48581}],"group":411,"skill":24338,"orbitIndex":70,"name":"Damage against Ailments","orbit":5},"6133":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":6133,"stats":["100% increased Defences from Equipped Shield"],"recipe":["Paranoia","Greed","Fear"],"connections":[{"orbit":0,"id":33402},{"orbit":0,"id":58138}],"group":52,"orbitIndex":48,"isNotable":true,"name":"Core of the Guardian","orbit":4},"12419":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-1,"id":56063}],"group":617,"skill":12419,"orbitIndex":4,"name":"Chaos Damage and Duration","orbit":2},"55746":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-2,"id":61935}],"group":330,"skill":55746,"orbitIndex":4,"name":"Rage on Hit","orbit":7},"16647":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":321,"skill":16647,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"42205":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":197,"skill":42205,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"41210":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":41210,"stats":["15% increased Projectile Damage","Projectiles have 10% chance to Chain an additional time from terrain"],"recipe":["Ire","Disgust","Disgust"],"connections":[{"orbit":0,"id":1477},{"orbit":0,"id":43578}],"group":525,"orbitIndex":21,"isNotable":true,"name":"Ricochet","orbit":4},"32438":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":55149}],"group":879,"skill":32438,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"8881":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":8881,"stats":["+4 to Maximum Rage","Inherent Rage Loss starts 1 second later"],"recipe":["Isolation","Greed","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":161,"orbitIndex":6,"isNotable":true,"name":"Unforgiving","orbit":4},"52442":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":513,"skill":52442,"orbitIndex":20,"name":"Attack Speed","orbit":2},"9393":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":688,"skill":9393,"orbitIndex":6,"name":"Flask Mastery","orbit":1},"13505":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":13505,"stats":["20% increased Life Regeneration rate","5% of Damage taken Recouped as Life"],"recipe":["Envy","Guilt","Envy"],"connections":[{"orbit":3,"id":63209},{"orbit":0,"id":4956}],"group":369,"orbitIndex":0,"isNotable":true,"name":"Resilient Soul","orbit":0},"18629":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":64327}],"group":354,"skill":18629,"orbitIndex":0,"name":"Block","orbit":3},"34074":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":23259}],"group":695,"skill":34074,"orbitIndex":11,"name":"Attack Critical Chance","orbit":2},"59644":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-7,"id":42959}],"group":883,"skill":59644,"orbitIndex":15,"name":"Poison Damage","orbit":7},"13474":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":16084}],"group":225,"skill":13474,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"47759":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds","skill":47759,"isKeystone":true,"stats":["You can apply an additional Curse","Double Activation Delay of Curses"],"group":585,"connections":[{"orbit":2147483647,"id":62677}],"orbitIndex":0,"name":"Whispers of Doom","orbit":0},"6529":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-3,"id":32416}],"group":365,"skill":6529,"orbitIndex":0,"name":"Armour","orbit":2},"16845":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16845,"stats":["+5 to any Attribute"],"isAttribute":true,"group":571,"connections":[{"orbit":6,"id":46989}],"orbitIndex":36,"name":"Attribute","orbit":6},"28267":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":28267,"stats":["25% increased Critical Damage Bonus","Hits against you have 25% reduced Critical Damage Bonus"],"recipe":["Envy","Suffering","Greed"],"connections":[{"orbit":0,"id":2672},{"orbit":0,"id":35085}],"group":168,"orbitIndex":20,"isNotable":true,"name":"Desensitisation","orbit":3},"33221":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":0,"id":26331},{"orbit":0,"id":19722},{"orbit":0,"id":4959}],"group":863,"skill":33221,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"4956":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":370,"skill":4956,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"21670":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":29358}],"group":69,"skill":21670,"orbitIndex":7,"name":"Stun Buildup","orbit":1},"5398":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":51820}],"group":151,"skill":5398,"orbitIndex":40,"name":"Totem Cast Speed","orbit":4},"45244":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":45244,"stats":["Life Flasks gain 0.15 charges per Second"],"recipe":["Greed","Ire","Isolation"],"connections":[{"orbit":0,"id":23343},{"orbit":0,"id":41016}],"group":785,"orbitIndex":16,"isNotable":true,"name":"Refills","orbit":2},"58388":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":13157},{"orbit":0,"id":17702}],"group":785,"skill":58388,"orbitIndex":23,"name":"Life Flasks","orbit":3},"17268":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":17268,"stats":["15% increased Magnitude of Shock you inflict"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":3,"id":7621}],"orbitIndex":13,"name":"Shock Effect","orbit":6},"56216":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56216,"stats":["+5 to any Attribute"],"isAttribute":true,"group":537,"connections":[{"orbit":0,"id":9485}],"orbitIndex":0,"name":"Attribute","orbit":0},"45570":{"stats":["Offering Skills have 20% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":43713}],"group":456,"skill":45570,"orbitIndex":0,"name":"Offering Area","orbit":4},"35859":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":592,"skill":35859,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"46565":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":46565,"stats":["50% reduced Enemy Chance to Block Sword Attacks"],"recipe":["Ire","Guilt","Guilt"],"connections":[{"orbit":0,"id":15855}],"group":325,"orbitIndex":0,"isNotable":true,"name":"Stance Breaker","orbit":0},"23939":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":23939,"stats":["3% of Damage Taken Recouped as Life, Mana and Energy Shield"],"recipe":["Isolation","Fear","Fear"],"connections":[{"orbit":0,"id":857}],"group":381,"orbitIndex":12,"isNotable":true,"name":"Glazed Flesh","orbit":7},"3688":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":3688,"stats":["40% increased Damage if you've Triggered a Skill Recently","Meta Skills gain 15% increased Energy"],"recipe":["Isolation","Greed","Ire"],"connections":[{"orbit":-7,"id":47614},{"orbit":0,"id":32509}],"group":953,"orbitIndex":4,"isNotable":true,"name":"Dynamism","orbit":7},"64995":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":17924}],"group":232,"skill":64995,"orbitIndex":0,"name":"Damage against Enemies on Low Life","orbit":3},"47168":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47168,"stats":["+5 to any Attribute"],"isAttribute":true,"group":349,"connections":[{"orbit":-4,"id":6006},{"orbit":0,"id":54521}],"orbitIndex":0,"name":"Attribute","orbit":0},"17532":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":61934}],"group":322,"skill":17532,"orbitIndex":0,"name":"Stun Threshold","orbit":2},"36728":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds","skill":36728,"stats":["+1% to Maximum Cold Resistance per 4 Blue Support Gems Socketed","+1% to Maximum Fire Resistance per 4 Red Support Gems Socketed","+1% to Maximum Lightning Resistance per 4 Green Support Gems Socketed"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":318,"orbitIndex":0,"isNotable":true,"name":"Thaumaturgical Infusion","orbit":0},"18397":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":18397,"stats":["35% increased amount of Life Leeched","Leech Life 20% slower"],"recipe":["Despair","Ire","Ire"],"connections":[{"orbit":0,"id":55063},{"orbit":0,"id":4139}],"group":63,"orbitIndex":5,"isNotable":true,"name":"Savoured Blood","orbit":3},"58528":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":6,"id":5710}],"group":315,"skill":58528,"orbitIndex":2,"name":"Melee Damage","orbit":3},"48551":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":48551,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Blood Mage","group":607,"connections":[{"orbit":9,"id":26383}],"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"60634":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds","skill":60634,"stats":["Carry a Chest which adds 20 Inventory Slots"],"ascendancyName":"Titan","connections":[{"orbit":0,"id":27418}],"group":28,"orbitIndex":48,"isNotable":true,"name":"Colossal Capacity","orbit":5},"39365":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":39365,"stats":["20% increased Totem Life"],"ascendancyName":"Warbringer","group":15,"connections":[{"orbit":0,"id":39411}],"orbitIndex":0,"name":"Totem Life","orbit":0},"3242":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-4,"id":59636}],"group":505,"skill":3242,"orbitIndex":16,"name":"Mana Regeneration","orbit":2},"27705":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27705,"stats":["+5 to any Attribute"],"isAttribute":true,"group":998,"connections":[{"orbit":0,"id":48773},{"orbit":0,"id":2582},{"orbit":0,"id":38493},{"orbit":0,"id":65212}],"orbitIndex":0,"name":"Attribute","orbit":0},"13738":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":13738,"stats":["14% increased Lightning Damage","8% increased Attack and Cast Speed with Lightning Skills"],"recipe":["Fear","Fear","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":628,"orbitIndex":0,"isNotable":true,"name":"Lightning Quick","orbit":0},"27540":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":187,"skill":27540,"orbitIndex":0,"name":"Empowered Attack Damage","orbit":3},"61493":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":61493,"stats":["+5 to all Attributes","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Paranoia","Envy","Despair"],"connections":[{"orbit":0,"id":18240}],"group":193,"orbitIndex":19,"isNotable":true,"name":"Austerity Measures","orbit":3},"15522":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":6,"id":17348},{"orbit":-6,"id":24630}],"group":48,"skill":15522,"orbitIndex":21,"name":"Ignite Effect","orbit":3},"8540":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":45230}],"group":651,"skill":8540,"orbitIndex":10,"name":"Curse Area","orbit":2},"42794":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-5,"id":31433}],"group":875,"skill":42794,"orbitIndex":2,"name":"Elemental Attack Damage","orbit":3},"36325":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":-5,"id":54148}],"group":345,"skill":36325,"orbitIndex":71,"name":"Fire Penetration","orbit":4},"22419":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22419,"stats":["+5 to any Attribute"],"isAttribute":true,"group":477,"connections":[{"orbit":0,"id":18407},{"orbit":0,"id":4739}],"orbitIndex":0,"name":"Attribute","orbit":0},"39567":{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":39567,"stats":["+25 to Intelligence"],"recipe":["Ire","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":0,"isNotable":true,"name":"Ingenuity","orbit":5},"54557":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-6,"id":9421}],"group":860,"skill":54557,"orbitIndex":2,"name":"Cold Penetration","orbit":2},"41415":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":360,"skill":41415,"orbitIndex":0,"name":"Life Mastery","orbit":0},"19223":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":21755},{"orbit":0,"id":27270}],"group":553,"skill":19223,"orbitIndex":18,"name":"Attack Damage","orbit":7},"630":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":13419}],"group":720,"skill":630,"orbitIndex":4,"name":"Critical Damage","orbit":1},"62624":{"stats":["+30 to Evasion Rating","+15 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":905,"skill":62624,"orbitIndex":22,"name":"Evasion and Energy Shield","orbit":7},"31273":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17372}],"group":946,"skill":31273,"orbitIndex":6,"name":"Melee Damage","orbit":2},"49996":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49996,"stats":["+5 to any Attribute"],"isAttribute":true,"group":920,"connections":[{"orbit":0,"id":32183},{"orbit":-4,"id":38215},{"orbit":7,"id":5163}],"orbitIndex":0,"name":"Attribute","orbit":0},"55348":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":23227}],"group":379,"skill":55348,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"47155":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":35896},{"orbit":2,"id":63545},{"orbit":-2,"id":17394}],"group":609,"skill":47155,"orbitIndex":3,"name":"Minion Damage","orbit":3},"5088":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":49537}],"group":197,"skill":5088,"orbitIndex":18,"name":"Elemental","orbit":3},"28638":{"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"orbit":0,"id":37514},{"orbit":0,"id":2113}],"group":1022,"skill":28638,"orbitIndex":0,"name":"Quarterstaff Mastery","orbit":0},"53440":{"stats":["Gain 2 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":11306}],"group":78,"skill":53440,"orbitIndex":7,"name":"Axe Rage on Hit","orbit":3},"56605":{"icon":"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds","skill":56605,"isKeystone":true,"stats":["Dodge Roll cannot Avoid Damage","Take 30% less Damage from Hits while Dodge Rolling"],"group":300,"connections":[],"orbitIndex":0,"name":"Bulwark","orbit":0},"1200":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1200,"stats":["+5 to any Attribute"],"isAttribute":true,"group":46,"connections":[{"orbit":-4,"id":53822},{"orbit":0,"id":55190}],"orbitIndex":36,"name":"Attribute","orbit":4},"28002":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28002,"stats":["+5 to any Attribute"],"isAttribute":true,"group":242,"connections":[{"orbit":0,"id":32194}],"orbitIndex":0,"name":"Attribute","orbit":0},"53762":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":53762,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":312,"connections":[{"orbit":2147483647,"id":36728}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"29398":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":29398,"stats":["25% increased Chill Duration on Enemies"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":18849}],"orbitIndex":2,"name":"Chill Duration","orbit":6},"58651":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":55194},{"orbit":0,"id":49357}],"group":342,"skill":58651,"orbitIndex":71,"name":"Minion Damage","orbit":4},"21205":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":44176}],"group":509,"skill":21205,"orbitIndex":60,"name":"All Attributes","orbit":5},"7049":{"stats":["30% increased Armour while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":22556}],"group":480,"skill":7049,"orbitIndex":19,"name":"Armour while Surrounded","orbit":3},"61897":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":61897,"stats":["15% increased Armour and Evasion Rating"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":8,"id":38601}],"orbitIndex":32,"name":"Armour and Evasion","orbit":8},"58329":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58329,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":56360},{"orbit":0,"id":61196},{"orbit":0,"id":56638}],"orbitIndex":18,"name":"Attribute","orbit":6},"47683":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":547,"skill":47683,"orbitIndex":23,"name":"Chaining Projectiles","orbit":2},"32660":{"stats":["20% increased Critical Hit Chance if you have Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[],"group":331,"skill":32660,"orbitIndex":22,"name":"Critical Chance","orbit":2},"26821":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":25729}],"group":944,"skill":26821,"orbitIndex":14,"name":"Cast Speed","orbit":3},"45713":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":45713,"stats":["20% chance for Flasks you use to not consume Charges"],"recipe":["Disgust","Ire","Isolation"],"connections":[],"group":916,"orbitIndex":0,"isNotable":true,"name":"Savouring","orbit":0},"41538":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":3,"id":9112},{"orbit":0,"id":30047}],"group":734,"skill":41538,"orbitIndex":18,"name":"Ailment Threshold","orbit":3},"4931":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":4931,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"recipe":["Ire","Fear","Envy"],"connections":[{"orbit":0,"id":21404},{"orbit":0,"id":27307}],"group":289,"orbitIndex":0,"isNotable":true,"name":"Dependable Ward","orbit":2},"36450":{"stats":["12% increased Spell Damage while on Full Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":-4,"id":11838}],"group":719,"skill":36450,"orbitIndex":0,"name":"Spell Damage on full Energy Shield","orbit":3},"34076":{"stats":["25% increased Block Recovery"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":37244}],"group":790,"skill":34076,"orbitIndex":12,"name":"Block Recovery","orbit":7},"21438":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":1019}],"group":618,"skill":21438,"orbitIndex":5,"name":"Armour and Evasion","orbit":7},"44255":{"stats":["Minions Revive 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":-3,"id":28573}],"group":630,"skill":44255,"orbitIndex":12,"name":"Minion Revive Speed","orbit":7},"10053":{"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds","skill":10053,"stats":["10% chance for Flasks you use to not consume Charges","20% increased Life and Mana Recovery from Flasks"],"recipe":["Guilt","Greed","Ire"],"connections":[{"orbit":0,"id":19470},{"orbit":0,"id":9458}],"group":658,"orbitIndex":20,"isNotable":true,"name":"Combat Alchemy","orbit":2},"52836":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":7,"id":11980},{"orbit":0,"id":56806}],"group":655,"skill":52836,"orbitIndex":0,"name":"Block","orbit":4},"41414":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":-7,"id":4547}],"group":130,"skill":41414,"orbitIndex":23,"name":"Maximum Cold Resistance","orbit":7},"6079":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":10242}],"group":836,"skill":6079,"orbitIndex":16,"name":"Life Recoup","orbit":2},"14832":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":56,"skill":14832,"orbitIndex":0,"name":"Mace Mastery","orbit":0},"38172":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":60568}],"group":314,"skill":38172,"orbitIndex":5,"name":"Totem Placement Speed","orbit":7},"12761":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":760,"skill":12761,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":2},"29959":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":6891},{"orbit":-3,"id":60362}],"group":1002,"skill":29959,"orbitIndex":13,"name":"Critical Damage","orbit":2},"34340":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":34340,"stats":["Regenerate 0.5% of Life per second","Allies in your Presence Regenerate 1% of your Maximum Life per second"],"recipe":["Ire","Paranoia","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":17294}],"group":435,"orbitIndex":48,"isNotable":true,"name":"Mass Rejuvenation","orbit":4},"61632":{"stats":["20% increased Daze Buildup with Quarterstaves","20% increased Freeze Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":34316}],"group":1021,"skill":61632,"orbitIndex":2,"name":"Quarterstaff Freeze and Daze Buildup","orbit":5},"56214":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":30334}],"group":64,"skill":56214,"orbitIndex":6,"name":"Ignite Effect on You","orbit":3},"1169":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":1169,"stats":["Recover 2% of Life and Mana when you use a Warcry","24% increased Warcry Speed","18% increased Warcry Cooldown Recovery Rate"],"recipe":["Fear","Isolation","Suffering"],"connections":[{"orbit":0,"id":25031}],"group":166,"orbitIndex":14,"isNotable":true,"name":"Urgent Call","orbit":7},"6570":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":866,"skill":6570,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"28175":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28175,"stats":["+5 to any Attribute"],"isAttribute":true,"group":280,"connections":[{"orbit":0,"id":64471},{"orbit":0,"id":21716}],"orbitIndex":0,"name":"Attribute","orbit":0},"62887":{"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","skill":62887,"stats":["Minions have +22% to all Elemental Resistances","Minions have +3% to all Maximum Elemental Resistances"],"recipe":["Greed","Suffering","Disgust"],"connections":[{"orbit":0,"id":41225}],"group":626,"orbitIndex":16,"isNotable":true,"name":"Living Death","orbit":2},"42999":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":4925},{"orbit":3,"id":30808}],"group":1013,"skill":42999,"orbitIndex":14,"name":"Chaos Damage","orbit":3},"20015":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":223,"skill":20015,"orbitIndex":2,"name":"Warcry Mastery","orbit":7},"44783":{"stats":["Spell Skills have 12% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":22949}],"group":233,"skill":44783,"orbitIndex":18,"name":"Area Damage","orbit":2},"47418":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":47418,"stats":["10% reduced Flask Charges used from Mana Flasks","Remove a Curse when you use a Mana Flask"],"recipe":["Greed","Envy","Paranoia"],"connections":[{"orbit":0,"id":23839},{"orbit":0,"id":10738}],"group":887,"orbitIndex":9,"isNotable":true,"name":"Warding Potions","orbit":2},"20744":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":645,"skill":20744,"orbitIndex":3,"name":"Projectile Mastery","orbit":1},"23940":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":23940,"stats":["Increases and Reductions to Armour also apply to Energy Shield","Recharge Rate at 40% of their value"],"recipe":["Isolation","Envy","Ire"],"connections":[{"orbit":3,"id":14342},{"orbit":0,"id":58138}],"group":52,"orbitIndex":20,"isNotable":true,"name":"Adamant Recovery","orbit":7},"51921":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51921,"stats":["+5 to any Attribute"],"isAttribute":true,"group":392,"connections":[{"orbit":-4,"id":36629}],"orbitIndex":54,"name":"Attribute","orbit":6},"50459":{"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","classesStart":["Ranger","Huntress"],"skill":50459,"stats":[],"group":578,"connections":[{"orbit":0,"id":46990},{"orbit":0,"id":1583},{"orbit":0,"id":24665},{"orbit":0,"id":41736},{"orbit":0,"id":63493},{"orbit":0,"id":36365},{"orbit":0,"id":13828},{"orbit":0,"id":56651}],"orbitIndex":0,"name":"RANGER","orbit":0},"11938":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":39964}],"group":615,"skill":11938,"orbitIndex":0,"name":"Mana Regeneration","orbit":0},"49466":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":30871},{"orbit":0,"id":7526}],"group":812,"skill":49466,"orbitIndex":12,"name":"Life Flasks","orbit":7},"45774":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":54975}],"group":837,"skill":45774,"orbitIndex":71,"name":"Slow Effect","orbit":4},"7656":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":7656,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":0,"id":8415}],"orbitIndex":0,"name":"Life","orbit":8},"45712":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":65009}],"group":828,"skill":45712,"orbitIndex":60,"name":"Elemental Damage and Ignite Chance","orbit":5},"9642":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":9642,"stats":["28% increased maximum Energy Shield","Gain 12% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Guilt","Fear","Isolation"],"connections":[{"orbit":6,"id":517},{"orbit":-4,"id":14666}],"group":539,"orbitIndex":21,"isNotable":true,"name":"Dampening Shield","orbit":7},"44316":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":169,"skill":44316,"orbitIndex":6,"name":"Life Mastery","orbit":1},"10534":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-7,"id":46205}],"group":209,"skill":10534,"orbitIndex":2,"name":"Totem Cast Speed","orbit":2},"7788":{"stats":["8% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":5,"id":57805}],"group":517,"skill":7788,"orbitIndex":4,"name":"Knockback","orbit":7},"25565":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":722}],"group":969,"skill":25565,"orbitIndex":2,"name":"Lightning Damage","orbit":2},"8556":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":430,"skill":8556,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"36389":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-3,"id":53989}],"group":219,"skill":36389,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"34015":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34015,"stats":["+5 to any Attribute"],"isAttribute":true,"group":870,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":11825}],"orbitIndex":0,"name":"Attribute","orbit":0},"24045":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[],"group":648,"skill":24045,"orbitIndex":9,"name":"Mana Flask Recovery","orbit":2},"15507":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15507,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":48401}],"orbitIndex":10,"name":"Attribute","orbit":3},"38235":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":322,"skill":38235,"orbitIndex":0,"name":"Life Mastery","orbit":0},"43263":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-2,"id":64492}],"group":826,"skill":43263,"orbitIndex":12,"name":"One Handed Attack Speed","orbit":7},"35660":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":18548}],"group":620,"skill":35660,"orbitIndex":13,"name":"Attack Speed","orbit":2},"4295":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":4295,"stats":["20% reduced Life Regeneration rate","20% of Damage taken Recouped as Mana"],"recipe":["Ire","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":-3,"id":34248}],"group":319,"orbitIndex":0,"isNotable":true,"name":"Adverse Growth","orbit":0},"74":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":74,"stats":[],"ascendancyName":"Acolyte of Chayula","isAscendancyStart":true,"group":1058,"connections":[{"orbit":0,"id":17923},{"orbit":-9,"id":24475},{"orbit":0,"id":36788},{"orbit":0,"id":25779},{"orbit":-8,"id":1347}],"orbitIndex":24,"name":"Acolyte of Chayula","orbit":9},"38111":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":38111,"stats":["6% of Damage taken Recouped as Life","25% increased speed of Recoup Effects"],"recipe":["Greed","Disgust","Isolation"],"connections":[{"orbit":0,"id":32241}],"group":836,"orbitIndex":0,"isNotable":true,"name":"Pliable Flesh","orbit":2},"32271":{"stats":["15% increased Magnitude of Ignite you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":54311}],"group":196,"skill":32271,"orbitIndex":15,"name":"Critical Ignite Effect","orbit":7},"64406":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"orbit":0,"id":17762}],"group":293,"skill":64406,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"46628":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46628,"stats":["+5 to any Attribute"],"isAttribute":true,"group":248,"connections":[{"orbit":0,"id":40894},{"orbit":0,"id":60013}],"orbitIndex":67,"name":"Attribute","orbit":4},"13855":{"stats":["+10 to Armour","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":50626},{"orbit":0,"id":64370}],"group":442,"skill":13855,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":0},"3215":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":3215,"stats":["40% increased maximum Energy Shield","10% reduced maximum Mana"],"recipe":["Guilt","Envy","Suffering"],"connections":[{"orbit":0,"id":44359}],"group":584,"orbitIndex":9,"isNotable":true,"name":"Melding","orbit":7},"59913":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds","skill":59913,"stats":["You can apply an additional Mark"],"ascendancyName":"Deadeye","connections":[],"group":1031,"orbitIndex":0,"isNotable":true,"name":"Called Shots","orbit":0},"33612":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8983}],"group":282,"skill":33612,"orbitIndex":8,"name":"Minion Damage","orbit":1},"4328":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4328,"stats":["+5 to any Attribute"],"isAttribute":true,"group":834,"connections":[{"orbit":0,"id":63132},{"orbit":0,"id":21208}],"orbitIndex":0,"name":"Attribute","orbit":0},"39228":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":62603},{"orbit":0,"id":63021}],"group":445,"skill":39228,"orbitIndex":18,"name":"Fire Penetration","orbit":3},"38763":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":27859}],"group":574,"skill":38763,"orbitIndex":16,"name":"Herald Reservation","orbit":7},"21206":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":21206,"stats":["15% increased Area of Effect","Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"],"recipe":["Greed","Disgust","Fear"],"connections":[{"orbit":0,"id":45899},{"orbit":0,"id":11505}],"group":340,"orbitIndex":9,"isNotable":true,"name":"Explosive Impact","orbit":3},"47359":{"stats":["Triggered Spells deal 16% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":14231}],"group":855,"skill":47359,"orbitIndex":17,"name":"Triggered Spell Damage","orbit":7},"46830":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46830,"stats":["+5 to any Attribute"],"isAttribute":true,"group":725,"connections":[{"orbit":0,"id":18923}],"orbitIndex":0,"name":"Attribute","orbit":0},"44179":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":541,"skill":44179,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"50588":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6010}],"group":803,"skill":50588,"orbitIndex":2,"name":"Accuracy","orbit":2},"58591":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds","skill":58591,"stats":["Inherent bonuses from Intelligence, Strength and Dexterity are doubled"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":338,"orbitIndex":0,"isNotable":true,"name":"Enhanced Effectiveness","orbit":0},"16680":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":48137}],"group":612,"skill":16680,"orbitIndex":15,"name":"Crossbow Reload Speed","orbit":4},"28860":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":56104}],"group":401,"skill":28860,"orbitIndex":0,"name":"Armour Break","orbit":0},"61432":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":6178}],"group":636,"skill":61432,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"14429":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds","skill":14429,"stats":["30% less Cost of Skills","Skill Gems have 30% more Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":220,"orbitIndex":0,"isNotable":true,"name":"Advanced Thaumaturgy","orbit":0},"62159":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":-7,"id":59603}],"group":635,"skill":62159,"orbitIndex":8,"name":"Life Recoup","orbit":2},"11248":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11248,"stats":["+5 to any Attribute"],"isAttribute":true,"group":167,"connections":[{"orbit":0,"id":41263},{"orbit":0,"id":35831},{"orbit":0,"id":21568},{"orbit":0,"id":30260}],"orbitIndex":0,"name":"Attribute","orbit":0},"61490":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61490,"stats":["+5 to any Attribute"],"isAttribute":true,"group":239,"connections":[{"orbit":0,"id":48768},{"orbit":-8,"id":47429},{"orbit":0,"id":64995}],"orbitIndex":0,"name":"Attribute","orbit":0},"13987":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":7604}],"group":946,"skill":13987,"orbitIndex":10,"name":"Melee Attack Speed","orbit":2},"4716":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":4716,"stats":["8% more chance to Evade Melee Attacks"],"recipe":["Guilt","Greed","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":423,"orbitIndex":18,"isNotable":true,"name":"Afterimage","orbit":3},"6772":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6772,"stats":["+5 to any Attribute"],"isAttribute":true,"group":690,"connections":[{"orbit":0,"id":60505}],"orbitIndex":6,"name":"Attribute","orbit":4},"30115":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds","skill":30115,"stats":["50% increased effect of Small Passive Skills"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":16,"isNotable":true,"name":"Hulking Form","orbit":7},"20105":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":13895}],"group":985,"skill":20105,"orbitIndex":0,"name":"Spear Damage","orbit":0},"10286":{"stats":["10% increased Armour","Break 15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":-4,"id":38066}],"group":127,"skill":10286,"orbitIndex":8,"name":"Armour Break and Armour","orbit":7},"44707":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":54785},{"orbit":0,"id":7628}],"group":446,"skill":44707,"orbitIndex":0,"name":"Shield Damage","orbit":0},"61027":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":61027,"stats":["+20 to maximum Mana","5% increased maximum Mana"],"recipe":["Guilt","Despair","Guilt"],"connections":[],"group":539,"orbitIndex":0,"isNotable":true,"name":"Mana Blessing","orbit":0},"43650":{"stats":["15% increased Stun Buildup with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":21070},{"orbit":0,"id":53386}],"group":113,"skill":43650,"orbitIndex":11,"name":"Critical Stun Buildup","orbit":1},"12777":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":-4,"id":28950}],"group":420,"skill":12777,"orbitIndex":23,"name":"Armour and Energy Shield","orbit":2},"36778":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":36479}],"group":667,"skill":36778,"orbitIndex":58,"name":"Shock Chance","orbit":4},"33225":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[],"group":616,"skill":33225,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"27307":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":289,"skill":27307,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"64471":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":64471,"stats":["+5 to any Attribute"],"isAttribute":true,"group":368,"connections":[],"orbitIndex":54,"name":"Attribute","orbit":4},"45248":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":45248,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":236,"connections":[{"orbit":2147483647,"id":14429}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"55611":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":55611,"stats":["12% increased Elemental Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-2,"id":64031}],"orbitIndex":15,"name":"Elemental Damage","orbit":4},"35987":{"icon":"Art/2DArt/SkillIcons/passives/finesse.dds","skill":35987,"stats":["4% increased Movement Speed","20% increased Evasion Rating","+10 to Dexterity"],"recipe":["Paranoia","Disgust","Ire"],"connections":[{"orbit":0,"id":32274},{"orbit":0,"id":19470},{"orbit":0,"id":55397}],"group":604,"orbitIndex":27,"isNotable":true,"name":"Blur","orbit":4},"3921":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":3921,"stats":["15% reduced Reservation of Herald Skills"],"recipe":["Fear","Despair","Greed"],"connections":[{"orbit":0,"id":38398}],"group":334,"orbitIndex":10,"isNotable":true,"name":"Fate Finding","orbit":7},"58714":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":58714,"stats":["Grenade Skills have +1 Cooldown Use"],"recipe":["Paranoia","Fear","Isolation"],"connections":[{"orbit":0,"id":39431}],"group":469,"orbitIndex":60,"isNotable":true,"name":"Grenadier","orbit":4},"8983":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":282,"skill":8983,"orbitIndex":12,"name":"Minion Damage","orbit":3},"13576":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":17024}],"group":656,"skill":13576,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"56806":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":56806,"stats":["12% increased Block chance","1% increased Movement Speed for each time you've Blocked in the past 10 seconds"],"recipe":["Ire","Fear","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":655,"orbitIndex":0,"isNotable":true,"name":"Parrying Motion","orbit":7},"65189":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":33502}],"group":100,"skill":65189,"orbitIndex":0,"name":"Shapeshifting","orbit":5},"56996":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":9568}],"group":387,"skill":56996,"orbitIndex":36,"name":"Totem Life","orbit":4},"45962":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":7183},{"orbit":0,"id":15617}],"group":313,"skill":45962,"orbitIndex":23,"name":"Life Flask Recovery","orbit":3},"14693":{"stats":["14% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":13937}],"group":56,"skill":14693,"orbitIndex":27,"name":"Mace Damage","orbit":4},"22188":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":38763},{"orbit":0,"id":21274}],"group":574,"skill":22188,"orbitIndex":0,"name":"Herald Reservation","orbit":7},"55088":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","connections":[{"orbit":5,"id":61196}],"group":665,"skill":55088,"orbitIndex":2,"name":"Critical Chance","orbit":7},"33815":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":6,"id":35644}],"group":769,"skill":33815,"orbitIndex":5,"name":"Poison Duration","orbit":2},"49406":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":52125}],"group":547,"skill":49406,"orbitIndex":45,"name":"Projectile Damage","orbit":4},"39431":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":469,"skill":39431,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"39369":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":39369,"stats":["Attacks have +1% to Critical Hit Chance"],"recipe":["Isolation","Despair","Greed"],"connections":[{"orbit":3,"id":2936},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":27,"isNotable":true,"name":"Struck Through","orbit":4},"21164":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":21164,"stats":["Minions gain 15% of their Maximum Life as Extra Maximum Energy Shield"],"recipe":["Isolation","Greed","Fear"],"connections":[{"orbit":0,"id":62670}],"group":70,"orbitIndex":10,"isNotable":true,"name":"Fleshcrafting","orbit":7},"47097":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds","skill":47097,"stats":["Corpses in your Presence Explode when you Warcry,","dealing 25% of their Life as Physical Damage"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":64117}],"group":17,"orbitIndex":0,"isNotable":true,"name":"Warcaller's Bellow","orbit":0},"21005":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":24347}],"group":782,"skill":21005,"orbitIndex":18,"name":"Mark Cast Speed","orbit":2},"59647":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":8791}],"group":279,"skill":59647,"orbitIndex":9,"name":"Minion Life","orbit":7},"61026":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":61026,"stats":["Minions have +20% to all Elemental Resistances","Minions have +5% to all Maximum Elemental Resistances"],"recipe":["Despair","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":17378}],"group":278,"orbitIndex":0,"isNotable":true,"name":"Crystalline Flesh","orbit":3},"32427":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":4456}],"group":464,"skill":32427,"orbitIndex":18,"name":"Cold Penetration","orbit":2},"19644":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":19644,"stats":["Minions have 20% additional Physical Damage Reduction","Minions have +23% to Chaos Resistance"],"recipe":["Isolation","Suffering","Envy"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":29,"isNotable":true,"name":"Left Hand of Darkness","orbit":4},"45111":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":14446}],"group":871,"skill":45111,"orbitIndex":2,"name":"Curse Duration","orbit":7},"632":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":56366}],"group":1004,"skill":632,"orbitIndex":0,"name":"Dagger Speed","orbit":0},"18585":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":18585,"stats":["20% increased Armour"],"ascendancyName":"Warbringer","group":7,"connections":[{"orbit":0,"id":6127}],"orbitIndex":0,"name":"Armour","orbit":0},"7251":{"stats":["10% increased Attack Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":336,"skill":7251,"orbitIndex":12,"name":"Attack Damage","orbit":7},"42736":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42736,"stats":["+5 to any Attribute"],"isAttribute":true,"group":587,"connections":[{"orbit":-3,"id":60685}],"orbitIndex":0,"name":"Attribute","orbit":0},"18651":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":11736},{"orbit":0,"id":63863}],"group":562,"skill":18651,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"37244":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":37244,"stats":["12% increased Block chance","40% increased Block Recovery"],"recipe":["Disgust","Greed","Fear"],"connections":[{"orbit":3,"id":33445},{"orbit":0,"id":37795}],"group":790,"orbitIndex":8,"isNotable":true,"name":"Shield Expertise","orbit":2},"63074":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":63074,"stats":["+1 to Level of all Chaos Skills"],"recipe":["Despair","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1013,"orbitIndex":4,"isNotable":true,"name":"Dark Entries","orbit":1},"63545":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":609,"skill":63545,"orbitIndex":6,"name":"Minion Damage","orbit":7},"19873":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":36602},{"orbit":-4,"id":17655}],"group":350,"skill":19873,"orbitIndex":22,"name":"Area of Effect","orbit":2},"22359":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-2,"id":60692}],"group":723,"skill":22359,"orbitIndex":36,"name":"Elemental Damage","orbit":4},"54883":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":34473}],"group":873,"skill":54883,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"52106":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":44005},{"orbit":0,"id":10295}],"group":157,"skill":52106,"orbitIndex":34,"name":"Cast Speed","orbit":6},"29652":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":35911},{"orbit":0,"id":28002}],"group":262,"skill":29652,"orbitIndex":16,"name":"Spell Damage","orbit":2},"3188":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":3188,"stats":["12% increased Attack Speed if you've been Hit Recently"],"recipe":["Ire","Disgust","Isolation"],"connections":[{"orbit":0,"id":38670}],"group":38,"orbitIndex":21,"isNotable":true,"name":"Revenge","orbit":3},"12249":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":12761}],"group":760,"skill":12249,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":2},"39292":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":39292,"stats":["12% increased Flask Charges gained"],"ascendancyName":"Pathfinder","group":1054,"connections":[{"orbit":0,"id":40}],"orbitIndex":0,"name":"Flask Charges Gained","orbit":0},"38827":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":7,"id":1546}],"group":393,"skill":38827,"orbitIndex":1,"name":"Armour and Energy Shield","orbit":7},"26282":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds","skill":26282,"stats":["Gain 10% of Damage as Extra Physical Damage","Elemental Damage also Contributes to Bleeding Magnitude"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":66,"isNotable":true,"name":"Blood Barbs","orbit":5},"1140":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1140,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":15507}],"orbitIndex":22,"name":"Attribute","orbit":2},"18496":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":18496,"stats":["5% reduced Attack Speed","30% increased Magnitude of Ailments you inflict","20% increased Duration of Damaging Ailments on Enemies"],"recipe":["Suffering","Paranoia","Envy"],"connections":[],"group":134,"orbitIndex":12,"isNotable":true,"name":"Lasting Trauma","orbit":7},"60241":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":57178}],"group":292,"skill":60241,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"14926":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":50609},{"orbit":-6,"id":56910}],"group":526,"skill":14926,"orbitIndex":20,"name":"Life Regeneration","orbit":3},"56997":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":56997,"stats":["Hits that Heavy Stun Enemies have Culling Strike"],"recipe":["Ire","Envy","Despair"],"connections":[{"orbit":-5,"id":23861},{"orbit":0,"id":56595}],"group":254,"orbitIndex":6,"isNotable":true,"name":"Heavy Contact","orbit":4},"38703":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":8249}],"group":747,"skill":38703,"orbitIndex":16,"name":"Accuracy and Attack Critical Chance","orbit":7},"60505":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":60505,"stats":["+5 to any Attribute"],"isAttribute":true,"group":733,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":65009},{"orbit":0,"id":21005},{"orbit":0,"id":19808}],"orbitIndex":0,"name":"Attribute","orbit":0},"12661":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":12661,"stats":["Stun Threshold is based on 30% of your Energy Shield instead of Life"],"recipe":["Isolation","Ire","Guilt"],"connections":[{"orbit":0,"id":34984}],"group":663,"orbitIndex":16,"isNotable":true,"name":"Asceticism","orbit":7},"27108":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":27108,"stats":["Allies in your Presence have 6% increased Attack Speed","6% increased Attack Speed"],"recipe":["Disgust","Disgust","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":47796}],"group":435,"orbitIndex":36,"isNotable":true,"name":"Mass Hysteria","orbit":4},"62677":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":62677,"stats":["+5 to any Attribute"],"isAttribute":true,"group":572,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"3987":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":3987,"stats":["4% increased Skill Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":30}],"orbitIndex":27,"name":"Skill Speed","orbit":8},"3762":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds","skill":3762,"stats":["Every second Slam Skill you use yourself is Ancestrally Boosted"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":125,"isNotable":true,"name":"Ancestral Empowerment","orbit":9},"21568":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21568,"stats":["+5 to any Attribute"],"isAttribute":true,"group":160,"connections":[{"orbit":0,"id":47931}],"orbitIndex":0,"name":"Attribute","orbit":0},"31898":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":3921}],"group":334,"skill":31898,"orbitIndex":7,"name":"Herald Reservation","orbit":7},"10783":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":9762},{"orbit":0,"id":38564}],"group":356,"skill":10783,"orbitIndex":16,"name":"Sword Damage","orbit":2},"25101":{"stats":["10% increased Cold Exposure Effect","10% increased Fire Exposure Effect","10% increased Lightning Exposure Effect"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":5,"id":22439},{"orbit":0,"id":52199},{"orbit":-5,"id":44498},{"orbit":0,"id":56409}],"group":466,"skill":25101,"orbitIndex":4,"name":"Exposure Effect","orbit":3},"37974":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":62230}],"group":679,"skill":37974,"orbitIndex":68,"name":"Energy Shield","orbit":6},"65328":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":48565}],"group":75,"skill":65328,"orbitIndex":13,"name":"Sentinels","orbit":2},"8867":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds","skill":8867,"stats":["You have Arcane Surge"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":7246}],"group":308,"orbitIndex":60,"isNotable":true,"name":"Constant Gale","orbit":8},"18419":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":18419,"stats":["Regenerate 1% of Life per second while you have a Totem","Totems Regenerate 3% of Life per second"],"recipe":["Envy","Fear","Paranoia"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16784},{"orbit":0,"id":23667}],"group":177,"orbitIndex":18,"isNotable":true,"name":"Ancestral Mending","orbit":7},"14383":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":14383,"stats":["30% increased amount of Mana Leeched","Unaffected by Chill while Leeching Mana"],"recipe":["Fear","Despair","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":46601}],"group":868,"orbitIndex":0,"isNotable":true,"name":"Suffusion","orbit":0},"6330":{"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[],"group":907,"skill":6330,"orbitIndex":5,"name":"Accuracy and Attack Damage","orbit":7},"52774":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":5084}],"group":445,"skill":52774,"orbitIndex":18,"name":"Ignite Chance","orbit":2},"38300":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":39716},{"orbit":6,"id":57373}],"group":329,"skill":38300,"orbitIndex":0,"name":"Ignite Chance","orbit":0},"35787":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":42813}],"group":257,"skill":35787,"orbitIndex":0,"name":"Increased Duration","orbit":1},"2575":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":2575,"stats":["30% increased Totem Placement speed","8% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Suffering","Paranoia","Guilt"],"connections":[{"orbit":0,"id":65154}],"group":77,"orbitIndex":14,"isNotable":true,"name":"Ancestral Alacrity","orbit":2},"60034":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":60034,"stats":["1% increased Attack Speed per 250 Accuracy Rating"],"recipe":["Isolation","Paranoia","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":15207},{"orbit":0,"id":22208}],"group":907,"orbitIndex":0,"isNotable":true,"name":"Falcon Dive","orbit":0},"11838":{"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":11838,"stats":["25% increased Spell Damage while on Full Energy Shield","75% increased Energy Shield from Equipped Focus"],"recipe":["Disgust","Suffering","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":-4,"id":33112}],"group":719,"orbitIndex":6,"isNotable":true,"name":"Dreamcatcher","orbit":7},"4084":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":4,"id":17600}],"group":279,"skill":4084,"orbitIndex":0,"name":"Minion Damage","orbit":2},"46819":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46819,"stats":["+5 to any Attribute"],"isAttribute":true,"group":496,"connections":[{"orbit":0,"id":8616}],"orbitIndex":0,"name":"Attribute","orbit":0},"5777":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":5777,"stats":["Minions deal 15% increased Damage","Minions have 20% increased Critical Hit Chance"],"recipe":["Paranoia","Despair","Disgust"],"connections":[{"orbit":0,"id":58651}],"group":342,"orbitIndex":4,"isNotable":true,"name":"Deadly Swarm","orbit":4},"38564":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":20091}],"group":356,"skill":38564,"orbitIndex":15,"name":"Sword Damage","orbit":3},"28272":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":1594}],"group":771,"skill":28272,"orbitIndex":0,"name":"Flask Charges Gained","orbit":3},"50389":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":50389,"stats":["Link Skills Link to 1 additional random target"],"recipe":["Guilt","Envy","Disgust"],"connections":[{"orbit":7,"id":13694},{"orbit":0,"id":11762}],"group":255,"orbitIndex":1,"isNotable":true,"name":"Twinned Tethers","orbit":2},"2672":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":45569}],"group":162,"skill":2672,"orbitIndex":0,"name":"Spell Critical Damage","orbit":0},"3700":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":6842}],"group":878,"skill":3700,"orbitIndex":6,"name":"Stun and Freeze Buildup","orbit":2},"37509":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":33797}],"group":95,"skill":37509,"orbitIndex":3,"name":"Shapeshifting","orbit":5},"45576":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":547,"skill":45576,"orbitIndex":3,"name":"Projectile Mastery","orbit":7},"55276":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55276,"stats":["+5 to any Attribute"],"isAttribute":true,"group":615,"connections":[{"orbit":5,"id":13411}],"orbitIndex":24,"name":"Attribute","orbit":5},"14515":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":43778}],"group":149,"skill":14515,"orbitIndex":8,"name":"Jagged Ground Effect","orbit":3},"12925":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":5,"id":61196}],"group":667,"skill":12925,"orbitIndex":2,"name":"Shock Chance","orbit":4},"40550":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":209,"skill":40550,"orbitIndex":0,"name":"Totem Mastery","orbit":4},"41017":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41017,"stats":["+5 to any Attribute"],"isAttribute":true,"group":963,"connections":[{"orbit":0,"id":14262},{"orbit":0,"id":1801}],"orbitIndex":0,"name":"Attribute","orbit":0},"10372":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-3,"id":36191},{"orbit":0,"id":55933}],"group":269,"skill":10372,"orbitIndex":1,"name":"Stun Threshold","orbit":1},"55152":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"orbit":0,"id":5580}],"group":387,"skill":55152,"orbitIndex":12,"name":"Totem Mastery","orbit":3},"14267":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14267,"stats":["+5 to any Attribute"],"isAttribute":true,"group":1008,"connections":[{"orbit":0,"id":32763}],"orbitIndex":0,"name":"Attribute","orbit":0},"3025":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3025,"stats":["+5 to any Attribute"],"isAttribute":true,"group":543,"connections":[{"orbit":0,"id":38732},{"orbit":0,"id":36782},{"orbit":0,"id":25594}],"orbitIndex":0,"name":"Attribute","orbit":0},"36191":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":40325}],"group":269,"skill":36191,"orbitIndex":21,"name":"Stun Threshold","orbit":2},"16051":{"stats":["Attacks used by Totems have 4% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":177,"skill":16051,"orbitIndex":4,"name":"Totem Attack Speed","orbit":5},"54485":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":25482}],"group":215,"skill":54485,"orbitIndex":22,"name":"Strength","orbit":7},"27834":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":63659},{"orbit":0,"id":34449}],"group":974,"skill":27834,"orbitIndex":41,"name":"Trap Critical Chance","orbit":4},"21227":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":36290}],"group":891,"skill":21227,"orbitIndex":39,"name":"Energy Shield Delay","orbit":4},"17923":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":17923,"stats":["12% increased amount of Mana Leeched"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":18826}],"orbitIndex":16,"name":"Mana Leech","orbit":9},"49734":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49734,"stats":["+5 to any Attribute"],"isAttribute":true,"group":145,"connections":[{"orbit":0,"id":46741}],"orbitIndex":0,"name":"Attribute","orbit":0},"58117":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":13839},{"orbit":0,"id":8493},{"orbit":0,"id":56996}],"group":387,"skill":58117,"orbitIndex":36,"name":"Totem Damage","orbit":5},"12382":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":35849}],"group":79,"skill":12382,"orbitIndex":3,"name":"Life Mastery","orbit":1},"64724":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[],"group":64,"skill":64724,"orbitIndex":17,"name":"Ignite Chance","orbit":2},"25893":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":51169}],"group":519,"skill":25893,"orbitIndex":18,"name":"Energy Shield Recharge","orbit":2},"39759":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":48035}],"group":337,"skill":39759,"orbitIndex":6,"name":"Life Regeneration","orbit":2},"315":{"stats":["10% increased Bleeding Duration"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33216}],"group":462,"skill":315,"orbitIndex":0,"name":"Bleeding Duration","orbit":0},"46554":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46554,"stats":["+5 to any Attribute"],"isAttribute":true,"group":625,"connections":[{"orbit":0,"id":62677},{"orbit":0,"id":36379},{"orbit":0,"id":10131},{"orbit":0,"id":55947}],"orbitIndex":0,"name":"Attribute","orbit":0},"59372":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds","skill":59372,"stats":["Your Hits are Crushing Blows"],"ascendancyName":"Titan","connections":[{"orbit":-5,"id":56842}],"group":30,"orbitIndex":0,"isNotable":true,"name":"Crushing Impacts","orbit":0},"22484":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":5398}],"group":151,"skill":22484,"orbitIndex":20,"name":"Totem Cast Speed","orbit":7},"25026":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":6,"id":3567}],"group":680,"skill":25026,"orbitIndex":20,"name":"Mana Regeneration","orbit":3},"19288":{"icon":"Art/2DArt/SkillIcons/passives/GlancingBlows.dds","skill":19288,"isKeystone":true,"stats":["Block Chance is doubled","You take 50% of Damage from Blocked Hits"],"group":653,"connections":[],"orbitIndex":0,"name":"Glancing Blows","orbit":0},"10729":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":749,"skill":10729,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"56409":{"stats":["12% increased chance to Ignite","12% increased Freeze Buildup","12% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":43139},{"orbit":0,"id":65248}],"group":466,"skill":56409,"orbitIndex":12,"name":"Elemental Ailment Chance","orbit":4},"25992":{"stats":["10% increased Accuracy Rating with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[],"group":1006,"skill":25992,"orbitIndex":7,"name":"Bow Accuracy Rating","orbit":6},"53632":{"stats":["12% increased chance to Ignite","6% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":3,"id":28482}],"group":196,"skill":53632,"orbitIndex":8,"name":"Ignite and Critical Chance","orbit":2},"17702":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17702,"stats":["+5 to any Attribute"],"isAttribute":true,"group":777,"connections":[{"orbit":0,"id":46882},{"orbit":7,"id":27262}],"orbitIndex":0,"name":"Attribute","orbit":0},"18121":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":794,"skill":18121,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"858":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":5,"id":58387}],"group":393,"skill":858,"orbitIndex":18,"name":"Chaos Damage","orbit":5},"15671":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15671,"stats":["+5 to any Attribute"],"isAttribute":true,"group":148,"connections":[{"orbit":0,"id":14654},{"orbit":0,"id":23930}],"orbitIndex":0,"name":"Attribute","orbit":0},"13856":{"stats":["1% reduced Attack Speed","12% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":18496}],"group":134,"skill":13856,"orbitIndex":9,"name":"Ailment Effect and Reduced Attack Speed","orbit":7},"50328":{"stats":["10% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":28992},{"orbit":0,"id":10053}],"group":658,"skill":50328,"orbitIndex":23,"name":"Life and Mana Flask Recovery","orbit":3},"21755":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21755,"stats":["+5 to any Attribute"],"isAttribute":true,"group":516,"connections":[{"orbit":0,"id":2847},{"orbit":0,"id":48635},{"orbit":0,"id":61281},{"orbit":0,"id":52274}],"orbitIndex":0,"name":"Attribute","orbit":0},"55680":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":61112}],"group":954,"skill":55680,"orbitIndex":14,"name":"Spear Damage","orbit":4},"62023":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":159,"skill":62023,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"7998":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":7998,"stats":["20% increased chance to Shock"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":39640}],"orbitIndex":70,"name":"Shock Chance","orbit":6},"34671":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":24477},{"orbit":0,"id":48418}],"group":322,"skill":34671,"orbitIndex":14,"name":"Stun Threshold and Strength","orbit":2},"21336":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":62984}],"group":681,"skill":21336,"orbitIndex":19,"name":"Evasion and Energy Shield","orbit":2},"19750":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":444,"skill":19750,"orbitIndex":0,"name":"Armour and Evasion Mastery","orbit":0},"59636":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":59636,"stats":["25% increased Mana Regeneration Rate"],"recipe":["Guilt","Guilt","Ire"],"connections":[{"orbit":-4,"id":13769},{"orbit":0,"id":48007}],"group":505,"orbitIndex":12,"isNotable":true,"name":"Open Mind","orbit":7},"16744":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-5,"id":24009},{"orbit":0,"id":24748}],"group":423,"skill":16744,"orbitIndex":12,"name":"Evasion","orbit":3},"10830":{"stats":["18% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":59589}],"group":76,"skill":10830,"orbitIndex":2,"name":"Armour","orbit":7},"49661":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":49661,"stats":["30% increased Critical Hit Chance against Bleeding Enemies","20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"],"recipe":["Fear","Paranoia","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":776,"orbitIndex":2,"isNotable":true,"name":"Perfectly Placed Knife","orbit":1},"23508":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds","skill":23508,"stats":["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"],"ascendancyName":"Deadeye","connections":[],"group":1039,"orbitIndex":0,"isNotable":true,"name":"Thrilling Chase","orbit":0},"49537":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":197,"skill":49537,"orbitIndex":16,"name":"Speed with Elemental Skills","orbit":3},"52574":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-7,"id":55478}],"group":385,"skill":52574,"orbitIndex":21,"name":"Attack Area","orbit":7},"59710":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":52618}],"group":71,"skill":59710,"orbitIndex":6,"name":"Shapeshifting","orbit":7},"6338":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":0,"id":2254}],"group":533,"skill":6338,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"25620":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":25620,"stats":["15% chance to not destroy Corpses when Consuming Corpses"],"recipe":["Paranoia","Despair","Guilt"],"connections":[{"orbit":0,"id":9083}],"group":709,"orbitIndex":18,"isNotable":true,"name":"Meat Recycling","orbit":7},"23415":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":23415,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":9,"id":8143}],"orbitIndex":14,"name":"Evasion and Energy Shield","orbit":9},"64789":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":64789,"stats":["4% increased maximum Mana"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":8867}],"orbitIndex":68,"name":"Mana","orbit":8},"43778":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":36894}],"group":149,"skill":43778,"orbitIndex":2,"name":"Bleed Chance","orbit":3},"8852":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[],"group":63,"skill":8852,"orbitIndex":17,"name":"Life Leech and Slower Leech","orbit":2},"63732":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":8440}],"group":590,"skill":63732,"orbitIndex":1,"name":"Damage against Enemies on Low Life","orbit":1},"22713":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":19722},{"orbit":0,"id":4959},{"orbit":0,"id":19003}],"group":861,"skill":22713,"orbitIndex":6,"name":"Cold Damage","orbit":7},"64665":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":51847},{"orbit":0,"id":21274}],"group":553,"skill":64665,"orbitIndex":30,"name":"Attack Damage and Accuracy","orbit":4},"56472":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":690,"skill":56472,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"17330":{"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":17330,"stats":["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground","40% increased Jagged Ground Duration"],"recipe":["Greed","Greed","Suffering"],"connections":[{"orbit":0,"id":61927}],"group":149,"orbitIndex":23,"isNotable":true,"name":"Perforation","orbit":2},"33415":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":31763}],"group":612,"skill":33415,"orbitIndex":31,"name":"Crossbow Critical Chance","orbit":4},"13701":{"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":17871},{"orbit":0,"id":59538}],"group":947,"skill":13701,"orbitIndex":2,"name":"Freeze and Chill Resistance","orbit":2},"63608":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":48,"skill":63608,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"40024":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":2091}],"group":849,"skill":40024,"orbitIndex":4,"name":"Poison Chance","orbit":7},"61419":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":61419,"stats":[],"group":498,"connections":[{"orbit":0,"id":41669},{"orbit":0,"id":62677},{"orbit":0,"id":50720}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"2486":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":2486,"stats":["Damage with Hits is Lucky against Enemies that are on Low Life"],"recipe":["Suffering","Envy","Isolation"],"connections":[{"orbit":3,"id":63732},{"orbit":7,"id":19341},{"orbit":0,"id":58884}],"group":590,"orbitIndex":22,"isNotable":true,"name":"Stars Aligned","orbit":7},"45037":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":9736}],"group":618,"skill":45037,"orbitIndex":15,"name":"Armour and Evasion","orbit":7},"36782":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":1151}],"group":541,"skill":36782,"orbitIndex":12,"name":"Freeze Buildup","orbit":7},"26520":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":14340},{"orbit":0,"id":37190}],"group":592,"skill":26520,"orbitIndex":11,"name":"Life Leech","orbit":2},"60362":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":56265}],"group":1002,"skill":60362,"orbitIndex":5,"name":"Critical Damage","orbit":2},"32194":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32194,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":55933}],"orbitIndex":60,"name":"Attribute","orbit":6},"22558":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22558,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":55933}],"orbitIndex":66,"name":"Attribute","orbit":6},"54886":{"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":-4,"id":56997}],"group":254,"skill":54886,"orbitIndex":20,"name":"Two Handed Damage and Stun","orbit":7},"3704":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds","skill":3704,"stats":["Enemies have Maximum Concentration equal to 40% of their Maximum Life","Break enemy Concentration on Hit equal to 100% of Damage Dealt","Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":25172}],"group":152,"orbitIndex":36,"isNotable":true,"name":"Witchbane","orbit":5},"17625":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":-5,"id":10873}],"group":71,"skill":17625,"orbitIndex":18,"name":"Shapeshifting","orbit":7},"42522":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalDamageHealsYou.dds","skill":42522,"stats":["40% of Elemental Damage taken Recouped as Energy Shield"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":127,"isNotable":true,"name":"Heart of the Storm","orbit":9},"58718":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":35015}],"group":438,"skill":58718,"orbitIndex":0,"name":"Bleeding Damage","orbit":0},"11311":{"stats":["+10 to Armour","+8 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":38057}],"group":527,"skill":11311,"orbitIndex":61,"name":"Armour and Evasion","orbit":5},"15617":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":15617,"stats":["30% increased Flask Effect Duration","20% increased Life Recovery from Flasks","Recover 5% of Life when you use a Life Flask while on Low Life"],"recipe":["Envy","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":313,"orbitIndex":0,"isNotable":true,"name":"Heavy Drinker","orbit":0},"8697":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[],"group":730,"skill":8697,"orbitIndex":2,"name":"Elemental Attack Damage","orbit":3},"60568":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":52348}],"group":314,"skill":60568,"orbitIndex":13,"name":"Totem Placement Speed","orbit":3},"56934":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":345,"skill":56934,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"48745":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":22558},{"orbit":-2,"id":7878}],"group":261,"skill":48745,"orbitIndex":0,"name":"Shield Block","orbit":0},"14725":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":-5,"id":49220},{"orbit":0,"id":34233}],"group":671,"skill":14725,"orbitIndex":18,"name":"Skill Speed","orbit":2},"39621":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":14176},{"orbit":0,"id":53719}],"group":161,"skill":39621,"orbitIndex":0,"name":"Slower Rage Decay","orbit":0},"2102":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":447,"skill":2102,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"18451":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[],"group":706,"skill":18451,"orbitIndex":6,"name":"Frenzy Charge Duration","orbit":2},"52765":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":761,"skill":52765,"orbitIndex":12,"name":"Mana Regeneration","orbit":2},"11505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":340,"skill":11505,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"2455":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":490,"skill":2455,"orbitIndex":11,"name":"Projectile Damage","orbit":5},"43579":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":35369}],"group":117,"skill":43579,"orbitIndex":9,"name":"Mana Mastery","orbit":1},"11257":{"stats":["30% increased Evasion Rating while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":10271},{"orbit":0,"id":54282}],"group":480,"skill":11257,"orbitIndex":11,"name":"Evasion while Surrounded","orbit":3},"2645":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":2645,"stats":["20% more Damage against Heavy Stunned Enemies with Maces"],"recipe":["Ire","Isolation","Ire"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":52829}],"group":56,"orbitIndex":69,"isNotable":true,"name":"Skullcrusher","orbit":4},"45363":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds","skill":45363,"stats":["20% increased Melee Damage","40% increased Melee Damage against Heavy Stunned enemies"],"recipe":["Envy","Envy","Ire"],"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":58528}],"group":315,"orbitIndex":23,"isNotable":true,"name":"Smash","orbit":3},"48014":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":48014,"stats":["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently","50% increased Melee Damage against Immobilised Enemies"],"recipe":["Ire","Guilt","Fear"],"connections":[],"group":101,"orbitIndex":63,"isNotable":true,"name":"Honourless","orbit":5},"29328":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":0,"id":43201}],"group":492,"skill":29328,"orbitIndex":61,"name":"Ailment Chance","orbit":4},"63731":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":244}],"group":674,"skill":63731,"orbitIndex":0,"name":"Attack Damage","orbit":0},"12367":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[],"group":448,"skill":12367,"orbitIndex":0,"name":"Chaos Damage","orbit":3},"38365":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":34626},{"orbit":0,"id":46499}],"group":99,"skill":38365,"orbitIndex":22,"name":"Recover Life on consuming Endurance Charge","orbit":2},"57388":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":57388,"stats":["20% increased Critical Hit Chance for Attacks","20% increased Critical Damage Bonus for Attack Damage","20% increased Stun Buildup with Critical Hits"],"recipe":["Despair","Envy","Disgust"],"connections":[{"orbit":0,"id":9698}],"group":113,"orbitIndex":22,"isNotable":true,"name":"Overwhelming Strike","orbit":3},"2071":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":38420}],"group":321,"skill":2071,"orbitIndex":2,"name":"Mana Regeneration","orbit":2},"37372":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":13738}],"group":643,"skill":37372,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"16168":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16168,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":-5,"id":54232},{"orbit":0,"id":25374},{"orbit":0,"id":45916}],"orbitIndex":48,"name":"Attribute","orbit":6},"46882":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":46882,"stats":[],"group":827,"connections":[],"orbitIndex":8,"name":"Jewel Socket","orbit":1},"18684":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds","skill":18684,"isKeystone":true,"stats":["75% of Damage Converted to Fire Damage","Deal no Non-Fire Damage"],"group":58,"connections":[],"orbitIndex":0,"name":"Avatar of Fire","orbit":0},"55802":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55802,"stats":["+5 to any Attribute"],"isAttribute":true,"group":569,"connections":[{"orbit":0,"id":54127},{"orbit":0,"id":3717}],"orbitIndex":0,"name":"Attribute","orbit":0},"45503":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":4,"id":37746}],"group":243,"skill":45503,"orbitIndex":0,"name":"Ignite Chance","orbit":2},"33866":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":49220}],"group":610,"skill":33866,"orbitIndex":4,"name":"Attack Damage","orbit":2},"46696":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":46696,"stats":["25% increased Damage with One Handed Weapons","Attacks have 10% chance to Maim on Hit"],"recipe":["Envy","Suffering","Disgust"],"connections":[{"orbit":0,"id":8629}],"group":226,"orbitIndex":68,"isNotable":true,"name":"Impair","orbit":4},"50392":{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":50392,"stats":["10% reduced maximum Mana","1% increased Damage per 15 Strength"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":108,"orbitIndex":0,"isNotable":true,"name":"Brute Strength","orbit":0},"57462":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":12078}],"group":912,"skill":57462,"orbitIndex":17,"name":"Projectile Speed","orbit":3},"54282":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54282,"stats":["+5 to any Attribute"],"isAttribute":true,"group":522,"connections":[{"orbit":0,"id":52125},{"orbit":2147483647,"id":11066}],"orbitIndex":0,"name":"Attribute","orbit":3},"18913":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":12419}],"group":617,"skill":18913,"orbitIndex":22,"name":"Chaos Damage and Duration","orbit":7},"62153":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":3,"id":55947}],"group":624,"skill":62153,"orbitIndex":4,"name":"Spell Critical Damage","orbit":3},"53960":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53960,"stats":["+5 to any Attribute"],"isAttribute":true,"group":666,"connections":[{"orbit":-5,"id":8975}],"orbitIndex":54,"name":"Attribute","orbit":5},"13174":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds","skill":13174,"stats":["Maximum Mana is replaced by Maximum Infernal Flame","Gain Infernal Flame instead of spending Mana for Skill costs","Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum","Lose all Infernal Flame on reaching maximum Infernal Flame","10% of Infernal Flame lost per second if none was gained in the past 2 seconds"],"ascendancyName":"Infernalist","connections":[{"orbit":4,"id":63484},{"orbit":0,"id":770}],"group":486,"orbitIndex":3,"isNotable":true,"name":"Pyromantic Pact","orbit":6},"14958":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":17548}],"group":720,"skill":14958,"orbitIndex":10,"name":"Critical Chance","orbit":1},"32951":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":32951,"stats":["25% increased Skill Effect Duration"],"recipe":["Disgust","Suffering","Ire"],"connections":[{"orbit":0,"id":39280},{"orbit":0,"id":41522}],"group":735,"orbitIndex":20,"isNotable":true,"name":"Preservation","orbit":3},"38769":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":38769,"stats":["Break 25% increased Armour"],"ascendancyName":"Warbringer","group":4,"connections":[{"orbit":0,"id":58704}],"orbitIndex":0,"name":"Armour Break","orbit":0},"34006":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":3,"id":15408}],"group":533,"skill":34006,"orbitIndex":19,"name":"Energy Shield","orbit":2},"51509":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":51509,"stats":["Recover 2% of Life when you use a Mana Flask","Mana Flasks gain 0.1 charges per Second"],"recipe":["Greed","Fear","Disgust"],"connections":[{"orbit":7,"id":35848},{"orbit":0,"id":9393}],"group":688,"orbitIndex":0,"isNotable":true,"name":"Waters of Life","orbit":0},"3995":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":12311}],"group":605,"skill":3995,"orbitIndex":15,"name":"Crossbow Reload Speed","orbit":7},"45969":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45969,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":-7,"id":28693},{"orbit":0,"id":24880}],"orbitIndex":36,"name":"Attribute","orbit":6},"1594":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":56870}],"group":771,"skill":1594,"orbitIndex":22,"name":"Flask Charges Gained","orbit":2},"43578":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":525,"skill":43578,"orbitIndex":26,"name":"Projectile Damage","orbit":4},"28361":{"stats":["20% increased Weapon Swap Speed"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":518,"skill":28361,"orbitIndex":16,"name":"Weapon Swap Speed","orbit":7},"32664":{"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","skill":32664,"stats":["20% increased Area of Effect while Unarmed","25% reduced Damage with Unarmed Attacks","20% increased Unarmed Attack Speed"],"recipe":["Fear","Suffering","Guilt"],"connections":[{"orbit":-3,"id":17724}],"group":979,"orbitIndex":5,"isNotable":true,"name":"Flurry","orbit":1},"2936":{"stats":["20% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":13407}],"group":1014,"skill":2936,"orbitIndex":10,"name":"Attack Critical Damage","orbit":7},"23738":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":23738,"stats":["Gain 6% of Physical Damage as extra Chaos Damage"],"recipe":["Ire","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34520}],"group":661,"orbitIndex":0,"isNotable":true,"name":"Madness in the Bones","orbit":0},"51707":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":51707,"stats":["30% increased Evasion Rating","8% increased Dexterity"],"recipe":["Fear","Ire","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":5,"id":38728},{"orbit":0,"id":41163}],"group":982,"orbitIndex":66,"isNotable":true,"name":"Enhanced Reflexes","orbit":5},"39886":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39886,"stats":["+5 to any Attribute"],"isAttribute":true,"group":449,"connections":[{"orbit":0,"id":56935}],"orbitIndex":0,"name":"Attribute","orbit":0},"49799":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":46224}],"group":648,"skill":49799,"orbitIndex":20,"name":"Mana Flask Recovery","orbit":2},"31805":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-3,"id":44461},{"orbit":0,"id":29041}],"group":158,"skill":31805,"orbitIndex":15,"name":"Increased Duration","orbit":3},"1755":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":31707}},"skill":1755,"stats":["8% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":18845}],"orbitIndex":17,"name":"Spell Damage","orbit":2},"30905":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":5,"id":8697},{"orbit":6,"id":34201}],"group":730,"skill":30905,"orbitIndex":21,"name":"Elemental Attack Damage","orbit":4},"1019":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":45037},{"orbit":0,"id":6230}],"group":618,"skill":1019,"orbitIndex":0,"name":"Armour and Evasion","orbit":0},"16013":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":41811}],"group":938,"skill":16013,"orbitIndex":6,"name":"Daze Buildup","orbit":7},"23416":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds","skill":23416,"stats":["10% of Spell Damage Leeched as Life"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":64,"isNotable":true,"name":"Vitality Siphon","orbit":6},"50253":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":50253,"stats":["40% increased Aftershock Area of Effect"],"recipe":["Despair","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":191,"orbitIndex":0,"isNotable":true,"name":"Aftershocks","orbit":0},"20236":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":4346}],"group":759,"skill":20236,"orbitIndex":0,"name":"Critical Chance","orbit":0},"51184":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","options":{"Witch":{"stats":["16% increased Spell Damage","Minions deal 16% increased Damage","+10 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","name":"Raw Destruction","id":5788}},"skill":51184,"stats":["20% increased Spell Damage","+10 to Intelligence"],"recipe":["Greed","Envy","Despair"],"isSwitchable":true,"connections":[{"orbit":-4,"id":41965},{"orbit":6,"id":29502},{"orbit":-4,"id":3242}],"group":474,"orbitIndex":0,"isNotable":true,"name":"Raw Power","orbit":0},"51847":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":33974}],"group":553,"skill":51847,"orbitIndex":24,"name":"Attack Damage and Accuracy","orbit":4},"53697":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53697,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":7,"id":47555},{"orbit":-3,"id":3041}],"orbitIndex":26,"name":"Attribute","orbit":5},"63267":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":65424}],"group":551,"skill":63267,"orbitIndex":3,"name":"Dual Wielding Damage","orbit":2},"64927":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":4,"id":52464},{"orbit":-4,"id":51741},{"orbit":-6,"id":54351}],"group":845,"skill":64927,"orbitIndex":18,"name":"Life on Kill","orbit":6},"27667":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds","skill":27667,"stats":["Your Curses have infinite Duration"],"ascendancyName":"Blood Mage","connections":[],"group":647,"orbitIndex":8,"isNotable":true,"name":"Open Sores","orbit":6},"28625":{"stats":["15% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":5,"id":32135},{"orbit":0,"id":35848}],"group":688,"skill":28625,"orbitIndex":20,"name":"Flask Recovery","orbit":7},"63209":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":30704}],"group":369,"skill":63209,"orbitIndex":12,"name":"Life Regeneration","orbit":7},"12033":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds","skill":12033,"stats":["Skills fire an additional Projectile"],"ascendancyName":"Deadeye","connections":[],"group":1030,"orbitIndex":8,"isNotable":true,"name":"Endless Munitions","orbit":2},"54283":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":26324}],"group":272,"skill":54283,"orbitIndex":21,"name":"Armour","orbit":3},"13624":{"stats":["Mark Skills have 25% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-2,"id":28258}],"group":914,"skill":13624,"orbitIndex":23,"name":"Mark Duration","orbit":2},"25528":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":891,"skill":25528,"orbitIndex":15,"name":"Mana Mastery","orbit":3},"15408":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":4,"id":2254},{"orbit":0,"id":6338}],"group":533,"skill":15408,"orbitIndex":23,"name":"Energy Shield","orbit":2},"4061":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":27491}],"group":412,"skill":4061,"orbitIndex":36,"name":"Energy Shield","orbit":4},"32135":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":5,"id":12322},{"orbit":0,"id":16484}],"group":688,"skill":32135,"orbitIndex":0,"name":"Flask Charges Gained","orbit":4},"62350":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":846,"skill":62350,"orbitIndex":12,"name":"Attack Speed and Flask Duration","orbit":2},"52829":{"stats":["12% increased Stun Buildup","10% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":375}],"group":56,"skill":52829,"orbitIndex":63,"name":"Mace Damage and Stun Buildup","orbit":4},"6222":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":57608},{"orbit":0,"id":9037},{"orbit":0,"id":65189}],"group":107,"skill":6222,"orbitIndex":64,"name":"Shapeshifting","orbit":5},"19674":{"stats":["8% increased Attack Area Damage","5% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":41493}],"group":180,"skill":19674,"orbitIndex":2,"name":"Attack Area Damage and Area","orbit":3},"33216":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":33216,"stats":["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"],"recipe":["Disgust","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":463,"orbitIndex":10,"isNotable":true,"name":"Deep Wounds","orbit":2},"5314":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":5314,"stats":["+5 to any Attribute"],"isAttribute":true,"group":500,"connections":[{"orbit":0,"id":29009}],"orbitIndex":36,"name":"Attribute","orbit":4},"63002":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":63002,"stats":["Buffs on you expire 10% slower"],"ascendancyName":"Chronomancer","group":176,"connections":[{"orbit":0,"id":58747}],"orbitIndex":0,"name":"Buff Expiry Rate","orbit":0},"44836":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":44836,"stats":["20% increased Armour and Evasion Rating","20% increased Stun Threshold"],"recipe":["Paranoia","Greed","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"orbit":0,"id":47150}],"group":514,"orbitIndex":12,"isNotable":true,"name":"Feel no Pain","orbit":2},"21070":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57388}],"group":113,"skill":21070,"orbitIndex":20,"name":"Attack Critical Chance","orbit":7},"54811":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54811,"stats":["+5 to any Attribute"],"isAttribute":true,"group":227,"connections":[{"orbit":0,"id":13474}],"orbitIndex":0,"name":"Attribute","orbit":0},"9163":{"stats":["18% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":76,"skill":9163,"orbitIndex":8,"name":"Armour","orbit":7},"55668":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55668,"stats":["+5 to any Attribute"],"isAttribute":true,"group":704,"connections":[{"orbit":0,"id":25557},{"orbit":0,"id":47754}],"orbitIndex":0,"name":"Attribute","orbit":0},"63861":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":624,"skill":63861,"orbitIndex":0,"name":"Critical Mastery","orbit":2},"55478":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":48006},{"orbit":-3,"id":16168}],"group":385,"skill":55478,"orbitIndex":2,"name":"Attack Area","orbit":2},"1433":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1433,"stats":["+5 to any Attribute"],"isAttribute":true,"group":333,"connections":[{"orbit":0,"id":31238}],"orbitIndex":56,"name":"Attribute","orbit":6},"30615":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[],"group":977,"skill":30615,"orbitIndex":13,"name":"Critical Damage when consuming a Power Charge","orbit":2},"32813":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-7,"id":59600},{"orbit":0,"id":35809}],"group":810,"skill":32813,"orbitIndex":12,"name":"Life Flasks","orbit":2},"5702":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":5702,"stats":["+5 to any Attribute"],"isAttribute":true,"group":731,"connections":[{"orbit":-5,"id":13411}],"orbitIndex":0,"name":"Attribute","orbit":0},"31763":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":43155}],"group":612,"skill":31763,"orbitIndex":27,"name":"Crossbow Critical Chance","orbit":4},"46760":{"stats":["20% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":51534},{"orbit":0,"id":8631}],"group":331,"skill":46760,"orbitIndex":0,"name":"Critical Chance","orbit":0},"14113":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":10029},{"orbit":0,"id":8660}],"group":233,"skill":14113,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"54148":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":54148,"stats":["Damage Penetrates 15% Fire Resistance","15% increased Duration of Damaging Ailments on Enemies"],"recipe":["Isolation","Envy","Fear"],"connections":[{"orbit":0,"id":52746},{"orbit":0,"id":56934}],"group":345,"orbitIndex":6,"isNotable":true,"name":"Smoke Inhalation","orbit":2},"62341":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":7,"id":52836}],"group":655,"skill":62341,"orbitIndex":67,"name":"Block","orbit":4},"40803":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":40803,"stats":["30% increased Damage with Hits against Chilled Enemies"],"recipe":["Suffering","Disgust","Guilt"],"connections":[{"orbit":0,"id":3218},{"orbit":0,"id":44298}],"group":131,"orbitIndex":21,"isNotable":true,"name":"Sigil of Ice","orbit":4},"53958":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":2,"id":51006}],"group":887,"skill":53958,"orbitIndex":23,"name":"Mana Flask Recovery","orbit":3},"14082":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":43964}],"group":805,"skill":14082,"orbitIndex":11,"name":"Physical Damage","orbit":7},"44373":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":44373,"stats":["Unwithered enemies are Withered for 8 seconds when they enter your Presence","20% increased Effect of Withered"],"recipe":["Guilt","Guilt","Isolation"],"connections":[],"group":897,"orbitIndex":0,"isNotable":true,"name":"Wither Away","orbit":0},"50720":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":43557},{"orbit":-3,"id":11376},{"orbit":3,"id":34199},{"orbit":3,"id":30523}],"group":485,"skill":50720,"orbitIndex":0,"name":"Minion Damage","orbit":3},"6416":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":51821}],"group":163,"skill":6416,"orbitIndex":20,"name":"Armour and Energy Shield","orbit":2},"54288":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":21568}],"group":169,"skill":54288,"orbitIndex":20,"name":"Life Recoup","orbit":7},"56999":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":56999,"stats":["15% increased Critical Hit Chance for Attacks","15% increased Accuracy Rating"],"recipe":["Despair","Disgust","Envy"],"connections":[],"group":660,"orbitIndex":0,"isNotable":true,"name":"Locked On","orbit":0},"16347":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":52373}],"group":212,"skill":16347,"orbitIndex":2,"name":"Maximum Rage","orbit":2},"35265":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35265,"stats":["+5 to any Attribute"],"isAttribute":true,"group":317,"connections":[{"orbit":0,"id":31903},{"orbit":0,"id":48589},{"orbit":0,"id":18374},{"orbit":0,"id":6274}],"orbitIndex":0,"name":"Attribute","orbit":0},"54676":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":39759},{"orbit":0,"id":37612}],"group":337,"skill":54676,"orbitIndex":11,"name":"Life Regeneration","orbit":2},"3999":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":37665}],"group":430,"skill":3999,"orbitIndex":15,"name":"Area Damage","orbit":4},"48267":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":64,"skill":48267,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"25618":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":25618,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":38578}],"orbitIndex":18,"name":"Spell Critical Chance","orbit":8},"7246":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":7246,"stats":["4% increased maximum Mana"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":39204}],"orbitIndex":54,"name":"Mana","orbit":8},"9458":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":658,"skill":9458,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"56336":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":21208}],"group":859,"skill":56336,"orbitIndex":20,"name":"Curse Activation Speed and Effect","orbit":7},"9908":{"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":9908,"stats":["10% reduced Mana Cost of Attacks","18% of Skill Mana Costs Converted to Life Costs"],"recipe":["Envy","Fear","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":210,"orbitIndex":8,"isNotable":true,"name":"Price of Freedom","orbit":2},"23382":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23382,"stats":["+5 to any Attribute"],"isAttribute":true,"group":174,"connections":[{"orbit":0,"id":59093},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"64851":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":64851,"stats":["12% increased Block chance","40% increased Defences from Equipped Shield"],"recipe":["Greed","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[{"orbit":0,"id":39658}],"group":722,"orbitIndex":0,"isNotable":true,"name":"Flashy Deflection","orbit":0},"4748":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":48235}},"skill":4748,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":539,"connections":[{"orbit":6,"id":2254}],"orbitIndex":6,"name":"Energy Shield Delay","orbit":3},"40276":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32745},{"orbit":0,"id":60241}],"group":291,"skill":40276,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"28492":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds","skill":28492,"isKeystone":true,"stats":["Converts all Evasion Rating to Armour"],"group":461,"connections":[{"orbit":0,"id":54099}],"orbitIndex":0,"name":"Iron Reflexes","orbit":0},"16401":{"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44490}],"group":928,"skill":16401,"orbitIndex":0,"name":"Lightning Damage and Electrocute Buildup","orbit":0},"17394":{"stats":["15% increased Minion Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-3,"id":45530}],"group":609,"skill":17394,"orbitIndex":0,"name":"Minion Accuracy","orbit":7},"26518":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":26518,"stats":["25% increased Cold Damage","15% increased Chill Duration on Enemies"],"recipe":["Envy","Fear","Guilt"],"connections":[],"group":131,"orbitIndex":5,"isNotable":true,"name":"Cold Nature","orbit":4},"35855":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":35855,"stats":["20% increased amount of Life Leeched","40% increased Armour and Evasion Rating while Leeching"],"recipe":["Greed","Paranoia","Fear"],"connections":[{"orbit":0,"id":48583},{"orbit":0,"id":35859}],"group":592,"orbitIndex":3,"isNotable":true,"name":"Fortifying Blood","orbit":2},"46561":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":635,"skill":46561,"orbitIndex":6,"name":"Recovery Mastery","orbit":2},"4203":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4203,"stats":["+5 to any Attribute"],"isAttribute":true,"group":600,"connections":[{"orbit":4,"id":30555},{"orbit":-4,"id":42736},{"orbit":-4,"id":59603},{"orbit":0,"id":49046},{"orbit":3,"id":42076}],"orbitIndex":0,"name":"Attribute","orbit":0},"38694":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":22188}],"group":574,"skill":38694,"orbitIndex":8,"name":"Herald Damage","orbit":7},"11855":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":30829}],"group":660,"skill":11855,"orbitIndex":16,"name":"Accuracy","orbit":2},"46887":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-6,"id":43720},{"orbit":0,"id":38463}],"group":868,"skill":46887,"orbitIndex":12,"name":"Mana Leech","orbit":3},"32258":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":19644}],"group":282,"skill":32258,"orbitIndex":8,"name":"Minion Life","orbit":3},"55933":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55933,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":60886}],"orbitIndex":48,"name":"Attribute","orbit":6},"47614":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":22219}],"group":953,"skill":47614,"orbitIndex":22,"name":"Triggered Spell Damage","orbit":2},"51248":{"stats":["10% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":38292},{"orbit":4,"id":6015}],"group":327,"skill":51248,"orbitIndex":9,"name":"Fire Damage","orbit":2},"4492":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":509,"skill":4492,"orbitIndex":0,"name":"Attributes Mastery","orbit":0},"24825":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24825,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":-3,"id":16460},{"orbit":-3,"id":29479},{"orbit":-3,"id":60738}],"orbitIndex":10,"name":"Attribute","orbit":3},"9528":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-4,"id":62200}],"group":93,"skill":9528,"orbitIndex":15,"name":"Warcry Cooldown Speed","orbit":3},"17724":{"stats":["15% increased Area of Effect while Unarmed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[],"group":971,"skill":17724,"orbitIndex":0,"name":"Unarmed Area","orbit":0},"45227":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42111}],"group":97,"skill":45227,"orbitIndex":1,"name":"Armour Break","orbit":3},"43443":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":32148},{"orbit":0,"id":49370},{"orbit":0,"id":8535}],"group":41,"skill":43443,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"36507":{"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","skill":36507,"stats":["Minions have 20% increased maximum Life","Minions Regenerate 3% of Life per second","Minions have +13% to Chaos Resistance"],"recipe":["Greed","Fear","Fear"],"connections":[{"orbit":0,"id":60313}],"group":448,"orbitIndex":4,"isNotable":true,"name":"Vile Mending","orbit":2},"42914":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":42914,"stats":["15% increased Damage with Flails","6% increased Attack Speed with Flails"],"recipe":["Greed","Guilt","Suffering"],"connections":[{"orbit":0,"id":33393},{"orbit":0,"id":50847}],"group":50,"orbitIndex":60,"isNotable":true,"name":"Ball and Chain","orbit":4},"4847":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":6294}],"group":393,"skill":4847,"orbitIndex":66,"name":"Cast Speed","orbit":5},"15618":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":57710}],"group":504,"skill":15618,"orbitIndex":0,"name":"Spell Critical Damage","orbit":3},"51446":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":51446,"stats":["+1 to Evasion Rating per 1 Armour on Equipped Gloves"],"recipe":["Greed","Suffering","Ire"],"connections":[{"orbit":-7,"id":53647},{"orbit":0,"id":19750}],"group":444,"orbitIndex":16,"isNotable":true,"name":"Leather Bound Gauntlets","orbit":3},"6230":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":6230,"stats":[],"group":606,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":3995},{"orbit":0,"id":18115}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"33404":{"icon":"Art/2DArt/SkillIcons/passives/EternalYouth.dds","skill":33404,"isKeystone":true,"stats":["Life Recharges instead of Energy Shield","Life Recovery from Flasks applies to Energy Shield instead"],"group":910,"connections":[{"orbit":0,"id":57821}],"orbitIndex":0,"name":"Eternal Youth","orbit":0},"12430":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":17584}],"group":406,"skill":12430,"orbitIndex":13,"name":"Melee Damage","orbit":2},"17600":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":17600,"stats":["Minions deal 25% increased Damage"],"recipe":["Ire","Greed","Suffering"],"connections":[{"orbit":0,"id":54849},{"orbit":3,"id":18519}],"group":279,"orbitIndex":18,"isNotable":true,"name":"Resourceful Ally","orbit":3},"4624":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":3,"id":49550}],"group":330,"skill":4624,"orbitIndex":7,"name":"Rage on Hit","orbit":7},"52703":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds","skill":52703,"stats":["1% increased Critical Damage Bonus per 40 Life"],"ascendancyName":"Blood Mage","connections":[{"orbit":8,"id":48551}],"group":647,"orbitIndex":59,"isNotable":true,"name":"Gore Spike","orbit":8},"8349":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":31644}],"group":447,"skill":8349,"orbitIndex":19,"name":"Energy Shield Recharge","orbit":2},"53560":{"stats":["20% chance for Lightning Skills to Chain an additional time"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":46157}],"group":669,"skill":53560,"orbitIndex":0,"name":"Lightning Skill Chain Chance","orbit":0},"36709":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":408,"skill":36709,"orbitIndex":6,"name":"Stun Threshold","orbit":7},"64726":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":46296},{"orbit":0,"id":38479}],"group":613,"skill":64726,"orbitIndex":8,"name":"Projectile Mastery","orbit":2},"5227":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":5227,"stats":["100% increased Evasion Rating if you have been Hit Recently","30% reduced Evasion Rating if you haven't been Hit Recently"],"recipe":["Despair","Paranoia","Despair"],"connections":[{"orbit":0,"id":51708}],"group":750,"orbitIndex":20,"isNotable":true,"name":"Escape Strategy","orbit":3},"38493":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":55621}],"group":1014,"skill":38493,"orbitIndex":63,"name":"Critical Damage","orbit":4},"10552":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":703},{"orbit":3,"id":18895}],"group":663,"skill":10552,"orbitIndex":8,"name":"Stun Threshold from Energy Shield","orbit":7},"23305":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":21279},{"orbit":0,"id":51602}],"group":936,"skill":23305,"orbitIndex":4,"name":"Mark Cast Speed","orbit":2},"45693":{"stats":["30% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":722,"skill":45693,"orbitIndex":10,"name":"Shield Defences","orbit":2},"51974":{"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"orbit":0,"id":25711}],"group":480,"skill":51974,"orbitIndex":0,"name":"Fortify Mastery","orbit":0},"45631":{"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":3630}],"group":905,"skill":45631,"orbitIndex":14,"name":"Evasion and Energy Shield Recharge","orbit":7},"45569":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":55596}],"group":168,"skill":45569,"orbitIndex":14,"name":"Spell Critical Damage","orbit":2},"5710":{"icon":"Art/2DArt/SkillIcons/passives/strongarm.dds","skill":5710,"stats":["10% increased Stun Buildup","16% increased Melee Damage","+10 to Strength"],"recipe":["Despair","Despair","Envy"],"connections":[{"orbit":-3,"id":6839},{"orbit":0,"id":38323},{"orbit":0,"id":14923},{"orbit":-4,"id":6529}],"group":394,"orbitIndex":51,"isNotable":true,"name":"Brutal","orbit":4},"10265":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":10265,"stats":["25% increased Damage with Spears"],"recipe":["Greed","Despair","Disgust"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":48,"isNotable":true,"name":"Javelin","orbit":6},"18186":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":13942}],"group":423,"skill":18186,"orbitIndex":0,"name":"Armour","orbit":3},"25031":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":166,"skill":25031,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"24240":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":24240,"stats":["Debuffs you inflict have 10% increased Slow Magnitude","Debuffs on you expire 20% faster"],"recipe":["Fear","Despair","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"orbit":-7,"id":11764}],"group":837,"orbitIndex":0,"isNotable":true,"name":"Time Manipulation","orbit":0},"62603":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":3,"id":19715}],"group":445,"skill":62603,"orbitIndex":20,"name":"Fire Penetration","orbit":3},"10909":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10909,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[{"orbit":6,"id":16489},{"orbit":3,"id":33053}],"orbitIndex":8,"name":"Attribute","orbit":3},"2847":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2847,"stats":["+5 to any Attribute"],"isAttribute":true,"group":521,"connections":[{"orbit":0,"id":54282},{"orbit":0,"id":15182},{"orbit":0,"id":56978}],"orbitIndex":0,"name":"Attribute","orbit":0},"35453":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":35453,"stats":["Slam Skills have 12% increased Area of Effect"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":42275}],"orbitIndex":52,"name":"Slam Area of Effect","orbit":5},"63470":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":-3,"id":9908}],"group":238,"skill":63470,"orbitIndex":14,"name":"Life Costs","orbit":3},"24438":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":24438,"stats":["Totems gain +20% to all Elemental Resistances","Totems have 20% additional Physical Damage Reduction"],"recipe":["Despair","Greed","Despair"],"connections":[{"orbit":0,"id":46748},{"orbit":0,"id":17745}],"group":270,"orbitIndex":0,"isNotable":true,"name":"Hardened Wood","orbit":0},"28797":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":632}],"group":1011,"skill":28797,"orbitIndex":65,"name":"Dagger Speed","orbit":6},"38292":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":33397}],"group":327,"skill":38292,"orbitIndex":15,"name":"Ignite Chance","orbit":2},"26319":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-7,"id":30990}],"group":602,"skill":26319,"orbitIndex":0,"name":"Critical Chance","orbit":2},"51048":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51048,"stats":["+5 to any Attribute"],"isAttribute":true,"group":729,"connections":[{"orbit":0,"id":17702},{"orbit":0,"id":58814},{"orbit":0,"id":33946}],"orbitIndex":0,"name":"Attribute","orbit":0},"25229":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":21390}],"group":153,"skill":25229,"orbitIndex":20,"name":"Endurance Charge Duration","orbit":2},"6127":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds","skill":6127,"stats":["Gain a stack of Jade every second","Grants Skill: Encase in Jade"],"ascendancyName":"Warbringer","connections":[],"group":6,"orbitIndex":0,"isNotable":true,"name":"Jade Heritage","orbit":0},"47150":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-5,"id":56910}],"group":514,"skill":47150,"orbitIndex":16,"name":"Armour and Evasion","orbit":2},"7960":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":7960,"stats":[],"group":208,"connections":[],"orbitIndex":2,"name":"Jewel Socket","orbit":1},"45304":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-4,"id":6078}],"group":958,"skill":45304,"orbitIndex":18,"name":"Poison Duration","orbit":3},"53030":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":53030,"stats":["25% increased Magnitude of Ignite you inflict","+10 to Strength"],"recipe":["Ire","Despair","Disgust"],"connections":[{"orbit":0,"id":11525},{"orbit":0,"id":48267}],"group":64,"orbitIndex":5,"isNotable":true,"name":"Immolation","orbit":2},"37113":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":43090}],"group":932,"skill":37113,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"13307":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":381,"skill":13307,"orbitIndex":25,"name":"Stun Threshold from Energy Shield","orbit":4},"39347":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":39347,"stats":["30% increased Stun Buildup","15% increased Area of Effect if you have Stunned an Enemy Recently"],"recipe":["Disgust","Disgust","Disgust"],"connections":[],"group":101,"orbitIndex":21,"isNotable":true,"name":"Breaking Blows","orbit":3},"49388":{"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":37304},{"orbit":-7,"id":38215},{"orbit":7,"id":4806}],"group":898,"skill":49388,"orbitIndex":19,"name":"Elemental","orbit":2},"49198":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":3,"id":49023}],"group":172,"skill":49198,"orbitIndex":22,"name":"Shield Block","orbit":7},"60620":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":45992}],"group":215,"skill":60620,"orbitIndex":4,"name":"Strength","orbit":7},"16499":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":16499,"stats":["40% increased Curse Duration","10% increased Effect of your Curses"],"recipe":["Isolation","Despair","Envy"],"connections":[{"orbit":0,"id":36814}],"group":567,"orbitIndex":12,"isNotable":true,"name":"Lingering Whispers","orbit":7},"1468":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":519,"skill":1468,"orbitIndex":6,"name":"Mana Regeneration","orbit":2},"55931":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":62313}],"group":67,"skill":55931,"orbitIndex":18,"name":"Maximum Fire Resistance","orbit":3},"55807":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":21429}},"skill":55807,"stats":["10% increased Mana Regeneration Rate"],"isSwitchable":true,"group":484,"connections":[{"orbit":-4,"id":6686}],"orbitIndex":5,"name":"Mana Regeneration","orbit":2},"56928":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":7,"id":62350}],"group":846,"skill":56928,"orbitIndex":15,"name":"Attack Speed and Flask Duration","orbit":3},"44498":{"stats":["10% increased Cold Exposure Effect","10% increased Fire Exposure Effect","10% increased Lightning Exposure Effect"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-5,"id":22439},{"orbit":0,"id":38068}],"group":466,"skill":44498,"orbitIndex":20,"name":"Exposure Effect","orbit":3},"64064":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[],"group":902,"skill":64064,"orbitIndex":0,"name":"Accuracy","orbit":0},"37641":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":163,"skill":37641,"orbitIndex":0,"name":"Armour and Energy Shield Mastery","orbit":0},"30539":{"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":25620}],"group":709,"skill":30539,"orbitIndex":22,"name":"Corpses","orbit":7},"3041":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3041,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-4,"id":59795},{"orbit":0,"id":858},{"orbit":6,"id":19240}],"orbitIndex":10,"name":"Attribute","orbit":3},"14548":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":7,"id":59541}],"group":630,"skill":14548,"orbitIndex":0,"name":"Minion Life","orbit":7},"54675":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":58814}],"group":639,"skill":54675,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"53294":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":53294,"stats":["15% increased Fire Damage","Damage Penetrates 10% Fire Resistance","10% increased Magnitude of Ignite you inflict"],"recipe":["Fear","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"orbit":0,"id":33397}],"group":327,"orbitIndex":0,"isNotable":true,"name":"Burn Away","orbit":0},"58109":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58109,"stats":["+5 to any Attribute"],"isAttribute":true,"group":559,"connections":[{"orbit":0,"id":14340}],"orbitIndex":0,"name":"Attribute","orbit":0},"42916":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":11030}],"group":163,"skill":42916,"orbitIndex":4,"name":"Energy Shield Delay","orbit":3},"43383":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":43383,"stats":["15% increased chance to inflict Ailments","Break 30% increased Armour on enemies affected by Ailments"],"recipe":["Envy","Paranoia","Greed"],"connections":[{"orbit":0,"id":62588},{"orbit":0,"id":37450}],"group":492,"orbitIndex":51,"isNotable":true,"name":"Exposed Wounds","orbit":4},"22949":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":35171},{"orbit":0,"id":41263}],"group":233,"skill":22949,"orbitIndex":18,"name":"Spell Area of Effect","orbit":3},"63659":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":63659,"stats":["25% increased Critical Hit Chance with Traps"],"recipe":["Disgust","Guilt","Despair"],"connections":[{"orbit":0,"id":33964},{"orbit":0,"id":37616}],"group":974,"orbitIndex":45,"isNotable":true,"name":"Clever Construction","orbit":4},"29358":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-7,"id":917}],"group":69,"skill":29358,"orbitIndex":7,"name":"Stun Buildup","orbit":2},"31175":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":31175,"stats":["Minions have 40% increased Critical Damage Bonus"],"recipe":["Isolation","Despair","Ire"],"connections":[{"orbit":0,"id":20119}],"group":419,"orbitIndex":22,"isNotable":true,"name":"Grip of Evil","orbit":2},"2211":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":7,"id":7473}],"group":334,"skill":2211,"orbitIndex":19,"name":"Herald Damage","orbit":7},"55342":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":55342,"stats":["+5 to any Attribute"],"isAttribute":true,"group":610,"connections":[{"orbit":-5,"id":17248}],"orbitIndex":60,"name":"Attribute","orbit":5},"46748":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":5,"id":51206},{"orbit":-5,"id":60568}],"group":287,"skill":46748,"orbitIndex":0,"name":"Totem Life","orbit":0},"12166":{"stats":["3% increased Cast Speed with Cold Skills"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":861,"skill":12166,"orbitIndex":22,"name":"Cast Speed with Cold Skills","orbit":7},"7741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":42500}],"orbitIndex":5,"name":"Attribute","orbit":6},"26905":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":8821}],"group":575,"skill":26905,"orbitIndex":2,"name":"Lightning Damage","orbit":3},"40341":{"stats":["3% increased Movement Speed if you've Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":-3,"id":17340},{"orbit":9,"id":21274}],"group":531,"skill":40341,"orbitIndex":6,"name":"Movement Speed","orbit":3},"8092":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":6,"id":44605},{"orbit":0,"id":59028}],"group":525,"skill":8092,"orbitIndex":11,"name":"Projectile Damage","orbit":4},"42127":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":4456},{"orbit":0,"id":41573}],"group":464,"skill":42127,"orbitIndex":10,"name":"Fire Penetration","orbit":2},"9164":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":25513}],"group":481,"skill":9164,"orbitIndex":45,"name":"Two Handed Damage","orbit":5},"60685":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":60685,"stats":["+5 to any Attribute"],"isAttribute":true,"group":564,"connections":[{"orbit":0,"id":1826}],"orbitIndex":0,"name":"Attribute","orbit":0},"62015":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":204,"skill":62015,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"53822":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[],"group":57,"skill":53822,"orbitIndex":14,"name":"Rage when Hit","orbit":7},"8272":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds","skill":8272,"stats":["20 Passive Skill Points become Weapon Set Skill Points"],"ascendancyName":"Witchhunter","connections":[],"group":103,"orbitIndex":0,"isNotable":true,"name":"Weapon Master","orbit":0},"1214":{"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":53823}],"group":80,"skill":1214,"orbitIndex":1,"name":"Block and Shield Defences","orbit":3},"34058":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34058,"stats":["+5 to any Attribute"],"isAttribute":true,"group":439,"connections":[{"orbit":-6,"id":59376},{"orbit":0,"id":4456}],"orbitIndex":0,"name":"Attribute","orbit":0},"23570":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23570,"stats":["+5 to any Attribute"],"isAttribute":true,"group":408,"connections":[{"orbit":0,"id":41031}],"orbitIndex":18,"name":"Attribute","orbit":4},"23667":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":25312}],"group":177,"skill":23667,"orbitIndex":40,"name":"Totem Life","orbit":5},"6655":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":6655,"stats":["10% chance to Aggravate Bleeding on targets you Hit with Attacks"],"recipe":["Despair","Suffering","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":431,"orbitIndex":14,"isNotable":true,"name":"Aggravation","orbit":2},"44563":{"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":59053}],"group":739,"skill":44563,"orbitIndex":0,"name":"Slow Effect and Hinder Duration","orbit":0},"5049":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":49231},{"orbit":7,"id":42177}],"group":389,"skill":5049,"orbitIndex":14,"name":"Attack Speed and Dexterity","orbit":7},"62609":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":62609,"stats":["Totems have 4% increased Attack Speed per Summoned Totem"],"recipe":["Suffering","Fear","Envy"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16051}],"group":177,"orbitIndex":6,"isNotable":true,"name":"Ancestral Unity","orbit":7},"54416":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":60274}],"group":66,"skill":54416,"orbitIndex":12,"name":"Armour","orbit":7},"36634":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":36634,"stats":[],"group":410,"connections":[{"orbit":0,"id":13279},{"orbit":0,"id":54818},{"orbit":0,"id":21468},{"orbit":0,"id":33369}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"43444":{"stats":["8% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[],"group":517,"skill":43444,"orbitIndex":8,"name":"Knockback","orbit":7},"1823":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":1823,"stats":["20% increased Light Radius","70% increased Energy Shield from Equipped Helmet"],"recipe":["Suffering","Paranoia","Suffering"],"connections":[],"group":412,"orbitIndex":60,"isNotable":true,"name":"Illuminated Crown","orbit":4},"48007":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":36302}],"group":505,"skill":48007,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"39752":{"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":5936},{"orbit":0,"id":38068}],"group":466,"skill":39752,"orbitIndex":48,"name":"Elemental Ailment Duration","orbit":4},"42981":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":42981,"stats":["Break 40% increased Armour","25% increased Physical Damage"],"recipe":["Suffering","Envy","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":418,"orbitIndex":0,"isNotable":true,"name":"Cruel Methods","orbit":0},"32727":{"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[],"group":426,"skill":32727,"orbitIndex":21,"name":"Armour Break","orbit":2},"44765":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":44765,"stats":["10% increased Cooldown Recovery Rate","Enemies in your Presence have 10% reduced Cooldown Recovery Rate"],"recipe":["Envy","Guilt","Suffering"],"connections":[{"orbit":0,"id":32233}],"group":545,"orbitIndex":21,"isNotable":true,"name":"Distracting Presence","orbit":3},"42857":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":3,"id":20024},{"orbit":0,"id":7576}],"group":610,"skill":42857,"orbitIndex":16,"name":"Skill Speed","orbit":7},"19044":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":19044,"stats":["3% increased Spell Damage per 100 maximum Mana"],"recipe":["Disgust","Fear","Despair"],"connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":0,"isNotable":true,"name":"Arcane Intensity","orbit":1},"58182":{"stats":["Gain 3 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":-5,"id":49220}],"group":681,"skill":58182,"orbitIndex":22,"name":"Life on Kill","orbit":3},"33345":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":61923},{"orbit":0,"id":10131}],"group":680,"skill":33345,"orbitIndex":14,"name":"Mana Regeneration","orbit":4},"42250":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42250,"stats":["+5 to any Attribute"],"isAttribute":true,"group":689,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":16484},{"orbit":0,"id":44014}],"orbitIndex":0,"name":"Attribute","orbit":0},"30117":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":30117,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Blood Mage","group":598,"connections":[{"orbit":5,"id":52703},{"orbit":-5,"id":8415}],"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"22147":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":22147,"stats":[],"ascendancyName":"Chronomancer","isAscendancyStart":true,"group":200,"connections":[{"orbit":0,"id":18678},{"orbit":0,"id":50219},{"orbit":0,"id":1579},{"orbit":-4,"id":27990},{"orbit":4,"id":43128}],"orbitIndex":0,"name":"Chronomancer","orbit":9},"53094":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":38703},{"orbit":0,"id":51048}],"group":747,"skill":53094,"orbitIndex":22,"name":"Accuracy","orbit":7},"8629":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":222,"skill":8629,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"28556":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28556,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[],"orbitIndex":12,"name":"Attribute","orbit":3},"39411":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds","skill":39411,"stats":["Trigger Ancestral Spirits when you Summon a Totem","Grants Skill: Ancestral Spirits"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":48682}],"group":13,"orbitIndex":0,"isNotable":true,"name":"Answered Call","orbit":0},"10320":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":14548}],"group":630,"skill":10320,"orbitIndex":18,"name":"Minion Defences","orbit":7},"6626":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":4,"id":46475}],"group":423,"skill":6626,"orbitIndex":21,"name":"Armour and Evasion","orbit":2},"60230":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":19602}},"skill":60230,"stats":["8% increased Elemental Damage"],"isSwitchable":true,"group":475,"connections":[{"orbit":0,"id":56935},{"orbit":-6,"id":51335}],"orbitIndex":0,"name":"Elemental Damage","orbit":5},"44298":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":46024}],"group":140,"skill":44298,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"45632":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":45632,"stats":["10% increased Mana Regeneration Rate","6% of Damage taken Recouped as Mana"],"recipe":["Fear","Ire","Paranoia"],"connections":[{"orbit":0,"id":24551}],"group":147,"orbitIndex":17,"isNotable":true,"name":"Mind Eraser","orbit":7},"5817":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeWindward.dds","skill":5817,"stats":["3% less Damage taken per Tailwind"],"ascendancyName":"Deadeye","connections":[],"group":1029,"orbitIndex":0,"isNotable":true,"name":"Wind Ward","orbit":0},"53823":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":53823,"stats":["50% increased Defences from Equipped Shield","25% increased Chance to Block if you've Blocked with Active Block Recently"],"recipe":["Ire","Despair","Guilt"],"connections":[],"group":80,"orbitIndex":4,"isNotable":true,"name":"Towering Shield","orbit":3},"30910":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":28175},{"orbit":-7,"id":59647}],"group":279,"skill":30910,"orbitIndex":6,"name":"Minion Damage","orbit":1},"10072":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":10072,"stats":["6% increased Block chance"],"ascendancyName":"Warbringer","group":19,"connections":[{"orbit":-2,"id":52068}],"orbitIndex":0,"name":"Block Chance","orbit":0},"42390":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":42390,"stats":["Hits that Heavy Stun inflict Fire Exposure"],"recipe":["Disgust","Suffering","Guilt"],"connections":[{"orbit":3,"id":11433},{"orbit":0,"id":63608}],"group":48,"orbitIndex":4,"isNotable":true,"name":"Overheating Blow","orbit":4},"56926":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":630,"skill":56926,"orbitIndex":3,"name":"Minion Defence Mastery","orbit":2},"55995":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":41873}],"group":1000,"skill":55995,"orbitIndex":4,"name":"Frenzy Charge Duration","orbit":2},"24129":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":831,"skill":24129,"orbitIndex":0,"name":"Critical Mastery","orbit":1},"22314":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":53140}},"skill":22314,"stats":["8% increased Elemental Damage"],"isSwitchable":true,"group":473,"connections":[{"orbit":0,"id":51184},{"orbit":5,"id":51968}],"orbitIndex":0,"name":"Elemental Damage","orbit":0},"56061":{"stats":["14% increased Damage with Hits against Burning Enemies"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":243,"skill":56061,"orbitIndex":12,"name":"Damage against Burning Enemies","orbit":2},"62732":{"icon":"Art/2DArt/SkillIcons/passives/Hearty.dds","skill":62732,"stats":["25% increased Stun Threshold","20% increased Life Regeneration Rate while moving"],"recipe":["Ire","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":64192},{"orbit":0,"id":49391}],"group":354,"orbitIndex":9,"isNotable":true,"name":"Titan's Determination","orbit":3},"62542":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":7,"id":16329},{"orbit":0,"id":57821}],"group":916,"skill":62542,"orbitIndex":4,"name":"Flask Charges Gained","orbit":3},"24922":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24922,"stats":["+5 to any Attribute"],"isAttribute":true,"group":763,"connections":[{"orbit":0,"id":18923}],"orbitIndex":0,"name":"Attribute","orbit":0},"43183":{"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":11153}],"group":389,"skill":43183,"orbitIndex":2,"name":"Attack Speed and Accuracy","orbit":7},"57190":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":57190,"stats":["Herald Skills have 30% increased Area of Effect","Herald Skills deal 30% increased Damage"],"recipe":["Paranoia","Guilt","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":27859}],"group":574,"orbitIndex":6,"isNotable":true,"name":"Doomsayer","orbit":1},"26739":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":43893}],"group":197,"skill":26739,"orbitIndex":8,"name":"Elemental Damage","orbit":3},"10677":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":56638}],"group":677,"skill":10677,"orbitIndex":20,"name":"Stun Threshold if not Stunned recently","orbit":2},"59767":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":59767,"stats":["Break 25% increased Armour","16% increased Area of Effect for Attacks"],"recipe":["Envy","Paranoia","Despair"],"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":20645}],"group":315,"orbitIndex":11,"isNotable":true,"name":"Reverberating Impact","orbit":3},"48006":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":48006,"stats":["15% increased Attack Area Damage","15% increased Area of Effect for Attacks"],"recipe":["Ire","Ire","Despair"],"connections":[{"orbit":0,"id":33604}],"group":385,"orbitIndex":9,"isNotable":true,"name":"Devastation","orbit":7},"59362":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59362,"stats":["+5 to any Attribute"],"isAttribute":true,"group":501,"connections":[{"orbit":0,"id":3025},{"orbit":0,"id":5314},{"orbit":0,"id":46819}],"orbitIndex":0,"name":"Attribute","orbit":0},"4157":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","connections":[{"orbit":-6,"id":49220}],"group":665,"skill":4157,"orbitIndex":18,"name":"Critical Chance","orbit":7},"29514":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":29514,"stats":["50% increased Grenade fuse duration","Grenade Skills Fire an additional Projectile"],"recipe":["Suffering","Isolation","Disgust"],"connections":[{"orbit":0,"id":39431}],"group":469,"orbitIndex":3,"isNotable":true,"name":"Cluster Bombs","orbit":3},"34199":{"stats":["Minions have 15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":485,"skill":34199,"orbitIndex":58,"name":"Minion Critical Damage","orbit":4},"18548":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":28992}],"group":620,"skill":18548,"orbitIndex":8,"name":"Attack Speed","orbit":7},"31364":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":31364,"stats":["25% increased Charm Effect Duration","25% increased Charm Charges gained"],"recipe":["Guilt","Greed","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":819,"orbitIndex":0,"isNotable":true,"name":"Primal Protection","orbit":0},"12462":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":64299}],"group":342,"skill":12462,"orbitIndex":20,"name":"Aura Effect","orbit":3},"16100":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":16100,"stats":["20% increased Evasion Rating"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":7,"id":65173}],"orbitIndex":0,"name":"Evasion","orbit":8},"48658":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":48658,"stats":["25% increased Freeze Buildup","15% increased Chill Duration on Enemies","15% increased Magnitude of Chill you inflict"],"recipe":["Greed","Fear","Despair"],"connections":[],"group":745,"orbitIndex":0,"isNotable":true,"name":"Shattering","orbit":0},"49189":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ElementalResistanceInverted.dds","skill":49189,"stats":["Exposure you inflict lowers the affected Resistance by an additional 20%"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":17,"isNotable":true,"name":"Scouring Winds","orbit":9},"43711":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":43711,"stats":["+5% to Thorns Critical Hit Chance"],"recipe":["Ire","Greed","Fear"],"connections":[],"group":171,"orbitIndex":18,"isNotable":true,"name":"Thornhide","orbit":2},"6502":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":39,"skill":6502,"orbitIndex":0,"name":"Flail Mastery","orbit":0},"36170":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-3,"id":53853},{"orbit":-4,"id":7628}],"group":428,"skill":36170,"orbitIndex":13,"name":"Armour and Evasion","orbit":2},"18746":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[],"group":59,"skill":18746,"orbitIndex":0,"name":"Shield Block","orbit":0},"14890":{"stats":["10% increased Chill Duration on Enemies","10% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":21080}],"group":745,"skill":14890,"orbitIndex":13,"name":"Chill Effect and Duration","orbit":2},"13075":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":50392}],"group":123,"skill":13075,"orbitIndex":0,"name":"Strength and Reduced Mana","orbit":0},"38497":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-5,"id":62803}],"group":915,"skill":38497,"orbitIndex":19,"name":"Charm Charges Used","orbit":7},"63863":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[],"group":580,"skill":63863,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"15782":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15782,"stats":["+5 to any Attribute"],"isAttribute":true,"group":256,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":46628}],"orbitIndex":0,"name":"Attribute","orbit":0},"1953":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":23905}],"group":820,"skill":1953,"orbitIndex":0,"name":"Shock Effect","orbit":0},"5726":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":475,"skill":5726,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"52556":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-7,"id":16347},{"orbit":0,"id":28304}],"group":212,"skill":52556,"orbitIndex":8,"name":"Maximum Rage","orbit":2},"41522":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":735,"skill":41522,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"12120":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-7,"id":51606}],"group":850,"skill":12120,"orbitIndex":18,"name":"Evasion","orbit":3},"47931":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47931,"stats":["+5 to any Attribute"],"isAttribute":true,"group":141,"connections":[{"orbit":0,"id":11741},{"orbit":0,"id":39710}],"orbitIndex":0,"name":"Attribute","orbit":0},"8831":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":8831,"stats":["20% increased Critical Damage Bonus","+10 to Strength","20% increased Physical Damage"],"recipe":["Isolation","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":14082}],"group":805,"orbitIndex":0,"isNotable":true,"name":"Tempered Mind","orbit":0},"44239":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":29479}],"group":754,"skill":44239,"orbitIndex":16,"name":"Pin Buildup","orbit":7},"4128":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":3,"id":54283},{"orbit":0,"id":54811}],"group":272,"skill":4128,"orbitIndex":18,"name":"Armour","orbit":2},"46023":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":272,"skill":46023,"orbitIndex":3,"name":"Armour","orbit":3},"42781":{"icon":"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds","skill":42781,"stats":["15% chance to Pierce an Enemy","15% increased Projectile Damage"],"recipe":["Despair","Ire","Greed"],"connections":[{"orbit":0,"id":55429},{"orbit":0,"id":56472}],"group":690,"orbitIndex":2,"isNotable":true,"name":"Clean Shot","orbit":2},"28101":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":57571},{"orbit":-7,"id":43867}],"group":990,"skill":28101,"orbitIndex":12,"name":"Fire Penetration","orbit":2},"3084":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":3084,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":296,"connections":[{"orbit":2147483647,"id":57819}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"9343":{"stats":["Link Skills have 20% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":0,"id":25412},{"orbit":7,"id":50389},{"orbit":7,"id":37458}],"group":255,"skill":9343,"orbitIndex":7,"name":"Link Duration","orbit":7},"35581":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":35581,"stats":["16% reduced Skill Effect Duration","10% reduced Slowing Potency of Debuffs on You"],"recipe":["Paranoia","Isolation","Paranoia"],"connections":[{"orbit":0,"id":26895}],"group":306,"orbitIndex":0,"isNotable":true,"name":"Near at Hand","orbit":0},"52630":{"stats":["Critical Damage Bonus vs full life enemies 40%"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":61800},{"orbit":0,"id":28371}],"group":945,"skill":52630,"orbitIndex":15,"name":"Critical Damage vs Full Life","orbit":7},"34324":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":34324,"stats":["+1 to Maximum Energy Shield per 12 Evasion Rating on Equipped Body Armour"],"recipe":["Envy","Fear","Suffering"],"connections":[{"orbit":-5,"id":56838}],"group":905,"orbitIndex":0,"isNotable":true,"name":"Spectral Ward","orbit":4},"44891":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":2147483647,"id":52537},{"orbit":0,"id":15775}],"group":978,"skill":44891,"orbitIndex":6,"name":"Cold Penetration","orbit":2},"26383":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds","skill":26383,"stats":["Base Critical Hit Chance for Spells is 15%"],"ascendancyName":"Blood Mage","connections":[],"group":632,"orbitIndex":0,"isNotable":true,"name":"Sunder the Flesh","orbit":0},"45230":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":28229}],"group":651,"skill":45230,"orbitIndex":4,"name":"Curse Area","orbit":2},"10429":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":610,"skill":10429,"orbitIndex":11,"name":"Trap Mastery","orbit":1},"4739":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":17306}},"skill":4739,"stats":["10% increased Spell Damage"],"isSwitchable":true,"group":523,"connections":[{"orbit":0,"id":18845}],"orbitIndex":22,"name":"Spell Damage","orbit":3},"57379":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":57379,"stats":["40% increased Melee Damage with Hits at Close Range"],"recipe":["Fear","Greed","Envy"],"connections":[{"orbit":0,"id":39190},{"orbit":0,"id":49111}],"group":37,"orbitIndex":15,"isNotable":true,"name":"In Your Face","orbit":3},"59303":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":59303,"stats":["30% increased Damage while you have an active Charm","6% increased Movement Speed while you have an active Charm"],"recipe":["Isolation","Disgust","Ire"],"connections":[{"orbit":0,"id":25029}],"group":881,"orbitIndex":3,"isNotable":true,"name":"Lucky Rabbit Foot","orbit":4},"10398":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":10398,"stats":["16% increased Critical Hit Chance for Spells","8% increased Cast Speed if you've dealt a Critical Hit Recently"],"recipe":["Disgust","Paranoia","Fear"],"connections":[{"orbit":-3,"id":3472}],"group":479,"orbitIndex":20,"isNotable":true,"name":"Sudden Escalation","orbit":7},"55066":{"stats":["16% increased Attack Damage against Bleeding Enemies"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":19796}],"group":478,"skill":55066,"orbitIndex":21,"name":"Attack Damage vs Bleeding Enemies","orbit":2},"44098":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4061},{"orbit":0,"id":34531}],"group":412,"skill":44098,"orbitIndex":12,"name":"Stun Threshold from Energy Shield","orbit":7},"55473":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":43164}],"group":394,"skill":55473,"orbitIndex":23,"name":"Melee Damage","orbit":7},"50121":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":3128}],"group":842,"skill":50121,"orbitIndex":0,"name":"Cold Damage","orbit":0},"14262":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14262,"stats":["+5 to any Attribute"],"isAttribute":true,"group":987,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":61718}],"orbitIndex":0,"name":"Attribute","orbit":0},"27176":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":27176,"stats":["20% increased Critical Damage Bonus if you've gained a Power Charge Recently","+1 to Maximum Power Charges"],"recipe":["Envy","Paranoia","Suffering"],"connections":[],"group":718,"orbitIndex":0,"isNotable":true,"name":"The Power Within","orbit":0},"37691":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-6,"id":42750}],"group":845,"skill":37691,"orbitIndex":13,"name":"Attack Damage","orbit":7},"23839":{"stats":["4% reduced Flask Charges used from Mana Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":-2,"id":51006}],"group":887,"skill":23839,"orbitIndex":2,"name":"Mana Flask Charges Used","orbit":2},"1922":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":51184}],"group":484,"skill":1922,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"20205":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":33059}],"group":631,"skill":20205,"orbitIndex":4,"name":"Stun Threshold if no recent Stun","orbit":2},"26614":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":44344},{"orbit":0,"id":46275}],"group":381,"skill":26614,"orbitIndex":40,"name":"Stun Threshold from Energy Shield","orbit":4},"21089":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":7,"id":31848}],"group":133,"skill":21089,"orbitIndex":18,"name":"Armour if Hit","orbit":7},"46146":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":43691}],"group":743,"skill":46146,"orbitIndex":4,"name":"Mana Leech","orbit":7},"9638":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":39083}],"group":271,"skill":9638,"orbitIndex":0,"name":"Skill Speed","orbit":0},"35985":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[],"group":946,"skill":35985,"orbitIndex":24,"name":"Melee Damage","orbit":6},"35380":{"stats":["10% increased Effect of Withered"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":44373}],"group":895,"skill":35380,"orbitIndex":20,"name":"Withered Effect","orbit":2},"32354":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":32354,"stats":["80% increased Armour and Evasion Rating when on Low Life"],"recipe":["Envy","Guilt","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"orbit":-2,"id":6626}],"group":423,"orbitIndex":0,"isNotable":true,"name":"Defiance","orbit":0},"17366":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":29361}],"group":615,"skill":17366,"orbitIndex":10,"name":"Evasion and Energy Shield","orbit":7},"34061":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":52442},{"orbit":0,"id":38057}],"group":527,"skill":34061,"orbitIndex":55,"name":"Armour and Evasion","orbit":5},"44176":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":57047}],"group":509,"skill":44176,"orbitIndex":18,"name":"All Attributes","orbit":7},"17754":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds","skill":17754,"stats":["20% of Damage from Hits is taken from your Hellhound's Life before you","Grants Skill: Summon Infernal Hound"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":7,"isNotable":true,"name":"Loyal Hellhound","orbit":8},"50847":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":1130}],"group":50,"skill":50847,"orbitIndex":20,"name":"Flail Damage","orbit":7},"35644":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":6,"id":45193},{"orbit":0,"id":65009}],"group":769,"skill":35644,"orbitIndex":23,"name":"Poison Damage","orbit":3},"37226":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":2,"id":4015},{"orbit":-6,"id":9187}],"group":223,"skill":37226,"orbitIndex":4,"name":"Warcry Speed","orbit":3},"57320":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":428,"skill":57320,"orbitIndex":0,"name":"Armour and Evasion Mastery","orbit":0},"46224":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":46224,"stats":["Mana Flasks gain 0.1 charges per Second","+10 to Intelligence"],"recipe":["Envy","Greed","Greed"],"connections":[{"orbit":0,"id":24045},{"orbit":0,"id":45019}],"group":648,"orbitIndex":2,"isNotable":true,"name":"Arcane Alchemy","orbit":2},"23013":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":846,"skill":23013,"orbitIndex":42,"name":"Attack Mastery","orbit":4},"18049":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies within 2m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":5802}],"group":900,"skill":18049,"orbitIndex":22,"name":"Projectile Damage","orbit":7},"41665":{"stats":["20% increased Critical Damage Bonus","5% increased Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":6,"id":50562}],"group":184,"skill":41665,"orbitIndex":2,"name":"Critical Damage and Increased Mana Cost","orbit":3},"29843":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":35987}],"group":668,"skill":29843,"orbitIndex":19,"name":"Evasion","orbit":7},"33596":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":605,"skill":33596,"orbitIndex":0,"name":"Crossbow Mastery","orbit":0},"62936":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":51891}],"group":891,"skill":62936,"orbitIndex":11,"name":"Damage from Mana","orbit":2},"39274":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":2119}],"group":409,"skill":39274,"orbitIndex":6,"name":"Life Leech","orbit":2},"18115":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":48856}],"group":605,"skill":18115,"orbitIndex":9,"name":"Grenade Damage","orbit":7},"60483":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":7809}],"group":952,"skill":60483,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"14712":{"stats":["Minions have 12% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":3866}],"group":282,"skill":14712,"orbitIndex":2,"name":"Minion Life","orbit":3},"51968":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","options":{"Witch":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","id":18040}},"skill":51968,"stats":["10% increased Fire Damage"],"isSwitchable":true,"group":475,"connections":[],"orbitIndex":18,"name":"Fire Damage","orbit":3},"42379":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42379,"stats":["+5 to any Attribute"],"isAttribute":true,"group":835,"connections":[{"orbit":0,"id":16705},{"orbit":0,"id":25520}],"orbitIndex":0,"name":"Attribute","orbit":0},"1218":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":14945}],"group":278,"skill":1218,"orbitIndex":18,"name":"Minion Life","orbit":3},"43713":{"stats":["Offering Skills have 20% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":3051},{"orbit":0,"id":27009},{"orbit":0,"id":35602}],"group":456,"skill":43713,"orbitIndex":0,"name":"Offering Area","orbit":0},"4046":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":8875}],"group":472,"skill":4046,"orbitIndex":8,"name":"Electrocute Buildup","orbit":2},"9227":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":9227,"stats":["8% increased Attack Speed with Spears"],"recipe":["Fear","Ire","Greed"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":4,"isNotable":true,"name":"Swift Skewering","orbit":2},"22517":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":59644},{"orbit":-4,"id":32896}],"group":883,"skill":22517,"orbitIndex":0,"name":"Poison Chance","orbit":7},"45885":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45885,"stats":["+5 to any Attribute"],"isAttribute":true,"group":455,"connections":[{"orbit":0,"id":54521},{"orbit":0,"id":61419},{"orbit":0,"id":45570}],"orbitIndex":0,"name":"Attribute","orbit":0},"2091":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":849,"skill":2091,"orbitIndex":18,"name":"Poison Chance","orbit":4},"40345":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":40345,"stats":["25% reduced Curse Duration","18% increased Effect of your Curses"],"recipe":["Suffering","Fear","Suffering"],"connections":[{"orbit":0,"id":37991},{"orbit":0,"id":50540}],"group":565,"orbitIndex":0,"isNotable":true,"name":"Master of Hexes","orbit":7},"3472":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":-3,"id":26682}],"group":479,"skill":3472,"orbitIndex":14,"name":"Spell Critical Chance","orbit":7},"9421":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":9421,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"recipe":["Isolation","Guilt","Disgust"],"connections":[{"orbit":0,"id":60170}],"group":860,"orbitIndex":8,"isNotable":true,"name":"Snowpiercer","orbit":2},"15356":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":18815}],"group":959,"skill":15356,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"57181":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":57181,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-7,"id":52448}],"orbitIndex":24,"name":"Critical Chance","orbit":8},"37956":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":35581}],"group":302,"skill":37956,"orbitIndex":0,"name":"Reduced Duration","orbit":0},"65248":{"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":466,"skill":65248,"orbitIndex":24,"name":"Elemental Ailment Duration","orbit":4},"6898":{"icon":"Art/2DArt/SkillIcons/passives/PressurePoints.dds","skill":6898,"stats":["10% increased Damage","10% increased Critical Hit Chance","+5 to Strength and Intelligence"],"recipe":["Envy","Paranoia","Envy"],"connections":[{"orbit":0,"id":17517},{"orbit":-4,"id":63209},{"orbit":-4,"id":17584},{"orbit":5,"id":61067},{"orbit":0,"id":48305}],"group":375,"orbitIndex":0,"isNotable":true,"name":"Relentless Vindicator","orbit":0},"5284":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":5284,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"recipe":["Guilt","Isolation","Greed"],"connections":[{"orbit":0,"id":32278}],"group":303,"orbitIndex":0,"isNotable":true,"name":"Shredding Force","orbit":0},"14363":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":61338}],"group":464,"skill":14363,"orbitIndex":2,"name":"Lightning Penetration","orbit":3},"30834":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":50216},{"orbit":0,"id":57967}],"group":373,"skill":30834,"orbitIndex":2,"name":"Mana Regeneration","orbit":2},"20504":{"stats":["Recover 5 Life when you Block"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-5,"id":62341}],"group":655,"skill":20504,"orbitIndex":0,"name":"Block","orbit":0},"46475":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":18186},{"orbit":0,"id":51299}],"group":423,"skill":46475,"orbitIndex":63,"name":"Armour and Evasion","orbit":4},"58170":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":61067}],"group":406,"skill":58170,"orbitIndex":1,"name":"Spell Damage","orbit":2},"10251":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":7204}],"group":125,"skill":10251,"orbitIndex":0,"name":"Stun Buildup","orbit":0},"49657":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49657,"stats":["+5 to any Attribute"],"isAttribute":true,"group":510,"connections":[{"orbit":0,"id":54417},{"orbit":6,"id":63526},{"orbit":6,"id":43578},{"orbit":0,"id":58109}],"orbitIndex":33,"name":"Attribute","orbit":6},"61804":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":61804,"stats":["12% increased Magnitude of Poison you inflict"],"ascendancyName":"Pathfinder","group":1051,"connections":[{"orbit":0,"id":29074}],"orbitIndex":0,"name":"Poison Effect","orbit":0},"48135":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":0,"id":12750}],"group":692,"skill":48135,"orbitIndex":12,"name":"Charm Charges","orbit":7},"55397":{"stats":["15% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":44527}],"group":668,"skill":55397,"orbitIndex":21,"name":"Flask Charges Gained","orbit":7},"25482":{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":25482,"stats":["+25 to Strength"],"recipe":["Fear","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"orbit":0,"id":61472},{"orbit":0,"id":51702},{"orbit":0,"id":60620}],"group":215,"orbitIndex":0,"isNotable":true,"name":"Beef","orbit":0},"33209":{"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":209,"skill":33209,"orbitIndex":2,"name":"Totem Cast Speed","orbit":4},"15899":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":9,"id":21627}],"group":478,"skill":15899,"orbitIndex":6,"name":"Bleeding Damage","orbit":2},"13634":{"stats":["Offering Skills have 30% increased Duration"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":544,"skill":13634,"orbitIndex":18,"name":"Offering Duration","orbit":7},"4015":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":47429},{"orbit":-6,"id":59466}],"group":223,"skill":4015,"orbitIndex":6,"name":"Warcry Cooldown","orbit":4},"36576":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":25055},{"orbit":0,"id":54984}],"group":951,"skill":36576,"orbitIndex":14,"name":"Attack Damage","orbit":7},"11337":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":5,"id":23427},{"orbit":0,"id":44455}],"group":497,"skill":11337,"orbitIndex":16,"name":"Chill Effect","orbit":3},"17553":{"stats":["10% chance for Projectiles to Pierce Enemies within 3m distance of you"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":613,"skill":17553,"orbitIndex":5,"name":"Projectile Pierce","orbit":7},"11306":{"stats":["Gain 1 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":57880}],"group":78,"skill":11306,"orbitIndex":5,"name":"Axe Rage on Hit","orbit":2},"32155":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":25700}],"group":828,"skill":32155,"orbitIndex":16,"name":"Elemental Damage and Shock Chance","orbit":7},"51903":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":55058},{"orbit":0,"id":39347}],"group":101,"skill":51903,"orbitIndex":17,"name":"Melee Damage","orbit":3},"511":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":0,"id":49734}],"group":114,"skill":511,"orbitIndex":6,"name":"Attack and Spell Damage","orbit":7},"28992":{"icon":"Art/2DArt/SkillIcons/passives/Hunter.dds","skill":28992,"stats":["8% increased Projectile Speed","8% increased Attack Speed","+10 to Dexterity"],"recipe":["Despair","Envy","Paranoia"],"connections":[{"orbit":0,"id":62628},{"orbit":0,"id":43923}],"group":620,"orbitIndex":21,"isNotable":true,"name":"Honed Instincts","orbit":4},"56914":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":50121}],"group":814,"skill":56914,"orbitIndex":5,"name":"Lightning Penetration","orbit":7},"49192":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":43396},{"orbit":0,"id":41615}],"group":209,"skill":49192,"orbitIndex":12,"name":"Totem Placement Speed","orbit":7},"11275":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":13893}],"group":48,"skill":11275,"orbitIndex":12,"name":"Fire Penetration","orbit":7},"35118":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":685,"skill":35118,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"63926":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[],"group":646,"skill":63926,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"14658":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14658,"stats":["+5 to any Attribute"],"isAttribute":true,"group":882,"connections":[{"orbit":0,"id":12253},{"orbit":0,"id":22517},{"orbit":0,"id":52053}],"orbitIndex":0,"name":"Attribute","orbit":0},"57178":{"stats":["10% increased Critical Hit Chance for Spells","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":21245},{"orbit":0,"id":5284}],"group":310,"skill":57178,"orbitIndex":0,"name":"Spell Critical Chance and Critical Ailment Effect","orbit":0},"41263":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":41263,"stats":[],"group":195,"connections":[{"orbit":0,"id":46628}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"58838":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":6,"id":53719}],"group":173,"skill":58838,"orbitIndex":60,"name":"Stun Threshold","orbit":5},"59028":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":41210}],"group":525,"skill":59028,"orbitIndex":16,"name":"Projectile Damage","orbit":4},"32353":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":32353,"stats":["25% increased Attack Damage"],"recipe":["Suffering","Fear","Despair"],"connections":[],"group":118,"orbitIndex":0,"isNotable":true,"name":"Swift Claw","orbit":0},"27373":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27373,"stats":["+5 to any Attribute"],"isAttribute":true,"group":315,"connections":[{"orbit":-6,"id":53405},{"orbit":-6,"id":51369}],"orbitIndex":51,"name":"Attribute","orbit":5},"38888":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":38888,"stats":["10% increased Accuracy Rating with One Handed Melee Weapons","10% increased Accuracy Rating with Two Handed Melee Weapons","+2 to Melee Strike Range"],"recipe":["Greed","Disgust","Ire"],"connections":[{"orbit":0,"id":39116}],"group":593,"orbitIndex":12,"isNotable":true,"name":"Unerring Impact","orbit":7},"44690":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":14127}],"group":735,"skill":44690,"orbitIndex":8,"name":"Reduced Duration","orbit":2},"7922":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":45962}],"group":313,"skill":7922,"orbitIndex":17,"name":"Flask Duration","orbit":2},"703":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":44917}],"group":663,"skill":703,"orbitIndex":2,"name":"Stun Threshold from Energy Shield","orbit":1},"2254":{"icon":"Art/2DArt/SkillIcons/passives/deepwisdom.dds","skill":2254,"stats":["30% increased maximum Energy Shield","+10 to Intelligence"],"recipe":["Fear","Guilt","Disgust"],"connections":[{"orbit":0,"id":60685},{"orbit":5,"id":43736},{"orbit":6,"id":14666}],"group":540,"orbitIndex":0,"isNotable":true,"name":"Pure Energy","orbit":0},"60886":{"stats":["20% increased Stun Recovery"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":59213}],"group":269,"skill":60886,"orbitIndex":5,"name":"Stun Recovery","orbit":1},"6229":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":6229,"stats":["40% increased Critical Damage Bonus with One Handed Melee Weapons"],"recipe":["Fear","Ire","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":7,"id":26490}],"group":284,"orbitIndex":5,"isNotable":true,"name":"Push the Advantage","orbit":7},"44566":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":44566,"stats":["Lightning Damage with Non-Critical Hits is Lucky"],"recipe":["Suffering","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":582,"orbitIndex":0,"isNotable":true,"name":"Lightning Rod","orbit":0},"35708":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":41154}],"group":119,"skill":35708,"orbitIndex":12,"name":"Chill Effect","orbit":2},"52695":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-6,"id":57230}],"group":845,"skill":52695,"orbitIndex":1,"name":"Physical Damage","orbit":7},"56651":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":38143}],"group":620,"skill":56651,"orbitIndex":57,"name":"Projectile Damage","orbit":4},"43575":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":41512}],"group":586,"skill":43575,"orbitIndex":16,"name":"Melee Damage ","orbit":7},"49984":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":49984,"stats":["32% increased Spell Damage while wielding a Melee Weapon","+10 to Dexterity"],"recipe":["Despair","Fear","Fear"],"connections":[],"group":845,"orbitIndex":57,"isNotable":true,"name":"Spellblade","orbit":5},"29611":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29611,"stats":["+5 to any Attribute"],"isAttribute":true,"group":61,"connections":[{"orbit":0,"id":41768}],"orbitIndex":0,"name":"Attribute","orbit":0},"39881":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":39881,"stats":["20% increased Critical Damage Bonus","20% increased Knockback Distance","20% increased Physical Damage"],"recipe":["Guilt","Isolation","Despair"],"connections":[{"orbit":0,"id":16013},{"orbit":0,"id":35173}],"group":941,"orbitIndex":0,"isNotable":true,"name":"Staggering Palm","orbit":0},"24135":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":24135,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":34419}],"orbitIndex":6,"name":"Critical Chance","orbit":9},"36639":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":-6,"id":62677},{"orbit":0,"id":32009}],"group":567,"skill":36639,"orbitIndex":22,"name":"Curse Duration","orbit":7},"31238":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31238,"stats":["+5 to any Attribute"],"isAttribute":true,"group":259,"connections":[{"orbit":0,"id":48552},{"orbit":0,"id":45918}],"orbitIndex":0,"name":"Attribute","orbit":0},"18519":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-7,"id":30910}],"group":279,"skill":18519,"orbitIndex":15,"name":"Minion Damage","orbit":7},"21684":{"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":33452},{"orbit":-6,"id":1214}],"group":80,"skill":21684,"orbitIndex":66,"name":"Block and Shield Defences","orbit":4},"35848":{"stats":["15% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":688,"skill":35848,"orbitIndex":16,"name":"Flask Recovery","orbit":7},"2021":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":2021,"stats":["30% increased Mana Recovery from Flasks","8% increased Attack and Cast Speed during Effect of any Mana Flask"],"recipe":["Disgust","Greed","Guilt"],"connections":[{"orbit":0,"id":25857}],"group":972,"orbitIndex":0,"isNotable":true,"name":"Wellspring","orbit":7},"21327":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":56876},{"orbit":0,"id":43691}],"group":774,"skill":21327,"orbitIndex":14,"name":"Energy Shield if Consumed Power Charge","orbit":2},"32683":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":32683,"stats":["Gain 5% of Damage as Extra Cold Damage","20% increased Freeze Buildup"],"recipe":["Despair","Ire","Suffering"],"connections":[{"orbit":0,"id":53149},{"orbit":0,"id":54413}],"group":698,"orbitIndex":30,"isNotable":true,"name":"Essence of the Mountain","orbit":4},"54138":{"stats":["3% increased Attack Speed with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":38564},{"orbit":0,"id":37963}],"group":352,"skill":54138,"orbitIndex":12,"name":"Sword Speed","orbit":2},"51299":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51299,"stats":["+5 to any Attribute"],"isAttribute":true,"group":341,"connections":[{"orbit":0,"id":33169},{"orbit":0,"id":35265},{"orbit":0,"id":19802}],"orbitIndex":0,"name":"Attribute","orbit":2},"47733":{"stats":["12% increased Chance to inflict Ailments with One-Handed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":528,"skill":47733,"orbitIndex":7,"name":"One Handed Ailment Chance","orbit":2},"39540":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":19680}],"group":342,"skill":39540,"orbitIndex":49,"name":"Critical Chance","orbit":4},"20691":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":41739}],"group":362,"skill":20691,"orbitIndex":8,"name":"Stun Buildup","orbit":2},"3251":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3251,"stats":["+5 to any Attribute"],"isAttribute":true,"group":772,"connections":[{"orbit":0,"id":21984}],"orbitIndex":0,"name":"Attribute","orbit":0},"46275":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":3894}],"group":381,"skill":46275,"orbitIndex":35,"name":"Stun Threshold from Energy Shield","orbit":4},"32559":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":32559,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":3704}],"orbitIndex":36,"name":"Cooldown Recovery Rate","orbit":8},"18717":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":60483}],"group":955,"skill":18717,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"31890":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":7,"id":38827}],"group":393,"skill":31890,"orbitIndex":5,"name":"Armour and Energy Shield","orbit":3},"2448":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2448,"stats":["+5 to any Attribute"],"isAttribute":true,"group":847,"connections":[{"orbit":0,"id":26598},{"orbit":0,"id":57945},{"orbit":0,"id":14658},{"orbit":0,"id":1631}],"orbitIndex":8,"name":"Attribute","orbit":2},"59093":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59093,"stats":["+5 to any Attribute"],"isAttribute":true,"group":150,"connections":[{"orbit":0,"id":14110},{"orbit":0,"id":5088}],"orbitIndex":0,"name":"Attribute","orbit":0},"31692":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":46197}],"group":903,"skill":31692,"orbitIndex":3,"name":"Critical Chance","orbit":2},"64379":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":64379,"stats":["12% increased Spell Damage"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-4,"id":25239}],"orbitIndex":69,"name":"Spell Damage","orbit":8},"64643":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":56360},{"orbit":0,"id":27176}],"group":718,"skill":64643,"orbitIndex":3,"name":"Power Charge Duration","orbit":2},"4850":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":35503}],"group":659,"skill":4850,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"2863":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":2863,"stats":["15% increased Freeze Buildup","15% increased Chill and Freeze Duration on Enemies"],"recipe":["Guilt","Ire","Isolation"],"connections":[],"group":119,"orbitIndex":0,"isNotable":true,"name":"Perpetual Freeze","orbit":0},"29049":{"stats":["10% increased Charm Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":3,"id":56893}],"group":848,"skill":29049,"orbitIndex":10,"name":"Charm Duration","orbit":2},"33397":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":39594}],"group":327,"skill":33397,"orbitIndex":21,"name":"Fire Damage","orbit":2},"7604":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":7604,"stats":["+30 to Accuracy Rating","8% increased Melee Attack Speed"],"recipe":["Ire","Fear","Fear"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"group":946,"orbitIndex":10,"isNotable":true,"name":"Rapid Strike","orbit":3},"47204":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":43014}],"group":234,"skill":47204,"orbitIndex":22,"name":"Melee Damage","orbit":3},"45019":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":648,"skill":45019,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"26447":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":26447,"stats":["30% increased Energy Shield Recharge Rate","20% increased Mana Regeneration Rate"],"recipe":["Paranoia","Suffering","Ire"],"connections":[{"orbit":0,"id":12918},{"orbit":0,"id":49633}],"group":536,"orbitIndex":0,"isNotable":true,"name":"Refocus","orbit":2},"23608":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":2,"id":61741},{"orbit":-2,"id":24401}],"group":849,"skill":23608,"orbitIndex":20,"name":"Poison Damage","orbit":7},"8483":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":8483,"stats":["35% increased Spell Area Damage","Spell Skills have 10% reduced Area of Effect"],"recipe":["Greed","Despair","Suffering"],"connections":[{"orbit":0,"id":6588}],"group":571,"orbitIndex":7,"isNotable":true,"name":"Ruin","orbit":7},"23930":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":46024},{"orbit":0,"id":58295}],"group":146,"skill":23930,"orbitIndex":40,"name":"Elemental Damage","orbit":4},"25745":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":31890}],"group":393,"skill":25745,"orbitIndex":30,"name":"Armour and Energy Shield","orbit":4},"3414":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[{"orbit":0,"id":14575}],"group":376,"skill":3414,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"13619":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":12208},{"orbit":0,"id":59600}],"group":811,"skill":13619,"orbitIndex":0,"name":"Life Flask Charges","orbit":7},"40270":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":40270,"stats":["5% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","+1 to Maximum Frenzy Charges"],"recipe":["Ire","Suffering","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":741,"orbitIndex":0,"isNotable":true,"name":"Frenetic","orbit":0},"20831":{"icon":"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds","skill":20831,"stats":["25% increased Evasion Rating","25% increased Evasion Rating if you've Dodge Rolled Recently"],"recipe":["Paranoia","Guilt","Ire"],"connections":[{"orbit":0,"id":29843},{"orbit":0,"id":44875}],"group":668,"orbitIndex":14,"isNotable":true,"name":"Catlike Agility","orbit":2},"61281":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":9217}],"group":528,"skill":61281,"orbitIndex":14,"name":"One Handed Damage","orbit":2},"55194":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":342,"skill":55194,"orbitIndex":66,"name":"Minion Damage","orbit":4},"48401":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48401,"stats":["+5 to any Attribute"],"isAttribute":true,"group":596,"connections":[{"orbit":0,"id":35987},{"orbit":0,"id":61312},{"orbit":5,"id":10909}],"orbitIndex":30,"name":"Attribute","orbit":6},"40596":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-6,"id":48768}],"group":173,"skill":40596,"orbitIndex":36,"name":"Stun Threshold","orbit":5},"49256":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":14439}],"group":52,"skill":49256,"orbitIndex":12,"name":"Armour and Energy Shield","orbit":3},"58704":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds","skill":58704,"stats":["Break Armour equal to 10% of Hit Damage dealt"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":49380}],"group":3,"orbitIndex":0,"isNotable":true,"name":"Anvil's Weight","orbit":0},"5936":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":65248}],"group":466,"skill":5936,"orbitIndex":36,"name":"Elemental","orbit":4},"12890":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":12890,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":0,"id":59740},{"orbit":0,"id":2091}],"orbitIndex":12,"name":"Attribute","orbit":6},"19338":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[],"group":950,"skill":19338,"orbitIndex":0,"name":"Dexterity","orbit":3},"37695":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-5,"id":11813}],"group":796,"skill":37695,"orbitIndex":0,"name":"Evasion","orbit":0},"3988":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51832}],"group":90,"skill":3988,"orbitIndex":13,"name":"Empowered Attack Damage","orbit":2},"45824":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":61441},{"orbit":0,"id":8493}],"group":386,"skill":45824,"orbitIndex":0,"name":"Sword Damage","orbit":0},"27859":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":0,"id":38694}],"group":574,"skill":27859,"orbitIndex":12,"name":"Herald Damage","orbit":7},"16596":{"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":38535},{"orbit":0,"id":5088}],"group":197,"skill":16596,"orbitIndex":20,"name":"Speed with Elemental Skills","orbit":3},"31039":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":720,"skill":31039,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"59695":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":28950}],"group":420,"skill":59695,"orbitIndex":19,"name":"Mana Regeneration","orbit":2},"46088":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":13823}],"group":624,"skill":46088,"orbitIndex":20,"name":"Spell Critical Chance","orbit":3},"30634":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":694,"skill":30634,"orbitIndex":6,"name":"Energy Shield Delay","orbit":2},"25885":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":25885,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":31116}],"orbitIndex":20,"name":"Darkness","orbit":8},"56063":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":56063,"stats":["23% increased Chaos Damage","15% increased Skill Effect Duration"],"recipe":["Isolation","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":617,"orbitIndex":0,"isNotable":true,"name":"Lingering Horror","orbit":0},"41529":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-2,"id":21380}],"group":762,"skill":41529,"orbitIndex":21,"name":"Critical Damage","orbit":2},"48198":{"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","skill":48198,"stats":["4% increased Movement Speed","15% increased Mana Regeneration Rate","+5 to Dexterity and Intelligence"],"recipe":["Despair","Despair","Ire"],"connections":[{"orbit":3,"id":29361},{"orbit":-5,"id":65437},{"orbit":-6,"id":40068},{"orbit":0,"id":1215},{"orbit":6,"id":13411}],"group":615,"orbitIndex":12,"isNotable":true,"name":"Step Like Mist","orbit":4},"151":{"stats":["16% increased Accuracy Rating at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":34747}],"group":358,"skill":151,"orbitIndex":5,"name":"Accuracy","orbit":7},"60083":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":60083,"stats":["30% increased Pin Buildup","5% increased Movement Speed if you've Pinned an Enemy Recently"],"recipe":["Disgust","Despair","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":44239}],"group":754,"orbitIndex":0,"isNotable":true,"name":"Pin and Run","orbit":0},"61338":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":61338,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"recipe":["Disgust","Paranoia","Isolation"],"connections":[],"group":464,"orbitIndex":6,"isNotable":true,"name":"Breath of Lightning","orbit":4},"10694":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds","skill":10694,"stats":["While on High Infernal Flame, you and Allies in your","Presence Gain 20% of Damage as Fire Damage"],"ascendancyName":"Infernalist","connections":[],"group":529,"orbitIndex":0,"isNotable":true,"name":"Seething Body","orbit":0},"24070":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[{"orbit":0,"id":58397}],"group":934,"skill":24070,"orbitIndex":0,"name":"Dexterity","orbit":0},"6588":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":571,"skill":6588,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"61404":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":61404,"stats":["30% increased Attack Damage if you've Cast a Spell Recently","10% increased Cast Speed if you've Attacked Recently"],"recipe":["Fear","Suffering","Despair"],"connections":[{"orbit":0,"id":51210},{"orbit":0,"id":61429}],"group":114,"orbitIndex":0,"isNotable":true,"name":"Equilibrium","orbit":0},"57506":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57506,"stats":["+5 to any Attribute"],"isAttribute":true,"group":305,"connections":[{"orbit":0,"id":1433}],"orbitIndex":0,"name":"Attribute","orbit":0},"17791":{"stats":["18% increased Stun Buildup with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":526}],"group":56,"skill":17791,"orbitIndex":3,"name":"Mace Stun Buildup","orbit":7},"62998":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":63600}],"group":983,"skill":62998,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"4664":{"stats":["6% increased Trap Throwing Speed"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":43938}],"group":974,"skill":4664,"orbitIndex":42,"name":"Trap Throw Speed","orbit":6},"52220":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":81,"skill":52220,"orbitIndex":0,"name":"Physical Mastery","orbit":0},"41186":{"stats":["12% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":58117}],"group":387,"skill":41186,"orbitIndex":33,"name":"Totem Placement Speed","orbit":5},"55598":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":4,"id":15644},{"orbit":-3,"id":9112},{"orbit":0,"id":28050}],"group":734,"skill":55598,"orbitIndex":2,"name":"Ailment Threshold","orbit":3},"35974":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":51105}],"group":151,"skill":35974,"orbitIndex":0,"name":"Totem Life","orbit":2},"21716":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-5,"id":9583}],"group":281,"skill":21716,"orbitIndex":0,"name":"Life Leech","orbit":4},"34717":{"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":24120}],"group":892,"skill":34717,"orbitIndex":20,"name":"Mana Regeneration while not on Low Mana","orbit":3},"41062":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":751,"skill":41062,"orbitIndex":48,"name":"Projectile Mastery","orbit":4},"26339":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":26339,"stats":["Attack Skills have +1 to maximum number of Summoned Totems","20% increased Totem Placement range"],"recipe":["Suffering","Suffering","Suffering"],"connections":[{"orbit":0,"id":64405},{"orbit":0,"id":11014}],"group":177,"orbitIndex":0,"isNotable":true,"name":"Ancestral Artifice","orbit":1},"50510":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":46384}],"group":52,"skill":50510,"orbitIndex":18,"name":"Shield Block","orbit":4},"16311":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":32600},{"orbit":0,"id":14654}],"group":211,"skill":16311,"orbitIndex":20,"name":"Life Regeneration","orbit":2},"19808":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","connections":[],"group":690,"skill":19808,"orbitIndex":9,"name":"Ailment Chance","orbit":7},"21945":{"stats":["20% increased Damage against Dazed Enemies"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":2,"id":38342}],"group":988,"skill":21945,"orbitIndex":6,"name":"Damage vs Dazed Enemies","orbit":2},"28693":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":49280}],"group":428,"skill":28693,"orbitIndex":1,"name":"Armour and Evasion","orbit":2},"49455":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":381,"skill":49455,"orbitIndex":5,"name":"Energy Shield","orbit":4},"65310":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":22682}],"group":794,"skill":65310,"orbitIndex":0,"name":"Additional Spell Projectiles","orbit":3},"64443":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":64443,"stats":["20% increased Stun Buildup","25% increased Attack Area Damage"],"recipe":["Fear","Ire","Fear"],"connections":[{"orbit":0,"id":41126},{"orbit":0,"id":62023}],"group":159,"orbitIndex":8,"isNotable":true,"name":"Impact Force","orbit":3},"18815":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":40990}],"group":967,"skill":18815,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"10314":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":16256}],"group":680,"skill":10314,"orbitIndex":30,"name":"Mana Regeneration","orbit":4},"12611":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":12611,"stats":["15% increased Damage for each type of Elemental Ailment on Enemy"],"recipe":["Disgust","Disgust","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":3,"id":32155},{"orbit":3,"id":44204}],"group":828,"orbitIndex":0,"isNotable":true,"name":"Harness the Elements","orbit":0},"36564":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds","skill":36564,"stats":["Reserves 25% of Life","+1 to Maximum Mana per 6 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":100,"isNotable":true,"name":"Beidat's Gaze","orbit":9},"31765":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31765,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":24958}],"orbitIndex":0,"name":"Attribute","orbit":0},"11656":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":53822},{"orbit":-3,"id":9106}],"group":57,"skill":11656,"orbitIndex":8,"name":"Rage when Hit","orbit":7},"23764":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":23764,"stats":["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently","20% increased Magnitude of Shock you inflict"],"recipe":["Ire","Ire","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":650,"orbitIndex":0,"isNotable":true,"name":"Alternating Current","orbit":0},"6006":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":38105}],"group":381,"skill":6006,"orbitIndex":62,"name":"Energy Shield","orbit":4},"25513":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":25513,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"recipe":["Despair","Fear","Envy"],"connections":[],"group":481,"orbitIndex":45,"isNotable":true,"name":"Overwhelm","orbit":6},"4313":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":28992}],"group":620,"skill":4313,"orbitIndex":6,"name":"Projectile Damage","orbit":7},"57373":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":44733}],"group":323,"skill":57373,"orbitIndex":0,"name":"Ignite Chance","orbit":0},"30047":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30047,"stats":["+5 to any Attribute"],"isAttribute":true,"group":697,"connections":[{"orbit":0,"id":21280}],"orbitIndex":0,"name":"Attribute","orbit":0},"61403":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61403,"stats":["+5 to any Attribute"],"isAttribute":true,"group":852,"connections":[{"orbit":0,"id":56349},{"orbit":3,"id":14231}],"orbitIndex":0,"name":"Attribute","orbit":0},"43576":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":7971}],"group":519,"skill":43576,"orbitIndex":8,"name":"Mana Regeneration","orbit":3},"23993":{"stats":["12% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":8115}],"group":424,"skill":23993,"orbitIndex":0,"name":"Physical Damage","orbit":0},"55060":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":55060,"stats":["30% chance to Pierce an Enemy","Projectiles have 10% chance to Chain an additional time from terrain"],"recipe":["Guilt","Guilt","Disgust"],"connections":[{"orbit":0,"id":33037},{"orbit":0,"id":45576}],"group":547,"orbitIndex":9,"isNotable":true,"name":"Shrapnel","orbit":5},"17229":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":17229,"stats":["Minions have +20% to all Elemental Resistances"],"recipe":["Fear","Greed","Disgust"],"connections":[{"orbit":0,"id":34493},{"orbit":0,"id":47242}],"group":75,"orbitIndex":20,"isNotable":true,"name":"Silent Guardian","orbit":3},"50437":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":35987}],"group":604,"skill":50437,"orbitIndex":8,"name":"Evasion","orbit":7},"48589":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":7922}],"group":313,"skill":48589,"orbitIndex":11,"name":"Life Flask Recovery","orbit":2},"55789":{"stats":["20% increased Critical Damage Bonus","5% increased Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-2,"id":41665}],"group":184,"skill":55789,"orbitIndex":3,"name":"Critical Damage and Increased Mana Cost","orbit":4},"4346":{"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":4519},{"orbit":0,"id":20677}],"group":765,"skill":4346,"orbitIndex":0,"name":"Damage on Critical","orbit":0},"63790":{"stats":["20% increased Melee Damage against Immobilised Enemies"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":48014}],"group":101,"skill":63790,"orbitIndex":54,"name":"Melee Damage against Immobilised","orbit":5},"32771":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":32771,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":34817}],"orbitIndex":55,"name":"Darkness","orbit":9},"25779":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":25779,"stats":["10% increased maximum Darkness"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":41076}],"orbitIndex":34,"name":"Darkness","orbit":9},"22616":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22616,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":51052},{"orbit":0,"id":17468},{"orbit":0,"id":48631}],"orbitIndex":54,"name":"Attribute","orbit":6},"33601":{"stats":["10% increased Chill and Freeze Duration on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":2863}],"group":119,"skill":33601,"orbitIndex":0,"name":"Chill and Freeze Duration","orbit":2},"63451":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":63451,"stats":["30% increased Stun Buildup","Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"],"recipe":["Greed","Paranoia","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":44406},{"orbit":0,"id":64312}],"group":221,"orbitIndex":6,"isNotable":true,"name":"Cranial Impact","orbit":6},"57513":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds","skill":57513,"isKeystone":true,"stats":["Converts all Energy Shield to Mana"],"group":710,"connections":[],"orbitIndex":0,"name":"Eldritch Battery","orbit":0},"50635":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":25971},{"orbit":5,"id":42750},{"orbit":-5,"id":9050}],"group":840,"skill":50635,"orbitIndex":13,"name":"Attack Speed","orbit":3},"24753":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":24753,"stats":["30% increased Accuracy Rating at Close Range","+10 to Dexterity"],"recipe":["Ire","Greed","Envy"],"connections":[{"orbit":0,"id":34747},{"orbit":0,"id":56567},{"orbit":0,"id":151}],"group":358,"orbitIndex":0,"isNotable":true,"name":"Determined Precision","orbit":0},"11771":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":11771,"stats":["4% increased Skill Speed"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":664}],"orbitIndex":21,"name":"Skill Speed","orbit":5},"1347":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":1347,"stats":["4% increased Skill Speed"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":7,"id":50098}],"orbitIndex":12,"name":"Skill Speed","orbit":6},"47796":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-4,"id":62640}],"group":435,"skill":47796,"orbitIndex":12,"name":"Attack Speed","orbit":2},"37629":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37629,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":55933}],"orbitIndex":42,"name":"Attribute","orbit":6},"49642":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":4882}],"group":314,"skill":49642,"orbitIndex":1,"name":"Totem Damage","orbit":7},"47344":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":47344,"stats":["12% increased amount of Mana Leeched"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":0,"id":3781}],"orbitIndex":0,"name":"Mana Leech","orbit":9},"33989":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":33989,"stats":[],"group":144,"connections":[{"orbit":0,"id":49734}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"31116":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds","skill":31116,"stats":["Gain 1% of Damage as Extra Chaos Damage per 20 Unreserved Darkness"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":25,"isNotable":true,"name":"Grasp of the Void","orbit":8},"63393":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":7721},{"orbit":0,"id":36709}],"group":408,"skill":63393,"orbitIndex":12,"name":"Stun Threshold","orbit":7},"41076":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds","skill":41076,"stats":["Removes all Spirit","Base Maximum Darkness is 100","Damage taken is Reserved from Darkness before being taken from Life or Energy Shield","Darkness Reservation lasts for 10 seconds","+5 to Maximum Darkness per Level"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":32771},{"orbit":-6,"id":25885}],"group":1058,"orbitIndex":45,"isNotable":true,"name":"Embrace the Darkness","orbit":9},"664":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds","skill":664,"stats":["Effect and Duration of Flames of Chayula on You is Doubled"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":27,"isNotable":true,"name":"Lucid Dreaming","orbit":5},"50098":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds","skill":50098,"stats":["Grants Skill: Into the Breach"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":11771}],"group":1058,"orbitIndex":16,"isNotable":true,"name":"Waking Dream","orbit":5},"30554":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":29611}],"group":70,"skill":30554,"orbitIndex":20,"name":"Minion Life","orbit":7},"25781":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds","skill":25781,"stats":["23% chance to Gain 25% of Damage with Hits as Extra Chaos Damage","13% chance to Gain 50% of Damage with Hits as Extra Chaos Damage","7% chance to Gain 100% of Damage with Hits as Extra Chaos Damage"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":2,"isNotable":true,"name":"Reality Rending","orbit":5},"3781":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechEnergyShield.dds","skill":3781,"stats":["You cannot Recharge Energy Shield","Mana Leech effects also Recover Energy Shield"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":136,"isNotable":true,"name":"Consuming Questions","orbit":9},"58090":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":48774}],"group":546,"skill":58090,"orbitIndex":18,"name":"Life Recoup","orbit":7},"8631":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":32660},{"orbit":0,"id":59256},{"orbit":0,"id":30979}],"group":331,"skill":8631,"orbitIndex":3,"name":"Critical Chance","orbit":3},"2964":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":18374}],"group":293,"skill":2964,"orbitIndex":15,"name":"Thorns","orbit":2},"40":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderFlasksConsumeLessCharges.dds","skill":40,"stats":["50% more Flask Charges gained"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":16}],"group":1057,"orbitIndex":0,"isNotable":true,"name":"Connected Chemistry","orbit":0},"44430":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":7062}],"group":614,"skill":44430,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"51690":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":51690,"stats":["Regenerate 0.5% of Life per second"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":-5,"id":12000}],"orbitIndex":43,"name":"Life Regeneration","orbit":6},"19277":{"stats":["Spell Skills have 12% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":44783}],"group":233,"skill":19277,"orbitIndex":10,"name":"Area Damage","orbit":2},"59759":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds","skill":59759,"stats":["+10% to Maximum Chaos Resistance","Chaos Resistance is doubled"],"ascendancyName":"Acolyte of Chayula","connections":[],"group":1058,"orbitIndex":4,"isNotable":true,"name":"Chayula's Gift","orbit":8},"41619":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds","skill":41619,"stats":["Life Flask Effects are not removed when Unreserved Life is Filled","Life Flask Effects do not Queue"],"ascendancyName":"Pathfinder","connections":[],"group":1055,"orbitIndex":0,"isNotable":true,"name":"Enduring Elixirs","orbit":0},"61196":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61196,"stats":["+5 to any Attribute"],"isAttribute":true,"group":748,"connections":[{"orbit":5,"id":56045},{"orbit":0,"id":13419}],"orbitIndex":54,"name":"Attribute","orbit":6},"29074":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds","skill":29074,"stats":["Double the number of your Poisons that targets can be affected by at the same time","35% less Poison Duration"],"ascendancyName":"Pathfinder","connections":[],"group":1052,"orbitIndex":0,"isNotable":true,"name":"Overwhelming Toxicity","orbit":0},"58379":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds","skill":58379,"stats":["Grants Skill: Poisonous Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1049,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Poisonous Concoction","orbit":0},"64318":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":61063},{"orbit":0,"id":7960}],"group":197,"skill":64318,"orbitIndex":2,"name":"Elemental Penetration","orbit":3},"21387":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21387,"stats":["+5 to any Attribute"],"isAttribute":true,"group":85,"connections":[{"orbit":0,"id":26725},{"orbit":0,"id":3988}],"orbitIndex":0,"name":"Attribute","orbit":0},"44756":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":44756,"stats":["30% reduced Mana Cost of Mark Skills","4% increased Movement Speed if you've cast a Mark Spell Recently"],"recipe":["Despair","Disgust","Suffering"],"connections":[{"orbit":5,"id":44841}],"group":914,"orbitIndex":15,"isNotable":true,"name":"Marked Agility","orbit":3},"21127":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":151,"skill":21127,"orbitIndex":36,"name":"Totem Mastery","orbit":4},"49503":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":49503,"stats":["20% increased Mana Flask Charges gained"],"ascendancyName":"Pathfinder","group":1047,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Mana Flask Charges","orbit":0},"18940":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds","skill":18940,"stats":["Grants Skill: Shattering Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1045,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Shattering Concoction","orbit":0},"9710":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds","skill":9710,"stats":["Grants Skill: Bleeding Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1044,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Bleeding Concoction","orbit":0},"7488":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":336,"skill":7488,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"38004":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds","skill":38004,"stats":["Grants Skill: Explosive Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1043,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Explosive Concoction","orbit":0},"37336":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds","skill":37336,"stats":["30% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"ascendancyName":"Deadeye","connections":[{"orbit":0,"id":35801}],"group":1042,"orbitIndex":0,"isNotable":true,"name":"Avidity","orbit":0},"6596":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":41171}],"group":685,"skill":6596,"orbitIndex":30,"name":"Attack Speed","orbit":4},"51105":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51105,"stats":["30% increased Totem Life","30% increased Totem Duration"],"recipe":["Greed","Ire","Fear"],"connections":[{"orbit":0,"id":48979},{"orbit":0,"id":21127}],"group":151,"orbitIndex":6,"isNotable":true,"name":"Spirit Bond","orbit":1},"9112":{"stats":["25% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":0,"id":44612}],"group":734,"skill":9112,"orbitIndex":11,"name":"Ailment Threshold","orbit":1},"1583":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":1583,"stats":[],"ascendancyName":"Pathfinder","isAscendancyStart":true,"group":1041,"connections":[{"orbit":-6,"id":39292},{"orbit":-6,"id":14508},{"orbit":0,"id":9798},{"orbit":-5,"id":49503},{"orbit":6,"id":36676}],"orbitIndex":48,"name":"Pathfinder","orbit":9},"18158":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds","skill":18158,"stats":["While not on Low Infernal Flame, all Damage from you and","Allies in your Presence contributes to Ignite Chance and Magnitude"],"ascendancyName":"Infernalist","connections":[],"group":470,"orbitIndex":0,"isNotable":true,"name":"Bringer of Flame","orbit":0},"20677":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":20677,"stats":["30% increased Critical Damage Bonus","+10 to Intelligence"],"recipe":["Paranoia","Suffering","Guilt"],"connections":[{"orbit":0,"id":9586},{"orbit":0,"id":535}],"group":791,"orbitIndex":0,"isNotable":true,"name":"For the Jugular","orbit":0},"17726":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":33053}],"group":621,"skill":17726,"orbitIndex":5,"name":"Stun Buildup","orbit":7},"33736":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":33736,"stats":["4% increased Skill Speed"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":24868}],"orbitIndex":86,"name":"Skill Speed","orbit":9},"1286":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":-7,"id":17903}],"group":133,"skill":1286,"orbitIndex":10,"name":"Thorns","orbit":7},"46742":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds","skill":46742,"isKeystone":true,"stats":["Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure","Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure","Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure"],"group":833,"connections":[],"orbitIndex":0,"name":"Elemental Equilibrium","orbit":0},"21713":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":11604},{"orbit":0,"id":50588}],"group":803,"skill":21713,"orbitIndex":20,"name":"Accuracy","orbit":2},"48588":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":2455},{"orbit":0,"id":13081}],"group":490,"skill":48588,"orbitIndex":14,"name":"Projectile Damage","orbit":5},"46454":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds","skill":46454,"stats":["Grants 5 Passive Skill Point"],"ascendancyName":"Pathfinder","connections":[],"group":1041,"orbitIndex":42,"isNotable":true,"name":"Traveller's Wisdom","orbit":8},"61991":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds","skill":61991,"stats":["30% less Movement Speed Penalty from using Skills while moving"],"ascendancyName":"Pathfinder","connections":[{"orbit":0,"id":33736}],"group":1041,"orbitIndex":72,"isNotable":true,"name":"Running Assault","orbit":9},"35801":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":35801,"stats":["25% increased Frenzy Charge Duration"],"ascendancyName":"Deadeye","group":1040,"connections":[{"orbit":0,"id":23508}],"orbitIndex":0,"name":"Frenzy Charge Duration","orbit":0},"12526":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-9,"id":54818}],"group":489,"skill":12526,"orbitIndex":18,"name":"Ailment Threshold","orbit":3},"41875":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds","skill":41875,"stats":["Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres"],"isMultipleChoiceOption":true,"ascendancyName":"Deadeye","group":1037,"connections":[{"orbit":0,"id":42416}],"orbitIndex":0,"name":"Point Blank","orbit":0},"24226":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds","skill":24226,"stats":["You have no Accuracy Penalty at Distance"],"ascendancyName":"Deadeye","connections":[],"group":1036,"orbitIndex":0,"isNotable":true,"name":"Eagle Eyes","orbit":0},"30":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds","skill":30,"stats":["Gain Tailwind on Skill use","Lose all Tailwind when Hit"],"ascendancyName":"Deadeye","connections":[{"orbit":0,"id":29871}],"group":1035,"orbitIndex":0,"isNotable":true,"name":"Gathering Winds","orbit":0},"5703":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":5703,"stats":["30% increased Elemental Damage if you've Shocked an Enemy Recently"],"recipe":["Despair","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":4,"isNotable":true,"name":"Echoing Thunder","orbit":7},"54937":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":54937,"stats":["Gain 5 Rage when Hit by an Enemy","Every Rage also grants 1% increased Armour"],"recipe":["Suffering","Ire","Despair"],"connections":[],"group":57,"orbitIndex":9,"isNotable":true,"name":"Vengeful Fury","orbit":1},"60287":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds","skill":60287,"stats":["+1 to Level of all Skills"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":207,"orbitIndex":0,"isNotable":true,"name":"Implanted Gems","orbit":0},"33059":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":33059,"stats":["80% increased Stun Recovery"],"recipe":["Ire","Guilt","Greed"],"connections":[{"orbit":0,"id":2841}],"group":631,"orbitIndex":12,"isNotable":true,"name":"Back in Action","orbit":2},"3131":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":2394}],"group":551,"skill":3131,"orbitIndex":9,"name":"Dual Wielding Speed","orbit":2},"41126":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":1170},{"orbit":0,"id":9918}],"group":159,"skill":41126,"orbitIndex":4,"name":"Area Damage","orbit":3},"37946":{"stats":["15% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[],"group":801,"skill":37946,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"10873":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":10873,"stats":["25% increased Attack Damage"],"recipe":["Ire","Disgust","Fear"],"connections":[{"orbit":0,"id":32777}],"group":71,"orbitIndex":21,"isNotable":true,"name":"Bestial Rage","orbit":3},"39280":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":44669}],"group":735,"skill":39280,"orbitIndex":4,"name":"Increased Duration","orbit":3},"9994":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":9994,"stats":[],"ascendancyName":"Invoker","isAscendancyStart":true,"group":1033,"connections":[{"orbit":0,"id":23415},{"orbit":0,"id":44357},{"orbit":0,"id":13065},{"orbit":0,"id":27686},{"orbit":2147483647,"id":25434},{"orbit":0,"id":17268}],"orbitIndex":24,"name":"Master of the Elements","orbit":9},"27686":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":27686,"stats":["20% increased Energy Shield Recharge Rate"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":0,"id":12876}],"orbitIndex":10,"name":"Energy Shield Recharge Rate","orbit":8},"13356":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":6229}],"group":284,"skill":13356,"orbitIndex":0,"name":"One Handed Damage","orbit":2},"57710":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57710,"stats":["+5 to any Attribute"],"isAttribute":true,"group":503,"connections":[{"orbit":0,"id":39037},{"orbit":0,"id":40783}],"orbitIndex":0,"name":"Attribute","orbit":6},"52746":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":9796},{"orbit":-3,"id":64471}],"group":345,"skill":52746,"orbitIndex":12,"name":"Fire Damage","orbit":2},"23374":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":2500}],"group":1007,"skill":23374,"orbitIndex":0,"name":"Poison Chance","orbit":0},"36364":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":36364,"stats":["Enemies you Electrocute have 20% increased Damage taken"],"recipe":["Paranoia","Suffering","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":970,"orbitIndex":0,"isNotable":true,"name":"Electrocution","orbit":0},"25281":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":677,"skill":25281,"orbitIndex":10,"name":"Life Mastery","orbit":1},"57776":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":33914}],"group":193,"skill":57776,"orbitIndex":5,"name":"Energy Shield and Mana Regeneration","orbit":3},"8957":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":8957,"stats":["Minions have 20% increased Area of Effect","Minions have 10% chance to inflict Withered on Hit"],"recipe":["Envy","Isolation","Suffering"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":44,"isNotable":true,"name":"Right Hand of Darkness","orbit":4},"64119":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":64119,"stats":["40% increased Crossbow Reload Speed"],"recipe":["Fear","Guilt","Suffering"],"connections":[{"orbit":0,"id":33596}],"group":605,"orbitIndex":22,"isNotable":true,"name":"Instant Reload","orbit":7},"29133":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":29133,"stats":["12% increased Elemental Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":2,"id":64031}],"orbitIndex":9,"name":"Elemental Damage","orbit":4},"37276":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":37276,"stats":["+8 to Maximum Rage"],"recipe":["Isolation","Disgust","Fear"],"connections":[{"orbit":0,"id":33244}],"group":212,"orbitIndex":14,"isNotable":true,"name":"Battle Trance","orbit":2},"61356":{"stats":["10% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[{"orbit":0,"id":12498}],"group":792,"skill":61356,"orbitIndex":12,"name":"Quiver Effect","orbit":7},"15829":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":15829,"stats":["Recover 2% of Mana on Kill","25% increased amount of Mana Leeched"],"recipe":["Paranoia","Envy","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"orbit":0,"id":46146}],"group":743,"orbitIndex":0,"isNotable":true,"name":"Siphon","orbit":0},"51369":{"stats":["14% increased Damage with Hits against Burning Enemies"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":56061},{"orbit":0,"id":45503}],"group":243,"skill":51369,"orbitIndex":6,"name":"Damage against Burning Enemies","orbit":2},"12876":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds","skill":12876,"stats":["Grants Skill: Meditate"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":7,"isNotable":true,"name":"Faith is a Choice","orbit":6},"1447":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":22393}],"group":278,"skill":1447,"orbitIndex":14,"name":"Minion Damage","orbit":3},"52448":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds","skill":52448,"stats":["Trigger Elemental Expression on Melee Critical Hit","Grants Skill: Elemental Expression"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":53,"isNotable":true,"name":"...and Scatter Them to the Winds","orbit":9},"336":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":336,"stats":["Damage Penetrates 15% Cold Resistance","Damage Penetrates 8% Lightning Resistance"],"recipe":["Envy","Suffering","Suffering"],"connections":[{"orbit":-3,"id":4806}],"group":898,"orbitIndex":15,"isNotable":true,"name":"Storm Swell","orbit":3},"36290":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":23046}],"group":891,"skill":36290,"orbitIndex":33,"name":"Energy Shield Delay","orbit":4},"57846":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":63451},{"orbit":6,"id":38876}],"group":221,"skill":57846,"orbitIndex":12,"name":"Stun Buildup","orbit":6},"33137":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":36894},{"orbit":0,"id":17330}],"group":149,"skill":33137,"orbitIndex":17,"name":"Bleed Damage","orbit":2},"31566":{"stats":["30% increased Armour while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":7049},{"orbit":0,"id":54818}],"group":480,"skill":31566,"orbitIndex":23,"name":"Armour while Surrounded","orbit":3},"23587":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds","skill":23587,"stats":["Gain 10% of Damage as Extra Cold Damage","On Freezing Enemies create Chilled Ground"],"ascendancyName":"Invoker","connections":[{"orbit":7,"id":25434},{"orbit":0,"id":29133}],"group":1033,"orbitIndex":9,"isNotable":true,"name":"I am the Blizzard...","orbit":5},"22873":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":7777},{"orbit":0,"id":64318}],"group":197,"skill":22873,"orbitIndex":4,"name":"Elemental Penetration","orbit":3},"11672":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11672,"stats":["+5 to any Attribute"],"isAttribute":true,"group":591,"connections":[{"orbit":0,"id":47177},{"orbit":0,"id":48030}],"orbitIndex":0,"name":"Attribute","orbit":0},"65173":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds","skill":65173,"stats":["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating","40% less Evasion Rating"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":139,"isNotable":true,"name":"...and Protect me from Harm","orbit":9},"8143":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds","skill":8143,"stats":["Gain 1 Spirit for every 6 Energy Shield on equipped Body Armour","Gain 1 Spirit for every 15 Evasion Rating on equipped Body Armour","Cannot gain Spirit from Equipment"],"ascendancyName":"Invoker","connections":[{"orbit":4,"id":16100}],"group":1033,"orbitIndex":5,"isNotable":true,"name":"Lead me through Grace...","orbit":9},"41747":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":-3,"id":61847}],"group":40,"skill":41747,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"17420":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":18717},{"orbit":0,"id":25565},{"orbit":0,"id":15356}],"group":966,"skill":17420,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"40196":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":788,"skill":40196,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"46990":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":46990,"stats":[],"ascendancyName":"Deadeye","isAscendancyStart":true,"group":1030,"connections":[{"orbit":0,"id":49165},{"orbit":0,"id":39723},{"orbit":0,"id":3987},{"orbit":0,"id":24295},{"orbit":0,"id":61461}],"orbitIndex":48,"name":"Deadeye","orbit":9},"5663":{"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":5663,"stats":["+2 to Maximum Endurance Charges"],"recipe":["Guilt","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":153,"orbitIndex":0,"isNotable":true,"name":"Endurance","orbit":0},"28229":{"stats":["20% increased Area of Effect of Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":50485}],"group":651,"skill":28229,"orbitIndex":0,"name":"Curse Area","orbit":2},"39723":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":39723,"stats":["12% increased Accuracy Rating"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":24226}],"orbitIndex":21,"name":"Accuracy","orbit":6},"3775":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":45244}],"group":785,"skill":3775,"orbitIndex":12,"name":"Life Flask Charges","orbit":2},"25055":{"stats":["2% increased Movement Speed","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":41580}],"group":951,"skill":25055,"orbitIndex":8,"name":"Attack Damage and Movement Speed","orbit":2},"61461":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":61461,"stats":["10% increased Projectile Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":2147483647,"id":42416}],"orbitIndex":24,"name":"Projectile Speed","orbit":6},"44082":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4931}],"group":289,"skill":44082,"orbitIndex":6,"name":"Energy Shield Recharge","orbit":2},"30996":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds","skill":30996,"stats":["You can use two copies of the same Support Gem in different Skills"],"ascendancyName":"Gemling Legionnaire","connections":[],"group":298,"orbitIndex":0,"isNotable":true,"name":"Gem Studded","orbit":0},"55058":{"stats":["20% increased Melee Damage against Immobilised Enemies"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":63790}],"group":101,"skill":55058,"orbitIndex":48,"name":"Melee Damage against Immobilised","orbit":5},"1546":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":1546,"stats":["3% increased Movement Speed","25% increased Armour","25% increased maximum Energy Shield"],"recipe":["Envy","Despair","Suffering"],"connections":[],"group":393,"orbitIndex":20,"isNotable":true,"name":"Spiral into Depression","orbit":2},"56842":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":56842,"stats":["18% increased Stun Buildup"],"ascendancyName":"Titan","group":31,"connections":[{"orbit":-5,"id":59540}],"orbitIndex":0,"name":"Stun Buildup","orbit":0},"2999":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":2999,"stats":["20% increased Cast Speed when on Low Life","10% reduced Cast Speed when on Full Life"],"recipe":["Isolation","Despair","Disgust"],"connections":[],"group":157,"orbitIndex":22,"isNotable":true,"name":"Final Barrage","orbit":6},"42416":{"isMultipleChoice":true,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds","skill":42416,"stats":[],"ascendancyName":"Deadeye","connections":[],"group":1030,"orbitIndex":24,"isNotable":true,"name":"Projectile Proximity Specialisation","orbit":5},"32442":{"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":2361}],"group":1024,"skill":32442,"orbitIndex":0,"name":"Quarterstaff Stun and Knockback","orbit":0},"30839":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-3,"id":35671}],"group":896,"skill":30839,"orbitIndex":17,"name":"Attack Speed and Dexterity","orbit":3},"38614":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":38614,"stats":["12% chance for Spell Skills to fire 2 additional Projectiles"],"recipe":["Paranoia","Disgust","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":27662},{"orbit":0,"id":44201}],"group":687,"orbitIndex":20,"isNotable":true,"name":"Psychic Fragmentation","orbit":3},"64700":{"stats":["20% increased Daze Buildup with Quarterstaves","20% increased Freeze Buildup with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":61632}],"group":1023,"skill":64700,"orbitIndex":0,"name":"Quarterstaff Freeze and Daze Buildup","orbit":0},"36163":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":30390}],"group":265,"skill":36163,"orbitIndex":9,"name":"Block","orbit":2},"34984":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":663,"skill":34984,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"4577":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":3999}],"group":430,"skill":4577,"orbitIndex":8,"name":"Attack Area","orbit":7},"7302":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":7302,"stats":["Final Repeat of Spells has 40% increased Area of Effect"],"recipe":["Fear","Envy","Ire"],"connections":[{"orbit":0,"id":52615}],"group":944,"orbitIndex":0,"isNotable":true,"name":"Echoing Pulse","orbit":7},"1994":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":1994,"stats":["20% increased Warcry Speed"],"ascendancyName":"Warbringer","group":11,"connections":[{"orbit":0,"id":47097}],"orbitIndex":0,"name":"Warcry Speed","orbit":0},"44516":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":2113}],"group":1021,"skill":44516,"orbitIndex":13,"name":"Quarterstaff Speed","orbit":2},"11598":{"stats":["3% increased Attack Speed with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":4536},{"orbit":0,"id":44516},{"orbit":0,"id":14267}],"group":1021,"skill":11598,"orbitIndex":0,"name":"Quarterstaff Speed","orbit":0},"34316":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":34316,"stats":["30% increased Defences while wielding a Staff","30% increased Daze Buildup with Quarterstaves","30% increased Freeze Buildup with Quarterstaves","30% increased Stun Buildup with Quarterstaves"],"recipe":["Guilt","Paranoia","Isolation"],"connections":[],"group":1021,"orbitIndex":3,"isNotable":true,"name":"One with the River","orbit":6},"48979":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":51820}],"group":151,"skill":48979,"orbitIndex":12,"name":"Totem Life","orbit":3},"52399":{"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":9444}],"group":1021,"skill":52399,"orbitIndex":38,"name":"Quarterstaff Critical Damage","orbit":5},"9444":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":9444,"stats":["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"],"recipe":["Isolation","Suffering","Disgust"],"connections":[],"group":1021,"orbitIndex":39,"isNotable":true,"name":"One with the Storm","orbit":6},"35977":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":187,"skill":35977,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"38878":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":34898}],"group":837,"skill":38878,"orbitIndex":35,"name":"Debuff Expiry","orbit":4},"4709":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":4709,"stats":["60% increased Accuracy Rating at Close Range"],"recipe":["Ire","Envy","Paranoia"],"connections":[],"group":902,"orbitIndex":19,"isNotable":true,"name":"Near Sighted","orbit":2},"31449":{"stats":["12% increased Critical Hit Chance with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":9444}],"group":1021,"skill":31449,"orbitIndex":40,"name":"Quarterstaff Critical Chance","orbit":5},"37514":{"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":37514,"stats":["8% increased Attack Speed with Quarterstaves","Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"],"recipe":["Envy","Disgust","Greed"],"connections":[{"orbit":0,"id":32442},{"orbit":0,"id":64700}],"group":1021,"orbitIndex":1,"isNotable":true,"name":"Whirling Assault","orbit":3},"41129":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":24338}],"group":411,"skill":41129,"orbitIndex":70,"name":"Damage against Ailments","orbit":4},"59694":{"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":52399}],"group":1020,"skill":59694,"orbitIndex":0,"name":"Quarterstaff Critical Damage","orbit":0},"326":{"stats":["12% increased Critical Hit Chance with Quarterstaves"],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","connections":[{"orbit":0,"id":31449}],"group":1019,"skill":326,"orbitIndex":0,"name":"Quarterstaff Critical Chance","orbit":0},"328":{"stats":["10% increased Accuracy Rating with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":25992},{"orbit":0,"id":60764},{"orbit":0,"id":21112}],"group":1018,"skill":328,"orbitIndex":0,"name":"Bow Accuracy Rating","orbit":0},"11292":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":7,"id":2575},{"orbit":-7,"id":56757}],"group":77,"skill":11292,"orbitIndex":0,"name":"Totem Placement Speed","orbit":2},"256":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":-7,"id":13694}],"group":237,"skill":256,"orbitIndex":1,"name":"Link Effect","orbit":2},"27626":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":27626,"stats":["40% increased effect of Arcane Surge on you"],"recipe":["Despair","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":0,"id":15628}],"group":251,"orbitIndex":12,"isNotable":true,"name":"Touch the Arcane","orbit":5},"28044":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":28044,"stats":["50% increased Cold Damage while affected by Herald of Ice","50% increased Fire Damage while affected by Herald of Ash","50% increased Lightning Damage while affected by Herald of Thunder"],"recipe":["Disgust","Isolation","Suffering"],"connections":[{"orbit":0,"id":178},{"orbit":0,"id":28835}],"group":1017,"orbitIndex":12,"isNotable":true,"name":"Coming Calamity","orbit":3},"39607":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":-2,"id":2559},{"orbit":0,"id":45713}],"group":916,"skill":39607,"orbitIndex":16,"name":"Flask Charges Gained","orbit":2},"23227":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":23227,"stats":["30% increased Melee Damage when on Full Life","16% increased Attack Speed if you haven't Attacked Recently"],"recipe":["Greed","Ire","Envy"],"connections":[],"group":377,"orbitIndex":0,"isNotable":true,"name":"Initiative","orbit":4},"46402":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":18923},{"orbit":0,"id":37220},{"orbit":0,"id":50342}],"group":750,"skill":46402,"orbitIndex":13,"name":"Evasion","orbit":7},"8157":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":8157,"orbitIndex":18,"name":"Herald Reservation","orbit":2},"16691":{"stats":["Leech Life 15% faster"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":-5,"id":21716}],"group":281,"skill":16691,"orbitIndex":3,"name":"Life Leech Speed","orbit":7},"56847":{"stats":["12% increased Damage while affected by a Herald"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":56847,"orbitIndex":0,"name":"Herald Damage","orbit":7},"51820":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51820,"stats":["12% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Despair","Suffering","Suffering"],"connections":[{"orbit":0,"id":21127}],"group":151,"orbitIndex":36,"isNotable":true,"name":"Ancestral Conduits","orbit":6},"22152":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":10382},{"orbit":0,"id":15304}],"group":788,"skill":22152,"orbitIndex":12,"name":"Cast Speed","orbit":2},"60480":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":60480,"orbitIndex":6,"name":"Herald Reservation","orbit":2},"28835":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":28835,"stats":["12% increased Damage while affected by a Herald"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1017,"connections":[{"orbit":0,"id":56847},{"orbit":0,"id":60480},{"orbit":0,"id":8157}],"orbitIndex":0,"name":"Herald Damage","orbit":0},"5407":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":56910}],"group":488,"skill":5407,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"13783":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","connections":[{"orbit":0,"id":28992}],"group":690,"skill":13783,"orbitIndex":19,"name":"Ailment Chance","orbit":7},"62001":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":62001,"stats":["25% increased Critical Damage Bonus with Daggers"],"recipe":["Envy","Ire","Isolation"],"connections":[],"group":1016,"orbitIndex":1,"isNotable":true,"name":"Backstabbing","orbit":2},"60013":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":57776}],"group":193,"skill":60013,"orbitIndex":8,"name":"Energy Shield","orbit":3},"62986":{"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":4,"id":60173}],"group":826,"skill":62986,"orbitIndex":17,"name":"One Handed Accuracy","orbit":7},"1352":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":1352,"stats":["3% increased maximum Life","30% increased Stun Threshold"],"recipe":["Fear","Despair","Paranoia"],"connections":[{"orbit":0,"id":53216}],"group":136,"orbitIndex":10,"isNotable":true,"name":"Unbending","orbit":7},"46604":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":7,"id":2138}],"group":393,"skill":46604,"orbitIndex":17,"name":"Chaos Damage","orbit":7},"4423":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":4423,"stats":["Critical Hits with Daggers have a 25% chance to Poison the Enemy"],"recipe":["Ire","Despair","Suffering"],"connections":[{"orbit":0,"id":54058}],"group":1016,"orbitIndex":7,"isNotable":true,"name":"Coated Knife","orbit":2},"35755":{"stats":["10% increased Critical Damage Bonus with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":54058}],"group":1016,"skill":35755,"orbitIndex":16,"name":"Dagger Critical Damage","orbit":2},"17882":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":17882,"stats":["25% reduced Grenade fuse duration"],"recipe":["Paranoia","Ire","Despair"],"connections":[{"orbit":0,"id":33596}],"group":605,"orbitIndex":2,"isNotable":true,"name":"Volatile Grenades","orbit":7},"41657":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[],"group":273,"skill":41657,"orbitIndex":10,"name":"Armour","orbit":3},"54058":{"stats":["10% increased Critical Damage Bonus with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":62001}],"group":1016,"skill":54058,"orbitIndex":0,"name":"Dagger Critical Damage","orbit":0},"19573":{"stats":["10% chance for Projectiles to Pierce Enemies within 3m distance of you"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-5,"id":38479},{"orbit":-3,"id":19342}],"group":613,"skill":19573,"orbitIndex":11,"name":"Projectile Pierce","orbit":7},"56366":{"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":56366,"stats":["5% increased Attack Speed with Daggers","15% increased Critical Hit Chance with Daggers"],"recipe":["Suffering","Greed","Despair"],"connections":[{"orbit":0,"id":35755}],"group":1016,"orbitIndex":16,"isNotable":true,"name":"Silent Shiv","orbit":3},"51583":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1014,"skill":51583,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"43829":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":43829,"stats":["25% increased chance to inflict Ailments with Projectiles"],"recipe":["Guilt","Fear","Greed"],"connections":[{"orbit":0,"id":51944},{"orbit":0,"id":45576}],"group":547,"orbitIndex":0,"isNotable":true,"name":"Advanced Munitions","orbit":0},"54983":{"stats":["15% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":39369}],"group":1014,"skill":54983,"orbitIndex":8,"name":"Attack Critical Chance","orbit":7},"51169":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":51169,"stats":["15% increased Energy Shield Recovery rate"],"recipe":["Despair","Ire","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":519,"orbitIndex":21,"isNotable":true,"name":"Soul Bloom","orbit":7},"48714":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":47354}],"group":234,"skill":48714,"orbitIndex":7,"name":"Melee Attack Speed","orbit":2},"39204":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds","skill":39204,"stats":["1% increased Effect of Arcane Surge on you per 15 maximum Mana"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":48,"isNotable":true,"name":"Force of Will","orbit":8},"23040":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":4,"id":38493}],"group":1014,"skill":23040,"orbitIndex":20,"name":"Critical Damage","orbit":7},"13407":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":13407,"stats":["35% increased Critical Damage Bonus","+10 to Strength"],"recipe":["Isolation","Paranoia","Fear"],"connections":[{"orbit":-3,"id":23040},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":15,"isNotable":true,"name":"Heartbreaking","orbit":2},"2491":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":2491,"stats":[],"group":217,"connections":[{"orbit":0,"id":28175}],"orbitIndex":10,"name":"Jewel Socket","orbit":1},"19680":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":50558}],"group":342,"skill":19680,"orbitIndex":54,"name":"Critical Chance","orbit":4},"52348":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":52348,"stats":["20% increased Totem Damage","6% increased Attack and Cast Speed if you've summoned a Totem Recently"],"recipe":["Suffering","Suffering","Ire"],"connections":[{"orbit":-5,"id":51206},{"orbit":0,"id":34487}],"group":314,"orbitIndex":15,"isNotable":true,"name":"Carved Earth","orbit":7},"2138":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":2138,"stats":["29% increased Chaos Damage","10% increased Global Defences"],"recipe":["Greed","Isolation","Envy"],"connections":[],"group":393,"orbitIndex":12,"isNotable":true,"name":"Spiral into Insanity","orbit":2},"33914":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":21935}],"group":193,"skill":33914,"orbitIndex":2,"name":"Energy Shield and Mana Regeneration","orbit":3},"37746":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":6544}],"group":243,"skill":37746,"orbitIndex":19,"name":"Ignite Chance","orbit":7},"10245":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":234,"skill":10245,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"18146":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":18146,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"ascendancyName":"Gemling Legionnaire","group":288,"connections":[{"orbit":2147483647,"id":30996}],"orbitIndex":0,"name":"Reduced Attribute Requirements","orbit":0},"1579":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":1579,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Chronomancer","group":230,"connections":[{"orbit":-9,"id":10987}],"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"4925":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":7,"id":19779}],"group":1013,"skill":4925,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"40399":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":40399,"stats":["25% chance for Trigger skills to refund half of Energy Spent"],"recipe":["Isolation","Guilt","Paranoia"],"connections":[{"orbit":0,"id":20641}],"group":855,"orbitIndex":6,"isNotable":true,"name":"Energise","orbit":5},"32600":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":6304},{"orbit":-7,"id":20303}],"group":211,"skill":32600,"orbitIndex":12,"name":"Life Regeneration","orbit":2},"29517":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29517,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":32701},{"orbit":0,"id":37695}],"orbitIndex":24,"name":"Attribute","orbit":6},"43036":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":2244}],"group":251,"skill":43036,"orbitIndex":4,"name":"Mana Regeneration","orbit":7},"19779":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":2,"id":63891}],"group":1013,"skill":19779,"orbitIndex":2,"name":"Chaos Damage","orbit":2},"38993":{"stats":["16% increased Critical Damage Bonus with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":21112}],"group":1012,"skill":38993,"orbitIndex":0,"name":"Bow Critical Damage","orbit":0},"20429":{"stats":["3% increased Attack Speed with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":28797}],"group":1011,"skill":20429,"orbitIndex":62,"name":"Dagger Speed","orbit":6},"3419":{"stats":["10% increased Damage with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":20429},{"orbit":2,"id":30973}],"group":1011,"skill":3419,"orbitIndex":59,"name":"Dagger Damage","orbit":6},"44419":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":7,"id":7251},{"orbit":-7,"id":29788}],"group":336,"skill":44419,"orbitIndex":6,"name":"Life Leech","orbit":7},"52215":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":56366}],"group":1010,"skill":52215,"orbitIndex":0,"name":"Dagger Critical Chance","orbit":0},"63600":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":36364}],"group":976,"skill":63600,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"44357":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":44357,"stats":["12% increased Critical Hit Chance"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":-9,"id":63713}],"orbitIndex":34,"name":"Critical Chance","orbit":9},"25586":{"stats":["16% increased Critical Damage Bonus with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":38993}],"group":1006,"skill":25586,"orbitIndex":35,"name":"Bow Critical Damage","orbit":6},"34300":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":34300,"stats":["20% increased Mana Regeneration Rate","8% reduced Mana Cost of Skills"],"recipe":["Disgust","Disgust","Ire"],"connections":[{"orbit":0,"id":45481},{"orbit":0,"id":13862}],"group":761,"orbitIndex":22,"isNotable":true,"name":"Conservative Casting","orbit":2},"21112":{"stats":["10% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":31055}],"group":1006,"skill":21112,"orbitIndex":57,"name":"Bow Damage","orbit":4},"21788":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":8573},{"orbit":0,"id":34612}],"group":1006,"skill":21788,"orbitIndex":21,"name":"Bow Damage","orbit":5},"57774":{"stats":["3% increased Attack Speed while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":49657}],"group":551,"skill":57774,"orbitIndex":21,"name":"Dual Wielding Speed","orbit":3},"31991":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":36070}],"group":751,"skill":31991,"orbitIndex":15,"name":"Attack Area","orbit":7},"44141":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":18969},{"orbit":0,"id":21788}],"group":1006,"skill":44141,"orbitIndex":7,"name":"Bow Speed","orbit":3},"38814":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38814,"stats":["+5 to any Attribute"],"isAttribute":true,"group":654,"connections":[{"orbit":0,"id":19288},{"orbit":0,"id":62341},{"orbit":0,"id":11980}],"orbitIndex":0,"name":"Attribute","orbit":0},"11526":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":11526,"stats":["Arrows gain Critical Hit Chance as they travel farther, up to","60% increased Critical Hit Chance after 7 metres"],"recipe":["Isolation","Suffering","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":38993}],"group":1006,"orbitIndex":30,"isNotable":true,"name":"Sniper","orbit":5},"9485":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":9485,"stats":["+5 to any Attribute"],"isAttribute":true,"group":554,"connections":[{"orbit":0,"id":60685}],"orbitIndex":0,"name":"Attribute","orbit":0},"44683":{"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","classesStart":["Shadow","Monk"],"skill":44683,"stats":[],"group":577,"connections":[{"orbit":0,"id":5162},{"orbit":0,"id":45406},{"orbit":0,"id":50198},{"orbit":0,"id":11495},{"orbit":0,"id":9994},{"orbit":0,"id":74},{"orbit":0,"id":52980}],"orbitIndex":0,"name":"SIX","orbit":0},"60764":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":60764,"stats":["Increases and Reductions to Projectile Speed also apply to Damage with Bows"],"recipe":["Isolation","Suffering","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1006,"orbitIndex":12,"isNotable":true,"name":"Feathered Fletching","orbit":5},"17029":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":17029,"stats":["Defend with 200% of Armour against Critical Hits","+15 to Strength"],"recipe":["Fear","Envy","Guilt"],"connections":[{"orbit":0,"id":45992}],"group":273,"orbitIndex":12,"isNotable":true,"name":"Blade Catcher","orbit":2},"46017":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":54962}],"group":79,"skill":46017,"orbitIndex":8,"name":"Life Regeneration while Stationary","orbit":7},"24958":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24958,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":-4,"id":52464},{"orbit":6,"id":41877}],"orbitIndex":30,"name":"Attribute","orbit":6},"28823":{"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":21111},{"orbit":5,"id":59303}],"group":881,"skill":28823,"orbitIndex":23,"name":"Charm Activation Chance","orbit":7},"38628":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":38628,"stats":["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"],"recipe":["Despair","Isolation","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1003,"orbitIndex":19,"isNotable":true,"name":"Escalating Toxins","orbit":2},"19003":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":12166},{"orbit":0,"id":3128}],"group":862,"skill":19003,"orbitIndex":0,"name":"Cold Damage","orbit":0},"61796":{"stats":["20% increased Armour Break Duration"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":-4,"id":8260}],"group":127,"skill":61796,"orbitIndex":20,"name":"Armour Break Duration","orbit":7},"1723":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":53595},{"orbit":0,"id":9703}],"group":1003,"skill":1723,"orbitIndex":22,"name":"Poison Duration","orbit":3},"59822":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":59822,"stats":[],"ascendancyName":"Blood Mage","isAscendancyStart":true,"group":647,"connections":[{"orbit":0,"id":7656}],"orbitIndex":0,"name":"Blood Mage","orbit":9},"58426":{"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":58426,"stats":["50% increased Blind Effect"],"recipe":["Paranoia","Guilt","Paranoia"],"connections":[{"orbit":0,"id":34401}],"group":961,"orbitIndex":20,"isNotable":true,"name":"Pocket Sand","orbit":2},"46343":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"orbit":0,"id":13708},{"orbit":0,"id":25513},{"orbit":0,"id":47363}],"group":467,"skill":46343,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"43677":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":43677,"stats":["25% chance for Attacks to Maim on Hit against Poisoned Enemies","25% increased Magnitude of Poison you inflict"],"recipe":["Envy","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":769,"orbitIndex":0,"isNotable":true,"name":"Crippling Toxins","orbit":0},"53595":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":7,"id":29458},{"orbit":0,"id":38628}],"group":1003,"skill":53595,"orbitIndex":19,"name":"Poison Damage","orbit":3},"61267":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds","skill":61267,"stats":["Maximum 10 Demonflame"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":60,"isNotable":true,"name":"Mastered Darkness","orbit":6},"58038":{"stats":["25% increased Attack Damage while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":31566}],"group":480,"skill":58038,"orbitIndex":3,"name":"Attack Damage while Surrounded","orbit":3},"15986":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":15986,"stats":["25% reduced Poison Duration","Targets can be affected by +1 of your Poisons at the same time"],"recipe":["Greed","Isolation","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":0,"id":6030}],"group":1003,"orbitIndex":5,"isNotable":true,"name":"Building Toxins","orbit":2},"21885":{"stats":["10% increased Stun Threshold","+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":1352}],"group":136,"skill":21885,"orbitIndex":14,"name":"Stun Threshold and Strength","orbit":7},"51702":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[],"group":215,"skill":51702,"orbitIndex":16,"name":"Strength","orbit":7},"61333":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":46197}],"group":903,"skill":61333,"orbitIndex":11,"name":"Critical Chance","orbit":2},"60210":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":0,"id":63431}],"group":958,"skill":60210,"orbitIndex":9,"name":"Poison Mastery","orbit":1},"14226":{"icon":"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds","skill":14226,"isKeystone":true,"stats":["25% more Skill Speed while Off Hand is empty and you have","a One-Handed Martial Weapon equipped in your Main Hand"],"group":968,"connections":[],"orbitIndex":0,"name":"Dance with Death","orbit":0},"56265":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":56265,"stats":["60% increased Critical Damage Bonus","20% reduced Critical Hit Chance"],"recipe":["Greed","Envy","Isolation"],"connections":[{"orbit":0,"id":42802}],"group":1002,"orbitIndex":1,"isNotable":true,"name":"Throatseeker","orbit":2},"45612":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":45612,"stats":["12% increased Block chance","2 Mana gained when you Block"],"recipe":["Greed","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"orbit":0,"id":53901}],"group":261,"orbitIndex":12,"isNotable":true,"name":"Defensive Reflexes","orbit":2},"16816":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":16816,"stats":["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"],"recipe":["Isolation","Envy","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":747,"orbitIndex":0,"isNotable":true,"name":"Pinpoint Shot","orbit":0},"35901":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35901,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":-6,"id":12120},{"orbit":6,"id":62464},{"orbit":0,"id":34015},{"orbit":0,"id":6951}],"orbitIndex":60,"name":"Attribute","orbit":6},"25535":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":980,"skill":25535,"orbitIndex":8,"name":"Shield Mastery","orbit":3},"21537":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":21537,"stats":["+2 to Maximum Frenzy Charges"],"recipe":["Fear","Guilt","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1000,"orbitIndex":16,"isNotable":true,"name":"Fervour","orbit":2},"57970":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":55995},{"orbit":0,"id":21537}],"group":1000,"skill":57970,"orbitIndex":10,"name":"Frenzy Charge Duration","orbit":2},"55463":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":27875}],"group":839,"skill":55463,"orbitIndex":14,"name":"Shock Chance","orbit":3},"7628":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7628,"stats":["+5 to any Attribute"],"isAttribute":true,"group":427,"connections":[{"orbit":0,"id":41646},{"orbit":0,"id":55231}],"orbitIndex":30,"name":"Attribute","orbit":6},"41873":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[],"group":1000,"skill":41873,"orbitIndex":22,"name":"Frenzy Charge Duration","orbit":2},"28862":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":281,"skill":28862,"orbitIndex":0,"name":"Leech Mastery","orbit":0},"8531":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":8531,"stats":["100% increased Critical Hit Chance against Enemies on Full Life"],"recipe":["Despair","Guilt","Guilt"],"connections":[{"orbit":0,"id":51534}],"group":332,"orbitIndex":0,"isNotable":true,"name":"Leaping Ambush","orbit":0},"4031":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":4031,"stats":["Gain 100% of Maximum Energy Shield as additional Freeze Threshold"],"recipe":["Ire","Paranoia","Fear"],"connections":[{"orbit":0,"id":50403}],"group":947,"orbitIndex":15,"isNotable":true,"name":"Icebreaker","orbit":3},"47722":{"stats":["16% increased Damage with Warcries"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":6514}],"group":90,"skill":47722,"orbitIndex":4,"name":"Warcry Damage","orbit":3},"27658":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":21540}],"group":546,"skill":27658,"orbitIndex":6,"name":"Life Recoup","orbit":7},"20830":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":20830,"stats":["10% increased Area of Effect"],"ascendancyName":"Witchhunter","group":179,"connections":[{"orbit":6,"id":37078}],"orbitIndex":0,"name":"Area of Effect","orbit":0},"19236":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":19236,"stats":["30% increased Armour","Defend with 120% of Armour against Projectile Attacks"],"recipe":["Ire","Fear","Despair"],"connections":[],"group":66,"orbitIndex":0,"isNotable":true,"name":"Projectile Bulwark","orbit":0},"54998":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":54998,"stats":["20% increased Skill Effect Duration","15% increased Duration of Damaging Ailments on Enemies"],"recipe":["Despair","Disgust","Guilt"],"connections":[{"orbit":0,"id":29993}],"group":158,"orbitIndex":5,"isNotable":true,"name":"Protraction","orbit":2},"35048":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":43650}],"group":113,"skill":35048,"orbitIndex":12,"name":"Attack Critical Chance","orbit":2},"30808":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30808,"stats":["+5 to any Attribute"],"isAttribute":true,"group":997,"connections":[{"orbit":0,"id":14267},{"orbit":-4,"id":28101},{"orbit":0,"id":29959}],"orbitIndex":0,"name":"Attribute","orbit":0},"27270":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[],"group":553,"skill":27270,"orbitIndex":22,"name":"Attack Damage and Accuracy","orbit":7},"2582":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2582,"stats":["+5 to any Attribute"],"isAttribute":true,"group":996,"connections":[{"orbit":0,"id":48116},{"orbit":0,"id":41873}],"orbitIndex":0,"name":"Attribute","orbit":0},"15775":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15775,"stats":["+5 to any Attribute"],"isAttribute":true,"group":995,"connections":[{"orbit":0,"id":30808},{"orbit":0,"id":28976}],"orbitIndex":0,"name":"Attribute","orbit":0},"62588":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":50609}],"group":482,"skill":62588,"orbitIndex":0,"name":"Life Mastery","orbit":0},"27303":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":27303,"stats":["10% reduced maximum Mana","+10 to Strength","35% increased Critical Hit Chance"],"recipe":["Ire","Guilt","Despair"],"connections":[{"orbit":0,"id":43142}],"group":184,"orbitIndex":16,"isNotable":true,"name":"Vulgar Methods","orbit":7},"30973":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":49320}],"group":994,"skill":30973,"orbitIndex":34,"name":"Dagger Critical Chance","orbit":6},"59425":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":23939}],"group":381,"skill":59425,"orbitIndex":16,"name":"Life Recoup","orbit":7},"1773":{"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":4,"id":51213}],"group":781,"skill":1773,"orbitIndex":0,"name":"Ailment Effect and Duration","orbit":0},"49320":{"stats":["10% increased Critical Hit Chance with Daggers"],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","connections":[{"orbit":0,"id":52215}],"group":994,"skill":49320,"orbitIndex":31,"name":"Dagger Critical Chance","orbit":6},"7888":{"stats":["14% increased Damage with Unarmed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":3,"id":3640},{"orbit":2,"id":32664}],"group":993,"skill":7888,"orbitIndex":13,"name":"Unarmed Damage","orbit":3},"28963":{"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","skill":28963,"stats":["25% increased Evasion if you have Hit an Enemy Recently","50% increased maximum Dash Distance with Unarmed Attack Skills"],"recipe":["Guilt","Greed","Despair"],"connections":[{"orbit":4,"id":17724}],"group":993,"orbitIndex":66,"isNotable":true,"name":"Way of the Wind","orbit":4},"62464":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":7,"id":17854}],"group":850,"skill":62464,"orbitIndex":22,"name":"Evasion","orbit":3},"56876":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":46380}],"group":774,"skill":56876,"orbitIndex":6,"name":"Energy Shield if Consumed Power Charge","orbit":2},"25557":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":25557,"stats":["+5 to any Attribute"],"isAttribute":true,"group":712,"connections":[{"orbit":0,"id":29763},{"orbit":0,"id":4059}],"orbitIndex":16,"name":"Attribute","orbit":6},"19112":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":36358}],"group":448,"skill":19112,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"57571":{"stats":["30% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","connections":[{"orbit":-3,"id":37905}],"group":990,"skill":57571,"orbitIndex":6,"name":"Fire Penetration","orbit":2},"37905":{"stats":["30% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","connections":[],"group":990,"skill":37905,"orbitIndex":2,"name":"Fire Penetration","orbit":3},"43867":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":2,"id":10423}],"group":990,"skill":43867,"orbitIndex":23,"name":"Fire Penetration","orbit":7},"64637":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":32543}],"group":989,"skill":64637,"orbitIndex":15,"name":"Slow Effect on You","orbit":3},"60899":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":32543}],"group":989,"skill":60899,"orbitIndex":23,"name":"Slow Effect on You","orbit":3},"16626":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":16626,"stats":["15% increased Area of Effect if you have Stunned an Enemy Recently","15% increased Area of Effect for Attacks"],"recipe":["Paranoia","Envy","Disgust"],"connections":[{"orbit":0,"id":53089},{"orbit":0,"id":62023}],"group":159,"orbitIndex":20,"isNotable":true,"name":"Impact Area","orbit":2},"32543":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":32543,"stats":["3% increased Movement Speed","20% reduced Slowing Potency of Debuffs on You"],"connections":[],"group":989,"orbitIndex":0,"isNotable":true,"name":"Unhindered","orbit":0},"46016":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":46016,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":7,"id":24039}],"orbitIndex":54,"name":"Life","orbit":6},"31292":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":315,"skill":31292,"orbitIndex":0,"name":"Mace Mastery","orbit":0},"36894":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":61938}],"group":149,"skill":36894,"orbitIndex":20,"name":"Bleed Chance","orbit":3},"32278":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":297,"skill":32278,"orbitIndex":11,"name":"Minion Offence Mastery","orbit":7},"54204":{"stats":["20% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":-2,"id":38342}],"group":988,"skill":54204,"orbitIndex":18,"name":"Daze Buildup","orbit":2},"49512":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49512,"stats":["+5 to any Attribute"],"isAttribute":true,"group":465,"connections":[{"orbit":0,"id":59362},{"orbit":0,"id":15885},{"orbit":0,"id":5936}],"orbitIndex":0,"name":"Attribute","orbit":0},"38342":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":38342,"stats":["25% increased Critical Hit Chance against Dazed Enemies","25% increased Damage against Dazed Enemies","25% increased Daze Buildup"],"recipe":["Paranoia","Despair","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":988,"orbitIndex":0,"isNotable":true,"name":"Stupefy","orbit":1},"24321":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24321,"stats":["+5 to any Attribute"],"isAttribute":true,"group":738,"connections":[{"orbit":0,"id":25557},{"orbit":0,"id":26804}],"orbitIndex":0,"name":"Attribute","orbit":0},"19341":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":590,"skill":19341,"orbitIndex":16,"name":"Damage against Enemies on Low Life","orbit":3},"22975":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":22975,"stats":["+5 to any Attribute"],"isAttribute":true,"group":170,"connections":[{"orbit":0,"id":27439},{"orbit":0,"id":53719},{"orbit":0,"id":51702}],"orbitIndex":0,"name":"Attribute","orbit":0},"18750":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":771,"skill":18750,"orbitIndex":12,"name":"Flask Mastery","orbit":2},"27501":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":435,"skill":27501,"orbitIndex":44,"name":"Life Regeneration","orbit":4},"37220":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":17955}],"group":750,"skill":37220,"orbitIndex":9,"name":"Evasion","orbit":2},"39935":{"icon":"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds","skill":39935,"isKeystone":true,"stats":["All bonuses from an Equipped Amulet apply to your Minions instead of you"],"group":348,"connections":[{"orbit":0,"id":44344}],"orbitIndex":0,"name":"Necromantic Talisman","orbit":0},"22909":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":21415}],"group":193,"skill":22909,"orbitIndex":14,"name":"Stun Threshold from Energy Shield","orbit":3},"49976":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":7,"id":62936},{"orbit":-3,"id":47976}],"group":891,"skill":49976,"orbitIndex":5,"name":"Damage from Mana","orbit":7},"9405":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":59720}],"group":982,"skill":9405,"orbitIndex":12,"name":"Evasion","orbit":7},"14539":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":44776}],"group":982,"skill":14539,"orbitIndex":4,"name":"Evasion","orbit":7},"3209":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-6,"id":59720},{"orbit":4,"id":65091}],"group":982,"skill":3209,"orbitIndex":16,"name":"Evasion","orbit":7},"44776":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":48773},{"orbit":5,"id":1841}],"group":982,"skill":44776,"orbitIndex":18,"name":"Evasion","orbit":5},"38728":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":14539}],"group":982,"skill":38728,"orbitIndex":0,"name":"Evasion","orbit":7},"5802":{"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","skill":5802,"stats":["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m","Projectiles deal 25% increased Damage with Hits against Enemies within 2m"],"recipe":["Disgust","Greed","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":900,"orbitIndex":0,"isNotable":true,"name":"Stand and Deliver","orbit":0},"65091":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":51707}],"group":982,"skill":65091,"orbitIndex":20,"name":"Evasion","orbit":7},"61142":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":38365}],"group":99,"skill":61142,"orbitIndex":14,"name":"Recover Life on consuming Endurance Charge","orbit":2},"43893":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":55101},{"orbit":0,"id":1433}],"group":197,"skill":43893,"orbitIndex":10,"name":"Elemental Damage","orbit":3},"38668":{"stats":["3% increased Unarmed Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":-3,"id":28963},{"orbit":2,"id":32664}],"group":981,"skill":38668,"orbitIndex":0,"name":"Unarmed Attack Speed","orbit":0},"37484":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.dds","skill":37484,"isKeystone":true,"stats":["Can Evade all Hits","70% less Evasion Rating"],"group":1001,"connections":[],"orbitIndex":0,"name":"Acrobatics","orbit":0},"7062":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":7062,"stats":["15% chance for Crossbow Attacks to not consume a bolt"],"recipe":["Paranoia","Isolation","Despair"],"connections":[{"orbit":0,"id":16680},{"orbit":0,"id":61432}],"group":612,"orbitIndex":19,"isNotable":true,"name":"Reusable Ammunition","orbit":4},"61935":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":4624}],"group":330,"skill":61935,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"35043":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[],"group":980,"skill":35043,"orbitIndex":36,"name":"Shield Evasion","orbit":4},"6842":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":18472}],"group":878,"skill":6842,"orbitIndex":9,"name":"Stun and Freeze Buildup","orbit":3},"10742":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":41991}],"group":278,"skill":10742,"orbitIndex":4,"name":"Minion Attack and Cast Speed","orbit":3},"50562":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":50562,"stats":["45% increased Critical Damage Bonus","10% increased Mana Cost of Skills","+10 to Strength"],"recipe":["Guilt","Despair","Envy"],"connections":[{"orbit":0,"id":43142}],"group":184,"orbitIndex":8,"isNotable":true,"name":"Barbaric Strength","orbit":7},"28153":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds","skill":28153,"stats":["Recoup Effects instead occur over 4 seconds"],"ascendancyName":"Chronomancer","connections":[],"group":199,"orbitIndex":6,"isNotable":true,"name":"The Rapid River","orbit":2},"37616":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":974,"skill":37616,"orbitIndex":45,"name":"Trap Mastery","orbit":5},"4238":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":4238,"stats":["6% increased Attack Speed with One Handed Melee Weapons","15% increased Accuracy Rating with One Handed Melee Weapons","+10 to Strength and Dexterity"],"recipe":["Ire","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":826,"orbitIndex":0,"isNotable":true,"name":"Versatile Arms","orbit":0},"33978":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":33978,"stats":["10% increased Block chance","15% reduced Slowing Potency of Debuffs on You"],"recipe":["Fear","Paranoia","Ire"],"connections":[{"orbit":7,"id":31609},{"orbit":0,"id":62581}],"group":265,"orbitIndex":21,"isNotable":true,"name":"Unstoppable Barrier","orbit":7},"39594":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":51248},{"orbit":0,"id":53294}],"group":327,"skill":39594,"orbitIndex":3,"name":"Fire Penetration","orbit":2},"13233":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":13233,"stats":["10% increased Area of Effect","10% increased Area Damage"],"recipe":["Paranoia","Greed","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":62978}],"group":350,"orbitIndex":0,"isNotable":true,"name":"Radial Force","orbit":0},"6744":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6744,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":49357}],"orbitIndex":6,"name":"Attribute","orbit":6},"20414":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":20414,"stats":["Attack Skills deal 25% increased Damage while holding a Shield","75% increased Evasion from Equipped Shield"],"recipe":["Ire","Despair","Despair"],"connections":[{"orbit":0,"id":25535},{"orbit":0,"id":35043},{"orbit":0,"id":52410}],"group":980,"orbitIndex":31,"isNotable":true,"name":"Reprisal","orbit":4},"22219":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":52351}],"group":953,"skill":22219,"orbitIndex":16,"name":"Triggered Spell Damage","orbit":7},"32745":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":50104},{"orbit":0,"id":61179}],"group":290,"skill":32745,"orbitIndex":0,"name":"Physical Damage","orbit":0},"31366":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":3843}],"group":927,"skill":31366,"orbitIndex":15,"name":"Block","orbit":3},"29582":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":35987}],"group":658,"skill":29582,"orbitIndex":14,"name":"Accuracy","orbit":2},"13419":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":14958}],"group":720,"skill":13419,"orbitIndex":14,"name":"Critical Damage","orbit":7},"6294":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":4,"id":52429}],"group":393,"skill":6294,"orbitIndex":54,"name":"Cast Speed","orbit":4},"63830":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":63830,"stats":["Enemies you Mark take 10% increased Damage"],"recipe":["Guilt","Disgust","Isolation"],"connections":[{"orbit":-5,"id":13624},{"orbit":5,"id":45390}],"group":914,"orbitIndex":3,"isNotable":true,"name":"Marked for Sickness","orbit":3},"7023":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":978,"skill":7023,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"52537":{"stats":["10% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":978,"skill":52537,"orbitIndex":12,"name":"Cold Penetration","orbit":2},"55835":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":55835,"stats":["Damage Penetrates 15% Cold Resistance","Cold Exposure you inflict lowers Total Cold Resistance by an extra 5%"],"recipe":["Isolation","Fear","Paranoia"],"connections":[{"orbit":2147483647,"id":52537},{"orbit":-9,"id":20909},{"orbit":0,"id":7023}],"group":978,"orbitIndex":18,"isNotable":true,"name":"Exposed to the Cosmos","orbit":2},"1130":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":29611}],"group":50,"skill":1130,"orbitIndex":0,"name":"Flail Damage","orbit":0},"35911":{"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":15180}],"group":262,"skill":35911,"orbitIndex":12,"name":"Unleash Seal Generation","orbit":2},"46205":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":7,"id":2174},{"orbit":-7,"id":33209},{"orbit":-7,"id":51683}],"group":209,"skill":46205,"orbitIndex":0,"name":"Totem Damage","orbit":3},"48856":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":17882}],"group":605,"skill":48856,"orbitIndex":6,"name":"Grenade Damage","orbit":7},"3336":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":30615}],"group":977,"skill":3336,"orbitIndex":19,"name":"Critical Damage when consuming a Power Charge","orbit":2},"44359":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":584,"skill":44359,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"53405":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53405,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":17468},{"orbit":6,"id":16090},{"orbit":4,"id":26798}],"orbitIndex":42,"name":"Attribute","orbit":6},"24430":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":3601},{"orbit":0,"id":38707}],"group":138,"skill":24430,"orbitIndex":66,"name":"Elemental Damage","orbit":4},"10162":{"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":977,"skill":10162,"orbitIndex":0,"name":"Power Charge Mastery","orbit":0},"13171":{"stats":["Totems have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":5,"id":24438}],"group":258,"skill":13171,"orbitIndex":0,"name":"Totem Physical Damage Reduction","orbit":0},"8415":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds","skill":8415,"stats":["Skills gain a Base Life Cost equal to Base Mana Cost","Grants Skill: Life Remnants"],"ascendancyName":"Blood Mage","connections":[{"orbit":0,"id":62388},{"orbit":-5,"id":3165},{"orbit":0,"id":30071},{"orbit":0,"id":59342}],"group":647,"orbitIndex":0,"isNotable":true,"name":"Sanguimancy","orbit":6},"18969":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[],"group":1009,"skill":18969,"orbitIndex":0,"name":"Bow Speed","orbit":0},"45086":{"stats":["Gain 2% of Physical Damage as extra Chaos Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":34520}],"group":661,"skill":45086,"orbitIndex":21,"name":"Physical as Extra Chaos Damage","orbit":2},"18845":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":27384}},"skill":18845,"stats":["10% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-5,"id":55807}],"orbitIndex":11,"name":"Spell Damage","orbit":7},"61067":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[],"group":406,"skill":61067,"orbitIndex":21,"name":"Spell Critical Damage","orbit":2},"60735":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":60735,"stats":[],"group":975,"connections":[{"orbit":0,"id":22927}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"14505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":282,"skill":14505,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"3492":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":3492,"stats":["29% increased Chaos Damage","Enemies you Curse have -3% to Chaos Resistance"],"recipe":["Isolation","Ire","Disgust"],"connections":[{"orbit":0,"id":60313},{"orbit":0,"id":19112}],"group":448,"orbitIndex":12,"isNotable":true,"name":"Void","orbit":3},"34449":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":37688}],"group":974,"skill":34449,"orbitIndex":36,"name":"Trap Critical Chance","orbit":4},"36293":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":27785},{"orbit":0,"id":55708}],"group":581,"skill":36293,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"44490":{"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":37113}],"group":940,"skill":44490,"orbitIndex":0,"name":"Lightning Damage and Electrocute Buildup","orbit":0},"62496":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":34912}],"group":974,"skill":62496,"orbitIndex":48,"name":"Trap Damage","orbit":6},"59886":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":0,"id":23307}],"group":67,"skill":59886,"orbitIndex":23,"name":"Maximum Lightning Resistance","orbit":5},"27417":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":27417,"stats":["25% increased Trap Damage"],"recipe":["Envy","Ire","Despair"],"connections":[{"orbit":0,"id":64295},{"orbit":0,"id":37616}],"group":974,"orbitIndex":54,"isNotable":true,"name":"Destructive Apparatus","orbit":6},"10362":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":10830},{"orbit":0,"id":9163}],"group":76,"skill":10362,"orbitIndex":0,"name":"Armour","orbit":0},"11037":{"icon":"Art/2DArt/SkillIcons/ExplosiveGrenade.dds","skill":11037,"stats":["10% increased Area of Effect","10% increased Cooldown Recovery Rate"],"recipe":["Greed","Guilt","Ire"],"connections":[{"orbit":0,"id":57039}],"group":491,"orbitIndex":6,"isNotable":true,"name":"Volatile Catalyst","orbit":3},"37688":{"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":37688,"stats":["25% increased Trap Damage"],"recipe":["Disgust","Envy","Greed"],"connections":[{"orbit":0,"id":37616}],"group":974,"orbitIndex":36,"isNotable":true,"name":"Devestating Devices","orbit":6},"64295":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[],"group":974,"skill":64295,"orbitIndex":54,"name":"Trap Critical Chance","orbit":4},"31630":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":64474}],"group":749,"skill":31630,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"41497":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":21164}],"group":70,"skill":41497,"orbitIndex":6,"name":"Minion Life and Chaos Resistance","orbit":7},"8644":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":62496},{"orbit":0,"id":27417}],"group":974,"skill":8644,"orbitIndex":51,"name":"Trap Damage","orbit":6},"55329":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":42036}],"group":980,"skill":55329,"orbitIndex":12,"name":"Block","orbit":4},"30300":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":12565},{"orbit":0,"id":1200}],"group":38,"skill":30300,"orbitIndex":5,"name":"Armour if Hit","orbit":2},"60274":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":13293},{"orbit":0,"id":19236}],"group":66,"skill":60274,"orbitIndex":6,"name":"Armour","orbit":7},"3717":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":19998},{"orbit":0,"id":35653}],"group":570,"skill":3717,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"36027":{"stats":["1% reduced Attack Speed","15% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":2,"id":18073}],"group":134,"skill":36027,"orbitIndex":22,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"25857":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":972,"skill":25857,"orbitIndex":12,"name":"Flask Mastery","orbit":3},"30143":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":34201}],"group":790,"skill":30143,"orbitIndex":0,"name":"Block","orbit":7},"4882":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":38172},{"orbit":0,"id":51921}],"group":314,"skill":4882,"orbitIndex":3,"name":"Totem Damage","orbit":2},"61934":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":48418}],"group":322,"skill":61934,"orbitIndex":6,"name":"Stun Threshold","orbit":2},"10472":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":2147483647,"id":17687},{"orbit":3,"id":27422}],"group":972,"skill":10472,"orbitIndex":32,"name":"Mana Flask Recovery","orbit":4},"21017":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-7,"id":26969},{"orbit":7,"id":55789}],"group":184,"skill":21017,"orbitIndex":0,"name":"Critical Chance","orbit":5},"65265":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":65265,"stats":["12% increased Block chance","10 Mana gained when you Block"],"recipe":["Guilt","Envy","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[{"orbit":0,"id":17146},{"orbit":0,"id":31366}],"group":927,"orbitIndex":0,"isNotable":true,"name":"Smooth Buckler","orbit":0},"36302":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":36302,"stats":["6% increased Cast Speed"],"recipe":["Greed","Guilt","Envy"],"connections":[{"orbit":6,"id":47307}],"group":505,"orbitIndex":0,"isNotable":true,"name":"Practiced Signs","orbit":7},"6030":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":1003,"skill":6030,"orbitIndex":5,"name":"Poison Chance","orbit":3},"29246":{"stats":["30% increased Evasion from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":22927},{"orbit":0,"id":35043}],"group":965,"skill":29246,"orbitIndex":27,"name":"Shield Evasion","orbit":6},"36070":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":14045}],"group":751,"skill":36070,"orbitIndex":45,"name":"Attack Area","orbit":4},"15270":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":964,"skill":15270,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"7378":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":65016}],"group":340,"skill":7378,"orbitIndex":21,"name":"Fire Damage","orbit":3},"16460":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16460,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[{"orbit":0,"id":28992},{"orbit":0,"id":6772}],"orbitIndex":18,"name":"Attribute","orbit":6},"37361":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":2147483647,"id":40043}],"group":457,"skill":37361,"orbitIndex":6,"name":"Bleeding Damage","orbit":1},"50629":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":3218},{"orbit":0,"id":23930},{"orbit":0,"id":24430}],"group":139,"skill":50629,"orbitIndex":0,"name":"Elemental Damage","orbit":0},"64462":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":53150}],"group":964,"skill":64462,"orbitIndex":20,"name":"Mana Leech","orbit":2},"1106":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-2,"id":44628}],"group":797,"skill":1106,"orbitIndex":0,"name":"Attack Speed","orbit":0},"17294":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-5,"id":19330},{"orbit":4,"id":27501}],"group":435,"skill":17294,"orbitIndex":16,"name":"Life Regeneration","orbit":2},"62388":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":62388,"stats":["15% chance to inflict Bleeding on Critical Hit"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":0,"id":26282}],"orbitIndex":6,"name":"Bleed on Critical Chance","orbit":5},"8246":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":37548},{"orbit":0,"id":64462}],"group":964,"skill":8246,"orbitIndex":14,"name":"Attack Damage","orbit":2},"45012":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":8246},{"orbit":0,"id":64462},{"orbit":0,"id":41017}],"group":964,"skill":45012,"orbitIndex":15,"name":"Attack Damage","orbit":3},"63431":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":63431,"stats":["30% increased Magnitude of Poison you inflict","Recover 2% of Life on Killing a Poisoned Enemy"],"recipe":["Greed","Suffering","Suffering"],"connections":[],"group":958,"orbitIndex":3,"isNotable":true,"name":"Leeching Toxins","orbit":1},"53150":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":53150,"stats":["5% increased Attack Speed","30% increased Accuracy Rating against Rare or Unique Enemies"],"recipe":["Guilt","Disgust","Ire"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":17589}],"group":964,"orbitIndex":21,"isNotable":true,"name":"Sharp Sight","orbit":3},"2334":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[{"orbit":6,"id":65091},{"orbit":-6,"id":3209}],"group":962,"skill":2334,"orbitIndex":0,"name":"Dexterity","orbit":0},"34401":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":961,"skill":34401,"orbitIndex":0,"name":"Blind Mastery","orbit":0},"14575":{"stats":["Minions have +20% to Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","connections":[],"group":372,"skill":14575,"orbitIndex":0,"name":"Minion Lightning Resistance","orbit":0},"26331":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":26331,"stats":["8% increased Cast Speed with Cold Skills","16% increased Skill Effect Duration"],"recipe":["Fear","Despair","Ire"],"connections":[{"orbit":0,"id":3128},{"orbit":0,"id":12166}],"group":862,"orbitIndex":18,"isNotable":true,"name":"Harsh Winter","orbit":7},"4725":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[],"group":75,"skill":4725,"orbitIndex":24,"name":"Sentinels","orbit":4},"30341":{"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":30341,"stats":["30% increased bonuses gained from Equipped Quiver"],"recipe":["Fear","Despair","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":1995},{"orbit":0,"id":37946}],"group":792,"orbitIndex":0,"isNotable":true,"name":"Master Fletching","orbit":7},"40990":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":40990,"stats":["Damage Penetrates 18% Lightning Resistance","30% increased Critical Hit Chance against enemies with Lightning Exposure"],"recipe":["Envy","Isolation","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":960,"orbitIndex":0,"isNotable":true,"name":"Exposed to the Storm","orbit":0},"57110":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":57110,"stats":["+20 to maximum Life","8% of Damage taken Recouped as Life"],"recipe":["Greed","Envy","Envy"],"connections":[{"orbit":-2,"id":62159},{"orbit":0,"id":46561}],"group":635,"orbitIndex":5,"isNotable":true,"name":"Infused Flesh","orbit":7},"64370":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":64370,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":0,"id":53396}],"orbitIndex":17,"name":"Attribute","orbit":6},"20397":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":20397,"stats":["20% increased Area of Effect for Attacks","10% increased Cooldown Recovery Rate"],"recipe":["Greed","Envy","Suffering"],"connections":[{"orbit":3,"id":4577},{"orbit":0,"id":8556}],"group":432,"orbitIndex":0,"isNotable":true,"name":"Authority","orbit":0},"17589":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":36085},{"orbit":-5,"id":64462}],"group":964,"skill":17589,"orbitIndex":2,"name":"Attack Damage","orbit":2},"58387":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":52454}],"group":393,"skill":58387,"orbitIndex":6,"name":"Chaos Damage","orbit":4},"41645":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":6490},{"orbit":0,"id":10382}],"group":805,"skill":41645,"orbitIndex":69,"name":"Physical Damage","orbit":4},"52875":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":937,"skill":52875,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"64325":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-4,"id":45304}],"group":958,"skill":64325,"orbitIndex":11,"name":"Poison Damage","orbit":3},"6078":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":61119}],"group":958,"skill":6078,"orbitIndex":1,"name":"Poison Chance","orbit":3},"54725":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":56336}],"group":859,"skill":54725,"orbitIndex":0,"name":"Curse Activation Speed and Effect","orbit":7},"8273":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":8273,"stats":["25% chance on Consuming a Shock on an Enemy to reapply it"],"recipe":["Isolation","Despair","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":25565}],"group":957,"orbitIndex":0,"isNotable":true,"name":"Endless Circuit","orbit":0},"28623":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":874,"skill":28623,"orbitIndex":0,"name":"Spell Suppression Mastery","orbit":0},"17655":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[],"group":342,"skill":17655,"orbitIndex":0,"name":"Aura Effect","orbit":0},"64312":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":-7,"id":23861},{"orbit":7,"id":54886}],"group":254,"skill":64312,"orbitIndex":2,"name":"Two Handed Damage","orbit":7},"33452":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":23192}],"group":80,"skill":33452,"orbitIndex":54,"name":"Block","orbit":5},"54340":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":213,"skill":54340,"orbitIndex":3,"name":"Armour Mastery","orbit":2},"19767":{"stats":["3% increased Attack Speed with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":35223},{"orbit":0,"id":13895}],"group":954,"skill":19767,"orbitIndex":10,"name":"Spear Attack Speed","orbit":4},"9703":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":6030}],"group":1003,"skill":9703,"orbitIndex":2,"name":"Poison Duration","orbit":3},"21225":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":38369}],"group":954,"skill":21225,"orbitIndex":16,"name":"Spear Damage","orbit":3},"18910":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":10265}],"group":954,"skill":18910,"orbitIndex":48,"name":"Spear Damage","orbit":5},"38215":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":-3,"id":61921}],"group":898,"skill":38215,"orbitIndex":4,"name":"Lightning Penetration","orbit":2},"61112":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":61112,"stats":["25% increased Damage with Spears"],"recipe":["Guilt","Paranoia","Disgust"],"connections":[{"orbit":0,"id":36071},{"orbit":0,"id":20105}],"group":954,"orbitIndex":14,"isNotable":true,"name":"Roll and Strike","orbit":5},"19342":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-3,"id":17553},{"orbit":0,"id":46296},{"orbit":0,"id":27493}],"group":613,"skill":19342,"orbitIndex":8,"name":"Projectile Damage","orbit":3},"19796":{"stats":["16% increased Attack Damage against Bleeding Enemies"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":18308}],"group":478,"skill":19796,"orbitIndex":16,"name":"Attack Damage vs Bleeding Enemies","orbit":7},"13895":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":13895,"stats":["25% increased Damage with Spears"],"recipe":["Guilt","Envy","Despair"],"connections":[{"orbit":0,"id":36071}],"group":954,"orbitIndex":10,"isNotable":true,"name":"Precise Point","orbit":5},"63585":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":63585,"stats":["50% increased Electrocute Buildup against Shocked Enemies","50% increased Shock Chance against Electrocuted Enemies"],"recipe":["Despair","Paranoia","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":736,"orbitIndex":0,"isNotable":true,"name":"Thunderstruck","orbit":0},"39990":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":39990,"stats":["20% increased Skill Effect Duration","Debuffs you inflict have 10% increased Slow Magnitude"],"recipe":["Despair","Fear","Despair"],"connections":[{"orbit":0,"id":13294}],"group":363,"orbitIndex":0,"isNotable":true,"name":"Chronomancy","orbit":2},"61396":{"stats":["16% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":10998}],"group":618,"skill":61396,"orbitIndex":9,"name":"Armour and Evasion","orbit":3},"39083":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":39083,"stats":["6% increased Skill Speed","6% of Skill Mana Costs Converted to Life Costs"],"recipe":["Guilt","Fear","Disgust"],"connections":[],"group":264,"orbitIndex":0,"isNotable":true,"name":"Blood Rush","orbit":0},"38541":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":61601}],"group":818,"skill":38541,"orbitIndex":0,"name":"Critical Chance","orbit":0},"6269":{"stats":["3% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":45990}],"group":78,"skill":6269,"orbitIndex":1,"name":"Axe Attack Speed","orbit":2},"40325":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":40325,"stats":["10% increased Global Defences","25% increased Stun Threshold"],"recipe":["Envy","Disgust","Envy"],"connections":[{"orbit":0,"id":7392},{"orbit":0,"id":48505}],"group":269,"orbitIndex":21,"isNotable":true,"name":"Resolution","orbit":3},"38369":{"stats":["10% increased Damage with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":18910}],"group":954,"skill":38369,"orbitIndex":48,"name":"Spear Damage","orbit":4},"23329":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":7,"id":9343},{"orbit":-7,"id":13694}],"group":255,"skill":23329,"orbitIndex":13,"name":"Link Effect","orbit":2},"38479":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":38479,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"recipe":["Ire","Paranoia","Ire"],"connections":[{"orbit":-5,"id":17553}],"group":613,"orbitIndex":20,"isNotable":true,"name":"Close Confines","orbit":2},"37548":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":37742},{"orbit":0,"id":17589}],"group":964,"skill":37548,"orbitIndex":8,"name":"Mana Leech","orbit":2},"42111":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":21387},{"orbit":0,"id":26437}],"group":98,"skill":42111,"orbitIndex":19,"name":"Armour Break","orbit":3},"35966":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":35966,"stats":["6% of Damage taken Recouped as Life","Regenerate 0.4% of Life per second if you have been Hit Recently"],"recipe":["Paranoia","Despair","Ire"],"connections":[{"orbit":0,"id":41105},{"orbit":0,"id":44316}],"group":169,"orbitIndex":4,"isNotable":true,"name":"Heart Tissue","orbit":7},"43895":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-5,"id":48670}],"group":359,"skill":43895,"orbitIndex":6,"name":"Life Regeneration on Low Life","orbit":7},"52351":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":52260}],"group":953,"skill":52351,"orbitIndex":12,"name":"Energy","orbit":2},"52410":{"stats":["15% increased Block chance","You take 5% of damage from Blocked Hits"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[],"group":980,"skill":52410,"orbitIndex":26,"name":"Block and Damage Taken from Blocked Hits","orbit":4},"8115":{"stats":["12% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981}],"group":425,"skill":8115,"orbitIndex":0,"name":"Physical Damage","orbit":0},"50626":{"stats":["+10 to Armour","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":32597}],"group":420,"skill":50626,"orbitIndex":7,"name":"Armour and Energy Shield","orbit":2},"41298":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":951,"skill":41298,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"41580":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":41580,"stats":["25% increased Attack Damage","Attacks have 25% chance to Maim on Hit"],"recipe":["Despair","Isolation","Ire"],"connections":[{"orbit":3,"id":13799},{"orbit":0,"id":41298}],"group":951,"orbitIndex":2,"isNotable":true,"name":"Maiming Strike","orbit":7},"13799":{"stats":["8% increased Attack Damage","Debuffs you inflict have 4% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":36576}],"group":951,"skill":13799,"orbitIndex":20,"name":"Attack Damage and Slow Effect","orbit":2},"24295":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":24295,"stats":["25% increased Frenzy Charge Duration"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":2147483647,"id":37336}],"orbitIndex":20,"name":"Frenzy Charge Duration","orbit":8},"54194":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":54194,"stats":["Debuffs on you expire 10% faster"],"ascendancyName":"Chronomancer","group":199,"connections":[{"orbit":0,"id":28153}],"orbitIndex":12,"name":"Debuff Expiry Rate","orbit":2},"6752":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":7378},{"orbit":4,"id":29148}],"group":340,"skill":6752,"orbitIndex":0,"name":"Fire Damage","orbit":3},"31647":{"stats":["+8 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","connections":[],"group":950,"skill":31647,"orbitIndex":12,"name":"Dexterity","orbit":3},"55063":{"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":4,"id":51535}],"group":63,"skill":55063,"orbitIndex":5,"name":"Life Leech and Slower Leech","orbit":2},"46688":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-2,"id":4238}],"group":826,"skill":46688,"orbitIndex":0,"name":"One Handed Attack Speed","orbit":7},"21390":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":7972}],"group":153,"skill":21390,"orbitIndex":12,"name":"Endurance Charge Duration","orbit":2},"43082":{"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":43082,"stats":["3% increased Movement Speed","10% increased Skill Speed"],"recipe":["Fear","Envy","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":948,"orbitIndex":20,"isNotable":true,"name":"Acceleration","orbit":2},"5305":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":3431},{"orbit":0,"id":24287}],"group":948,"skill":5305,"orbitIndex":2,"name":"Skill Speed","orbit":1},"10029":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":10029,"stats":["Area Skills have 20% chance to Knock Enemies Back on Hit","20% increased Spell Area Damage"],"recipe":["Disgust","Paranoia","Despair"],"connections":[{"orbit":0,"id":19277}],"group":233,"orbitIndex":2,"isNotable":true,"name":"Repulsion","orbit":2},"28304":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28304,"stats":["+5 to any Attribute"],"isAttribute":true,"group":240,"connections":[{"orbit":0,"id":37258},{"orbit":0,"id":2491}],"orbitIndex":0,"name":"Attribute","orbit":0},"50403":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":947,"skill":50403,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"14110":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":22484},{"orbit":0,"id":35974}],"group":151,"skill":14110,"orbitIndex":0,"name":"Totem Damage","orbit":3},"38138":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":35688}],"group":509,"skill":38138,"orbitIndex":36,"name":"Reduced Attribute Requirements","orbit":5},"11813":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":-4,"id":30456}],"group":800,"skill":11813,"orbitIndex":12,"name":"Evasion","orbit":7},"9151":{"stats":["Projectiles have 25% chance for an additional Projectile when Forking"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":42302}],"group":890,"skill":9151,"orbitIndex":18,"name":"Forking Projectiles","orbit":2},"10681":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":10681,"stats":["1% increased Damage per 1% Chance to Block"],"recipe":["Disgust","Fear","Isolation"],"connections":[{"orbit":5,"id":27581},{"orbit":0,"id":58138}],"group":52,"orbitIndex":0,"isNotable":true,"name":"Offensive Stance","orbit":4},"20091":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":46565}],"group":356,"skill":20091,"orbitIndex":43,"name":"Sword Damage","orbit":5},"33797":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":61703}],"group":95,"skill":33797,"orbitIndex":15,"name":"Shapeshifting","orbit":5},"3042":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"orbit":0,"id":51871}],"group":880,"skill":3042,"orbitIndex":19,"name":"Life Mastery","orbit":2},"48531":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":13987}],"group":946,"skill":48531,"orbitIndex":8,"name":"Melee Attack Speed","orbit":1},"44423":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":25971}],"group":840,"skill":44423,"orbitIndex":1,"name":"Attack Mastery","orbit":2},"38014":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":38014,"stats":["Slam Skills have 12% increased Area of Effect"],"ascendancyName":"Titan","group":26,"connections":[{"orbit":5,"id":3762}],"orbitIndex":0,"name":"Slam Area of Effect","orbit":0},"8560":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":31273}],"group":946,"skill":8560,"orbitIndex":0,"name":"Melee Damage","orbit":1},"19074":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":946,"skill":19074,"orbitIndex":8,"name":"Attack Mastery","orbit":7},"17283":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":760,"skill":17283,"orbitIndex":0,"name":"Evasion and Energy Shield Mastery","orbit":0},"56118":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-5,"id":19341},{"orbit":0,"id":42250}],"group":590,"skill":56118,"orbitIndex":30,"name":"Damage against Enemies on Low Life","orbit":4},"1514":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":29527}],"group":945,"skill":1514,"orbitIndex":7,"name":"Attack Mastery","orbit":1},"29527":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":29527,"stats":["50% increased Critical Hit Chance against Enemies on Full Life","Cannot be Blinded while on Full Life","80% increased Damage with Hits against Enemies that are on Full Life"],"recipe":["Paranoia","Ire","Fear"],"connections":[{"orbit":0,"id":61800}],"group":945,"orbitIndex":10,"isNotable":true,"name":"First Approach","orbit":7},"60560":{"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":29527}],"group":945,"skill":60560,"orbitIndex":0,"name":"Damage vs Full Life","orbit":0},"18970":{"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":17366},{"orbit":0,"id":11938}],"group":615,"skill":18970,"orbitIndex":16,"name":"Evasion and Energy Shield","orbit":7},"57196":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[],"group":568,"skill":57196,"orbitIndex":16,"name":"Attack Speed","orbit":3},"18846":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":233,"skill":18846,"orbitIndex":6,"name":"Spell Area of Effect","orbit":3},"51561":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51561,"stats":["+5 to any Attribute"],"isAttribute":true,"group":178,"connections":[{"orbit":0,"id":25312},{"orbit":0,"id":2491}],"orbitIndex":0,"name":"Attribute","orbit":0},"46533":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":3,"id":28329}],"group":878,"skill":46533,"orbitIndex":18,"name":"Stun and Freeze Buildup","orbit":2},"61800":{"stats":["Critical Damage Bonus vs full life enemies 40%"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[],"group":945,"skill":61800,"orbitIndex":13,"name":"Critical Damage vs Full Life","orbit":7},"37876":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":14516},{"orbit":0,"id":26821}],"group":944,"skill":37876,"orbitIndex":45,"name":"Spell Damage","orbit":4},"33391":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":56330},{"orbit":0,"id":49661}],"group":776,"skill":33391,"orbitIndex":5,"name":"Critical Bleeding Effect","orbit":3},"25729":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":33093}],"group":944,"skill":25729,"orbitIndex":12,"name":"Cast Speed","orbit":7},"39131":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39131,"stats":["+5 to any Attribute"],"isAttribute":true,"group":83,"connections":[{"orbit":0,"id":11741}],"orbitIndex":0,"name":"Attribute","orbit":0},"52615":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":14516}],"group":944,"skill":52615,"orbitIndex":18,"name":"Spell Area of Effect","orbit":7},"14459":{"stats":["25% increased Thorns Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":3,"id":5544}],"group":171,"skill":14459,"orbitIndex":2,"name":"Thorn Critical Damage","orbit":2},"4407":{"stats":["Minions have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[],"group":353,"skill":4407,"orbitIndex":0,"name":"Minion Physical Damage Reduction","orbit":0},"28482":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":28482,"stats":["25% increased Critical Damage Bonus against Burning Enemies","10% chance to refresh Ignite Duration on Critical Hit"],"recipe":["Guilt","Isolation","Suffering"],"connections":[{"orbit":0,"id":19846}],"group":196,"orbitIndex":1,"isNotable":true,"name":"Total Incineration","orbit":7},"14516":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":944,"skill":14516,"orbitIndex":16,"name":"Spell Area of Effect","orbit":3},"45013":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":45013,"stats":["60% increased Damage with Hits against Enemies that are on Low Life","30% increased Stun Buildup against Enemies that are on Low Life"],"recipe":["Despair","Guilt","Ire"],"connections":[{"orbit":0,"id":58884}],"group":590,"orbitIndex":10,"isNotable":true,"name":"Finishing Blows","orbit":7},"65176":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":14045},{"orbit":0,"id":42250}],"group":751,"skill":65176,"orbitIndex":48,"name":"Projectile Damage","orbit":6},"7809":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":7809,"stats":["15% more Maximum Lightning Damage"],"recipe":["Isolation","Fear","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":942,"orbitIndex":0,"isNotable":true,"name":"Wild Storm","orbit":0},"62122":{"stats":["4% of Damage is taken from Mana before Life"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":-3,"id":4295}],"group":319,"skill":62122,"orbitIndex":4,"name":"Damage from Mana","orbit":3},"44951":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":5777}],"group":342,"skill":44951,"orbitIndex":9,"name":"Minion Damage","orbit":4},"49370":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":49370,"stats":["30% increased Critical Hit Chance with Flails","20% increased Critical Damage Bonus with Flails"],"recipe":["Envy","Greed","Suffering"],"connections":[{"orbit":0,"id":6502}],"group":41,"orbitIndex":15,"isNotable":true,"name":"Morning Star","orbit":2},"34912":{"stats":["10% increased Trap Damage"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":4664}],"group":974,"skill":34912,"orbitIndex":45,"name":"Trap Damage","orbit":6},"56640":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":-3,"id":10398}],"group":479,"skill":56640,"orbitIndex":2,"name":"Spell Critical Damage","orbit":7},"60404":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":60404,"stats":["30% increased Stun Buildup","Damage with Hits is Lucky against Heavy Stunned Enemies"],"recipe":["Ire","Suffering","Suffering"],"connections":[{"orbit":0,"id":20691},{"orbit":0,"id":25011}],"group":362,"orbitIndex":14,"isNotable":true,"name":"Perfect Opportunity","orbit":2},"48519":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":28272}],"group":771,"skill":48519,"orbitIndex":2,"name":"Flask Duration","orbit":2},"20165":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":20165,"stats":["Mark Skills have 60% increased Skill Effect Duration"],"recipe":["Greed","Disgust","Disgust"],"connections":[{"orbit":3,"id":2656},{"orbit":-3,"id":24347}],"group":782,"orbitIndex":3,"isNotable":true,"name":"No Escape","orbit":3},"31286":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":16140}],"group":938,"skill":31286,"orbitIndex":14,"name":"Physical","orbit":3},"55250":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-4,"id":56649},{"orbit":4,"id":41669}],"group":497,"skill":55250,"orbitIndex":30,"name":"Cold Penetration","orbit":4},"11433":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":-6,"id":24630}],"group":48,"skill":11433,"orbitIndex":0,"name":"Fire Damage","orbit":7},"16140":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":16013}],"group":938,"skill":16140,"orbitIndex":10,"name":"Daze Buildup","orbit":2},"35173":{"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":1599}],"group":938,"skill":35173,"orbitIndex":22,"name":"Physical Damage and Critical Chance","orbit":7},"1599":{"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":31286}],"group":938,"skill":1599,"orbitIndex":18,"name":"Physical Damage and Critical Chance","orbit":2},"58884":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":590,"skill":58884,"orbitIndex":0,"name":"Two Hand Mastery","orbit":0},"27491":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":27491,"stats":["40% increased maximum Energy Shield","10% reduced maximum Life"],"recipe":["Greed","Paranoia","Isolation"],"connections":[],"group":412,"orbitIndex":24,"isNotable":true,"name":"Heavy Buffer","orbit":4},"26726":{"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","connections":[{"orbit":0,"id":48103}],"group":937,"skill":26726,"orbitIndex":4,"name":"Knockback and Stun Buildup","orbit":2},"5920":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":-3,"id":52574},{"orbit":5,"id":51921}],"group":385,"skill":5920,"orbitIndex":16,"name":"Attack Area","orbit":2},"25971":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":25971,"stats":["4% increased Attack Speed","6% increased Attack Speed if you've been Hit Recently","+10 to Strength"],"recipe":["Greed","Fear","Guilt"],"connections":[],"group":840,"orbitIndex":0,"isNotable":true,"name":"Tenfold Attacks","orbit":0},"6178":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":6178,"stats":["15% reduced Attack Speed with Crossbows","80% increased Critical Damage Bonus with Crossbows"],"recipe":["Paranoia","Isolation","Suffering"],"connections":[{"orbit":0,"id":33415}],"group":612,"orbitIndex":35,"isNotable":true,"name":"Power Shots","orbit":4},"56910":{"icon":"Art/2DArt/SkillIcons/passives/Meleerange.dds","skill":56910,"stats":["Hits against you have 20% reduced Critical Damage Bonus","20% increased Armour and Evasion Rating","+5 to Strength and Dexterity"],"recipe":["Greed","Guilt","Paranoia"],"connections":[{"orbit":6,"id":28510},{"orbit":0,"id":34061},{"orbit":6,"id":29328}],"group":527,"orbitIndex":51,"isNotable":true,"name":"Battle-hardened","orbit":5},"37813":{"stats":["20% increased Shock Duration"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":14724},{"orbit":0,"id":50701}],"group":926,"skill":37813,"orbitIndex":0,"name":"Shock Duration","orbit":0},"57703":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57703,"stats":["+5 to any Attribute"],"isAttribute":true,"group":188,"connections":[{"orbit":0,"id":54811},{"orbit":0,"id":54485},{"orbit":0,"id":38130},{"orbit":0,"id":19674}],"orbitIndex":0,"name":"Attribute","orbit":0},"9106":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":54937}],"group":57,"skill":9106,"orbitIndex":2,"name":"Rage when Hit","orbit":7},"17745":{"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":263,"skill":17745,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"4828":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":19044}],"group":680,"skill":4828,"orbitIndex":12,"name":"Mana Regeneration","orbit":2},"13893":{"stats":["10% increased Stun Buildup","Damage Penetrates 5% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":-5,"id":42390}],"group":48,"skill":13893,"orbitIndex":5,"name":"Fire Penetration and Stun Buildup","orbit":7},"35534":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":44280}],"group":936,"skill":35534,"orbitIndex":16,"name":"Mark Cast Speed","orbit":2},"36231":{"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":3336},{"orbit":0,"id":722}],"group":977,"skill":36231,"orbitIndex":1,"name":"Critical Damage when consuming a Power Charge","orbit":2},"517":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":6,"id":39037},{"orbit":9,"id":61027}],"group":535,"skill":517,"orbitIndex":0,"name":"Energy Shield Recharge","orbit":0},"42578":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-6,"id":23192}],"group":80,"skill":42578,"orbitIndex":11,"name":"Block","orbit":3},"44484":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":44484,"stats":["+4% to all Elemental Resistances"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":42522}],"orbitIndex":136,"name":"Elemental Resistances","orbit":9},"35564":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":35564,"stats":["20% reduced Projectile Speed for Spell Skills"],"recipe":["Fear","Fear","Despair"],"connections":[{"orbit":0,"id":18121},{"orbit":0,"id":65310}],"group":794,"orbitIndex":22,"isNotable":true,"name":"Turn the Clock Back","orbit":3},"18505":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":18505,"stats":["5% reduced Attack Speed","30% increased Stun Buildup","50% increased Attack Damage"],"recipe":["Envy","Suffering","Ire"],"connections":[{"orbit":0,"id":45090}],"group":134,"orbitIndex":16,"isNotable":true,"name":"Crushing Verdict","orbit":7},"51602":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":51602,"stats":["Enemies near Enemies you Mark are Blinded","Enemies you Mark cannot deal Critical Hits"],"recipe":["Suffering","Disgust","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":936,"orbitIndex":0,"isNotable":true,"name":"Unsight","orbit":0},"13862":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":761,"skill":13862,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"12239":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"orbit":0,"id":39881},{"orbit":0,"id":41811}],"group":935,"skill":12239,"orbitIndex":0,"name":"Physical Mastery","orbit":0},"50701":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":44932}],"group":933,"skill":50701,"orbitIndex":0,"name":"Shock Effect","orbit":0},"28589":{"stats":["5% increased Attack Speed if you've been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":30300}],"group":38,"skill":28589,"orbitIndex":2,"name":"Attack Speed if Hit","orbit":3},"44932":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":54984}],"group":931,"skill":44932,"orbitIndex":4,"name":"Shock Effect","orbit":3},"6789":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":4313}],"group":620,"skill":6789,"orbitIndex":1,"name":"Projectile Damage","orbit":2},"5084":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":2,"id":35324}],"group":445,"skill":5084,"orbitIndex":22,"name":"Ignite Chance","orbit":2},"9750":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":1169}],"group":166,"skill":9750,"orbitIndex":10,"name":"Warcry Cooldown","orbit":7},"13839":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":65287}],"group":387,"skill":13839,"orbitIndex":39,"name":"Totem Damage","orbit":5},"57967":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":57967,"stats":["+30 to maximum Mana","14% increased Mana Regeneration Rate"],"recipe":["Isolation","Envy","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":373,"orbitIndex":0,"isNotable":true,"name":"Sturdy Mind","orbit":0},"24786":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24786,"stats":["+5 to any Attribute"],"isAttribute":true,"group":929,"connections":[{"orbit":0,"id":24287},{"orbit":0,"id":30657},{"orbit":0,"id":4378},{"orbit":0,"id":21225}],"orbitIndex":0,"name":"Attribute","orbit":0},"42035":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistLifeRecoup.dds","skill":42035,"stats":["30% of Damage taken Recouped as Life"],"ascendancyName":"Chronomancer","connections":[{"orbit":0,"id":54194}],"group":199,"orbitIndex":18,"isNotable":true,"name":"Circular Heartbeat","orbit":2},"17687":{"stats":["15% increased Mana Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":-3,"id":27422}],"group":972,"skill":17687,"orbitIndex":40,"name":"Mana Flask Charges","orbit":4},"61923":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-6,"id":16256}],"group":680,"skill":61923,"orbitIndex":4,"name":"Mana Regeneration","orbit":3},"3843":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":0,"id":65265}],"group":927,"skill":3843,"orbitIndex":9,"name":"Block","orbit":2},"57518":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":31366},{"orbit":0,"id":59740}],"group":927,"skill":57518,"orbitIndex":21,"name":"Block","orbit":2},"17146":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":4,"id":57518},{"orbit":-4,"id":3843}],"group":927,"skill":17146,"orbitIndex":3,"name":"Block","orbit":3},"26400":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies further than 6m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":8904}],"group":925,"skill":26400,"orbitIndex":18,"name":"Projectile Damage","orbit":7},"32545":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":4,"id":61196}],"group":671,"skill":32545,"orbitIndex":2,"name":"Skill Speed","orbit":2},"10648":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies further than 6m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":26400}],"group":925,"skill":10648,"orbitIndex":54,"name":"Projectile Damage","orbit":4},"2408":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":2408,"stats":["+5 to any Attribute"],"isAttribute":true,"group":924,"connections":[{"orbit":0,"id":35696},{"orbit":0,"id":59740},{"orbit":0,"id":35534}],"orbitIndex":0,"name":"Attribute","orbit":0},"13157":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":3,"id":30392}],"group":785,"skill":13157,"orbitIndex":1,"name":"Life Flasks","orbit":3},"12253":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":12253,"stats":["+5 to any Attribute"],"isAttribute":true,"group":922,"connections":[{"orbit":0,"id":32183},{"orbit":0,"id":41017},{"orbit":0,"id":35696},{"orbit":0,"id":34497},{"orbit":0,"id":16401}],"orbitIndex":0,"name":"Attribute","orbit":0},"47263":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47263,"stats":["+5 to any Attribute"],"isAttribute":true,"group":87,"connections":[{"orbit":0,"id":38707},{"orbit":0,"id":18448},{"orbit":0,"id":58295}],"orbitIndex":0,"name":"Attribute","orbit":0},"43695":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":43695,"stats":["25% increased Flask Effect Duration","25% increased Flask Charges gained"],"recipe":["Despair","Disgust","Despair"],"connections":[{"orbit":0,"id":62438},{"orbit":0,"id":18750}],"group":771,"orbitIndex":12,"isNotable":true,"name":"Lasting Concoctions","orbit":7},"50104":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50104,"stats":["+5 to any Attribute"],"isAttribute":true,"group":286,"connections":[{"orbit":0,"id":47168},{"orbit":0,"id":37594},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"32054":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":62153}],"group":624,"skill":32054,"orbitIndex":2,"name":"Spell Critical Damage","orbit":3},"55554":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":8821},{"orbit":0,"id":22271}],"group":563,"skill":55554,"orbitIndex":0,"name":"Shock Chance","orbit":0},"32301":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":32301,"stats":["15% increased Mana Regeneration Rate","30% increased Magnitude of Shock you inflict"],"recipe":["Despair","Disgust","Paranoia"],"connections":[{"orbit":0,"id":50277}],"group":917,"orbitIndex":0,"isNotable":true,"name":"Frazzled","orbit":0},"16329":{"stats":["5% reduced Flask Charges used"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":-2,"id":39607}],"group":916,"skill":16329,"orbitIndex":6,"name":"Flask Charges Used","orbit":2},"934":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":934,"stats":["+4 to Ailment Threshold per Dexterity"],"recipe":["Greed","Suffering","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"orbit":-4,"id":12526}],"group":489,"orbitIndex":63,"isNotable":true,"name":"Natural Immunity","orbit":4},"2559":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":7,"id":62542}],"group":916,"skill":2559,"orbitIndex":2,"name":"Flask Charges Gained","orbit":2},"26268":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":22710}],"group":871,"skill":26268,"orbitIndex":12,"name":"Curse Duration","orbit":7},"25029":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":915,"skill":25029,"orbitIndex":51,"name":"Charms Mastery","orbit":5},"37612":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37612,"stats":["+5 to any Attribute"],"isAttribute":true,"group":339,"connections":[{"orbit":0,"id":13279},{"orbit":0,"id":17532}],"orbitIndex":0,"name":"Attribute","orbit":0},"62803":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":62803,"stats":["Charms applied to you have 25% increased Effect"],"recipe":["Suffering","Guilt","Isolation"],"connections":[{"orbit":0,"id":25029}],"group":915,"orbitIndex":51,"isNotable":true,"name":"Woodland Aspect","orbit":4},"15809":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":31175},{"orbit":7,"id":26945}],"group":419,"skill":15809,"orbitIndex":22,"name":"Minion Critical Chance","orbit":3},"48462":{"stats":["Charms applied to you have 10% increased Effect"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":5,"id":11094},{"orbit":5,"id":62803}],"group":915,"skill":48462,"orbitIndex":15,"name":"Charm Effect","orbit":7},"41180":{"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":61703},{"orbit":0,"id":17260},{"orbit":0,"id":32353}],"group":106,"skill":41180,"orbitIndex":0,"name":"Shapeshifting Mastery","orbit":1},"24813":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":3,"id":20397}],"group":430,"skill":24813,"orbitIndex":14,"name":"Attack Area","orbit":7},"36976":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":36976,"stats":["Culling Strike against Enemies you Mark"],"recipe":["Isolation","Suffering","Guilt"],"connections":[],"group":914,"orbitIndex":9,"isNotable":true,"name":"Marked for Death","orbit":3},"28258":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":28258,"stats":["10% increased Effect of your Mark Skills"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":914,"connections":[{"orbit":0,"id":36976},{"orbit":0,"id":59064},{"orbit":2,"id":36927}],"orbitIndex":0,"name":"Mark Effect","orbit":0},"23427":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":23427,"stats":["20% increased Chill Duration on Enemies","30% increased Magnitude of Chill you inflict"],"recipe":["Suffering","Despair","Despair"],"connections":[{"orbit":5,"id":62914}],"group":497,"orbitIndex":54,"isNotable":true,"name":"Chilled to the Bone","orbit":4},"59064":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[],"group":914,"skill":59064,"orbitIndex":21,"name":"Mark Effect","orbit":3},"51683":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[],"group":209,"skill":51683,"orbitIndex":22,"name":"Totem Damage","orbit":2},"44841":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":36927},{"orbit":2,"id":28258}],"group":914,"skill":44841,"orbitIndex":19,"name":"Mark Cast Speed","orbit":2},"12116":{"stats":["15% increased Block chance","You take 5% of damage from Blocked Hits"],"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","connections":[{"orbit":0,"id":42036},{"orbit":0,"id":52410}],"group":980,"skill":12116,"orbitIndex":22,"name":"Block and Damage Taken from Blocked Hits","orbit":4},"47976":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":47976,"stats":["+5 to any Attribute"],"isAttribute":true,"group":913,"connections":[{"orbit":0,"id":14446},{"orbit":0,"id":37876}],"orbitIndex":0,"name":"Attribute","orbit":0},"21453":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":21453,"stats":["Break 60% increased Armour","10% chance to Defend with 200% of Armour"],"recipe":["Fear","Envy","Greed"],"connections":[{"orbit":0,"id":10286}],"group":129,"orbitIndex":0,"isNotable":true,"name":"Breakage","orbit":0},"26107":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":26107,"stats":["3% increased Movement Speed","15% increased Projectile Speed","15% increased Projectile Damage"],"recipe":["Ire","Isolation","Despair"],"connections":[{"orbit":7,"id":33713}],"group":912,"orbitIndex":0,"isNotable":true,"name":"Kite Runner","orbit":0},"33713":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-2,"id":57462}],"group":912,"skill":33713,"orbitIndex":17,"name":"Projectile Speed","orbit":2},"8827":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":8827,"stats":["Life Leech effects are not removed when Unreserved Life is Filled"],"recipe":["Suffering","Isolation","Suffering"],"connections":[{"orbit":0,"id":16691},{"orbit":0,"id":28862}],"group":281,"orbitIndex":8,"isNotable":true,"name":"Fast Metabolism","orbit":7},"44223":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[],"group":610,"skill":44223,"orbitIndex":1,"name":"Critical Damage","orbit":7},"12078":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-6,"id":53771},{"orbit":-4,"id":41877}],"group":912,"skill":12078,"orbitIndex":39,"name":"Projectile Damage","orbit":5},"53771":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-2,"id":52361}],"group":912,"skill":53771,"orbitIndex":9,"name":"Projectile Damage","orbit":3},"16861":{"stats":["5% reduced maximum Mana","15% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-5,"id":27303}],"group":184,"skill":16861,"orbitIndex":22,"name":"Critical Chance and Reduced Mana","orbit":3},"14343":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":14343,"stats":["Damaging Ailments Cannot Be inflicted on you while you already have one","20% increased Magnitude of Damaging Ailments you inflict"],"recipe":["Paranoia","Paranoia","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":724,"orbitIndex":0,"isNotable":true,"name":"Deterioration","orbit":0},"8509":{"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":59061}],"group":168,"skill":8509,"orbitIndex":2,"name":"Critical Damage","orbit":2},"18308":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":18308,"stats":["+250 to Accuracy against Bleeding Enemies","Bleeding you inflict deals Damage 10% faster"],"recipe":["Despair","Suffering","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":478,"orbitIndex":48,"isNotable":true,"name":"Bleeding Out","orbit":4},"59213":{"stats":["20% increased Stun Recovery"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":48240}],"group":269,"skill":59213,"orbitIndex":15,"name":"Stun Recovery","orbit":2},"26532":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-3,"id":46023},{"orbit":3,"id":41657},{"orbit":0,"id":36629}],"group":272,"skill":26532,"orbitIndex":6,"name":"Armour","orbit":2},"49046":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49046,"stats":["+5 to any Attribute"],"isAttribute":true,"group":634,"connections":[{"orbit":0,"id":8569}],"orbitIndex":0,"name":"Attribute","orbit":0},"11604":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11604,"stats":["+5 to any Attribute"],"isAttribute":true,"group":773,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":29408},{"orbit":0,"id":52765}],"orbitIndex":0,"name":"Attribute","orbit":0},"52361":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":26107}],"group":912,"skill":52361,"orbitIndex":9,"name":"Projectile Damage","orbit":2},"51749":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds","skill":51749,"isKeystone":true,"stats":["Removes all Mana","Skill Mana Costs Converted to Life Costs"],"group":60,"connections":[{"orbit":0,"id":30141}],"orbitIndex":0,"name":"Blood Magic","orbit":0},"14724":{"stats":["20% increased Shock Duration"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":62185}],"group":911,"skill":14724,"orbitIndex":0,"name":"Shock Duration","orbit":0},"61534":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":4665}],"group":408,"skill":61534,"orbitIndex":18,"name":"Life Regeneration","orbit":7},"35503":{"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":23764}],"group":670,"skill":35503,"orbitIndex":0,"name":"Shock Effect and Mana Regeneration","orbit":0},"34308":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":34308,"stats":["20% increased Melee Damage","25% increased Melee Damage against Immobilised Enemies"],"recipe":["Disgust","Despair","Ire"],"connections":[{"orbit":0,"id":37414},{"orbit":0,"id":10245}],"group":234,"orbitIndex":16,"isNotable":true,"name":"Personal Touch","orbit":3},"44875":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":668,"skill":44875,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"41646":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41646,"stats":["+5 to any Attribute"],"isAttribute":true,"group":416,"connections":[{"orbit":0,"id":48670},{"orbit":0,"id":14091}],"orbitIndex":0,"name":"Attribute","orbit":0},"57966":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":695,"skill":57966,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"2119":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":53505}],"group":409,"skill":2119,"orbitIndex":0,"name":"Life Leech","orbit":2},"34497":{"icon":"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds","skill":34497,"isKeystone":true,"stats":["Take 50% less Damage over Time if you've started taking Damage over Time in the past second","Take 50% more Damage over Time if you've haven't started taking Damage over Time in the past second"],"group":909,"connections":[],"orbitIndex":0,"name":"Heartstopper","orbit":0},"5257":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":5257,"stats":["30% increased Elemental Damage if you've Chilled an Enemy Recently"],"recipe":["Suffering","Guilt","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":20,"isNotable":true,"name":"Echoing Frost","orbit":7},"4378":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6330},{"orbit":0,"id":59503}],"group":907,"skill":4378,"orbitIndex":9,"name":"Accuracy","orbit":7},"15207":{"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6330}],"group":907,"skill":15207,"orbitIndex":0,"name":"Accuracy and Attack Damage","orbit":7},"22208":{"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":15207}],"group":907,"skill":22208,"orbitIndex":18,"name":"Accuracy and Critical Chance","orbit":7},"59503":{"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":22208}],"group":907,"skill":59503,"orbitIndex":13,"name":"Accuracy and Critical Chance","orbit":7},"56453":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":56453,"stats":["30% increased Attack Damage when on Full Life","50% increased Attack Damage when on Low Life"],"recipe":["Greed","Paranoia","Greed"],"connections":[{"orbit":0,"id":37691}],"group":845,"orbitIndex":39,"isNotable":true,"name":"Killer Instinct","orbit":5},"41972":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":41972,"stats":["Damage Penetrates 18% Cold Resistance","25% increased Cold Exposure Effect"],"recipe":["Paranoia","Guilt","Isolation"],"connections":[{"orbit":4,"id":56649},{"orbit":-4,"id":60515}],"group":497,"orbitIndex":18,"isNotable":true,"name":"Glaciation","orbit":4},"42805":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":26034}],"group":905,"skill":42805,"orbitIndex":6,"name":"Evasion and Energy Shield","orbit":7},"30372":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":42065}],"group":843,"skill":30372,"orbitIndex":7,"name":"Lightning Penetration","orbit":2},"46535":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds","skill":46535,"stats":["Deal up to 30% more Damage to Enemies based on their missing Concentration"],"ascendancyName":"Witchhunter","connections":[],"group":152,"orbitIndex":6,"isNotable":true,"name":"No Mercy","orbit":1},"42750":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":4,"id":17088},{"orbit":-4,"id":9050}],"group":845,"skill":42750,"orbitIndex":42,"name":"Attack Damage","orbit":6},"3630":{"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":62624}],"group":905,"skill":3630,"orbitIndex":18,"name":"Evasion and Energy Shield Recharge","orbit":3},"33393":{"stats":["10% increased Damage with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":7,"id":41747}],"group":50,"skill":33393,"orbitIndex":60,"name":"Flail Damage","orbit":5},"58022":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":5186},{"orbit":-7,"id":26762}],"group":904,"skill":58022,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"32148":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":32148,"stats":["25% increased Damage with Flails"],"recipe":["Greed","Despair","Despair"],"connections":[],"group":41,"orbitIndex":23,"isNotable":true,"name":"Rattling Ball","orbit":2},"20387":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":57810}],"group":623,"skill":20387,"orbitIndex":0,"name":"Shock Chance","orbit":0},"11736":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":62677}],"group":576,"skill":11736,"orbitIndex":36,"name":"Lightning Damage","orbit":4},"36822":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":36822,"stats":["3% increased Attributes"],"ascendancyName":"Gemling Legionnaire","group":324,"connections":[{"orbit":0,"id":58591}],"orbitIndex":0,"name":"Attributes","orbit":0},"45702":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":61333},{"orbit":3,"id":31692}],"group":903,"skill":45702,"orbitIndex":19,"name":"Critical Chance","orbit":2},"27388":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":27388,"stats":["20% increased Mana Regeneration Rate","10% chance to Gain Arcane Surge when you deal a Critical Hit"],"recipe":["Suffering","Greed","Greed"],"connections":[{"orbit":0,"id":28578},{"orbit":0,"id":24551}],"group":147,"orbitIndex":21,"isNotable":true,"name":"Aspiring Genius","orbit":7},"17548":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":17548,"stats":["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently","20% increased Critical Hit Chance"],"recipe":["Ire","Suffering","Disgust"],"connections":[{"orbit":0,"id":630},{"orbit":0,"id":31039}],"group":720,"orbitIndex":2,"isNotable":true,"name":"Moment of Truth","orbit":7},"6153":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":44952},{"orbit":0,"id":10362}],"group":76,"skill":6153,"orbitIndex":14,"name":"Life Regeneration","orbit":7},"1104":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":1104,"stats":["5% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges","+1 to Maximum Power Charges"],"recipe":["Isolation","Guilt","Guilt"],"connections":[{"orbit":0,"id":56876}],"group":774,"orbitIndex":0,"isNotable":true,"name":"Lust for Power","orbit":0},"16489":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16489,"stats":["+5 to any Attribute"],"isAttribute":true,"group":588,"connections":[{"orbit":6,"id":28556},{"orbit":7,"id":49799}],"orbitIndex":30,"name":"Attribute","orbit":6},"354":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":48429}],"group":469,"skill":354,"orbitIndex":16,"name":"Grenade Cooldown Recovery Rate","orbit":3},"48583":{"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":58783}],"group":592,"skill":48583,"orbitIndex":23,"name":"Life Leech. Armour and Evasion while Leeching","orbit":2},"40328":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-5,"id":28564}],"group":93,"skill":40328,"orbitIndex":3,"name":"Warcry Speed","orbit":3},"54232":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54232,"stats":["+5 to any Attribute"],"isAttribute":true,"group":414,"connections":[{"orbit":5,"id":44659}],"orbitIndex":0,"name":"Attribute","orbit":0},"21081":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":5,"id":25745}],"group":393,"skill":21081,"orbitIndex":42,"name":"Armour and Energy Shield","orbit":5},"10277":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":64064}],"group":902,"skill":10277,"orbitIndex":7,"name":"Accuracy","orbit":2},"35426":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35426,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":6,"id":8406}],"orbitIndex":54,"name":"Attribute","orbit":6},"42500":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42500,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":59881}],"orbitIndex":10,"name":"Attribute","orbit":6},"15301":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":4709},{"orbit":0,"id":64064}],"group":902,"skill":15301,"orbitIndex":13,"name":"Accuracy","orbit":2},"62185":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":62185,"stats":["+20 to maximum Mana","50% increased Shock Duration"],"recipe":["Greed","Fear","Ire"],"connections":[],"group":901,"orbitIndex":0,"isNotable":true,"name":"Rattled","orbit":0},"5501":{"icon":"Art/2DArt/SkillIcons/passives/Annihilation.dds","skill":5501,"stats":["15% increased Critical Hit Chance for Spells","15% increased Spell Damage if you've dealt a Critical Hit Recently"],"recipe":["Guilt","Envy","Ire"],"connections":[{"orbit":0,"id":48821}],"group":504,"orbitIndex":0,"isNotable":true,"name":"Critical Overload","orbit":0},"53266":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":13576},{"orbit":0,"id":20387},{"orbit":0,"id":53560}],"group":644,"skill":53266,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"55190":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":55190,"stats":[],"group":42,"connections":[],"orbitIndex":0,"name":"Jewel Socket","orbit":1},"1841":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":5,"id":9405}],"group":982,"skill":1841,"orbitIndex":8,"name":"Evasion","orbit":7},"61525":{"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","classesStart":["Templar","Druid"],"skill":61525,"stats":[],"group":453,"connections":[{"orbit":0,"id":13855},{"orbit":0,"id":35715},{"orbit":0,"id":26353},{"orbit":0,"id":950},{"orbit":0,"id":28429},{"orbit":0,"id":35535},{"orbit":0,"id":42761}],"orbitIndex":0,"name":"TEMPLAR","orbit":0},"47374":{"stats":["Projectiles deal 12% increased Damage with Hits against Enemies within 2m"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":18049}],"group":900,"skill":47374,"orbitIndex":66,"name":"Projectile Damage","orbit":4},"22710":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":45111}],"group":871,"skill":22710,"orbitIndex":8,"name":"Curse Duration","orbit":7},"47790":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":17625}],"group":71,"skill":47790,"orbitIndex":16,"name":"Shapeshifting","orbit":7},"24239":{"stats":["Gain 5 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":0,"id":34136}],"group":721,"skill":24239,"orbitIndex":9,"name":"Life on Kill","orbit":1},"13715":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":13715,"stats":["18% increased Stun Buildup"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":59372}],"orbitIndex":44,"name":"Stun Buildup","orbit":5},"55568":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":55568,"stats":["16% reduced Skill Effect Duration","10% increased Cooldown Recovery Rate"],"recipe":["Despair","Greed","Suffering"],"connections":[{"orbit":0,"id":41522},{"orbit":0,"id":44690}],"group":735,"orbitIndex":0,"isNotable":true,"name":"Forthcoming","orbit":2},"64543":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":64543,"stats":["40% increased Chill Duration on Enemies","40% increased Shock Duration","25% increased Magnitude of Chill you inflict","25% increased Magnitude of Shock you inflict"],"recipe":["Disgust","Envy","Guilt"],"connections":[],"group":898,"orbitIndex":57,"isNotable":true,"name":"Unbound Forces","orbit":5},"26697":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"orbit":0,"id":59263},{"orbit":0,"id":27290},{"orbit":0,"id":46565}],"group":343,"skill":26697,"orbitIndex":0,"name":"Sword Mastery","orbit":0},"37304":{"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":336},{"orbit":-4,"id":61921},{"orbit":0,"id":64543}],"group":898,"skill":37304,"orbitIndex":57,"name":"Elemental","orbit":4},"4806":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-4,"id":32183}],"group":898,"skill":4806,"orbitIndex":10,"name":"Cold Penetration","orbit":2},"12311":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":64119}],"group":605,"skill":12311,"orbitIndex":18,"name":"Crossbow Reload Speed","orbit":7},"40918":{"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-4,"id":1773}],"group":779,"skill":40918,"orbitIndex":0,"name":"Ailment Effect and Duration","orbit":0},"39987":{"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-3,"id":18913},{"orbit":-5,"id":47177}],"group":617,"skill":39987,"orbitIndex":14,"name":"Chaos Damage and Duration","orbit":3},"51812":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":156,"skill":51812,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"49111":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":37,"skill":49111,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"31172":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":31172,"stats":["1% increased Attack Speed per 15 Dexterity"],"recipe":["Suffering","Suffering","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":896,"orbitIndex":51,"isNotable":true,"name":"Falcon Technique","orbit":5},"48116":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48116,"stats":["+5 to any Attribute"],"isAttribute":true,"group":986,"connections":[{"orbit":0,"id":21112},{"orbit":0,"id":60735},{"orbit":0,"id":10472}],"orbitIndex":0,"name":"Attribute","orbit":0},"47429":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":223,"skill":47429,"orbitIndex":6,"name":"Warcry Cooldown","orbit":6},"49049":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds","skill":49049,"stats":["Enemies in your Presence are Slowed by 20%"],"ascendancyName":"Chronomancer","connections":[],"group":218,"orbitIndex":0,"isNotable":true,"name":"Apex of the Moment","orbit":0},"30657":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30657,"stats":["+5 to any Attribute"],"isAttribute":true,"group":894,"connections":[{"orbit":0,"id":38463},{"orbit":0,"id":6842},{"orbit":0,"id":59064}],"orbitIndex":0,"name":"Attribute","orbit":0},"54678":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":41877}],"group":865,"skill":54678,"orbitIndex":0,"name":"Shock Chance","orbit":0},"62978":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":19873}],"group":350,"skill":62978,"orbitIndex":14,"name":"Area of Effect","orbit":2},"13397":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13397,"stats":["+5 to any Attribute"],"isAttribute":true,"group":394,"connections":[{"orbit":0,"id":1207}],"orbitIndex":6,"name":"Attribute","orbit":4},"59881":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59881,"stats":["+5 to any Attribute"],"isAttribute":true,"group":530,"connections":[{"orbit":0,"id":54417},{"orbit":-5,"id":28556}],"orbitIndex":16,"name":"Attribute","orbit":6},"23005":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds","skill":23005,"stats":["Gain 40% Base Chance to Block from Equipped Shield instead of the Shield's value"],"ascendancyName":"Warbringer","connections":[{"orbit":0,"id":10072}],"group":18,"orbitIndex":0,"isNotable":true,"name":"Renly's Training","orbit":0},"10495":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":892,"skill":10495,"orbitIndex":18,"name":"Mana Mastery","orbit":7},"21380":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":21380,"stats":["Critical Damage Bonus vs full life enemies 100%"],"recipe":["Guilt","Disgust","Greed"],"connections":[],"group":762,"orbitIndex":1,"isNotable":true,"name":"Preemptive Strike","orbit":7},"31388":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":51394}],"group":158,"skill":31388,"orbitIndex":7,"name":"Slow Effect on You","orbit":3},"14048":{"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":34717}],"group":892,"skill":14048,"orbitIndex":54,"name":"Mana Regeneration while not on Low Mana","orbit":4},"24855":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":39347},{"orbit":0,"id":48014}],"group":101,"skill":24855,"orbitIndex":58,"name":"Attack Mastery","orbit":4},"52053":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":14048},{"orbit":-4,"id":24120}],"group":892,"skill":52053,"orbitIndex":16,"name":"Mana Regeneration","orbit":3},"4547":{"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","skill":4547,"stats":["2% to Maximum Fire Resistance for each 40% Uncapped Fire Resistance"],"recipe":["Isolation","Isolation","Isolation"],"connections":[{"orbit":0,"id":2946}],"group":130,"orbitIndex":0,"isNotable":true,"name":"Unnatural Resilience","orbit":0},"12000":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds","skill":12000,"stats":["15% more Maximum Life"],"ascendancyName":"Titan","connections":[],"group":29,"orbitIndex":0,"isNotable":true,"name":"Mysterious Lineage","orbit":0},"30346":{"stats":["+10 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":44871},{"orbit":-5,"id":29695},{"orbit":6,"id":34006}],"group":533,"skill":30346,"orbitIndex":13,"name":"Energy Shield","orbit":7},"60269":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":60269,"stats":["10% reduced Spell Area Damage","Spell Skills have 30% increased Area of Effect"],"recipe":["Disgust","Greed","Ire"],"connections":[{"orbit":0,"id":6588}],"group":571,"orbitIndex":19,"isNotable":true,"name":"Roil","orbit":7},"51891":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":51891,"stats":["8% of Damage is taken from Mana before Life","+15 to Intelligence"],"recipe":["Envy","Disgust","Suffering"],"connections":[{"orbit":0,"id":25528}],"group":891,"orbitIndex":17,"isNotable":true,"name":"Lucidity","orbit":7},"23046":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":5,"id":47976}],"group":891,"skill":23046,"orbitIndex":27,"name":"Energy Shield Delay","orbit":4},"52274":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":3109},{"orbit":0,"id":21077}],"group":469,"skill":52274,"orbitIndex":9,"name":"Grenade Damage","orbit":3},"63713":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds","skill":63713,"stats":["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"],"ascendancyName":"Invoker","connections":[{"orbit":-4,"id":57181}],"group":1033,"orbitIndex":43,"isNotable":true,"name":"Sunder my Enemies...","orbit":9},"58295":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58295,"stats":["+5 to any Attribute"],"isAttribute":true,"group":126,"connections":[{"orbit":0,"id":15671}],"orbitIndex":4,"name":"Attribute","orbit":2},"57626":{"stats":["8% increased Fire Damage","8% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":36782}],"group":542,"skill":57626,"orbitIndex":16,"name":"Cold and Fire Damage","orbit":7},"24483":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":24483,"stats":["40% increased Critical Hit Chance against Enemies that are affected","by no Elemental Ailments"],"recipe":["Disgust","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":32660}],"group":299,"orbitIndex":0,"isNotable":true,"name":"Direct Approach","orbit":0},"18448":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18448,"stats":["+5 to any Attribute"],"isAttribute":true,"group":72,"connections":[{"orbit":0,"id":30141},{"orbit":0,"id":18822}],"orbitIndex":0,"name":"Attribute","orbit":0},"3628":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":64474},{"orbit":0,"id":3251}],"group":749,"skill":3628,"orbitIndex":2,"name":"Energy Shield Delay","orbit":2},"40453":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":25304}],"group":855,"skill":40453,"orbitIndex":9,"name":"Energy","orbit":7},"52971":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":52971,"stats":["20% faster start of Energy Shield Recharge","30% faster start of Energy Shield Recharge when not on Full Life"],"recipe":["Envy","Disgust","Fear"],"connections":[{"orbit":-2,"id":21227},{"orbit":0,"id":25528}],"group":891,"orbitIndex":45,"isNotable":true,"name":"Quick Response","orbit":4},"45481":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":52765}],"group":761,"skill":45481,"orbitIndex":16,"name":"Mana Regeneration","orbit":2},"44952":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":44952,"stats":["15% of Physical Damage prevented Recouped as Life"],"recipe":["Suffering","Fear","Guilt"],"connections":[{"orbit":0,"id":9163}],"group":76,"orbitIndex":11,"isNotable":true,"name":"Made to Last","orbit":3},"43090":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":43090,"stats":["5% increased Skill Speed","30% increased Electrocute Buildup"],"recipe":["Suffering","Ire","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":939,"orbitIndex":0,"isNotable":true,"name":"Electrotherapy","orbit":0},"37795":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":790,"skill":37795,"orbitIndex":0,"name":"Shield Mastery","orbit":0},"23362":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":23362,"stats":["25% reduced Effect of Chill on you","Unaffected by Chill during Dodge Roll"],"recipe":["Despair","Disgust","Greed"],"connections":[{"orbit":0,"id":32672},{"orbit":0,"id":50403}],"group":947,"orbitIndex":9,"isNotable":true,"name":"Slippery Ice","orbit":3},"33245":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":9151},{"orbit":-2,"id":31918},{"orbit":2,"id":45331}],"group":890,"skill":33245,"orbitIndex":3,"name":"Projectile Damage","orbit":1},"42302":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":42302,"stats":["Projectiles have 75% chance for an additional Projectile when Forking"],"recipe":["Ire","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":4,"id":45331},{"orbit":-4,"id":31918}],"group":890,"orbitIndex":54,"isNotable":true,"name":"Split Shot","orbit":4},"4534":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":4534,"stats":["50% chance to Pierce an Enemy"],"recipe":["Disgust","Guilt","Disgust"],"connections":[],"group":890,"orbitIndex":13,"isNotable":true,"name":"Piercing Shot","orbit":3},"23221":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":23221,"stats":["Projectiles have 15% chance to Chain an additional time from terrain"],"recipe":["Suffering","Isolation","Guilt"],"connections":[],"group":890,"orbitIndex":23,"isNotable":true,"name":"Trick Shot","orbit":3},"62581":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":265,"skill":62581,"orbitIndex":0,"name":"Block Mastery","orbit":0},"9417":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":48121},{"orbit":5,"id":13171}],"group":253,"skill":9417,"orbitIndex":0,"name":"Totem Life","orbit":0},"6792":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33245},{"orbit":0,"id":2408}],"group":890,"skill":6792,"orbitIndex":6,"name":"Projectile Damage","orbit":7},"48846":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":44566}],"group":597,"skill":48846,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"33053":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[],"group":645,"skill":33053,"orbitIndex":22,"name":"Projectile Damage","orbit":7},"59740":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":59740,"stats":[],"group":918,"connections":[],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"6516":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":7,"id":63981},{"orbit":0,"id":12890}],"group":889,"skill":6516,"orbitIndex":22,"name":"Stun Threshold if no recent Stun","orbit":7},"26176":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":43650}],"group":113,"skill":26176,"orbitIndex":8,"name":"Attack Critical Damage","orbit":2},"63981":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":63981,"stats":["30% increased Stun Recovery","30% increased Stun Threshold if you haven't been Stunned Recently"],"recipe":["Envy","Ire","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":8194}],"group":889,"orbitIndex":4,"isNotable":true,"name":"Deft Recovery","orbit":7},"41877":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41877,"stats":["+5 to any Attribute"],"isAttribute":true,"group":888,"connections":[{"orbit":0,"id":53958}],"orbitIndex":0,"name":"Attribute","orbit":0},"64299":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":64299,"stats":["20% increased Effect of Auras from your Aura Skills"],"recipe":["Despair","Envy","Suffering"],"connections":[{"orbit":0,"id":17655}],"group":342,"orbitIndex":20,"isNotable":true,"name":"Bolstering Presence","orbit":2},"54818":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54818,"stats":["+5 to any Attribute"],"isAttribute":true,"group":459,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"11788":{"stats":["12% increased Spell Area Damage","Spell Skills have 5% reduced Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":-4,"id":38732}],"group":571,"skill":11788,"orbitIndex":0,"name":"Spell Area of Effect","orbit":7},"63517":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":48974},{"orbit":2,"id":53958}],"group":887,"skill":63517,"orbitIndex":22,"name":"Mana Flask Recovery","orbit":2},"57832":{"stats":["10% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":46300}],"group":445,"skill":57832,"orbitIndex":9,"name":"Ignite Effect","orbit":2},"48974":{"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":48974,"stats":["25% increased Mana Recovery from Flasks","10% increased Mana Recovery Rate during Effect of any Mana Flask"],"recipe":["Ire","Envy","Guilt"],"connections":[{"orbit":0,"id":47418},{"orbit":0,"id":10738}],"group":887,"orbitIndex":15,"isNotable":true,"name":"Altered Brain Chemistry","orbit":2},"36358":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":12367}],"group":448,"skill":36358,"orbitIndex":4,"name":"Chaos Damage","orbit":3},"11825":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11825,"stats":["+5 to any Attribute"],"isAttribute":true,"group":886,"connections":[{"orbit":0,"id":8194},{"orbit":4,"id":42794},{"orbit":0,"id":54984},{"orbit":0,"id":47374},{"orbit":0,"id":10648}],"orbitIndex":0,"name":"Attribute","orbit":0},"14446":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14446,"stats":["+5 to any Attribute"],"isAttribute":true,"group":885,"connections":[{"orbit":0,"id":61403},{"orbit":0,"id":22713},{"orbit":9,"id":58022},{"orbit":0,"id":45702}],"orbitIndex":0,"name":"Attribute","orbit":0},"55149":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":55149,"stats":["Gain 11% of Damage as Extra Chaos Damage"],"recipe":["Envy","Isolation","Guilt"],"connections":[],"group":884,"orbitIndex":0,"isNotable":true,"name":"Pure Chaos","orbit":0},"29009":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29009,"stats":["+5 to any Attribute"],"isAttribute":true,"group":499,"connections":[{"orbit":0,"id":10079},{"orbit":0,"id":61419}],"orbitIndex":0,"name":"Attribute","orbit":0},"49110":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":7,"id":54746}],"group":752,"skill":49110,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"10247":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10247,"stats":["+5 to any Attribute"],"isAttribute":true,"group":511,"connections":[{"orbit":0,"id":28370}],"orbitIndex":51,"name":"Attribute","orbit":6},"32896":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[],"group":883,"skill":32896,"orbitIndex":9,"name":"Poison Chance","orbit":7},"42959":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":42959,"stats":["60% increased Effect of Poison you inflict on targets that are not Poisoned"],"recipe":["Suffering","Greed","Isolation"],"connections":[{"orbit":-2,"id":32896},{"orbit":0,"id":28903}],"group":883,"orbitIndex":12,"isNotable":true,"name":"Low Tolerance","orbit":7},"28903":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":883,"skill":28903,"orbitIndex":0,"name":"Poison Mastery","orbit":0},"11094":{"stats":["Charms applied to you have 10% increased Effect"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-6,"id":59303}],"group":881,"skill":11094,"orbitIndex":3,"name":"Charm Effect","orbit":7},"36746":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-3,"id":40691}],"group":519,"skill":36746,"orbitIndex":16,"name":"Energy Shield Recharge","orbit":3},"9324":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":41768}],"group":64,"skill":9324,"orbitIndex":0,"name":"Ignite Effect on You","orbit":3},"8045":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-6,"id":64927},{"orbit":5,"id":52464}],"group":880,"skill":8045,"orbitIndex":7,"name":"Mana Leech","orbit":3},"51871":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":51871,"stats":["15% increased maximum Energy Shield","25% increased amount of Mana Leeched"],"recipe":["Guilt","Suffering","Guilt"],"connections":[{"orbit":0,"id":8045}],"group":880,"orbitIndex":0,"isNotable":true,"name":"Immortal Thirst","orbit":0},"45278":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":38138}],"group":509,"skill":45278,"orbitIndex":14,"name":"Reduced Attribute Requirements","orbit":7},"29399":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":23888},{"orbit":-7,"id":51446}],"group":444,"skill":29399,"orbitIndex":20,"name":"Armour and Evasion","orbit":3},"28329":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds","skill":28329,"stats":["35% increased Stun Buildup","35% increased Freeze Buildup"],"recipe":["Guilt","Despair","Ire"],"connections":[{"orbit":3,"id":36723}],"group":878,"orbitIndex":21,"isNotable":true,"name":"Pressure Points","orbit":3},"9037":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":21912}],"group":107,"skill":9037,"orbitIndex":69,"name":"Shapeshifting","orbit":5},"34248":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":37327}],"group":319,"skill":34248,"orbitIndex":20,"name":"Mana Regeneration","orbit":3},"58096":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":58096,"stats":["20% increased Spell Damage","20% increased Skill Effect Duration"],"recipe":["Isolation","Greed","Disgust"],"connections":[{"orbit":0,"id":17411}],"group":262,"orbitIndex":1,"isNotable":true,"name":"Lasting Incantations","orbit":3},"42036":{"icon":"Art/2DArt/SkillIcons/passives/Deflection.dds","skill":42036,"stats":["30% increased Block chance","You take 10% of damage from Blocked Hits"],"recipe":["Greed","Fear","Suffering"],"connections":[{"orbit":0,"id":25535}],"group":980,"orbitIndex":17,"isNotable":true,"name":"Deflection","orbit":4},"59775":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-4,"id":20782}],"group":877,"skill":59775,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"26432":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26432,"stats":["+5 to any Attribute"],"isAttribute":true,"group":876,"connections":[{"orbit":0,"id":12890},{"orbit":0,"id":34015}],"orbitIndex":0,"name":"Attribute","orbit":0},"9968":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":9968,"stats":["25% reduced Shock duration on you","40% increased Elemental Ailment Threshold"],"recipe":["Paranoia","Suffering","Disgust"],"connections":[{"orbit":-6,"id":38678},{"orbit":0,"id":28623}],"group":874,"orbitIndex":0,"isNotable":true,"name":"Feel the Earth","orbit":4},"21495":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":0,"id":31683}],"group":875,"skill":21495,"orbitIndex":14,"name":"Elemental Attack Damage","orbit":3},"31433":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":31433,"stats":["20% increased Elemental Damage with Attacks","5% of Physical Damage from Hits taken as Damage of a Random Element"],"recipe":["Isolation","Isolation","Paranoia"],"connections":[{"orbit":-4,"id":21495},{"orbit":0,"id":5348}],"group":875,"orbitIndex":8,"isNotable":true,"name":"Catalysis","orbit":2},"5348":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":875,"skill":5348,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"38678":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-7,"id":30463},{"orbit":-6,"id":60464}],"group":874,"skill":38678,"orbitIndex":20,"name":"Ailment Threshold","orbit":2},"35831":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":904}],"group":147,"skill":35831,"orbitIndex":7,"name":"Mana Regeneration","orbit":7},"58971":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-6,"id":12998},{"orbit":-7,"id":38678}],"group":874,"skill":58971,"orbitIndex":12,"name":"Ailment Threshold","orbit":2},"30463":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-7,"id":58971},{"orbit":-6,"id":9968}],"group":874,"skill":30463,"orbitIndex":4,"name":"Ailment Threshold","orbit":2},"8975":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8975,"stats":["+5 to any Attribute"],"isAttribute":true,"group":682,"connections":[{"orbit":4,"id":61196}],"orbitIndex":0,"name":"Attribute","orbit":0},"38732":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38732,"stats":["+5 to any Attribute"],"isAttribute":true,"group":561,"connections":[{"orbit":0,"id":28475}],"orbitIndex":0,"name":"Attribute","orbit":0},"55180":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":55180,"stats":["Minions have 20% increased Movement Speed","Minions have 8% increased Attack and Cast Speed"],"recipe":["Despair","Fear","Isolation"],"connections":[],"group":609,"orbitIndex":15,"isNotable":true,"name":"Relentless Fallen","orbit":3},"12998":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":12998,"stats":["25% reduced Freeze Duration on you","60% increased Freeze Threshold"],"recipe":["Ire","Suffering","Fear"],"connections":[{"orbit":-6,"id":30463},{"orbit":0,"id":28623}],"group":874,"orbitIndex":24,"isNotable":true,"name":"Warm the Heart","orbit":4},"21982":{"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":47371}],"group":204,"skill":21982,"orbitIndex":18,"name":"Empowered Attack Damage and Bleeding Chance","orbit":2},"38670":{"stats":["5% increased Attack Speed if you've been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":28589}],"group":38,"skill":38670,"orbitIndex":0,"name":"Attack Speed if Hit","orbit":2},"29148":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29148,"stats":["+5 to any Attribute"],"isAttribute":true,"group":364,"connections":[{"orbit":0,"id":34840},{"orbit":0,"id":33631}],"orbitIndex":0,"name":"Attribute","orbit":0},"33099":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":33099,"stats":["+1 Charm Slot"],"recipe":["Paranoia","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":25029}],"group":872,"orbitIndex":27,"isNotable":true,"name":"Hunter's Talisman","orbit":4},"54990":{"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":54990,"stats":["10% chance to inflict Bleeding on Hit","15% increased Magnitude of Bleeding you inflict"],"recipe":["Fear","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":457,"orbitIndex":1,"isNotable":true,"name":"Bloodletting","orbit":7},"43522":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":38497},{"orbit":6,"id":33099}],"group":872,"skill":43522,"orbitIndex":7,"name":"Charm Charges Used","orbit":7},"59541":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":59541,"stats":["Minions have 40% increased maximum Life","Minions have 10% reduced Life Recovery rate"],"recipe":["Fear","Guilt","Fear"],"connections":[{"orbit":7,"id":28573},{"orbit":0,"id":56926}],"group":630,"orbitIndex":3,"isNotable":true,"name":"Necrotised Flesh","orbit":3},"10131":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10131,"stats":["+5 to any Attribute"],"isAttribute":true,"group":728,"connections":[{"orbit":0,"id":3251},{"orbit":0,"id":44669},{"orbit":0,"id":14127}],"orbitIndex":0,"name":"Attribute","orbit":0},"50755":{"stats":["+8 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","connections":[{"orbit":9,"id":10131},{"orbit":0,"id":39567},{"orbit":8,"id":19355}],"group":680,"skill":50755,"orbitIndex":5,"name":"Intelligence","orbit":5},"59214":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":59214,"stats":["30% increased Curse Duration","Enemies Cursed by you have 50% reduced Life Regeneration Rate","Enemies you Curse cannot Recharge Energy Shield"],"recipe":["Disgust","Isolation","Despair"],"connections":[{"orbit":0,"id":26268},{"orbit":0,"id":6570}],"group":871,"orbitIndex":18,"isNotable":true,"name":"Fated End","orbit":7},"38463":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38463,"stats":["+5 to any Attribute"],"isAttribute":true,"group":869,"connections":[{"orbit":0,"id":46882},{"orbit":-6,"id":21111},{"orbit":5,"id":43522}],"orbitIndex":0,"name":"Attribute","orbit":0},"48585":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":21280},{"orbit":0,"id":20831}],"group":668,"skill":48585,"orbitIndex":9,"name":"Evasion","orbit":7},"14654":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14654,"stats":["+5 to any Attribute"],"isAttribute":true,"group":185,"connections":[{"orbit":0,"id":22616},{"orbit":0,"id":14459},{"orbit":0,"id":21017}],"orbitIndex":0,"name":"Attribute","orbit":0},"29372":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":29372,"stats":["3% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"],"recipe":["Fear","Suffering","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":245,"orbitIndex":0,"isNotable":true,"name":"Sudden Infuriation","orbit":0},"53935":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":53935,"stats":["60% increased Stun Threshold for each time you've been Stunned Recently"],"recipe":["Guilt","Ire","Paranoia"],"connections":[{"orbit":2,"id":10677},{"orbit":0,"id":25281}],"group":677,"orbitIndex":14,"isNotable":true,"name":"Briny Carapace","orbit":2},"46601":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":18568},{"orbit":0,"id":43720}],"group":868,"skill":46601,"orbitIndex":0,"name":"Mana Leech","orbit":2},"10100":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10100,"stats":["+5 to any Attribute"],"isAttribute":true,"group":88,"connections":[{"orbit":0,"id":47263},{"orbit":0,"id":25300}],"orbitIndex":0,"name":"Attribute","orbit":0},"38003":{"stats":["20% increased Weapon Swap Speed"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":4,"id":63526}],"group":518,"skill":38003,"orbitIndex":20,"name":"Weapon Swap Speed","orbit":7},"18568":{"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":-5,"id":46887}],"group":868,"skill":18568,"orbitIndex":7,"name":"Mana Leech and Cold Resistance","orbit":2},"43720":{"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[],"group":868,"skill":43720,"orbitIndex":17,"name":"Mana Leech and Cold Resistance","orbit":2},"53396":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53396,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":6,"id":10156}],"orbitIndex":12,"name":"Attribute","orbit":6},"37594":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8983}],"group":282,"skill":37594,"orbitIndex":35,"name":"Minion Damage","orbit":5},"20782":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-3,"id":52191},{"orbit":0,"id":42361}],"group":867,"skill":20782,"orbitIndex":8,"name":"Chaos Damage","orbit":3},"41573":{"stats":["Damage Penetrates 6% Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","connections":[{"orbit":0,"id":24655}],"group":464,"skill":41573,"orbitIndex":10,"name":"Fire Penetration","orbit":3},"52803":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":52803,"stats":["20% increased Life Recovery from Flasks","Life Flasks gain 0.1 charges per Second"],"recipe":["Envy","Disgust","Disgust"],"connections":[{"orbit":0,"id":59356}],"group":857,"orbitIndex":0,"isNotable":true,"name":"Hale Traveller","orbit":7},"4844":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33053}],"group":645,"skill":4844,"orbitIndex":1,"name":"Projectile Damage","orbit":7},"34473":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":34473,"stats":["3% increased Movement Speed","29% increased Chaos Damage","-13% to Chaos Resistance","23% reduced Light Radius","7% increased Attributes"],"recipe":["Isolation","Despair","Fear"],"connections":[{"orbit":0,"id":42361}],"group":867,"orbitIndex":8,"isNotable":true,"name":"Spaghettification","orbit":2},"26885":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-4,"id":59775}],"group":867,"skill":26885,"orbitIndex":60,"name":"Chaos Damage","orbit":4},"62844":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":32427}],"group":464,"skill":62844,"orbitIndex":18,"name":"Cold Penetration","orbit":3},"64240":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":64240,"stats":["5% increased Attack and Cast Speed","25% increased Physical Damage"],"recipe":["Disgust","Guilt","Isolation"],"connections":[{"orbit":0,"id":52220}],"group":81,"orbitIndex":22,"isNotable":true,"name":"Battle Fever","orbit":2},"57724":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-7,"id":54883}],"group":867,"skill":57724,"orbitIndex":20,"name":"Chaos Damage","orbit":7},"26762":{"stats":["10% increased Effect of Withered"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":-2,"id":35380}],"group":893,"skill":26762,"orbitIndex":0,"name":"Withered Effect","orbit":0},"42658":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42658,"stats":["+5 to any Attribute"],"isAttribute":true,"group":864,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"27662":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":687,"skill":27662,"orbitIndex":14,"name":"Additional Spell Projectiles","orbit":2},"60":{"stats":["5% chance to Blind Enemies on Hit"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":0,"id":58426}],"group":961,"skill":60,"orbitIndex":12,"name":"Blind Chance","orbit":2},"19240":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":19240,"stats":["+5 to any Attribute"],"isAttribute":true,"group":400,"connections":[{"orbit":-6,"id":46358},{"orbit":5,"id":4847}],"orbitIndex":0,"name":"Attribute","orbit":0},"25011":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":362,"skill":25011,"orbitIndex":0,"name":"Life Mastery","orbit":0},"13711":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":4,"id":30562}],"group":767,"skill":13711,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":7},"8789":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":54818},{"orbit":3,"id":63182}],"group":458,"skill":8789,"orbitIndex":12,"name":"Minion Damage","orbit":2},"6355":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-4,"id":14110},{"orbit":4,"id":38124}],"group":151,"skill":6355,"orbitIndex":4,"name":"Totem Damage","orbit":7},"38143":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38143,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[],"orbitIndex":18,"name":"Attribute","orbit":2},"19722":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":19722,"stats":["20% increased Freeze Buildup","50% increased Damage with Hits against Frozen Enemies"],"recipe":["Suffering","Ire","Greed"],"connections":[],"group":862,"orbitIndex":10,"isNotable":true,"name":"Thin Ice","orbit":7},"9782":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":20677}],"group":798,"skill":9782,"orbitIndex":0,"name":"Critical Damage","orbit":0},"535":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":34621}],"group":799,"skill":535,"orbitIndex":0,"name":"Critical Damage","orbit":0},"60170":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":860,"skill":60170,"orbitIndex":0,"name":"Cold Mastery","orbit":0},"28086":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-6,"id":57088},{"orbit":0,"id":144}],"group":860,"skill":28086,"orbitIndex":14,"name":"Cold Penetration","orbit":2},"18073":{"stats":["1% reduced Attack Speed","12% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":7,"id":49952},{"orbit":4,"id":63114}],"group":134,"skill":18073,"orbitIndex":2,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"61487":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-4,"id":36596},{"orbit":0,"id":58109}],"group":590,"skill":61487,"orbitIndex":66,"name":"Damage against Enemies on Low Life","orbit":4},"45343":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":50483},{"orbit":0,"id":14505}],"group":282,"skill":45343,"orbitIndex":19,"name":"Minion Area","orbit":7},"26638":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds","skill":26638,"stats":["Grants Skill: Temporal Rift"],"ascendancyName":"Chronomancer","connections":[{"orbit":9,"id":63002}],"group":186,"orbitIndex":0,"isNotable":true,"name":"Footprints in the Sand","orbit":0},"55708":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":55708,"stats":["Damage Penetrates 18% Lightning Resistance","25% increased Lightning Exposure Effect"],"recipe":["Isolation","Fear","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":581,"orbitIndex":10,"isNotable":true,"name":"Electric Amplification","orbit":7},"28050":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28050,"stats":["+5 to any Attribute"],"isAttribute":true,"group":716,"connections":[{"orbit":0,"id":63888}],"orbitIndex":24,"name":"Attribute","orbit":6},"62051":{"stats":["3% increased Movement Speed if you've Killed Recently"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":-9,"id":21755}],"group":531,"skill":62051,"orbitIndex":0,"name":"Movement Speed","orbit":3},"49235":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42077}],"group":447,"skill":49235,"orbitIndex":7,"name":"Energy Shield Delay","orbit":2},"968":{"stats":["6% increased Fire Damage","6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":6752}],"group":340,"skill":968,"orbitIndex":3,"name":"Fire Damage and Area","orbit":3},"58747":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds","skill":58747,"stats":["Grants Skill: Time Freeze"],"ascendancyName":"Chronomancer","connections":[],"group":192,"orbitIndex":0,"isNotable":true,"name":"Ultimate Command","orbit":0},"21748":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":21748,"stats":["40% faster Curse Activation","Your Curses have 20% increased Effect if 50% of Curse Duration expired"],"recipe":["Envy","Isolation","Ire"],"connections":[{"orbit":0,"id":54725},{"orbit":0,"id":6570}],"group":859,"orbitIndex":6,"isNotable":true,"name":"Impending Doom","orbit":7},"61927":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":14515},{"orbit":0,"id":3698}],"group":149,"skill":61927,"orbitIndex":5,"name":"Jagged Ground Effect","orbit":2},"41044":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-7,"id":47591}],"group":96,"skill":41044,"orbitIndex":19,"name":"Mana Regeneration","orbit":7},"37414":{"stats":["10% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":65193}],"group":234,"skill":37414,"orbitIndex":13,"name":"Accuracy","orbit":2},"21208":{"stats":["3% increased Effect of your Curses","10% faster Curse Activation"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[],"group":859,"skill":21208,"orbitIndex":14,"name":"Curse Activation Speed and Effect","orbit":7},"59356":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":858,"skill":59356,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"57945":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":7412}],"group":858,"skill":57945,"orbitIndex":12,"name":"Life Flask Charge Generation","orbit":7},"29479":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29479,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":0,"id":50469}],"orbitIndex":18,"name":"Attribute","orbit":5},"50302":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":0,"id":63470}],"group":238,"skill":50302,"orbitIndex":11,"name":"Life Costs","orbit":3},"63182":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":3,"id":29930}],"group":458,"skill":63182,"orbitIndex":6,"name":"Minion Life","orbit":7},"16705":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16705,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":4,"id":25851},{"orbit":0,"id":34621},{"orbit":0,"id":31765}],"orbitIndex":66,"name":"Attribute","orbit":6},"53207":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":47635},{"orbit":0,"id":56914}],"group":814,"skill":53207,"orbitIndex":4,"name":"Lightning Penetration","orbit":1},"59540":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreStunBuildupEnemies.dds","skill":59540,"stats":["40% more Damage against Heavy Stunned Enemies"],"ascendancyName":"Titan","connections":[],"group":28,"orbitIndex":67,"isNotable":true,"name":"Surprising Strength","orbit":9},"11504":{"stats":["2% increased Attack Speed","+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":7,"id":30839},{"orbit":0,"id":35696}],"group":896,"skill":11504,"orbitIndex":19,"name":"Attack Speed and Dexterity","orbit":2},"61056":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-4,"id":40399}],"group":855,"skill":61056,"orbitIndex":1,"name":"Energy","orbit":7},"43281":{"stats":["Triggered Spells deal 16% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":47359},{"orbit":7,"id":51934}],"group":855,"skill":43281,"orbitIndex":21,"name":"Triggered Spell Damage","orbit":7},"19846":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":196,"skill":19846,"orbitIndex":6,"name":"Fire Mastery","orbit":1},"14231":{"stats":["Triggered Spells deal 14% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-7,"id":40453}],"group":855,"skill":14231,"orbitIndex":13,"name":"Triggered Spell Damage","orbit":7},"2511":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":2511,"stats":["25% increased Critical Damage Bonus for Attack Damage","+25% to Critical Damage Bonus against Stunned Enemies"],"recipe":["Disgust","Paranoia","Ire"],"connections":[],"group":307,"orbitIndex":20,"isNotable":true,"name":"Sundering","orbit":3},"56841":{"stats":["20% increased Frenzy Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":18451}],"group":706,"skill":56841,"orbitIndex":14,"name":"Frenzy Charge Duration","orbit":2},"3985":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":3985,"stats":["Attack Damage Penetrates 15% of Enemy Elemental Resistances"],"recipe":["Suffering","Isolation","Ire"],"connections":[{"orbit":0,"id":48660},{"orbit":3,"id":64140}],"group":730,"orbitIndex":15,"isNotable":true,"name":"Forces of Nature","orbit":2},"47441":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":47441,"stats":["Offerings have 30% increased Maximum Life","Recover 3% of Life when you create an Offering"],"recipe":["Disgust","Guilt","Fear"],"connections":[{"orbit":0,"id":61992}],"group":544,"orbitIndex":12,"isNotable":true,"name":"Stigmata","orbit":7},"38066":{"stats":["10% increased Armour","Break 15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":25300}],"group":127,"skill":38066,"orbitIndex":12,"name":"Armour Break and Armour","orbit":7},"5009":{"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":5009,"stats":["25% increased Daze Buildup","25% increased Daze Duration"],"recipe":["Ire","Guilt","Paranoia"],"connections":[{"orbit":0,"id":12169}],"group":854,"orbitIndex":0,"isNotable":true,"name":"Seeing Stars","orbit":0},"44420":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":28021}],"group":817,"skill":44420,"orbitIndex":0,"name":"Critical Chance","orbit":0},"17854":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":17854,"stats":["3% increased Movement Speed","30% increased Evasion Rating"],"recipe":["Greed","Disgust","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":7,"id":55275}],"group":850,"orbitIndex":0,"isNotable":true,"name":"Escape Velocity","orbit":4},"46197":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":46197,"stats":["20% reduced Critical Damage Bonus","50% increased Critical Hit Chance"],"recipe":["Suffering","Envy","Greed"],"connections":[{"orbit":0,"id":39237}],"group":903,"orbitIndex":7,"isNotable":true,"name":"Careful Assassin","orbit":2},"45202":{"icon":"Art/2DArt/SkillIcons/passives/totemmax.dds","skill":45202,"isKeystone":true,"stats":["Unlimited number of Summoned Totems","Totems reserve 100 Spirit each"],"group":137,"connections":[{"orbit":0,"id":59093}],"orbitIndex":0,"name":"Ancestral Bond","orbit":0},"18678":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":18678,"stats":["Buffs on you expire 10% slower"],"ascendancyName":"Chronomancer","group":175,"connections":[{"orbit":9,"id":26638}],"orbitIndex":0,"name":"Buff Expiry Rate","orbit":0},"55275":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":6,"id":12890}],"group":850,"skill":55275,"orbitIndex":2,"name":"Evasion","orbit":3},"57039":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":6,"id":44605}],"group":491,"skill":57039,"orbitIndex":4,"name":"Cooldown Recovery Rate","orbit":3},"904":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":28578}],"group":147,"skill":904,"orbitIndex":2,"name":"Mana Regeneration","orbit":7},"63566":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63566,"stats":["+5 to any Attribute"],"isAttribute":true,"group":850,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":62350}],"orbitIndex":36,"name":"Attribute","orbit":6},"3601":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":47191}],"group":138,"skill":3601,"orbitIndex":62,"name":"Fire Damage","orbit":4},"24401":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":63759}],"group":849,"skill":24401,"orbitIndex":22,"name":"Poison Duration","orbit":3},"40200":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":33612},{"orbit":0,"id":61842}],"group":282,"skill":40200,"orbitIndex":0,"name":"Minion Damage","orbit":2},"63759":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":63759,"stats":["Targets can be affected by +1 of your Poisons at the same time","20% reduced Magnitude of Poison you inflict"],"recipe":["Isolation","Disgust","Paranoia"],"connections":[{"orbit":0,"id":26565}],"group":849,"orbitIndex":0,"isNotable":true,"name":"Stacking Toxins","orbit":3},"6951":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":23608}],"group":849,"skill":6951,"orbitIndex":54,"name":"Poison Damage","orbit":4},"61741":{"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":61741,"stats":["10% increased Skill Effect Duration","50% increased Poison Duration"],"recipe":["Despair","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"orbit":2,"id":40024}],"group":849,"orbitIndex":0,"isNotable":true,"name":"Lasting Toxins","orbit":0},"56045":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56045,"stats":["+5 to any Attribute"],"isAttribute":true,"group":732,"connections":[{"orbit":4,"id":24647},{"orbit":0,"id":11604}],"orbitIndex":0,"name":"Attribute","orbit":0},"29041":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":31388}],"group":158,"skill":29041,"orbitIndex":12,"name":"Slow Effect on You","orbit":3},"26596":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":5766},{"orbit":-5,"id":51416}],"group":815,"skill":26596,"orbitIndex":19,"name":"Cast Speed","orbit":3},"14001":{"stats":["6% reduced Charm Charges used"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-3,"id":56893}],"group":848,"skill":14001,"orbitIndex":22,"name":"Charm Charges Used","orbit":2},"1631":{"stats":["10% increased Charm Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":3,"id":29049},{"orbit":-3,"id":14001}],"group":848,"skill":1631,"orbitIndex":4,"name":"Charm Duration","orbit":2},"14127":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":735,"skill":14127,"orbitIndex":16,"name":"Reduced Duration","orbit":2},"52":{"icon":"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds","skill":52,"isKeystone":true,"stats":["Excess Life Recovery from Regeneration is applied to Energy Shield","Energy Shield does not Recharge"],"group":82,"connections":[{"orbit":0,"id":39131}],"orbitIndex":0,"name":"Zealot's Oath","orbit":0},"17282":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":47252}],"group":117,"skill":17282,"orbitIndex":20,"name":"Mana Regeneration","orbit":7},"27290":{"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":27290,"stats":["25% increased Damage with Swords"],"recipe":["Guilt","Greed","Suffering"],"connections":[{"orbit":0,"id":38564}],"group":326,"orbitIndex":0,"isNotable":true,"name":"Heavy Blade","orbit":0},"7163":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":7163,"stats":["12% increased Attack Speed during any Flask Effect"],"recipe":["Despair","Greed","Greed"],"connections":[{"orbit":3,"id":45100},{"orbit":0,"id":23013}],"group":846,"orbitIndex":45,"isNotable":true,"name":"Stimulants","orbit":5},"45100":{"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-3,"id":56928}],"group":846,"skill":45100,"orbitIndex":37,"name":"Attack Speed and Flask Duration","orbit":4},"52319":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52319,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":-6,"id":48305}],"orbitIndex":36,"name":"Attribute","orbit":6},"63525":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":53094}],"group":747,"skill":63525,"orbitIndex":4,"name":"Accuracy and Attack Critical Chance","orbit":7},"5766":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-4,"id":51416},{"orbit":4,"id":16705}],"group":845,"skill":5766,"orbitIndex":60,"name":"Spell Damage","orbit":6},"53196":{"stats":["8% increased Flask and Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":46692}],"group":688,"skill":53196,"orbitIndex":8,"name":"Flask and Charm Charges Gained","orbit":7},"52464":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[],"group":845,"skill":52464,"orbitIndex":24,"name":"Life on Kill","orbit":6},"17348":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":11275}],"group":48,"skill":17348,"orbitIndex":17,"name":"Ignite Effect","orbit":7},"1459":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":47252}],"group":117,"skill":1459,"orbitIndex":12,"name":"Mana Regeneration","orbit":7},"54351":{"stats":["Recover 1% of Life on Kill"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":-6,"id":52464}],"group":845,"skill":54351,"orbitIndex":7,"name":"Life on Kill","orbit":7},"32885":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":6689}],"group":446,"skill":32885,"orbitIndex":33,"name":"Shield Block","orbit":4},"28950":{"icon":"Art/2DArt/SkillIcons/passives/bodysoul.dds","skill":28950,"stats":["10% increased Mana Regeneration Rate","Regenerate 0.5% of Life per second","+5 to Strength and Intelligence"],"recipe":["Despair","Envy","Envy"],"connections":[{"orbit":0,"id":63469},{"orbit":4,"id":22045},{"orbit":0,"id":10156}],"group":403,"orbitIndex":0,"isNotable":true,"name":"Devoted Protector","orbit":0},"34840":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34840,"stats":["+5 to any Attribute"],"isAttribute":true,"group":320,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":27674},{"orbit":0,"id":48618}],"orbitIndex":0,"name":"Attribute","orbit":0},"3698":{"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":3698,"stats":["Enemies in Jagged Ground you create take 10% increased Damage"],"recipe":["Isolation","Isolation","Greed"],"connections":[{"orbit":0,"id":33137}],"group":149,"orbitIndex":11,"isNotable":true,"name":"Spike Pit","orbit":2},"20032":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":20032,"stats":["16% increased Cast Speed if you've dealt a Critical Hit Recently","10% reduced Critical Hit Chance"],"recipe":["Despair","Greed","Guilt"],"connections":[{"orbit":0,"id":28680},{"orbit":0,"id":56762}],"group":246,"orbitIndex":0,"isNotable":true,"name":"Erraticism","orbit":2},"17088":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17088,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":4,"id":51416}],"orbitIndex":48,"name":"Attribute","orbit":6},"41171":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":36341}],"group":685,"skill":41171,"orbitIndex":4,"name":"Attack Speed","orbit":7},"15182":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":15182,"stats":["+5 to any Attribute"],"isAttribute":true,"group":471,"connections":[{"orbit":0,"id":54818}],"orbitIndex":0,"name":"Attribute","orbit":0},"7412":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":45709}],"group":858,"skill":7412,"orbitIndex":15,"name":"Life Flask Charges","orbit":7},"28578":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":147,"skill":28578,"orbitIndex":0,"name":"Mana Regeneration","orbit":7},"30562":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":30562,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","25% reduced effect of Curses on you"],"recipe":["Envy","Greed","Isolation"],"connections":[{"orbit":0,"id":11032}],"group":767,"orbitIndex":16,"isNotable":true,"name":"Inner Faith","orbit":2},"48773":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48773,"stats":["+5 to any Attribute"],"isAttribute":true,"group":1005,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":37484},{"orbit":0,"id":56847}],"orbitIndex":0,"name":"Attribute","orbit":0},"61992":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":544,"skill":61992,"orbitIndex":6,"name":"Minion Offence Mastery","orbit":1},"46989":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[],"group":571,"skill":46989,"orbitIndex":12,"name":"Spell Area of Effect","orbit":7},"21746":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21746,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":46782}],"orbitIndex":12,"name":"Attribute","orbit":6},"25851":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-6,"id":52695},{"orbit":5,"id":36270}],"group":845,"skill":25851,"orbitIndex":0,"name":"Physical Damage","orbit":6},"60138":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":60138,"stats":["Break 30% increased Armour on enemies affected by Ailments","+10 to Strength","25% increased Physical Damage"],"recipe":["Greed","Paranoia","Suffering"],"connections":[{"orbit":0,"id":52695}],"group":845,"orbitIndex":3,"isNotable":true,"name":"Stylebender","orbit":5},"9472":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":9472,"stats":["15% increased Projectile Speed","15% increased Area of Effect for Attacks"],"recipe":["Envy","Disgust","Guilt"],"connections":[{"orbit":0,"id":31991},{"orbit":0,"id":41062}],"group":751,"orbitIndex":0,"isNotable":true,"name":"Catapult","orbit":0},"57821":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":57821,"stats":["+5 to any Attribute"],"isAttribute":true,"group":906,"connections":[{"orbit":0,"id":61834},{"orbit":0,"id":26034},{"orbit":0,"id":22219}],"orbitIndex":12,"name":"Attribute","orbit":4},"56838":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-4,"id":42805},{"orbit":5,"id":62624}],"group":905,"skill":56838,"orbitIndex":2,"name":"Evasion and Energy Shield","orbit":3},"25520":{"icon":"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds","skill":25520,"isKeystone":true,"stats":["Gain Power Charges instead of Frenzy Charges","Gain Frenzy Charges instead of Endurance Charges","Gain Endurance Charges instead of Power Charges"],"group":844,"connections":[],"orbitIndex":0,"name":"Resonance","orbit":0},"63469":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":30834},{"orbit":0,"id":50216}],"group":373,"skill":63469,"orbitIndex":10,"name":"Mana Regeneration","orbit":2},"10364":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","connections":[{"orbit":0,"id":44683},{"orbit":4,"id":55342},{"orbit":0,"id":42857}],"group":610,"skill":10364,"orbitIndex":48,"name":"Skill Speed","orbit":4},"4113":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4627}],"group":541,"skill":4113,"orbitIndex":4,"name":"Freeze Buildup","orbit":7},"7668":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":7668,"stats":["20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks","Empowered Attacks deal 30% increased Damage"],"recipe":["Guilt","Despair","Paranoia"],"connections":[{"orbit":0,"id":62015}],"group":204,"orbitIndex":3,"isNotable":true,"name":"Internal Bleeding","orbit":2},"27785":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":63863}],"group":580,"skill":27785,"orbitIndex":10,"name":"Lightning Penetration","orbit":7},"55400":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":30372}],"group":843,"skill":55400,"orbitIndex":13,"name":"Lightning Penetration","orbit":2},"24812":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":64643}],"group":718,"skill":24812,"orbitIndex":11,"name":"Power Charge Duration","orbit":2},"42065":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":42065,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"recipe":["Fear","Envy","Isolation"],"connections":[{"orbit":0,"id":37532}],"group":843,"orbitIndex":1,"isNotable":true,"name":"Surging Currents","orbit":2},"33180":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":46989},{"orbit":0,"id":60269}],"group":571,"skill":33180,"orbitIndex":15,"name":"Spell Area of Effect","orbit":7},"26034":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-5,"id":45631}],"group":905,"skill":26034,"orbitIndex":10,"name":"Evasion and Energy Shield","orbit":3},"35492":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":485,"skill":35492,"orbitIndex":22,"name":"Minion Offence Mastery","orbit":7},"14655":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":7,"id":372}],"group":213,"skill":14655,"orbitIndex":3,"name":"Armour","orbit":3},"9185":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":60107}],"group":619,"skill":9185,"orbitIndex":5,"name":"Critical Chance","orbit":2},"55041":{"stats":["8% increased Spell Damage","8% reduced Projectile Speed for Spell Skills"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":35564}],"group":794,"skill":55041,"orbitIndex":19,"name":"Spell Damage and Projectile Speed","orbit":3},"39050":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":39050,"stats":["25% increased Damage with Hits against Enemies affected by Elemental Ailments","15% increased Duration of Ignite, Shock and Chill on Enemies"],"recipe":["Disgust","Envy","Isolation"],"connections":[],"group":841,"orbitIndex":4,"isNotable":true,"name":"Exploit","orbit":2},"21572":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":-7,"id":6660},{"orbit":0,"id":7526}],"group":841,"skill":21572,"orbitIndex":20,"name":"Damage against Ailments","orbit":2},"3446":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":3446,"stats":["+5 to any Attribute"],"isAttribute":true,"group":124,"connections":[{"orbit":0,"id":61938}],"orbitIndex":0,"name":"Attribute","orbit":0},"32123":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":54678}],"group":839,"skill":32123,"orbitIndex":4,"name":"Shock Chance","orbit":3},"51821":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51821,"stats":["+5 to any Attribute"],"isAttribute":true,"group":143,"connections":[{"orbit":0,"id":46857},{"orbit":0,"id":33989}],"orbitIndex":0,"name":"Attribute","orbit":0},"12125":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":211,"skill":12125,"orbitIndex":0,"name":"Life Mastery","orbit":0},"47856":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":32561}],"group":481,"skill":47856,"orbitIndex":15,"name":"Two Handed Damage","orbit":2},"55193":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":55193,"stats":["+2 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet"],"recipe":["Ire","Suffering","Paranoia"],"connections":[{"orbit":-2,"id":10944}],"group":838,"orbitIndex":4,"isNotable":true,"name":"Subterfuge Mask","orbit":1},"35688":{"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":16618}],"group":509,"skill":35688,"orbitIndex":10,"name":"Reduced Attribute Requirements","orbit":7},"10944":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[],"group":838,"skill":10944,"orbitIndex":0,"name":"Evasion and Energy Shield","orbit":2},"34898":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":38463}],"group":837,"skill":34898,"orbitIndex":31,"name":"Debuff Expiry","orbit":5},"26772":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":2,"id":24240},{"orbit":3,"id":45774}],"group":837,"skill":26772,"orbitIndex":22,"name":"Slow Effect","orbit":7},"24062":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":24062,"stats":["10% increased Energy Shield Recharge Rate","Recover 2% of Life on Kill","+10 to Intelligence"],"recipe":["Envy","Suffering","Fear"],"connections":[{"orbit":0,"id":54351}],"group":845,"orbitIndex":21,"isNotable":true,"name":"Immortal Infamy","orbit":5},"39470":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":39470,"stats":["Minions have 12% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-6,"id":17754}],"orbitIndex":3,"name":"Minion Life","orbit":8},"32241":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":836,"skill":32241,"orbitIndex":0,"name":"Life Mastery","orbit":0},"8616":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8616,"stats":["+5 to any Attribute"],"isAttribute":true,"group":502,"connections":[{"orbit":0,"id":57710},{"orbit":-4,"id":43576},{"orbit":4,"id":36746}],"orbitIndex":0,"name":"Attribute","orbit":0},"16725":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16725,"stats":["+5 to any Attribute"],"isAttribute":true,"group":283,"connections":[{"orbit":6,"id":27373},{"orbit":-6,"id":36629},{"orbit":0,"id":54811},{"orbit":0,"id":36163}],"orbitIndex":0,"name":"Attribute","orbit":0},"56776":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":56776,"stats":["50% increased Critical Damage Bonus during any Flask Effect"],"recipe":["Suffering","Ire","Envy"],"connections":[{"orbit":0,"id":45609},{"orbit":0,"id":24129}],"group":831,"orbitIndex":6,"isNotable":true,"name":"Cooked","orbit":1},"19470":{"stats":["10% increased Life and Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":658,"skill":19470,"orbitIndex":17,"name":"Life and Mana Flask Recovery","orbit":3},"5108":{"stats":["12% increased Chance to inflict Ailments with One-Handed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[],"group":528,"skill":5108,"orbitIndex":21,"name":"One Handed Ailment Chance","orbit":2},"9798":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":9798,"stats":["4% increased Skill Speed"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":61991}],"orbitIndex":58,"name":"Skill Speed","orbit":9},"9046":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-3,"id":39569},{"orbit":0,"id":56776}],"group":831,"skill":9046,"orbitIndex":6,"name":"Critical Chance","orbit":2},"39569":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":35901}],"group":831,"skill":39569,"orbitIndex":0,"name":"Critical Damage","orbit":7},"17686":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":53996},{"orbit":0,"id":43575}],"group":586,"skill":17686,"orbitIndex":19,"name":"Melee Damage ","orbit":7},"23905":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":27875}],"group":830,"skill":23905,"orbitIndex":0,"name":"Shock Effect","orbit":0},"34375":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-2,"id":48745}],"group":261,"skill":34375,"orbitIndex":8,"name":"Shield Defences","orbit":2},"50420":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-2,"id":51241},{"orbit":0,"id":31364}],"group":819,"skill":50420,"orbitIndex":2,"name":"Charm Charges","orbit":2},"7526":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":7526,"stats":["+5 to any Attribute"],"isAttribute":true,"group":829,"connections":[{"orbit":0,"id":31683},{"orbit":0,"id":46742}],"orbitIndex":0,"name":"Attribute","orbit":0},"23259":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":22864}],"group":695,"skill":23259,"orbitIndex":19,"name":"Attack Critical Chance","orbit":2},"144":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":26598}],"group":828,"skill":144,"orbitIndex":12,"name":"Elemental Damage and Freeze Buildup","orbit":5},"8854":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":8854,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":46644}],"orbitIndex":54,"name":"Life","orbit":8},"19955":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":19955,"stats":["+1 to Level of all Cold Skills"],"recipe":["Isolation","Suffering","Fear"],"connections":[],"group":497,"orbitIndex":6,"isNotable":true,"name":"Endless Blizzard","orbit":4},"33729":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":45712}],"group":828,"skill":33729,"orbitIndex":66,"name":"Elemental Damage and Ignite Chance","orbit":4},"24481":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":721,"skill":24481,"orbitIndex":0,"name":"Recovery Mastery","orbit":0},"55582":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":55582,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":214,"connections":[{"orbit":2147483647,"id":60287}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"11376":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":11376,"stats":["Minions have 40% increased Critical Hit Chance"],"recipe":["Despair","Despair","Suffering"],"connections":[{"orbit":0,"id":35492}],"group":485,"orbitIndex":0,"isNotable":true,"name":"Necrotic Touch","orbit":1},"65154":{"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":77,"skill":65154,"orbitIndex":0,"name":"Totem Mastery","orbit":0},"31295":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":9352}],"group":37,"skill":31295,"orbitIndex":4,"name":"Attack Area","orbit":3},"9736":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":9736,"stats":["Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"],"recipe":["Ire","Ire","Ire"],"connections":[{"orbit":0,"id":61318},{"orbit":0,"id":62235}],"group":618,"orbitIndex":36,"isNotable":true,"name":"Insulated Treads","orbit":4},"35896":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35896,"stats":["+5 to any Attribute"],"isAttribute":true,"group":662,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":53266}],"orbitIndex":0,"name":"Attribute","orbit":0},"64213":{"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-3,"id":12611},{"orbit":3,"id":61246}],"group":828,"skill":64213,"orbitIndex":8,"name":"Elemental Damage and Freeze Buildup","orbit":7},"45609":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":7,"id":39569}],"group":831,"skill":45609,"orbitIndex":18,"name":"Critical Damage","orbit":2},"20649":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":62998},{"orbit":0,"id":2582}],"group":991,"skill":20649,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"59538":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59538,"stats":["+5 to any Attribute"],"isAttribute":true,"group":949,"connections":[{"orbit":0,"id":34912},{"orbit":0,"id":47976}],"orbitIndex":0,"name":"Attribute","orbit":0},"14934":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":14934,"stats":["10% increased Cast Speed","+7% to Chaos Resistance"],"recipe":["Ire","Envy","Suffering"],"connections":[],"group":393,"orbitIndex":4,"isNotable":true,"name":"Spiral into Mania","orbit":2},"17316":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-4,"id":40244},{"orbit":5,"id":62986}],"group":826,"skill":17316,"orbitIndex":48,"name":"One Handed Damage","orbit":4},"63132":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":63132,"stats":[],"group":825,"connections":[{"orbit":0,"id":26885},{"orbit":0,"id":28021},{"orbit":0,"id":42379}],"orbitIndex":5,"name":"Jewel Socket","orbit":4},"54176":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":55463},{"orbit":0,"id":26598}],"group":824,"skill":54176,"orbitIndex":0,"name":"Shock Chance","orbit":0},"61601":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":61601,"stats":["+10 to Dexterity","20% increased Critical Hit Chance"],"recipe":["Ire","Guilt","Disgust"],"connections":[{"orbit":0,"id":44420},{"orbit":0,"id":9586}],"group":823,"orbitIndex":0,"isNotable":true,"name":"True Strike","orbit":0},"21984":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":21984,"stats":[],"group":822,"connections":[{"orbit":0,"id":61403}],"orbitIndex":4,"name":"Jewel Socket","orbit":1},"24165":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24165,"stats":["+5 to any Attribute"],"isAttribute":true,"group":821,"connections":[{"orbit":0,"id":8908},{"orbit":0,"id":25557},{"orbit":0,"id":44628},{"orbit":-6,"id":4328},{"orbit":0,"id":6079}],"orbitIndex":0,"name":"Attribute","orbit":0},"41372":{"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":48030}],"group":584,"skill":41372,"orbitIndex":21,"name":"Energy Shield and Mana Regeneration","orbit":7},"37742":{"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":37742,"stats":["50% increased amount of Mana Leeched","25% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Paranoia","Paranoia","Fear"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":8246}],"group":964,"orbitIndex":9,"isNotable":true,"name":"Manifold Method","orbit":3},"51241":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":-2,"id":55118}],"group":819,"skill":51241,"orbitIndex":10,"name":"Charm Charges","orbit":2},"59480":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":3999},{"orbit":0,"id":36634}],"group":430,"skill":59480,"orbitIndex":69,"name":"Area Damage","orbit":4},"31650":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":16051},{"orbit":0,"id":31017},{"orbit":0,"id":48768}],"group":177,"skill":31650,"orbitIndex":0,"name":"Totem Damage","orbit":5},"55846":{"stats":["Gain 5 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":0,"id":24239}],"group":721,"skill":55846,"orbitIndex":5,"name":"Life on Kill","orbit":1},"38130":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[],"group":187,"skill":38130,"orbitIndex":12,"name":"Warcry Cooldown Speed","orbit":3},"31683":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":31683,"stats":[],"group":851,"connections":[{"orbit":0,"id":63566},{"orbit":0,"id":38678}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"40480":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":40480,"stats":["25% increased Critical Hit Chance against Shocked Enemies","40% increased Magnitude of Shock you inflict with Critical Hits"],"recipe":["Paranoia","Fear","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":1953}],"group":816,"orbitIndex":0,"isNotable":true,"name":"Harmonic Generator","orbit":0},"17254":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":17254,"stats":["15% increased Evasion Rating","8% increased Cast Speed"],"recipe":["Ire","Guilt","Isolation"],"connections":[{"orbit":0,"id":14272},{"orbit":0,"id":26596}],"group":815,"orbitIndex":0,"isNotable":true,"name":"Spell Haste","orbit":0},"38068":{"stats":["12% increased chance to Ignite","12% increased Freeze Buildup","12% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":56409}],"group":466,"skill":38068,"orbitIndex":60,"name":"Elemental Ailment Chance","orbit":4},"40783":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":40783,"stats":["+5 to any Attribute"],"isAttribute":true,"group":560,"connections":[{"orbit":0,"id":11672},{"orbit":0,"id":15358},{"orbit":-6,"id":16845}],"orbitIndex":0,"name":"Attribute","orbit":0},"52373":{"stats":["+2 to Maximum Rage"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-2,"id":37276},{"orbit":7,"id":56342}],"group":212,"skill":52373,"orbitIndex":20,"name":"Maximum Rage","orbit":2},"39423":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":53207}],"group":814,"skill":39423,"orbitIndex":20,"name":"Lightning Penetration","orbit":2},"30456":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":30456,"stats":["50% increased Evasion Rating when on Full Life","25% increased Stun Threshold while on Full Life"],"recipe":["Ire","Ire","Greed"],"connections":[{"orbit":-5,"id":38044}],"group":813,"orbitIndex":0,"isNotable":true,"name":"High Alert","orbit":0},"40721":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":40721,"stats":[],"ascendancyName":"Stormweaver","isAscendancyStart":true,"group":308,"connections":[{"orbit":-6,"id":64789},{"orbit":6,"id":65413},{"orbit":-4,"id":49759},{"orbit":4,"id":13673},{"orbit":0,"id":12488},{"orbit":0,"id":44484}],"orbitIndex":0,"name":"Stormweaver","orbit":9},"30871":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":12208}],"group":812,"skill":30871,"orbitIndex":9,"name":"Life Flasks","orbit":7},"13980":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":13980,"stats":["10% chance to Aftershock for Slam Skills you use with Maces","10% chance to Aftershock for Strike Skills you use with Maces"],"recipe":["Isolation","Paranoia","Disgust"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":14693}],"group":56,"orbitIndex":33,"isNotable":true,"name":"Split the Earth","orbit":4},"35369":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":35369,"stats":["40% increased Mana Regeneration Rate while stationary","20% reduced Mana Regeneration Rate while moving"],"recipe":["Ire","Ire","Envy"],"connections":[{"orbit":0,"id":1459}],"group":117,"orbitIndex":0,"isNotable":true,"name":"Investing Energies","orbit":0},"9411":{"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":49466}],"group":812,"skill":9411,"orbitIndex":15,"name":"Life Flasks","orbit":7},"17411":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":262,"skill":17411,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"41512":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":41512,"stats":["15% increased Melee Damage","15% increased Stun Buildup with Melee Damage","+15 to Strength"],"recipe":["Paranoia","Disgust","Envy"],"connections":[],"group":586,"orbitIndex":13,"isNotable":true,"name":"Heavy Weaponry","orbit":7},"59600":{"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":9411}],"group":811,"skill":59600,"orbitIndex":21,"name":"Life Flasks","orbit":7},"6689":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":51735}],"group":446,"skill":6689,"orbitIndex":39,"name":"Shield Damage","orbit":4},"14045":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":33848}],"group":751,"skill":14045,"orbitIndex":48,"name":"Projectile Damage","orbit":5},"18245":{"stats":["Minions have 8% increased maximum Life","Minions have 8% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":30554},{"orbit":0,"id":21164}],"group":70,"skill":18245,"orbitIndex":16,"name":"Minion Life and Physical Damage Reduction","orbit":7},"43746":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":43746,"stats":["+5 to any Attribute"],"isAttribute":true,"group":641,"connections":[{"orbit":0,"id":16460},{"orbit":0,"id":38143}],"orbitIndex":6,"name":"Attribute","orbit":3},"33445":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-2,"id":30143}],"group":790,"skill":33445,"orbitIndex":3,"name":"Block","orbit":7},"18470":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":3234},{"orbit":0,"id":35901}],"group":809,"skill":18470,"orbitIndex":4,"name":"Pin Buildup","orbit":2},"45530":{"stats":["15% increased Minion Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-7,"id":55180}],"group":609,"skill":45530,"orbitIndex":18,"name":"Minion Accuracy","orbit":7},"56762":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":28839}],"group":246,"skill":56762,"orbitIndex":20,"name":"Cast Speed","orbit":2},"47252":{"stats":["16% increased Mana Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":117,"skill":47252,"orbitIndex":16,"name":"Mana Regeneration","orbit":7},"9272":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[],"group":809,"skill":9272,"orbitIndex":18,"name":"Slow Effect","orbit":7},"53194":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":38130}],"group":187,"skill":53194,"orbitIndex":16,"name":"Warcry Cooldown Speed","orbit":2},"10927":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[],"group":809,"skill":10927,"orbitIndex":14,"name":"Slow Effect","orbit":7},"3234":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":4447}],"group":809,"skill":3234,"orbitIndex":8,"name":"Pin Buildup","orbit":1},"19330":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":435,"skill":19330,"orbitIndex":52,"name":"Life Regeneration","orbit":4},"35028":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":35028,"stats":["Regenerate 2.5% of Life per second while Surrounded"],"recipe":["Disgust","Despair","Greed"],"connections":[{"orbit":0,"id":51974}],"group":480,"orbitIndex":21,"isNotable":true,"name":"In the Thick of It","orbit":2},"38596":{"stats":["15% reduced effect of Curses on you"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":5,"id":31925}],"group":250,"skill":38596,"orbitIndex":14,"name":"Curse Effect on Self","orbit":4},"56638":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":677,"skill":56638,"orbitIndex":2,"name":"Stun Threshold if not Stunned recently","orbit":2},"27733":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":44005},{"orbit":0,"id":2999}],"group":157,"skill":27733,"orbitIndex":30,"name":"Caster Mastery","orbit":4},"43964":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":41645}],"group":805,"skill":43964,"orbitIndex":7,"name":"Armour Break","orbit":2},"57555":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":37608}],"group":422,"skill":57555,"orbitIndex":0,"name":"Bleed Chance","orbit":0},"28982":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":28982,"stats":["+5 to any Attribute"],"isAttribute":true,"group":47,"connections":[{"orbit":0,"id":31295},{"orbit":0,"id":55190}],"orbitIndex":0,"name":"Attribute","orbit":0},"49380":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":49380,"stats":["Break 25% increased Armour"],"ascendancyName":"Warbringer","group":2,"connections":[{"orbit":-7,"id":36659}],"orbitIndex":0,"name":"Armour Break","orbit":0},"26148":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":38969}],"group":804,"skill":26148,"orbitIndex":0,"name":"Accuracy Mastery","orbit":0},"38969":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":38969,"stats":["10% increased Accuracy Rating","Gain Accuracy Rating equal to your Intelligence"],"recipe":["Fear","Suffering","Disgust"],"connections":[{"orbit":0,"id":50588}],"group":803,"orbitIndex":0,"isNotable":true,"name":"Finesse","orbit":0},"13367":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":38969},{"orbit":0,"id":21713}],"group":803,"skill":13367,"orbitIndex":14,"name":"Accuracy","orbit":2},"59355":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":802,"skill":59355,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"20916":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":20916,"stats":["24% increased Attack Damage","10% chance to Blind Enemies on Hit with Attacks"],"recipe":["Envy","Fear","Envy"],"connections":[{"orbit":0,"id":59355}],"group":802,"orbitIndex":8,"isNotable":true,"name":"Blinding Strike","orbit":7},"53989":{"stats":["Gain 1 Rage on Melee Hit"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":-7,"id":29372}],"group":235,"skill":53989,"orbitIndex":0,"name":"Rage on Hit","orbit":0},"29270":{"stats":["10% increased Attack Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-2,"id":7251}],"group":336,"skill":29270,"orbitIndex":16,"name":"Attack Damage","orbit":7},"23861":{"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[],"group":254,"skill":23861,"orbitIndex":8,"name":"Two Handed Damage and Stun","orbit":7},"3128":{"stats":["3% increased Cast Speed with Cold Skills"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":19722}],"group":861,"skill":3128,"orbitIndex":14,"name":"Cast Speed with Cold Skills","orbit":7},"48544":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":0,"id":40166}],"group":797,"skill":48544,"orbitIndex":8,"name":"Attack Mastery","orbit":1},"40166":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":40166,"stats":["8% increased Attack Speed","10% reduced Cost of Skills"],"recipe":["Fear","Ire","Despair"],"connections":[],"group":797,"orbitIndex":8,"isNotable":true,"name":"Deep Trance","orbit":7},"57819":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds","skill":57819,"stats":["Grants 3 additional Skill Slots"],"ascendancyName":"Gemling Legionnaire","connections":[{"orbit":0,"id":53762},{"orbit":0,"id":18146}],"group":304,"orbitIndex":0,"isNotable":true,"name":"Integrated Efficiency","orbit":0},"44628":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":20820}],"group":797,"skill":44628,"orbitIndex":0,"name":"Attack Speed","orbit":7},"59603":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[],"group":635,"skill":59603,"orbitIndex":0,"name":"Life Recoup","orbit":0},"55118":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":0,"id":50420}],"group":819,"skill":55118,"orbitIndex":18,"name":"Charm Charges","orbit":2},"20820":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":40166}],"group":797,"skill":20820,"orbitIndex":16,"name":"Attack Speed","orbit":7},"32856":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":32856,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Chronomancer","group":231,"connections":[{"orbit":0,"id":3605},{"orbit":9,"id":10987}],"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"10382":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10382,"stats":["+5 to any Attribute"],"isAttribute":true,"group":795,"connections":[{"orbit":0,"id":21984}],"orbitIndex":0,"name":"Attribute","orbit":0},"25711":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":25711,"stats":["20% increased Attack Speed while Surrounded"],"recipe":["Guilt","Suffering","Ire"],"connections":[{"orbit":-7,"id":58038}],"group":480,"orbitIndex":9,"isNotable":true,"name":"Thrill of Battle","orbit":2},"16090":{"stats":["6% of Skill Mana Costs Converted to Life Costs"],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","connections":[{"orbit":0,"id":50302}],"group":238,"skill":16090,"orbitIndex":8,"name":"Life Costs","orbit":3},"22682":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[],"group":794,"skill":22682,"orbitIndex":2,"name":"Additional Spell Projectiles","orbit":3},"3027":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":54228}],"group":81,"skill":3027,"orbitIndex":14,"name":"Physical Damage","orbit":2},"50561":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":12418}],"group":90,"skill":50561,"orbitIndex":18,"name":"Empowered Attack Damage","orbit":3},"51565":{"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":2335},{"orbit":0,"id":22682}],"group":794,"skill":51565,"orbitIndex":4,"name":"Additional Spell Projectiles","orbit":3},"2335":{"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":2335,"stats":["20% increased Projectile Speed for Spell Skills"],"recipe":["Despair","Fear","Guilt"],"connections":[{"orbit":0,"id":18121}],"group":794,"orbitIndex":6,"isNotable":true,"name":"Turn the Clock Forward","orbit":3},"62518":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":4,"id":41414}],"group":130,"skill":62518,"orbitIndex":7,"name":"Maximum Fire Resistance","orbit":3},"33244":{"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":212,"skill":33244,"orbitIndex":0,"name":"Rage Mastery","orbit":0},"6923":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":1087}],"group":229,"skill":6923,"orbitIndex":10,"name":"Two Handed Damage","orbit":3},"6660":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":-7,"id":39050}],"group":841,"skill":6660,"orbitIndex":12,"name":"Damage against Ailments","orbit":2},"63888":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63888,"stats":["+5 to any Attribute"],"isAttribute":true,"group":793,"connections":[{"orbit":0,"id":35901},{"orbit":0,"id":28272},{"orbit":0,"id":61356},{"orbit":0,"id":55118}],"orbitIndex":0,"name":"Attribute","orbit":0},"53524":{"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32727}],"group":415,"skill":53524,"orbitIndex":0,"name":"Armour Break","orbit":0},"11916":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[],"group":526,"skill":11916,"orbitIndex":16,"name":"Life Regeneration","orbit":3},"12498":{"stats":["10% increased bonuses gained from Equipped Quiver"],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","connections":[{"orbit":0,"id":30341}],"group":792,"skill":12498,"orbitIndex":0,"name":"Quiver Effect","orbit":0},"13065":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":13065,"stats":["Triggered Spells deal 16% increased Spell Damage"],"ascendancyName":"Invoker","group":1033,"connections":[{"orbit":0,"id":63236}],"orbitIndex":14,"name":"Triggered Spell Damage","orbit":8},"64492":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":7,"id":46688}],"group":826,"skill":64492,"orbitIndex":8,"name":"One Handed Attack Speed","orbit":7},"45331":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":7,"id":23221}],"group":890,"skill":45331,"orbitIndex":21,"name":"Chaining Projectiles","orbit":7},"4377":{"stats":["10% increased Accuracy Rating while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":50273}],"group":551,"skill":4377,"orbitIndex":15,"name":"Dual Wielding Accuracy","orbit":2},"9583":{"stats":["10% increased amount of Life Leeched","10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":47316}],"group":281,"skill":9583,"orbitIndex":21,"name":"Life Leech and Physical Damage","orbit":7},"34201":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34201,"stats":["+5 to any Attribute"],"isAttribute":true,"group":789,"connections":[{"orbit":0,"id":24922},{"orbit":0,"id":46882},{"orbit":0,"id":17316}],"orbitIndex":0,"name":"Attribute","orbit":0},"16466":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":16466,"stats":["5% increased Cast Speed","15% increased Mana Regeneration Rate","+10 to Intelligence"],"recipe":["Fear","Envy","Paranoia"],"connections":[{"orbit":0,"id":40196}],"group":788,"orbitIndex":4,"isNotable":true,"name":"Mental Alacrity","orbit":2},"15304":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":16466}],"group":788,"skill":15304,"orbitIndex":20,"name":"Cast Speed","orbit":2},"43423":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":43423,"stats":["25% increased chance to Ignite","25% increased Freeze Buildup","25% increased chance to Shock","25% increased Electrocute Buildup"],"recipe":["Suffering","Disgust","Greed"],"connections":[{"orbit":0,"id":48660}],"group":730,"orbitIndex":23,"isNotable":true,"name":"Emboldened Avatar","orbit":2},"56330":{"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":6,"id":39570}],"group":776,"skill":56330,"orbitIndex":22,"name":"Bleeding Chance on Critical","orbit":7},"27726":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":-4,"id":7721}],"group":365,"skill":27726,"orbitIndex":8,"name":"Armour","orbit":2},"6008":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":64020},{"orbit":2,"id":58096}],"group":262,"skill":6008,"orbitIndex":0,"name":"Spell Damage","orbit":2},"8800":{"stats":["15% increased Melee Damage with Hits at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":28982}],"group":37,"skill":8800,"orbitIndex":10,"name":"Melee Damage","orbit":3},"55572":{"stats":["8% increased Fire Damage","8% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":57626}],"group":541,"skill":55572,"orbitIndex":20,"name":"Cold and Fire Damage","orbit":7},"40117":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":40117,"stats":["Gain Physical Thorns damage equal to 2% of Armour from equipped Body Armour"],"recipe":["Despair","Guilt","Disgust"],"connections":[],"group":133,"orbitIndex":2,"isNotable":true,"name":"Spiked Armour","orbit":7},"41016":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":785,"skill":41016,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"41965":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","id":37463}},"skill":41965,"stats":["8% increased Spell Damage"],"isSwitchable":true,"group":484,"connections":[{"orbit":-6,"id":1755}],"orbitIndex":21,"name":"Spell Damage","orbit":2},"8821":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":63863}],"group":576,"skill":8821,"orbitIndex":0,"name":"Lightning Damage","orbit":3},"28106":{"stats":["15% increased Life Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":3775}],"group":785,"skill":28106,"orbitIndex":8,"name":"Life Flask Charges","orbit":2},"49165":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":49165,"stats":["12% increased Effect of your Mark Skills"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":59913}],"orbitIndex":27,"name":"Mark Effect","orbit":6},"35696":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":35696,"stats":["+5 to any Attribute"],"isAttribute":true,"group":923,"connections":[{"orbit":0,"id":24070},{"orbit":0,"id":64064}],"orbitIndex":0,"name":"Attribute","orbit":0},"34501":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":34501,"stats":["15% increased Armour and Evasion Rating"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":6935}],"orbitIndex":25,"name":"Armour and Evasion","orbit":5},"30392":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":30392,"stats":["30% increased Life Regeneration rate during Effect of any Life Flask"],"recipe":["Disgust","Despair","Guilt"],"connections":[{"orbit":0,"id":28106},{"orbit":0,"id":41016}],"group":785,"orbitIndex":3,"isNotable":true,"name":"Succour","orbit":2},"23343":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":3,"id":58388}],"group":785,"skill":23343,"orbitIndex":21,"name":"Life Flasks","orbit":2},"36298":{"stats":["10% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":3,"id":8510},{"orbit":6,"id":40918}],"group":784,"skill":36298,"orbitIndex":0,"name":"Ailment Effect","orbit":0},"770":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":770,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-7,"id":10694}],"orbitIndex":7,"name":"Mana","orbit":6},"63236":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds","skill":63236,"stats":["Meta Skills gain 35% more Energy"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":17,"isNotable":true,"name":"The Soul Springs Eternal","orbit":6},"5701":{"stats":["10% increased Effect of your Mark Skills"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":21005}],"group":782,"skill":5701,"orbitIndex":12,"name":"Mark Effect","orbit":2},"1207":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1207,"stats":["+5 to any Attribute"],"isAttribute":true,"group":394,"connections":[{"orbit":0,"id":38323}],"orbitIndex":69,"name":"Attribute","orbit":4},"15051":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":15051,"stats":["Enemies you Mark have 15% reduced Accuracy Rating"],"recipe":["Paranoia","Envy","Ire"],"connections":[{"orbit":3,"id":21005},{"orbit":-7,"id":5701}],"group":782,"orbitIndex":15,"isNotable":true,"name":"Break Focus","orbit":3},"38535":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":38535,"stats":["40% increased Elemental Damage if you've dealt a Critical Hit Recently","20% increased Critical Hit Chance"],"recipe":["Fear","Fear","Envy"],"connections":[{"orbit":7,"id":61063},{"orbit":0,"id":42205}],"group":197,"orbitIndex":66,"isNotable":true,"name":"Stormcharged","orbit":4},"59047":{"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":59047,"stats":["15% increased Effect of your Mark Skills"],"recipe":["Envy","Isolation","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"orbit":-2,"id":21005},{"orbit":2,"id":5701},{"orbit":-2,"id":2656}],"group":782,"orbitIndex":0,"isNotable":true,"name":"Hold Focus","orbit":0},"9586":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":780,"skill":9586,"orbitIndex":10,"name":"Critical Mastery","orbit":4},"3332":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[],"group":390,"skill":3332,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"51213":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":51213,"stats":["15% increased Duration of Damaging Ailments on Enemies","30% increased Damage with Hits against Enemies affected by Ailments"],"recipe":["Guilt","Fear","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":787,"orbitIndex":0,"isNotable":true,"name":"Wasting","orbit":0},"21286":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":4128},{"orbit":0,"id":45992}],"group":273,"skill":21286,"orbitIndex":14,"name":"Armour","orbit":3},"40073":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":40073,"stats":["40% increased chance to Shock","Gain 5% of Lightning Damage as Extra Cold Damage"],"recipe":["Isolation","Suffering","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":608,"orbitIndex":0,"isNotable":true,"name":"Drenched","orbit":0},"49394":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":23786}],"group":776,"skill":49394,"orbitIndex":19,"name":"Critical Bleeding Effect","orbit":7},"13724":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":13724,"stats":["30% increased Damage if you've dealt a Critical Hit in the past 8 seconds","12% increased Critical Hit Chance"],"recipe":["Disgust","Suffering","Envy"],"connections":[{"orbit":0,"id":20236},{"orbit":0,"id":33823}],"group":775,"orbitIndex":54,"isNotable":true,"name":"Deadly Force","orbit":4},"1143":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":58170},{"orbit":0,"id":50084}],"group":406,"skill":1143,"orbitIndex":5,"name":"Spell Critical Damage","orbit":2},"3640":{"stats":["14% increased Damage with Unarmed Attacks"],"icon":"Art/2DArt/SkillIcons/passives/DragonStyle.dds","connections":[{"orbit":-6,"id":14267},{"orbit":6,"id":5188}],"group":993,"skill":3640,"orbitIndex":6,"name":"Unarmed Damage","orbit":7},"48774":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":48774,"stats":["15% of Physical Damage taken Recouped as Life"],"recipe":["Disgust","Ire","Paranoia"],"connections":[{"orbit":0,"id":44850}],"group":546,"orbitIndex":22,"isNotable":true,"name":"Taut Flesh","orbit":7},"46380":{"stats":["20% increased Energy Shield if you've consumed a Power Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":21327}],"group":774,"skill":46380,"orbitIndex":22,"name":"Energy Shield if Consumed Power Charge","orbit":2},"26363":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":49291},{"orbit":0,"id":52803}],"group":857,"skill":26363,"orbitIndex":3,"name":"Life Flask Charge Generation","orbit":7},"56870":{"stats":["10% increased Flask Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[],"group":771,"skill":56870,"orbitIndex":15,"name":"Flask Charges Gained","orbit":7},"22533":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-2,"id":26663},{"orbit":0,"id":21274}],"group":545,"skill":22533,"orbitIndex":23,"name":"Cooldown Recovery Rate","orbit":7},"27990":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":27990,"stats":["Debuffs you inflict have 6% increased Slow Magnitude"],"ascendancyName":"Chronomancer","group":216,"connections":[{"orbit":-3,"id":49049}],"orbitIndex":0,"name":"Slow Effect","orbit":0},"65160":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":65160,"stats":["30% increased Stun Buildup","30% increased Stun Threshold","5% increased Strength"],"recipe":["Despair","Paranoia","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":44069}],"group":69,"orbitIndex":7,"isNotable":true,"name":"Titanic","orbit":3},"62438":{"stats":["10% increased Flask Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":48519}],"group":771,"skill":62438,"orbitIndex":9,"name":"Flask Duration","orbit":7},"8510":{"stats":["Damaging Ailments deal damage 5% faster"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":13030}],"group":770,"skill":8510,"orbitIndex":0,"name":"Faster Ailments","orbit":0},"37806":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":37806,"stats":["60% chance for Lightning Skills to Chain an additional time"],"recipe":["Suffering","Disgust","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":675,"orbitIndex":0,"isNotable":true,"name":"Branching Bolts","orbit":0},"33974":{"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","connections":[{"orbit":0,"id":31189}],"group":553,"skill":33974,"orbitIndex":18,"name":"Attack Damage and Accuracy","orbit":4},"52796":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-6,"id":27687}],"group":80,"skill":52796,"orbitIndex":21,"name":"Shield Damage","orbit":7},"9240":{"stats":["3% increased Attack Speed with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":21225}],"group":954,"skill":9240,"orbitIndex":16,"name":"Spear Attack Speed","orbit":2},"22141":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":54521},{"orbit":0,"id":51797}],"group":381,"skill":22141,"orbitIndex":6,"name":"Life Recoup","orbit":7},"50342":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":50342,"stats":["15% increased Evasion Rating"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":750,"connections":[{"orbit":0,"id":5227}],"orbitIndex":17,"name":"Evasion","orbit":2},"48171":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":131,"skill":48171,"orbitIndex":13,"name":"Cold Damage","orbit":4},"11032":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":767,"skill":11032,"orbitIndex":0,"name":"Evasion and Energy Shield Mastery","orbit":0},"51825":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":47363},{"orbit":0,"id":9164},{"orbit":0,"id":13708}],"group":481,"skill":51825,"orbitIndex":45,"name":"Two Handed Damage","orbit":4},"46325":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":3936},{"orbit":0,"id":33556}],"group":394,"skill":46325,"orbitIndex":5,"name":"Melee Damage","orbit":7},"4959":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":4959,"stats":["20% increased Freeze Buildup","Hits ignore non-negative Elemental Resistances of Frozen Enemies"],"recipe":["Despair","Fear","Paranoia"],"connections":[{"orbit":0,"id":12166}],"group":862,"orbitIndex":2,"isNotable":true,"name":"Heavy Frost","orbit":7},"18742":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":-6,"id":7721},{"orbit":0,"id":62732}],"group":354,"skill":18742,"orbitIndex":6,"name":"Stun Threshold","orbit":3},"51741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":845,"connections":[{"orbit":0,"id":31765},{"orbit":-4,"id":57230},{"orbit":0,"id":57821}],"orbitIndex":12,"name":"Attribute","orbit":6},"27262":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-3,"id":49110}],"group":766,"skill":27262,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"55":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":55,"stats":["Damaging Ailments deal damage 12% faster"],"recipe":["Paranoia","Greed","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":764,"orbitIndex":0,"isNotable":true,"name":"Fast Acting Toxins","orbit":0},"65424":{"stats":["12% increased Attack Damage while Dual Wielding"],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","connections":[{"orbit":0,"id":58109}],"group":551,"skill":65424,"orbitIndex":3,"name":"Dual Wielding Damage","orbit":3},"32818":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":4,"id":48135}],"group":692,"skill":32818,"orbitIndex":6,"name":"Charm Charges","orbit":7},"38923":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":61429},{"orbit":-3,"id":511}],"group":114,"skill":38923,"orbitIndex":12,"name":"Skill Speed","orbit":7},"17024":{"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":37372}],"group":638,"skill":17024,"orbitIndex":0,"name":"Lightning Skill Speed","orbit":0},"61438":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61438,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":0,"id":28510}],"orbitIndex":62,"name":"Attribute","orbit":6},"31888":{"stats":["4% reduced Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","connections":[{"orbit":0,"id":34300}],"group":761,"skill":31888,"orbitIndex":4,"name":"Reduced Mana Cost","orbit":2},"42026":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":63813}],"group":166,"skill":42026,"orbitIndex":22,"name":"Warcry Speed","orbit":7},"12817":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":-7,"id":22967}],"group":172,"skill":12817,"orbitIndex":4,"name":"Shield Defences","orbit":7},"8573":{"stats":["12% increased Damage with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":11526}],"group":1006,"skill":8573,"orbitIndex":26,"name":"Bow Damage","orbit":5},"63037":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":63037,"stats":["30% increased Damage with Hits against Ignited Enemies"],"recipe":["Suffering","Guilt","Ire"],"connections":[{"orbit":0,"id":24430},{"orbit":0,"id":44298}],"group":138,"orbitIndex":70,"isNotable":true,"name":"Sigil of Fire","orbit":4},"31855":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[],"group":737,"skill":31855,"orbitIndex":7,"name":"Life Flasks","orbit":7},"10295":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":10295,"stats":["16% increased Cast Speed","15% increased Mana Cost of Skills"],"recipe":["Fear","Despair","Isolation"],"connections":[{"orbit":0,"id":27733}],"group":157,"orbitIndex":30,"isNotable":true,"name":"Overzealous","orbit":5},"26437":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":51129}],"group":86,"skill":26437,"orbitIndex":19,"name":"Armour Break","orbit":3},"22795":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":28992},{"orbit":0,"id":42781}],"group":690,"skill":22795,"orbitIndex":21,"name":"Projectile Damage","orbit":7},"29408":{"stats":["4% reduced Mana Cost of Skills"],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","connections":[{"orbit":0,"id":31888}],"group":761,"skill":29408,"orbitIndex":8,"name":"Reduced Mana Cost","orbit":2},"34626":{"stats":["Recover 2% of Life for each Endurance Charge consumed"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":61142},{"orbit":0,"id":4527}],"group":99,"skill":34626,"orbitIndex":6,"name":"Recover Life on consuming Endurance Charge","orbit":2},"47316":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":47316,"stats":["5% reduced maximum Life","30% increased amount of Life Leeched","40% increased Physical Damage"],"recipe":["Ire","Isolation","Isolation"],"connections":[{"orbit":0,"id":2888},{"orbit":0,"id":28862}],"group":281,"orbitIndex":16,"isNotable":true,"name":"Goring","orbit":7},"30071":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":30071,"stats":["6% increased Effect of your Curses"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":-9,"id":27667}],"orbitIndex":4,"name":"Curse Effect","orbit":6},"7395":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":7395,"stats":["75% increased Thorns damage if you've Blocked Recently"],"recipe":["Ire","Fear","Suffering"],"connections":[{"orbit":0,"id":30007}],"group":38,"orbitIndex":13,"isNotable":true,"name":"Retaliation","orbit":3},"10047":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":62757}],"group":156,"skill":10047,"orbitIndex":9,"name":"Stun Buildup","orbit":2},"42290":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":-6,"id":38732}],"group":565,"skill":42290,"orbitIndex":10,"name":"Curse Effect","orbit":7},"62841":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-6,"id":17367},{"orbit":0,"id":56045},{"orbit":5,"id":53941}],"group":760,"skill":62841,"orbitIndex":20,"name":"Evasion and Energy Shield","orbit":3},"12786":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"orbit":0,"id":5777},{"orbit":0,"id":18465},{"orbit":0,"id":64299}],"group":335,"skill":12786,"orbitIndex":0,"name":"Aura Mastery","orbit":0},"3516":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":62039},{"orbit":0,"id":23227}],"group":377,"skill":3516,"orbitIndex":0,"name":"Melee Damage","orbit":7},"36814":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[],"group":567,"skill":36814,"orbitIndex":6,"name":"Curse Duration","orbit":7},"17367":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-6,"id":53941},{"orbit":0,"id":12761}],"group":760,"skill":17367,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":3},"53941":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":53941,"stats":["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently","3% increased Movement Speed while you have Energy Shield"],"recipe":["Envy","Envy","Suffering"],"connections":[{"orbit":0,"id":17283}],"group":760,"orbitIndex":12,"isNotable":true,"name":"Shimmering","orbit":3},"50485":{"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":50485,"stats":["40% increased Area of Effect of Curses","8% increased Effect of your Curses","Enemies you Curse are Hindered, with 15% reduced Movement Speed"],"recipe":["Isolation","Isolation","Envy"],"connections":[{"orbit":0,"id":22959}],"group":651,"orbitIndex":18,"isNotable":true,"name":"Zone of Control","orbit":2},"19156":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":19156,"stats":["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds","30% increased Evasion Rating while you have Energy Shield"],"recipe":["Ire","Disgust","Envy"],"connections":[{"orbit":-7,"id":12249},{"orbit":0,"id":17283}],"group":760,"orbitIndex":12,"isNotable":true,"name":"Immaterial","orbit":2},"4519":{"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":13724}],"group":758,"skill":4519,"orbitIndex":0,"name":"Damage on Critical","orbit":0},"55270":{"stats":["15% increased Pin Buildup"],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","connections":[{"orbit":0,"id":60083}],"group":754,"skill":55270,"orbitIndex":1,"name":"Pin Buildup","orbit":7},"33979":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds","skill":33979,"isKeystone":true,"stats":["If you would gain a Charge, Allies in your Presence gain that Charge instead"],"group":753,"connections":[{"orbit":0,"id":4059}],"orbitIndex":0,"name":"Conduit","orbit":0},"36085":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":36085,"stats":["10% increased Critical Hit Chance for Attacks","30% increased Attack Damage against Rare or Unique Enemies"],"recipe":["Paranoia","Disgust","Greed"],"connections":[{"orbit":0,"id":37548},{"orbit":0,"id":15270}],"group":964,"orbitIndex":3,"isNotable":true,"name":"Serrated Edges","orbit":3},"54984":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54984,"stats":["+5 to any Attribute"],"isAttribute":true,"group":943,"connections":[{"orbit":0,"id":60735}],"orbitIndex":0,"name":"Attribute","orbit":0},"7651":{"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":7651,"stats":["Arrows Pierce an additional Target"],"recipe":["Despair","Isolation","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"orbit":0,"id":21788}],"group":1006,"orbitIndex":21,"isNotable":true,"name":"Pierce the Heart","orbit":6},"7878":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":7,"id":53901}],"group":261,"skill":7878,"orbitIndex":16,"name":"Shield Damage from Shield Defences","orbit":2},"33848":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":47677}],"group":751,"skill":33848,"orbitIndex":51,"name":"Projectile Speed","orbit":4},"37543":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":37543,"stats":["15% increased Life Regeneration rate","15% increased Mana Regeneration Rate"],"recipe":["Despair","Envy","Guilt"],"connections":[{"orbit":0,"id":16647}],"group":321,"orbitIndex":18,"isNotable":true,"name":"Full Recovery","orbit":2},"4447":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":4447,"stats":["Enemies are Maimed for 4 seconds after becoming Unpinned","40% increased Pin Buildup"],"recipe":["Disgust","Despair","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":9272},{"orbit":0,"id":10927}],"group":809,"orbitIndex":16,"isNotable":true,"name":"Pinned Down","orbit":3},"47677":{"stats":["8% increased Projectile Speed"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":9472}],"group":751,"skill":47677,"orbitIndex":17,"name":"Projectile Speed","orbit":7},"27296":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27296,"stats":["+5 to any Attribute"],"isAttribute":true,"group":62,"connections":[{"orbit":0,"id":59777},{"orbit":-9,"id":11275},{"orbit":0,"id":18684},{"orbit":0,"id":21670}],"orbitIndex":0,"name":"Attribute","orbit":0},"51708":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":750,"skill":51708,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"29369":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":5,"id":11337},{"orbit":-4,"id":41669}],"group":497,"skill":29369,"orbitIndex":42,"name":"Chill Effect","orbit":4},"17955":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":17955,"stats":["30% reduced Evasion Rating if you have been Hit Recently","100% increased Evasion Rating if you haven't been Hit Recently"],"recipe":["Paranoia","Paranoia","Greed"],"connections":[{"orbit":0,"id":51708}],"group":750,"orbitIndex":6,"isNotable":true,"name":"Careful Consideration","orbit":3},"4059":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4059,"stats":["+5 to any Attribute"],"isAttribute":true,"group":768,"connections":[{"orbit":0,"id":10382}],"orbitIndex":0,"name":"Attribute","orbit":0},"36623":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":36623,"stats":["15% reduced Energy Shield Recharge Rate","40% faster start of Energy Shield Recharge"],"recipe":["Disgust","Suffering","Greed"],"connections":[{"orbit":0,"id":10729},{"orbit":0,"id":31630}],"group":749,"orbitIndex":10,"isNotable":true,"name":"Convalescence","orbit":2},"17517":{"stats":["6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":62978},{"orbit":0,"id":19873}],"group":350,"skill":17517,"orbitIndex":6,"name":"Area of Effect","orbit":2},"29402":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":4046},{"orbit":0,"id":54282}],"group":472,"skill":29402,"orbitIndex":3,"name":"Electrocute Buildup","orbit":7},"47782":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":47782,"stats":["50% increased Weapon Swap Speed"],"recipe":["Envy","Disgust","Ire"],"connections":[{"orbit":4,"id":38003},{"orbit":-4,"id":28361}],"group":518,"orbitIndex":54,"isNotable":true,"name":"Quick-change Act","orbit":4},"14508":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":14508,"stats":["12% increased Magnitude of Poison you inflict"],"ascendancyName":"Pathfinder","group":1053,"connections":[{"orbit":0,"id":13675}],"orbitIndex":0,"name":"Poison Effect","orbit":0},"12918":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":4017}],"group":536,"skill":12918,"orbitIndex":8,"name":"Energy Shield Recharge","orbit":2},"41669":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[],"group":497,"skill":41669,"orbitIndex":12,"name":"Cold Damage","orbit":3},"6891":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":56265}],"group":1002,"skill":6891,"orbitIndex":21,"name":"Critical Damage","orbit":2},"9698":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":113,"skill":9698,"orbitIndex":22,"name":"Critical Mastery","orbit":2},"54127":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":54127,"stats":[],"group":508,"connections":[{"orbit":0,"id":45272}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"8249":{"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":63525},{"orbit":0,"id":16816}],"group":747,"skill":8249,"orbitIndex":10,"name":"Accuracy and Attack Critical Chance","orbit":7},"51416":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-6,"id":32016}],"group":845,"skill":51416,"orbitIndex":54,"name":"Spell Damage","orbit":6},"372":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":372,"stats":["25% of Armour also applies to Fire Damage taken from Hits"],"recipe":["Disgust","Disgust","Greed"],"connections":[{"orbit":0,"id":54340}],"group":213,"orbitIndex":6,"isNotable":true,"name":"Heatproofing","orbit":7},"32701":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32701,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":26598}],"orbitIndex":18,"name":"Attribute","orbit":6},"57230":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":-4,"id":25851},{"orbit":-6,"id":36270}],"group":845,"skill":57230,"orbitIndex":6,"name":"Physical Damage","orbit":6},"9217":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":5108},{"orbit":0,"id":16538},{"orbit":0,"id":47733}],"group":528,"skill":9217,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"19658":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":237,"skill":19658,"orbitIndex":0,"name":"Link Mastery","orbit":0},"43691":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":43691,"stats":["+5 to any Attribute"],"isAttribute":true,"group":746,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":55270}],"orbitIndex":6,"name":"Attribute","orbit":6},"13081":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-5,"id":14254}],"group":490,"skill":13081,"orbitIndex":17,"name":"Projectile Damage","orbit":5},"32474":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32474,"stats":["+5 to any Attribute"],"isAttribute":true,"group":65,"connections":[{"orbit":0,"id":29611},{"orbit":0,"id":26196},{"orbit":0,"id":55888}],"orbitIndex":0,"name":"Attribute","orbit":0},"58783":{"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":26520}],"group":592,"skill":58783,"orbitIndex":19,"name":"Life Leech. Armour and Evasion while Leeching","orbit":2},"54746":{"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":-7,"id":14343}],"group":744,"skill":54746,"orbitIndex":0,"name":"Ailment Chance and Effect","orbit":0},"55227":{"stats":["10% increased amount of Mana Leeched"],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","connections":[{"orbit":0,"id":29479},{"orbit":0,"id":15829}],"group":743,"skill":55227,"orbitIndex":13,"name":"Mana Leech","orbit":7},"32507":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":32507,"stats":["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt","10% chance to inflict Bleeding on Hit","20% increased Physical Damage"],"recipe":["Despair","Envy","Isolation"],"connections":[],"group":426,"orbitIndex":0,"isNotable":true,"name":"Cut to the Bone","orbit":0},"24347":{"stats":["Mark Skills have 10% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":2656},{"orbit":-2,"id":59047}],"group":782,"skill":24347,"orbitIndex":0,"name":"Mark Cast Speed","orbit":2},"33939":{"stats":["+1% to Maximum Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":6872}],"group":67,"skill":33939,"orbitIndex":2,"name":"Maximum Cold Resistance","orbit":3},"37078":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds","skill":37078,"stats":["10% chance for Enemies you Kill to Explode, dealing 100%","of their maximum Life as Physical Damage","Chance is doubled against Undead and Demons"],"ascendancyName":"Witchhunter","connections":[],"group":190,"orbitIndex":0,"isNotable":true,"name":"Zealous Inquisition","orbit":0},"19880":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":59390}],"group":741,"skill":19880,"orbitIndex":12,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"7721":{"icon":"Art/2DArt/SkillIcons/passives/Warrior.dds","skill":7721,"stats":["15% increased Armour","Regenerate 0.5% of Life per second","+10 to Strength"],"recipe":["Despair","Despair","Greed"],"connections":[{"orbit":0,"id":54232},{"orbit":3,"id":61534},{"orbit":-6,"id":18629},{"orbit":0,"id":64683}],"group":408,"orbitIndex":45,"isNotable":true,"name":"Relentless","orbit":4},"11472":{"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","connections":[{"orbit":0,"id":19880},{"orbit":0,"id":40270}],"group":741,"skill":11472,"orbitIndex":20,"name":"Evasion if Consumed Frenzy Charge","orbit":2},"13942":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":65023}],"group":423,"skill":13942,"orbitIndex":3,"name":"Armour","orbit":3},"12451":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-9,"id":24922}],"group":740,"skill":12451,"orbitIndex":12,"name":"Cooldown Recovery Rate","orbit":3},"52068":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds","skill":52068,"stats":["35% less Block chance","Can Block Damage from all Hits while Shield is not Raised"],"ascendancyName":"Warbringer","connections":[],"group":22,"orbitIndex":0,"isNotable":true,"name":"Turtle Charm","orbit":0},"8810":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":8810,"stats":["15% increased Skill Effect Duration","12% increased Cooldown Recovery Rate"],"recipe":["Paranoia","Disgust","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"orbit":2,"id":33751}],"group":740,"orbitIndex":4,"isNotable":true,"name":"Multitasking","orbit":1},"33751":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":7,"id":12451}],"group":740,"skill":33751,"orbitIndex":18,"name":"Cooldown Recovery Rate","orbit":7},"54805":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":54805,"stats":["30% increased Damage with Hits against Hindered Enemies","Debuffs you inflict have 10% increased Slow Magnitude"],"recipe":["Suffering","Greed","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":739,"orbitIndex":27,"isNotable":true,"name":"Hindered Capabilities","orbit":5},"46761":{"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":737,"skill":46761,"orbitIndex":0,"name":"Flask Mastery","orbit":0},"60738":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":37408}],"group":737,"skill":60738,"orbitIndex":19,"name":"Life Flasks","orbit":2},"37408":{"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":37408,"stats":["Life Flasks gain 0.1 charges per Second","+10 to Strength"],"recipe":["Envy","Despair","Disgust"],"connections":[{"orbit":7,"id":31855},{"orbit":0,"id":46761}],"group":737,"orbitIndex":13,"isNotable":true,"name":"Staunching","orbit":2},"51944":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":49406},{"orbit":0,"id":51728},{"orbit":0,"id":47683}],"group":547,"skill":51944,"orbitIndex":15,"name":"Projectile Damage","orbit":3},"44669":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[],"group":735,"skill":44669,"orbitIndex":12,"name":"Increased Duration","orbit":3},"61921":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":61921,"stats":["Damage Penetrates 8% Cold Resistance","Damage Penetrates 15% Lightning Resistance"],"recipe":["Envy","Isolation","Greed"],"connections":[],"group":898,"orbitIndex":23,"isNotable":true,"name":"Storm Surge","orbit":3},"41905":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":41905,"stats":["Minions Revive 15% faster","You gain 2% Life when one of your Minions is Revived"],"recipe":["Ire","Fear","Disgust"],"connections":[{"orbit":0,"id":56926},{"orbit":7,"id":44255}],"group":630,"orbitIndex":0,"isNotable":true,"name":"Gravedigger","orbit":0},"15644":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":15644,"stats":["40% increased Elemental Ailment Threshold","10% reduced Duration of Ailments on You"],"recipe":["Envy","Ire","Paranoia"],"connections":[{"orbit":6,"id":41538},{"orbit":0,"id":44612}],"group":734,"orbitIndex":10,"isNotable":true,"name":"Shedding Skin","orbit":3},"32416":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":32416,"stats":["80% increased Armour from Equipped Body Armour"],"recipe":["Paranoia","Greed","Disgust"],"connections":[{"orbit":-3,"id":27726}],"group":365,"orbitIndex":16,"isNotable":true,"name":"Sturdy Metal","orbit":2},"56703":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":15782},{"orbit":0,"id":28839}],"group":246,"skill":56703,"orbitIndex":8,"name":"Cast Speed","orbit":2},"44612":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":734,"skill":44612,"orbitIndex":0,"name":"Spell Suppression Mastery","orbit":0},"56893":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":56893,"stats":["20% chance for Charms you use to not consume Charges","Recover 5% of Mana when a Charm is used"],"recipe":["Paranoia","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":848,"orbitIndex":16,"isNotable":true,"name":"Thicket Warding","orbit":7},"45923":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":45923,"stats":["+5 to any Attribute"],"isAttribute":true,"group":391,"connections":[{"orbit":0,"id":50084},{"orbit":0,"id":52319}],"orbitIndex":31,"name":"Attribute","orbit":6},"31326":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":31326,"stats":["20% increased Ignite Duration on Enemies","20% increased Magnitude of Ignite you inflict"],"recipe":["Guilt","Suffering","Paranoia"],"connections":[{"orbit":0,"id":44092},{"orbit":0,"id":11505}],"group":340,"orbitIndex":19,"isNotable":true,"name":"Slow Burn","orbit":2},"48660":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"skill":48660,"orbitIndex":0,"name":"Elemental Mastery","orbit":0},"38895":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":38895,"stats":["40% increased Elemental Damage with Attack Skills during any Flask Effect"],"recipe":["Fear","Suffering","Greed"],"connections":[{"orbit":3,"id":8697},{"orbit":0,"id":48660}],"group":730,"orbitIndex":7,"isNotable":true,"name":"Crystal Elixir","orbit":2},"38537":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":38537,"stats":["+10 to Intelligence","25% increased Critical Hit Chance"],"recipe":["Ire","Despair","Paranoia"],"connections":[{"orbit":-3,"id":54983},{"orbit":0,"id":51583}],"group":1014,"orbitIndex":3,"isNotable":true,"name":"Heartstopping","orbit":2},"51336":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":4,"id":56818},{"orbit":0,"id":53965}],"group":730,"skill":51336,"orbitIndex":45,"name":"Elemental Attack Damage","orbit":4},"64140":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-5,"id":51336},{"orbit":-4,"id":30905}],"group":730,"skill":64140,"orbitIndex":10,"name":"Elemental Attack Damage","orbit":3},"21415":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":61493}],"group":193,"skill":21415,"orbitIndex":16,"name":"Stun Threshold from Energy Shield","orbit":3},"24259":{"stats":["Attacks used by Totems have 4% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":62609}],"group":177,"skill":24259,"orbitIndex":32,"name":"Totem Attack Speed","orbit":5},"58939":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":58939,"stats":["80% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"recipe":["Envy","Envy","Paranoia"],"connections":[{"orbit":0,"id":44608}],"group":602,"orbitIndex":8,"isNotable":true,"name":"Dispatch Foes","orbit":2},"27274":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":727,"skill":27274,"orbitIndex":2,"name":"Cold Mastery","orbit":1},"14997":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":47856},{"orbit":0,"id":28370}],"group":483,"skill":14997,"orbitIndex":0,"name":"Two Handed Damage","orbit":0},"49691":{"stats":["+16 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":13828},{"orbit":0,"id":31409},{"orbit":0,"id":61106}],"group":604,"skill":49691,"orbitIndex":21,"name":"Evasion","orbit":7},"2841":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":631,"skill":2841,"orbitIndex":0,"name":"Life Mastery","orbit":0},"55847":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":55847,"stats":["200% increased Ice Crystal Life"],"recipe":["Fear","Paranoia","Disgust"],"connections":[{"orbit":0,"id":27274}],"group":727,"orbitIndex":8,"isNotable":true,"name":"Ice Walls","orbit":7},"49740":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":49740,"stats":["60% reduced Ice Crystal Life"],"recipe":["Suffering","Fear","Ire"],"connections":[{"orbit":0,"id":27274}],"group":727,"orbitIndex":0,"isNotable":true,"name":"Shattered Crystal","orbit":7},"36474":{"stats":["15% reduced effect of Curses on you"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":38596}],"group":250,"skill":36474,"orbitIndex":4,"name":"Curse Effect on Self","orbit":2},"39716":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":31326}],"group":340,"skill":39716,"orbitIndex":13,"name":"Ignite Chance","orbit":2},"47754":{"stats":["10% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":23455}],"group":727,"skill":47754,"orbitIndex":16,"name":"Cold Damage","orbit":7},"25100":{"icon":"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds","skill":25100,"isKeystone":true,"stats":["Cannot use Charms","30% more Recovery from Flasks"],"group":726,"connections":[],"orbitIndex":0,"name":"Oasis","orbit":0},"59542":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds","skill":59542,"stats":["Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres"],"isMultipleChoiceOption":true,"ascendancyName":"Deadeye","group":1034,"connections":[{"orbit":0,"id":42416}],"orbitIndex":0,"name":"Far Shot","orbit":0},"60692":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":60692,"stats":["30% increased Elemental Damage if you've Ignited an Enemy Recently"],"recipe":["Guilt","Suffering","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"orbit":2,"id":16367}],"group":723,"orbitIndex":12,"isNotable":true,"name":"Echoing Flames","orbit":7},"64357":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":50062},{"orbit":0,"id":506}],"group":163,"skill":64357,"orbitIndex":8,"name":"Armour and Energy Shield","orbit":2},"35760":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":6,"id":22359}],"group":723,"skill":35760,"orbitIndex":8,"name":"Elemental Damage","orbit":3},"38338":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-2,"id":5257}],"group":723,"skill":38338,"orbitIndex":60,"name":"Elemental Damage","orbit":4},"13748":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":38338},{"orbit":0,"id":41029}],"group":723,"skill":13748,"orbitIndex":0,"name":"Elemental Damage","orbit":3},"9141":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":13748},{"orbit":6,"id":35760},{"orbit":-2,"id":5703}],"group":723,"skill":9141,"orbitIndex":12,"name":"Elemental Damage","orbit":4},"44605":{"icon":"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds","skill":44605,"stats":["15% increased Projectile Damage","30% increased Stun Buildup against enemies within 2 metres","+5 to Strength and Dexterity"],"recipe":["Greed","Disgust","Guilt"],"connections":[{"orbit":-6,"id":59881},{"orbit":0,"id":13081}],"group":490,"orbitIndex":21,"isNotable":true,"name":"Remorseless","orbit":5},"55507":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":-6,"id":22359},{"orbit":6,"id":38338}],"group":723,"skill":55507,"orbitIndex":16,"name":"Elemental Damage","orbit":3},"5186":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":6800}],"group":908,"skill":5186,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"39658":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-3,"id":45693},{"orbit":3,"id":18831}],"group":722,"skill":39658,"orbitIndex":4,"name":"Block","orbit":7},"49633":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":536,"skill":49633,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"49545":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":45693},{"orbit":0,"id":64851}],"group":722,"skill":49545,"orbitIndex":16,"name":"Shield Defences","orbit":7},"53589":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53589,"stats":["+5 to any Attribute"],"isAttribute":true,"group":405,"connections":[{"orbit":0,"id":25374}],"orbitIndex":0,"name":"Attribute","orbit":0},"13562":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":23650}],"group":359,"skill":13562,"orbitIndex":18,"name":"Life Regeneration on Low Life","orbit":7},"40213":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":40213,"stats":["Gain 20 Life per Enemy Killed","2% chance to Recover all Life when you Kill an Enemy"],"recipe":["Envy","Ire","Greed"],"connections":[{"orbit":0,"id":55846},{"orbit":0,"id":24481}],"group":721,"orbitIndex":1,"isNotable":true,"name":"Taste for Blood","orbit":1},"6800":{"stats":["11% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":4,"id":32438}],"group":899,"skill":6800,"orbitIndex":0,"name":"Chaos Damage","orbit":0},"16":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":16,"stats":["20% increased Life Flask Charges gained"],"ascendancyName":"Pathfinder","group":1056,"connections":[{"orbit":0,"id":41619}],"orbitIndex":0,"name":"Life Flask Charges","orbit":0},"36676":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","skill":36676,"stats":["Grants 1 Passive Skill Point"],"ascendancyName":"Pathfinder","group":1041,"connections":[{"orbit":0,"id":46454}],"orbitIndex":30,"name":"Passive Points","orbit":8},"5564":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48833},{"orbit":0,"id":63585}],"group":717,"skill":5564,"orbitIndex":0,"name":"Electrocute Buildup","orbit":0},"50219":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":50219,"stats":["Debuffs on you expire 10% faster"],"ascendancyName":"Chronomancer","group":199,"connections":[{"orbit":0,"id":42035}],"orbitIndex":0,"name":"Debuff Expiry Rate","orbit":2},"45090":{"stats":["1% reduced Attack Speed","15% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":36027}],"group":134,"skill":45090,"orbitIndex":19,"name":"Attack Damage and Reduced Attack Speed","orbit":7},"23880":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":23880,"stats":["4% increased maximum Mana"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":3,"id":13174}],"orbitIndex":0,"name":"Mana","orbit":8},"30260":{"stats":["Link Skills have 10% increased Buff Effect"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":-7,"id":256},{"orbit":7,"id":57097}],"group":237,"skill":30260,"orbitIndex":19,"name":"Link Buff Effect","orbit":7},"21280":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21280,"stats":["+5 to any Attribute"],"isAttribute":true,"group":713,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":61312},{"orbit":0,"id":40630},{"orbit":0,"id":18831}],"orbitIndex":0,"name":"Attribute","orbit":0},"40244":{"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":-3,"id":43263}],"group":826,"skill":40244,"orbitIndex":15,"name":"One Handed Attack Speed","orbit":7},"56935":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56935,"stats":["+5 to any Attribute"],"isAttribute":true,"group":476,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":34058}],"orbitIndex":0,"name":"Attribute","orbit":0},"9083":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":709,"skill":9083,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"38398":{"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":38398,"stats":["40% reduced Damage","+6% to Critical Hit Chance of Herald Skills"],"recipe":["Suffering","Paranoia","Greed"],"connections":[{"orbit":7,"id":2211}],"group":334,"orbitIndex":14,"isNotable":true,"name":"Apocalypse","orbit":7},"55405":{"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":25620}],"group":709,"skill":55405,"orbitIndex":0,"name":"Corpses","orbit":1},"26804":{"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":55405},{"orbit":0,"id":59909}],"group":709,"skill":26804,"orbitIndex":6,"name":"Corpses","orbit":7},"21912":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":5,"id":32353}],"group":107,"skill":21912,"orbitIndex":9,"name":"Shapeshifting","orbit":5},"13500":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-3,"id":41044},{"orbit":0,"id":4140}],"group":96,"skill":13500,"orbitIndex":11,"name":"Mana Regeneration","orbit":3},"30136":{"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":22626}],"group":97,"skill":30136,"orbitIndex":7,"name":"Damage vs Armour Broken Enemies","orbit":3},"13694":{"stats":["Link Skills have 20% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":11762},{"orbit":0,"id":19658}],"group":255,"skill":13694,"orbitIndex":19,"name":"Link Duration","orbit":7},"42354":{"icon":"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds","skill":42354,"stats":["20% increased Blind Effect","Blind Enemies when they Stun you"],"recipe":["Ire","Guilt","Ire"],"connections":[{"orbit":2,"id":43562},{"orbit":7,"id":3660}],"group":568,"orbitIndex":2,"isNotable":true,"name":"Blinding Flash","orbit":2},"41991":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":61026}],"group":278,"skill":41991,"orbitIndex":2,"name":"Minion Attack and Cast Speed","orbit":3},"30820":{"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":26786}],"group":707,"skill":30820,"orbitIndex":16,"name":"Attack Damage and Skill Duration","orbit":7},"50483":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":61842}],"group":282,"skill":50483,"orbitIndex":22,"name":"Minion Area","orbit":3},"19442":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":19442,"stats":["16% increased Attack Damage","16% increased Skill Effect Duration","Buffs on you expire 10% slower"],"recipe":["Guilt","Despair","Suffering"],"connections":[{"orbit":-3,"id":25170},{"orbit":0,"id":8606}],"group":707,"orbitIndex":8,"isNotable":true,"name":"Prolonged Assault","orbit":2},"32534":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":32534,"stats":[],"ascendancyName":"Titan","isAscendancyStart":true,"group":28,"connections":[{"orbit":0,"id":35453},{"orbit":0,"id":19424},{"orbit":0,"id":13715},{"orbit":0,"id":51690},{"orbit":0,"id":29323}],"orbitIndex":96,"name":"Titan","orbit":9},"56956":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":-4,"id":15885},{"orbit":0,"id":54632}],"group":448,"skill":56956,"orbitIndex":20,"name":"Minion Life and Chaos Resistance","orbit":2},"63255":{"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":63255,"stats":["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently","+1 to Maximum Frenzy Charges"],"recipe":["Suffering","Fear","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":706,"orbitIndex":0,"isNotable":true,"name":"Savagery","orbit":0},"19424":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":19424,"stats":["4% increased Strength"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":60634}],"orbitIndex":48,"name":"Strength","orbit":6},"10474":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":64443},{"orbit":0,"id":53785}],"group":159,"skill":10474,"orbitIndex":12,"name":"Attack Area","orbit":3},"39515":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":23450}],"group":445,"skill":39515,"orbitIndex":8,"name":"Fire Damage","orbit":3},"41363":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":-4,"id":62518},{"orbit":0,"id":62498}],"group":130,"skill":41363,"orbitIndex":9,"name":"Maximum Lightning Resistance","orbit":4},"55048":{"icon":"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds","skill":55048,"isKeystone":true,"stats":["30% less Critical Damage Bonus when on Full Life","30% more Critical Damage Bonus when on Low Life"],"group":44,"connections":[],"orbitIndex":0,"name":"Pain Attunement","orbit":0},"44014":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":11855}],"group":660,"skill":44014,"orbitIndex":8,"name":"Accuracy","orbit":2},"11366":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":11366,"stats":["Gain 8% of Damage as Extra Fire Damage","+20% to Fire Resistance"],"recipe":["Suffering","Isolation","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":6,"id":558}],"group":445,"orbitIndex":2,"isNotable":true,"name":"Volcanic Skin","orbit":5},"29432":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":4061}],"group":412,"skill":29432,"orbitIndex":48,"name":"Energy Shield","orbit":4},"8154":{"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":3921},{"orbit":0,"id":38398}],"group":334,"skill":8154,"orbitIndex":0,"name":"Herald Mastery","orbit":0},"34136":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":34136,"stats":["+5 to any Attribute"],"isAttribute":true,"group":701,"connections":[{"orbit":-5,"id":29479}],"orbitIndex":1,"name":"Attribute","orbit":3},"22331":{"stats":["Minions have +8% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":8983},{"orbit":0,"id":40200}],"group":282,"skill":22331,"orbitIndex":3,"name":"Minion Resistances","orbit":1},"58814":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":58814,"stats":["+5 to any Attribute"],"isAttribute":true,"group":657,"connections":[{"orbit":0,"id":55802},{"orbit":0,"id":244}],"orbitIndex":0,"name":"Attribute","orbit":0},"3165":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":3165,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":699,"connections":[{"orbit":-4,"id":56162}],"orbitIndex":0,"name":"Life","orbit":0},"53149":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":-5,"id":24647}],"group":698,"skill":53149,"orbitIndex":22,"name":"Freeze Buildup","orbit":4},"65413":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":65413,"stats":["12% increased Critical Hit Chance for Spells"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":0,"id":12882}],"orbitIndex":4,"name":"Spell Critical Chance","orbit":8},"40068":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":32683}],"group":698,"skill":40068,"orbitIndex":38,"name":"Freeze Buildup","orbit":4},"22864":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":22864,"stats":["25% increased Critical Hit Chance for Attacks","30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"recipe":["Ire","Despair","Greed"],"connections":[{"orbit":0,"id":57966}],"group":695,"orbitIndex":19,"isNotable":true,"name":"Tainted Strike","orbit":3},"57227":{"stats":["10% increased Critical Hit Chance for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-5,"id":23259}],"group":695,"skill":57227,"orbitIndex":3,"name":"Attack Critical Chance","orbit":2},"19104":{"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","skill":19104,"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"recipe":["Ire","Greed","Guilt"],"connections":[{"orbit":0,"id":29582}],"group":672,"orbitIndex":0,"isNotable":true,"name":"Eagle Eye","orbit":0},"54413":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":694,"skill":54413,"orbitIndex":10,"name":"Spell Suppression Mastery","orbit":3},"65437":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":63064}],"group":694,"skill":65437,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"30334":{"stats":["10% reduced effect of Ignite on you"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":9324}],"group":64,"skill":30334,"orbitIndex":3,"name":"Ignite Effect on You","orbit":3},"63064":{"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","skill":63064,"stats":["30% faster start of Energy Shield Recharge","30% increased Stun Threshold while on Full Life"],"recipe":["Fear","Greed","Guilt"],"connections":[{"orbit":3,"id":30634},{"orbit":0,"id":54413}],"group":694,"orbitIndex":10,"isNotable":true,"name":"Mystic Stance","orbit":2},"58013":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":4844}],"group":645,"skill":58013,"orbitIndex":4,"name":"Projectile Damage","orbit":7},"16618":{"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":16618,"stats":["2% increased Damage per 5 of your lowest Attribute"],"recipe":["Greed","Fear","Envy"],"connections":[{"orbit":0,"id":24511},{"orbit":0,"id":4492}],"group":509,"orbitIndex":24,"isNotable":true,"name":"Jack of all Trades","orbit":5},"50192":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":50192,"stats":["3% increased maximum Life"],"ascendancyName":"Blood Mage","group":693,"connections":[{"orbit":-9,"id":31223}],"orbitIndex":0,"name":"Life","orbit":0},"12750":{"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","skill":12750,"stats":["Charms gain 0.15 charges per Second"],"recipe":["Greed","Disgust","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":692,"orbitIndex":0,"isNotable":true,"name":"Vale Shelter","orbit":0},"31284":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"orbit":0,"id":21380}],"group":762,"skill":31284,"orbitIndex":11,"name":"Critical Mastery","orbit":1},"24009":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":-4,"id":34433},{"orbit":0,"id":21755}],"group":423,"skill":24009,"orbitIndex":27,"name":"Armour and Evasion","orbit":4},"2461":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"orbit":0,"id":44605}],"group":532,"skill":2461,"orbitIndex":0,"name":"Accuracy Mastery","orbit":0},"40043":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54990}],"group":457,"skill":40043,"orbitIndex":0,"name":"Bleeding Damage","orbit":1},"17584":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[],"group":406,"skill":17584,"orbitIndex":17,"name":"Attack Area","orbit":2},"8660":{"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":8660,"stats":["Spell Skills have 20% increased Area of Effect"],"recipe":["Paranoia","Guilt","Fear"],"connections":[{"orbit":0,"id":18846}],"group":233,"orbitIndex":12,"isNotable":true,"name":"Reverberation","orbit":3},"37266":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":37266,"stats":["Minions deal 25% increased Damage"],"recipe":["Ire","Fear","Guilt"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":29930}],"group":458,"orbitIndex":0,"isNotable":true,"name":"Two-Pronged Attack","orbit":0},"50084":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","connections":[{"orbit":0,"id":61525}],"group":436,"skill":50084,"orbitIndex":0,"name":"Damage","orbit":0},"22967":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":22967,"stats":["12% increased Block chance","6 Life gained when you Block"],"recipe":["Guilt","Envy","Guilt"],"connections":[{"orbit":-7,"id":49198},{"orbit":0,"id":38921}],"group":172,"orbitIndex":1,"isNotable":true,"name":"Vigilance","orbit":3},"8875":{"stats":["15% increased Electrocute Buildup"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":50687}],"group":472,"skill":8875,"orbitIndex":8,"name":"Electrocute Buildup","orbit":1},"27493":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":17118}],"group":613,"skill":27493,"orbitIndex":24,"name":"Projectile Damage","orbit":4},"30695":{"icon":"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds","skill":30695,"stats":["33% increased Damage with Hits against Enemies affected by Elemental Ailments"],"recipe":["Paranoia","Despair","Suffering"],"connections":[{"orbit":0,"id":13783},{"orbit":0,"id":19808},{"orbit":0,"id":56472}],"group":690,"orbitIndex":14,"isNotable":true,"name":"Vile Wounds","orbit":2},"46692":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":46692,"stats":["20% increased Flask and Charm Charges gained","40% increased Life and Mana Recovery from Flasks while you have an active Charm"],"recipe":["Fear","Ire","Guilt"],"connections":[{"orbit":0,"id":9393}],"group":688,"orbitIndex":12,"isNotable":true,"name":"Efficient Alchemy","orbit":7},"12322":{"stats":["8% increased Flask and Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","connections":[{"orbit":0,"id":53196}],"group":688,"skill":12322,"orbitIndex":4,"name":"Flask and Charm Charges Gained","orbit":7},"36677":{"stats":["10% increased Critical Hit Chance with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":9240},{"orbit":0,"id":36071},{"orbit":0,"id":9227}],"group":954,"skill":36677,"orbitIndex":0,"name":"Spear Critical Chance","orbit":0},"21540":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":34367},{"orbit":0,"id":40783}],"group":546,"skill":21540,"orbitIndex":10,"name":"Life Recoup","orbit":7},"25827":{"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":55241}],"group":687,"skill":25827,"orbitIndex":8,"name":"Additional Spell Projectiles","orbit":3},"46157":{"stats":["20% chance for Lightning Skills to Chain an additional time"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":37806}],"group":686,"skill":46157,"orbitIndex":0,"name":"Lightning Skill Chain Chance","orbit":0},"36341":{"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":36341,"stats":["25% increased Culling Strike Threshold"],"recipe":["Despair","Guilt","Suffering"],"connections":[{"orbit":0,"id":35118}],"group":685,"orbitIndex":10,"isNotable":true,"name":"Cull the Hordes","orbit":2},"32349":{"icon":"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds","skill":32349,"isKeystone":true,"stats":["You can wield Two-Handed Axes, Maces and Swords in one hand","Triple Attribute requirements of weapons"],"group":102,"connections":[{"orbit":0,"id":3446}],"orbitIndex":0,"name":"Giant's Blood","orbit":0},"59342":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","skill":59342,"stats":["12% increased amount of Life Leeched"],"ascendancyName":"Blood Mage","group":647,"connections":[{"orbit":9,"id":23416}],"orbitIndex":68,"name":"Life Leech","orbit":6},"26196":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":26196,"stats":[],"group":73,"connections":[{"orbit":0,"id":33722},{"orbit":0,"id":39131}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"37767":{"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":9020},{"orbit":0,"id":6596},{"orbit":0,"id":63731}],"group":685,"skill":37767,"orbitIndex":16,"name":"Attack Speed","orbit":7},"244":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":52354}],"group":685,"skill":244,"orbitIndex":66,"name":"Attack Damage","orbit":4},"52354":{"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","connections":[{"orbit":0,"id":41171}],"group":684,"skill":52354,"orbitIndex":0,"name":"Attack Damage","orbit":0},"52300":{"stats":["Gain 1 Rage on Melee Axe Hit"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":53440}],"group":78,"skill":52300,"orbitIndex":9,"name":"Axe Rage on Hit","orbit":3},"16948":{"stats":["Link Skills have 8% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":0,"id":50423},{"orbit":7,"id":21879}],"group":285,"skill":16948,"orbitIndex":7,"name":"Link Cast Speed","orbit":7},"26931":{"stats":["Gain 3 Life per Enemy Killed"],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","connections":[{"orbit":5,"id":48198}],"group":681,"skill":26931,"orbitIndex":10,"name":"Life on Kill","orbit":3},"45599":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":45599,"stats":["1% increased Damage per 1% Chance to Block"],"recipe":["Fear","Envy","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"orbit":0,"id":6689},{"orbit":0,"id":32885}],"group":446,"orbitIndex":12,"isNotable":true,"name":"Lay Siege","orbit":7},"54785":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":32885}],"group":446,"skill":54785,"orbitIndex":7,"name":"Shield Block","orbit":2},"10738":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":887,"skill":10738,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"39190":{"stats":["15% increased Melee Damage with Hits at Close Range"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":8800}],"group":37,"skill":39190,"orbitIndex":12,"name":"Melee Damage","orbit":3},"62984":{"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":62984,"stats":["24% increased Evasion Rating","24% increased maximum Energy Shield"],"recipe":["Paranoia","Envy","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"orbit":0,"id":15975}],"group":681,"orbitIndex":4,"isNotable":true,"name":"Mindful Awareness","orbit":2},"59466":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-7,"id":37226}],"group":223,"skill":59466,"orbitIndex":0,"name":"Empowered Attack Damage","orbit":7},"61985":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds","skill":61985,"stats":["Targets can be affected by two of your Chills at the same time","Your Chills can Slow targets by up to a maximum of 35%","25% less Magnitude of Chill you inflict"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":29398}],"group":308,"orbitIndex":6,"isNotable":true,"name":"Heavy Snows","orbit":6},"15975":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":5,"id":48198}],"group":681,"skill":15975,"orbitIndex":13,"name":"Evasion and Energy Shield","orbit":2},"46854":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":46854,"stats":["10% increased Projectile Speed"],"ascendancyName":"Deadeye","group":1030,"connections":[{"orbit":0,"id":12033},{"orbit":0,"id":42416}],"orbitIndex":8,"name":"Projectile Speed","orbit":3},"25172":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":25172,"stats":["6% increased Cooldown Recovery Rate"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":46535}],"orbitIndex":12,"name":"Cooldown Recovery Rate","orbit":3},"8535":{"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":8535,"stats":["25% increased Damage with Flails"],"recipe":["Disgust","Envy","Paranoia"],"connections":[],"group":41,"orbitIndex":7,"isNotable":true,"name":"Spiked Whip","orbit":2},"49759":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":49759,"stats":["20% increased chance to Shock"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":6,"id":2857}],"orbitIndex":71,"name":"Shock Chance","orbit":8},"47709":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":63814},{"orbit":0,"id":40336}],"group":451,"skill":47709,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"46296":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":46296,"stats":["15% reduced Projectile Speed","20% increased Projectile Damage"],"recipe":["Suffering","Guilt","Envy"],"connections":[],"group":613,"orbitIndex":4,"isNotable":true,"name":"Short Shot","orbit":1},"38601":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds","skill":38601,"stats":["50% less Armour and Evasion Rating","Grants Skill: Sorcery Ward"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":34501}],"group":152,"orbitIndex":28,"isNotable":true,"name":"Obsessive Rituals","orbit":6},"36379":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":25026}],"group":680,"skill":36379,"orbitIndex":58,"name":"Mana Regeneration","orbit":4},"49938":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49938,"stats":["+5 to any Attribute"],"isAttribute":true,"group":189,"connections":[{"orbit":0,"id":47931},{"orbit":0,"id":28002},{"orbit":0,"id":51795}],"orbitIndex":0,"name":"Attribute","orbit":0},"48635":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48635,"stats":["+5 to any Attribute"],"isAttribute":true,"group":515,"connections":[{"orbit":0,"id":63526},{"orbit":4,"id":28361},{"orbit":-4,"id":43444}],"orbitIndex":0,"name":"Attribute","orbit":0},"46060":{"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":46060,"stats":["20% of Leech is Instant"],"recipe":["Greed","Isolation","Suffering"],"connections":[{"orbit":-2,"id":29270},{"orbit":0,"id":7488}],"group":336,"orbitIndex":20,"isNotable":true,"name":"Voracious","orbit":7},"38053":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":38053,"stats":["25% increased Warcry Cooldown Recovery Rate","8% increased Damage for each time you've Warcried Recently"],"recipe":["Disgust","Guilt","Paranoia"],"connections":[{"orbit":0,"id":8460},{"orbit":-2,"id":40328}],"group":93,"orbitIndex":1,"isNotable":true,"name":"Deafening Cries","orbit":3},"37608":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":53524},{"orbit":0,"id":61042}],"group":426,"skill":37608,"orbitIndex":45,"name":"Physical Damage","orbit":4},"54311":{"stats":["15% increased Magnitude of Ignite you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":7,"id":28482}],"group":196,"skill":54311,"orbitIndex":18,"name":"Critical Ignite Effect","orbit":2},"28021":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":9782}],"group":807,"skill":28021,"orbitIndex":0,"name":"Critical Damage","orbit":0},"29871":{"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","skill":29871,"stats":["4% increased Skill Speed"],"ascendancyName":"Deadeye","group":1032,"connections":[{"orbit":0,"id":5817}],"orbitIndex":0,"name":"Skill Speed","orbit":0},"43142":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":184,"skill":43142,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"56162":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds","skill":56162,"stats":["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"],"ascendancyName":"Blood Mage","connections":[{"orbit":-9,"id":50192}],"group":647,"orbitIndex":13,"isNotable":true,"name":"Grasping Wounds","orbit":8},"62200":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":-3,"id":8460},{"orbit":-4,"id":38053}],"group":93,"skill":62200,"orbitIndex":20,"name":"Warcry Cooldown Speed","orbit":2},"44343":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44343,"stats":["+5 to any Attribute"],"isAttribute":true,"group":615,"connections":[{"orbit":0,"id":55276}],"orbitIndex":36,"name":"Attribute","orbit":5},"63445":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":43562}],"group":568,"skill":63445,"orbitIndex":8,"name":"Attack Speed","orbit":3},"48717":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":98,"skill":48717,"orbitIndex":16,"name":"Armour Mastery","orbit":7},"4456":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4456,"stats":["+5 to any Attribute"],"isAttribute":true,"group":464,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":4776}],"orbitIndex":0,"name":"Attribute","orbit":0},"57097":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":57097,"stats":["Link Skills can target Damageable Minions"],"recipe":["Greed","Ire","Suffering"],"connections":[{"orbit":0,"id":19658},{"orbit":7,"id":13694}],"group":237,"orbitIndex":13,"isNotable":true,"name":"Spirit Bonds","orbit":2},"54708":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":13855},{"orbit":0,"id":3918}],"group":420,"skill":54708,"orbitIndex":11,"name":"Mana Regeneration","orbit":2},"31977":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":4828},{"orbit":6,"id":10314}],"group":680,"skill":31977,"orbitIndex":36,"name":"Mana Regeneration","orbit":5},"37872":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":37872,"stats":["Allies in your Presence have +100 to Accuracy Rating","35% increased Attack Damage while you have an Ally in your Presence"],"recipe":["Ire","Fear","Isolation"],"connections":[{"orbit":0,"id":27270},{"orbit":0,"id":28863}],"group":553,"orbitIndex":4,"isNotable":true,"name":"Presence Present","orbit":7},"11762":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":255,"skill":11762,"orbitIndex":0,"name":"Link Mastery","orbit":0},"7473":{"stats":["Herald Skills deal 20% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-4,"id":64471}],"group":334,"skill":7473,"orbitIndex":23,"name":"Herald Damage","orbit":7},"56104":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981}],"group":402,"skill":56104,"orbitIndex":0,"name":"Armour Break","orbit":0},"51394":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":51394,"stats":["24% reduced Slowing Potency of Debuffs on You"],"recipe":["Isolation","Envy","Isolation"],"connections":[{"orbit":0,"id":29993}],"group":158,"orbitIndex":2,"isNotable":true,"name":"Unimpeded","orbit":3},"44017":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds","skill":44017,"isKeystone":true,"stats":["Your Hits can't be Evaded","Never deal Critical Hits"],"group":122,"connections":[{"orbit":0,"id":4527}],"orbitIndex":0,"name":"Resolute Technique","orbit":0},"48821":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":-6,"id":15618}],"group":504,"skill":48821,"orbitIndex":6,"name":"Spell Critical Damage","orbit":2},"47242":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":75,"skill":47242,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"43366":{"stats":["Minions have 12% additional Physical Damage Reduction"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":2606},{"orbit":0,"id":4407}],"group":355,"skill":43366,"orbitIndex":0,"name":"Minion Physical Damage Reduction","orbit":0},"23786":{"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33391}],"group":776,"skill":23786,"orbitIndex":9,"name":"Critical Bleeding Effect","orbit":2},"23078":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":23078,"stats":["Minions have 25% increased maximum Life"],"recipe":["Disgust","Despair","Suffering"],"connections":[{"orbit":0,"id":47242}],"group":75,"orbitIndex":3,"isNotable":true,"name":"Holy Protector","orbit":3},"25213":{"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":19223}],"group":553,"skill":25213,"orbitIndex":12,"name":"Attack Damage with nearby Ally","orbit":7},"53089":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":9918},{"orbit":0,"id":10474}],"group":159,"skill":53089,"orbitIndex":12,"name":"Attack Area","orbit":2},"13769":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-4,"id":2254}],"group":505,"skill":13769,"orbitIndex":8,"name":"Mana Regeneration","orbit":2},"14439":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":3,"id":5728}],"group":52,"skill":14439,"orbitIndex":8,"name":"Armour and Energy Shield","orbit":7},"25700":{"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":4,"id":41096}],"group":828,"skill":25700,"orbitIndex":42,"name":"Elemental Damage and Shock Chance","orbit":4},"61063":{"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[],"group":197,"skill":61063,"orbitIndex":0,"name":"Elemental Penetration","orbit":3},"53188":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":680,"skill":53188,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"51832":{"stats":["16% increased Damage with Warcries"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":47722}],"group":90,"skill":51832,"orbitIndex":6,"name":"Warcry Damage","orbit":2},"45272":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":42280}],"group":509,"skill":45272,"orbitIndex":0,"name":"All Attributes","orbit":5},"43938":{"stats":["6% increased Trap Throwing Speed"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":37688}],"group":974,"skill":43938,"orbitIndex":39,"name":"Trap Throw Speed","orbit":6},"28475":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":28475,"stats":[],"group":611,"connections":[{"orbit":0,"id":35896}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"50986":{"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","classesStart":["Duelist","Mercenary"],"skill":50986,"stats":[],"group":512,"connections":[{"orbit":0,"id":39383},{"orbit":0,"id":10889},{"orbit":0,"id":62386},{"orbit":0,"id":36252},{"orbit":0,"id":7120},{"orbit":0,"id":55536},{"orbit":0,"id":59915}],"orbitIndex":0,"name":"DUELIST","orbit":0},"21606":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":2606},{"orbit":0,"id":29148}],"group":367,"skill":21606,"orbitIndex":12,"name":"Minion Life","orbit":3},"28975":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":28975,"stats":["2% increased Lightning Damage per 10 Intelligence"],"recipe":["Suffering","Guilt","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":26905}],"group":576,"orbitIndex":0,"isNotable":true,"name":"Pure Power","orbit":6},"25312":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":24259},{"orbit":0,"id":64405}],"group":177,"skill":25312,"orbitIndex":36,"name":"Totem Damage","orbit":5},"48581":{"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":48581,"stats":["24% increased Damage with Hits against Enemies affected by Elemental Ailments","30% increased chance to inflict Ailments against Rare or Unique Enemies"],"recipe":["Greed","Fear","Isolation"],"connections":[{"orbit":0,"id":33242},{"orbit":0,"id":13387}],"group":411,"orbitIndex":0,"isNotable":true,"name":"Exploit the Elements","orbit":6},"53329":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":64724},{"orbit":0,"id":41768}],"group":64,"skill":53329,"orbitIndex":23,"name":"Ignite Chance","orbit":2},"41163":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":982,"skill":41163,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"30829":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":56999}],"group":660,"skill":30829,"orbitIndex":0,"name":"Accuracy","orbit":2},"16084":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":57552}],"group":224,"skill":16084,"orbitIndex":0,"name":"One Handed Damage","orbit":0},"18407":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18407,"stats":["+5 to any Attribute"],"isAttribute":true,"group":468,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"40915":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds","skill":40915,"stats":["20% of Damage from Hits is taken from your nearest Totem's Life before you"],"ascendancyName":"Warbringer","connections":[],"group":9,"orbitIndex":0,"isNotable":true,"name":"Wooden Wall","orbit":0},"27418":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":27418,"stats":["4% increased Strength"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":0,"id":30115}],"orbitIndex":48,"name":"Strength","orbit":4},"15083":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":15083,"stats":["25% increased Shock Duration","25% increased Magnitude of Shock you inflict"],"recipe":["Guilt","Suffering","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":556,"orbitIndex":0,"isNotable":true,"name":"Power Conduction","orbit":0},"12337":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":12337,"stats":["30% increased chance to Shock","Damage Penetrates 15% Lightning Resistance"],"recipe":["Paranoia","Ire","Isolation"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":5295}],"group":676,"orbitIndex":0,"isNotable":true,"name":"Flash Storm","orbit":0},"29323":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","skill":29323,"stats":["20% increased Armour"],"ascendancyName":"Titan","group":28,"connections":[{"orbit":4,"id":24807}],"orbitIndex":53,"name":"Armour","orbit":6},"65023":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":65023,"stats":["Defend with 150% of Armour against Attacks from further than 6m"],"recipe":["Paranoia","Paranoia","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":423,"orbitIndex":6,"isNotable":true,"name":"Impenetrable Shell","orbit":3},"30457":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":54416},{"orbit":0,"id":28982}],"group":66,"skill":30457,"orbitIndex":18,"name":"Armour","orbit":7},"60464":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":60464,"stats":["25% reduced Ignite Duration on you","40% increased Elemental Ailment Threshold"],"recipe":["Suffering","Paranoia","Despair"],"connections":[{"orbit":-6,"id":58971},{"orbit":0,"id":28623}],"group":874,"orbitIndex":48,"isNotable":true,"name":"Fan the Flames","orbit":4},"43562":{"stats":["8% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":0,"id":3660}],"group":568,"skill":43562,"orbitIndex":4,"name":"Blind Chance","orbit":3},"50423":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":50423,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[{"orbit":0,"id":38856}],"orbitIndex":57,"name":"Attribute","orbit":6},"32274":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":604,"skill":32274,"orbitIndex":0,"name":"Evasion Mastery","orbit":0},"23702":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":55802},{"orbit":0,"id":57196},{"orbit":0,"id":63445}],"group":568,"skill":23702,"orbitIndex":12,"name":"Attack Speed","orbit":3},"46857":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42916}],"group":163,"skill":46857,"orbitIndex":22,"name":"Energy Shield Delay","orbit":3},"39517":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[],"group":354,"skill":39517,"orbitIndex":18,"name":"Block","orbit":3},"59785":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59785,"stats":["+5 to any Attribute"],"isAttribute":true,"group":54,"connections":[{"orbit":0,"id":27296},{"orbit":0,"id":1200},{"orbit":0,"id":33452},{"orbit":0,"id":8852}],"orbitIndex":0,"name":"Attribute","orbit":0},"17378":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":40894}],"group":278,"skill":17378,"orbitIndex":22,"name":"Minion Life","orbit":3},"34552":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":278,"skill":34552,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"8194":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[],"group":889,"skill":8194,"orbitIndex":10,"name":"Stun Threshold if no recent Stun","orbit":7},"24630":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":24630,"stats":["40% increased chance to Ignite","40% increased Damage with Hits against Ignited Enemies"],"recipe":["Suffering","Suffering","Greed"],"connections":[{"orbit":0,"id":63608}],"group":45,"orbitIndex":0,"isNotable":true,"name":"Fulmination","orbit":0},"30523":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":30523,"stats":["Minions have 25% increased Evasion Rating","Your Dexterity is added to your Minions"],"recipe":["Despair","Fear","Ire"],"connections":[{"orbit":0,"id":35492}],"group":485,"orbitIndex":64,"isNotable":true,"name":"Dead can Dance","orbit":5},"53386":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57388}],"group":113,"skill":53386,"orbitIndex":0,"name":"Attack Critical Damage","orbit":7},"35653":{"stats":["12% increased Grenade Damage"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":35653},{"orbit":0,"id":65468}],"group":557,"skill":35653,"orbitIndex":0,"name":"Grenade Damage","orbit":0},"51052":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":51052,"stats":["+5 to any Attribute"],"isAttribute":true,"group":275,"connections":[{"orbit":0,"id":22558}],"orbitIndex":60,"name":"Attribute","orbit":6},"18465":{"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":18465,"stats":["20% increased Critical Damage Bonus","20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"recipe":["Envy","Greed","Despair"],"connections":[{"orbit":0,"id":39540}],"group":342,"orbitIndex":44,"isNotable":true,"name":"Cruel Fate","orbit":4},"39448":{"stats":["3% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":11178}],"group":78,"skill":39448,"orbitIndex":21,"name":"Axe Attack Speed","orbit":3},"14540":{"icon":"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds","skill":14540,"isKeystone":true,"stats":["Your Stun Threshold is doubled","Cannot Dodge Roll"],"group":268,"connections":[{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Unwavering Stance","orbit":0},"65287":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":5580}],"group":387,"skill":65287,"orbitIndex":17,"name":"Totem Damage","orbit":2},"50687":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":50687,"stats":["40% increased Electrocute Buildup","30% increased Shock Chance against Electrocuted Enemies"],"recipe":["Envy","Disgust","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":472,"orbitIndex":14,"isNotable":true,"name":"Coursing Energy","orbit":7},"32183":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":32183,"stats":["+5 to any Attribute"],"isAttribute":true,"group":921,"connections":[{"orbit":7,"id":28371}],"orbitIndex":0,"name":"Attribute","orbit":0},"28564":{"stats":["16% increased Warcry Speed"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":8460}],"group":93,"skill":28564,"orbitIndex":8,"name":"Warcry Speed","orbit":2},"44280":{"stats":["8% increased Effect of your Mark Skills","5% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":23305}],"group":936,"skill":44280,"orbitIndex":10,"name":"Mark Effect and Blind Chance","orbit":2},"61444":{"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":61444,"stats":["Skills Supported by Unleash have 25% increased Seal gain frequency"],"recipe":["Fear","Envy","Despair"],"connections":[{"orbit":0,"id":17411},{"orbit":0,"id":34096}],"group":262,"orbitIndex":7,"isNotable":true,"name":"Anticipation","orbit":3},"178":{"stats":["6% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[],"group":1017,"skill":178,"orbitIndex":36,"name":"Herald Reservation","orbit":5},"8440":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-7,"id":45013}],"group":590,"skill":8440,"orbitIndex":7,"name":"Damage against Enemies on Low Life","orbit":1},"38323":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38323,"stats":["+5 to any Attribute"],"isAttribute":true,"group":346,"connections":[{"orbit":-6,"id":6015},{"orbit":-5,"id":22928}],"orbitIndex":0,"name":"Attribute","orbit":0},"27950":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":27950,"stats":["25% increased Armour","50% of Base Armour from Equipment also added to Stun Threshold"],"recipe":["Paranoia","Guilt","Despair"],"connections":[{"orbit":0,"id":26324},{"orbit":0,"id":52462}],"group":272,"orbitIndex":0,"isNotable":true,"name":"Polished Iron","orbit":2},"7204":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":53527},{"orbit":0,"id":4985}],"group":125,"skill":7204,"orbitIndex":2,"name":"Stun Buildup","orbit":7},"59142":{"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":59142,"stats":["Flasks applied to you have 25% increased Effect"],"recipe":["Disgust","Ire","Guilt"],"connections":[{"orbit":3,"id":56870},{"orbit":0,"id":18750}],"group":771,"orbitIndex":6,"isNotable":true,"name":"Potent Concoctions","orbit":1},"35849":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":35849,"stats":["5% reduced Movement Speed","Regenerate 1% of Life per second while stationary"],"recipe":["Envy","Guilt","Greed"],"connections":[],"group":79,"orbitIndex":0,"isNotable":true,"name":"Thickened Arteries","orbit":0},"36880":{"stats":["15% increased effect of Arcane Surge on you"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":43036}],"group":251,"skill":36880,"orbitIndex":15,"name":"Arcane Surge Effect","orbit":4},"29763":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":39423}],"group":786,"skill":29763,"orbitIndex":0,"name":"Lightning Penetration","orbit":0},"47307":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":5,"id":2254}],"group":505,"skill":47307,"orbitIndex":4,"name":"Cast Speed","orbit":2},"43653":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":26518},{"orbit":0,"id":48171}],"group":131,"skill":43653,"orbitIndex":9,"name":"Cold Damage","orbit":4},"33812":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":33812,"stats":[],"ascendancyName":"Warbringer","isAscendancyStart":true,"group":16,"connections":[{"orbit":0,"id":38769},{"orbit":5,"id":18585},{"orbit":5,"id":25935},{"orbit":4,"id":1994},{"orbit":3,"id":39365}],"orbitIndex":48,"name":"Brute","orbit":6},"31159":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":46017},{"orbit":0,"id":39131}],"group":79,"skill":31159,"orbitIndex":4,"name":"Life Regeneration while Stationary","orbit":7},"8357":{"stats":["Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":10742}],"group":278,"skill":8357,"orbitIndex":6,"name":"Minion Attack and Cast Speed","orbit":3},"3109":{"stats":["12% increased Grenade Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":29514}],"group":469,"skill":3109,"orbitIndex":6,"name":"Grenade Area","orbit":3},"18849":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds","skill":18849,"stats":["All Damage from Hits Contributes to Chill Magnitude"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":2,"isNotable":true,"name":"Shaper of Winter","orbit":5},"56757":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":10100}],"group":77,"skill":56757,"orbitIndex":10,"name":"Totem Placement Speed","orbit":2},"35408":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":36474},{"orbit":0,"id":7960}],"group":250,"skill":35408,"orbitIndex":12,"name":"Focus Energy Shield","orbit":2},"34367":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":7,"id":58090},{"orbit":0,"id":57710}],"group":546,"skill":34367,"orbitIndex":14,"name":"Life Recoup","orbit":7},"6490":{"stats":["10% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":14082}],"group":805,"skill":6490,"orbitIndex":15,"name":"Critical Damage","orbit":2},"54783":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":595,"skill":54783,"orbitIndex":10,"name":"Energy Shield Mastery","orbit":1},"63891":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":0,"id":63074}],"group":1013,"skill":63891,"orbitIndex":9,"name":"Chaos Damage","orbit":1},"56567":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":151}],"group":358,"skill":56567,"orbitIndex":11,"name":"Accuracy","orbit":7},"9187":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":9187,"stats":["25% increased Warcry Speed","20% increased Damage for each different Warcry you've used Recently"],"recipe":["Isolation","Greed","Guilt"],"connections":[{"orbit":0,"id":20015}],"group":223,"orbitIndex":8,"isNotable":true,"name":"Escalation","orbit":2},"61938":{"stats":["15% increased Magnitude of Jagged Ground you create"],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","connections":[{"orbit":0,"id":14515}],"group":149,"skill":61938,"orbitIndex":14,"name":"Jagged Ground Effect","orbit":3},"49291":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":0,"id":57945}],"group":858,"skill":49291,"orbitIndex":9,"name":"Life Flask Charge Generation","orbit":7},"37532":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":843,"skill":37532,"orbitIndex":0,"name":"Lightning Mastery","orbit":0},"40691":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":7,"id":25893}],"group":519,"skill":40691,"orbitIndex":62,"name":"Energy Shield Recharge","orbit":4},"46741":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[],"group":156,"skill":46741,"orbitIndex":21,"name":"Stun Buildup","orbit":2},"49357":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":49357,"stats":["+5 to any Attribute"],"isAttribute":true,"group":342,"connections":[{"orbit":0,"id":32194}],"orbitIndex":0,"name":"Attribute","orbit":6},"9918":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":16626}],"group":159,"skill":9918,"orbitIndex":4,"name":"Area Damage","orbit":2},"54849":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":279,"skill":54849,"orbitIndex":0,"name":"Minion Offence Mastery","orbit":0},"2174":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":4,"id":19249}],"group":209,"skill":2174,"orbitIndex":70,"name":"Totem Damage","orbit":4},"65212":{"stats":["8% reduced Slowing Potency of Debuffs on You"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":64637},{"orbit":0,"id":60899}],"group":989,"skill":65212,"orbitIndex":7,"name":"Slow Effect on You","orbit":3},"29645":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcriesNoCooldown.dds","skill":29645,"stats":["Ignore Warcry Cooldowns"],"ascendancyName":"Warbringer","connections":[],"group":23,"orbitIndex":0,"isNotable":true,"name":"Greatwolf's Howl","orbit":0},"26798":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":9638}],"group":274,"skill":26798,"orbitIndex":0,"name":"Skill Speed","orbit":0},"57047":{"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":57047,"stats":["10% increased Attributes"],"recipe":["Isolation","Suffering","Paranoia"],"connections":[{"orbit":0,"id":45278},{"orbit":0,"id":4492}],"group":509,"orbitIndex":48,"isNotable":true,"name":"Polymathy","orbit":5},"24287":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24287,"stats":["+5 to any Attribute"],"isAttribute":true,"group":956,"connections":[{"orbit":0,"id":60735},{"orbit":0,"id":14226}],"orbitIndex":0,"name":"Attribute","orbit":0},"10273":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":45272}],"group":509,"skill":10273,"orbitIndex":2,"name":"All Attributes","orbit":7},"49696":{"stats":["+3 to all Attributes"],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","connections":[{"orbit":0,"id":10273}],"group":509,"skill":49696,"orbitIndex":12,"name":"All Attributes","orbit":5},"59596":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":59596,"stats":["25% increased Energy Shield Recharge Rate","Gain 20 Energy Shield when you Block"],"recipe":["Paranoia","Despair","Greed"],"connections":[{"orbit":0,"id":37641}],"group":163,"orbitIndex":16,"isNotable":true,"name":"Covering Ward","orbit":3},"33964":{"stats":["10% increased Critical Hit Chance with Traps"],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","connections":[{"orbit":0,"id":64295}],"group":974,"skill":33964,"orbitIndex":49,"name":"Trap Critical Chance","orbit":4},"6304":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":6304,"stats":["Regenerate 1% of Life per second while affected by any Damaging Ailment","Regenerate 1% of Life per second while stationary"],"recipe":["Greed","Paranoia","Guilt"],"connections":[{"orbit":0,"id":12125}],"group":211,"orbitIndex":4,"isNotable":true,"name":"Stand Ground","orbit":2},"1170":{"stats":["12% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":15671}],"group":159,"skill":1170,"orbitIndex":22,"name":"Area Damage","orbit":3},"47284":{"stats":["Minions have +20% to Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","connections":[{"orbit":0,"id":3332}],"group":382,"skill":47284,"orbitIndex":0,"name":"Minion Cold Resistance","orbit":0},"3431":{"stats":["3% increased Skill Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":43082}],"group":948,"skill":3431,"orbitIndex":6,"name":"Skill Speed","orbit":1},"10242":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":38111}],"group":836,"skill":10242,"orbitIndex":8,"name":"Life Recoup","orbit":2},"3605":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds","skill":3605,"stats":["Grants Skill: Time Snap"],"ascendancyName":"Chronomancer","connections":[],"group":205,"orbitIndex":0,"isNotable":true,"name":"Unbound Encore","orbit":0},"64031":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds","skill":64031,"stats":["Grants Skill: Unbound Avatar"],"ascendancyName":"Invoker","connections":[],"group":1033,"orbitIndex":4,"isNotable":true,"name":"...and I Shall Rage","orbit":3},"7341":{"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":7341,"stats":["Gain 3 Rage when Hit by an Enemy","Every Rage also grants 2% increased Stun Threshold"],"recipe":["Despair","Fear","Suffering"],"connections":[],"group":198,"orbitIndex":0,"isNotable":true,"name":"Ignore Pain","orbit":0},"21567":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":0,"id":59710}],"group":71,"skill":21567,"orbitIndex":8,"name":"Shapeshifting","orbit":7},"24807":{"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds","skill":24807,"stats":["50% more Armour from Equipped Body Armour"],"ascendancyName":"Titan","connections":[],"group":25,"orbitIndex":0,"isNotable":true,"name":"Stone Skin","orbit":0},"43201":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","connections":[{"orbit":0,"id":43383}],"group":492,"skill":43201,"orbitIndex":56,"name":"Ailment Chance","orbit":4},"52618":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":52618,"stats":["25% increased Attack Damage"],"recipe":["Fear","Suffering","Paranoia"],"connections":[{"orbit":0,"id":32777}],"group":71,"orbitIndex":3,"isNotable":true,"name":"Feral Force","orbit":3},"62313":{"stats":["+1% to Maximum Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","connections":[{"orbit":0,"id":1200}],"group":67,"skill":62313,"orbitIndex":52,"name":"Maximum Fire Resistance","orbit":5},"50816":{"stats":["+8 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","connections":[{"orbit":-9,"id":46554},{"orbit":0,"id":39567},{"orbit":-5,"id":37974}],"group":680,"skill":50816,"orbitIndex":67,"name":"Intelligence","orbit":5},"44871":{"stats":["+10 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":54447},{"orbit":0,"id":56216}],"group":495,"skill":44871,"orbitIndex":2,"name":"Energy Shield","orbit":3},"36602":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":18465}],"group":342,"skill":36602,"orbitIndex":39,"name":"Critical Damage","orbit":4},"23307":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":23307,"stats":["+5 to any Attribute"],"isAttribute":true,"group":89,"connections":[{"orbit":0,"id":10100}],"orbitIndex":0,"name":"Attribute","orbit":0},"64683":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":408,"skill":64683,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"7576":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":33866}],"group":610,"skill":7576,"orbitIndex":0,"name":"Attack Damage","orbit":0},"44345":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":48833}],"group":683,"skill":44345,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"14666":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":539,"skill":14666,"orbitIndex":18,"name":"Energy Shield Recharge","orbit":3},"21721":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":15899},{"orbit":0,"id":55066}],"group":478,"skill":21721,"orbitIndex":4,"name":"Bleeding Chance","orbit":3},"36478":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":47204},{"orbit":0,"id":28002}],"group":234,"skill":36478,"orbitIndex":1,"name":"Melee Damage","orbit":2},"24551":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":147,"skill":24551,"orbitIndex":0,"name":"Mana Mastery","orbit":0},"32009":{"stats":["20% increased Curse Duration"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":36814}],"group":567,"skill":32009,"orbitIndex":2,"name":"Curse Duration","orbit":7},"61842":{"stats":["Minions deal 12% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":33240},{"orbit":0,"id":14712}],"group":282,"skill":61842,"orbitIndex":0,"name":"Minion Damage","orbit":3},"44733":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44733,"stats":["+5 to any Attribute"],"isAttribute":true,"group":328,"connections":[{"orbit":0,"id":10742},{"orbit":0,"id":57506},{"orbit":-6,"id":29432}],"orbitIndex":12,"name":"Attribute","orbit":2},"51867":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":51867,"stats":["120% increased Damage with Hits against Enemies that are on Low Life","5% increased Damage taken while on Low Life"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":232,"orbitIndex":0,"isNotable":true,"name":"Finality","orbit":0},"42350":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":42350,"stats":["+5 to any Attribute"],"isAttribute":true,"group":487,"connections":[{"orbit":0,"id":61438}],"orbitIndex":67,"name":"Attribute","orbit":6},"23915":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":-1,"id":41529}],"group":762,"skill":23915,"orbitIndex":0,"name":"Critical Damage","orbit":0},"13293":{"stats":["20% increased Armour if you haven't been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":4,"id":30457}],"group":66,"skill":13293,"orbitIndex":0,"name":"Armour","orbit":7},"45522":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","options":{"Witch":{"stats":["10% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","id":40885}},"skill":45522,"stats":["10% increased Lightning Damage"],"isSwitchable":true,"group":475,"connections":[{"orbit":5,"id":22314}],"orbitIndex":6,"name":"Lightning Damage","orbit":3},"27095":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":14890},{"orbit":0,"id":48658}],"group":745,"skill":27095,"orbitIndex":7,"name":"Freeze Buildup","orbit":7},"46024":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":46024,"stats":["30% increased Damage with Hits against Shocked Enemies"],"recipe":["Paranoia","Suffering","Paranoia"],"connections":[],"group":146,"orbitIndex":44,"isNotable":true,"name":"Sigil of Lightning","orbit":4},"61718":{"stats":["15% increased Daze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":-2,"id":54204},{"orbit":2,"id":21945}],"group":988,"skill":61718,"orbitIndex":6,"name":"Daze Buildup","orbit":1},"53527":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":53527,"stats":["Break 50% of Armour on Heavy Stunning an Enemy"],"recipe":["Fear","Guilt","Guilt"],"connections":[],"group":125,"orbitIndex":22,"isNotable":true,"name":"Shattering Blow","orbit":7},"27439":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":27439,"stats":["+5 to any Attribute"],"isAttribute":true,"group":182,"connections":[{"orbit":0,"id":48768},{"orbit":0,"id":21982}],"orbitIndex":0,"name":"Attribute","orbit":0},"41768":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41768,"stats":["+5 to any Attribute"],"isAttribute":true,"group":55,"connections":[{"orbit":0,"id":28982},{"orbit":0,"id":55048}],"orbitIndex":0,"name":"Attribute","orbit":0},"19482":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":19482,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":0,"id":36564}],"orbitIndex":109,"name":"Life","orbit":9},"10055":{"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":30554},{"orbit":0,"id":41497}],"group":70,"skill":10055,"orbitIndex":2,"name":"Minion Life and Chaos Resistance","orbit":7},"52125":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52125,"stats":["+5 to any Attribute"],"isAttribute":true,"group":507,"connections":[{"orbit":0,"id":54127},{"orbit":0,"id":21721}],"orbitIndex":0,"name":"Attribute","orbit":0},"39640":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds","skill":39640,"stats":["All Damage from Hits Contributes to Shock Chance"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":70,"isNotable":true,"name":"Shaper of Storms","orbit":5},"31918":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":-3,"id":4534}],"group":890,"skill":31918,"orbitIndex":15,"name":"Pierce Chance","orbit":7},"32561":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":51825}],"group":481,"skill":32561,"orbitIndex":15,"name":"Two Handed Damage","orbit":3},"8908":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":4,"id":13711},{"orbit":-5,"id":3203}],"group":767,"skill":8908,"orbitIndex":4,"name":"Evasion and Energy Shield","orbit":7},"48565":{"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":48565,"stats":["Minions deal 25% increased Damage"],"recipe":["Envy","Fear","Disgust"],"connections":[{"orbit":0,"id":47242}],"group":75,"orbitIndex":13,"isNotable":true,"name":"Bringer of Order","orbit":3},"4665":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":1913}],"group":408,"skill":4665,"orbitIndex":0,"name":"Life Regeneration","orbit":7},"9226":{"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":9226,"stats":["10% of Damage is taken from Mana before Life"],"recipe":["Ire","Disgust","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":96,"orbitIndex":5,"isNotable":true,"name":"Mental Perseverance","orbit":1},"54964":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":23078}],"group":75,"skill":54964,"orbitIndex":3,"name":"Sentinels","orbit":2},"33722":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":33722,"stats":["+5 to any Attribute"],"isAttribute":true,"group":84,"connections":[{"orbit":0,"id":4140},{"orbit":0,"id":4725},{"orbit":0,"id":6222}],"orbitIndex":0,"name":"Attribute","orbit":0},"26682":{"stats":["15% increased Critical Spell Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","connections":[{"orbit":0,"id":46819},{"orbit":-3,"id":56640}],"group":479,"skill":26682,"orbitIndex":8,"name":"Spell Critical Damage","orbit":7},"55575":{"stats":["Gain 2% of Physical Damage as extra Chaos Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":58002}],"group":661,"skill":55575,"orbitIndex":9,"name":"Physical as Extra Chaos Damage","orbit":2},"14176":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":18004}],"group":161,"skill":14176,"orbitIndex":0,"name":"Slower Rage Decay","orbit":2},"2500":{"stats":["8% chance to Poison on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":7,"id":6030}],"group":1003,"skill":2500,"orbitIndex":10,"name":"Poison Chance","orbit":7},"10987":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds","skill":10987,"stats":["Skills have 33% chance to not consume a Cooldown when used"],"ascendancyName":"Chronomancer","connections":[],"group":206,"orbitIndex":0,"isNotable":true,"name":"Now and Again","orbit":0},"37963":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[],"group":352,"skill":37963,"orbitIndex":13,"name":"Sword Damage","orbit":3},"21627":{"stats":["10% increased Magnitude of Bleeding you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":19796}],"group":478,"skill":21627,"orbitIndex":12,"name":"Bleeding Damage","orbit":2},"35284":{"stats":["4% reduced Reservation of Herald Skills"],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","connections":[{"orbit":-2,"id":31898},{"orbit":-7,"id":64471}],"group":334,"skill":35284,"orbitIndex":3,"name":"Herald Reservation","orbit":7},"2946":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":130,"skill":2946,"orbitIndex":1,"name":"Fire Resistance Mastery","orbit":1},"16484":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":16484,"stats":["+5 to any Attribute"],"isAttribute":true,"group":711,"connections":[{"orbit":0,"id":46830},{"orbit":0,"id":25100}],"orbitIndex":0,"name":"Attribute","orbit":2},"44204":{"stats":["10% increased chance to Ignite","8% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":3,"id":33729}],"group":828,"skill":44204,"orbitIndex":0,"name":"Elemental Damage and Ignite Chance","orbit":7},"17349":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":-3,"id":23940},{"orbit":0,"id":58138}],"group":52,"skill":17349,"orbitIndex":0,"name":"Armour and Energy Shield","orbit":7},"18004":{"stats":["Inherent loss of Rage is 10% slower"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":0,"id":8881}],"group":161,"skill":18004,"orbitIndex":3,"name":"Slower Rage Decay","orbit":3},"49618":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":49618,"stats":["20% increased Melee Critical Hit Chance"],"recipe":["Envy","Ire","Guilt"],"connections":[{"orbit":0,"id":38663},{"orbit":0,"id":55348}],"group":378,"orbitIndex":0,"isNotable":true,"name":"Deadly Flourish","orbit":0},"22821":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","options":{"Witch":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","id":183}},"skill":22821,"stats":["10% increased Cold Damage"],"isSwitchable":true,"group":473,"connections":[{"orbit":0,"id":3823},{"orbit":0,"id":22314}],"orbitIndex":0,"name":"Cold Damage","orbit":7},"62436":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":3215}],"group":584,"skill":62436,"orbitIndex":5,"name":"Energy Shield","orbit":7},"39581":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":46325}],"group":394,"skill":39581,"orbitIndex":8,"name":"Stun Buildup","orbit":7},"30007":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":3188}],"group":38,"skill":30007,"orbitIndex":8,"name":"Armour if Hit","orbit":1},"59376":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59376,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[],"orbitIndex":3,"name":"Attribute","orbit":6},"53853":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":53853,"stats":["40% increased Evasion Rating if you have been Hit Recently","40% increased Armour if you haven't been Hit Recently"],"recipe":["Greed","Greed","Ire"],"connections":[{"orbit":0,"id":57320}],"group":428,"orbitIndex":19,"isNotable":true,"name":"Backup Plan","orbit":7},"17706":{"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":-2,"id":46972}],"group":594,"skill":17706,"orbitIndex":20,"name":"Energy Shield Recharge and Mana Flask Recovery","orbit":2},"36169":{"stats":["12% increased Grenade Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":29514}],"group":469,"skill":36169,"orbitIndex":23,"name":"Grenade Area","orbit":3},"62510":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":4,"id":8697},{"orbit":6,"id":17118}],"group":730,"skill":62510,"orbitIndex":69,"name":"Elemental Attack Damage","orbit":4},"52659":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":10362}],"group":76,"skill":52659,"orbitIndex":20,"name":"Life Regeneration","orbit":7},"30555":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30555,"stats":["+5 to any Attribute"],"isAttribute":true,"group":599,"connections":[{"orbit":3,"id":53960}],"orbitIndex":0,"name":"Attribute","orbit":0},"50062":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":50062,"stats":["20% increased maximum Energy Shield","Defend with 120% of Armour while not on Low Energy Shield"],"recipe":["Despair","Greed","Envy"],"connections":[{"orbit":0,"id":37641}],"group":163,"orbitIndex":2,"isNotable":true,"name":"Reinforced Barrier","orbit":2},"62670":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":70,"skill":62670,"orbitIndex":0,"name":"Minion Defence Mastery","orbit":0},"44406":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-6,"id":48768}],"group":221,"skill":44406,"orbitIndex":0,"name":"Stun Buildup","orbit":6},"23091":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":45885},{"orbit":0,"id":39515}],"group":445,"skill":23091,"orbitIndex":10,"name":"Fire Damage","orbit":3},"19011":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":45363}],"group":315,"skill":19011,"orbitIndex":20,"name":"Melee Damage","orbit":3},"33112":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":-7,"id":10881}],"group":719,"skill":33112,"orbitIndex":12,"name":"Focus Energy Shield","orbit":3},"44344":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44344,"stats":["+5 to any Attribute"],"isAttribute":true,"group":371,"connections":[],"orbitIndex":0,"name":"Attribute","orbit":0},"18086":{"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":18086,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"recipe":["Suffering","Disgust","Suffering"],"connections":[{"orbit":0,"id":62844}],"group":464,"orbitIndex":54,"isNotable":true,"name":"Breath of Ice","orbit":4},"21274":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":21274,"stats":["+5 to any Attribute"],"isAttribute":true,"group":573,"connections":[{"orbit":0,"id":6230}],"orbitIndex":0,"name":"Attribute","orbit":0},"30123":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":6923},{"orbit":0,"id":26092}],"group":229,"skill":30123,"orbitIndex":12,"name":"Two Handed Damage","orbit":3},"31903":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31903,"stats":["+5 to any Attribute"],"isAttribute":true,"group":295,"connections":[{"orbit":0,"id":37612},{"orbit":0,"id":56605}],"orbitIndex":0,"name":"Attribute","orbit":0},"52462":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":272,"skill":52462,"orbitIndex":0,"name":"Armour Mastery","orbit":0},"61409":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":13075}],"group":110,"skill":61409,"orbitIndex":22,"name":"Strength and Reduced Mana","orbit":7},"36479":{"icon":"Art/2DArt/SkillIcons/passives/Storm Weaver.dds","skill":36479,"stats":["Gain 5% of Damage as Extra Lightning Damage","30% increased chance to Shock"],"recipe":["Greed","Fear","Paranoia"],"connections":[{"orbit":0,"id":12925}],"group":667,"orbitIndex":66,"isNotable":true,"name":"Essence of the Storm","orbit":4},"16123":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":671,"skill":16123,"orbitIndex":22,"name":"Critical Mastery","orbit":3},"22271":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":15083}],"group":558,"skill":22271,"orbitIndex":0,"name":"Shock Chance","orbit":0},"20303":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":9908}],"group":210,"skill":20303,"orbitIndex":16,"name":"Life Regeneration","orbit":2},"63814":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":33216}],"group":454,"skill":63814,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"48035":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":11329}],"group":337,"skill":48035,"orbitIndex":23,"name":"Life Regeneration","orbit":2},"56564":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":8349}],"group":447,"skill":56564,"orbitIndex":15,"name":"Energy Shield Recharge","orbit":2},"44608":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":602,"skill":44608,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"11980":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-5,"id":20504}],"group":655,"skill":11980,"orbitIndex":5,"name":"Block","orbit":4},"49593":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":4725}],"group":75,"skill":49593,"orbitIndex":8,"name":"Sentinels","orbit":7},"61973":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds","skill":61973,"stats":["Culling Strike"],"ascendancyName":"Witchhunter","connections":[{"orbit":0,"id":40719}],"group":152,"orbitIndex":44,"isNotable":true,"name":"Pitiless Killer","orbit":6},"24767":{"stats":["40% increased Energy Shield from Equipped Focus"],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","connections":[{"orbit":4,"id":35408}],"group":250,"skill":24767,"orbitIndex":34,"name":"Focus Energy Shield","orbit":4},"39116":{"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":593,"skill":39116,"orbitIndex":14,"name":"Physical Mastery","orbit":3},"34493":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","connections":[{"orbit":0,"id":65328},{"orbit":0,"id":54964},{"orbit":0,"id":49593}],"group":75,"skill":34493,"orbitIndex":20,"name":"Sentinels","orbit":2},"7390":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":17150}],"group":444,"skill":7390,"orbitIndex":4,"name":"Armour and Evasion","orbit":3},"10208":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":22909},{"orbit":0,"id":60013}],"group":193,"skill":10208,"orbitIndex":11,"name":"Stun Threshold from Energy Shield","orbit":3},"52260":{"stats":["Meta Skills gain 8% increased Energy"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":-2,"id":3688}],"group":953,"skill":52260,"orbitIndex":8,"name":"Energy","orbit":2},"45899":{"stats":["6% increased Fire Damage","6% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[{"orbit":0,"id":968}],"group":340,"skill":45899,"orbitIndex":6,"name":"Fire Damage and Area","orbit":3},"7183":{"stats":["10% increased Life Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","connections":[{"orbit":-6,"id":48589}],"group":313,"skill":7183,"orbitIndex":5,"name":"Life Flask Recovery","orbit":2},"26070":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":26070,"stats":["Empowered Attacks deal 30% increased Damage","Warcry Skills have 30% increased Area of Effect"],"recipe":["Suffering","Disgust","Paranoia"],"connections":[{"orbit":3,"id":27540},{"orbit":0,"id":35977}],"group":187,"orbitIndex":4,"isNotable":true,"name":"Bolstering Yell","orbit":2},"47635":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":47635,"stats":["Damage Penetrates 10% Lightning Resistance if on Low Mana","Damage Penetrates 15% Lightning Resistance"],"recipe":["Paranoia","Isolation","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":814,"orbitIndex":8,"isNotable":true,"name":"Overload","orbit":3},"22439":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":5936}],"group":466,"skill":22439,"orbitIndex":12,"name":"Elemental Damage","orbit":3},"49391":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":354,"skill":49391,"orbitIndex":0,"name":"Block Mastery","orbit":0},"30371":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":4,"id":52796},{"orbit":0,"id":36044}],"group":80,"skill":30371,"orbitIndex":6,"name":"Shield Damage","orbit":2},"44005":{"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":44005,"stats":["15% reduced Spell Damage","6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"recipe":["Fear","Greed","Isolation"],"connections":[],"group":157,"orbitIndex":38,"isNotable":true,"name":"Casting Cascade","orbit":6},"38501":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-4,"id":47796}],"group":435,"skill":38501,"orbitIndex":40,"name":"Attack Speed","orbit":4},"48670":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48670,"stats":["+5 to any Attribute"],"isAttribute":true,"group":407,"connections":[{"orbit":0,"id":13241},{"orbit":0,"id":33169},{"orbit":0,"id":53589},{"orbit":0,"id":19122}],"orbitIndex":42,"name":"Attribute","orbit":6},"26663":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":0,"id":44765}],"group":545,"skill":26663,"orbitIndex":0,"name":"Cooldown Recovery Rate","orbit":0},"30662":{"stats":["12% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":26291}],"group":146,"skill":30662,"orbitIndex":32,"name":"Lightning Damage","orbit":4},"25170":{"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":30820}],"group":707,"skill":25170,"orbitIndex":22,"name":"Attack Damage and Skill Duration","orbit":2},"55235":{"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"orbit":0,"id":63830},{"orbit":0,"id":44756},{"orbit":0,"id":36976}],"group":914,"skill":55235,"orbitIndex":4,"name":"Mark Mastery","orbit":1},"49231":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":43183}],"group":389,"skill":49231,"orbitIndex":20,"name":"Attack Speed","orbit":7},"57810":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":40073}],"group":603,"skill":57810,"orbitIndex":0,"name":"Shock Chance","orbit":0},"29993":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":158,"skill":29993,"orbitIndex":8,"name":"Duration Mastery","orbit":1},"1215":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":615,"skill":1215,"orbitIndex":5,"name":"Evasion and Energy Shield Mastery","orbit":1},"40336":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":6655}],"group":440,"skill":40336,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"34090":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":7,"id":14655},{"orbit":-7,"id":64870}],"group":213,"skill":34090,"orbitIndex":0,"name":"Armour","orbit":7},"21404":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":42825}],"group":289,"skill":21404,"orbitIndex":18,"name":"Energy Shield Delay","orbit":2},"49952":{"stats":["1% reduced Attack Speed","12% increased Magnitude of Ailments you inflict"],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","connections":[{"orbit":0,"id":13856}],"group":134,"skill":49952,"orbitIndex":6,"name":"Ailment Effect and Reduced Attack Speed","orbit":7},"35223":{"stats":["10% increased Critical Hit Chance with Spears"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":55680},{"orbit":0,"id":9227}],"group":954,"skill":35223,"orbitIndex":4,"name":"Spear Critical Chance","orbit":3},"97":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":52442}],"group":513,"skill":97,"orbitIndex":0,"name":"Attack Speed","orbit":2},"43647":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"orbit":0,"id":32507}],"group":426,"skill":43647,"orbitIndex":15,"name":"Minion Offence Mastery","orbit":2},"28680":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":246,"skill":28680,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"42361":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":867,"skill":42361,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"20049":{"stats":["10% increased Charm Charges gained"],"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","connections":[{"orbit":5,"id":32818}],"group":692,"skill":20049,"orbitIndex":0,"name":"Charm Charges","orbit":7},"34433":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":32354}],"group":423,"skill":34433,"orbitIndex":9,"name":"Armour and Evasion","orbit":2},"59795":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59795,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-3,"id":10156}],"orbitIndex":33,"name":"Attribute","orbit":5},"10156":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":10156,"stats":["+5 to any Attribute"],"isAttribute":true,"group":421,"connections":[{"orbit":-6,"id":6744}],"orbitIndex":38,"name":"Attribute","orbit":6},"18348":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds","skill":18348,"stats":["20% of Cold Damage taken as Fire Damage","20% of Lightning Damage taken as Fire Damage","20% of Physical Damage taken as Chaos Damage"],"ascendancyName":"Infernalist","connections":[{"orbit":5,"id":19482},{"orbit":0,"id":8854},{"orbit":8,"id":46016}],"group":486,"orbitIndex":60,"isNotable":true,"name":"Altered Flesh","orbit":8},"1151":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":0,"id":4113}],"group":542,"skill":1151,"orbitIndex":8,"name":"Freeze Buildup","orbit":7},"17501":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[],"group":419,"skill":17501,"orbitIndex":7,"name":"Minion Damage","orbit":2},"54067":{"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":27626},{"orbit":-4,"id":2244}],"group":251,"skill":54067,"orbitIndex":7,"name":"Arcane Surge on Critical Hit","orbit":5},"38124":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":8,"id":51820}],"group":151,"skill":38124,"orbitIndex":32,"name":"Totem Damage","orbit":4},"22393":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":28458}],"group":278,"skill":22393,"orbitIndex":12,"name":"Minion Damage","orbit":3},"54521":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54521,"stats":["+5 to any Attribute"],"isAttribute":true,"group":413,"connections":[{"orbit":5,"id":13537},{"orbit":0,"id":58789}],"orbitIndex":0,"name":"Attribute","orbit":0},"14091":{"stats":["Break 10% increased Armour","6% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":42981},{"orbit":0,"id":23993},{"orbit":0,"id":28860}],"group":417,"skill":14091,"orbitIndex":0,"name":"Armour Break and Physical Damage","orbit":0},"55596":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":8509},{"orbit":0,"id":41263}],"group":168,"skill":55596,"orbitIndex":8,"name":"Critical Damage","orbit":3},"25434":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","skill":25434,"stats":["15% increased Magnitude of Chill you inflict"],"ascendancyName":"Invoker","group":1033,"connections":[],"orbitIndex":11,"name":"Chill Effect","orbit":6},"34882":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":34882,"stats":["+2% to Quality of all Skills"],"ascendancyName":"Gemling Legionnaire","group":247,"connections":[{"orbit":2147483647,"id":11641}],"orbitIndex":0,"name":"Skill Gem Quality","orbit":0},"24871":{"stats":["3% increased Attack Speed with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":10602}],"group":226,"skill":24871,"orbitIndex":4,"name":"Attack Speed","orbit":4},"11030":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":59596}],"group":163,"skill":11030,"orbitIndex":10,"name":"Energy Shield Delay","orbit":3},"47191":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":138,"skill":47191,"orbitIndex":58,"name":"Fire Damage","orbit":4},"47354":{"stats":["3% increased Melee Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":36478}],"group":234,"skill":47354,"orbitIndex":4,"name":"Melee Attack Speed","orbit":3},"27068":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":35831}],"group":147,"skill":27068,"orbitIndex":12,"name":"Mana Regeneration","orbit":7},"34168":{"icon":"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds","skill":34168,"stats":["36% increased Damage if you've dealt a Critical Hit in the past 8 seconds"],"recipe":["Envy","Guilt","Despair"],"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":4157},{"orbit":0,"id":55088}],"group":665,"orbitIndex":22,"isNotable":true,"name":"Crashing Wave","orbit":7},"1087":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":1087,"stats":["30% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"],"recipe":["Greed","Paranoia","Ire"],"connections":[],"group":229,"orbitIndex":7,"isNotable":true,"name":"Shockwaves","orbit":3},"58016":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":58016,"stats":["+5% to all Elemental Resistances","30% increased Elemental Damage"],"recipe":["Fear","Fear","Greed"],"connections":[{"orbit":7,"id":49537},{"orbit":0,"id":42205}],"group":197,"orbitIndex":42,"isNotable":true,"name":"All Natural","orbit":4},"53505":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":6,"id":21468}],"group":409,"skill":53505,"orbitIndex":18,"name":"Life Leech","orbit":2},"17260":{"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","skill":17260,"stats":["25% increased Attack Damage"],"recipe":["Greed","Ire","Despair"],"connections":[{"orbit":-5,"id":33502}],"group":116,"orbitIndex":0,"isNotable":true,"name":"Tough Claw","orbit":0},"64117":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":64117,"stats":["20% increased Warcry Speed"],"ascendancyName":"Warbringer","group":20,"connections":[{"orbit":2,"id":29645}],"orbitIndex":0,"name":"Warcry Speed","orbit":0},"48631":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48631,"stats":["+5 to any Attribute"],"isAttribute":true,"group":277,"connections":[{"orbit":0,"id":35426},{"orbit":-4,"id":59006}],"orbitIndex":0,"name":"Attribute","orbit":0},"17505":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":0,"id":52106},{"orbit":0,"id":28774},{"orbit":0,"id":23382}],"group":157,"skill":17505,"orbitIndex":30,"name":"Cast Speed","orbit":6},"56818":{"stats":["12% increased Elemental Damage with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","connections":[{"orbit":-3,"id":43423},{"orbit":-6,"id":62510}],"group":730,"skill":56818,"orbitIndex":18,"name":"Elemental Attack Damage","orbit":3},"49220":{"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":49220,"stats":["8% increased Attack and Cast Speed","+5 to Dexterity and Intelligence"],"recipe":["Greed","Guilt","Despair"],"connections":[{"orbit":0,"id":10429},{"orbit":-3,"id":44223},{"orbit":-6,"id":53960},{"orbit":5,"id":21336},{"orbit":6,"id":36778}],"group":610,"orbitIndex":12,"isNotable":true,"name":"Flow Like Water","orbit":4},"43939":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":43939,"stats":["+15% to Fire Resistance","25% reduced effect of Ignite on you"],"recipe":["Fear","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":48267},{"orbit":0,"id":56214}],"group":64,"orbitIndex":9,"isNotable":true,"name":"Fireproof","orbit":3},"3218":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":0,"id":48171}],"group":131,"skill":3218,"orbitIndex":17,"name":"Elemental Damage","orbit":4},"8791":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":8791,"stats":["Minions have 25% increased maximum Life"],"recipe":["Fear","Greed","Despair"],"connections":[{"orbit":0,"id":54849},{"orbit":4,"id":4084}],"group":279,"orbitIndex":6,"isNotable":true,"name":"Sturdy Ally","orbit":3},"26969":{"stats":["5% reduced maximum Mana","15% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":2,"id":16861}],"group":184,"skill":26969,"orbitIndex":69,"name":"Critical Chance and Reduced Mana","orbit":4},"17138":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":51903}],"group":101,"skill":17138,"orbitIndex":0,"name":"Melee Damage","orbit":0},"18160":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":26945}],"group":419,"skill":18160,"orbitIndex":14,"name":"Minion Critical Chance","orbit":7},"31017":{"stats":["15% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":26339}],"group":177,"skill":31017,"orbitIndex":0,"name":"Totem Damage","orbit":3},"31950":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":31950,"stats":["+5 to any Attribute"],"isAttribute":true,"group":640,"connections":[{"orbit":0,"id":58329},{"orbit":0,"id":8569},{"orbit":0,"id":21080},{"orbit":0,"id":7405}],"orbitIndex":12,"name":"Attribute","orbit":6},"14254":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":97}],"group":513,"skill":14254,"orbitIndex":4,"name":"Attack Speed","orbit":2},"55536":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":55536,"stats":[],"ascendancyName":"Gemling Legionnaire","isAscendancyStart":true,"group":266,"connections":[{"orbit":2147483647,"id":34882},{"orbit":0,"id":1442},{"orbit":2147483647,"id":3084}],"orbitIndex":72,"name":"Gambler","orbit":9},"24224":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":78,"skill":24224,"orbitIndex":0,"name":"Axe Mastery","orbit":0},"4673":{"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":4673,"stats":["30% increased Stun Buildup","+15 to Strength"],"recipe":["Disgust","Guilt","Guilt"],"connections":[{"orbit":0,"id":10047},{"orbit":0,"id":51812}],"group":156,"orbitIndex":15,"isNotable":true,"name":"Hulking Smash","orbit":2},"29762":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":29762,"stats":["30% increased Warcry Speed","Warcry Skills have 30% increased Area of Effect"],"recipe":["Paranoia","Ire","Disgust"],"connections":[{"orbit":5,"id":28564},{"orbit":0,"id":8460},{"orbit":-2,"id":9528}],"group":93,"orbitIndex":13,"isNotable":true,"name":"Guttural Roar","orbit":3},"26565":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":-2,"id":40024}],"group":849,"skill":26565,"orbitIndex":2,"name":"Poison Duration","orbit":3},"64020":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":29652}],"group":262,"skill":64020,"orbitIndex":20,"name":"Spell Damage","orbit":2},"18374":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[],"group":293,"skill":18374,"orbitIndex":7,"name":"Thorns","orbit":2},"8606":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":707,"skill":8606,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"26598":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26598,"stats":["+5 to any Attribute"],"isAttribute":true,"group":832,"connections":[{"orbit":3,"id":33366}],"orbitIndex":0,"name":"Attribute","orbit":0},"32016":{"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-6,"id":5766},{"orbit":0,"id":49984}],"group":845,"skill":32016,"orbitIndex":19,"name":"Spell Damage","orbit":7},"44330":{"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":44330,"stats":["25% increased Damage with One Handed Weapons","20% increased Chance to inflict Ailments with One-Handed Attacks"],"recipe":["Fear","Greed","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":528,"orbitIndex":2,"isNotable":true,"name":"Coated Arms","orbit":3},"48505":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":269,"skill":48505,"orbitIndex":18,"name":"Life Mastery","orbit":2},"19355":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":679,"skill":19355,"orbitIndex":4,"name":"Energy Shield","orbit":6},"3894":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":3894,"stats":["3% increased maximum Life, Mana and Energy Shield","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Isolation","Guilt","Isolation"],"connections":[{"orbit":0,"id":13307},{"orbit":0,"id":857}],"group":381,"orbitIndex":30,"isNotable":true,"name":"Eldritch Will","orbit":4},"3918":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":59695}],"group":420,"skill":3918,"orbitIndex":15,"name":"Mana Regeneration","orbit":2},"4442":{"stats":["+1% to Maximum Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","connections":[{"orbit":0,"id":62034},{"orbit":0,"id":59886}],"group":67,"skill":4442,"orbitIndex":10,"name":"Maximum Lightning Resistance","orbit":3},"47371":{"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":7668}],"group":204,"skill":47371,"orbitIndex":22,"name":"Empowered Attack Damage and Bleeding Chance","orbit":2},"53921":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":53921,"stats":["30% increased Stun Threshold","30% increased Elemental Ailment Threshold"],"recipe":["Paranoia","Envy","Paranoia"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"orbit":0,"id":58838},{"orbit":0,"id":40596}],"group":173,"orbitIndex":48,"isNotable":true,"name":"Unbreaking","orbit":5},"19802":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":2,"id":64399}],"group":307,"skill":19802,"orbitIndex":8,"name":"Attack Critical Damage","orbit":2},"41105":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":54288}],"group":169,"skill":41105,"orbitIndex":12,"name":"Life Recoup","orbit":7},"42177":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":42177,"stats":["5% increased Attack Speed","10% increased Accuracy Rating","5% increased Dexterity"],"recipe":["Despair","Paranoia","Ire"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"orbit":7,"id":11153}],"group":384,"orbitIndex":0,"isNotable":true,"name":"Blurred Motion","orbit":0},"35171":{"stats":["Spell Skills have 8% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":18846}],"group":233,"skill":35171,"orbitIndex":0,"name":"Spell Area of Effect","orbit":3},"41493":{"stats":["8% increased Attack Area Damage","5% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":9,"id":50253}],"group":183,"skill":41493,"orbitIndex":0,"name":"Attack Area Damage and Area","orbit":0},"64284":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":27373},{"orbit":4,"id":19011}],"group":315,"skill":64284,"orbitIndex":51,"name":"Melee Damage","orbit":4},"45990":{"stats":["4% increased Attack Speed with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":39448}],"group":78,"skill":45990,"orbitIndex":23,"name":"Axe Attack Speed","orbit":3},"7392":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":10571}],"group":269,"skill":7392,"orbitIndex":19,"name":"Stun Threshold","orbit":3},"13537":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":49455}],"group":381,"skill":13537,"orbitIndex":10,"name":"Energy Shield","orbit":4},"62310":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":62310,"stats":["30% increased chance to Ignite","30% increased Damage with Hits against Burning Enemies"],"recipe":["Isolation","Disgust","Guilt"],"connections":[{"orbit":2,"id":36325},{"orbit":0,"id":56934}],"group":345,"orbitIndex":22,"isNotable":true,"name":"Incendiary","orbit":7},"40719":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":40719,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"ascendancyName":"Witchhunter","group":152,"connections":[{"orbit":0,"id":17646}],"orbitIndex":47,"name":"Damage vs Low Life Enemies","orbit":5},"47591":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":-2,"id":9226}],"group":96,"skill":47591,"orbitIndex":1,"name":"Mana Regeneration","orbit":2},"33402":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":58125}],"group":52,"skill":33402,"orbitIndex":54,"name":"Shield Defences","orbit":4},"32404":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":6,"id":15618},{"orbit":0,"id":5501},{"orbit":-6,"id":22290}],"group":504,"skill":32404,"orbitIndex":18,"name":"Spell Critical Chance","orbit":2},"62640":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":24880}],"group":435,"skill":62640,"orbitIndex":32,"name":"Attack Speed","orbit":4},"38368":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":-2,"id":35966},{"orbit":2,"id":54288}],"group":169,"skill":38368,"orbitIndex":0,"name":"Life Recoup","orbit":0},"59006":{"stats":["8% reduced Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":37956}],"group":276,"skill":59006,"orbitIndex":0,"name":"Reduced Duration","orbit":0},"30704":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":22045},{"orbit":0,"id":17655}],"group":369,"skill":30704,"orbitIndex":20,"name":"Life Regeneration","orbit":7},"20388":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":20388,"stats":["Minions Recoup 10% of Damage taken as Life"],"recipe":["Greed","Disgust","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":367,"orbitIndex":22,"isNotable":true,"name":"Regenerative Flesh","orbit":2},"14572":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":-6,"id":49657},{"orbit":0,"id":11037}],"group":491,"skill":14572,"orbitIndex":8,"name":"Cooldown Recovery Rate","orbit":3},"2857":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds","skill":2857,"stats":["Targets can be affected by two of your Shocks at the same time","50% less Shock Duration"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":7998}],"group":308,"orbitIndex":66,"isNotable":true,"name":"Strike Twice","orbit":6},"26895":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":294,"skill":26895,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"33618":{"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"orbit":0,"id":39990}],"group":363,"skill":33618,"orbitIndex":0,"name":"Duration Mastery","orbit":0},"9762":{"stats":["10% increased Damage with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":45824}],"group":356,"skill":9762,"orbitIndex":5,"name":"Sword Damage","orbit":6},"31644":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":14739},{"orbit":0,"id":34058}],"group":447,"skill":31644,"orbitIndex":23,"name":"Energy Shield Delay","orbit":2},"48768":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":48768,"stats":[],"group":203,"connections":[{"orbit":0,"id":43778}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"51606":{"icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":51606,"stats":["30% increased Evasion Rating","30% increased Evasion Rating if you've Dodge Rolled Recently"],"recipe":["Greed","Greed","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":-7,"id":65207}],"group":850,"orbitIndex":48,"isNotable":true,"name":"Freedom of Movement","orbit":4},"14324":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":14324,"stats":["15% increased Mana Recovery rate"],"recipe":["Envy","Despair","Despair"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"orbit":-2,"id":1468}],"group":519,"orbitIndex":3,"isNotable":true,"name":"Arcane Blossom","orbit":7},"57471":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":57471,"stats":["Recover 20 Life when you Block","80% less Knockback Distance for Blocked Hits"],"recipe":["Despair","Despair","Paranoia"],"connections":[{"orbit":-4,"id":42578}],"group":80,"orbitIndex":8,"isNotable":true,"name":"Hunker Down","orbit":3},"38420":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":0,"id":37543}],"group":321,"skill":38420,"orbitIndex":22,"name":"Mana Regeneration","orbit":2},"6015":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":6015,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":6,"id":35426}],"orbitIndex":15,"name":"Attribute","orbit":3},"506":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":6416}],"group":163,"skill":506,"orbitIndex":14,"name":"Armour and Energy Shield","orbit":2},"37458":{"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","skill":37458,"stats":["Link Skills have 20% increased Buff Effect","Link Skills have 20% increased Skill Effect Duration"],"recipe":["Guilt","Disgust","Envy"],"connections":[{"orbit":7,"id":16948},{"orbit":0,"id":25412}],"group":285,"orbitIndex":13,"isNotable":true,"name":"Strong Links","orbit":2},"35876":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":35876,"stats":["25% increased Warcry Speed","25% increased Warcry Cooldown Recovery Rate"],"recipe":["Disgust","Suffering","Disgust"],"connections":[{"orbit":4,"id":53194},{"orbit":-3,"id":27540},{"orbit":0,"id":35977}],"group":187,"orbitIndex":20,"isNotable":true,"name":"Admonisher","orbit":2},"33502":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[],"group":100,"skill":33502,"orbitIndex":12,"name":"Shapeshifting","orbit":5},"24880":{"stats":["3% increased Attack Speed"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":-7,"id":38501}],"group":435,"skill":24880,"orbitIndex":36,"name":"Attack Speed","orbit":5},"31223":{"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds","skill":31223,"stats":["Gain Energy Shield from equipped Body Armour as extra maximum Life"],"ascendancyName":"Blood Mage","connections":[],"group":664,"orbitIndex":0,"isNotable":true,"name":"Crimson Power","orbit":0},"48240":{"icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":48240,"stats":["40% increased Stun Recovery","Regenerate 5% of Life over 1 second when Stunned"],"recipe":["Despair","Suffering","Greed"],"connections":[{"orbit":0,"id":48505}],"group":269,"orbitIndex":15,"isNotable":true,"name":"Quick Recovery","orbit":3},"61847":{"stats":["15% increased Critical Hit Chance with Flails"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":-4,"id":43443}],"group":43,"skill":61847,"orbitIndex":0,"name":"Flail Critical Chance","orbit":0},"18882":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18882,"stats":["+5 to any Attribute"],"isAttribute":true,"group":649,"connections":[{"orbit":-2,"id":24045},{"orbit":0,"id":26786},{"orbit":0,"id":30047},{"orbit":0,"id":56841}],"orbitIndex":6,"name":"Attribute","orbit":5},"7621":{"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds","skill":7621,"stats":["Gain 10% of Damage as Extra Lightning Damage","25% chance on Shocking Enemies to created Shocked Ground"],"ascendancyName":"Invoker","connections":[{"orbit":0,"id":55611}],"group":1033,"orbitIndex":15,"isNotable":true,"name":"I am the Thunder...","orbit":5},"61441":{"stats":["3% increased Attack Speed with Swords"],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","connections":[{"orbit":0,"id":54138}],"group":352,"skill":61441,"orbitIndex":7,"name":"Sword Speed","orbit":6},"21279":{"stats":["8% increased Effect of your Mark Skills","10% increased Blind Effect"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":-3,"id":35534}],"group":936,"skill":21279,"orbitIndex":22,"name":"Mark Effect and Blind Effect","orbit":2},"24475":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","skill":24475,"stats":["+7% to Chaos Resistance"],"ascendancyName":"Acolyte of Chayula","group":1058,"connections":[{"orbit":-9,"id":59759}],"orbitIndex":8,"name":"Chaos Resistance","orbit":8},"46782":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":3,"id":53698}],"group":802,"skill":46782,"orbitIndex":16,"name":"Attack Damage","orbit":7},"50540":{"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"orbit":0,"id":16499}],"group":566,"skill":50540,"orbitIndex":0,"name":"Curse Mastery","orbit":0},"55101":{"stats":["10% increased Elemental Damage"],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","connections":[{"orbit":7,"id":58016}],"group":197,"skill":55101,"orbitIndex":12,"name":"Elemental Damage","orbit":3},"61318":{"stats":["16% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":0,"id":61396}],"group":618,"skill":61318,"orbitIndex":11,"name":"Armour and Evasion","orbit":3},"526":{"stats":["18% increased Stun Buildup with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":2645}],"group":56,"skill":526,"orbitIndex":4,"name":"Mace Stun Buildup","orbit":4},"56761":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":8560},{"orbit":0,"id":48531},{"orbit":0,"id":2408}],"group":946,"skill":56761,"orbitIndex":20,"name":"Melee Damage","orbit":3},"12565":{"stats":["4% increased Block chance","10% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":3245}],"group":38,"skill":12565,"orbitIndex":8,"name":"Thorns and Block","orbit":3},"62235":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":618,"skill":62235,"orbitIndex":10,"name":"Armour and Evasion Mastery","orbit":2},"54911":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":54911,"stats":["40% increased chance to Ignite","Enemies Ignited by you have -5% to Fire Resistance"],"recipe":["Greed","Isolation","Guilt"],"connections":[{"orbit":0,"id":11505},{"orbit":0,"id":39716}],"group":340,"orbitIndex":7,"isNotable":true,"name":"Firestarter","orbit":2},"44069":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":-7,"id":29358}],"group":69,"skill":44069,"orbitIndex":4,"name":"Stun Buildup","orbit":3},"35085":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":168,"skill":35085,"orbitIndex":0,"name":"Critical Mastery","orbit":0},"51129":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":51129,"stats":["60% increased Damage against Enemies with Fully Broken Armour"],"recipe":["Isolation","Ire","Ire"],"connections":[{"orbit":0,"id":15892},{"orbit":0,"id":48717}],"group":86,"orbitIndex":16,"isNotable":true,"name":"Pile On","orbit":7},"3245":{"stats":["4% increased Block chance","10% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":7395}],"group":38,"skill":3245,"orbitIndex":10,"name":"Thorns and Block","orbit":2},"57552":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":24871},{"orbit":0,"id":46696}],"group":226,"skill":57552,"orbitIndex":0,"name":"One Handed Damage","orbit":4},"2888":{"stats":["10% increased amount of Life Leeched"],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","connections":[{"orbit":0,"id":8827}],"group":281,"skill":2888,"orbitIndex":12,"name":"Life Leech","orbit":7},"26135":{"stats":["8% increased Spell Damage","8% increased Projectile Speed for Spell Skills"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":2335}],"group":794,"skill":26135,"orbitIndex":9,"name":"Spell Damage and Projectile Speed","orbit":3},"36629":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":36629,"stats":["+5 to any Attribute"],"isAttribute":true,"group":354,"connections":[{"orbit":0,"id":44659}],"orbitIndex":45,"name":"Attribute","orbit":5},"33037":{"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":47683}],"group":547,"skill":33037,"orbitIndex":2,"name":"Chaining Projectiles","orbit":3},"64192":{"stats":["12% increased Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":3,"id":53373}],"group":354,"skill":64192,"orbitIndex":12,"name":"Stun Threshold","orbit":3},"60107":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57204}],"group":619,"skill":60107,"orbitIndex":9,"name":"Critical Chance","orbit":2},"558":{"stats":["12% increased Fire Damage"],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","connections":[],"group":445,"skill":558,"orbitIndex":4,"name":"Fire Damage","orbit":3},"3660":{"stats":["8% chance to Blind Enemies on Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","connections":[{"orbit":-7,"id":25619},{"orbit":0,"id":57196}],"group":568,"skill":3660,"orbitIndex":20,"name":"Blind Chance","orbit":3},"31925":{"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":31925,"stats":["30% increased Damage per Curse on you","30% reduced effect of Curses on you","60% increased Energy Shield from Equipped Focus"],"recipe":["Fear","Suffering","Envy"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"orbit":5,"id":24767}],"group":250,"orbitIndex":8,"isNotable":true,"name":"Warding Fetish","orbit":7},"16938":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":3,"id":8789}],"group":458,"skill":16938,"orbitIndex":18,"name":"Minion Damage","orbit":7},"26490":{"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":12751}],"group":284,"skill":26490,"orbitIndex":9,"name":"One Handed Critical Chance","orbit":2},"55241":{"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":0,"id":38614}],"group":687,"skill":55241,"orbitIndex":4,"name":"Additional Spell Projectiles","orbit":1},"34030":{"stats":["Offerings have 15% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[{"orbit":0,"id":47441},{"orbit":0,"id":13634},{"orbit":0,"id":42614}],"group":544,"skill":34030,"orbitIndex":0,"name":"Offering Life","orbit":0},"38663":{"stats":["10% increased Melee Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":3516}],"group":378,"skill":38663,"orbitIndex":6,"name":"Melee Critical Chance","orbit":7},"44659":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":44659,"stats":["+5 to any Attribute"],"isAttribute":true,"group":354,"connections":[],"orbitIndex":27,"name":"Attribute","orbit":5},"14355":{"stats":["12% increased Spell Area Damage","Spell Skills have 5% reduced Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","connections":[{"orbit":0,"id":11788},{"orbit":0,"id":8483}],"group":571,"skill":14355,"orbitIndex":3,"name":"Spell Area of Effect","orbit":7},"42813":{"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":42813,"stats":["25% increased Skill Effect Duration"],"recipe":["Paranoia","Suffering","Fear"],"connections":[{"orbit":0,"id":55491}],"group":257,"orbitIndex":19,"isNotable":true,"name":"Tides of Change","orbit":7},"5728":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":5728,"stats":["60% increased Armour from Equipped Body Armour","60% increased Energy Shield from Equipped Body Armour"],"recipe":["Despair","Paranoia","Envy"],"connections":[{"orbit":-3,"id":17349},{"orbit":0,"id":58138}],"group":52,"orbitIndex":4,"isNotable":true,"name":"Ancient Aegis","orbit":7},"60064":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","connections":[{"orbit":0,"id":47263},{"orbit":0,"id":3027}],"group":81,"skill":60064,"orbitIndex":10,"name":"Physical Damage","orbit":2},"39564":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":62039},{"orbit":0,"id":38663},{"orbit":0,"id":13279}],"group":377,"skill":39564,"orbitIndex":12,"name":"Melee Damage","orbit":7},"58138":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":52,"skill":58138,"orbitIndex":6,"name":"Armour and Energy Shield Mastery","orbit":1},"62039":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":49618}],"group":378,"skill":62039,"orbitIndex":18,"name":"Melee Damage","orbit":7},"52298":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":52298,"stats":["+5 to any Attribute"],"isAttribute":true,"group":135,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":53719},{"orbit":0,"id":53308},{"orbit":0,"id":31805},{"orbit":0,"id":52126}],"orbitIndex":0,"name":"Attribute","orbit":0},"51797":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":23939}],"group":381,"skill":51797,"orbitIndex":8,"name":"Life Recoup","orbit":7},"44299":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":44299,"stats":["25% increased maximum Energy Shield","+1% to all Maximum Elemental Resistances"],"recipe":["Isolation","Paranoia","Isolation"],"connections":[{"orbit":0,"id":38105},{"orbit":0,"id":49455},{"orbit":0,"id":857}],"group":381,"orbitIndex":0,"isNotable":true,"name":"Enhanced Barrier","orbit":4},"61179":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":21245}],"group":301,"skill":61179,"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"56618":{"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds","skill":56618,"stats":["Grants Skill: Fulminating Concoction"],"isMultipleChoiceOption":true,"ascendancyName":"Pathfinder","group":1048,"connections":[{"orbit":0,"id":57141}],"orbitIndex":0,"name":"Fulminating Concoction","orbit":0},"3567":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":3567,"stats":["12% increased maximum Mana","10% increased Mana Cost of Skills"],"recipe":["Suffering","Ire","Isolation"],"connections":[{"orbit":0,"id":53188},{"orbit":0,"id":10159}],"group":680,"orbitIndex":16,"isNotable":true,"name":"Raw Mana","orbit":3},"54417":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":54417,"stats":["+5 to any Attribute"],"isAttribute":true,"group":510,"connections":[],"orbitIndex":21,"name":"Attribute","orbit":6},"22691":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","id":19990}},"skill":22691,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":548,"connections":[{"orbit":-6,"id":39037},{"orbit":-9,"id":61027}],"orbitIndex":0,"name":"Energy Shield Delay","orbit":0},"48103":{"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":48103,"stats":["20% increased Stun Buildup","20% increased Knockback Distance","+10 to Strength"],"recipe":["Greed","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":52875}],"group":937,"orbitIndex":12,"isNotable":true,"name":"Forcewave","orbit":2},"22783":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","connections":[{"orbit":0,"id":18160},{"orbit":0,"id":17501}],"group":419,"skill":22783,"orbitIndex":10,"name":"Minion Damage","orbit":7},"28432":{"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":20416},{"orbit":0,"id":23062}],"group":383,"skill":28432,"orbitIndex":4,"name":"Armour if Consumed Endurance Charge","orbit":2},"33604":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":385,"skill":33604,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"1826":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":1826,"stats":["+5 to any Attribute"],"isAttribute":true,"group":579,"connections":[{"orbit":0,"id":39037}],"orbitIndex":0,"name":"Attribute","orbit":0},"50277":{"stats":["15% increased Magnitude of Shock you inflict"],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","connections":[{"orbit":0,"id":50701}],"group":930,"skill":50277,"orbitIndex":0,"name":"Shock Effect","orbit":0},"8493":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8493,"stats":["+5 to any Attribute"],"isAttribute":true,"group":388,"connections":[{"orbit":0,"id":64471}],"orbitIndex":0,"name":"Attribute","orbit":0},"11329":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":54676}],"group":337,"skill":11329,"orbitIndex":18,"name":"Life Regeneration","orbit":2},"17118":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17118,"stats":["+5 to any Attribute"],"isAttribute":true,"group":691,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":20049}],"orbitIndex":0,"name":"Attribute","orbit":0},"48429":{"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","connections":[{"orbit":0,"id":58714},{"orbit":0,"id":36169}],"group":469,"skill":48429,"orbitIndex":20,"name":"Grenade Cooldown Recovery Rate","orbit":3},"36044":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":36044,"stats":[],"group":104,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":23307},{"orbit":0,"id":45327}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"61119":{"stats":["10% increased Poison Duration"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":4,"id":64325},{"orbit":0,"id":63431}],"group":958,"skill":61119,"orbitIndex":18,"name":"Poison Duration","orbit":2},"52454":{"stats":["7% increased Chaos Damage"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","connections":[{"orbit":3,"id":46604}],"group":393,"skill":52454,"orbitIndex":21,"name":"Chaos Damage","orbit":3},"56342":{"stats":["Gain 2 Rage when Hit by an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","connections":[{"orbit":7,"id":7341}],"group":194,"skill":56342,"orbitIndex":0,"name":"Rage when Hit","orbit":0},"48305":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48305,"stats":["+5 to any Attribute"],"isAttribute":true,"group":347,"connections":[{"orbit":6,"id":37629}],"orbitIndex":0,"name":"Attribute","orbit":0},"64327":{"icon":"Art/2DArt/SkillIcons/passives/steelspan.dds","skill":64327,"stats":["12% increased Block chance","Stagger empties 50% faster while your Shield is lowered"],"recipe":["Guilt","Paranoia","Greed"],"connections":[{"orbit":0,"id":39517},{"orbit":0,"id":49391}],"group":354,"orbitIndex":21,"isNotable":true,"name":"Defender's Resolve","orbit":3},"28976":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":23374},{"orbit":0,"id":29458}],"group":999,"skill":28976,"orbitIndex":0,"name":"Poison Duration","orbit":0},"41029":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41029,"stats":["+5 to any Attribute"],"isAttribute":true,"group":715,"connections":[{"orbit":0,"id":24321},{"orbit":0,"id":25827},{"orbit":-4,"id":44563}],"orbitIndex":0,"name":"Attribute","orbit":0},"4776":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":14363}],"group":464,"skill":4776,"orbitIndex":2,"name":"Lightning Penetration","orbit":2},"38876":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38876,"stats":["+5 to any Attribute"],"isAttribute":true,"group":260,"connections":[{"orbit":0,"id":61490},{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Attribute","orbit":0},"46358":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":46358,"stats":["+5 to any Attribute"],"isAttribute":true,"group":399,"connections":[{"orbit":0,"id":50423},{"orbit":0,"id":59376}],"orbitIndex":66,"name":"Attribute","orbit":6},"13241":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":13241,"stats":["+5 to any Attribute"],"isAttribute":true,"group":404,"connections":[{"orbit":0,"id":51921},{"orbit":0,"id":55746}],"orbitIndex":48,"name":"Attribute","orbit":6},"2244":{"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[],"group":251,"skill":2244,"orbitIndex":9,"name":"Arcane Surge on Critical Hit","orbit":4},"43557":{"stats":["Minions have 15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":485,"skill":43557,"orbitIndex":18,"name":"Minion Critical Damage","orbit":3},"36808":{"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":36808,"stats":["50% increased Defences from Equipped Shield","1% increased Attack Damage per 75 Armour or Evasion Rating on Shield"],"recipe":["Fear","Suffering","Fear"],"connections":[{"orbit":3,"id":34076},{"orbit":0,"id":37795}],"group":790,"orbitIndex":16,"isNotable":true,"name":"Spiked Shield","orbit":2},"10731":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds","skill":10731,"stats":["Every 12 seconds, gain 50% more Cast Speed for 4 seconds"],"ascendancyName":"Chronomancer","connections":[],"group":181,"orbitIndex":0,"isNotable":true,"name":"Quicksand Hourglass","orbit":0},"27581":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":50510}],"group":52,"skill":27581,"orbitIndex":12,"name":"Shield Block","orbit":4},"62498":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":62498,"stats":["+5 to any Attribute"],"isAttribute":true,"group":154,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":51561},{"orbit":0,"id":21390}],"orbitIndex":0,"name":"Attribute","orbit":0},"63894":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":63894,"stats":["12% increased Spell Damage"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":-4,"id":61267}],"orbitIndex":64,"name":"Spell Damage","orbit":6},"43139":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":43139,"stats":["15% increased Damage for each type of Elemental Ailment on Enemy"],"recipe":["Isolation","Despair","Guilt"],"connections":[{"orbit":0,"id":38068}],"group":466,"orbitIndex":0,"isNotable":true,"name":"Stormbreaker","orbit":4},"25412":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":285,"skill":25412,"orbitIndex":0,"name":"Link Mastery","orbit":0},"2508":{"stats":["3% of Damage taken Recouped as Life"],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","connections":[{"orbit":0,"id":47168},{"orbit":0,"id":59425}],"group":381,"skill":2508,"orbitIndex":18,"name":"Life Recoup","orbit":7},"58930":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":7,"id":14934}],"group":393,"skill":58930,"orbitIndex":9,"name":"Cast Speed","orbit":7},"34927":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":445,"skill":34927,"orbitIndex":0,"name":"Fire Mastery","orbit":0},"31373":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":31373,"stats":["Warcries Empower an additional Attack"],"recipe":["Isolation","Isolation","Despair"],"connections":[{"orbit":0,"id":50561},{"orbit":0,"id":47173}],"group":90,"orbitIndex":63,"isNotable":true,"name":"Vocal Empowerment","orbit":4},"44902":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","connections":[{"orbit":3,"id":511}],"group":114,"skill":44902,"orbitIndex":0,"name":"Attack and Spell Damage","orbit":7},"13387":{"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":411,"skill":13387,"orbitIndex":0,"name":"Elemental Mastery","orbit":5},"58183":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":58183,"stats":["15% increased Magnitude of Bleeding you inflict","25% increased Physical Damage"],"recipe":["Despair","Isolation","Greed"],"connections":[{"orbit":0,"id":60241},{"orbit":0,"id":21245},{"orbit":0,"id":32278}],"group":297,"orbitIndex":11,"isNotable":true,"name":"Blood Tearing","orbit":2},"4":{"stats":["15% increased chance to Shock"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":11578}],"group":703,"skill":4,"orbitIndex":0,"name":"Shock Chance","orbit":0},"42825":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":31238}],"group":289,"skill":42825,"orbitIndex":14,"name":"Energy Shield Delay","orbit":2},"34531":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":34531,"stats":["20% increased Stun Recovery","Gain 20% of maximum Energy Shield as additional Stun Threshold"],"recipe":["Despair","Disgust","Disgust"],"connections":[],"group":412,"orbitIndex":4,"isNotable":true,"name":"Hallowed","orbit":7},"38856":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":38856,"stats":["+5 to any Attribute"],"isAttribute":true,"group":398,"connections":[{"orbit":0,"id":49357},{"orbit":0,"id":2071},{"orbit":5,"id":21081}],"orbitIndex":54,"name":"Attribute","orbit":6},"48833":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":4}],"group":702,"skill":48833,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"36994":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":27491}],"group":412,"skill":36994,"orbitIndex":12,"name":"Energy Shield","orbit":4},"57088":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":-5,"id":54557}],"group":860,"skill":57088,"orbitIndex":20,"name":"Cold Penetration","orbit":2},"58789":{"stats":["Gain 8% of maximum Energy Shield as additional Stun Threshold"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":13307}],"group":381,"skill":58789,"orbitIndex":20,"name":"Stun Threshold from Energy Shield","orbit":4},"34290":{"stats":["10% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":57832}],"group":445,"skill":34290,"orbitIndex":4,"name":"Ignite Effect","orbit":2},"43164":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":5710}],"group":394,"skill":43164,"orbitIndex":20,"name":"Melee Damage","orbit":7},"26945":{"stats":["Minions have 20% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[],"group":419,"skill":26945,"orbitIndex":17,"name":"Minion Critical Chance","orbit":2},"30720":{"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":30720,"stats":["Minions have +13% to Chaos Resistance","Minions gain 8% of Physical Damage as Chaos Damage"],"recipe":["Suffering","Suffering","Envy"],"connections":[{"orbit":0,"id":20119}],"group":419,"orbitIndex":2,"isNotable":true,"name":"Entropic Incarnation","orbit":2},"45992":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":41657}],"group":273,"skill":45992,"orbitIndex":12,"name":"Armour","orbit":3},"32597":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":0,"id":12777}],"group":420,"skill":32597,"orbitIndex":3,"name":"Armour and Energy Shield","orbit":2},"29240":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":29240,"stats":["+5 to any Attribute"],"isAttribute":true,"group":705,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":10881},{"orbit":0,"id":31977},{"orbit":0,"id":57513}],"orbitIndex":0,"name":"Attribute","orbit":0},"57021":{"stats":["Minions have 10% increased Area of Effect"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":8957},{"orbit":0,"id":45343},{"orbit":0,"id":14505}],"group":282,"skill":57021,"orbitIndex":16,"name":"Minion Area","orbit":3},"52429":{"stats":["3% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","connections":[{"orbit":7,"id":58930}],"group":393,"skill":52429,"orbitIndex":13,"name":"Cast Speed","orbit":3},"54447":{"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","classesStart":["Witch","Sorceress"],"skill":54447,"stats":[],"group":506,"connections":[{"orbit":0,"id":23710},{"orbit":0,"id":59822},{"orbit":0,"id":32699},{"orbit":0,"id":40721},{"orbit":0,"id":22147},{"orbit":0,"id":8305},{"orbit":0,"id":4739}],"orbitIndex":0,"name":"WITCH","orbit":0},"3051":{"stats":["Offerings have 30% increased Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":456,"skill":3051,"orbitIndex":18,"name":"Offering Life","orbit":7},"37258":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":37258,"stats":["+5 to any Attribute"],"isAttribute":true,"group":252,"connections":[{"orbit":0,"id":31903}],"orbitIndex":0,"name":"Attribute","orbit":0},"27687":{"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":27687,"stats":["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield"],"recipe":["Suffering","Fear","Disgust"],"connections":[{"orbit":-6,"id":10508}],"group":80,"orbitIndex":18,"isNotable":true,"name":"Greatest Defence","orbit":3},"34419":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds","skill":34419,"stats":["Become Ignited when you deal a Critical Hit, taking 15% of your Life and Energy Shield as Fire Damage per second","30% more Critical Damage Bonus"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":12,"isNotable":true,"name":"Grinning Immolation","orbit":9},"33240":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":33240,"stats":["Minions have 12% reduced Reservation"],"recipe":["Isolation","Isolation","Ire"],"connections":[{"orbit":0,"id":14505}],"group":282,"orbitIndex":71,"isNotable":true,"name":"Lord of Horrors","orbit":5},"24748":{"stats":["15% increased Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":4716}],"group":423,"skill":24748,"orbitIndex":15,"name":"Evasion","orbit":3},"28458":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":0,"id":38972}],"group":278,"skill":28458,"orbitIndex":10,"name":"Minion Damage","orbit":3},"47173":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":90,"skill":47173,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"17646":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds","skill":17646,"stats":["Decimating Strike"],"ascendancyName":"Witchhunter","connections":[],"group":132,"orbitIndex":0,"isNotable":true,"name":"Judge, Jury, and Executioner","orbit":0},"46644":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds","skill":46644,"stats":["Reserves 25% of Life","+1 to Maximum Spirit per 25 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":48,"isNotable":true,"name":"Beidat's Will","orbit":8},"18822":{"stats":["10% increased Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/icebite.dds","connections":[{"orbit":-3,"id":21567},{"orbit":3,"id":47790}],"group":71,"skill":18822,"orbitIndex":0,"name":"Shapeshifting","orbit":1},"14342":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","connections":[{"orbit":4,"id":49256}],"group":52,"skill":14342,"orbitIndex":16,"name":"Armour and Energy Shield","orbit":7},"31189":{"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":31189,"stats":["10% increased Attack Damage","Gain Accuracy Rating equal to your Strength"],"recipe":["Despair","Greed","Isolation"],"connections":[{"orbit":0,"id":28863}],"group":553,"orbitIndex":12,"isNotable":true,"name":"Unexpected Finesse","orbit":4},"45327":{"stats":["15% increased Stun Buildup"],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","connections":[{"orbit":0,"id":10251}],"group":125,"skill":45327,"orbitIndex":14,"name":"Stun Buildup","orbit":7},"34233":{"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":34233,"stats":["5% increased Skill Speed","15% increased Mana Regeneration Rate"],"recipe":["Despair","Guilt","Envy"],"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":32545}],"group":671,"orbitIndex":22,"isNotable":true,"name":"Flow State","orbit":2},"9737":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":36522},{"orbit":4,"id":24813},{"orbit":0,"id":59480}],"group":430,"skill":9737,"orbitIndex":51,"name":"Attack Area","orbit":4},"7972":{"stats":["20% increased Endurance Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","connections":[{"orbit":0,"id":25229},{"orbit":0,"id":5663}],"group":153,"skill":7972,"orbitIndex":4,"name":"Endurance Charge Duration","orbit":2},"12276":{"stats":["8% chance to Aftershock for Slam Skills you use with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":13980}],"group":56,"skill":12276,"orbitIndex":39,"name":"Mace Aftershock Chance","orbit":4},"13828":{"stats":["+16 to Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","connections":[{"orbit":0,"id":1140}],"group":604,"skill":13828,"orbitIndex":63,"name":"Evasion","orbit":4},"50216":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":44951},{"orbit":4,"id":17655}],"group":373,"skill":50216,"orbitIndex":18,"name":"Mana Regeneration","orbit":2},"51934":{"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":51934,"stats":["Recover 3% of Mana when you Invoke a Spell","Triggered Spells deal 45% increased Spell Damage"],"recipe":["Isolation","Envy","Paranoia"],"connections":[],"group":855,"orbitIndex":0,"isNotable":true,"name":"Invocated Efficiency","orbit":0},"21245":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[],"group":309,"skill":21245,"orbitIndex":0,"name":"Spell Critical Chance","orbit":0},"60515":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":-4,"id":19955}],"group":497,"skill":60515,"orbitIndex":4,"name":"Cold Damage","orbit":3},"14945":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":14945,"stats":["Minions have 20% increased Area of Effect","Minions have 20% increased Cooldown Recovery Rate"],"recipe":["Guilt","Paranoia","Fear"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":1447}],"group":278,"orbitIndex":16,"isNotable":true,"name":"Growing Swarm","orbit":3},"38779":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":5,"id":44605},{"orbit":0,"id":44836}],"group":514,"skill":38779,"orbitIndex":8,"name":"Armour and Evasion","orbit":2},"34621":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":38541}],"group":808,"skill":34621,"orbitIndex":0,"name":"Critical Damage","orbit":0},"9941":{"stats":["8% increased Accuracy Rating with One Handed Melee Weapons","8% increased Accuracy Rating with Two Handed Melee Weapons"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":38888}],"group":593,"skill":9941,"orbitIndex":15,"name":"Melee Damage","orbit":7},"10079":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[],"group":536,"skill":10079,"orbitIndex":16,"name":"Energy Shield Recharge","orbit":2},"18472":{"stats":["10% increased Stun Buildup","10% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","connections":[{"orbit":0,"id":46533}],"group":878,"skill":18472,"orbitIndex":12,"name":"Stun and Freeze Buildup","orbit":2},"26291":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":26291,"stats":["25% increased Lightning Damage","15% increased Shock Duration"],"recipe":["Envy","Greed","Paranoia"],"connections":[],"group":146,"orbitIndex":28,"isNotable":true,"name":"Electrifying Nature","orbit":4},"6514":{"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":6514,"stats":["40% increased Damage with Warcries","Warcry Skills have 25% increased Area of Effect"],"recipe":["Isolation","Guilt","Fear"],"connections":[{"orbit":0,"id":47173}],"group":90,"orbitIndex":5,"isNotable":true,"name":"Cacophony","orbit":4},"39570":{"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":6,"id":49394}],"group":776,"skill":39570,"orbitIndex":59,"name":"Bleeding Chance on Critical","orbit":4},"65016":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":65016,"stats":["35% increased Damage with Hits against Burning Enemies"],"recipe":["Guilt","Suffering","Fear"],"connections":[{"orbit":0,"id":11505}],"group":340,"orbitIndex":17,"isNotable":true,"name":"Intense Flames","orbit":3},"35324":{"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":35324,"stats":["Ignites you inflict deal Damage 15% faster"],"recipe":["Isolation","Greed","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":4,"id":34290}],"group":445,"orbitIndex":0,"isNotable":true,"name":"Burnout","orbit":3},"26324":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":46023}],"group":272,"skill":26324,"orbitIndex":0,"name":"Armour","orbit":3},"54975":{"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":0,"id":7526}],"group":837,"skill":54975,"orbitIndex":66,"name":"Slow Effect","orbit":5},"48618":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":7,"id":37327}],"group":319,"skill":48618,"orbitIndex":12,"name":"Mana Regeneration","orbit":3},"3823":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","options":{"Witch":{"stats":["Minions deal 15% increased Damage","Minions have 3% increased Attack and Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Power of the Dead","id":17324}},"skill":3823,"stats":["18% increased Cold Damage","30% increased Freeze Buildup"],"recipe":["Suffering","Envy","Despair"],"isSwitchable":true,"connections":[{"orbit":0,"id":60230},{"orbit":0,"id":5726}],"group":475,"orbitIndex":0,"isNotable":true,"name":"Path of Winter","orbit":1},"48568":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48568,"stats":["+5 to any Attribute"],"isAttribute":true,"group":633,"connections":[{"orbit":0,"id":16489}],"orbitIndex":0,"name":"Attribute","orbit":0},"62216":{"stats":["Empowered Attacks deal 16% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":3,"id":26070},{"orbit":-3,"id":38130}],"group":187,"skill":62216,"orbitIndex":8,"name":"Empowered Attack Damage","orbit":2},"60313":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":448,"skill":60313,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"65322":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":54818},{"orbit":0,"id":13425},{"orbit":0,"id":47709},{"orbit":0,"id":58718}],"group":450,"skill":65322,"orbitIndex":0,"name":"Bleeding Chance","orbit":0},"43014":{"stats":["10% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":0,"id":34308}],"group":234,"skill":43014,"orbitIndex":19,"name":"Melee Damage","orbit":2},"16256":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":16256,"stats":["25% reduced Mana Regeneration Rate while stationary","50% increased Mana Regeneration Rate while moving"],"recipe":["Envy","Greed","Envy"],"connections":[{"orbit":0,"id":53188}],"group":680,"orbitIndex":8,"isNotable":true,"name":"Ether Flow","orbit":3},"27009":{"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":27009,"stats":["40% increased Minion Damage while you have at least two different active Offerings"],"recipe":["Disgust","Suffering","Paranoia"],"connections":[{"orbit":0,"id":30459}],"group":456,"orbitIndex":12,"isNotable":true,"name":"Lust for Sacrifice","orbit":7},"5961":{"stats":["10% increased Lightning Damage"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":54675},{"orbit":0,"id":11315}],"group":637,"skill":5961,"orbitIndex":0,"name":"Lightning Damage","orbit":0},"30459":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":456,"skill":30459,"orbitIndex":6,"name":"Minion Offence Mastery","orbit":1},"59061":{"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":28267}],"group":164,"skill":59061,"orbitIndex":0,"name":"Critical Damage","orbit":0},"23650":{"stats":["15% increased Life Regeneration Rate while on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":43895}],"group":360,"skill":23650,"orbitIndex":12,"name":"Life Regeneration on Low Life","orbit":2},"1442":{"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","skill":1442,"stats":["3% increased Attributes"],"ascendancyName":"Gemling Legionnaire","group":311,"connections":[{"orbit":0,"id":53108}],"orbitIndex":0,"name":"Attributes","orbit":0},"25300":{"stats":["Break 20% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":61796}],"group":120,"skill":25300,"orbitIndex":0,"name":"Armour Break","orbit":0},"7344":{"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":7344,"stats":["Recover 3% of Life on Kill"],"recipe":["Greed","Greed","Greed"],"connections":[{"orbit":0,"id":58182},{"orbit":0,"id":26931}],"group":681,"orbitIndex":4,"isNotable":true,"name":"Life from Death","orbit":3},"3443":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":-4,"id":14548},{"orbit":-3,"id":63545},{"orbit":7,"id":55180}],"group":609,"skill":3443,"orbitIndex":12,"name":"Minion Damage","orbit":7},"24655":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":24655,"stats":["Damage Penetrates 15% Fire Resistance","+10 to Strength"],"recipe":["Fear","Ire","Isolation"],"connections":[],"group":464,"orbitIndex":30,"isNotable":true,"name":"Breath of Fire","orbit":4},"39710":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":39710,"stats":["+5 to any Attribute"],"isAttribute":true,"group":142,"connections":[{"orbit":0,"id":51821}],"orbitIndex":0,"name":"Attribute","orbit":0},"4140":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":4140,"stats":["+5 to any Attribute"],"isAttribute":true,"group":105,"connections":[{"orbit":0,"id":59093}],"orbitIndex":0,"name":"Attribute","orbit":0},"15969":{"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":41129},{"orbit":0,"id":59376}],"group":411,"skill":15969,"orbitIndex":0,"name":"Damage against Ailments","orbit":3},"32071":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":32071,"stats":["20% increased Area of Effect if you've Killed Recently","10% increased Area of Effect for Attacks"],"recipe":["Envy","Fear","Fear"],"connections":[{"orbit":0,"id":15427},{"orbit":0,"id":49111}],"group":37,"orbitIndex":23,"isNotable":true,"name":"Primal Growth","orbit":3},"62439":{"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":62439,"stats":["+10 to Maximum Rage while wielding an Axe"],"recipe":["Isolation","Isolation","Fear"],"connections":[{"orbit":0,"id":24224},{"orbit":0,"id":52300}],"group":78,"orbitIndex":11,"isNotable":true,"name":"Enraged Reaver","orbit":3},"6544":{"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":6544,"stats":["Gain 12% of Physical Damage as Extra Fire Damage"],"recipe":["Envy","Disgust","Isolation"],"connections":[{"orbit":6,"id":56061},{"orbit":0,"id":42604}],"group":243,"orbitIndex":53,"isNotable":true,"name":"Burning Strikes","orbit":4},"57880":{"stats":["12% increased Damage with Axes"],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","connections":[{"orbit":0,"id":27082},{"orbit":0,"id":6269}],"group":78,"skill":57880,"orbitIndex":3,"name":"Axe Damage","orbit":3},"51795":{"stats":["12% increased chance to Ignite","6% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":-2,"id":32271},{"orbit":7,"id":53632}],"group":196,"skill":51795,"orbitIndex":12,"name":"Ignite and Critical Chance","orbit":7},"35739":{"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":35739,"stats":["25% increased Armour Break Duration","25% increased Attack Area Damage"],"recipe":["Greed","Isolation","Ire"],"connections":[{"orbit":3,"id":42410},{"orbit":0,"id":8556}],"group":429,"orbitIndex":0,"isNotable":true,"name":"Crushing Judgement","orbit":0},"13673":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","skill":13673,"stats":["25% increased Chill Duration on Enemies"],"ascendancyName":"Stormweaver","group":308,"connections":[{"orbit":-8,"id":61985}],"orbitIndex":1,"name":"Chill Duration","orbit":8},"22626":{"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","skill":22626,"stats":["100% increased Armour Break Duration"],"recipe":["Guilt","Despair","Disgust"],"connections":[{"orbit":0,"id":45227},{"orbit":0,"id":48717}],"group":97,"orbitIndex":4,"isNotable":true,"name":"Irreparable","orbit":7},"14340":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":14340,"stats":["+5 to any Attribute"],"isAttribute":true,"group":601,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":26319}],"orbitIndex":0,"name":"Attribute","orbit":0},"56360":{"stats":["20% increased Power Charge Duration"],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","connections":[{"orbit":0,"id":24812}],"group":718,"skill":56360,"orbitIndex":19,"name":"Power Charge Duration","orbit":2},"55429":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":60505}],"group":690,"skill":55429,"orbitIndex":7,"name":"Projectile Damage","orbit":7},"11826":{"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":11826,"stats":["8% reduced Attack Speed","40% increased Projectile Damage","40% increased Projectile Stun Buildup"],"recipe":["Guilt","Greed","Greed"],"connections":[{"orbit":0,"id":17726}],"group":621,"orbitIndex":8,"isNotable":true,"name":"Heavy Ammunition","orbit":7},"56595":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":254,"skill":56595,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"64046":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","options":{"Witch":{"stats":["18% increased Chaos Damage","15% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Entropy","id":10941}},"skill":64046,"stats":["18% increased Lightning Damage","30% increased chance to Shock"],"recipe":["Fear","Fear","Ire"],"isSwitchable":true,"connections":[{"orbit":6,"id":45522},{"orbit":-6,"id":60230},{"orbit":0,"id":5726}],"group":475,"orbitIndex":3,"isNotable":true,"name":"Path of Storms","orbit":7},"38578":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds","skill":38578,"stats":["Elemental Storm has 150% more Cooldown Recovery Rate"],"ascendancyName":"Stormweaver","connections":[],"group":308,"orbitIndex":24,"isNotable":true,"name":"Rain Dancer","orbit":8},"5544":{"stats":["25% increased Thorns Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":3,"id":43711}],"group":171,"skill":5544,"orbitIndex":10,"name":"Thorn Critical Damage","orbit":2},"51737":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":51737,"stats":["4 Passive Skill Points become Weapon Set Skill Points"],"ascendancyName":"Witchhunter","group":121,"connections":[{"orbit":-6,"id":8272}],"orbitIndex":0,"name":"Specialisation Points","orbit":0},"18240":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":193,"skill":18240,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"17340":{"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":17340,"stats":["4% increased Movement Speed if you've Killed Recently","8% increased Attack Speed if you've Killed Recently"],"recipe":["Disgust","Ire","Fear"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"orbit":-4,"id":62051}],"group":531,"orbitIndex":9,"isNotable":true,"name":"Adrenaline Rush","orbit":4},"10271":{"stats":["25% increased Attack Damage while Surrounded"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":0,"id":58038}],"group":480,"skill":10271,"orbitIndex":7,"name":"Attack Damage while Surrounded","orbit":3},"4017":{"stats":["15% increased Energy Shield Recharge Rate"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":10079}],"group":536,"skill":4017,"orbitIndex":12,"name":"Energy Shield Recharge","orbit":2},"13708":{"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":13708,"stats":["15% increased Accuracy Rating","+10 to Dexterity"],"recipe":["Greed","Fear","Greed"],"connections":[],"group":481,"orbitIndex":40,"isNotable":true,"name":"Curved Weapon","orbit":4},"62034":{"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","skill":62034,"stats":["+1% to all Maximum Elemental Resistances","+5% to all Elemental Resistances"],"recipe":["Isolation","Isolation","Suffering"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":67,"orbitIndex":0,"isNotable":true,"name":"Prism Guard","orbit":0},"17150":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":17150,"stats":["Gain 8% of Evasion Rating as extra Armour"],"recipe":["Paranoia","Fear","Envy"],"connections":[{"orbit":7,"id":53647},{"orbit":0,"id":19750}],"group":444,"orbitIndex":8,"isNotable":true,"name":"General's Bindings","orbit":3},"20718":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":30979}],"group":363,"skill":20718,"orbitIndex":10,"name":"Duration","orbit":7},"29930":{"stats":["Minions deal 10% increased Damage"],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","connections":[{"orbit":3,"id":16938}],"group":458,"skill":29930,"orbitIndex":0,"name":"Minion Damage","orbit":2},"25374":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":25374,"stats":["+5 to any Attribute"],"isAttribute":true,"group":435,"connections":[{"orbit":6,"id":45969}],"orbitIndex":42,"name":"Attribute","orbit":6},"20024":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":44223}],"group":610,"skill":20024,"orbitIndex":22,"name":"Critical Damage","orbit":7},"53719":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":53719,"stats":["+5 to any Attribute"],"isAttribute":true,"group":155,"connections":[{"orbit":0,"id":57703}],"orbitIndex":0,"name":"Attribute","orbit":0},"64399":{"stats":["15% increased Critical Damage Bonus for Attack Damage"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":3,"id":2511}],"group":307,"skill":64399,"orbitIndex":7,"name":"Attack Critical Damage","orbit":1},"50558":{"stats":["8% increased Effect of Auras from your Aura Skills"],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","connections":[{"orbit":0,"id":55194},{"orbit":0,"id":32194},{"orbit":0,"id":12462}],"group":342,"skill":50558,"orbitIndex":60,"name":"Aura Effect","orbit":4},"43128":{"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","skill":43128,"stats":["4% increased Cast Speed"],"ascendancyName":"Chronomancer","group":202,"connections":[{"orbit":4,"id":10731}],"orbitIndex":60,"name":"Cast Speed","orbit":4},"42410":{"stats":["Break 10% increased Armour","8% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":4,"id":9737}],"group":430,"skill":42410,"orbitIndex":20,"name":"Area Damage and Armour Break","orbit":7},"11764":{"stats":["Debuffs on you expire 10% faster"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":7,"id":38878}],"group":837,"skill":11764,"orbitIndex":11,"name":"Debuff Expiry","orbit":7},"61976":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61976,"stats":["+5 to any Attribute"],"isAttribute":true,"group":783,"connections":[{"orbit":0,"id":7526},{"orbit":4,"id":36298}],"orbitIndex":0,"name":"Attribute","orbit":0},"1913":{"stats":["+20 to Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":38646},{"orbit":0,"id":36709}],"group":408,"skill":1913,"orbitIndex":3,"name":"Armour","orbit":7},"41031":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":41031,"stats":["+5 to any Attribute"],"isAttribute":true,"group":408,"connections":[{"orbit":0,"id":54232}],"orbitIndex":27,"name":"Attribute","orbit":4},"7793":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","skill":7793,"stats":["3% increased maximum Life"],"ascendancyName":"Infernalist","group":486,"connections":[{"orbit":6,"id":18348}],"orbitIndex":130,"name":"Life","orbit":9},"11066":{"stats":["5% increased Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","connections":[{"orbit":2,"id":26663}],"group":545,"skill":11066,"orbitIndex":19,"name":"Cooldown Recovery Rate","orbit":7},"53785":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":1170},{"orbit":0,"id":23307}],"group":159,"skill":53785,"orbitIndex":18,"name":"Attack Area","orbit":3},"57805":{"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":57805,"stats":["20% increased Knockback Distance","20% chance to Knock Enemies Back with Hits at Close Range"],"recipe":["Paranoia","Guilt","Guilt"],"connections":[{"orbit":4,"id":43444}],"group":517,"orbitIndex":18,"isNotable":true,"name":"Clear Space","orbit":4},"51210":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":115,"skill":51210,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"59589":{"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":59589,"stats":["100% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"],"recipe":["Despair","Fear","Greed"],"connections":[{"orbit":0,"id":52659}],"group":76,"orbitIndex":23,"isNotable":true,"name":"Heavy Armour","orbit":3},"55104":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":-7,"id":33254},{"orbit":7,"id":19125}],"group":555,"skill":55104,"orbitIndex":14,"name":"Spell Damage","orbit":7},"12882":{"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds","skill":12882,"stats":["Trigger Elemental Storm on Critical Hit with Spells","Grants Skill: Elemental Storm"],"ascendancyName":"Stormweaver","connections":[{"orbit":0,"id":25618}],"group":308,"orbitIndex":12,"isNotable":true,"name":"Tempest Caller","orbit":8},"62628":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":620,"skill":62628,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"51206":{"stats":["16% increased Totem Damage"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-6,"id":49642}],"group":314,"skill":51206,"orbitIndex":17,"name":"Totem Damage","orbit":3},"52199":{"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":52199,"stats":["30% increased Cold Exposure Effect","30% increased Fire Exposure Effect","30% increased Lightning Exposure Effect"],"recipe":["Suffering","Isolation","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"orbit":0,"id":44498}],"group":466,"orbitIndex":0,"isNotable":true,"name":"Overexposure","orbit":0},"8406":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":8406,"stats":["+5 to any Attribute"],"isAttribute":true,"group":366,"connections":[{"orbit":-4,"id":48305}],"orbitIndex":21,"name":"Attribute","orbit":3},"28446":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":12430},{"orbit":0,"id":50084}],"group":406,"skill":28446,"orbitIndex":9,"name":"Attack Area","orbit":2},"17924":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-7,"id":51867}],"group":232,"skill":17924,"orbitIndex":20,"name":"Damage against Enemies on Low Life","orbit":3},"12851":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":32507},{"orbit":0,"id":32727}],"group":426,"skill":12851,"orbitIndex":3,"name":"Physical Damage","orbit":7},"45916":{"stats":["10% increased Life Regeneration rate"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":-4,"id":27501},{"orbit":4,"id":19330}],"group":435,"skill":45916,"orbitIndex":48,"name":"Life Regeneration","orbit":5},"47270":{"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":47270,"stats":["40% increased Freeze Buildup","20% increased Freeze Duration on Enemies"],"recipe":["Ire","Paranoia","Isolation"],"connections":[],"group":497,"orbitIndex":66,"isNotable":true,"name":"Inescapable Cold","orbit":4},"30990":{"stats":["10% increased Critical Hit Chance"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":58939}],"group":602,"skill":30990,"orbitIndex":16,"name":"Critical Chance","orbit":2},"65193":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":65193,"stats":["8% increased Melee Attack Speed","+10 to Dexterity"],"recipe":["Disgust","Greed","Paranoia"],"connections":[{"orbit":0,"id":48714},{"orbit":0,"id":10245}],"group":234,"orbitIndex":10,"isNotable":true,"name":"Viciousness","orbit":3},"44455":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":0,"id":41669},{"orbit":0,"id":60515}],"group":497,"skill":44455,"orbitIndex":0,"name":"Cold Damage","orbit":0},"62914":{"stats":["12% increased Cold Damage"],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","connections":[{"orbit":5,"id":47270},{"orbit":0,"id":44455}],"group":497,"skill":62914,"orbitIndex":20,"name":"Cold Damage","orbit":3},"7424":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[{"orbit":0,"id":36994},{"orbit":-4,"id":33631},{"orbit":0,"id":1823}],"group":412,"skill":7424,"orbitIndex":0,"name":"Energy Shield","orbit":4},"24647":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":24647,"stats":["+5 to any Attribute"],"isAttribute":true,"group":748,"connections":[{"orbit":4,"id":5702},{"orbit":0,"id":43691},{"orbit":4,"id":30634}],"orbitIndex":42,"name":"Attribute","orbit":6},"59777":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":59777,"stats":["+5 to any Attribute"],"isAttribute":true,"group":68,"connections":[{"orbit":0,"id":10362},{"orbit":0,"id":17791},{"orbit":0,"id":13937},{"orbit":0,"id":26725}],"orbitIndex":0,"name":"Attribute","orbit":0},"26092":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":52392}],"group":229,"skill":26092,"orbitIndex":14,"name":"Two Handed Damage","orbit":3},"13937":{"stats":["14% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":17791}],"group":56,"skill":13937,"orbitIndex":7,"name":"Mace Damage","orbit":7},"48290":{"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"orbit":0,"id":55180},{"orbit":0,"id":49088}],"group":609,"skill":48290,"orbitIndex":15,"name":"Minion Defence Mastery","orbit":2},"54701":{"stats":["16% increased Thorns damage"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":2,"id":21089},{"orbit":-7,"id":1286}],"group":133,"skill":54701,"orbitIndex":14,"name":"Thorns","orbit":7},"27422":{"stats":["10% increased Mana Recovery from Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":2021}],"group":972,"skill":27422,"orbitIndex":0,"name":"Mana Flask Recovery","orbit":0},"6935":{"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds","skill":6935,"stats":["50% increased effect of Sorcery Ward","Sorcery Ward recovers 50% faster"],"ascendancyName":"Witchhunter","connections":[],"group":165,"orbitIndex":0,"isNotable":true,"name":"Ceremonial Ablution","orbit":0},"26786":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":26786,"stats":["+5 to any Attribute"],"isAttribute":true,"group":649,"connections":[{"orbit":0,"id":64352},{"orbit":0,"id":48568}],"orbitIndex":0,"name":"Attribute","orbit":0},"9825":{"stats":["15% increased Elemental Ailment Threshold"],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","connections":[{"orbit":-4,"id":934},{"orbit":9,"id":21755}],"group":489,"skill":9825,"orbitIndex":0,"name":"Ailment Threshold","orbit":3},"31345":{"stats":["Damage Penetrates 6% Lightning Resistance"],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","connections":[{"orbit":0,"id":55400}],"group":843,"skill":31345,"orbitIndex":19,"name":"Lightning Penetration","orbit":2},"46300":{"stats":["15% increased chance to Ignite"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":63021},{"orbit":0,"id":52774}],"group":445,"skill":46300,"orbitIndex":14,"name":"Ignite Chance","orbit":2},"25935":{"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","skill":25935,"stats":["6% increased Block chance"],"ascendancyName":"Warbringer","group":14,"connections":[{"orbit":0,"id":23005}],"orbitIndex":0,"name":"Block Chance","orbit":0},"33366":{"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":-3,"id":10944}],"group":838,"skill":33366,"orbitIndex":14,"name":"Evasion and Energy Shield","orbit":7},"857":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":381,"skill":857,"orbitIndex":0,"name":"Energy Shield Mastery","orbit":0},"4627":{"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":4627,"stats":["20% increased Freeze Buildup","Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"],"recipe":["Greed","Isolation","Despair"],"connections":[{"orbit":0,"id":44179},{"orbit":0,"id":55572}],"group":542,"orbitIndex":0,"isNotable":true,"name":"Climate Change","orbit":7},"34483":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":34483,"stats":[],"group":919,"connections":[{"orbit":6,"id":41877},{"orbit":0,"id":45304},{"orbit":0,"id":49996},{"orbit":0,"id":31286}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"4083":{"stats":["10% increased Magnitude of Poison you inflict"],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","connections":[{"orbit":0,"id":33815},{"orbit":0,"id":43677}],"group":769,"skill":4083,"orbitIndex":11,"name":"Poison Damage","orbit":2},"17380":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"orbit":0,"id":41972},{"orbit":0,"id":23427},{"orbit":0,"id":47270},{"orbit":0,"id":19955}],"group":497,"skill":17380,"orbitIndex":6,"name":"Cold Mastery","orbit":1},"13425":{"stats":["10% increased Bleeding Duration"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":315}],"group":460,"skill":13425,"orbitIndex":0,"name":"Bleeding Duration","orbit":0},"61042":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":61042,"stats":["+5 to any Attribute"],"isAttribute":true,"group":395,"connections":[{"orbit":0,"id":44344}],"orbitIndex":0,"name":"Attribute","orbit":0},"24039":{"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds","skill":24039,"stats":["Reserves 25% of Life","+1 to Maximum Energy Shield per 8 Maximum Life"],"ascendancyName":"Infernalist","connections":[],"group":486,"orbitIndex":51,"isNotable":true,"name":"Beidat's Hand","orbit":5},"21879":{"stats":["Link Skills have 8% increased Cast Speed"],"icon":"Art/2DArt/SkillIcons/passives/clustersLinknode2.dds","connections":[{"orbit":7,"id":9343}],"group":285,"skill":21879,"orbitIndex":1,"name":"Link Cast Speed","orbit":2},"47175":{"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","classesStart":["Marauder","Warrior"],"skill":47175,"stats":[],"group":452,"connections":[{"orbit":0,"id":16732},{"orbit":0,"id":51916},{"orbit":0,"id":54579},{"orbit":0,"id":5852},{"orbit":0,"id":33812},{"orbit":0,"id":32534},{"orbit":0,"id":3936},{"orbit":0,"id":38646}],"orbitIndex":0,"name":"MARAUDER","orbit":0},"11578":{"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":11578,"stats":["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"],"recipe":["Guilt","Disgust","Disgust"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":714,"orbitIndex":0,"isNotable":true,"name":"Spreading Shocks","orbit":0},"16538":{"stats":["10% increased Damage with One Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","connections":[{"orbit":0,"id":44330}],"group":528,"skill":16538,"orbitIndex":2,"name":"One Handed Damage","orbit":2},"375":{"stats":["15% increased Damage with Maces"],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","connections":[{"orbit":0,"id":12276}],"group":56,"skill":375,"orbitIndex":17,"name":"Mace Damage","orbit":7},"2606":{"stats":["Minions have 10% increased maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","connections":[{"orbit":0,"id":47284},{"orbit":0,"id":20388},{"orbit":0,"id":15194},{"orbit":0,"id":3414}],"group":367,"skill":2606,"orbitIndex":6,"name":"Minion Life","orbit":1},"31419":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":3,"id":35787},{"orbit":4,"id":53405}],"group":257,"skill":31419,"orbitIndex":9,"name":"Increased Duration","orbit":7},"24120":{"icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":24120,"stats":["18% increased Mana Regeneration Rate","15% reduced Mana Cost while not on Low Mana"],"recipe":["Envy","Fear","Greed"],"connections":[{"orbit":0,"id":10495}],"group":892,"orbitIndex":0,"isNotable":true,"name":"Mental Toughness","orbit":0},"29695":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","id":31204}},"skill":29695,"stats":["15% faster start of Energy Shield Recharge"],"isSwitchable":true,"group":533,"connections":[],"orbitIndex":7,"name":"Energy Shield Delay","orbit":2},"41154":{"stats":["15% increased Magnitude of Chill you inflict"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-2,"id":33601}],"group":119,"skill":41154,"orbitIndex":18,"name":"Chill Effect","orbit":2},"33242":{"stats":["10% increased chance to inflict Ailments"],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","connections":[{"orbit":0,"id":15838}],"group":411,"skill":33242,"orbitIndex":2,"name":"Ailment Chance","orbit":5},"22045":{"stats":["Regenerate 0.2% of Life per second"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":3,"id":13505}],"group":369,"skill":22045,"orbitIndex":4,"name":"Life Regeneration","orbit":7},"34747":{"stats":["8% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","connections":[{"orbit":0,"id":6274}],"group":358,"skill":34747,"orbitIndex":23,"name":"Accuracy","orbit":7},"15628":{"stats":["15% increased effect of Arcane Surge on you"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":3,"id":36880}],"group":251,"skill":15628,"orbitIndex":17,"name":"Arcane Surge Effect","orbit":5},"48121":{"stats":["Totems gain +12% to all Elemental Resistances"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":-5,"id":24438}],"group":267,"skill":48121,"orbitIndex":0,"name":"Totem Elemental Resistance","orbit":0},"17973":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","options":{"Witch":{"stats":["Minions have 15% increased maximum Life","Minions Revive 15% faster"],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Living Death","id":48926}},"skill":17973,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"recipe":["Guilt","Ire","Disgust"],"isSwitchable":true,"connections":[{"orbit":4,"id":4748},{"orbit":-6,"id":22691}],"group":539,"orbitIndex":3,"isNotable":true,"name":"Rapid Recharge","orbit":7},"65204":{"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":65204,"stats":["+2 to Maximum Power Charges"],"recipe":["Isolation","Envy","Greed"],"connections":[{"orbit":0,"id":30615},{"orbit":0,"id":10162}],"group":977,"orbitIndex":7,"isNotable":true,"name":"Overflowing Power","orbit":2},"46972":{"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":46972,"stats":["25% increased Energy Shield Recharge Rate","Mana Flasks gain 0.1 charges per Second"],"recipe":["Paranoia","Paranoia","Guilt"],"connections":[{"orbit":0,"id":54783}],"group":594,"orbitIndex":23,"isNotable":true,"name":"Arcane Mixtures","orbit":7},"20641":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"orbit":0,"id":51934}],"group":855,"skill":20641,"orbitIndex":1,"name":"Caster Mastery","orbit":1},"32699":{"icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":32699,"stats":[],"ascendancyName":"Infernalist","isAscendancyStart":true,"group":486,"connections":[{"orbit":0,"id":7793},{"orbit":0,"id":23880},{"orbit":0,"id":24135},{"orbit":4,"id":39470},{"orbit":-9,"id":64379}],"orbitIndex":0,"name":"Infernalist","orbit":9},"18826":{"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds","skill":18826,"stats":["Mana Leech is instant"],"ascendancyName":"Acolyte of Chayula","connections":[{"orbit":0,"id":47344}],"group":1058,"orbitIndex":8,"isNotable":true,"name":"Ravenous Doubts","orbit":9},"13542":{"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":13542,"stats":["15% of Elemental Damage taken Recouped as Life"],"recipe":["Ire","Fear","Greed"],"connections":[{"orbit":7,"id":27658},{"orbit":0,"id":44850}],"group":546,"orbitIndex":2,"isNotable":true,"name":"Loose Flesh","orbit":7},"32509":{"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":953,"skill":32509,"orbitIndex":0,"name":"Caster Mastery","orbit":0},"18923":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":18923,"stats":["+5 to any Attribute"],"isAttribute":true,"group":742,"connections":[{"orbit":0,"id":61976},{"orbit":0,"id":17118},{"orbit":0,"id":39570}],"orbitIndex":36,"name":"Attribute","orbit":6},"31609":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":-4,"id":36163}],"group":265,"skill":31609,"orbitIndex":0,"name":"Shield Defences","orbit":3},"11741":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":11741,"stats":["+5 to any Attribute"],"isAttribute":true,"group":92,"connections":[{"orbit":0,"id":17282}],"orbitIndex":8,"name":"Attribute","orbit":3},"32777":{"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":71,"skill":32777,"orbitIndex":0,"name":"Shapeshifting Mastery","orbit":2},"56978":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":56978,"stats":["+5 to any Attribute"],"isAttribute":true,"group":549,"connections":[{"orbit":0,"id":21274}],"orbitIndex":0,"name":"Attribute","orbit":0},"45488":{"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":45488,"stats":["20% increased Accuracy Rating while Dual Wielding","3% increased Movement Speed while Dual Wielding"],"recipe":["Guilt","Greed","Envy"],"connections":[{"orbit":0,"id":4377}],"group":551,"orbitIndex":15,"isNotable":true,"name":"Cross Strike","orbit":3},"2394":{"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":2394,"stats":["6% increased Attack Speed while Dual Wielding","15% increased Attack Critical Hit Chance while Dual Wielding"],"recipe":["Envy","Envy","Despair"],"connections":[],"group":551,"orbitIndex":9,"isNotable":true,"name":"Blade Flurry","orbit":3},"52799":{"stats":["15% increased Freeze Buildup"],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","connections":[{"orbit":-4,"id":47270},{"orbit":4,"id":19955},{"orbit":0,"id":44455}],"group":497,"skill":52799,"orbitIndex":0,"name":"Freeze Buildup","orbit":3},"28863":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":553,"skill":28863,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"48552":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":48552,"stats":["+5 to any Attribute"],"isAttribute":true,"group":249,"connections":[{"orbit":0,"id":43036},{"orbit":0,"id":7960}],"orbitIndex":0,"name":"Attribute","orbit":0},"43155":{"stats":["10% increased Critical Hit Chance with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":65468},{"orbit":0,"id":7062}],"group":612,"skill":43155,"orbitIndex":23,"name":"Crossbow Critical Chance","orbit":4},"65468":{"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":65468,"stats":["Grenades have 15% chance to activate a second time"],"recipe":["Suffering","Despair","Isolation"],"connections":[{"orbit":0,"id":61432}],"group":583,"orbitIndex":0,"isNotable":true,"name":"Repeating Explosives","orbit":0},"33254":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[],"group":555,"skill":33254,"orbitIndex":17,"name":"Spell Damage","orbit":2},"17999":{"stats":["8% increased Warcry Speed","6% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":51561},{"orbit":0,"id":42026},{"orbit":0,"id":63979}],"group":166,"skill":17999,"orbitIndex":2,"name":"Warcry Cooldown and Speed","orbit":7},"44461":{"stats":["10% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","connections":[{"orbit":-7,"id":54998}],"group":158,"skill":44461,"orbitIndex":21,"name":"Increased Duration","orbit":7},"35477":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":35477,"stats":["30% reduced penalty to Accuracy Rating at range"],"recipe":["Guilt","Ire","Fear"],"connections":[{"orbit":0,"id":10277}],"group":902,"orbitIndex":1,"isNotable":true,"name":"Far Sighted","orbit":2},"58002":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":45086},{"orbit":0,"id":55668}],"group":661,"skill":58002,"orbitIndex":3,"name":"Physical Damage","orbit":3},"34520":{"stats":["10% increased Physical Damage"],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","connections":[{"orbit":0,"id":55575},{"orbit":4,"id":14548},{"orbit":-4,"id":63545}],"group":661,"skill":34520,"orbitIndex":15,"name":"Physical Damage","orbit":7},"9568":{"stats":["16% increased Totem Life"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":5580}],"group":387,"skill":9568,"orbitIndex":12,"name":"Totem Life","orbit":2},"11178":{"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":11178,"stats":["50% chance to gain Onslaught on Killing Blow with Axes"],"recipe":["Isolation","Ire","Paranoia"],"connections":[{"orbit":0,"id":24224}],"group":78,"orbitIndex":19,"isNotable":true,"name":"Whirling Onslaught","orbit":3},"17762":{"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":17762,"stats":["40% increased Thorns damage"],"recipe":["Guilt","Fear","Envy"],"connections":[{"orbit":-7,"id":2964}],"group":293,"orbitIndex":23,"isNotable":true,"name":"Vengeance","orbit":2},"25619":{"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":25619,"stats":["10% increased Attack Speed","15% chance to Blind Enemies on Hit with Attacks"],"recipe":["Despair","Despair","Despair"],"connections":[{"orbit":3,"id":43562}],"group":568,"orbitIndex":14,"isNotable":true,"name":"Sand in the Eyes","orbit":2},"28371":{"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":60560}],"group":945,"skill":28371,"orbitIndex":18,"name":"Damage vs Full Life","orbit":7},"52980":{"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","connections":[{"orbit":0,"id":18970},{"orbit":-4,"id":44343}],"group":615,"skill":52980,"orbitIndex":48,"name":"Evasion and Energy Shield","orbit":4},"44787":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":14654},{"orbit":0,"id":49192},{"orbit":-4,"id":51683}],"group":209,"skill":44787,"orbitIndex":14,"name":"Totem Placement Speed","orbit":7},"59501":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"orbit":0,"id":25619},{"orbit":0,"id":42354}],"group":568,"skill":59501,"orbitIndex":0,"name":"Blind Mastery","orbit":0},"34096":{"stats":["10% increased Spell Damage"],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","connections":[{"orbit":0,"id":58096}],"group":262,"skill":34096,"orbitIndex":4,"name":"Spell Damage","orbit":3},"61834":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":61834,"stats":[],"group":973,"connections":[{"orbit":0,"id":59538},{"orbit":0,"id":722}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"51006":{"stats":["4% reduced Flask Charges used from Mana Flasks"],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","connections":[{"orbit":0,"id":41877}],"group":887,"skill":51006,"orbitIndex":1,"name":"Mana Flask Charges Used","orbit":3},"10058":{"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"orbit":0,"id":55149},{"orbit":0,"id":44373}],"group":895,"skill":10058,"orbitIndex":0,"name":"Chaos Mastery","orbit":0},"14739":{"stats":["15% faster start of Energy Shield Recharge"],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","connections":[{"orbit":0,"id":49235}],"group":447,"skill":14739,"orbitIndex":3,"name":"Energy Shield Delay","orbit":2},"39839":{"stats":["20% increased Stun Threshold if you haven't been Stunned Recently"],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","connections":[{"orbit":0,"id":20205},{"orbit":0,"id":14340}],"group":631,"skill":39839,"orbitIndex":20,"name":"Stun Threshold if no recent Stun","orbit":2},"63526":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63526,"stats":["+5 to any Attribute"],"isAttribute":true,"group":520,"connections":[{"orbit":6,"id":28370},{"orbit":4,"id":7788}],"orbitIndex":0,"name":"Attribute","orbit":0},"31848":{"stats":["20% increased Armour if you have been Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","connections":[{"orbit":7,"id":40117}],"group":133,"skill":31848,"orbitIndex":22,"name":"Armour if Hit","orbit":7},"21871":{"stats":["10% increased Attack Damage while you have an Ally in your Presence"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":0,"id":51847},{"orbit":0,"id":37872},{"orbit":0,"id":25213}],"group":553,"skill":21871,"orbitIndex":8,"name":"Attack Damage","orbit":7},"9352":{"stats":["8% increased Area of Effect for Attacks"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":0,"id":32071}],"group":37,"skill":9352,"orbitIndex":2,"name":"Attack Area","orbit":3},"51735":{"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":0,"id":44707}],"group":446,"skill":51735,"orbitIndex":17,"name":"Shield Damage","orbit":2},"64939":{"stats":["12% increased Damage with Two Handed Weapons"],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","connections":[{"orbit":0,"id":30123}],"group":229,"skill":64939,"orbitIndex":12,"name":"Two Handed Damage","orbit":2},"116":{"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":116,"stats":["18% increased maximum Energy Shield","12% increased Mana Regeneration Rate","6% increased Intelligence"],"recipe":["Guilt","Disgust","Fear"],"connections":[{"orbit":0,"id":44359}],"group":584,"orbitIndex":13,"isNotable":true,"name":"Insightfulness","orbit":7},"64870":{"stats":["15% increased Armour"],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","connections":[{"orbit":0,"id":27439}],"group":213,"skill":64870,"orbitIndex":0,"name":"Armour","orbit":0},"54962":{"stats":["15% increased Life Regeneration Rate while stationary"],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","connections":[{"orbit":0,"id":35849}],"group":79,"skill":54962,"orbitIndex":12,"name":"Life Regeneration while Stationary","orbit":7},"53996":{"stats":["8% increased Melee Damage"],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","connections":[{"orbit":7,"id":9941},{"orbit":3,"id":28556}],"group":586,"skill":53996,"orbitIndex":22,"name":"Melee Damage","orbit":7},"45390":{"stats":["Mark Skills have 25% increased Skill Effect Duration"],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","connections":[{"orbit":0,"id":13624},{"orbit":2,"id":28258}],"group":914,"skill":45390,"orbitIndex":7,"name":"Mark Duration","orbit":2},"17372":{"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":17372,"stats":["25% increased Melee Damage","+2 to Melee Strike Range"],"recipe":["Isolation","Paranoia","Guilt"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"group":946,"orbitIndex":6,"isNotable":true,"name":"Reaching Strike","orbit":3},"5580":{"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":5580,"stats":["Attack Skills have +1 to maximum number of Summoned Totems","Skills that would Summon a Totem have 20% chance to Summon two Totems instead"],"recipe":["Disgust","Suffering","Suffering"],"connections":[{"orbit":0,"id":42710}],"group":387,"orbitIndex":0,"isNotable":true,"name":"Watchtowers","orbit":0},"19998":{"stats":["12% increased Damage with Crossbows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":44430}],"group":589,"skill":19998,"orbitIndex":0,"name":"Crossbow Damage","orbit":0},"15892":{"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","connections":[{"orbit":0,"id":30136}],"group":86,"skill":15892,"orbitIndex":13,"name":"Damage vs Armour Broken Enemies","orbit":3},"51534":{"stats":["20% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":24483}],"group":331,"skill":51534,"orbitIndex":15,"name":"Critical Chance","orbit":3},"8460":{"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":93,"skill":8460,"orbitIndex":0,"name":"Warcry Mastery","orbit":0},"38921":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":172,"skill":38921,"orbitIndex":1,"name":"Block Mastery","orbit":2},"11153":{"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","connections":[{"orbit":0,"id":5049}],"group":389,"skill":11153,"orbitIndex":8,"name":"Attack Speed and Accuracy","orbit":7},"56649":{"stats":["Damage Penetrates 6% Cold Resistance"],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","connections":[{"orbit":0,"id":44455}],"group":497,"skill":56649,"orbitIndex":8,"name":"Cold Penetration","orbit":3},"33631":{"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","skill":33631,"stats":[],"group":396,"connections":[{"orbit":0,"id":15885},{"orbit":0,"id":61042}],"orbitIndex":0,"name":"Jewel Socket","orbit":0},"15194":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[{"orbit":0,"id":25303}],"group":357,"skill":15194,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"55231":{"stats":["5% chance to inflict Bleeding on Hit"],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","connections":[{"orbit":0,"id":37361},{"orbit":0,"id":9857}],"group":457,"skill":55231,"orbitIndex":13,"name":"Bleeding Chance","orbit":7},"1477":{"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"orbit":0,"id":11037}],"group":534,"skill":1477,"orbitIndex":0,"name":"Projectile Mastery","orbit":0},"30390":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","connections":[{"orbit":3,"id":33978}],"group":265,"skill":30390,"orbitIndex":18,"name":"Block","orbit":3},"17248":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":17248,"stats":["+5 to any Attribute"],"isAttribute":true,"group":610,"connections":[{"orbit":-5,"id":53960}],"orbitIndex":0,"name":"Attribute","orbit":5},"42710":{"stats":["20% increased Totem Placement speed"],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","connections":[{"orbit":0,"id":41186}],"group":387,"skill":42710,"orbitIndex":7,"name":"Totem Placement Speed","orbit":2},"22290":{"stats":["10% increased Critical Hit Chance for Spells"],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","connections":[{"orbit":-6,"id":48821},{"orbit":0,"id":36302}],"group":504,"skill":22290,"orbitIndex":12,"name":"Spell Critical Chance","orbit":3},"36596":{"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","connections":[{"orbit":-3,"id":45013}],"group":590,"skill":36596,"orbitIndex":4,"name":"Damage against Enemies on Low Life","orbit":3},"38105":{"stats":["15% increased maximum Energy Shield"],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","connections":[],"group":381,"skill":38105,"orbitIndex":67,"name":"Energy Shield","orbit":4},"48137":{"stats":["15% increased Crossbow Reload Speed"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":33887}],"group":612,"skill":48137,"orbitIndex":11,"name":"Crossbow Reload Speed","orbit":4},"59653":{"stats":["2% increased Movement Speed"],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","connections":[{"orbit":0,"id":35987}],"group":604,"skill":59653,"orbitIndex":10,"name":"Movement Speed","orbit":7},"25303":{"stats":["Minions have +20% to Fire Resistance"],"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","connections":[],"group":344,"skill":25303,"orbitIndex":0,"name":"Minion Fire Resistance","orbit":0},"63114":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":63114,"stats":["+5 to any Attribute"],"isAttribute":true,"group":109,"connections":[{"orbit":0,"id":53719},{"orbit":0,"id":21387},{"orbit":0,"id":26176},{"orbit":0,"id":35048}],"orbitIndex":4,"name":"Attribute","orbit":3},"10159":{"stats":["10% increased Mana Regeneration Rate"],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","connections":[{"orbit":4,"id":31977}],"group":680,"skill":10159,"orbitIndex":42,"name":"Mana Regeneration","orbit":4},"23888":{"stats":["12% increased Armour and Evasion Rating"],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","connections":[{"orbit":7,"id":7390},{"orbit":0,"id":54099}],"group":444,"skill":23888,"orbitIndex":0,"name":"Armour and Evasion","orbit":3},"58125":{"stats":["25% increased Defences from Equipped Shield"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":5,"id":10681}],"group":52,"skill":58125,"orbitIndex":60,"name":"Shield Defences","orbit":4},"30141":{"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","options":[{"stats":["+5 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","id":26297},{"stats":["+5 to Dexterity"],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","id":14927},{"stats":["+5 to Intelligence"],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","id":57022}],"skill":30141,"stats":["+5 to any Attribute"],"isAttribute":true,"group":53,"connections":[{"orbit":0,"id":55190}],"orbitIndex":0,"name":"Attribute","orbit":0},"45918":{"icon":"Art/2DArt/SkillIcons/passives/heroicspirit.dds","skill":45918,"isKeystone":true,"stats":["All Damage is taken from Mana before Life","50% less Mana Recovery Rate"],"group":244,"connections":[],"orbitIndex":0,"name":"Mind Over Matter","orbit":0},"21779":{"stats":["15% increased Critical Damage Bonus"],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","connections":[{"orbit":0,"id":57204}],"group":619,"skill":21779,"orbitIndex":19,"name":"Critical Damage","orbit":2},"35234":{"stats":["10% increased Projectile Damage"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":35660},{"orbit":0,"id":6789},{"orbit":0,"id":56651}],"group":620,"skill":35234,"orbitIndex":19,"name":"Projectile Damage","orbit":7},"61472":{"stats":["+8 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":9417},{"orbit":-7,"id":36389}],"group":215,"skill":61472,"orbitIndex":10,"name":"Strength","orbit":7},"35602":{"stats":["Offerings have 30% reduced Maximum Life"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":456,"skill":35602,"orbitIndex":6,"name":"Offering Life","orbit":7},"37665":{"stats":["Break 10% increased Armour","8% increased Attack Area Damage"],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","connections":[{"orbit":3,"id":35739}],"group":430,"skill":37665,"orbitIndex":2,"name":"Area Damage and Armour Break","orbit":7},"44092":{"stats":["12% increased Magnitude of Ignite you inflict"],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","connections":[{"orbit":0,"id":54911}],"group":340,"skill":44092,"orbitIndex":1,"name":"Ignite Effect","orbit":2},"42614":{"stats":["Offering Skills have 30% reduced Duration"],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","connections":[],"group":544,"skill":42614,"orbitIndex":6,"name":"Offering Duration","orbit":7},"27875":{"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":27875,"stats":["40% increased chance to Shock","5% increased Attack and Cast Speed with Lightning Skills"],"recipe":["Isolation","Suffering","Greed"],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"orbit":0,"id":32123}],"group":839,"orbitIndex":0,"isNotable":true,"name":"General Electric","orbit":0},"24646":{"stats":["5% reduced maximum Mana","+12 to Strength"],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","connections":[{"orbit":0,"id":61409}],"group":110,"skill":24646,"orbitIndex":18,"name":"Strength and Reduced Mana","orbit":3},"49023":{"stats":["5% increased Block chance"],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","connections":[{"orbit":3,"id":12817},{"orbit":0,"id":22975}],"group":172,"skill":49023,"orbitIndex":6,"name":"Shield Block","orbit":1},"31055":{"stats":["3% increased Attack Speed with Bows"],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","connections":[{"orbit":0,"id":18969}],"group":1006,"skill":31055,"orbitIndex":19,"name":"Bow Speed","orbit":2},"51728":{"stats":["15% chance to Pierce an Enemy"],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","connections":[{"orbit":0,"id":6505}],"group":547,"skill":51728,"orbitIndex":7,"name":"Pierce Chance","orbit":2},"19715":{"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":19715,"stats":["Damage Penetrates 18% Fire Resistance","25% increased Fire Exposure Effect"],"recipe":["Isolation","Disgust","Isolation"],"connections":[{"orbit":0,"id":34927}],"group":445,"orbitIndex":66,"isNotable":true,"name":"Cremation","orbit":4},"53216":{"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":136,"skill":53216,"orbitIndex":0,"name":"Life Mastery","orbit":0},"37991":{"stats":["6% increased Effect of your Curses"],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","connections":[{"orbit":0,"id":52254}],"group":565,"skill":37991,"orbitIndex":18,"name":"Curse Effect","orbit":7},"14923":{"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"stats":[],"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":394,"skill":14923,"orbitIndex":0,"name":"Attack Mastery","orbit":0},"63979":{"stats":["10% increased Warcry Cooldown Recovery Rate"],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","connections":[{"orbit":0,"id":9750}],"group":166,"skill":63979,"orbitIndex":6,"name":"Warcry Cooldown","orbit":7}},"max_x":22310.387360804,"constants":{"classes":{"DexIntClass":6,"IntClass":3,"StrDexIntClass":0,"StrIntClass":5,"StrDexClass":4,"DexClass":2,"StrClass":1},"orbitRadii":[0,82,162,335,493,662,846,251,1080,1322],"characterAttributes":{"Strength":0,"Intelligence":2,"Dexterity":1},"PSSCentreInnerRadius":130,"skillsPerOrbit":[1,12,24,24,72,72,72,24,72,144]}} \ No newline at end of file diff --git a/src/TreeData/0_1/tree.lua b/src/TreeData/0_1/tree.lua index 1e5bf405c7..8edf8914ca 100644 --- a/src/TreeData/0_1/tree.lua +++ b/src/TreeData/0_1/tree.lua @@ -96,10 +96,12 @@ return { ascendancies={ [1]={ id="Deadeye", + internalId="Ranger1", name="Deadeye" }, [2]={ id="Pathfinder", + internalId="Ranger3", name="Pathfinder" } }, @@ -112,10 +114,12 @@ return { ascendancies={ [1]={ id="Titan", + internalId="Warrior1", name="Titan" }, [2]={ id="Warbringer", + internalId="Warrior2", name="Warbringer" } }, @@ -128,10 +132,12 @@ return { ascendancies={ [1]={ id="Witchhunter", + internalId="Mercenary2", name="Witchhunter" }, [2]={ id="Gemling Legionnaire", + internalId="Mercenary3", name="Gemling Legionnaire" } }, @@ -144,10 +150,12 @@ return { ascendancies={ [1]={ id="Infernalist", + internalId="Witch1", name="Infernalist" }, [2]={ id="Blood Mage", + internalId="Witch2", name="Blood Mage" } }, @@ -160,10 +168,12 @@ return { ascendancies={ [1]={ id="Stormweaver", + internalId="Sorceress1", name="Stormweaver" }, [2]={ id="Chronomancer", + internalId="Sorceress2", name="Chronomancer" } }, @@ -176,10 +186,12 @@ return { ascendancies={ [1]={ id="Invoker", + internalId="Monk2", name="Invoker" }, [2]={ id="Acolyte of Chayula", + internalId="Monk3", name="Acolyte of Chayula" } }, @@ -14330,6 +14342,32 @@ return { y=-6091.4571409843 } }, + jewelSlots={ + [1]=26725, + [2]=36634, + [3]=33989, + [4]=41263, + [5]=60735, + [6]=61834, + [7]=31683, + [8]=28475, + [9]=6230, + [10]=48768, + [11]=34483, + [12]=7960, + [13]=46882, + [14]=55190, + [15]=61419, + [16]=2491, + [17]=54127, + [18]=32763, + [19]=26196, + [20]=33631, + [21]=21984, + [22]=59740, + [23]=63132, + [24]=36044 + }, ["max_x"]=22310.387360804, ["max_y"]=23700.966667042, ["min_x"]=-22030.845566528, @@ -26389,7 +26427,8 @@ return { }, skill=11526, stats={ - [1]="Arrows gain Critical Hit Chance as they travel farther, up to 60% increased Critical Hit Chance" + [1]="Arrows gain Critical Hit Chance as they travel farther, up to", + [2]="60% increased Critical Hit Chance after 7 metres" } }, [11578]={ @@ -36226,7 +36265,7 @@ return { }, skill=21380, stats={ - [1]="100% increased Critical Damage Bonus against Enemies that are on Full Life" + [1]="Critical Damage Bonus vs full life enemies 100%" } }, [21387]={ @@ -70010,7 +70049,7 @@ return { orbitIndex=15, skill=52630, stats={ - [1]="40% increased Critical Damage Bonus against Enemies that are on Full Life" + [1]="Critical Damage Bonus vs full life enemies 40%" } }, [52659]={ @@ -79882,7 +79921,7 @@ return { orbitIndex=13, skill=61800, stats={ - [1]="40% increased Critical Damage Bonus against Enemies that are on Full Life" + [1]="Critical Damage Bonus vs full life enemies 40%" } }, [61804]={