diff --git a/json_to_models/dynamic_typing/__init__.py b/json_to_models/dynamic_typing/__init__.py index 9dd4f7a..247e7bc 100644 --- a/json_to_models/dynamic_typing/__init__.py +++ b/json_to_models/dynamic_typing/__init__.py @@ -1,7 +1,7 @@ from .base import ( BaseType, ImportPathList, MetaData, NoneType, Unknown, UnknownType, get_hash_string ) -from .complex import ComplexType, DList, DOptional, DTuple, DUnion, SingleType +from .complex import ComplexType, DDict, DList, DOptional, DTuple, DUnion, SingleType from .models_meta import AbsoluteModelRef, ModelMeta, ModelPtr from .string_datetime import IsoDateString, IsoDatetimeString, IsoTimeString, register_datetime_classes from .string_serializable import ( diff --git a/json_to_models/dynamic_typing/complex.py b/json_to_models/dynamic_typing/complex.py index 5aabe0f..a45d69c 100644 --- a/json_to_models/dynamic_typing/complex.py +++ b/json_to_models/dynamic_typing/complex.py @@ -150,8 +150,8 @@ def __init__(self, *types: Union[type, BaseType, dict]): else: h = get_hash_string(t) if h not in hashes: - hashes.add(h) unique_types.append(t) + hashes.add(h) super().__init__(*unique_types) def _extract_nested_types(self): @@ -188,3 +188,13 @@ def to_typing_code(self) -> Tuple[ImportPathList, str]: [*imports, ('typing', 'List')], f"List[{nested}]" ) + + +class DDict(SingleType): + # Dict is single type because keys of JSON dict are always strings. + def to_typing_code(self) -> Tuple[ImportPathList, str]: + imports, nested = metadata_to_typing(self.type) + return ( + [*imports, ('typing', 'Dict')], + f"Dict[str, {nested}]" + ) diff --git a/json_to_models/generator.py b/json_to_models/generator.py index a9a7497..c2a851e 100644 --- a/json_to_models/generator.py +++ b/json_to_models/generator.py @@ -1,10 +1,12 @@ +import keyword +import re from collections import OrderedDict from enum import Enum -from typing import Any, Callable, List, Optional, Union +from typing import Any, Callable, List, Optional, Pattern, Union from unidecode import unidecode -from .dynamic_typing import (ComplexType, DList, DOptional, DUnion, MetaData, ModelPtr, NoneType, SingleType, +from .dynamic_typing import (ComplexType, DDict, DList, DOptional, DUnion, MetaData, ModelPtr, NoneType, SingleType, StringSerializable, StringSerializableRegistry, Unknown, registry) @@ -27,11 +29,29 @@ def __str__(self): return self.value +keywords_set = set(keyword.kwlist) + + class MetadataGenerator: CONVERTER_TYPE = Optional[Callable[[str], Any]] - def __init__(self, str_types_registry: StringSerializableRegistry = None): + def __init__( + self, + str_types_registry: StringSerializableRegistry = None, + dict_keys_regex: List[Union[Pattern, str]] = None, + dict_keys_fields: List[str] = None + ): + """ + + :param str_types_registry: StringSerializableRegistry instance. Default registry will be used if None passed . + :param dict_keys_regex: List of RegExpressions (compiled or not). + If all keys of some dict are match one of them then this dict will be marked as dict field + but not nested model. + :param dict_keys_fields: List of model fields names that will be marked as dict field + """ self.str_types_registry = str_types_registry if str_types_registry is not None else registry + self.dict_keys_regex = [re.compile(r) for r in dict_keys_regex] if dict_keys_regex else [] + self.dict_keys_fields = set(dict_keys_fields or ()) def generate(self, *data_variants: dict) -> dict: """ @@ -51,7 +71,10 @@ def _convert(self, data: dict): # ! _detect_type function can crash at some complex data sets if value is unicode with some characters (maybe German) # Crash does not produce any useful logs and can occur any time after bad string was processed # It can be reproduced on real_apis tests (openlibrary API) - fields[key] = self._detect_type(value if not isinstance(value, str) else unidecode(value)) + convert_dict = key not in self.dict_keys_fields + if key in keywords_set: + key += "_" + fields[key] = self._detect_type(value if not isinstance(value, str) else unidecode(value), convert_dict) return fields def _detect_type(self, value, convert_dict=True) -> MetaData: @@ -69,10 +92,7 @@ def _detect_type(self, value, convert_dict=True) -> MetaData: # List trying to yield nested type elif isinstance(value, list): if value: - types = [] - for item in value: - t = self._detect_type(item, convert_dict) - types.append(t) + types = [self._detect_type(item) for item in value] if len(types) > 1: union = DUnion(*types) if len(union.types) == 1: @@ -85,10 +105,24 @@ def _detect_type(self, value, convert_dict=True) -> MetaData: # Dict should be processed as another model if convert_dict is enabled elif isinstance(value, dict): + for reg in self.dict_keys_regex: + if all(map(reg.match, value.keys())): + convert_dict = False + break + if convert_dict: return self._convert(value) else: - return dict + types = [self._detect_type(item) for item in value.values()] + if len(types) > 1: + union = DUnion(*types) + if len(union.types) == 1: + return DDict(*union.types) + return DDict(union) + elif types: + return DDict(*types) + else: + return DDict(Unknown) # null interpreted as is and will be processed later on Union merge stage elif value is None: diff --git a/test/conftest.py b/test/conftest.py index 9b91944..22ba2ac 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -6,7 +6,7 @@ @pytest.fixture def models_generator(): - return MetadataGenerator() + return MetadataGenerator(dict_keys_regex=[r"^test_dict_field_\w+$"], dict_keys_fields=["dict_field"]) @pytest.fixture diff --git a/test/test_code_generation/test_attrs_generation.py b/test/test_code_generation/test_attrs_generation.py index f378698..4e9f484 100644 --- a/test/test_code_generation/test_attrs_generation.py +++ b/test/test_code_generation/test_attrs_generation.py @@ -2,7 +2,7 @@ import pytest -from json_to_models.dynamic_typing import (DList, DOptional, FloatString, IntString, ModelMeta, compile_imports) +from json_to_models.dynamic_typing import (DDict, DList, DOptional, FloatString, IntString, ModelMeta, compile_imports) from json_to_models.models import sort_fields from json_to_models.models.attr import AttrsModelCodeGenerator, METADATA_FIELD_NAME, sort_kwargs from json_to_models.models.base import generate_code @@ -87,7 +87,8 @@ class Test: "baz": DOptional(DList(DList(str))), "bar": DOptional(IntString), "qwerty": FloatString, - "asdfg": DOptional(int) + "asdfg": DOptional(int), + "dict": DDict(int) }), "fields_data": { "foo": { @@ -114,19 +115,25 @@ class Test: "name": "asdfg", "type": "Optional[int]", "body": f"attr.ib(default=None, {field_meta('asdfg')})" + }, + "dict": { + "name": "dict", + "type": "Dict[str, int]", + "body": f"attr.ib({field_meta('dict')})" } }, "generated": trim(f""" import attr from attr.converter import optional from json_to_models.dynamic_typing import FloatString, IntString - from typing import List, Optional + from typing import Dict, List, Optional @attr.s class Test: foo: int = attr.ib({field_meta('foo')}) qwerty: FloatString = attr.ib(converter=FloatString, {field_meta('qwerty')}) + dict: Dict[str, int] = attr.ib({field_meta('dict')}) baz: Optional[List[List[str]]] = attr.ib(factory=list, {field_meta('baz')}) bar: Optional[IntString] = attr.ib(default=None, converter=optional(IntString), {field_meta('bar')}) asdfg: Optional[int] = attr.ib(default=None, {field_meta('asdfg')}) diff --git a/test/test_generator/test_detect_type.py b/test/test_generator/test_detect_type.py index 8d508ee..f847e20 100644 --- a/test/test_generator/test_detect_type.py +++ b/test/test_generator/test_detect_type.py @@ -1,6 +1,6 @@ import pytest -from json_to_models.dynamic_typing import BooleanString, DList, DUnion, FloatString, IntString, NoneType, Unknown +from json_to_models.dynamic_typing import BooleanString, DDict, DList, DUnion, FloatString, IntString, NoneType, Unknown from json_to_models.generator import MetadataGenerator # JSON data | MetaData @@ -17,6 +17,7 @@ pytest.param("1", IntString, id="int_str"), pytest.param("1.0", FloatString, id="float_str"), pytest.param("true", BooleanString, id="bool_str"), + pytest.param({"test_dict_field_a": 1, "test_dict_field_b": "a"}, DDict(DUnion(int, str)), id="dict") ] test_dict = {param.id: param.values[0] for param in test_data} @@ -34,3 +35,23 @@ @pytest.mark.parametrize("value,expected", test_data) def test_detect_type(models_generator: MetadataGenerator, value, expected): assert models_generator._detect_type(value) == expected + + +def test_convert(models_generator: MetadataGenerator): + data = { + "dict_field": {}, + "another_dict_field": {"test_dict_field_a": 1, "test_dict_field_b": "a"}, + "another_dict_field_2": {"test_dict_field_a": 1}, + "another_dict_field_3": {"test_dict_field_a": 1, "test_dict_field_b": 2}, + "int_field": 1, + "not": False + } + meta = models_generator._convert(data) + assert meta == { + "dict_field": DDict(Unknown), + "another_dict_field": DDict(DUnion(int, str)), + "another_dict_field_2": DDict(int), + "another_dict_field_3": DDict(int), + "int_field": int, + "not_": bool + } diff --git a/testing_tools/large_data_set.json b/testing_tools/large_data_set.json new file mode 100644 index 0000000..41a9ea4 --- /dev/null +++ b/testing_tools/large_data_set.json @@ -0,0 +1,91132 @@ +{ + "characterData": { + "1": { + "base_str": 32, + "base_dex": 14, + "base_int": 14 + }, + "3": { + "base_str": 14, + "base_dex": 14, + "base_int": 32 + }, + "0": { + "base_str": 20, + "base_dex": 20, + "base_int": 20 + }, + "2": { + "base_str": 14, + "base_dex": 32, + "base_int": 14 + }, + "4": { + "base_str": 23, + "base_dex": 23, + "base_int": 14 + }, + "6": { + "base_str": 14, + "base_dex": 23, + "base_int": 23 + }, + "5": { + "base_str": 23, + "base_dex": 14, + "base_int": 23 + } + }, + "groups": { + "1": { + "x": -1023.48, + "y": 3799.75, + "oo": [ + true + ], + "n": [ + 476 + ] + }, + "2": { + "x": -5807.97, + "y": -79.7297, + "oo": { + "4": true + }, + "n": [ + 63282 + ] + }, + "3": { + "x": -3235.18, + "y": -4635.27, + "oo": { + "0": true, + "2": true + }, + "n": [ + 24229, + 13361, + 64395, + 17806, + 16512, + 22702, + 4977 + ] + }, + "4": { + "x": -2500.98, + "y": -4433.87, + "oo": [ + true + ], + "n": [ + 5456 + ] + }, + "5": { + "x": -4126, + "y": 3864.31, + "oo": { + "0": true, + "2": true + }, + "n": [ + 38922, + 56982, + 57923, + 13910, + 17038, + 46756 + ] + }, + "6": { + "x": 737.904, + "y": -979.543, + "oo": [ + true + ], + "n": [ + 45175 + ] + }, + "7": { + "x": -942.818, + "y": -4252.79, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 44955, + 30225, + 58604, + 44983, + 34661, + 38148, + 12852, + 1031, + 7938, + 33783, + 4184 + ] + }, + "8": { + "x": 3888.82, + "y": 5651.85, + "oo": [ + true + ], + "n": [ + 42178 + ] + }, + "9": { + "x": -6376.63, + "y": -2901.63, + "oo": { + "0": true, + "3": true + }, + "n": [ + 38989, + 25816, + 26481, + 35260, + 29106, + 41190, + 4177, + 25332, + 19103, + 15046 + ] + }, + "10": { + "x": 746.097, + "y": 5657.27, + "oo": [ + true + ], + "n": [ + 8544 + ] + }, + "11": { + "x": -4441.9, + "y": 1570.37, + "oo": { + "3": true + }, + "n": [ + 60169, + 38777, + 2454, + 14606, + 39786, + 35663, + 10282, + 34130 + ] + }, + "12": { + "x": -3677.63, + "y": 1570.93, + "oo": [ + true + ], + "n": [ + 58449 + ] + }, + "13": { + "x": -4899.88, + "y": 3192.62, + "oo": { + "0": true, + "2": true + }, + "n": [ + 62108, + 63422, + 28311, + 39172 + ] + }, + "14": { + "x": 787.072, + "y": -6483, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 40609, + 22090, + 5972, + 8833, + 36412, + 40705, + 58157, + 53732, + 36226, + 21460 + ] + }, + "15": { + "x": -6412.21, + "y": -866.917, + "oo": { + "0": true, + "3": true + }, + "n": [ + 47427, + 18990, + 42917, + 51559, + 37639, + 6814, + 54667, + 16754, + 39761, + 48282, + 16113 + ] + }, + "16": { + "x": -3.33598, + "y": 1360.64, + "oo": [ + true + ], + "n": [ + 19144 + ] + }, + "17": { + "x": -2697.55, + "y": -3138.37, + "oo": [ + true + ], + "n": [ + 13009 + ] + }, + "18": { + "x": -5807.91, + "y": -3453.47, + "oo": { + "0": true, + "2": true, + "4": true + }, + "n": [ + 23083, + 41970, + 49939, + 22757, + 10771, + 43486 + ] + }, + "19": { + "x": 3022.59, + "y": -2009.62, + "oo": { + "2": true, + "4": true + }, + "n": [ + 11334, + 64501, + 15549, + 46136, + 58649, + 62069, + 31583, + 1600 + ] + }, + "20": { + "x": 3333.63, + "y": -3301.79, + "oo": { + "1": true + }, + "n": [ + 56648, + 47321, + 265 + ] + }, + "21": { + "x": 648.905, + "y": -396.45, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 45456, + 28221, + 918, + 8742, + 56153, + 13344, + 24643, + 11688, + 34062, + 48768 + ] + }, + "22": { + "x": 6203.88, + "y": 4168.72, + "oo": [ + true + ], + "n": [ + 32555 + ] + }, + "23": { + "x": -3408.98, + "y": -3271.13, + "oo": { + "0": true, + "2": true + }, + "n": [ + 9505, + 42668, + 43689, + 24824, + 50557 + ] + }, + "24": { + "x": -3190.08, + "y": -527.433, + "oo": { + "0": true, + "2": true + }, + "n": [ + 27140, + 64816, + 34959, + 27301, + 51287, + 6884 + ] + }, + "25": { + "x": 4145.42, + "y": 2350.19, + "oo": { + "2": true + }, + "n": [ + 15842, + 903, + 30894, + 18670, + 38246, + 3187 + ] + }, + "26": { + "x": 5054.18, + "y": -3151.3, + "oo": { + "0": true, + "2": true + }, + "n": [ + 4973, + 59482, + 46896, + 5129, + 9864, + 58442 + ] + }, + "27": { + "x": -4052.1, + "y": -2490.66, + "oo": { + "2": true + }, + "n": [ + 40927, + 61308, + 15365 + ] + }, + "28": { + "x": -4489.95, + "y": 2454.36, + "oo": { + "2": true, + "3": true + }, + "n": [ + 10542, + 59861, + 7399, + 31928, + 61868, + 61999, + 6718, + 27166, + 27195, + 31033, + 32482 + ] + }, + "29": { + "x": -7146.59, + "y": 7425.47, + "oo": { + "2": true + }, + "n": [ + 24798, + 17445, + 41996, + 63357, + 607 + ] + }, + "30": { + "x": 2800.84, + "y": 81.5361, + "oo": { + "2": true + }, + "n": [ + 39861, + 24496, + 33989 + ] + }, + "31": { + "x": 2914.53, + "y": 1347.77, + "oo": [ + true + ], + "n": [ + 465 + ] + }, + "32": { + "x": -4528.12, + "y": -2004.44, + "oo": { + "0": true, + "3": true + }, + "n": [ + 44799, + 21262, + 30693, + 33435, + 54694, + 58453, + 12536 + ] + }, + "33": { + "x": -5805.78, + "y": 3018, + "oo": [ + true + ], + "n": [ + 5233 + ] + }, + "34": { + "x": -9091.84, + "y": 652.324, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 9971, + 982, + 42659, + 48480, + 5029, + 50692, + 53095, + 24704, + 47486, + 5643, + 6028, + 31667, + 1731 + ] + }, + "35": { + "x": 1516.74, + "y": 5146.86, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 59717, + 9171, + 28455, + 57503, + 36704, + 54872, + 1382, + 39530 + ] + }, + "36": { + "x": -4117.23, + "y": 622.568, + "oo": { + "0": true, + "2": true + }, + "n": [ + 9371, + 16756, + 63309, + 30251, + 32906, + 56435, + 59295 + ] + }, + "37": { + "x": 2133.78, + "y": -3793.41, + "oo": { + "1": true + }, + "n": [ + 9788, + 12189, + 5875 + ] + }, + "38": { + "x": -5299.44, + "y": -788.944, + "oo": { + "0": true, + "2": true + }, + "n": [ + 62214, + 64426, + 20832, + 20349, + 32854, + 1593, + 56305 + ] + }, + "39": { + "x": -4560.26, + "y": -3977.58, + "oo": { + "0": true, + "2": true + }, + "n": [ + 14057, + 32262, + 9386, + 5743, + 58218 + ] + }, + "40": { + "x": -4590.89, + "y": 4779.21, + "oo": { + "1": true + }, + "n": [ + 7285, + 12247, + 56359 + ] + }, + "41": { + "x": 9194.32, + "y": -2615.48, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 57331, + 32947, + 2336, + 55867, + 58454, + 23225, + 37191, + 15542, + 63908, + 28884, + 19587, + 29825, + 35598, + 41891, + 13219, + 55236 + ] + }, + "42": { + "x": -2157.92, + "y": 3126.84, + "oo": { + "1": true + }, + "n": [ + 57061, + 22061, + 5289 + ] + }, + "43": { + "x": 2364.66, + "y": 4512.38, + "oo": [ + true + ], + "n": [ + 36874 + ] + }, + "44": { + "x": 2.7304, + "y": -6191.82, + "oo": { + "0": true, + "3": true + }, + "n": [ + 49588, + 55647, + 61264, + 46469, + 57362, + 56716, + 32431, + 36121, + 11645, + 44355 + ] + }, + "45": { + "x": 2352.7, + "y": -283.597, + "oo": { + "1": true + }, + "n": [ + 59605, + 54574, + 54974 + ] + }, + "46": { + "x": -2472.7, + "y": -3506.94, + "oo": [ + true + ], + "n": [ + 34098 + ] + }, + "47": { + "x": -2813.95, + "y": 5438.33, + "oo": { + "1": true + }, + "n": [ + 30439, + 8879, + 14419 + ] + }, + "48": { + "x": 9073.24, + "y": -1196.8, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 51462, + 25167, + 28535, + 869, + 5087, + 64842, + 26446, + 14103, + 63135, + 47366, + 16940, + 39834, + 41081, + 38918, + 18635 + ] + }, + "49": { + "x": 1334.37, + "y": 2500.76, + "oo": { + "2": true + }, + "n": [ + 238, + 11497, + 34483 + ] + }, + "50": { + "x": -5471.29, + "y": 1397.84, + "oo": { + "0": true, + "2": true + }, + "n": [ + 44429, + 30380, + 18974, + 53118 + ] + }, + "51": { + "x": -465.466, + "y": 4719.49, + "oo": [ + true + ], + "n": [ + 34031 + ] + }, + "52": { + "x": 2367.15, + "y": 4088.46, + "oo": [ + true + ], + "n": [ + 56589 + ] + }, + "53": { + "x": -1190.73, + "y": -18.8151, + "oo": { + "1": true + }, + "n": [ + 40126, + 15400, + 3359 + ] + }, + "54": { + "x": 1870.2, + "y": -470.126, + "oo": { + "4": true + }, + "n": [ + 51786, + 28574 + ] + }, + "55": { + "x": 1.00464, + "y": 3836.23, + "oo": { + "2": true + }, + "n": [ + 18302, + 25933, + 28265, + 50360, + 54776, + 48438 + ] + }, + "56": { + "x": 3502.89, + "y": 4100.46, + "oo": [ + true + ], + "n": [ + 3469 + ] + }, + "57": { + "x": -4655.53, + "y": 3711.67, + "oo": { + "0": true, + "2": true + }, + "n": [ + 11431, + 30825, + 63150, + 19140, + 25818 + ] + }, + "58": { + "x": -2443.4, + "y": 345.669, + "oo": { + "0": true, + "2": true + }, + "n": [ + 34906, + 41026, + 63543, + 24256 + ] + }, + "59": { + "x": 5315.95, + "y": -2721.97, + "oo": { + "1": true + }, + "n": [ + 31501, + 27962, + 59556 + ] + }, + "60": { + "x": -2870.48, + "y": -1508.02, + "oo": [ + true + ], + "n": [ + 17352 + ] + }, + "61": { + "x": 8803.39, + "y": 2041.3, + "oo": [ + true + ], + "n": [ + 1697 + ] + }, + "62": { + "x": -1263.56, + "y": -722.851, + "oo": [ + true + ], + "n": [ + 63976 + ] + }, + "63": { + "x": -4596.02, + "y": 2453.81, + "oo": { + "4": true + }, + "n": [ + 53793, + 40653 + ] + }, + "64": { + "x": -4207.82, + "y": 5043.97, + "oo": [ + true + ], + "n": [ + 12926 + ] + }, + "65": { + "x": -2617.24, + "y": 3640.93, + "oo": { + "1": true + }, + "n": [ + 59494, + 2225, + 16380 + ] + }, + "66": { + "x": -5022.32, + "y": -3076.43, + "oo": { + "0": true, + "2": true + }, + "n": [ + 46413, + 61950, + 5068, + 60619, + 20467, + 27134, + 24677 + ] + }, + "67": { + "x": -6365.4, + "y": 3017.96, + "oo": { + "0": true, + "3": true + }, + "n": [ + 4336, + 25367, + 55166, + 49415, + 62042, + 33082, + 7082, + 48290 + ] + }, + "68": { + "x": -3969.04, + "y": -2838.46, + "oo": [ + true + ], + "n": [ + 46340 + ] + }, + "69": { + "x": 2803.26, + "y": 4372.41, + "oo": [ + true + ], + "n": [ + 15027 + ] + }, + "70": { + "x": -5600.83, + "y": -2004.34, + "oo": [ + true + ], + "n": [ + 37999 + ] + }, + "71": { + "x": -5084.91, + "y": -1999.11, + "oo": [ + true + ], + "n": [ + 60472 + ] + }, + "72": { + "x": -804.679, + "y": 6160.19, + "oo": { + "0": true, + "3": true + }, + "n": [ + 42062, + 56381, + 8533, + 49318, + 1909, + 10016, + 11515, + 35362 + ] + }, + "73": { + "x": -1519.9, + "y": 2474.17, + "oo": { + "2": true + }, + "n": [ + 30733, + 28475, + 49178 + ] + }, + "74": { + "x": 2676.89, + "y": 3891.84, + "oo": { + "0": true, + "2": true + }, + "n": [ + 45788, + 42788, + 40834, + 2121, + 57493, + 22248 + ] + }, + "75": { + "x": -536.505, + "y": -1319.25, + "oo": { + "0": true, + "2": true + }, + "n": [ + 61991, + 43133, + 27308, + 54267, + 23185, + 4972, + 1609 + ] + }, + "76": { + "x": -1463.41, + "y": -6245.97, + "oo": { + "0": true, + "2": true + }, + "n": [ + 19897, + 52412, + 4247, + 17412, + 43716, + 49957, + 34144 + ] + }, + "77": { + "x": 1899.55, + "y": -4403.39, + "oo": { + "0": true, + "2": true + }, + "n": [ + 55934, + 6785, + 42649, + 20852, + 36585 + ] + }, + "78": { + "x": -1751.18, + "y": -5306.89, + "oo": { + "0": true, + "2": true + }, + "n": [ + 2897, + 367, + 23659, + 33864, + 35706, + 58103, + 50029 + ] + }, + "79": { + "x": -5446.4, + "y": -1466.19, + "oo": { + "0": true, + "2": true + }, + "n": [ + 36949, + 11730, + 40766, + 10031, + 21507, + 6712, + 401 + ] + }, + "80": { + "x": 2864.33, + "y": -5651.59, + "oo": { + "1": true + }, + "n": [ + 17236, + 7641, + 62577 + ] + }, + "81": { + "x": 2186.07, + "y": -4931.37, + "oo": { + "1": true + }, + "n": [ + 15228, + 4036, + 47306 + ] + }, + "82": { + "x": -6578.61, + "y": 2001.01, + "oo": { + "0": true, + "3": true + }, + "n": [ + 25682, + 9976, + 23038, + 49571, + 57953, + 20018, + 6113, + 12407, + 4940, + 590 + ] + }, + "83": { + "x": -3144.14, + "y": -5408.87, + "oo": { + "1": true + }, + "n": [ + 7960, + 20987, + 52502 + ] + }, + "84": { + "x": 5711.41, + "y": 0.170044, + "oo": { + "4": true + }, + "n": [ + 1461 + ] + }, + "85": { + "x": -6086.95, + "y": -53.7007, + "oo": { + "1": true + }, + "n": [ + 35288, + 55190, + 26712 + ] + }, + "86": { + "x": 298.775, + "y": 4379.71, + "oo": { + "2": true + }, + "n": [ + 24641, + 3009, + 25456, + 4565, + 22423 + ] + }, + "87": { + "x": 3188.98, + "y": -1330.09, + "oo": { + "2": true, + "4": true + }, + "n": [ + 8640, + 23507, + 27276, + 62831, + 57248, + 48477, + 45838, + 51220 + ] + }, + "88": { + "x": -7512.4, + "y": 7213.68, + "oo": { + "2": true + }, + "n": [ + 193, + 30690, + 24755, + 33875, + 61437 + ] + }, + "89": { + "x": 1369.36, + "y": 181.769, + "oo": { + "1": true + }, + "n": [ + 40100, + 34579, + 30471 + ] + }, + "90": { + "x": 1383.12, + "y": 765.71, + "oo": { + "0": true, + "2": true + }, + "n": [ + 6534, + 60204, + 8348, + 106, + 17814, + 57984, + 44103 + ] + }, + "91": { + "x": 2.83856, + "y": 5.65056, + "oo": { + "0": true, + "3": true + }, + "n": [ + 62103, + 47062, + 15144, + 2151, + 55373, + 48828, + 58833 + ] + }, + "92": { + "x": 5757.58, + "y": 739.279, + "oo": { + "0": true, + "2": true + }, + "n": [ + 59016, + 56807, + 24203, + 33725, + 35489 + ] + }, + "93": { + "x": 8649.58, + "y": 624.872, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 5082, + 56856, + 55985, + 53086, + 28995, + 5443, + 45313, + 24848, + 59837, + 61627, + 26067, + 26958, + 44482, + 21455, + 62136 + ] + }, + "94": { + "x": -6375.6, + "y": 1061.78, + "oo": { + "0": true, + "3": true + }, + "n": [ + 15163, + 57266, + 38023, + 30547, + 16703, + 8500, + 40645, + 46127, + 20966, + 30697 + ] + }, + "95": { + "x": -3003.39, + "y": -2349.62, + "oo": { + "4": true + }, + "n": [ + 27564, + 14151 + ] + }, + "96": { + "x": 5896.02, + "y": 264.081, + "oo": { + "0": true, + "2": true + }, + "n": [ + 22488, + 13176, + 7136, + 36877, + 48759 + ] + }, + "97": { + "x": -1.8421, + "y": -2635.47, + "oo": { + "0": true, + "3": true + }, + "n": [ + 54447, + 57264, + 57226 + ] + }, + "98": { + "x": -4597.38, + "y": 1570.16, + "oo": { + "4": true + }, + "n": [ + 6446, + 55649 + ] + }, + "99": { + "x": 4220, + "y": -373.022, + "oo": { + "0": true, + "2": true + }, + "n": [ + 48698, + 49408, + 4219, + 6288, + 62795, + 56090 + ] + }, + "100": { + "x": -3535.69, + "y": 3530.17, + "oo": { + "1": true + }, + "n": [ + 23036, + 50858, + 55871 + ] + }, + "101": { + "x": 2.85721, + "y": 6351.25, + "oo": { + "0": true, + "3": true + }, + "n": [ + 43413, + 3319, + 44207, + 49343, + 1159, + 7063, + 12878, + 15510, + 36761 + ] + }, + "102": { + "x": 1591.35, + "y": 3705.31, + "oo": [ + true + ], + "n": [ + 11651 + ] + }, + "103": { + "x": 2356.45, + "y": -1348.67, + "oo": { + "0": true, + "3": true + }, + "n": [ + 45272, + 44683 + ] + }, + "104": { + "x": 401.606, + "y": -1791.18, + "oo": [ + true + ], + "n": [ + 60090 + ] + }, + "105": { + "x": 2242.36, + "y": 3203.19, + "oo": { + "0": true, + "2": true + }, + "n": [ + 36687, + 9535, + 45360, + 54016, + 46344, + 29089 + ] + }, + "106": { + "x": -6478.44, + "y": -2003.82, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 31462, + 25597, + 14730, + 12439, + 52407, + 54645, + 18135, + 29061, + 45378, + 63824, + 22313 + ] + }, + "107": { + "x": 4205.36, + "y": -2832.73, + "oo": [ + true + ], + "n": [ + 41518 + ] + }, + "108": { + "x": -3951.57, + "y": -3272.21, + "oo": { + "0": true, + "2": true + }, + "n": [ + 10904, + 55563, + 36915, + 34880, + 2320 + ] + }, + "109": { + "x": 6465.24, + "y": 41.3341, + "oo": { + "1": true + }, + "n": [ + 6797, + 32763, + 23334 + ] + }, + "110": { + "x": 4215.4, + "y": -1307.89, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 60737, + 30205, + 42623, + 58069, + 46289, + 30338, + 51212, + 54338, + 33903 + ] + }, + "111": { + "x": 5891.82, + "y": 3282.88, + "oo": { + "1": true + }, + "n": [ + 65053, + 51420, + 49481 + ] + }, + "112": { + "x": -1540.49, + "y": 5972.11, + "oo": { + "0": true, + "2": true + }, + "n": [ + 22356, + 4378, + 29547, + 29019, + 37800, + 35507 + ] + }, + "113": { + "x": 882.749, + "y": 2173.03, + "oo": { + "0": true, + "2": true + }, + "n": [ + 5262, + 24691, + 5950, + 46292, + 16354, + 49270 + ] + }, + "114": { + "x": 4859.01, + "y": 0.129861, + "oo": [ + true + ], + "n": [ + 59606 + ] + }, + "115": { + "x": 2868.63, + "y": 2314.54, + "oo": [ + true + ], + "n": [ + 2094 + ] + }, + "116": { + "x": 3278.93, + "y": 3802.8, + "oo": { + "0": true, + "2": true + }, + "n": [ + 7997, + 6, + 5622, + 25209 + ] + }, + "117": { + "x": -393.207, + "y": 3381.27, + "oo": { + "2": true + }, + "n": [ + 51856, + 39211, + 5612, + 48513 + ] + }, + "118": { + "x": -1959.82, + "y": 7876.7, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 8419, + 48760, + 2598, + 37623, + 15616, + 1675, + 52575, + 63490, + 33179, + 3651, + 24538, + 27864, + 32730 + ] + }, + "119": { + "x": 2200.53, + "y": -3435.58, + "oo": [ + true + ], + "n": [ + 37671 + ] + }, + "120": { + "x": -3145.82, + "y": 3824.37, + "oo": { + "0": true, + "2": true + }, + "n": [ + 9695, + 7162, + 42009, + 3951, + 46636 + ] + }, + "121": { + "x": 3566.14, + "y": 1330.53, + "oo": [ + true + ], + "n": [ + 50338 + ] + }, + "122": { + "x": -2551.08, + "y": -4143.66, + "oo": [ + true + ], + "n": [ + 42760 + ] + }, + "123": { + "x": -1240.46, + "y": 4712.14, + "oo": [ + true + ], + "n": [ + 24865 + ] + }, + "124": { + "x": -3680.38, + "y": 2006.07, + "oo": { + "2": true + }, + "n": [ + 20551, + 61198, + 5152, + 39768, + 32739, + 12795 + ] + }, + "125": { + "x": 3215.39, + "y": 2330.69, + "oo": { + "2": true + }, + "n": [ + 94, + 56149, + 720, + 6542, + 60803, + 29870 + ] + }, + "126": { + "x": 1040.19, + "y": -5000.54, + "oo": { + "1": true + }, + "n": [ + 22972, + 50472, + 63067 + ] + }, + "127": { + "x": -775.456, + "y": 4374.21, + "oo": { + "2": true + }, + "n": [ + 30842, + 34666, + 36972, + 43412, + 43303 + ] + }, + "128": { + "x": 5399.41, + "y": -996.671, + "oo": { + "1": true + }, + "n": [ + 60592, + 47484, + 35851 + ] + }, + "129": { + "x": -5083.34, + "y": 1994.12, + "oo": [ + true + ], + "n": [ + 22285 + ] + }, + "130": { + "x": 5103.94, + "y": -4577.47, + "oo": { + "0": true, + "3": true + }, + "n": [ + 21693, + 53013, + 16874, + 34763, + 30110, + 42907, + 5613, + 38539, + 54713, + 23616 + ] + }, + "131": { + "x": 5078.95, + "y": 1827.06, + "oo": [ + true + ], + "n": [ + 63843 + ] + }, + "132": { + "x": -10551.3, + "y": 1987.92, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 29294, + 42861, + 50024, + 48904, + 24528, + 9271, + 8592, + 59920, + 5865, + 63583, + 32251, + 57560, + 38999 + ] + }, + "133": { + "x": 6208.42, + "y": -3238.98, + "oo": [ + true + ], + "n": [ + 53456 + ] + }, + "134": { + "x": -3157.81, + "y": 2456.37, + "oo": { + "2": true + }, + "n": [ + 15868, + 36047, + 63048, + 50264 + ] + }, + "135": { + "x": -5805.31, + "y": 1998.55, + "oo": [ + true + ], + "n": [ + 63723 + ] + }, + "136": { + "x": -1748.21, + "y": -4420.43, + "oo": { + "0": true, + "2": true + }, + "n": [ + 59036, + 45366, + 17569, + 44562, + 33779, + 20142 + ] + }, + "137": { + "x": 6960.16, + "y": -1851.99, + "oo": { + "0": true, + "3": true + }, + "n": [ + 55380, + 45827, + 30319, + 33777, + 32432, + 28753, + 12824, + 21297, + 8027, + 1655, + 65225 + ] + }, + "138": { + "x": 4855.71, + "y": -2833.13, + "oo": [ + true + ], + "n": [ + 3656 + ] + }, + "139": { + "x": -5246.07, + "y": -4526.23, + "oo": [ + true + ], + "n": [ + 63425 + ] + }, + "140": { + "x": -3107.6, + "y": 381.32, + "oo": { + "0": true, + "2": true + }, + "n": [ + 65159, + 63635, + 35910, + 31520, + 4300, + 11190, + 44354 + ] + }, + "141": { + "x": 1922.83, + "y": -5496.54, + "oo": { + "1": true + }, + "n": [ + 62697, + 26557, + 13961 + ] + }, + "142": { + "x": -4596.87, + "y": -1647.66, + "oo": { + "4": true + }, + "n": [ + 31931, + 15064 + ] + }, + "143": { + "x": -3026.03, + "y": 4750.98, + "oo": { + "1": true + }, + "n": [ + 30160, + 1252, + 65456 + ] + }, + "144": { + "x": -3314.15, + "y": 5150.37, + "oo": { + "0": true, + "2": true + }, + "n": [ + 6633, + 58541, + 24772, + 26456, + 33141, + 24721 + ] + }, + "145": { + "x": 5614.17, + "y": 2468.78, + "oo": { + "1": true + }, + "n": [ + 36221, + 19858, + 9206 + ] + }, + "146": { + "x": -7006.45, + "y": 6394.38, + "oo": [ + true + ], + "n": [ + 10099 + ] + }, + "147": { + "x": -6779.42, + "y": 7213.7, + "oo": { + "2": true + }, + "n": [ + 7618, + 38689, + 42671, + 49532, + 31598 + ] + }, + "148": { + "x": -4907.34, + "y": 248.813, + "oo": { + "0": true, + "2": true + }, + "n": [ + 40229, + 37895, + 63380, + 54597, + 31257 + ] + }, + "149": { + "x": 3850.95, + "y": -3353.71, + "oo": [ + true + ], + "n": [ + 4502 + ] + }, + "150": { + "x": 1226, + "y": 4717.72, + "oo": [ + true + ], + "n": [ + 19711 + ] + }, + "151": { + "x": -5805.77, + "y": -649.633, + "oo": [ + true + ], + "n": [ + 44202 + ] + }, + "152": { + "x": -1511.46, + "y": -1321.34, + "oo": { + "4": true + }, + "n": [ + 33479, + 10490 + ] + }, + "153": { + "x": 3.12471, + "y": 5195.44, + "oo": { + "2": true + }, + "n": [ + 18103, + 11859, + 29933, + 31471, + 1325, + 54127 + ] + }, + "154": { + "x": -6758.29, + "y": 7388.84, + "oo": { + "1": true + }, + "n": [ + 34567 + ] + }, + "155": { + "x": 2396.24, + "y": 5251.7, + "oo": { + "0": true, + "2": true + }, + "n": [ + 43684, + 59180, + 14629, + 59766, + 13273, + 11364 + ] + }, + "156": { + "x": 3579.55, + "y": 2826.11, + "oo": [ + true + ], + "n": [ + 61306 + ] + }, + "157": { + "x": 1613.49, + "y": -3748.88, + "oo": [ + true + ], + "n": [ + 27659 + ] + }, + "158": { + "x": -603.943, + "y": 5177.32, + "oo": { + "2": true + }, + "n": [ + 14813, + 4833, + 41706, + 17383, + 58545, + 37584 + ] + }, + "159": { + "x": -4471.41, + "y": -2633, + "oo": [ + true + ], + "n": [ + 59728 + ] + }, + "160": { + "x": 2648.09, + "y": -4924.36, + "oo": { + "0": true, + "2": true + }, + "n": [ + 22407, + 32942, + 64239, + 41476, + 19098, + 64612, + 59959 + ] + }, + "161": { + "x": -7510.82, + "y": 6793.7, + "oo": { + "2": true + }, + "n": [ + 41534, + 54877, + 22551, + 57429, + 15435 + ] + }, + "162": { + "x": 626.257, + "y": -1314.34, + "oo": { + "1": true + }, + "n": [ + 57736, + 65097, + 7594 + ] + }, + "163": { + "x": -1366.87, + "y": 1836.1, + "oo": { + "1": true + }, + "n": [ + 12809, + 29292, + 27718 + ] + }, + "164": { + "x": -5023.97, + "y": -3620, + "oo": { + "0": true, + "2": true + }, + "n": [ + 25831, + 21974, + 5935, + 9392, + 32932, + 25814 + ] + }, + "165": { + "x": -7147.07, + "y": 7001.78, + "oo": [ + true + ], + "n": [ + 35754 + ] + }, + "166": { + "x": -4017.52, + "y": -298.529, + "oo": { + "0": true, + "2": true + }, + "n": [ + 7335, + 6359, + 59290, + 3167, + 21413 + ] + }, + "167": { + "x": 4859.88, + "y": -455.235, + "oo": [ + true + ], + "n": [ + 59252 + ] + }, + "168": { + "x": -2708.3, + "y": -5282.85, + "oo": { + "4": true + }, + "n": [ + 39841 + ] + }, + "169": { + "x": -3819.77, + "y": -4412.99, + "oo": { + "0": true, + "2": true + }, + "n": [ + 1403, + 885, + 40291, + 24324, + 37163 + ] + }, + "170": { + "x": 4588.66, + "y": -185.041, + "oo": [ + true + ], + "n": [ + 52714 + ] + }, + "171": { + "x": 795.699, + "y": -5441.3, + "oo": { + "0": true, + "2": true + }, + "n": [ + 64864, + 27959, + 15331, + 35368, + 17659, + 25609, + 9562 + ] + }, + "172": { + "x": -5806.28, + "y": -12.7873, + "oo": [ + true + ], + "n": [ + 29353 + ] + }, + "173": { + "x": 8291.79, + "y": -4243.09, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 4242, + 23024, + 6064, + 12850, + 55686, + 48239, + 9014, + 21264, + 19083, + 19598, + 33954, + 1945, + 58229 + ] + }, + "174": { + "x": 607.025, + "y": 5180.21, + "oo": { + "2": true + }, + "n": [ + 17566, + 23066, + 11397, + 49971, + 49109, + 21435 + ] + }, + "175": { + "x": 1038.22, + "y": 565.817, + "oo": [ + true + ], + "n": [ + 19506 + ] + }, + "176": { + "x": -3675.24, + "y": 1082.28, + "oo": [ + true + ], + "n": [ + 26523 + ] + }, + "177": { + "x": 6203.84, + "y": -625.752, + "oo": [ + true + ], + "n": [ + 49900 + ] + }, + "178": { + "x": 1695.53, + "y": -2377.1, + "oo": { + "2": true + }, + "n": [ + 41263, + 51923, + 48778 + ] + }, + "179": { + "x": 5568.94, + "y": 1821.07, + "oo": { + "2": true + }, + "n": [ + 38348, + 16079, + 48614, + 60735, + 14292, + 21758 + ] + }, + "180": { + "x": -7146.01, + "y": 6581.75, + "oo": { + "2": true + }, + "n": [ + 51782, + 56722, + 2521, + 62162, + 58029 + ] + }, + "181": { + "x": -650.565, + "y": -376.013, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 48423, + 55906, + 38450, + 37690, + 6204, + 5560, + 51291, + 26740, + 38048, + 6230 + ] + }, + "182": { + "x": -8214.36, + "y": -2385.12, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 29994, + 1105, + 11046, + 60462, + 34434, + 922, + 14870, + 44797, + 26714, + 22637, + 29026, + 25651, + 33167, + 40510, + 30940 + ] + }, + "183": { + "x": 1745.77, + "y": -3272.37, + "oo": [ + true + ], + "n": [ + 31703 + ] + }, + "184": { + "x": -5807.6, + "y": -2764.2, + "oo": [ + true + ], + "n": [ + 26270 + ] + }, + "185": { + "x": -3005.29, + "y": 2454.17, + "oo": { + "4": true + }, + "n": [ + 6981, + 36543 + ] + }, + "186": { + "x": -287.552, + "y": -3101.83, + "oo": [ + true + ], + "n": [ + 33296 + ] + }, + "187": { + "x": -5460.76, + "y": -266.582, + "oo": { + "1": true + }, + "n": [ + 21929, + 38836, + 27137 + ] + }, + "188": { + "x": 648.619, + "y": 317.957, + "oo": { + "1": true + }, + "n": [ + 35179, + 9009, + 60532 + ] + }, + "189": { + "x": 2415.88, + "y": -3144.02, + "oo": [ + true + ], + "n": [ + 23690 + ] + }, + "190": { + "x": 2639.51, + "y": -5351.76, + "oo": [ + true + ], + "n": [ + 34882 + ] + }, + "191": { + "x": 6505.46, + "y": -415.836, + "oo": { + "0": true, + "2": true + }, + "n": [ + 17206, + 10843, + 15211, + 33374, + 31222, + 21228, + 38947 + ] + }, + "192": { + "x": 3159.05, + "y": -4510.63, + "oo": { + "0": true, + "2": true + }, + "n": [ + 4546, + 4995, + 9055, + 41027, + 40409, + 3726, + 63167 + ] + }, + "193": { + "x": -5805.67, + "y": 1064.21, + "oo": [ + true + ], + "n": [ + 59928 + ] + }, + "194": { + "x": 6810.04, + "y": -2686.38, + "oo": { + "0": true, + "3": true + }, + "n": [ + 55414, + 11489, + 44134, + 36490, + 47422, + 32227, + 22261, + 56174, + 38864, + 57001 + ] + }, + "195": { + "x": -3422.19, + "y": 5844.92, + "oo": { + "1": true + }, + "n": [ + 2491, + 18901, + 62319 + ] + }, + "196": { + "x": 6862.22, + "y": 2783.58, + "oo": { + "0": true, + "3": true + }, + "n": [ + 6108, + 56509, + 54354, + 59151, + 52213, + 12720, + 1698, + 2021, + 29856, + 1568 + ] + }, + "197": { + "x": -2838.4, + "y": -4276.49, + "oo": [ + true + ], + "n": [ + 56029 + ] + }, + "198": { + "x": 2853.39, + "y": 5912.69, + "oo": { + "1": true + }, + "n": [ + 26096, + 42637, + 30030 + ] + }, + "199": { + "x": 5719.25, + "y": -1830.93, + "oo": [ + true + ], + "n": [ + 61834 + ] + }, + "200": { + "x": 4514.48, + "y": 5118.11, + "oo": { + "0": true, + "2": true + }, + "n": [ + 55392, + 18703, + 4944, + 53002, + 36675, + 55085 + ] + }, + "201": { + "x": 806.822, + "y": 6158.3, + "oo": { + "0": true, + "3": true + }, + "n": [ + 54268, + 49547, + 33089, + 15085, + 57782, + 13807, + 56231, + 2392 + ] + }, + "202": { + "x": -2176.9, + "y": -4214.66, + "oo": [ + true + ], + "n": [ + 22088 + ] + }, + "203": { + "x": -804.545, + "y": -6487.22, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 18715, + 60501, + 14040, + 8624, + 10893, + 11924, + 38789, + 61804, + 13559, + 42465 + ] + }, + "204": { + "x": -3672.27, + "y": -15.1986, + "oo": [ + true + ], + "n": [ + 50862 + ] + }, + "205": { + "x": -1235.69, + "y": 5182.78, + "oo": { + "0": true, + "2": true + }, + "n": [ + 44624, + 31604, + 65131, + 26023, + 59565, + 5065 + ] + }, + "206": { + "x": 5064.43, + "y": 4166.67, + "oo": [ + true + ], + "n": [ + 22266 + ] + }, + "207": { + "x": 529.496, + "y": 1847.29, + "oo": { + "4": true + }, + "n": [ + 10829, + 16167 + ] + }, + "208": { + "x": 5540.23, + "y": -1829.23, + "oo": [ + true + ], + "n": [ + 53213 + ] + }, + "209": { + "x": -5446.86, + "y": 1991.42, + "oo": { + "2": true + }, + "n": [ + 37326, + 48109, + 38508, + 26725, + 62429, + 62363 + ] + }, + "210": { + "x": -3194.72, + "y": -2258.7, + "oo": { + "2": true + }, + "n": [ + 59005, + 61217, + 9294, + 4568, + 33923, + 420 + ] + }, + "211": { + "x": 4214.22, + "y": -2341.95, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 7920, + 35283, + 10763, + 42686, + 28754, + 60949, + 46965, + 21575, + 40644 + ] + }, + "212": { + "x": -3742.46, + "y": 4394.27, + "oo": { + "0": true, + "2": true + }, + "n": [ + 64587, + 6289, + 5197, + 48287, + 42875 + ] + }, + "213": { + "x": 4703.89, + "y": 1298.84, + "oo": [ + true + ], + "n": [ + 1571 + ] + }, + "214": { + "x": 5076.02, + "y": 2365.64, + "oo": [ + true + ], + "n": [ + 41866 + ] + }, + "215": { + "x": -4052.13, + "y": -1505.14, + "oo": { + "2": true + }, + "n": [ + 31819, + 46726, + 38516 + ] + }, + "216": { + "x": 6202.62, + "y": 890.598, + "oo": [ + true + ], + "n": [ + 36287 + ] + }, + "217": { + "x": 5904.15, + "y": -797.787, + "oo": { + "1": true + }, + "n": [ + 28548, + 65308, + 15021 + ] + }, + "218": { + "x": 498.387, + "y": -3419.32, + "oo": { + "2": true + }, + "n": [ + 40637, + 6949, + 55643, + 19374, + 25222, + 9650 + ] + }, + "219": { + "x": -1750.68, + "y": -4334.09, + "oo": { + "4": true + }, + "n": [ + 14021, + 55332 + ] + }, + "220": { + "x": -444.078, + "y": -5003.39, + "oo": { + "0": true, + "2": true + }, + "n": [ + 57278, + 16971, + 34245, + 51883 + ] + }, + "221": { + "x": 1553.63, + "y": -5126.73, + "oo": { + "0": true, + "2": true + }, + "n": [ + 61689, + 29549, + 2260, + 35334, + 13676 + ] + }, + "222": { + "x": -11.757, + "y": -689.684, + "oo": { + "1": true + }, + "n": [ + 63845, + 8643, + 22497 + ] + }, + "223": { + "x": 3800.79, + "y": 3259.95, + "oo": { + "2": true + }, + "n": [ + 51440, + 29104, + 30955, + 17421, + 59146, + 2715 + ] + }, + "224": { + "x": 5899.71, + "y": -311.585, + "oo": { + "2": true + }, + "n": [ + 31359, + 1648, + 37785, + 20127, + 11811 + ] + }, + "225": { + "x": -4596.25, + "y": -2349.04, + "oo": { + "4": true + }, + "n": [ + 10575, + 58402 + ] + }, + "226": { + "x": 1514.75, + "y": 5655.97, + "oo": [ + true + ], + "n": [ + 29937 + ] + }, + "227": { + "x": 1330.48, + "y": 1167.25, + "oo": [ + true + ], + "n": [ + 32091 + ] + }, + "228": { + "x": 302.009, + "y": -3113.94, + "oo": [ + true + ], + "n": [ + 59650 + ] + }, + "229": { + "x": -273.072, + "y": 4377.84, + "oo": { + "2": true + }, + "n": [ + 12236, + 19782, + 49538, + 25324, + 46730 + ] + }, + "230": { + "x": -5804.7, + "y": -2004.08, + "oo": [ + true + ], + "n": [ + 29199 + ] + }, + "231": { + "x": -8299.39, + "y": -1022.94, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 43193, + 48214, + 662, + 60769, + 32816, + 57222, + 10635, + 37486, + 40059, + 3154, + 61871 + ] + }, + "232": { + "x": 2545.24, + "y": -4362.26, + "oo": [ + true + ], + "n": [ + 32345 + ] + }, + "233": { + "x": 1721.56, + "y": 7892.91, + "oo": { + "0": true, + "3": true, + "4": true + }, + "n": [ + 62817, + 15286, + 34215, + 38180, + 61393, + 42293, + 45696, + 20954, + 3184, + 17315, + 34484, + 10143, + 33795 + ] + }, + "234": { + "x": 6202.86, + "y": 1809.07, + "oo": [ + true + ], + "n": [ + 20807 + ] + }, + "235": { + "x": 2549.61, + "y": -4036.63, + "oo": [ + true + ], + "n": [ + 32710 + ] + }, + "236": { + "x": 6208.31, + "y": -3736.46, + "oo": { + "0": true, + "2": true + }, + "n": [ + 58198, + 44059, + 58603, + 14209, + 21170 + ] + }, + "237": { + "x": -1754, + "y": 5332.47, + "oo": { + "2": true + }, + "n": [ + 56370, + 18552, + 1340, + 50515 + ] + }, + "238": { + "x": -7378.96, + "y": 7452.77, + "oo": [ + true + ], + "n": [ + 43195 + ] + }, + "239": { + "x": 3548.06, + "y": -1828.29, + "oo": { + "2": true + }, + "n": [ + 21835, + 59009, + 1891, + 25058, + 9877, + 52157 + ] + }, + "240": { + "x": 1012.27, + "y": 3782.08, + "oo": [ + true + ], + "n": [ + 6580 + ] + }, + "241": { + "x": -4135.25, + "y": 1080.54, + "oo": [ + true + ], + "n": [ + 54415 + ] + }, + "242": { + "x": 6650.6, + "y": 3907.9, + "oo": { + "0": true, + "2": true + }, + "n": [ + 36281, + 50150, + 32477, + 64878, + 8434, + 45436, + 30969 + ] + }, + "243": { + "x": -887.137, + "y": -5312.3, + "oo": { + "0": true, + "2": true + }, + "n": [ + 24362, + 29781, + 60388, + 2224, + 21958, + 33755, + 14936 + ] + }, + "244": { + "x": 3264.91, + "y": 1336.94, + "oo": { + "4": true + }, + "n": [ + 59370, + 63795 + ] + }, + "245": { + "x": -7743.1, + "y": 7186.04, + "oo": [ + true + ], + "n": [ + 4194 + ] + }, + "246": { + "x": -8532.23, + "y": 3170.51, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 1734, + 62349, + 17765, + 23972, + 62595, + 49153, + 32115, + 44297, + 56789 + ] + }, + "247": { + "x": -8535.31, + "y": 3169.39, + "oo": { + "2": true, + "3": true + }, + "n": [ + 53816, + 5819, + 63417, + 51998 + ] + }, + "248": { + "x": -2337.21, + "y": 4078.9, + "oo": [ + true + ], + "n": [ + 22703 + ] + }, + "249": { + "x": -421.246, + "y": -1777.76, + "oo": [ + true + ], + "n": [ + 22473 + ] + }, + "250": { + "x": 5299.38, + "y": 4426.1, + "oo": { + "1": true + }, + "n": [ + 49624, + 43768, + 43170 + ] + }, + "251": { + "x": -7101.21, + "y": 6544.94, + "oo": [ + true + ], + "n": [ + 8281 + ] + }, + "252": { + "x": 6203.99, + "y": -1301.19, + "oo": [ + true + ], + "n": [ + 46277 + ] + }, + "253": { + "x": -1362.84, + "y": 810.036, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 62021, + 65034, + 65167, + 15073, + 42583, + 13714, + 12702, + 61787, + 19939, + 55485 + ] + }, + "254": { + "x": -3702.06, + "y": -1998.72, + "oo": { + "2": true + }, + "n": [ + 6237, + 41472, + 15599, + 44529, + 1203, + 61471 + ] + }, + "255": { + "x": 1703.87, + "y": 523.326, + "oo": [ + true + ], + "n": [ + 20812 + ] + }, + "256": { + "x": 5940.66, + "y": 1474.75, + "oo": { + "1": true + }, + "n": [ + 59220, + 9469, + 65502 + ] + }, + "257": { + "x": -1885.13, + "y": -3797.04, + "oo": { + "1": true + }, + "n": [ + 42900, + 24157, + 53757 + ] + }, + "258": { + "x": 327.103, + "y": -4369.78, + "oo": { + "1": true + }, + "n": [ + 38805, + 21075, + 38900 + ] + }, + "259": { + "x": -14.0685, + "y": -1076.21, + "oo": [ + true + ], + "n": [ + 37078 + ] + }, + "260": { + "x": 3358.73, + "y": 5203.03, + "oo": { + "1": true + }, + "n": [ + 61327, + 51404, + 57199 + ] + }, + "261": { + "x": 4777.87, + "y": -1835.66, + "oo": { + "2": true, + "3": true + }, + "n": [ + 798, + 4399, + 11018, + 60259, + 8001 + ] + }, + "262": { + "x": -2744.9, + "y": 2021.18, + "oo": [ + true + ], + "n": [ + 22627 + ] + }, + "263": { + "x": 5265.6, + "y": -644.286, + "oo": { + "1": true + }, + "n": [ + 43316, + 19210, + 47065 + ] + }, + "264": { + "x": 4220.34, + "y": 4.63907, + "oo": [ + true + ], + "n": [ + 8938 + ] + }, + "265": { + "x": 971.046, + "y": -4255.56, + "oo": { + "4": true + }, + "n": [ + 11551, + 38176, + 27415 + ] + }, + "266": { + "x": 4525.15, + "y": 3807.9, + "oo": { + "0": true, + "2": true + }, + "n": [ + 57562, + 23801, + 46871, + 14486, + 32993, + 25690, + 57950 + ] + }, + "267": { + "x": -2339.97, + "y": 1360.77, + "oo": { + "0": true, + "3": true + }, + "n": [ + 50904, + 31628, + 47175 + ] + }, + "268": { + "x": -5105.11, + "y": -4126.1, + "oo": [ + true + ], + "n": [ + 64210 + ] + }, + "269": { + "x": -4954.87, + "y": 790.413, + "oo": { + "0": true, + "2": true + }, + "n": [ + 2550, + 54396, + 1550, + 14923 + ] + }, + "270": { + "x": -4493.35, + "y": -1365.77, + "oo": [ + true + ], + "n": [ + 62303 + ] + }, + "271": { + "x": -3019.08, + "y": -6168.64, + "oo": { + "0": true, + "2": true + }, + "n": [ + 14674, + 31973, + 22535, + 30767, + 6250, + 2821 + ] + }, + "272": { + "x": -3412.25, + "y": 2943.7, + "oo": [ + true + ], + "n": [ + 49412 + ] + }, + "273": { + "x": -1703.81, + "y": 4391.45, + "oo": { + "0": true, + "2": true + }, + "n": [ + 26294, + 23199, + 17833, + 60887, + 11568, + 48958 + ] + }, + "274": { + "x": 4877.08, + "y": -1823.84, + "oo": { + "4": true + }, + "n": [ + 13885, + 7112, + 58244 + ] + }, + "275": { + "x": -4931.17, + "y": 3922.72, + "oo": [ + true + ], + "n": [ + 3644 + ] + }, + "276": { + "x": -536.054, + "y": 3836.27, + "oo": [ + true + ], + "n": [ + 34009 + ] + }, + "277": { + "x": -8146.03, + "y": -3672.88, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 16745, + 37419, + 32992, + 409, + 42264, + 4494, + 40010, + 55146, + 39728, + 32364, + 46952, + 20050, + 61372, + 64768, + 19641 + ] + }, + "278": { + "x": -3170.88, + "y": 1570.79, + "oo": { + "2": true + }, + "n": [ + 40535, + 30335, + 32480, + 7828 + ] + }, + "279": { + "x": 5283.85, + "y": -257.805, + "oo": { + "1": true + }, + "n": [ + 37504, + 39447, + 37776 + ] + }, + "280": { + "x": 2465.42, + "y": -5972.48, + "oo": [ + true + ], + "n": [ + 56075 + ] + }, + "281": { + "x": 801.181, + "y": 4375.14, + "oo": { + "2": true + }, + "n": [ + 36222, + 52632, + 47030, + 60002, + 30155 + ] + }, + "282": { + "x": -3689.3, + "y": 2454.83, + "oo": [ + true + ], + "n": [ + 24383 + ] + }, + "283": { + "x": -3231.98, + "y": -3781.01, + "oo": { + "0": true, + "2": true + }, + "n": [ + 58763, + 63963, + 7153, + 32455, + 38599 + ] + }, + "284": { + "x": -45.0943, + "y": 8304.86, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 11412, + 35185, + 61478, + 6982, + 35750, + 43725, + 60508, + 25111, + 31700, + 33940, + 56967, + 27604, + 24984 + ] + }, + "285": { + "x": 3576.52, + "y": -4395.42, + "oo": { + "1": true + }, + "n": [ + 12143, + 28859, + 55571 + ] + }, + "286": { + "x": -3090.06, + "y": 1544.65, + "oo": { + "4": true + }, + "n": [ + 23881, + 9511 + ] + }, + "287": { + "x": 3564.65, + "y": 0.747348, + "oo": [ + true + ], + "n": [ + 49978 + ] + }, + "288": { + "x": 4815.75, + "y": -4083.77, + "oo": [ + true + ], + "n": [ + 36858 + ] + }, + "289": { + "x": 4903.47, + "y": -3694.57, + "oo": { + "0": true, + "2": true + }, + "n": [ + 25757, + 61981, + 49929, + 47507, + 60405, + 43416 + ] + }, + "290": { + "x": 1694.56, + "y": -1911.09, + "oo": { + "1": true + }, + "n": [ + 25237, + 45680, + 10835 + ] + }, + "291": { + "x": 4859.44, + "y": 468.341, + "oo": [ + true + ], + "n": [ + 39718 + ] + }, + "292": { + "x": -440.174, + "y": 3412.28, + "oo": { + "4": true + }, + "n": [ + 40867, + 42911 + ] + }, + "293": { + "x": 510.096, + "y": 972.011, + "oo": { + "1": true + }, + "n": [ + 22893, + 24472, + 53042 + ] + }, + "294": { + "x": 2710.41, + "y": -3598.77, + "oo": { + "0": true, + "2": true + }, + "n": [ + 6615, + 37394, + 44339, + 12379, + 44183, + 7555 + ] + }, + "295": { + "x": -602.265, + "y": 339.952, + "oo": { + "1": true + }, + "n": [ + 62662, + 17674, + 13782 + ] + }, + "296": { + "x": -2421.66, + "y": -5382.98, + "oo": { + "0": true, + "2": true + }, + "n": [ + 56066, + 54043, + 30926, + 11765, + 63944, + 20844, + 62217 + ] + }, + "297": { + "x": -3669.76, + "y": -1159.5, + "oo": [ + true + ], + "n": [ + 44908 + ] + }, + "298": { + "x": 975.61, + "y": -4240.52, + "oo": { + "3": true + }, + "n": [ + 42795, + 4432, + 65203, + 48514, + 13753, + 7503, + 27163 + ] + }, + "299": { + "x": 2.33896, + "y": 5657.23, + "oo": [ + true + ], + "n": [ + 16544 + ] + }, + "300": { + "x": 1878.44, + "y": -6416.85, + "oo": { + "0": true, + "3": true + }, + "n": [ + 16243, + 51524, + 21030, + 29552, + 39521, + 40840, + 49779, + 48878, + 51146, + 63207, + 52848, + 2464, + 27879 + ] + }, + "301": { + "x": -2232.69, + "y": -2803.21, + "oo": { + "1": true + }, + "n": [ + 39648, + 17821, + 21330 + ] + }, + "302": { + "x": 3784.87, + "y": -3081.14, + "oo": { + "1": true + }, + "n": [ + 39443, + 28758, + 56276 + ] + }, + "303": { + "x": 3236.98, + "y": 1359.37, + "oo": { + "2": true + }, + "n": [ + 10017, + 41536, + 62712, + 41250, + 65033, + 38344 + ] + }, + "304": { + "x": 9.10728, + "y": -5236.32, + "oo": { + "2": true + }, + "n": [ + 56158, + 20528, + 53279, + 61419, + 15117, + 8302 + ] + }, + "305": { + "x": -1.11947, + "y": 3410.97, + "oo": { + "1": true + }, + "n": [ + 59718, + 50306, + 35568 + ] + }, + "306": { + "x": 3565.05, + "y": 806.912, + "oo": [ + true + ], + "n": [ + 38662 + ] + }, + "307": { + "x": 786.907, + "y": -5801.23, + "oo": [ + true + ], + "n": [ + 19501 + ] + }, + "308": { + "x": 2.53657, + "y": -4258.24, + "oo": { + "1": true + }, + "n": [ + 27611, + 32024, + 60554 + ] + }, + "309": { + "x": -5469.14, + "y": 2657.32, + "oo": { + "0": true, + "2": true + }, + "n": [ + 55676, + 15835, + 62017, + 33287 + ] + }, + "310": { + "x": -3067.17, + "y": -5096.62, + "oo": [ + true + ], + "n": [ + 36678 + ] + }, + "311": { + "x": 8903.66, + "y": 1874.62, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 32640, + 32662, + 14156, + 51101, + 6038, + 36242, + 63293, + 65296, + 40631, + 61805, + 59800, + 40813, + 20480, + 64111 + ] + }, + "312": { + "x": 5619.04, + "y": 1149.48, + "oo": { + "1": true + }, + "n": [ + 64235, + 37619, + 24133 + ] + }, + "313": { + "x": -466.7, + "y": -3409.32, + "oo": { + "2": true + }, + "n": [ + 36774, + 739, + 1957, + 21934, + 18866, + 17579 + ] + }, + "314": { + "x": 3114.69, + "y": 4813.29, + "oo": { + "1": true + }, + "n": [ + 8566, + 34510, + 49459 + ] + }, + "315": { + "x": -4376.67, + "y": -5537.57, + "oo": { + "0": true, + "2": true + }, + "n": [ + 4713, + 29049, + 5916, + 21524, + 6245 + ] + }, + "316": { + "x": 2107.68, + "y": 4152.51, + "oo": { + "1": true + }, + "n": [ + 52230, + 29379, + 43787 + ] + }, + "317": { + "x": -2167.49, + "y": 5432.38, + "oo": { + "1": true + }, + "n": [ + 34513, + 9995, + 33718 + ] + }, + "318": { + "x": 565.203, + "y": -7423.01, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 14603, + 65153, + 26298, + 55646, + 18309, + 60547, + 39818, + 18574, + 5415, + 54159, + 48719, + 3554, + 36017, + 11490, + 60791 + ] + }, + "319": { + "x": -5445.08, + "y": -2545.4, + "oo": { + "2": true + }, + "n": [ + 35958, + 5696, + 34173, + 46897, + 27575, + 40508 + ] + }, + "320": { + "x": -2351.97, + "y": -4821.35, + "oo": { + "1": true + }, + "n": [ + 9432, + 54657, + 34157 + ] + }, + "321": { + "x": -1751.37, + "y": -5793.9, + "oo": [ + true + ], + "n": [ + 63447 + ] + }, + "322": { + "x": 5247.79, + "y": 252.011, + "oo": { + "1": true + }, + "n": [ + 1405, + 15825, + 5802 + ] + }, + "323": { + "x": -2193.62, + "y": 4995.65, + "oo": { + "0": true, + "2": true + }, + "n": [ + 35053, + 57839, + 17754, + 61050, + 64024, + 43514 + ] + }, + "324": { + "x": 3794.48, + "y": -4699.55, + "oo": [ + true + ], + "n": [ + 60440 + ] + }, + "325": { + "x": 5718.15, + "y": -2229.64, + "oo": { + "2": true + }, + "n": [ + 25411, + 42804, + 62177, + 63228, + 49308, + 3537 + ] + }, + "326": { + "x": -2384.67, + "y": -7759.7, + "oo": { + "0": true, + "3": true, + "4": true + }, + "n": [ + 5502, + 18378, + 32417, + 37492, + 31984, + 17018, + 37127, + 6728, + 48124, + 50935, + 31344, + 27096, + 62504 + ] + }, + "327": { + "x": -917.792, + "y": 2012.9, + "oo": { + "1": true + }, + "n": [ + 43015, + 26496, + 28084 + ] + }, + "328": { + "x": 1147.47, + "y": 4246.6, + "oo": [ + true + ], + "n": [ + 27283 + ] + }, + "329": { + "x": -2792.06, + "y": -2034.76, + "oo": [ + true + ], + "n": [ + 35724 + ] + }, + "330": { + "x": -6780.06, + "y": 6791.7, + "oo": { + "2": true + }, + "n": [ + 772, + 42546, + 53992, + 43336, + 45403 + ] + }, + "331": { + "x": 1276.22, + "y": -3750.64, + "oo": [ + true + ], + "n": [ + 8948 + ] + }, + "332": { + "x": 6804.3, + "y": -1039.63, + "oo": { + "0": true, + "3": true + }, + "n": [ + 54791, + 5629, + 529, + 36801, + 28503, + 35384, + 49568, + 39979, + 17908, + 25775, + 36225, + 19228, + 30745 + ] + }, + "333": { + "x": 3009.58, + "y": 2338.39, + "oo": { + "4": true + }, + "n": [ + 444, + 52904 + ] + }, + "334": { + "x": 6854.03, + "y": 1814.44, + "oo": { + "0": true, + "3": true + }, + "n": [ + 32514, + 51881, + 38149, + 42720, + 55750, + 2185, + 23912, + 12948, + 39665, + 64761 + ] + }, + "335": { + "x": 3207.01, + "y": -356.947, + "oo": { + "0": true, + "2": true + }, + "n": [ + 1427, + 58968, + 35296, + 51235, + 37663, + 18707, + 55604 + ] + }, + "336": { + "x": 6579.81, + "y": 1109.24, + "oo": { + "0": true, + "2": true + }, + "n": [ + 26471, + 55307, + 64241, + 15837, + 40743 + ] + }, + "337": { + "x": 880.905, + "y": 1205.36, + "oo": { + "1": true + }, + "n": [ + 21634, + 17546, + 41967 + ] + }, + "338": { + "x": -4968.51, + "y": -341.869, + "oo": { + "0": true, + "2": true + }, + "n": [ + 3533, + 7374, + 11088, + 65108, + 4398 + ] + }, + "339": { + "x": -2137.56, + "y": -3393.97, + "oo": [ + true + ], + "n": [ + 60398 + ] + }, + "340": { + "x": -562.323, + "y": 1846.02, + "oo": { + "4": true + }, + "n": [ + 28330, + 46578 + ] + }, + "341": { + "x": 1679.73, + "y": -3974.79, + "oo": { + "1": true + }, + "n": [ + 61982, + 51517, + 49047 + ] + }, + "342": { + "x": 5836.64, + "y": 3859.72, + "oo": { + "0": true, + "2": true + }, + "n": [ + 30455, + 28658, + 14804, + 41119, + 12794, + 22755 + ] + }, + "343": { + "x": 3572.29, + "y": 1827.86, + "oo": { + "2": true + }, + "n": [ + 32117, + 48099, + 65210, + 9373, + 25178, + 57240 + ] + }, + "344": { + "x": 4015.24, + "y": -4266.04, + "oo": { + "1": true + }, + "n": [ + 39814, + 25770, + 27190 + ] + }, + "345": { + "x": -2106.16, + "y": 5946.28, + "oo": [ + true + ], + "n": [ + 17818 + ] + }, + "346": { + "x": 1869.63, + "y": -279.253, + "oo": [ + true + ], + "n": [ + 23407 + ] + }, + "347": { + "x": -2542.7, + "y": -6156.97, + "oo": [ + true + ], + "n": [ + 18663 + ] + }, + "348": { + "x": -4611.12, + "y": -5100.25, + "oo": [ + true + ], + "n": [ + 7444 + ] + }, + "349": { + "x": -388.144, + "y": -4629.31, + "oo": [ + true + ], + "n": [ + 53493 + ] + }, + "350": { + "x": 2348.91, + "y": 1363.15, + "oo": { + "0": true, + "3": true + }, + "n": [ + 45035, + 50459, + 39821 + ] + }, + "351": { + "x": -3351.84, + "y": 4112.4, + "oo": [ + true + ], + "n": [ + 487 + ] + }, + "352": { + "x": 6504.38, + "y": -3416.35, + "oo": [ + true + ], + "n": [ + 24426 + ] + }, + "353": { + "x": 3249.6, + "y": 440.586, + "oo": { + "1": true + }, + "n": [ + 6799, + 63194, + 64265 + ] + }, + "354": { + "x": 2.21388, + "y": 2641.63, + "oo": { + "0": true, + "3": true + }, + "n": [ + 39725, + 50986, + 47389 + ] + }, + "355": { + "x": 1381.09, + "y": 1913.86, + "oo": { + "1": true + }, + "n": [ + 8930, + 18402, + 42041 + ] + }, + "356": { + "x": -1949.42, + "y": 5661.31, + "oo": [ + true + ], + "n": [ + 24914 + ] + }, + "357": { + "x": 5942.83, + "y": 2168.37, + "oo": { + "1": true + }, + "n": [ + 49621, + 57080, + 42104 + ] + }, + "358": { + "x": -14.713, + "y": -1608.26, + "oo": { + "0": true, + "2": true + }, + "n": [ + 14211, + 42731, + 14182, + 11430, + 13322, + 128, + 3452 + ] + }, + "359": { + "x": 538.608, + "y": 3841.25, + "oo": [ + true + ], + "n": [ + 48807 + ] + }, + "360": { + "x": -3672.45, + "y": -1504.71, + "oo": [ + true + ], + "n": [ + 26866 + ] + }, + "361": { + "x": -6394.58, + "y": -1864.16, + "oo": [ + true + ], + "n": [ + 62225 + ] + }, + "362": { + "x": 9326.67, + "y": 3425.74, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 11597, + 4849, + 53421, + 31364, + 5926, + 16848, + 27536, + 12146, + 24432, + 33645, + 15550, + 55509, + 58427 + ] + }, + "363": { + "x": -8022.84, + "y": -1176.73, + "oo": [ + true + ], + "n": [ + 39790 + ] + }, + "364": { + "x": -628.12, + "y": 1040.86, + "oo": { + "1": true + }, + "n": [ + 63933, + 1696, + 25732 + ] + }, + "365": { + "x": 2650.33, + "y": 5655.89, + "oo": [ + true + ], + "n": [ + 6363 + ] + }, + "366": { + "x": -5314.74, + "y": 4369.25, + "oo": { + "1": true + }, + "n": [ + 56143, + 9660, + 57539 + ] + }, + "367": { + "x": -3366.65, + "y": 3642.29, + "oo": { + "4": true + }, + "n": [ + 42800 + ] + }, + "368": { + "x": 453.907, + "y": -5001.01, + "oo": { + "0": true, + "2": true + }, + "n": [ + 3676, + 17790, + 27386, + 57196 + ] + }, + "369": { + "x": -2704.77, + "y": 4711.05, + "oo": [ + true + ], + "n": [ + 14056 + ] + }, + "370": { + "x": 3562.03, + "y": -404.282, + "oo": [ + true + ], + "n": [ + 9355 + ] + }, + "371": { + "x": -4594.94, + "y": -414.85, + "oo": [ + true + ], + "n": [ + 44967 + ] + }, + "372": { + "x": -2836.12, + "y": 1556.26, + "oo": [ + true + ], + "n": [ + 33988 + ] + }, + "373": { + "x": -1911.86, + "y": 4714.9, + "oo": [ + true + ], + "n": [ + 6741 + ] + }, + "374": { + "x": 1486.93, + "y": -1265.98, + "oo": { + "4": true + }, + "n": [ + 46092, + 18033 + ] + }, + "375": { + "x": -4384.48, + "y": 196.24, + "oo": [ + true + ], + "n": [ + 50197 + ] + }, + "376": { + "x": 5437.67, + "y": 3029.87, + "oo": { + "0": true, + "2": true + }, + "n": [ + 47774, + 43385, + 58474, + 13202, + 17171, + 33196 + ] + }, + "377": { + "x": 5725.35, + "y": -1428.62, + "oo": { + "2": true + }, + "n": [ + 42443, + 25260, + 3314, + 40362, + 27788, + 21893 + ] + }, + "378": { + "x": -317.852, + "y": -4361.55, + "oo": { + "1": true + }, + "n": [ + 44723, + 1346, + 16790 + ] + }, + "379": { + "x": 4012.06, + "y": 3997.49, + "oo": { + "1": true + }, + "n": [ + 32802, + 25766, + 16236 + ] + }, + "380": { + "x": -4389.06, + "y": -4810.66, + "oo": { + "1": true + }, + "n": [ + 63398, + 36452, + 46842 + ] + }, + "381": { + "x": 4858.92, + "y": -822.244, + "oo": [ + true + ], + "n": [ + 28012 + ] + }, + "382": { + "x": -1115.84, + "y": -7816.62, + "oo": { + "0": true, + "2": true, + "3": true, + "4": true + }, + "n": [ + 57197, + 16023, + 6052, + 19595, + 54279, + 47873, + 64588, + 18002, + 27514, + 37114, + 51391, + 56461, + 61259, + 4917, + 258 + ] + }, + "383": { + "x": 4151.27, + "y": 1330.18, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 57819, + 42964, + 6654, + 6913, + 65224, + 41380 + ] + }, + "384": { + "x": 3322.05, + "y": -5287.21, + "oo": { + "1": true + }, + "n": [ + 22618, + 21984, + 21033 + ] + }, + "385": { + "x": 5857.73, + "y": -3103.42, + "oo": { + "0": true, + "2": true + }, + "n": [ + 60302, + 53225, + 11784, + 33363, + 37884, + 10448 + ] + }, + "386": { + "x": -2023.03, + "y": -6255.44, + "oo": { + "0": true, + "2": true + }, + "n": [ + 26620, + 44362, + 14003, + 21167, + 56671, + 47949 + ] + }, + "387": { + "x": -2250.5, + "y": 2923.11, + "oo": { + "4": true + }, + "n": [ + 31080 + ] + }, + "388": { + "x": -2770.66, + "y": -94.1434, + "oo": { + "2": true + }, + "n": [ + 15405, + 33740, + 33631 + ] + }, + "389": { + "x": -7558.01, + "y": 7184.51, + "oo": [ + true + ], + "n": [ + 61072 + ] + }, + "390": { + "x": -917.66, + "y": -1944.76, + "oo": { + "0": true, + "2": true + }, + "n": [ + 47312, + 55866, + 45317, + 42274 + ] + }, + "391": { + "x": 4.62638, + "y": -4253.35, + "oo": { + "4": true + }, + "n": [ + 19635 + ] + }, + "392": { + "x": 4319.84, + "y": -3714, + "oo": { + "0": true, + "2": true + }, + "n": [ + 61653, + 1822, + 18769, + 38190, + 57969 + ] + }, + "393": { + "x": -1236.01, + "y": -3736.16, + "oo": [ + true + ], + "n": [ + 4397 + ] + }, + "394": { + "x": -830.727, + "y": -916.91, + "oo": { + "1": true + }, + "n": [ + 7614, + 1006, + 13191 + ] + }, + "395": { + "x": 4013.16, + "y": 3705.5, + "oo": [ + true + ], + "n": [ + 64709 + ] + }, + "396": { + "x": 6.3354, + "y": 765.658, + "oo": { + "0": true, + "2": true, + "3": true + }, + "n": [ + 43162, + 20310, + 39773, + 33508, + 31683, + 36881, + 35503, + 23122, + 7903, + 45887 + ] + }, + "397": { + "x": -6095.56, + "y": 408.104, + "oo": [ + true + ], + "n": [ + 31961 + ] + }, + "398": { + "x": -1157.33, + "y": 4260.12, + "oo": [ + true + ], + "n": [ + 25763 + ] + }, + "399": { + "x": 1.87995, + "y": -3738.17, + "oo": { + "2": true + }, + "n": [ + 11659, + 48362, + 8135, + 11128, + 2292, + 27203 + ] + }, + "400": { + "x": -2350.53, + "y": -1349.66, + "oo": { + "0": true, + "3": true + }, + "n": [ + 20228, + 61525, + 63965 + ] + }, + "401": { + "x": -3190.2, + "y": -1515.88, + "oo": { + "2": true + }, + "n": [ + 29005, + 39631, + 17251, + 31758, + 42837, + 23456 + ] + }, + "402": { + "x": -3674.51, + "y": 606.939, + "oo": [ + true + ], + "n": [ + 44606 + ] + }, + "403": { + "x": -5806, + "y": -1239.66, + "oo": [ + true + ], + "n": [ + 23027 + ] + }, + "404": { + "x": 3264.75, + "y": 5656.98, + "oo": [ + true + ], + "n": [ + 5237 + ] + }, + "405": { + "x": 1380.24, + "y": 3312.8, + "oo": { + "0": true, + "2": true + }, + "n": [ + 53558, + 2355, + 57900, + 7977 + ] + }, + "406": { + "x": -5435.21, + "y": 407.989, + "oo": { + "0": true, + "2": true + }, + "n": [ + 39023, + 15678, + 58831, + 37501, + 56355, + 18368 + ] + }, + "407": { + "x": -4815.55, + "y": -5434.7, + "oo": [ + true + ], + "n": [ + 44941 + ] + }, + "408": { + "x": 4340.35, + "y": -4826.16, + "oo": [ + true + ], + "n": [ + 11455 + ] + }, + "409": { + "x": 399.729, + "y": 3401.77, + "oo": { + "2": true + }, + "n": [ + 56803, + 24377, + 62694, + 45227 + ] + }, + "410": { + "x": 3932.82, + "y": 4469.6, + "oo": { + "0": true, + "2": true + }, + "n": [ + 34678, + 19069, + 26528, + 58271, + 2047 + ] + }, + "411": { + "x": 5952.31, + "y": -1829.79, + "oo": [ + true + ], + "n": [ + 27656 + ] + }, + "412": { + "x": -3677.7, + "y": -587.71, + "oo": [ + true + ], + "n": [ + 2913 + ] + }, + "413": { + "x": 2326.75, + "y": -2752.46, + "oo": { + "0": true, + "2": true + }, + "n": [ + 63799, + 18865, + 55247, + 61320, + 33166 + ] + }, + "414": { + "x": 3760.86, + "y": -2410.14, + "oo": { + "4": true + }, + "n": [ + 20546 + ] + }, + "415": { + "x": 2848.79, + "y": 3232.21, + "oo": [ + true + ], + "n": [ + 63139 + ] + }, + "416": { + "x": -4601.44, + "y": 708.72, + "oo": [ + true + ], + "n": [ + 10221 + ] + }, + "417": { + "x": -7602.79, + "y": 6578.31, + "oo": [ + true + ], + "n": [ + 42144 + ] + }, + "418": { + "x": 11.4758, + "y": -5611.23, + "oo": [ + true + ], + "n": [ + 4367 + ] + }, + "419": { + "x": 4704.19, + "y": 1826.84, + "oo": { + "2": true + }, + "n": [ + 7085, + 1201, + 31508, + 38072 + ] + }, + "420": { + "x": 6210.68, + "y": -2350.34, + "oo": [ + true + ], + "n": [ + 18182 + ] + }, + "421": { + "x": -887.52, + "y": 5659.54, + "oo": { + "4": true + }, + "n": [ + 61262 + ] + }, + "422": { + "x": -3618.41, + "y": -3587.71, + "oo": { + "4": true + }, + "n": [ + 6764, + 40366 + ] + }, + "423": { + "x": -4183.68, + "y": 4702.85, + "oo": [ + true + ], + "n": [ + 14930 + ] + }, + "424": { + "x": 6482.71, + "y": 4473.78, + "oo": [ + true + ], + "n": [ + 54922 + ] + }, + "425": { + "x": -8022.65, + "y": -868.71, + "oo": [ + true + ], + "n": [ + 53884 + ] + }, + "426": { + "x": -3096.01, + "y": -1646.66, + "oo": { + "4": true + }, + "n": [ + 35556, + 39916 + ] + }, + "427": { + "x": 1804.21, + "y": -4323.01, + "oo": { + "4": true + }, + "n": [ + 49651, + 41635 + ] + }, + "428": { + "x": 6207.08, + "y": -1840.31, + "oo": [ + true + ], + "n": [ + 56295 + ] + }, + "429": { + "x": -2025.22, + "y": 3537.77, + "oo": [ + true + ], + "n": [ + 43374 + ] + }, + "430": { + "x": -4117.32, + "y": -861.654, + "oo": { + "0": true, + "2": true + }, + "n": [ + 27609, + 65491, + 5366, + 13454, + 34363, + 38905, + 15005 + ] + }, + "431": { + "x": 2831.35, + "y": -3140.99, + "oo": [ + true + ], + "n": [ + 21301 + ] + }, + "432": { + "x": -3262.3, + "y": 5659.79, + "oo": [ + true + ], + "n": [ + 34400 + ] + }, + "433": { + "x": -1925.64, + "y": -476.021, + "oo": { + "4": true + }, + "n": [ + 16775, + 46910 + ] + }, + "434": { + "x": -6780.01, + "y": 7268.38, + "oo": [ + true + ], + "n": [ + 9327 + ] + }, + "435": { + "x": -3985.94, + "y": 2942.65, + "oo": [ + true + ], + "n": [ + 21941 + ] + }, + "436": { + "x": 2831.8, + "y": -4182.25, + "oo": [ + true + ], + "n": [ + 10153 + ] + }, + "437": { + "x": -4594.54, + "y": -786.585, + "oo": [ + true + ], + "n": [ + 15631 + ] + }, + "438": { + "x": -1710.24, + "y": -3560.52, + "oo": [ + true + ], + "n": [ + 31875 + ] + }, + "439": { + "x": 4215.21, + "y": 384.589, + "oo": { + "0": true, + "2": true + }, + "n": [ + 53114, + 45593, + 12801, + 25067, + 31315, + 36338 + ] + }, + "440": { + "x": 2099.1, + "y": 3642.47, + "oo": [ + true + ], + "n": [ + 5408 + ] + }, + "441": { + "x": 4306.95, + "y": 4798.89, + "oo": [ + true + ], + "n": [ + 30679 + ] + }, + "442": { + "x": 3372.76, + "y": 5912.5, + "oo": { + "1": true + }, + "n": [ + 40132, + 46882, + 58854 + ] + }, + "443": { + "x": 6202.31, + "y": 2781.35, + "oo": [ + true + ], + "n": [ + 12412 + ] + }, + "444": { + "x": 6941.74, + "y": 415.175, + "oo": { + "1": true + }, + "n": [ + 56744, + 12401, + 19320 + ] + }, + "445": { + "x": -2743.51, + "y": 4386.59, + "oo": [ + true + ], + "n": [ + 34601 + ] + }, + "446": { + "x": 1825.35, + "y": 4709.37, + "oo": [ + true + ], + "n": [ + 20010 + ] + }, + "447": { + "x": -4392.05, + "y": -203.489, + "oo": [ + true + ], + "n": [ + 32245 + ] + }, + "448": { + "x": 2724.72, + "y": 4707.99, + "oo": [ + true + ], + "n": [ + 23471 + ] + }, + "449": { + "x": -1549.02, + "y": -2514.39, + "oo": { + "2": true + }, + "n": [ + 47251, + 7388, + 36634 + ] + }, + "450": { + "x": -3344.95, + "y": -2838.24, + "oo": [ + true + ], + "n": [ + 17735 + ] + }, + "451": { + "x": 1218.47, + "y": -700.527, + "oo": [ + true + ], + "n": [ + 33545 + ] + }, + "452": { + "x": 7375.96, + "y": 378.791, + "oo": [ + true + ], + "n": [ + 14914 + ] + }, + "453": { + "x": 705.694, + "y": -3751.68, + "oo": [ + true + ], + "n": [ + 27929 + ] + }, + "454": { + "x": -643.636, + "y": -3743.59, + "oo": [ + true + ], + "n": [ + 11420 + ] + }, + "455": { + "x": 4591.18, + "y": 207.387, + "oo": [ + true + ], + "n": [ + 60180 + ] + }, + "456": { + "x": -1530.1, + "y": 3674.85, + "oo": [ + true + ], + "n": [ + 30691 + ] + }, + "457": { + "x": -3805.05, + "y": 3281.2, + "oo": [ + true + ], + "n": [ + 40907 + ] + }, + "458": { + "x": 1288.87, + "y": -1378.52, + "oo": { + "1": true + }, + "n": [ + 21602, + 33911, + 17849 + ] + }, + "459": { + "x": 493.755, + "y": -3459.94, + "oo": { + "4": true + }, + "n": [ + 32210, + 21678 + ] + }, + "460": { + "x": 1174.35, + "y": -2376.67, + "oo": { + "1": true + }, + "n": [ + 35737, + 47471, + 31137 + ] + }, + "461": { + "x": -507.803, + "y": -3449.96, + "oo": { + "4": true + }, + "n": [ + 36542, + 37569 + ] + }, + "462": { + "x": 1885.07, + "y": -5803.12, + "oo": [ + true + ], + "n": [ + 5296 + ] + }, + "463": { + "x": -6913.99, + "y": 6554.39, + "oo": [ + true + ], + "n": [ + 12597 + ] + }, + "464": { + "x": 3155.04, + "y": -5075.81, + "oo": [ + true + ], + "n": [ + 49605 + ] + }, + "465": { + "x": 2241.83, + "y": -5586.67, + "oo": [ + true + ], + "n": [ + 33310 + ] + }, + "466": { + "x": -803.356, + "y": -5794.1, + "oo": [ + true + ], + "n": [ + 44184 + ] + }, + "467": { + "x": -2345.62, + "y": 4528.39, + "oo": [ + true + ], + "n": [ + 18025 + ] + }, + "468": { + "x": 3565.21, + "y": 401.685, + "oo": [ + true + ], + "n": [ + 6538 + ] + }, + "469": { + "x": -2746.02, + "y": -3625.75, + "oo": { + "1": true + }, + "n": [ + 38701, + 18767, + 48298 + ] + }, + "470": { + "x": 3563.21, + "y": -1323.88, + "oo": [ + true + ], + "n": [ + 5823 + ] + }, + "471": { + "x": -6644.59, + "y": -2005.18, + "oo": [ + true + ], + "n": [ + 55993 + ] + }, + "472": { + "x": 3561.95, + "y": -822.695, + "oo": [ + true + ], + "n": [ + 4011 + ] + }, + "473": { + "x": 448.162, + "y": 3410.19, + "oo": { + "4": true + }, + "n": [ + 49806, + 63649 + ] + }, + "474": { + "x": 5069.83, + "y": 2856.35, + "oo": [ + true + ], + "n": [ + 60942 + ] + }, + "475": { + "x": 468.784, + "y": 4717.25, + "oo": [ + true + ], + "n": [ + 17201 + ] + }, + "476": { + "x": 4594.18, + "y": 1299.06, + "oo": { + "4": true + }, + "n": [ + 5616, + 1529 + ] + }, + "477": { + "x": 3088.91, + "y": 2346.68, + "oo": { + "4": true + }, + "n": [ + 54142 + ] + }, + "478": { + "x": -7652.04, + "y": 7109.34, + "oo": { + "1": true + }, + "n": [ + 57052 + ] + }, + "479": { + "x": -4594.07, + "y": -498.542, + "oo": { + "4": true + }, + "n": [ + 50422 + ] + }, + "480": { + "x": -743.785, + "y": 5657.44, + "oo": [ + true + ], + "n": [ + 24083 + ] + }, + "481": { + "x": -4120.36, + "y": -1159.85, + "oo": [ + true + ], + "n": [ + 50570 + ] + }, + "482": { + "x": 3515.46, + "y": -2342.64, + "oo": [ + true + ], + "n": [ + 35894 + ] + }, + "483": { + "x": 4859.09, + "y": -1301.24, + "oo": [ + true + ], + "n": [ + 46408 + ] + }, + "484": { + "x": 4703.39, + "y": 2364.44, + "oo": [ + true + ], + "n": [ + 45491 + ] + }, + "485": { + "x": 398.51, + "y": -4637.54, + "oo": [ + true + ], + "n": [ + 15711 + ] + }, + "486": { + "x": 1142.64, + "y": -2078.29, + "oo": [ + true + ], + "n": [ + 23540 + ] + }, + "487": { + "x": 6543.52, + "y": 505.394, + "oo": [ + true + ], + "n": [ + 54307 + ] + }, + "488": { + "x": 1679.9, + "y": 5974.65, + "oo": [ + true + ], + "n": [ + 10661 + ] + }, + "489": { + "x": -5118.11, + "y": 4097.73, + "oo": [ + true + ], + "n": [ + 57279 + ] + }, + "490": { + "x": -1308.36, + "y": -1412.68, + "oo": [ + true + ], + "n": [ + 39085 + ] + }, + "491": { + "x": 3876.73, + "y": -5147.24, + "oo": { + "0": true, + "2": true + }, + "n": [ + 20077, + 42436, + 39986, + 32295 + ] + }, + "492": { + "x": 5221.01, + "y": 686.623, + "oo": { + "1": true + }, + "n": [ + 56646, + 25511, + 4481 + ] + }, + "493": { + "x": 4859.15, + "y": -2359.85, + "oo": [ + true + ], + "n": [ + 24050 + ] + }, + "494": { + "x": 1656.37, + "y": 4254.68, + "oo": [ + true + ], + "n": [ + 10808 + ] + }, + "495": { + "x": 413.405, + "y": -858.047, + "oo": { + "1": true + }, + "n": [ + 18359, + 21973, + 34306 + ] + }, + "496": { + "x": 2874.49, + "y": -1342.49, + "oo": [ + true + ], + "n": [ + 41689 + ] + }, + "497": { + "x": -3570.8, + "y": -2490.82, + "oo": [ + true + ], + "n": [ + 49254 + ] + }, + "498": { + "x": 1212.17, + "y": -136.779, + "oo": { + "1": true + }, + "n": [ + 19287, + 61875, + 49379 + ] + }, + "499": { + "x": 2124.17, + "y": 277.436, + "oo": { + "1": true + }, + "n": [ + 34907, + 28424, + 45067 + ] + }, + "500": { + "x": -6639.09, + "y": 6980.21, + "oo": [ + true + ], + "n": [ + 6778 + ] + }, + "501": { + "x": -5454.2, + "y": -2000.75, + "oo": [ + true + ], + "n": [ + 26196 + ] + }, + "502": { + "x": -5306.78, + "y": -1999.74, + "oo": [ + true + ], + "n": [ + 34171 + ] + }, + "503": { + "x": -6731.13, + "y": 6816.49, + "oo": [ + true + ], + "n": [ + 43122 + ] + }, + "504": { + "x": -1.04553, + "y": 4715.36, + "oo": [ + true + ], + "n": [ + 56001 + ] + }, + "505": { + "x": -6548.35, + "y": 6817.83, + "oo": [ + true + ], + "n": [ + 58827 + ] + }, + "506": { + "x": -6869.33, + "y": 7429.13, + "oo": [ + true + ], + "n": [ + 8656 + ] + }, + "507": { + "x": -7286.71, + "y": 7532.89, + "oo": { + "1": true + }, + "n": [ + 34774 + ] + }, + "508": { + "x": -7193.98, + "y": 7451.31, + "oo": [ + true + ], + "n": [ + 39598 + ] + }, + "509": { + "x": -7510.26, + "y": 6737.02, + "oo": [ + true + ], + "n": [ + 43962 + ] + }, + "510": { + "x": -7421.76, + "y": 6577.8, + "oo": [ + true + ], + "n": [ + 30919 + ] + }, + "511": { + "x": 2518.96, + "y": -1639.57, + "oo": [ + true + ], + "n": [ + 38129 + ] + }, + "512": { + "x": 2742.05, + "y": -1805.74, + "oo": [ + true + ], + "n": [ + 63639 + ] + } + }, + "root": { + "g": 0, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50459, + 47175, + 50986, + 61525, + 54447, + 44683, + 58833 + ], + "in": [] + }, + "nodes": { + "476": { + "id": 476, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 1, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 476, + 476, + 476, + 476 + ] + }, + "63282": { + "id": 63282, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 2, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 29353, + 59928 + ], + "in": [ + 63282, + 63282 + ] + }, + "24229": { + "id": 24229, + "icon": "Art/2DArt/SkillIcons/passives/critstrchnc.png", + "ks": false, + "not": false, + "dn": "Staff Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Staves", + "20% increased Global Critical Strike Chance while wielding a Staff", + "8% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 3, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4977, + 36678, + 17806 + ], + "in": [] + }, + "13361": { + "id": 13361, + "icon": "Art/2DArt/SkillIcons/passives/accuracystaff.png", + "ks": false, + "not": false, + "dn": "Staff Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Staves", + "8% increased Accuracy Rating with Staves", + "6% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 3, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22702 + ], + "in": [ + 13361 + ] + }, + "64395": { + "id": 64395, + "icon": "Art/2DArt/SkillIcons/passives/hammerblows.png", + "ks": false, + "not": true, + "dn": "Blunt Trauma", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "50% increased Critical Strike Chance with Staves", + "Knocks Back Enemies if you get a Critical Strike with a Staff" + ], + "g": 3, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13361 + ], + "in": [ + 64395 + ] + }, + "17806": { + "id": 17806, + "icon": "Art/2DArt/SkillIcons/passives/staffspeed.png", + "ks": false, + "not": false, + "dn": "Staff Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Staves", + "2% increased Attack Speed with Staves", + "6% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 3, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64395 + ], + "in": [ + 17806 + ] + }, + "16512": { + "id": 16512, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + "ks": false, + "not": false, + "dn": "Staff Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 3, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "22702": { + "id": 22702, + "icon": "Art/2DArt/SkillIcons/passives/serpentstance.png", + "ks": false, + "not": true, + "dn": "Serpent Stance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Global Critical Strike Chance while wielding a Staff", + "+35% to Global Critical Strike Multiplier while wielding a Staff" + ], + "g": 3, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 22702, + 22702 + ] + }, + "4977": { + "id": 4977, + "icon": "Art/2DArt/SkillIcons/passives/critstrchnc.png", + "ks": false, + "not": false, + "dn": "Staff Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Staves", + "20% increased Global Critical Strike Chance while wielding a Staff", + "8% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 3, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22702 + ], + "in": [ + 4977 + ] + }, + "5456": { + "id": 5456, + "icon": "Art/2DArt/SkillIcons/passives/oxblood.png", + "ks": false, + "not": true, + "dn": "Might", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Strength" + ], + "g": 4, + "o": 0, + "oidx": 0, + "sa": 30, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 5456 + ] + }, + "38922": { + "id": 38922, + "icon": "Art/2DArt/SkillIcons/passives/StunMastery.png", + "ks": false, + "not": true, + "dn": "Stun Mastery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% reduced Enemy Stun Threshold", + "30% increased Stun Duration on Enemies", + "50% increased Stun and Block Recovery" + ], + "g": 5, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57923 + ], + "in": [ + 38922 + ] + }, + "56982": { + "id": 56982, + "icon": "Art/2DArt/SkillIcons/passives/stunstr.png", + "ks": false, + "not": false, + "dn": "Stun Threshold Reduction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% reduced Enemy Stun Threshold" + ], + "g": 5, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46756, + 38922 + ], + "in": [] + }, + "57923": { + "id": 57923, + "icon": "Art/2DArt/SkillIcons/passives/stunstr.png", + "ks": false, + "not": false, + "dn": "Stun Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Stun Duration on Enemies" + ], + "g": 5, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17038 + ], + "in": [ + 57923 + ] + }, + "13910": { + "id": 13910, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupStun.png", + "ks": false, + "not": false, + "dn": "Stun Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 5, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "17038": { + "id": 17038, + "icon": "Art/2DArt/SkillIcons/passives/stunstr.png", + "ks": false, + "not": false, + "dn": "Stun Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Stun Duration on Enemies" + ], + "g": 5, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46756 + ], + "in": [ + 17038 + ] + }, + "46756": { + "id": 46756, + "icon": "Art/2DArt/SkillIcons/passives/stunstr.png", + "ks": false, + "not": false, + "dn": "Stun Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Stun Duration on Enemies" + ], + "g": 5, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42800 + ], + "in": [ + 46756, + 46756 + ] + }, + "45175": { + "id": 45175, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png", + "ks": true, + "not": false, + "dn": "Necromantic Aegis", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "I give you everything, my pets. My trust, my strength, my safety. Do not disappoint me." + ], + "spc": [], + "sd": [ + "All bonuses from an Equipped Shield apply to your Minions instead of you" + ], + "g": 6, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18033 + ], + "in": [ + 45175 + ] + }, + "44955": { + "id": 44955, + "icon": "Art/2DArt/SkillIcons/passives/frostborn.png", + "ks": false, + "not": true, + "dn": "Frost Walker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Cold Damage", + "+15% to Cold Resistance" + ], + "g": 7, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4184 + ], + "in": [ + 44955 + ] + }, + "30225": { + "id": 30225, + "icon": "Art/2DArt/SkillIcons/passives/stormborn.png", + "ks": false, + "not": true, + "dn": "Lightning Walker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Lightning Damage", + "+15% to Lightning Resistance" + ], + "g": 7, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58604, + 4184 + ], + "in": [] + }, + "58604": { + "id": 58604, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Lightning Damage" + ], + "g": 7, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12852 + ], + "in": [ + 58604 + ] + }, + "44983": { + "id": 44983, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage" + ], + "g": 7, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34661 + ], + "in": [ + 44983 + ] + }, + "34661": { + "id": 34661, + "icon": "Art/2DArt/SkillIcons/passives/flameborn.png", + "ks": false, + "not": true, + "dn": "Fire Walker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Fire Damage", + "+15% to Fire Resistance" + ], + "g": 7, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34661, + 34661 + ] + }, + "38148": { + "id": 38148, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage" + ], + "g": 7, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44955, + 12852 + ], + "in": [] + }, + "12852": { + "id": 12852, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 7, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7938, + 44983 + ], + "in": [ + 12852, + 12852 + ] + }, + "1031": { + "id": 1031, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 7, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 19635 + ], + "in": [ + 1031, + 1031, + 1031 + ] + }, + "7938": { + "id": 7938, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 7, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 1031 + ], + "in": [ + 7938, + 7938, + 7938 + ] + }, + "33783": { + "id": 33783, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 7, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 7938 + ], + "in": [ + 33783 + ] + }, + "4184": { + "id": 4184, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 7, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34661, + 11420 + ], + "in": [ + 4184, + 4184 + ] + }, + "42178": { + "id": 42178, + "icon": "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png", + "ks": true, + "not": false, + "dn": "Point Blank", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Look your foe in the eyes before you pierce him. Delight in his fear." + ], + "spc": [], + "sd": [ + "Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther" + ], + "g": 8, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42178 + ] + }, + "38989": { + "id": 38989, + "icon": "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage", + "20% increased Minion Accuracy Rating" + ], + "g": 9, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38989, + 38989 + ] + }, + "25816": { + "id": 25816, + "icon": "Art/2DArt/SkillIcons/passives/MinionMastery.png", + "ks": false, + "not": false, + "dn": "Minion and Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 9, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "26481": { + "id": 26481, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 12% increased Damage" + ], + "g": 9, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19103 + ], + "in": [ + 26481 + ] + }, + "35260": { + "id": 35260, + "icon": "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage", + "20% increased Minion Accuracy Rating" + ], + "g": 9, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4177 + ], + "in": [ + 35260 + ] + }, + "29106": { + "id": 29106, + "icon": "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + "ks": false, + "not": false, + "dn": "Minion Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + ], + "g": 9, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25332, + 15046 + ], + "in": [] + }, + "41190": { + "id": 41190, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 12% increased Damage" + ], + "g": 9, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26481 + ], + "in": [ + 41190 + ] + }, + "4177": { + "id": 4177, + "icon": "Art/2DArt/SkillIcons/passives/SpiritualAid.png", + "ks": false, + "not": true, + "dn": "Spiritual Aid", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Global Accuracy Rating", + "Minions deal 15% increased Damage", + "Increases and Reductions to Minion Damage also affect you", + "30% increased Minion Accuracy Rating" + ], + "g": 9, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38989 + ], + "in": [ + 4177 + ] + }, + "25332": { + "id": 25332, + "icon": "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + "ks": false, + "not": false, + "dn": "Minion Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + ], + "g": 9, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 25332, + 25332 + ] + }, + "19103": { + "id": 19103, + "icon": "Art/2DArt/SkillIcons/passives/RighteousArmy.png", + "ks": false, + "not": true, + "dn": "Righteous Army", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 20% increased maximum Life", + "1% of Life Regenerated per second", + "Minions deal 20% increased Damage", + "Minions Regenerate 1% Life per second" + ], + "g": 9, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35260 + ], + "in": [ + 19103 + ] + }, + "15046": { + "id": 15046, + "icon": "Art/2DArt/SkillIcons/passives/Redemption.png", + "ks": false, + "not": true, + "dn": "Redemption", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage", + "Minions have 10% increased Movement Speed", + "Minions have 5% increased Attack Speed", + "Minions have 5% increased Cast Speed", + "20% increased Minion Accuracy Rating" + ], + "g": 9, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38989 + ], + "in": [ + 15046 + ] + }, + "8544": { + "id": 8544, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 10, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 29937, + 11397 + ], + "in": [ + 8544, + 8544, + 8544 + ] + }, + "60169": { + "id": 60169, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 11, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14606 + ], + "in": [ + 60169 + ] + }, + "38777": { + "id": 38777, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Melee Physical Damage", + "12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 11, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10282, + 58449 + ], + "in": [ + 38777 + ] + }, + "2454": { + "id": 2454, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 11, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38777 + ], + "in": [ + 2454 + ] + }, + "14606": { + "id": 14606, + "icon": "Art/2DArt/SkillIcons/passives/butchery.png", + "ks": false, + "not": true, + "dn": "Butchery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Physical Damage with Two Handed Melee Weapons", + "5% increased Attack Speed with Two Handed Melee Weapons", + "25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon", + "+20 to Strength" + ], + "g": 11, + "o": 3, + "oidx": 1, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 2454 + ], + "in": [ + 14606 + ] + }, + "39786": { + "id": 39786, + "icon": "Art/2DArt/SkillIcons/passives/onehanddamage.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with One Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 11, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34130 + ], + "in": [ + 39786 + ] + }, + "35663": { + "id": 35663, + "icon": "Art/2DArt/SkillIcons/passives/strongarm.png", + "ks": false, + "not": true, + "dn": "Strong Arm", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Physical Damage with One Handed Melee Weapons", + "5% increased Attack Speed with One Handed Melee Weapons", + "25% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon", + "+20 to Strength" + ], + "g": 11, + "o": 3, + "oidx": 7, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 39786 + ], + "in": [ + 35663 + ] + }, + "10282": { + "id": 10282, + "icon": "Art/2DArt/SkillIcons/passives/onehanddamage.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with One Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 11, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35663 + ], + "in": [ + 10282 + ] + }, + "34130": { + "id": 34130, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 11, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60169, + 55649 + ], + "in": [ + 34130 + ] + }, + "58449": { + "id": 58449, + "icon": "Art/2DArt/SkillIcons/passives/borntofight.png", + "ks": false, + "not": true, + "dn": "Born to Fight", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Melee Attack Speed", + "+20 to Accuracy Rating", + "26% increased Melee Physical Damage", + "+20 to Strength" + ], + "g": 12, + "o": 0, + "oidx": 0, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 26523, + 39768 + ], + "in": [ + 58449, + 58449, + 58449 + ] + }, + "62108": { + "id": 62108, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Gain on Hit and Life Leeched per Second", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2 Life gained for each Enemy hit by your Attacks", + "10% increased Life Leeched per second" + ], + "g": 13, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28311, + 40653 + ], + "in": [] + }, + "63422": { + "id": 63422, + "icon": "Art/2DArt/SkillIcons/passives/LustforCarnage.png", + "ks": false, + "not": true, + "dn": "Lust for Carnage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "1.2% of Physical Attack Damage Leeched as Life", + "20% increased Life Leeched per second" + ], + "g": 13, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63422 + ] + }, + "28311": { + "id": 28311, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Gain on Hit and Life Leeched per Second", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2 Life gained for each Enemy hit by your Attacks", + "10% increased Life Leeched per second" + ], + "g": 13, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63422 + ], + "in": [ + 28311 + ] + }, + "39172": { + "id": 39172, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 13, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "40609": { + "id": 40609, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Cold Damage" + ], + "g": 14, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22090 + ], + "in": [ + 40609 + ] + }, + "22090": { + "id": 22090, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Cold Damage" + ], + "g": 14, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36412 + ], + "in": [ + 22090 + ] + }, + "5972": { + "id": 5972, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage" + ], + "g": 14, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19501, + 40705 + ], + "in": [ + 5972 + ] + }, + "8833": { + "id": 8833, + "icon": "Art/2DArt/SkillIcons/passives/iceheart.png", + "ks": false, + "not": true, + "dn": "Heart of Ice", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Cold Damage", + "Damage Penetrates 6% Cold Resistance" + ], + "g": 14, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40609 + ], + "in": [] + }, + "36412": { + "id": 36412, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Cold Damage" + ], + "g": 14, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5972 + ], + "in": [ + 36412 + ] + }, + "40705": { + "id": 40705, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage, Freeze and Chill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Cold Damage", + "30% increased Chill Duration on Enemies", + "20% increased Freeze Duration on Enemies" + ], + "g": 14, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53732 + ], + "in": [ + 40705 + ] + }, + "58157": { + "id": 58157, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + "ks": false, + "not": false, + "dn": "Cold Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 14, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "53732": { + "id": 53732, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage and Chill Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Cold Damage", + "10% increased Effect of Chill" + ], + "g": 14, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36226 + ], + "in": [ + 53732 + ] + }, + "36226": { + "id": 36226, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage and Freeze Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + ], + "spc": [], + "sd": [ + "10% increased Cold Damage", + "5% chance to Freeze" + ], + "g": 14, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21460 + ], + "in": [ + 36226 + ] + }, + "21460": { + "id": 21460, + "icon": "Art/2DArt/SkillIcons/passives/BreathofRime2.png", + "ks": false, + "not": true, + "dn": "Breath of Rime", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + ], + "spc": [], + "sd": [ + "20% increased Cold Damage", + "20% increased Freeze Duration on Enemies", + "10% chance to Freeze", + "15% increased Effect of Chill" + ], + "g": 14, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21460 + ] + }, + "47427": { + "id": 47427, + "icon": "Art/2DArt/SkillIcons/passives/damagestaff.png", + "ks": false, + "not": false, + "dn": "Staff Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Staves", + "15% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16113 + ], + "in": [ + 47427 + ] + }, + "18990": { + "id": 18990, + "icon": "Art/2DArt/SkillIcons/passives/blockstaff.png", + "ks": false, + "not": false, + "dn": "Staff Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while wielding a Staff", + "+2% Chance to Block Attack Damage while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42917 + ], + "in": [ + 18990 + ] + }, + "42917": { + "id": 42917, + "icon": "Art/2DArt/SkillIcons/passives/whirlingstaff.png", + "ks": false, + "not": true, + "dn": "Whirling Barrier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+6% Chance to Block Spell Damage while wielding a Staff", + "10% chance to gain a Power Charge when you Block", + "+6% Chance to Block Attack Damage while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16754 + ], + "in": [ + 42917 + ] + }, + "51559": { + "id": 51559, + "icon": "Art/2DArt/SkillIcons/passives/stunstaff.png", + "ks": false, + "not": true, + "dn": "Smashing Strikes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Physical Damage with Staves", + "10% chance to gain an Endurance Charge on Melee Critical Strike", + "30% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37639, + 48282 + ], + "in": [] + }, + "37639": { + "id": 37639, + "icon": "Art/2DArt/SkillIcons/passives/damagestaff.png", + "ks": false, + "not": false, + "dn": "Staff Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Staves", + "15% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47427 + ], + "in": [ + 37639 + ] + }, + "6814": { + "id": 6814, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + "ks": false, + "not": false, + "dn": "Staff Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 15, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "54667": { + "id": 54667, + "icon": "Art/2DArt/SkillIcons/passives/blockstaff.png", + "ks": false, + "not": false, + "dn": "Staff Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while wielding a Staff", + "+2% Chance to Block Attack Damage while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18990 + ], + "in": [ + 54667 + ] + }, + "16754": { + "id": 16754, + "icon": "Art/2DArt/SkillIcons/passives/staffspeed.png", + "ks": false, + "not": false, + "dn": "Staff Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Global Critical Strike Chance while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39761 + ], + "in": [ + 16754 + ] + }, + "39761": { + "id": 39761, + "icon": "Art/2DArt/SkillIcons/passives/StaffCrit.png", + "ks": false, + "not": true, + "dn": "Counterweight", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "60% increased Global Critical Strike Chance while wielding a Staff", + "+30% to Global Critical Strike Multiplier while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39761, + 39761 + ] + }, + "48282": { + "id": 48282, + "icon": "Art/2DArt/SkillIcons/passives/staffspeed.png", + "ks": false, + "not": false, + "dn": "Staff Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Global Critical Strike Chance while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39761 + ], + "in": [ + 48282 + ] + }, + "16113": { + "id": 16113, + "icon": "Art/2DArt/SkillIcons/passives/blockstaff.png", + "ks": false, + "not": false, + "dn": "Staff Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while wielding a Staff", + "+2% Chance to Block Attack Damage while wielding a Staff" + ], + "g": 15, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54667, + 23027 + ], + "in": [ + 16113 + ] + }, + "19144": { + "id": 19144, + "icon": "Art/2DArt/SkillIcons/passives/Sentinel.png", + "ks": false, + "not": true, + "dn": "Sentinel", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Evasion Rating and Armour", + "+10% to all Elemental Resistances" + ], + "g": 16, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16167, + 23122 + ], + "in": [ + 19144, + 19144 + ] + }, + "13009": { + "id": 13009, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 17, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 60398 + ], + "in": [ + 13009 + ] + }, + "23083": { + "id": 23083, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Totem Damage" + ], + "g": 18, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22757, + 10771 + ], + "in": [ + 23083 + ] + }, + "41970": { + "id": 41970, + "icon": "Art/2DArt/SkillIcons/passives/totemmax.png", + "ks": true, + "not": false, + "dn": "Ancestral Bond", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "A wooden construct, mute and blind. But fear the wrath of shackled mind." + ], + "spc": [], + "sd": [ + "You can't deal Damage with Skills yourself\nCan have up to 1 additional Totem summoned at a time" + ], + "g": 18, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 41970 + ] + }, + "49939": { + "id": 49939, + "icon": "Art/2DArt/SkillIcons/passives/totemlife.png", + "ks": false, + "not": false, + "dn": "Totem Life and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Totem Life", + "Totems gain +10% to all Elemental Resistances" + ], + "g": 18, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41970 + ], + "in": [ + 49939, + 49939 + ] + }, + "22757": { + "id": 22757, + "icon": "Art/2DArt/SkillIcons/passives/totemplacementspeed.png", + "ks": false, + "not": false, + "dn": "Totem Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Totem Placement speed" + ], + "g": 18, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49939 + ], + "in": [ + 22757 + ] + }, + "10771": { + "id": 10771, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Damage", + "Spells Cast by Totems have 3% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + ], + "g": 18, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49939 + ], + "in": [ + 10771 + ] + }, + "43486": { + "id": 43486, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTotem.png", + "ks": false, + "not": false, + "dn": "Totem Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 18, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "11334": { + "id": 11334, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 19, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 15549 + ], + "in": [ + 11334 + ] + }, + "64501": { + "id": 64501, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 19, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46136 + ], + "in": [ + 64501 + ] + }, + "15549": { + "id": 15549, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 19, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 20546 + ], + "in": [ + 15549 + ] + }, + "46136": { + "id": 46136, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 19, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58649 + ], + "in": [ + 46136 + ] + }, + "58649": { + "id": 58649, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 19, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35894 + ], + "in": [ + 58649 + ] + }, + "62069": { + "id": 62069, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage" + ], + "g": 19, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31583 + ], + "in": [ + 62069 + ] + }, + "31583": { + "id": 31583, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage" + ], + "g": 19, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1600 + ], + "in": [ + 31583 + ] + }, + "1600": { + "id": 1600, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage" + ], + "g": 19, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35894 + ], + "in": [ + 1600 + ] + }, + "56648": { + "id": 56648, + "icon": "Art/2DArt/SkillIcons/passives/eagletalons.png", + "ks": false, + "not": true, + "dn": "Claws of the Falcon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Physical Damage with Claws", + "20% increased Accuracy Rating with Claws", + "50% increased Critical Strike Chance with Claws", + "18% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 20, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56648 + ] + }, + "47321": { + "id": 47321, + "icon": "Art/2DArt/SkillIcons/passives/criticalclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Claws", + "20% increased Critical Strike Chance with Claws", + "10% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 20, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 265, + 56648 + ], + "in": [] + }, + "265": { + "id": 265, + "icon": "Art/2DArt/SkillIcons/passives/criticalclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Claws", + "20% increased Critical Strike Chance with Claws", + "10% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 20, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 265, + 265 + ] + }, + "45456": { + "id": 45456, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Spell Damage" + ], + "g": 21, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33545 + ], + "in": [ + 45456 + ] + }, + "28221": { + "id": 28221, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 21, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24643 + ], + "in": [ + 28221, + 28221 + ] + }, + "918": { + "id": 918, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 21, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28221, + 15144 + ], + "in": [] + }, + "8742": { + "id": 8742, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + "ks": false, + "not": false, + "dn": "Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier" + ], + "g": 21, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8742 + ] + }, + "56153": { + "id": 56153, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Spell Damage" + ], + "g": 21, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11688 + ], + "in": [ + 56153 + ] + }, + "13344": { + "id": 13344, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + "ks": false, + "not": false, + "dn": "Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier" + ], + "g": 21, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8742 + ], + "in": [ + 13344 + ] + }, + "24643": { + "id": 24643, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 21, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33545 + ], + "in": [ + 24643 + ] + }, + "11688": { + "id": 11688, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Spell Damage" + ], + "g": 21, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45456, + 48768 + ], + "in": [ + 11688 + ] + }, + "34062": { + "id": 34062, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + "ks": false, + "not": false, + "dn": "Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier" + ], + "g": 21, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13344 + ], + "in": [ + 34062 + ] + }, + "48768": { + "id": 48768, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 21, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28221 + ], + "in": [ + 48768 + ] + }, + "32555": { + "id": 32555, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 22, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 12412, + 54922, + 64878 + ], + "in": [ + 32555, + 32555 + ] + }, + "9505": { + "id": 9505, + "icon": "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage", + "20% increased Minion Accuracy Rating" + ], + "g": 23, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9505, + 9505 + ] + }, + "42668": { + "id": 42668, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 8% increased Damage", + "Minions have 3% increased Attack Speed", + "Minions have 3% increased Cast Speed" + ], + "g": 23, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24824 + ], + "in": [ + 42668, + 42668 + ] + }, + "43689": { + "id": 43689, + "icon": "Art/2DArt/SkillIcons/passives/SpiritualCommand.png", + "ks": false, + "not": true, + "dn": "Spiritual Command", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 15% increased Damage", + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed", + "Increases and Reductions to Minion Attack Speed also affect you", + "20% increased Minion Accuracy Rating" + ], + "g": 23, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9505, + 42668 + ], + "in": [] + }, + "24824": { + "id": 24824, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage" + ], + "g": 23, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17735, + 9505 + ], + "in": [ + 24824 + ] + }, + "50557": { + "id": 50557, + "icon": "Art/2DArt/SkillIcons/passives/MinionMastery.png", + "ks": false, + "not": false, + "dn": "Minion and Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 23, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "27140": { + "id": 27140, + "icon": "Art/2DArt/SkillIcons/passives/accuracy2h.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Two Handed Melee Weapons", + "8% increased Accuracy Rating with Two Handed Melee Weapons", + "8% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 24, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27140, + 27140 + ] + }, + "64816": { + "id": 64816, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Two Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 24, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27140 + ], + "in": [ + 64816, + 64816 + ] + }, + "34959": { + "id": 34959, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 24, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64816, + 6884 + ], + "in": [] + }, + "27301": { + "id": 27301, + "icon": "Art/2DArt/SkillIcons/passives/MartialExperience.png", + "ks": false, + "not": true, + "dn": "Martial Experience", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Physical Damage with Two Handed Melee Weapons", + "4% increased Attack Speed with Two Handed Melee Weapons", + "10% increased Stun Duration with Two Handed Melee Weapons on Enemies", + "30% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 24, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27140 + ], + "in": [ + 27301 + ] + }, + "51287": { + "id": 51287, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + "ks": false, + "not": false, + "dn": "Two Hand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 24, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6884": { + "id": 6884, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 24, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27301 + ], + "in": [ + 6884 + ] + }, + "15842": { + "id": 15842, + "icon": "Art/2DArt/SkillIcons/passives/preciseinterception.png", + "ks": false, + "not": true, + "dn": "Precise Interception", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "15% increased Physical Attack Damage while holding a Shield", + "60% increased Defences from Equipped Shield", + "Attack Skills deal 15% increased Damage with Ailments while holding a Shield", + "+3% Chance to Block Attack Damage while holding a Shield" + ], + "g": 25, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 15842, + 15842 + ] + }, + "903": { + "id": 903, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 25, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 903, + 903 + ] + }, + "30894": { + "id": 30894, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + ], + "g": 25, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15842, + 45491 + ], + "in": [] + }, + "18670": { + "id": 18670, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + ], + "g": 25, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15842 + ], + "in": [ + 18670 + ] + }, + "38246": { + "id": 38246, + "icon": "Art/2DArt/SkillIcons/passives/heartofthepanther.png", + "ks": false, + "not": true, + "dn": "Aspect of the Panther", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "16% increased Physical Weapon Damage while Dual Wielding", + "6% increased Attack Speed while Dual Wielding", + "+10 to maximum Life", + "Attack Skills deal 16% increased Damage with Ailments while Dual Wielding" + ], + "g": 25, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 903, + 3187 + ], + "in": [] + }, + "3187": { + "id": 3187, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 25, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45491 + ], + "in": [ + 3187 + ] + }, + "4973": { + "id": 4973, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage over Time" + ], + "g": 26, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5129 + ], + "in": [ + 4973 + ] + }, + "59482": { + "id": 59482, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Life Regenerated per second" + ], + "g": 26, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46896 + ], + "in": [ + 59482 + ] + }, + "46896": { + "id": 46896, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Damage over Time", + "0.4% of Life Regenerated per second" + ], + "g": 26, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 46896, + 46896, + 46896 + ] + }, + "5129": { + "id": 5129, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage over Time" + ], + "g": 26, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46896 + ], + "in": [ + 5129 + ] + }, + "9864": { + "id": 9864, + "icon": "Art/2DArt/SkillIcons/passives/GrowthandDecay.png", + "ks": false, + "not": true, + "dn": "Growth and Decay", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage over Time", + "1% of Life Regenerated per second" + ], + "g": 26, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59482, + 4973 + ], + "in": [] + }, + "58442": { + "id": 58442, + "icon": "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + "ks": false, + "not": false, + "dn": "Chaos Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 26, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "40927": { + "id": 40927, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect" + ], + "g": 27, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61308, + 15365 + ], + "in": [ + 40927 + ] + }, + "61308": { + "id": 61308, + "icon": "Art/2DArt/SkillIcons/passives/amplify.png", + "ks": false, + "not": true, + "dn": "Amplify", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect", + "20% increased Area Damage" + ], + "g": 27, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61308, + 61308, + 61308 + ] + }, + "15365": { + "id": 15365, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect" + ], + "g": 27, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61308, + 49254 + ], + "in": [ + 15365 + ] + }, + "10542": { + "id": 10542, + "icon": "Art/2DArt/SkillIcons/passives/armourmastery.png", + "ks": false, + "not": true, + "dn": "Armour Mastery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Armour", + "3% increased Movement Speed", + "0.5% of Life Regenerated per second" + ], + "g": 28, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10542, + 10542 + ] + }, + "59861": { + "id": 59861, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block and Shield Defences", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "25% increased Defences from Equipped Shield", + "+1% Chance to Block Attack Damage while holding a Shield" + ], + "g": 28, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40653 + ], + "in": [ + 59861 + ] + }, + "7399": { + "id": 7399, + "icon": "Art/2DArt/SkillIcons/passives/lightningstr.png", + "ks": false, + "not": false, + "dn": "Lightning Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Lightning Resistance" + ], + "g": 28, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61999, + 27166 + ], + "in": [] + }, + "31928": { + "id": 31928, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 28, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10542 + ], + "in": [ + 31928 + ] + }, + "61868": { + "id": 61868, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 28, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10542, + 22285 + ], + "in": [] + }, + "61999": { + "id": 61999, + "icon": "Art/2DArt/SkillIcons/passives/crystalskin.png", + "ks": false, + "not": true, + "dn": "Diamond Skin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to all Elemental Resistances" + ], + "g": 28, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27195 + ], + "in": [ + 61999, + 61999 + ] + }, + "6718": { + "id": 6718, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Armour" + ], + "g": 28, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32482, + 61999, + 24383, + 31928 + ], + "in": [] + }, + "27166": { + "id": 27166, + "icon": "Art/2DArt/SkillIcons/passives/fireresist.png", + "ks": false, + "not": false, + "dn": "Fire Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Fire Resistance" + ], + "g": 28, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27195, + 53793 + ], + "in": [ + 27166 + ] + }, + "27195": { + "id": 27195, + "icon": "Art/2DArt/SkillIcons/passives/coldresist.png", + "ks": false, + "not": false, + "dn": "Cold Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Cold Resistance" + ], + "g": 28, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27195, + 27195 + ] + }, + "31033": { + "id": 31033, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": true, + "dn": "Solidity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "25% increased Defences from Equipped Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield", + "+3% Chance to Block Attack Damage while holding a Shield" + ], + "g": 28, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32482, + 59861 + ], + "in": [] + }, + "32482": { + "id": 32482, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while holding a Shield" + ], + "g": 28, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 32482, + 32482 + ] + }, + "24798": { + "id": 24798, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Duelist Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 29, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17445, + 39598, + 34774, + 43195 + ], + "in": [ + 24798 + ] + }, + "17445": { + "id": 17445, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 29, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63357 + ], + "in": [ + 17445 + ] + }, + "41996": { + "id": 41996, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 29, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24798 + ], + "in": [ + 41996 + ] + }, + "63357": { + "id": 63357, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png", + "ks": false, + "not": true, + "dn": "Path of the Duelist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Duelist's starting point" + ], + "g": 29, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47389, + 39725 + ], + "in": [ + 63357 + ] + }, + "607": { + "id": 607, + "icon": "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png", + "ks": false, + "not": false, + "dn": "Strength and Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+20 to Strength and Dexterity" + ], + "g": 29, + "o": 2, + "oidx": 0, + "sa": 20, + "da": 20, + "ia": 0, + "out": [ + 41996 + ], + "in": [ + 607 + ] + }, + "39861": { + "id": 39861, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 30, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 24496, + 33989 + ], + "in": [ + 39861 + ] + }, + "24496": { + "id": 24496, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 30, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 51786 + ], + "in": [ + 24496 + ] + }, + "33989": { + "id": 33989, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 30, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33989 + ] + }, + "465": { + "id": 465, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "10% increased Projectile Damage" + ], + "g": 31, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41536, + 65033 + ], + "in": [ + 465 + ] + }, + "44799": { + "id": 44799, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 32, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54694, + 40927, + 33435 + ], + "in": [ + 44799 + ] + }, + "21262": { + "id": 21262, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 32, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54694, + 10575 + ], + "in": [ + 21262 + ] + }, + "30693": { + "id": 30693, + "icon": "Art/2DArt/SkillIcons/passives/catalyse.png", + "ks": false, + "not": true, + "dn": "Divine Fervour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Melee Critical Strike Chance", + "Damage with Weapons Penetrates 3% Elemental Resistance", + "24% increased Elemental Damage with Attack Skills", + "+10 to Strength and Intelligence" + ], + "g": 32, + "o": 3, + "oidx": 6, + "sa": 10, + "da": 0, + "ia": 10, + "out": [ + 12536 + ], + "in": [ + 30693 + ] + }, + "33435": { + "id": 33435, + "icon": "Art/2DArt/SkillIcons/passives/elementalist.png", + "ks": false, + "not": true, + "dn": "Holy Dominion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "12% increased Global Physical Damage", + "+12% to all Elemental Resistances", + "12% increased Elemental Damage", + "5% chance to Freeze, Shock and Ignite" + ], + "g": 32, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12536, + 21262 + ], + "in": [ + 33435, + 33435 + ] + }, + "54694": { + "id": 54694, + "icon": "Art/2DArt/SkillIcons/passives/LightOfDivinity.png", + "ks": false, + "not": true, + "dn": "Light of Divinity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Spell Damage", + "4% increased Cast Speed", + "20% increased Critical Strike Chance for Spells", + "10% increased Light Radius", + "+10 to Strength and Intelligence" + ], + "g": 32, + "o": 3, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 54694, + 54694 + ] + }, + "58453": { + "id": 58453, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 32, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30693, + 46726, + 33435 + ], + "in": [ + 58453 + ] + }, + "12536": { + "id": 12536, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 32, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15064 + ], + "in": [ + 12536, + 12536 + ] + }, + "5233": { + "id": 5233, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 33, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 3644 + ], + "in": [ + 5233, + 5233, + 5233 + ] + }, + "9971": { + "id": 9971, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Fire Damage", + "0.5% of Life Regenerated per second" + ], + "g": 34, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50692 + ], + "in": [ + 9971 + ] + }, + "982": { + "id": 982, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "15% increased Endurance Charge Duration" + ], + "g": 34, + "o": 4, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48480 + ], + "in": [ + 982 + ] + }, + "42659": { + "id": 42659, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Fire Damage", + "0.5% of Life Regenerated per second" + ], + "g": 34, + "o": 4, + "oidx": 12, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1731 + ], + "in": [ + 42659 + ] + }, + "48480": { + "id": 48480, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png", + "ks": false, + "not": true, + "dn": "Ramako, Sun's Light", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + ], + "spc": [], + "sd": [ + "+100% to Fire Resistance", + "1% of Life Regenerated per second", + "10% of Physical Damage from Hits taken as Fire Damage", + "2% of Life Regenerated per second if you've taken Fire Damage from a Hit Recently", + "Unaffected by Ignite" + ], + "g": 34, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 48480 + ] + }, + "5029": { + "id": 5029, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png", + "ks": false, + "not": true, + "dn": "Tawhoa, Forest's Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of maximum Life Regenerated per second per Endurance Charge", + "When you or your Totems Kill a Burning Enemy, 20% chance for you\nand your Totems to each gain an Endurance Charge", + "6% increased Fire Damage per Endurance Charge" + ], + "g": 34, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 982 + ], + "in": [ + 5029 + ] + }, + "50692": { + "id": 50692, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png", + "ks": false, + "not": true, + "dn": "Ngamahu, Flame's Advance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "50% of Physical Damage Converted to Fire Damage", + "Damage Penetrates 10% Fire Resistance", + "Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds" + ], + "g": 34, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42659 + ], + "in": [ + 50692 + ] + }, + "53095": { + "id": 53095, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png", + "ks": false, + "not": true, + "dn": "Tukohama, War's Herald", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Totems are Immune to Fire Damage", + "Totems have 50% of your Armour", + "Skills used by Totems have a 20% chance to Taunt on Hit", + "Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit" + ], + "g": 34, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 53095 + ] + }, + "24704": { + "id": 24704, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Chieftain", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 34, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47486, + 9971, + 5643 + ], + "in": [ + 24704 + ] + }, + "47486": { + "id": 47486, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "15% increased Endurance Charge Duration" + ], + "g": 34, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5029 + ], + "in": [ + 47486 + ] + }, + "5643": { + "id": 5643, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Totem Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "10% increased Totem Placement speed" + ], + "g": 34, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31667 + ], + "in": [ + 5643 + ] + }, + "6028": { + "id": 6028, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + "ks": false, + "not": false, + "dn": "Life Regeneration, Totem Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "10% increased Totem Placement speed" + ], + "g": 34, + "o": 4, + "oidx": 14, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53095 + ], + "in": [ + 6028 + ] + }, + "31667": { + "id": 31667, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png", + "ks": false, + "not": true, + "dn": "Arohongui, Moon's Presence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Enemies near your Totems deal 8% less Damage", + "Enemies near your Totems take 16% increased Physical and Fire Damage" + ], + "g": 34, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6028 + ], + "in": [ + 31667 + ] + }, + "1731": { + "id": 1731, + "icon": "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png", + "ks": false, + "not": true, + "dn": "Hinekora, Death's Fury", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Chieftain", + "isAscendancyStart": false, + "reminderText": [ + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken, and lasts for 4 seconds)" + ], + "spc": [], + "sd": [ + "1% of Fire Damage Leeched as Life", + "10% increased Strength", + "1% of Damage dealt by your Totems is Leeched to you as Life", + "10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" + ], + "g": 34, + "o": 4, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 1731 + ] + }, + "59717": { + "id": 59717, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + "ks": false, + "not": false, + "dn": "Mana Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 35, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "9171": { + "id": 9171, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Life", + "10% increased Life Leeched per second" + ], + "g": 35, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28455 + ], + "in": [ + 9171 + ] + }, + "28455": { + "id": 28455, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Life", + "10% increased Life Leeched per second" + ], + "g": 35, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39530 + ], + "in": [ + 28455, + 28455 + ] + }, + "57503": { + "id": 57503, + "icon": "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + "ks": false, + "not": false, + "dn": "Mana Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Mana", + "10% increased Mana Leeched per second" + ], + "g": 35, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1382, + 36704 + ], + "in": [ + 57503 + ] + }, + "36704": { + "id": 36704, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Life and Mana Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Life", + "0.4% of Attack Damage Leeched as Mana" + ], + "g": 35, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29937, + 28455 + ], + "in": [ + 36704 + ] + }, + "54872": { + "id": 54872, + "icon": "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + "ks": false, + "not": false, + "dn": "Mana Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Mana", + "10% increased Mana Leeched per second" + ], + "g": 35, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57503 + ], + "in": [ + 54872 + ] + }, + "1382": { + "id": 1382, + "icon": "Art/2DArt/SkillIcons/passives/minddrinker.png", + "ks": false, + "not": true, + "dn": "Spirit Void", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.8% of Attack Damage Leeched as Mana", + "+5% of maximum Mana per second to maximum Mana Leech rate", + "20% increased Mana Leeched per second" + ], + "g": 35, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 1382 + ] + }, + "39530": { + "id": 39530, + "icon": "Art/2DArt/SkillIcons/passives/lifeleech.png", + "ks": false, + "not": true, + "dn": "Vitality Void", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.8% of Attack Damage Leeched as Life", + "+3% of maximum Life per second to maximum Life Leech rate", + "20% increased Life Leeched per second" + ], + "g": 35, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39530 + ] + }, + "9371": { + "id": 9371, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Axes", + "4% increased Attack Speed with Swords" + ], + "g": 36, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16756 + ], + "in": [ + 9371 + ] + }, + "16756": { + "id": 16756, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Axes", + "4% increased Attack Speed with Swords" + ], + "g": 36, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56435 + ], + "in": [ + 16756, + 16756 + ] + }, + "63309": { + "id": 63309, + "icon": "Art/2DArt/SkillIcons/passives/ByTheBlade.png", + "ks": false, + "not": true, + "dn": "By The Blade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Axes", + "24% increased Physical Damage with Swords", + "10% increased Global Accuracy Rating", + "16% increased Evasion Rating", + "24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 36, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9371 + ], + "in": [ + 63309 + ] + }, + "30251": { + "id": 30251, + "icon": "Art/2DArt/SkillIcons/passives/masterysword.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Axes", + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding an Axe", + "12% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 36, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63309 + ], + "in": [ + 30251 + ] + }, + "32906": { + "id": 32906, + "icon": "Art/2DArt/SkillIcons/passives/masterysword.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Axes", + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding an Axe", + "12% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 36, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30251 + ], + "in": [ + 32906, + 32906 + ] + }, + "56435": { + "id": 56435, + "icon": "Art/2DArt/SkillIcons/passives/accuracysword.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Accuracy Rating with Axes", + "15% increased Accuracy Rating with Swords" + ], + "g": 36, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32906 + ], + "in": [ + 56435 + ] + }, + "59295": { + "id": 59295, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupSwordAndAxe.png", + "ks": false, + "not": false, + "dn": "Axe and Sword Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 36, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "9788": { + "id": 9788, + "icon": "Art/2DArt/SkillIcons/passives/nimbleness.png", + "ks": false, + "not": true, + "dn": "Nimbleness", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Cast Speed", + "4% increased Movement Speed", + "15% chance to Avoid interruption from Stuns while Casting" + ], + "g": 37, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9788 + ] + }, + "12189": { + "id": 12189, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 37, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5875, + 37671 + ], + "in": [] + }, + "5875": { + "id": 5875, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 37, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9788 + ], + "in": [ + 5875 + ] + }, + "62214": { + "id": 62214, + "icon": "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + "ks": false, + "not": false, + "dn": "Shield Spell Block and Elemental Resistance with Shields", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while holding a Shield", + "+6% Elemental Resistances while holding a Shield" + ], + "g": 38, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20832 + ], + "in": [ + 62214 + ] + }, + "64426": { + "id": 64426, + "icon": "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + "ks": false, + "not": false, + "dn": "Shield Spell Block and Elemental Resistance with Shields", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while holding a Shield", + "+6% Elemental Resistances while holding a Shield" + ], + "g": 38, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62214 + ], + "in": [ + 64426 + ] + }, + "20832": { + "id": 20832, + "icon": "Art/2DArt/SkillIcons/passives/barricade.png", + "ks": false, + "not": true, + "dn": "Sanctuary", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+3% Chance to Block Spell Damage while holding a Shield", + "+12% Elemental Resistances while holding a Shield", + "+3% Chance to Block Attack Damage while holding a Shield" + ], + "g": 38, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20349 + ], + "in": [ + 20832 + ] + }, + "20349": { + "id": 20349, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Shield Block and Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 15% increased Damage with Ailments while holding a Shield", + "+1% Chance to Block Attack Damage while holding a Shield" + ], + "g": 38, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32854 + ], + "in": [ + 20349 + ] + }, + "32854": { + "id": 32854, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Shield Block and Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 15% increased Damage with Ailments while holding a Shield", + "+1% Chance to Block Attack Damage while holding a Shield" + ], + "g": 38, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1593 + ], + "in": [ + 32854 + ] + }, + "1593": { + "id": 1593, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Shield Defences", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "40% increased Defences from Equipped Shield" + ], + "g": 38, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64426 + ], + "in": [ + 1593, + 1593 + ] + }, + "56305": { + "id": 56305, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + "ks": false, + "not": false, + "dn": "Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 38, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "14057": { + "id": 14057, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+4% to Chaos Resistance" + ], + "g": 39, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9386, + 6764 + ], + "in": [] + }, + "32262": { + "id": 32262, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 39, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "9386": { + "id": 9386, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+4% to Chaos Resistance" + ], + "g": 39, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5743 + ], + "in": [ + 9386 + ] + }, + "5743": { + "id": 5743, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+4% to Chaos Resistance" + ], + "g": 39, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64210, + 58218 + ], + "in": [ + 5743 + ] + }, + "58218": { + "id": 58218, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": true, + "dn": "Purity of Flesh", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "+8% to Chaos Resistance", + "+10 to Strength" + ], + "g": 39, + "o": 2, + "oidx": 5, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 58218 + ] + }, + "7285": { + "id": 7285, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage with Bleeding" + ], + "g": 40, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12247, + 14930 + ], + "in": [] + }, + "12247": { + "id": 12247, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 10% chance to cause Bleeding" + ], + "g": 40, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56359 + ], + "in": [ + 12247 + ] + }, + "56359": { + "id": 56359, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": true, + "dn": "Red Storm", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "30% increased Global Physical Damage", + "Attacks have 15% chance to cause Bleeding" + ], + "g": 40, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56359 + ] + }, + "57331": { + "id": 57331, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png", + "ks": false, + "not": true, + "dn": "Harness the Void", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Your Hits have 25% chance to gain 25% of Non-Chaos Damage as Extra Chaos Damage", + "Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage", + "Your Hits have 5% chance to gain 100% of Non-Chaos Damage as Extra Chaos Damage" + ], + "g": 41, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58454 + ], + "in": [ + 57331 + ] + }, + "32947": { + "id": 32947, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png", + "ks": false, + "not": true, + "dn": "Swift Killer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+1 to Maximum Frenzy Charges and Maximum Power Charges", + "15% chance to gain a Frenzy Charge and a Power Charge on Kill", + "5% increased Damage per Frenzy Charge", + "5% increased Damage per Power Charge" + ], + "g": 41, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37191 + ], + "in": [] + }, + "2336": { + "id": 2336, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Damage over Time", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57331 + ], + "in": [ + 2336 + ] + }, + "55867": { + "id": 55867, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png", + "ks": false, + "not": true, + "dn": "Patient Reaper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "50% increased Damage over Time", + "Recover 2% of Maximum Life on Kill", + "Recover 2% of Maximum Energy Shield on Kill", + "Recover 4% of Maximum Mana on Kill", + "70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently" + ], + "g": 41, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55867, + 55867 + ] + }, + "58454": { + "id": 58454, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Damage over Time", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41891 + ], + "in": [ + 58454 + ] + }, + "23225": { + "id": 23225, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png", + "ks": false, + "not": true, + "dn": "Weave the Arcane", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "25% increased maximum Mana", + "Movement Skills cost no Mana", + "20% increased Attack and Cast Speed if you've used a Movement Skill Recently", + "20% chance to Recover 10% of Maximum Mana when you use a Skill", + "6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana" + ], + "g": 41, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 23225 + ] + }, + "37191": { + "id": 37191, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "4% increased Attack and Cast Speed", + "10% increased Frenzy Charge Duration", + "10% increased Power Charge Duration" + ], + "g": 41, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 37191, + 37191 + ] + }, + "15542": { + "id": 15542, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Damage over Time", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55867 + ], + "in": [ + 15542 + ] + }, + "63908": { + "id": 63908, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "8% increased maximum Energy Shield", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28884 + ], + "in": [ + 63908 + ] + }, + "28884": { + "id": 28884, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png", + "ks": false, + "not": true, + "dn": "Ghost Dance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "40% increased Attack and Cast Speed if Energy\nShield Recharge has started Recently", + "20% more chance to Evade while on full Energy Shield", + "10% chance to Dodge Attack and Spell Hits while you have Energy Shield", + "10% increased Movement Speed while you have Energy Shield" + ], + "g": 41, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19587 + ], + "in": [ + 28884 + ] + }, + "19587": { + "id": 19587, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "8% increased maximum Energy Shield", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29825 + ], + "in": [ + 19587 + ] + }, + "29825": { + "id": 29825, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png", + "ks": false, + "not": true, + "dn": "Escape Artist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+5 to Evasion Rating per 1 Maximum Energy Shield on Helmet", + "+1 to maximum Energy Shield per 6 Evasion Rating on Body Armour", + "Cannot be Stunned if you haven't been Hit Recently", + "8% reduced Damage taken if you haven't been Hit Recently" + ], + "g": 41, + "o": 4, + "oidx": 14, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 29825 + ] + }, + "35598": { + "id": 35598, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Maximum Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Mana", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23225 + ], + "in": [ + 35598 + ] + }, + "41891": { + "id": 41891, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png", + "ks": false, + "not": true, + "dn": "Prolonged Pain", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Skill Effect Duration", + "10% reduced Damage taken from Damage Over Time", + "20% increased Poison Duration", + "15% more Damage over Time" + ], + "g": 41, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15542 + ], + "in": [ + 41891 + ] + }, + "13219": { + "id": 13219, + "icon": "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "8% increased maximum Energy Shield", + "4% increased Attack and Cast Speed" + ], + "g": 41, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55867 + ], + "in": [ + 13219 + ] + }, + "55236": { + "id": 55236, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Trickster", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Trickster", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 41, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35598, + 63908, + 37191, + 2336, + 13219 + ], + "in": [ + 55236 + ] + }, + "57061": { + "id": 57061, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to maximum Mana", + "10% increased maximum Mana" + ], + "g": 42, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5289 + ], + "in": [ + 57061 + ] + }, + "22061": { + "id": 22061, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 42, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57061, + 5289 + ], + "in": [ + 22061 + ] + }, + "5289": { + "id": 5289, + "icon": "Art/2DArt/SkillIcons/passives/BattleRouse.png", + "ks": false, + "not": true, + "dn": "Battle Rouse", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15 to maximum Mana", + "15% increased maximum Mana", + "3% of Damage taken gained as Mana over 4 seconds when Hit" + ], + "g": 42, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 5289, + 5289 + ] + }, + "36874": { + "id": 36874, + "icon": "Art/2DArt/SkillIcons/passives/savant.png", + "ks": false, + "not": true, + "dn": "Wisdom of the Glade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Intelligence" + ], + "g": 43, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 30, + "out": [ + 23471 + ], + "in": [] + }, + "49588": { + "id": 49588, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage and Shock Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + ], + "spc": [], + "sd": [ + "10% increased Lightning Damage", + "5% chance to Shock" + ], + "g": 44, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61264, + 11645 + ], + "in": [] + }, + "55647": { + "id": 55647, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Lightning Damage" + ], + "g": 44, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56716 + ], + "in": [ + 55647 + ] + }, + "61264": { + "id": 61264, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage and Shock Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Lightning Damage", + "10% increased Effect of Shock" + ], + "g": 44, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46469 + ], + "in": [ + 61264 + ] + }, + "46469": { + "id": 46469, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage, Shock Duration and Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Lightning Damage", + "30% increased Shock Duration on Enemies", + "10% increased Effect of Shock" + ], + "g": 44, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32431 + ], + "in": [ + 46469 + ] + }, + "57362": { + "id": 57362, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Lightning Damage" + ], + "g": 44, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55647 + ], + "in": [ + 57362 + ] + }, + "56716": { + "id": 56716, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": true, + "dn": "Heart of Thunder", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Lightning Damage", + "Damage Penetrates 6% Lightning Resistance" + ], + "g": 44, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56716 + ] + }, + "32431": { + "id": 32431, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Lightning Damage" + ], + "g": 44, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4367 + ], + "in": [ + 32431, + 32431 + ] + }, + "36121": { + "id": 36121, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Lightning Damage" + ], + "g": 44, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32431, + 57362 + ], + "in": [] + }, + "11645": { + "id": 11645, + "icon": "Art/2DArt/SkillIcons/passives/BreathofLightening2.png", + "ks": false, + "not": true, + "dn": "Breath of Lightning", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + ], + "spc": [], + "sd": [ + "20% increased Lightning Damage", + "20% increased Shock Duration on Enemies", + "10% chance to Shock", + "15% increased Effect of Shock" + ], + "g": 44, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11645 + ] + }, + "44355": { + "id": 44355, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + "ks": false, + "not": false, + "dn": "Lightning Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 44, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "59605": { + "id": 59605, + "icon": "Art/2DArt/SkillIcons/passives/Trap2.png", + "ks": false, + "not": true, + "dn": "Unstable Munitions", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Trap Damage", + "8% increased Area of Effect" + ], + "g": 45, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54574 + ], + "in": [] + }, + "54574": { + "id": 54574, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Trap Damage" + ], + "g": 45, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54974 + ], + "in": [ + 54574 + ] + }, + "54974": { + "id": 54974, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap Damage and Trigger Area", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "20% increased Trap Trigger Area of Effect" + ], + "g": 45, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51786 + ], + "in": [ + 54974 + ] + }, + "34098": { + "id": 34098, + "icon": "Art/2DArt/SkillIcons/passives/heroicspirit.png", + "ks": true, + "not": false, + "dn": "Mind Over Matter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "While the mind endures, so too will the body." + ], + "spc": [], + "sd": [ + "30% of Damage is taken from Mana before Life" + ], + "g": 46, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60398, + 38701 + ], + "in": [] + }, + "30439": { + "id": 30439, + "icon": "Art/2DArt/SkillIcons/passives/lavalash.png", + "ks": false, + "not": true, + "dn": "Lava Lash", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Damage with Weapons Penetrates 8% Fire Resistance", + "30% increased Fire Damage with Attack Skills" + ], + "g": 47, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 30439 + ] + }, + "8879": { + "id": 8879, + "icon": "Art/2DArt/SkillIcons/passives/firedamagestr.png", + "ks": false, + "not": false, + "dn": "Weapon Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage with Attack Skills" + ], + "g": 47, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8879, + 8879 + ] + }, + "14419": { + "id": 14419, + "icon": "Art/2DArt/SkillIcons/passives/firedamagestr.png", + "ks": false, + "not": false, + "dn": "Weapon Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage with Attack Skills" + ], + "g": 47, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30439, + 8879 + ], + "in": [] + }, + "51462": { + "id": 51462, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png", + "ks": false, + "not": true, + "dn": "Bomb Specialist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "Can have up to 2 additional Remote Mines placed at a time", + "20% increased Mine Laying Speed if you Detonated Mines Recently", + "40% increased Damage if you Detonated Mines Recently" + ], + "g": 48, + "o": 4, + "oidx": 31, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47366 + ], + "in": [ + 51462 + ] + }, + "25167": { + "id": 25167, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Mine Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "5% increased Mine Laying Speed" + ], + "g": 48, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51462 + ], + "in": [ + 25167 + ] + }, + "28535": { + "id": 28535, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png", + "ks": false, + "not": true, + "dn": "Perfect Crime", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Cooldown Recovery Speed for throwing Traps", + "You gain 8% increased Damage for each Trap", + "20% Chance for Traps to Trigger an additional time" + ], + "g": 48, + "o": 4, + "oidx": 36, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26446 + ], + "in": [ + 28535 + ] + }, + "869": { + "id": 869, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Trap Throwing Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "5% increased Trap Throwing Speed" + ], + "g": 48, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28535 + ], + "in": [ + 869 + ] + }, + "5087": { + "id": 5087, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png", + "ks": false, + "not": true, + "dn": "Born in the Shadows", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "reminderText": [ + "(Blinded enemies have their Chance to Hit halved)" + ], + "spc": [], + "sd": [ + "Cannot be Blinded", + "10% reduced Damage taken from Blinded Enemies", + "Nearby Enemies are Blinded", + "30% increased Damage with Hits and Ailments against Blinded Enemies", + "25% chance to Blind Enemies on Hit" + ], + "g": 48, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 5087 + ] + }, + "64842": { + "id": 64842, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "4% increased Movement Speed" + ], + "g": 48, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5087 + ], + "in": [ + 64842 + ] + }, + "26446": { + "id": 26446, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Trap Throwing Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "5% increased Trap Throwing Speed" + ], + "g": 48, + "o": 4, + "oidx": 38, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38918 + ], + "in": [ + 26446 + ] + }, + "14103": { + "id": 14103, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png", + "ks": false, + "not": true, + "dn": "Explosives Expert", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Area of Effect", + "20% increased Area Damage", + "Damage Penetrates 10% Elemental Resistances", + "10% reduced Damage taken from Trap or Mine Hits" + ], + "g": 48, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 14103 + ] + }, + "63135": { + "id": 63135, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "+6% to all Elemental Resistances" + ], + "g": 48, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14103 + ], + "in": [ + 63135 + ] + }, + "47366": { + "id": 47366, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Mine Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "5% increased Mine Laying Speed" + ], + "g": 48, + "o": 4, + "oidx": 29, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39834 + ], + "in": [ + 47366 + ] + }, + "16940": { + "id": 16940, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png", + "ks": false, + "not": true, + "dn": "Pyromaniac", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "Immune to Ignite", + "Immune to Shock", + "1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%", + "1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%", + "25% reduced Mana Cost of Skills that place Mines or throw Traps" + ], + "g": 48, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 16940 + ] + }, + "39834": { + "id": 39834, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png", + "ks": false, + "not": true, + "dn": "Demolitions Specialist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "You gain 8% increased Area of Effect for each Mine", + "20% chance when Placing Mines to Place an additional Mine", + "100% increased Mine Arming Speed" + ], + "g": 48, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39834 + ] + }, + "41081": { + "id": 41081, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage, Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "4% increased Movement Speed" + ], + "g": 48, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16940 + ], + "in": [ + 41081 + ] + }, + "38918": { + "id": 38918, + "icon": "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png", + "ks": false, + "not": true, + "dn": "Chain Reaction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "30% increased Trap Damage", + "15% increased Cooldown Recovery Speed for throwing Traps", + "Skills used by Traps have 20% increased Area of Effect", + "When your Traps Trigger, your nearby Traps also Trigger" + ], + "g": 48, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38918 + ] + }, + "18635": { + "id": 18635, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Saboteur", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Saboteur", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 48, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25167, + 63135, + 64842, + 41081, + 869 + ], + "in": [ + 18635 + ] + }, + "238": { + "id": 238, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 49, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 10829, + 11497 + ], + "in": [] + }, + "11497": { + "id": 11497, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 49, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 34483 + ], + "in": [ + 11497, + 11497 + ] + }, + "34483": { + "id": 34483, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 49, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34483 + ] + }, + "44429": { + "id": 44429, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+3% to all Elemental Resistances" + ], + "g": 50, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53118, + 55649 + ], + "in": [] + }, + "30380": { + "id": 30380, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+3% to all Elemental Resistances" + ], + "g": 50, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59928 + ], + "in": [ + 30380 + ] + }, + "18974": { + "id": 18974, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 50, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "53118": { + "id": 53118, + "icon": "Art/2DArt/SkillIcons/passives/titanicmight.png", + "ks": false, + "not": true, + "dn": "Barbarism", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life", + "+1% to maximum Fire Resistance", + "+8% to Fire Resistance" + ], + "g": 50, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30380 + ], + "in": [ + 53118 + ] + }, + "34031": { + "id": 34031, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 51, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 41706, + 17383 + ], + "in": [ + 34031, + 34031, + 34031, + 34031 + ] + }, + "56589": { + "id": 56589, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 52, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [], + "in": [ + 56589, + 56589, + 56589, + 56589 + ] + }, + "40126": { + "id": 40126, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Effect of your Curses" + ], + "g": 53, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3359 + ], + "in": [ + 40126 + ] + }, + "15400": { + "id": 15400, + "icon": "Art/2DArt/SkillIcons/passives/SkitteringRunes.png", + "ks": false, + "not": true, + "dn": "Skittering Runes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Effect of your Curses" + ], + "g": 53, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 15400 + ] + }, + "3359": { + "id": 3359, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Curse Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Cast Speed for Curses" + ], + "g": 53, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15400 + ], + "in": [ + 3359 + ] + }, + "51786": { + "id": 51786, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 54, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 28574, + 20812 + ], + "in": [ + 51786, + 51786, + 51786, + 51786 + ] + }, + "28574": { + "id": 28574, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 54, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 61875 + ], + "in": [ + 28574, + 28574, + 28574 + ] + }, + "18302": { + "id": 18302, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 55, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 18302, + 18302 + ] + }, + "25933": { + "id": 25933, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 55, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 25933, + 25933 + ] + }, + "28265": { + "id": 28265, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 55, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48807, + 54776 + ], + "in": [] + }, + "50360": { + "id": 50360, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 55, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 50360, + 50360 + ] + }, + "54776": { + "id": 54776, + "icon": "Art/2DArt/SkillIcons/passives/manaconduit.png", + "ks": false, + "not": true, + "dn": "Mana Flows", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to maximum Mana", + "16% increased maximum Mana", + "40% increased Mana Regeneration Rate", + "+20 to Intelligence" + ], + "g": 55, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 50360 + ], + "in": [ + 54776 + ] + }, + "48438": { + "id": 48438, + "icon": "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + "ks": false, + "not": true, + "dn": "Bravery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Evasion Rating and Armour", + "8% increased maximum Life" + ], + "g": 55, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25933, + 18302 + ], + "in": [] + }, + "3469": { + "id": 3469, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 56, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 23471, + 34678 + ], + "in": [ + 3469, + 3469 + ] + }, + "11431": { + "id": 11431, + "icon": "Art/2DArt/SkillIcons/passives/totemlife.png", + "ks": false, + "not": false, + "dn": "Totem Life and Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Life", + "10% increased Totem Placement speed" + ], + "g": 57, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19140, + 3644 + ], + "in": [ + 11431 + ] + }, + "30825": { + "id": 30825, + "icon": "Art/2DArt/SkillIcons/passives/totemplacementspeed.png", + "ks": false, + "not": false, + "dn": "Totem Life and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + ], + "g": 57, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11431 + ], + "in": [ + 30825 + ] + }, + "63150": { + "id": 63150, + "icon": "Art/2DArt/SkillIcons/passives/ironwoodtotem.png", + "ks": false, + "not": true, + "dn": "Ironwood", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Totem Damage", + "Totems gain +16% to all Elemental Resistances", + "Totems have 10% additional Physical Damage Reduction" + ], + "g": 57, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30825 + ], + "in": [ + 63150 + ] + }, + "19140": { + "id": 19140, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Damage", + "Spells Cast by Totems have 3% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + ], + "g": 57, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63150 + ], + "in": [ + 19140 + ] + }, + "25818": { + "id": 25818, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTotem.png", + "ks": false, + "not": false, + "dn": "Totem Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 57, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "34906": { + "id": 34906, + "icon": "Art/2DArt/SkillIcons/passives/manastr.png", + "ks": false, + "not": false, + "dn": "Mana and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Mana", + "3% reduced Mana Cost of Skills" + ], + "g": 58, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24256 + ], + "in": [ + 34906, + 34906 + ] + }, + "41026": { + "id": 41026, + "icon": "Art/2DArt/SkillIcons/passives/manastr.png", + "ks": false, + "not": false, + "dn": "Mana and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana", + "4% reduced Mana Cost of Skills" + ], + "g": 58, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34906 + ], + "in": [ + 41026 + ] + }, + "63543": { + "id": 63543, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + "ks": false, + "not": false, + "dn": "Mana Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 58, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "24256": { + "id": 24256, + "icon": "Art/2DArt/SkillIcons/passives/Dynamo.png", + "ks": false, + "not": true, + "dn": "Dynamo", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased maximum Mana", + "5% reduced Mana Cost of Skills" + ], + "g": 58, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41026 + ], + "in": [ + 24256 + ] + }, + "31501": { + "id": 31501, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap Throwing Speed and Trigger Area", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + ], + "g": 59, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 31501, + 31501 + ] + }, + "27962": { + "id": 27962, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap Throwing Speed and Trigger Area", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + ], + "g": 59, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31501 + ], + "in": [ + 27962 + ] + }, + "59556": { + "id": 59556, + "icon": "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png", + "ks": false, + "not": true, + "dn": "Expeditious Munitions", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Damage", + "30% increased Trap Trigger Area of Effect", + "8% increased Trap Throwing Speed" + ], + "g": 59, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31501 + ], + "in": [] + }, + "17352": { + "id": 17352, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life", + "5% increased maximum Mana" + ], + "g": 60, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20228, + 23456 + ], + "in": [ + 17352 + ] + }, + "1697": { + "id": 1697, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png", + "ks": false, + "not": true, + "dn": "Master Toxicist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Virulence is granted by the Herald of Agony Skill)" + ], + "spc": [], + "sd": [ + "Gain 10% of Physical Damage as Extra Chaos Damage", + "10% of Physical Damage Converted to Chaos Damage", + "10% more Chaos Damage with Attack Skills", + "You lose Virulence 50% slower", + "Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage" + ], + "g": 61, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20480 + ], + "in": [] + }, + "63976": { + "id": 63976, + "icon": "Art/2DArt/SkillIcons/passives/Shaper.png", + "ks": false, + "not": true, + "dn": "Shaper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Mana Regeneration Rate", + "1% of Life Regenerated per second" + ], + "g": 62, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33479, + 16775 + ], + "in": [ + 63976, + 63976 + ] + }, + "53793": { + "id": 53793, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 63, + "o": 4, + "oidx": 30, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 40653 + ], + "in": [ + 53793, + 53793, + 53793 + ] + }, + "40653": { + "id": 40653, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 63, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 42800 + ], + "in": [ + 40653, + 40653, + 40653, + 40653 + ] + }, + "12926": { + "id": 12926, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png", + "ks": true, + "not": false, + "dn": "Iron Grip", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Legend tells of bows so powerful that only giants could draw them back." + ], + "spc": [], + "sd": [ + "The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks" + ], + "g": 64, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 12926 + ] + }, + "59494": { + "id": 59494, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Accuracy Rating", + "8% increased Critical Strike Chance" + ], + "g": 65, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 59494, + 59494 + ] + }, + "2225": { + "id": 2225, + "icon": "Art/2DArt/SkillIcons/passives/eagleeye.png", + "ks": false, + "not": true, + "dn": "Eagle Eye", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Global Accuracy Rating", + "16% increased Critical Strike Chance" + ], + "g": 65, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59494 + ], + "in": [] + }, + "16380": { + "id": 16380, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Accuracy Rating", + "8% increased Critical Strike Chance" + ], + "g": 65, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59494 + ], + "in": [ + 16380 + ] + }, + "46413": { + "id": 46413, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupScepter.png", + "ks": false, + "not": false, + "dn": "Sceptre Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 66, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "61950": { + "id": 61950, + "icon": "Art/2DArt/SkillIcons/passives/MaceElemental.png", + "ks": false, + "not": false, + "dn": "Mace Elemental Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Accuracy Rating with Maces", + "10% increased Elemental Damage with Maces" + ], + "g": 66, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24677 + ], + "in": [ + 61950 + ] + }, + "5068": { + "id": 5068, + "icon": "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + "ks": false, + "not": false, + "dn": "Mace Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Maces", + "+25% to Critical Strike Multiplier with Maces" + ], + "g": 66, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20467 + ], + "in": [ + 5068 + ] + }, + "60619": { + "id": 60619, + "icon": "Art/2DArt/SkillIcons/passives/galvanichammer.png", + "ks": false, + "not": true, + "dn": "Galvanic Hammer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Accuracy Rating with Maces", + "25% increased Critical Strike Chance with Maces", + "25% increased Elemental Damage with Maces" + ], + "g": 66, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 60619, + 60619 + ] + }, + "20467": { + "id": 20467, + "icon": "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + "ks": false, + "not": false, + "dn": "Mace Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Maces", + "+25% to Critical Strike Multiplier with Maces" + ], + "g": 66, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60619 + ], + "in": [ + 20467 + ] + }, + "27134": { + "id": 27134, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 66, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5068, + 58402, + 61950 + ], + "in": [] + }, + "24677": { + "id": 24677, + "icon": "Art/2DArt/SkillIcons/passives/MaceElemental.png", + "ks": false, + "not": false, + "dn": "Mace Elemental Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Accuracy Rating with Maces", + "10% increased Elemental Damage with Maces" + ], + "g": 66, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60619 + ], + "in": [ + 24677 + ] + }, + "4336": { + "id": 4336, + "icon": "Art/2DArt/SkillIcons/passives/masterysword.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Swords", + "Attacks have 10% chance to cause Bleeding", + "15% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62042 + ], + "in": [ + 4336 + ] + }, + "25367": { + "id": 25367, + "icon": "Art/2DArt/SkillIcons/passives/blademaster.png", + "ks": false, + "not": true, + "dn": "Blade Master", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Physical Damage with Swords", + "10% increased Attack Speed with Swords", + "+200 to Accuracy Rating with Swords", + "25% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55166 + ], + "in": [] + }, + "55166": { + "id": 55166, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Swords", + "4% increased Attack Speed with Swords", + "10% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49415 + ], + "in": [ + 55166 + ] + }, + "49415": { + "id": 49415, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Swords", + "4% increased Attack Speed with Swords", + "10% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7082 + ], + "in": [ + 49415 + ] + }, + "62042": { + "id": 62042, + "icon": "Art/2DArt/SkillIcons/passives/masterysword.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Ailment Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Swords", + "25% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33082 + ], + "in": [ + 62042 + ] + }, + "33082": { + "id": 33082, + "icon": "Art/2DArt/SkillIcons/passives/razorsedge.png", + "ks": false, + "not": true, + "dn": "Razor's Edge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "30% increased Physical Damage with Swords", + "Attacks have 15% chance to cause Bleeding", + "+1 to Melee Weapon and Unarmed Attack range", + "30% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33082 + ] + }, + "7082": { + "id": 7082, + "icon": "Art/2DArt/SkillIcons/passives/damagesword.png", + "ks": false, + "not": false, + "dn": "Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 67, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5233, + 4336 + ], + "in": [ + 7082 + ] + }, + "48290": { + "id": 48290, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + "ks": false, + "not": false, + "dn": "Sword Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 67, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "46340": { + "id": 46340, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 68, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 58402 + ], + "in": [ + 46340 + ] + }, + "15027": { + "id": 15027, + "icon": "Art/2DArt/SkillIcons/passives/oxblood.png", + "ks": false, + "not": true, + "dn": "Beef", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Strength" + ], + "g": 69, + "o": 0, + "oidx": 0, + "sa": 30, + "da": 0, + "ia": 0, + "out": [ + 23471 + ], + "in": [] + }, + "37999": { + "id": 37999, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 70, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 29199 + ], + "in": [ + 37999 + ] + }, + "60472": { + "id": 60472, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 71, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 60472, + 60472, + 60472 + ] + }, + "42062": { + "id": 42062, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + "ks": false, + "not": false, + "dn": "Two Hand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 72, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "56381": { + "id": 56381, + "icon": "Art/2DArt/SkillIcons/passives/2handedspeed.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Two Handed Melee Weapons", + "3% increased Attack Speed with Two Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8533 + ], + "in": [ + 56381 + ] + }, + "8533": { + "id": 8533, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11515, + 24083 + ], + "in": [ + 8533 + ] + }, + "49318": { + "id": 49318, + "icon": "Art/2DArt/SkillIcons/passives/wreckingball.png", + "ks": false, + "not": true, + "dn": "Wrecking Ball", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with Two Handed Melee Weapons", + "10% increased Attack Speed with Two Handed Melee Weapons", + "20% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1909 + ], + "in": [] + }, + "1909": { + "id": 1909, + "icon": "Art/2DArt/SkillIcons/passives/2handedspeed.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Two Handed Melee Weapons", + "3% increased Attack Speed with Two Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56381 + ], + "in": [ + 1909 + ] + }, + "10016": { + "id": 10016, + "icon": "Art/2DArt/SkillIcons/passives/reaver.png", + "ks": false, + "not": true, + "dn": "Executioner", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Two Handed Melee Weapons", + "20% increased Stun Duration with Two Handed Melee Weapons on Enemies", + "20% increased Damage with Hits against Enemies that are on Low Life", + "24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10016 + ] + }, + "11515": { + "id": 11515, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Two Handed Melee Weapons", + "15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35362 + ], + "in": [ + 11515 + ] + }, + "35362": { + "id": 35362, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Two Handed Melee Weapons", + "15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 72, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10016 + ], + "in": [ + 35362 + ] + }, + "30733": { + "id": 30733, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 73, + "o": 2, + "oidx": 2, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 49178 + ], + "in": [ + 30733 + ] + }, + "28475": { + "id": 28475, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 73, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 28475 + ] + }, + "49178": { + "id": 49178, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 73, + "o": 2, + "oidx": 6, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 43374, + 28475 + ], + "in": [ + 49178 + ] + }, + "45788": { + "id": 45788, + "icon": "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png", + "ks": false, + "not": false, + "dn": "Claw, Dagger and Sword Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Claws", + "4% increased Attack Speed with Daggers", + "4% increased Attack Speed with Swords" + ], + "g": 74, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2121 + ], + "in": [ + 45788 + ] + }, + "42788": { + "id": 42788, + "icon": "Art/2DArt/SkillIcons/passives/MasteryClawDaggerSword.png", + "ks": false, + "not": false, + "dn": "Claw, Dagger and Sword Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 74, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "40834": { + "id": 40834, + "icon": "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png", + "ks": false, + "not": false, + "dn": "Claw, Dagger and Sword Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance with Claws", + "25% increased Critical Strike Chance with Daggers", + "25% increased Critical Strike Chance with Swords" + ], + "g": 74, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 40834, + 40834 + ] + }, + "2121": { + "id": 2121, + "icon": "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png", + "ks": false, + "not": false, + "dn": "Claw, Dagger and Sword Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Claws", + "4% increased Attack Speed with Daggers", + "4% increased Attack Speed with Swords" + ], + "g": 74, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22248 + ], + "in": [ + 2121 + ] + }, + "57493": { + "id": 57493, + "icon": "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png", + "ks": false, + "not": false, + "dn": "Claw, Dagger and Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Claws", + "12% increased Physical Damage with Daggers", + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 74, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40834, + 45788, + 56589 + ], + "in": [] + }, + "22248": { + "id": 22248, + "icon": "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png", + "ks": false, + "not": true, + "dn": "Deadly Dilettante", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Claws", + "24% increased Physical Damage with Daggers", + "24% increased Physical Damage with Swords", + "24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 74, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40834 + ], + "in": [ + 22248 + ] + }, + "61991": { + "id": 61991, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + "ks": false, + "not": false, + "dn": "Minion Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 75, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "43133": { + "id": 43133, + "icon": "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + "ks": false, + "not": false, + "dn": "Minion Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + ], + "g": 75, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23185 + ], + "in": [ + 43133 + ] + }, + "27308": { + "id": 27308, + "icon": "Art/2DArt/SkillIcons/passives/gravepact.png", + "ks": false, + "not": true, + "dn": "Gravepact", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 20% increased Damage", + "+1 to Maximum number of Zombies", + "+1 to Maximum number of Skeletons" + ], + "g": 75, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27308, + 27308 + ] + }, + "54267": { + "id": 54267, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 15% increased Damage" + ], + "g": 75, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43133, + 4972 + ], + "in": [ + 54267 + ] + }, + "23185": { + "id": 23185, + "icon": "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + "ks": false, + "not": false, + "dn": "Minion Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + ], + "g": 75, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27308 + ], + "in": [ + 23185 + ] + }, + "4972": { + "id": 4972, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life" + ], + "g": 75, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1609 + ], + "in": [ + 4972 + ] + }, + "1609": { + "id": 1609, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions Leech 0.6% of Damage as Life" + ], + "g": 75, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27308 + ], + "in": [ + 1609 + ] + }, + "19897": { + "id": 19897, + "icon": "Art/2DArt/SkillIcons/passives/deathattunement.png", + "ks": false, + "not": true, + "dn": "Death Attunement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 8% increased Attack Speed", + "Minions have 8% increased Cast Speed", + "+1 to Maximum number of Spectres", + "+1 to Maximum number of Zombies", + "+1 to Maximum number of Skeletons" + ], + "g": 76, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4247, + 34144 + ], + "in": [] + }, + "52412": { + "id": 52412, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life" + ], + "g": 76, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43716, + 63447 + ], + "in": [ + 52412 + ] + }, + "4247": { + "id": 4247, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life" + ], + "g": 76, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17412 + ], + "in": [ + 4247 + ] + }, + "17412": { + "id": 17412, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 7% increased maximum Life", + "Minions Regenerate 1% Life per second" + ], + "g": 76, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52412 + ], + "in": [ + 17412 + ] + }, + "43716": { + "id": 43716, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage", + "Minions Leech 0.2% of Damage as Life" + ], + "g": 76, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34144 + ], + "in": [ + 43716 + ] + }, + "49957": { + "id": 49957, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + "ks": false, + "not": false, + "dn": "Minion Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 76, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "34144": { + "id": 34144, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 15% increased Damage" + ], + "g": 76, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34144, + 34144 + ] + }, + "55934": { + "id": 55934, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupColdFire.png", + "ks": false, + "not": false, + "dn": "Cold and Fire Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 77, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6785": { + "id": 6785, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fire Damage" + ], + "g": 77, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42649 + ], + "in": [ + 6785 + ] + }, + "42649": { + "id": 42649, + "icon": "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png", + "ks": false, + "not": true, + "dn": "Snowforged", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Fire Damage", + "25% increased Cold Damage", + "30% increased Critical Strike Chance" + ], + "g": 77, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42649, + 42649 + ] + }, + "20852": { + "id": 20852, + "icon": "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png", + "ks": false, + "not": false, + "dn": "Fire and Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Fire Damage", + "8% increased Cold Damage" + ], + "g": 77, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36585, + 6785, + 41635 + ], + "in": [] + }, + "36585": { + "id": 36585, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Cold Damage" + ], + "g": 77, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42649 + ], + "in": [ + 36585 + ] + }, + "2897": { + "id": 2897, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + "ks": false, + "not": false, + "dn": "Energy Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 78, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "367": { + "id": 367, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 78, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58103 + ], + "in": [ + 367 + ] + }, + "23659": { + "id": 23659, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 78, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50029 + ], + "in": [ + 23659 + ] + }, + "33864": { + "id": 33864, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 78, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63447, + 23659 + ], + "in": [ + 33864 + ] + }, + "35706": { + "id": 35706, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 78, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14021, + 367 + ], + "in": [] + }, + "58103": { + "id": 58103, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 78, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33864 + ], + "in": [ + 58103 + ] + }, + "50029": { + "id": 50029, + "icon": "Art/2DArt/SkillIcons/passives/arcane focus.png", + "ks": false, + "not": true, + "dn": "Unnatural Calm", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate", + "+1% to maximum Lightning Resistance" + ], + "g": 78, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 50029 + ] + }, + "36949": { + "id": 36949, + "icon": "Art/2DArt/SkillIcons/passives/titanicmight.png", + "ks": false, + "not": true, + "dn": "Devotion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "3% increased effect of Non-Curse Auras from your Skills", + "+20 to Strength" + ], + "g": 79, + "o": 2, + "oidx": 11, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 10031 + ], + "in": [ + 36949 + ] + }, + "11730": { + "id": 11730, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": true, + "dn": "Endurance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Endurance Charges" + ], + "g": 79, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 401, + 40766 + ], + "in": [] + }, + "40766": { + "id": 40766, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Endurance Charge Duration" + ], + "g": 79, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23027 + ], + "in": [ + 40766 + ] + }, + "10031": { + "id": 10031, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life" + ], + "g": 79, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15064 + ], + "in": [ + 10031 + ] + }, + "21507": { + "id": 21507, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 79, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6712": { + "id": 6712, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life" + ], + "g": 79, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36949, + 23027 + ], + "in": [] + }, + "401": { + "id": 401, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Endurance Charge Duration" + ], + "g": 79, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15064 + ], + "in": [ + 401 + ] + }, + "17236": { + "id": 17236, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield Recharge Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Energy Shield Recharge Rate" + ], + "g": 80, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 17236, + 17236 + ] + }, + "7641": { + "id": 7641, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield Recharge Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Energy Shield Recharge Rate" + ], + "g": 80, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17236, + 34882 + ], + "in": [] + }, + "62577": { + "id": 62577, + "icon": "Art/2DArt/SkillIcons/passives/EssenceSurge.png", + "ks": false, + "not": true, + "dn": "Essence Surge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% faster start of Energy Shield Recharge", + "30% increased Energy Shield Recharge Rate" + ], + "g": 80, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17236 + ], + "in": [] + }, + "15228": { + "id": 15228, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + "ks": false, + "not": false, + "dn": "Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Critical Strike Multiplier" + ], + "g": 81, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47306 + ], + "in": [ + 15228 + ] + }, + "4036": { + "id": 4036, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + "ks": false, + "not": false, + "dn": "Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Critical Strike Multiplier" + ], + "g": 81, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15228, + 41635 + ], + "in": [] + }, + "47306": { + "id": 47306, + "icon": "Art/2DArt/SkillIcons/passives/throatseeker.png", + "ks": false, + "not": true, + "dn": "Throatseeker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30% to Critical Strike Multiplier" + ], + "g": 81, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 47306 + ] + }, + "25682": { + "id": 25682, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Axes", + "12% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63723, + 20018 + ], + "in": [ + 25682 + ] + }, + "9976": { + "id": 9976, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Axes", + "Attacks have 5% chance to cause Bleeding", + "15% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4940 + ], + "in": [ + 9976 + ] + }, + "23038": { + "id": 23038, + "icon": "Art/2DArt/SkillIcons/passives/fellingtheweak.png", + "ks": false, + "not": true, + "dn": "Slaughter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + ], + "spc": [], + "sd": [ + "25% increased Physical Damage with Axes", + "25% increased Accuracy Rating with Axes", + "10% chance to gain Onslaught for 4 seconds on Kill", + "25% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12407 + ], + "in": [] + }, + "49571": { + "id": 49571, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Axes", + "3% increased Attack Speed with Axes", + "10% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25682 + ], + "in": [ + 49571 + ] + }, + "57953": { + "id": 57953, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Axes", + "3% increased Attack Speed with Axes", + "10% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49571 + ], + "in": [ + 57953 + ] + }, + "20018": { + "id": 20018, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Axes", + "Attacks have 5% chance to cause Bleeding", + "15% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6113 + ], + "in": [ + 20018 + ] + }, + "6113": { + "id": 6113, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Axes", + "Attacks have 5% chance to cause Bleeding", + "15% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9976 + ], + "in": [ + 6113 + ] + }, + "12407": { + "id": 12407, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Axes", + "3% increased Attack Speed with Axes", + "10% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57953 + ], + "in": [ + 12407 + ] + }, + "4940": { + "id": 4940, + "icon": "Art/2DArt/SkillIcons/passives/hatchetmaster.png", + "ks": false, + "not": true, + "dn": "Cleaving", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "35% increased Physical Damage with Axes", + "Attacks have 10% chance to cause Bleeding", + "35% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 82, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 4940 + ] + }, + "590": { + "id": 590, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + "ks": false, + "not": false, + "dn": "Axe Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 82, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "7960": { + "id": 7960, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 83, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 7960 + ] + }, + "20987": { + "id": 20987, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Elemental Damage" + ], + "g": 83, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52502 + ], + "in": [ + 20987 + ] + }, + "52502": { + "id": 52502, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Elemental Damage" + ], + "g": 83, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7960 + ], + "in": [ + 52502 + ] + }, + "1461": { + "id": 1461, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 84, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 49900, + 6797 + ], + "in": [ + 1461, + 1461, + 1461, + 1461 + ] + }, + "35288": { + "id": 35288, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour" + ], + "g": 85, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26712 + ], + "in": [ + 35288 + ] + }, + "55190": { + "id": 55190, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 85, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55190 + ] + }, + "26712": { + "id": 26712, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour" + ], + "g": 85, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55190 + ], + "in": [ + 26712 + ] + }, + "24641": { + "id": 24641, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 12% increased Damage with Ailments while Dual Wielding" + ], + "g": 86, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25456, + 48807 + ], + "in": [ + 24641 + ] + }, + "3009": { + "id": 3009, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png", + "ks": false, + "not": false, + "dn": "Dual Wield Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Accuracy Rating while Dual Wielding" + ], + "g": 86, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24641 + ], + "in": [ + 3009 + ] + }, + "25456": { + "id": 25456, + "icon": "Art/2DArt/SkillIcons/passives/bladebarrier.png", + "ks": false, + "not": true, + "dn": "Dervish", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "24% increased Physical Weapon Damage while Dual Wielding", + "6% increased Attack Speed while Dual Wielding", + "Attack Skills deal 24% increased Damage with Ailments while Dual Wielding" + ], + "g": 86, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4565 + ], + "in": [ + 25456 + ] + }, + "4565": { + "id": 4565, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding" + ], + "g": 86, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22423 + ], + "in": [ + 4565 + ] + }, + "22423": { + "id": 22423, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 12% increased Damage with Ailments while Dual Wielding" + ], + "g": 86, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3009, + 17201 + ], + "in": [ + 22423 + ] + }, + "8640": { + "id": 8640, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 87, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 45838, + 45272 + ], + "in": [] + }, + "23507": { + "id": 23507, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "4% increased Cast Speed" + ], + "g": 87, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5823 + ], + "in": [ + 23507 + ] + }, + "27276": { + "id": 27276, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "10% increased Chaos Damage" + ], + "g": 87, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62831 + ], + "in": [ + 27276 + ] + }, + "62831": { + "id": 62831, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "10% increased Chaos Damage" + ], + "g": 87, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51220 + ], + "in": [ + 62831 + ] + }, + "57248": { + "id": 57248, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "4% increased Cast Speed" + ], + "g": 87, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48477 + ], + "in": [ + 57248 + ] + }, + "48477": { + "id": 48477, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "4% increased Cast Speed" + ], + "g": 87, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23507 + ], + "in": [ + 48477 + ] + }, + "45838": { + "id": 45838, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 87, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 4011 + ], + "in": [ + 45838 + ] + }, + "51220": { + "id": 51220, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "10% increased Chaos Damage" + ], + "g": 87, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41689 + ], + "in": [ + 51220 + ] + }, + "193": { + "id": 193, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+40 to Strength" + ], + "g": 88, + "o": 2, + "oidx": 2, + "sa": 40, + "da": 0, + "ia": 0, + "out": [ + 33875 + ], + "in": [ + 193 + ] + }, + "30690": { + "id": 30690, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 88, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24755 + ], + "in": [ + 30690 + ] + }, + "24755": { + "id": 24755, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Str.png", + "ks": false, + "not": true, + "dn": "Path of the Marauder", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Marauder's starting point" + ], + "g": 88, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31628, + 50904 + ], + "in": [ + 24755 + ] + }, + "33875": { + "id": 33875, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 88, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61437 + ], + "in": [ + 33875 + ] + }, + "61437": { + "id": 61437, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Marauder Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 88, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30690, + 4194, + 61072, + 57052 + ], + "in": [ + 61437 + ] + }, + "40100": { + "id": 40100, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Critical Strike Chance" + ], + "g": 89, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28574 + ], + "in": [ + 40100 + ] + }, + "34579": { + "id": 34579, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Critical Strike Chance" + ], + "g": 89, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40100 + ], + "in": [ + 34579 + ] + }, + "30471": { + "id": 30471, + "icon": "Art/2DArt/SkillIcons/passives/TrueStriker.png", + "ks": false, + "not": true, + "dn": "True Strike", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+12% to Critical Strike Multiplier", + "45% increased Critical Strike Chance" + ], + "g": 89, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34579 + ], + "in": [] + }, + "6534": { + "id": 6534, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20812 + ], + "in": [ + 6534 + ] + }, + "60204": { + "id": 60204, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57984 + ], + "in": [ + 60204 + ] + }, + "8348": { + "id": 8348, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6534 + ], + "in": [ + 8348 + ] + }, + "106": { + "id": 106, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + "ks": false, + "not": false, + "dn": "Evasion Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 90, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "17814": { + "id": 17814, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60204, + 32091 + ], + "in": [] + }, + "57984": { + "id": 57984, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8348 + ], + "in": [ + 57984, + 57984 + ] + }, + "44103": { + "id": 44103, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": true, + "dn": "Reflexes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+50 to Evasion Rating", + "30% increased Evasion Rating" + ], + "g": 90, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44103, + 44103 + ] + }, + "62103": { + "id": 62103, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage and Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Projectile Damage", + "+5 to Dexterity" + ], + "g": 91, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 5, + "ia": 0, + "out": [ + 58833, + 39773 + ], + "in": [] + }, + "47062": { + "id": 47062, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage and Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Spell Damage", + "+5 to Intelligence" + ], + "g": 91, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 5, + "out": [ + 58833, + 56153 + ], + "in": [] + }, + "15144": { + "id": 15144, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed and Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "+5 to Dexterity" + ], + "g": 91, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 5, + "ia": 0, + "out": [ + 58833, + 34062 + ], + "in": [ + 15144, + 15144 + ] + }, + "2151": { + "id": 2151, + "icon": "Art/2DArt/SkillIcons/passives/manaregeneration.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration and Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Mana Regeneration Rate", + "+5 to Intelligence" + ], + "g": 91, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 5, + "out": [ + 58833, + 37690, + 5560 + ], + "in": [ + 2151 + ] + }, + "55373": { + "id": 55373, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to maximum Life", + "+5 to Strength" + ], + "g": 91, + "o": 3, + "oidx": 9, + "sa": 5, + "da": 0, + "ia": 0, + "out": [ + 58833, + 38048 + ], + "in": [] + }, + "48828": { + "id": 48828, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage and Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage", + "+5 to Strength" + ], + "g": 91, + "o": 3, + "oidx": 7, + "sa": 5, + "da": 0, + "ia": 0, + "out": [ + 58833, + 62662, + 45887, + 33508 + ], + "in": [] + }, + "58833": { + "id": 58833, + "icon": "Art/2DArt/SkillIcons/passives/tempdex.png", + "ks": false, + "not": false, + "dn": "Seven", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 0 + ], + "sd": [], + "g": 91, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35754 + ], + "in": [ + 58833, + 58833, + 58833, + 58833, + 58833, + 58833, + 58833 + ] + }, + "59016": { + "id": 59016, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding" + ], + "g": 92, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33725 + ], + "in": [ + 59016 + ] + }, + "56807": { + "id": 56807, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": false, + "dn": "Dual Wield Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding" + ], + "g": 92, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33725, + 24203 + ], + "in": [] + }, + "24203": { + "id": 24203, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwield.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 12% increased Damage with Ailments while Dual Wielding" + ], + "g": 92, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59016 + ], + "in": [ + 24203, + 24203 + ] + }, + "33725": { + "id": 33725, + "icon": "Art/2DArt/SkillIcons/passives/swagger.png", + "ks": false, + "not": true, + "dn": "Swagger", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "24% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 24% increased Damage with Ailments while Dual Wielding" + ], + "g": 92, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33725, + 33725 + ] + }, + "35489": { + "id": 35489, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + "ks": false, + "not": false, + "dn": "Duel Wield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 92, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "5082": { + "id": 5082, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "10% increased Projectile Damage" + ], + "g": 93, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45313 + ], + "in": [ + 5082 + ] + }, + "56856": { + "id": 56856, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Deadeye", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 93, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5082, + 53086, + 55985, + 26958, + 62136 + ], + "in": [ + 56856 + ] + }, + "55985": { + "id": 55985, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Projectile Damage", + "10% increased Critical Strike Chance" + ], + "g": 93, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44482 + ], + "in": [ + 55985 + ] + }, + "53086": { + "id": 53086, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Attack Speed", + "10% increased Projectile Damage" + ], + "g": 93, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5443 + ], + "in": [ + 53086 + ] + }, + "28995": { + "id": 28995, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "10% increased Projectile Damage" + ], + "g": 93, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 28995, + 28995 + ] + }, + "5443": { + "id": 5443, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png", + "ks": false, + "not": true, + "dn": "Fast and Deadly", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Attack Speed", + "30% increased Projectile Damage", + "Accuracy Rating is Doubled", + "100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed" + ], + "g": 93, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 5443 + ] + }, + "45313": { + "id": 45313, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png", + "ks": false, + "not": true, + "dn": "Far Shot", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "reminderText": [ + "(Projectile Attacks gain Damage as they travel farther, dealing up to 30% more Attack Damage with Hits to targets)" + ], + "spc": [], + "sd": [ + "30% increased Projectile Speed", + "Far Shot" + ], + "g": 93, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28995, + 59837 + ], + "in": [ + 45313 + ] + }, + "24848": { + "id": 24848, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png", + "ks": false, + "not": true, + "dn": "Gathering Winds", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "reminderText": [ + "(Tailwind makes you 10% faster)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+1000 Evasion Rating while you have Tailwind", + "If you've used a Skill Recently, you and nearby Allies have Tailwind", + "10% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%" + ], + "g": 93, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24848 + ] + }, + "59837": { + "id": 59837, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Attack Speed", + "10% increased Projectile Damage" + ], + "g": 93, + "o": 4, + "oidx": 34, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 59837, + 59837 + ] + }, + "61627": { + "id": 61627, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png", + "ks": false, + "not": true, + "dn": "Ricochet", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Skills Chain +1 times", + "Projectiles deal 10% more Damage for each remaining Chain" + ], + "g": 93, + "o": 4, + "oidx": 32, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59837 + ], + "in": [] + }, + "26067": { + "id": 26067, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png", + "ks": false, + "not": true, + "dn": "Endless Munitions", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+200 to Accuracy Rating", + "50% increased Area of Effect", + "Skills fire an additional Projectile" + ], + "g": 93, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28995 + ], + "in": [] + }, + "26958": { + "id": 26958, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Projectile Damage", + "10% increased Critical Strike Chance" + ], + "g": 93, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21455 + ], + "in": [ + 26958 + ] + }, + "44482": { + "id": 44482, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png", + "ks": false, + "not": true, + "dn": "Rupture", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 25% chance to cause Bleeding", + "+40% to Critical Strike Multiplier against Bleeding Enemies", + "80% increased Critical Strike Chance against Bleeding Enemies", + "Moving while Bleeding doesn't cause you to take extra Damage", + "Gain +30 Life when you Hit a Bleeding Enemy" + ], + "g": 93, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44482 + ] + }, + "21455": { + "id": 21455, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png", + "ks": false, + "not": true, + "dn": "Powerful Precision", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Projectiles Pierce 3 additional Targets", + "Projectiles have 100% increased Critical Strike Chance against Targets they Pierce", + "Projectiles Pierce all nearby Targets" + ], + "g": 93, + "o": 4, + "oidx": 28, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21455 + ] + }, + "62136": { + "id": 62136, + "icon": "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + "ks": false, + "not": false, + "dn": "Projectile Damage, Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Deadeye", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "10% increased Projectile Damage" + ], + "g": 93, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24848 + ], + "in": [ + 62136 + ] + }, + "15163": { + "id": 15163, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Maces", + "2% increased Attack Speed with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30547, + 40645 + ], + "in": [] + }, + "57266": { + "id": 57266, + "icon": "Art/2DArt/SkillIcons/passives/stunmace.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Reduced Enemy Stun Threshold", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Maces", + "4% reduced Enemy Stun Threshold with Maces", + "10% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38023 + ], + "in": [ + 57266 + ] + }, + "38023": { + "id": 38023, + "icon": "Art/2DArt/SkillIcons/passives/stunmace.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Reduced Enemy Stun Threshold", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Maces", + "4% reduced Enemy Stun Threshold with Maces", + "10% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38023, + 38023 + ] + }, + "30547": { + "id": 30547, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Maces", + "2% increased Attack Speed with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20966 + ], + "in": [ + 30547 + ] + }, + "16703": { + "id": 16703, + "icon": "Art/2DArt/SkillIcons/passives/skullcracking.png", + "ks": false, + "not": true, + "dn": "Skull Cracking", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + ], + "spc": [], + "sd": [ + "22% increased Physical Damage with Maces", + "10% reduced Enemy Stun Threshold with Maces", + "Hits that Stun Enemies have Culling Strike", + "22% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8500, + 57266 + ], + "in": [] + }, + "8500": { + "id": 8500, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Maces", + "15% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8500, + 8500 + ] + }, + "40645": { + "id": 40645, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": true, + "dn": "Bone Breaker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Physical Damage with Maces", + "40% increased Stun Duration on Enemies", + "8% increased Area of Effect", + "30% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38023 + ], + "in": [ + 40645 + ] + }, + "46127": { + "id": 46127, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Maces", + "15% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8500 + ], + "in": [ + 46127 + ] + }, + "20966": { + "id": 20966, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 94, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46127, + 59928 + ], + "in": [ + 20966 + ] + }, + "30697": { + "id": 30697, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + "ks": false, + "not": false, + "dn": "Mace Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 94, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "27564": { + "id": 27564, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 95, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 17735 + ], + "in": [ + 27564 + ] + }, + "14151": { + "id": 14151, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 95, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 27564 + ], + "in": [ + 14151 + ] + }, + "22488": { + "id": 22488, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap Throw Speed and Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Trap Damage", + "4% increased Trap Throwing Speed" + ], + "g": 96, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7136 + ], + "in": [ + 22488 + ] + }, + "13176": { + "id": 13176, + "icon": "Art/2DArt/SkillIcons/passives/trapsradius.png", + "ks": false, + "not": false, + "dn": "Trap Damage and Trigger Area", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Trap Damage", + "20% increased Trap Trigger Area of Effect" + ], + "g": 96, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7136 + ], + "in": [ + 13176 + ] + }, + "7136": { + "id": 7136, + "icon": "Art/2DArt/SkillIcons/passives/mastersapper.png", + "ks": false, + "not": true, + "dn": "Master Sapper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Trap Damage", + "20% increased Trap Trigger Area of Effect", + "Can have up to 2 additional Traps placed at a time", + "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" + ], + "g": 96, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 7136, + 7136 + ] + }, + "36877": { + "id": 36877, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Trap Damage" + ], + "g": 96, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13176, + 22488, + 1461 + ], + "in": [] + }, + "48759": { + "id": 48759, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + "ks": false, + "not": false, + "dn": "Trap Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 96, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "54447": { + "id": 54447, + "icon": "Art/2DArt/SkillIcons/passives/blankInt.png", + "ks": false, + "not": false, + "dn": "WITCH", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 3 + ], + "sd": [], + "g": 97, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57264, + 60791, + 16023, + 18378 + ], + "in": [ + 54447, + 54447 + ] + }, + "57264": { + "id": 57264, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Spell Damage" + ], + "g": 97, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33296 + ], + "in": [ + 57264, + 57264, + 57264 + ] + }, + "57226": { + "id": 57226, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield and Mana Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+14 to maximum Energy Shield", + "25% increased Mana Regeneration Rate" + ], + "g": 97, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21678, + 54447 + ], + "in": [ + 57226, + 57226 + ] + }, + "6446": { + "id": 6446, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 98, + "o": 4, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 55649 + ], + "in": [ + 6446, + 6446 + ] + }, + "55649": { + "id": 55649, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 98, + "o": 4, + "oidx": 30, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55649, + 55649, + 55649, + 55649 + ] + }, + "48698": { + "id": 48698, + "icon": "Art/2DArt/SkillIcons/passives/newenergyshield.png", + "ks": false, + "not": true, + "dn": "Void Barrier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "10% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate", + "+8% to all Elemental Resistances" + ], + "g": 99, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62795 + ], + "in": [ + 48698 + ] + }, + "49408": { + "id": 49408, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 99, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62795, + 59252 + ], + "in": [] + }, + "4219": { + "id": 4219, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 99, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48698 + ], + "in": [ + 4219 + ] + }, + "6288": { + "id": 6288, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + "ks": false, + "not": false, + "dn": "Energy Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 99, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "62795": { + "id": 62795, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 99, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 62795, + 62795 + ] + }, + "56090": { + "id": 56090, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 99, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4219 + ], + "in": [ + 56090 + ] + }, + "23036": { + "id": 23036, + "icon": "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + "ks": false, + "not": false, + "dn": "Warcry Cooldown Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Warcry Cooldown Recovery Speed" + ], + "g": 100, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50858 + ], + "in": [ + 23036 + ] + }, + "50858": { + "id": 50858, + "icon": "Art/2DArt/SkillIcons/passives/Battlecry.png", + "ks": false, + "not": true, + "dn": "Battle Cry", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Warcry Cooldown Recovery Speed", + "Using Warcries is Instant", + "20% increased Warcry Buff Effect" + ], + "g": 100, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 50858 + ] + }, + "55871": { + "id": 55871, + "icon": "Art/2DArt/SkillIcons/passives/WarCryDuration.png", + "ks": false, + "not": false, + "dn": "Warcry Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Warcry Duration" + ], + "g": 100, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23036 + ], + "in": [ + 55871 + ] + }, + "43413": { + "id": 43413, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Block Recovery", + "+2% Chance to Block Attack Damage while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3319, + 49343 + ], + "in": [] + }, + "3319": { + "id": 3319, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Block Recovery", + "+2% Chance to Block Attack Damage while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44207 + ], + "in": [ + 3319 + ] + }, + "44207": { + "id": 44207, + "icon": "Art/2DArt/SkillIcons/passives/barricade.png", + "ks": false, + "not": true, + "dn": "Testudo", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "60% increased Block Recovery", + "+8 Mana gained when you Block", + "+4% Chance to Block Attack Damage while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44207, + 44207 + ] + }, + "49343": { + "id": 49343, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Block Chance and Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 8% increased Damage with Ailments while holding a Shield", + "+1% Chance to Block Attack Damage while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16544 + ], + "in": [ + 49343, + 49343 + ] + }, + "1159": { + "id": 1159, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage and Attack Speed with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49343 + ], + "in": [ + 1159 + ] + }, + "7063": { + "id": 7063, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Shield Defences", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "40% increased Defences from Equipped Shield" + ], + "g": 101, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12878, + 44207 + ], + "in": [] + }, + "12878": { + "id": 12878, + "icon": "Art/2DArt/SkillIcons/passives/Retaliation.png", + "ks": false, + "not": true, + "dn": "Retaliation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "24% increased Physical Attack Damage while holding a Shield", + "6% increased Attack Speed while holding a Shield", + "25% increased Defences from Equipped Shield", + "Attack Skills deal 24% increased Damage with Ailments while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36761 + ], + "in": [ + 12878 + ] + }, + "15510": { + "id": 15510, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + "ks": false, + "not": false, + "dn": "Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 101, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "36761": { + "id": 36761, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage and Attack Speed with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + ], + "g": 101, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1159 + ], + "in": [ + 36761 + ] + }, + "11651": { + "id": 11651, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 102, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 5408, + 6580 + ], + "in": [] + }, + "45272": { + "id": 45272, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Global Physical Damage", + "14% increased Chaos Damage", + "+12 to maximum Life" + ], + "g": 103, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 45272, + 45272, + 45272, + 45272 + ] + }, + "44683": { + "id": 44683, + "icon": "Art/2DArt/SkillIcons/passives/tempint.png", + "ks": false, + "not": false, + "dn": "SIX", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 6 + ], + "sd": [], + "g": 103, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45272, + 58229, + 55236, + 18635 + ], + "in": [ + 44683, + 44683 + ] + }, + "60090": { + "id": 60090, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 104, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13322, + 46092 + ], + "in": [ + 60090 + ] + }, + "36687": { + "id": 36687, + "icon": "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png", + "ks": false, + "not": true, + "dn": "Avatar of the Hunt", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Bows", + "3% increased Movement Speed", + "24% increased Damage Over Time with Bow Skills" + ], + "g": 105, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29089 + ], + "in": [] + }, + "9535": { + "id": 9535, + "icon": "Art/2DArt/SkillIcons/passives/masterfletcher.png", + "ks": false, + "not": true, + "dn": "Master Fletcher", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "24% increased Physical Damage with Bows", + "10% chance to Poison on Hit with Attacks", + "24% increased Damage Over Time with Bow Skills" + ], + "g": 105, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45360 + ], + "in": [] + }, + "45360": { + "id": 45360, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Chance to Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "12% increased Physical Damage with Bows", + "10% chance to Poison on Hit with Attacks", + "12% increased Damage Over Time with Bow Skills" + ], + "g": 105, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46344 + ], + "in": [ + 45360 + ] + }, + "54016": { + "id": 54016, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + "ks": false, + "not": false, + "dn": "Bow Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 105, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "46344": { + "id": 46344, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "3% increased Movement Speed", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 105, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5408 + ], + "in": [ + 46344, + 46344 + ] + }, + "29089": { + "id": 29089, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "3% increased Movement Speed", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 105, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46344 + ], + "in": [ + 29089 + ] + }, + "31462": { + "id": 31462, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage" + ], + "g": 106, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29061 + ], + "in": [ + 31462 + ] + }, + "25597": { + "id": 25597, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage" + ], + "g": 106, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31462 + ], + "in": [ + 25597 + ] + }, + "14730": { + "id": 14730, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage" + ], + "g": 106, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12439 + ], + "in": [ + 14730 + ] + }, + "12439": { + "id": 12439, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage" + ], + "g": 106, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18135 + ], + "in": [ + 12439 + ] + }, + "52407": { + "id": 52407, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Lightning Damage" + ], + "g": 106, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54645 + ], + "in": [ + 52407 + ] + }, + "54645": { + "id": 54645, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Lightning Damage" + ], + "g": 106, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45378 + ], + "in": [ + 54645 + ] + }, + "18135": { + "id": 18135, + "icon": "Art/2DArt/SkillIcons/passives/starwalker.png", + "ks": false, + "not": true, + "dn": "Celestial Judgement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Elemental Damage", + "Damage Penetrates 5% Fire Resistance", + "Damage Penetrates 5% Cold Resistance", + "Damage Penetrates 5% Lightning Resistance" + ], + "g": 106, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25597 + ], + "in": [ + 18135, + 18135, + 18135 + ] + }, + "29061": { + "id": 29061, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 106, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52407, + 29199 + ], + "in": [ + 29061, + 29061, + 29061 + ] + }, + "45378": { + "id": 45378, + "icon": "Art/2DArt/SkillIcons/passives/CelestialPunishment.png", + "ks": false, + "not": true, + "dn": "Celestial Punishment", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "25% increased Damage with Hits against Frozen, Shocked or Ignited Enemies", + "30% increased Burning Damage", + "5% chance to Freeze, Shock and Ignite", + "15% increased Effect of non-Damaging Ailments on Enemies" + ], + "g": 106, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55993, + 14730 + ], + "in": [ + 45378, + 45378 + ] + }, + "63824": { + "id": 63824, + "icon": "Art/2DArt/SkillIcons/passives/ElementalMastery2.png", + "ks": false, + "not": false, + "dn": "Elemental Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 106, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "22313": { + "id": 22313, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage" + ], + "g": 106, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18135, + 29061 + ], + "in": [] + }, + "41518": { + "id": 41518, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 107, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 3656 + ], + "in": [ + 41518 + ] + }, + "10904": { + "id": 10904, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life and Elemental Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions have +5% to all Elemental Resistances" + ], + "g": 108, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36915, + 42668 + ], + "in": [ + 10904 + ] + }, + "55563": { + "id": 55563, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions Regenerate 0.5% Life per second" + ], + "g": 108, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55563, + 55563 + ] + }, + "36915": { + "id": 36915, + "icon": "Art/2DArt/SkillIcons/passives/graveexpectations.png", + "ks": false, + "not": true, + "dn": "Sacrifice", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "0.5% of Life Regenerated per second", + "Minions Regenerate 1% Life per second", + "Minions have +10% to all Elemental Resistances" + ], + "g": 108, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55563 + ], + "in": [ + 36915 + ] + }, + "34880": { + "id": 34880, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions Regenerate 1.5% Life per second" + ], + "g": 108, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55563, + 6764, + 10904 + ], + "in": [] + }, + "2320": { + "id": 2320, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + "ks": false, + "not": false, + "dn": "Minion and Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 108, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6797": { + "id": 6797, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Projectile Damage" + ], + "g": 109, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6797, + 6797 + ] + }, + "32763": { + "id": 32763, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 109, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23334 + ], + "in": [] + }, + "23334": { + "id": 23334, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Projectile Damage" + ], + "g": 109, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6797 + ], + "in": [ + 23334 + ] + }, + "60737": { + "id": 60737, + "icon": "Art/2DArt/SkillIcons/passives/swashbuckler.png", + "ks": false, + "not": true, + "dn": "Sleight of Hand", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with One Handed Melee Weapons", + "8% increased Attack Speed with One Handed Melee Weapons", + "20% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 110, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42623 + ], + "in": [ + 60737 + ] + }, + "30205": { + "id": 30205, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Physical Damage" + ], + "g": 110, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33903 + ], + "in": [ + 30205, + 30205 + ] + }, + "42623": { + "id": 42623, + "icon": "Art/2DArt/SkillIcons/passives/onehandspeed.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with One Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 110, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54338, + 30338 + ], + "in": [ + 42623 + ] + }, + "58069": { + "id": 58069, + "icon": "Art/2DArt/SkillIcons/passives/onehandspeed.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with One Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 110, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30205, + 60737 + ], + "in": [ + 58069 + ] + }, + "46289": { + "id": 46289, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage over Time" + ], + "g": 110, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58069 + ], + "in": [ + 46289, + 46289 + ] + }, + "30338": { + "id": 30338, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage over Time" + ], + "g": 110, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51212, + 46408 + ], + "in": [ + 30338 + ] + }, + "51212": { + "id": 51212, + "icon": "Art/2DArt/SkillIcons/passives/Entropy.png", + "ks": false, + "not": true, + "dn": "Entropy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "27% increased Damage over Time", + "5% increased Skill Effect Duration" + ], + "g": 110, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46289 + ], + "in": [ + 51212 + ] + }, + "54338": { + "id": 54338, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Physical Damage" + ], + "g": 110, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46408 + ], + "in": [ + 54338, + 54338 + ] + }, + "33903": { + "id": 33903, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png", + "ks": false, + "not": true, + "dn": "Will of Blades", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Global Physical Damage", + "20% increased Critical Strike Chance" + ], + "g": 110, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54338 + ], + "in": [ + 33903 + ] + }, + "65053": { + "id": 65053, + "icon": "Art/2DArt/SkillIcons/passives/minddrinker.png", + "ks": false, + "not": true, + "dn": "Essence Sap", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Attack Damage Leeched as Mana", + "+5% of maximum Mana per second to maximum Mana Leech rate", + "+2 Mana gained for each Enemy hit by your Attacks", + "20% increased Mana Leeched per second" + ], + "g": 111, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 65053 + ] + }, + "51420": { + "id": 51420, + "icon": "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + "ks": false, + "not": false, + "dn": "Mana Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Mana", + "10% increased Mana Leeched per second" + ], + "g": 111, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49481, + 12412 + ], + "in": [] + }, + "49481": { + "id": 49481, + "icon": "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + "ks": false, + "not": false, + "dn": "Mana Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Attack Damage Leeched as Mana", + "10% increased Mana Leeched per second" + ], + "g": 111, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65053 + ], + "in": [ + 49481 + ] + }, + "22356": { + "id": 22356, + "icon": "Art/2DArt/SkillIcons/passives/lifeleech.png", + "ks": false, + "not": true, + "dn": "Hematophagy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "1% of Physical Attack Damage Leeched as Life", + "+3% of maximum Life per second to maximum Life Leech rate", + "20% increased Life Leeched per second", + "20% increased Damage while Leeching" + ], + "g": 112, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 22356, + 22356 + ] + }, + "4378": { + "id": 4378, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Physical Attack Damage Leeched as Life", + "10% increased Life Leeched per second" + ], + "g": 112, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29547, + 22356 + ], + "in": [] + }, + "29547": { + "id": 29547, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Physical Attack Damage Leeched as Life", + "10% increased Life Leeched per second" + ], + "g": 112, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 29547, + 29547 + ] + }, + "29019": { + "id": 29019, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 112, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "37800": { + "id": 37800, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Physical Attack Damage Leeched as Life" + ], + "g": 112, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35507, + 29547 + ], + "in": [ + 37800 + ] + }, + "35507": { + "id": 35507, + "icon": "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + "ks": false, + "not": false, + "dn": "Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.6% of Physical Attack Damage Leeched as Life", + "+3% of maximum Life per second to maximum Life Leech rate" + ], + "g": 112, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22356 + ], + "in": [ + 35507 + ] + }, + "5262": { + "id": 5262, + "icon": "Art/2DArt/SkillIcons/passives/onehandaccuracy.png", + "ks": false, + "not": false, + "dn": "One Handed Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Accuracy Rating with One Handed Melee Weapons" + ], + "g": 113, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5950 + ], + "in": [ + 5262 + ] + }, + "24691": { + "id": 24691, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed1h.png", + "ks": false, + "not": false, + "dn": "One Handed Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with One Handed Melee Weapons" + ], + "g": 113, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49270 + ], + "in": [ + 24691 + ] + }, + "5950": { + "id": 5950, + "icon": "Art/2DArt/SkillIcons/passives/onehanddamage.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with One Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 113, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10829 + ], + "in": [ + 5950, + 5950 + ] + }, + "46292": { + "id": 46292, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed1h.png", + "ks": false, + "not": false, + "dn": "One Handed Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with One Handed Melee Weapons" + ], + "g": 113, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5950, + 24691 + ], + "in": [] + }, + "16354": { + "id": 16354, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png", + "ks": false, + "not": false, + "dn": "One Hand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 113, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "49270": { + "id": 49270, + "icon": "Art/2DArt/SkillIcons/passives/StudiousCombatant.png", + "ks": false, + "not": true, + "dn": "Studious Combatant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Physical Damage with One Handed Melee Weapons", + "4% increased Attack Speed with One Handed Melee Weapons", + "10% increased Accuracy Rating with One Handed Melee Weapons", + "10% increased Critical Strike Chance with One Handed Melee Weapons", + "16% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 113, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5262 + ], + "in": [ + 49270 + ] + }, + "59606": { + "id": 59606, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 114, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 8938, + 39718, + 60180, + 52714, + 1461 + ], + "in": [ + 59606 + ] + }, + "2094": { + "id": 2094, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Evasion Rating", + "5% increased maximum Life" + ], + "g": 115, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60803, + 720 + ], + "in": [ + 2094 + ] + }, + "7997": { + "id": 7997, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + "ks": false, + "not": false, + "dn": "Duel Wield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 116, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6": { + "id": 6, + "icon": "Art/2DArt/SkillIcons/passives/scissorblades.png", + "ks": false, + "not": true, + "dn": "Twin Terrors", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "75% increased Weapon Critical Strike Chance while Dual Wielding" + ], + "g": 116, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6 + ] + }, + "5622": { + "id": 5622, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Weapon Critical Strike Chance while Dual Wielding" + ], + "g": 116, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25209, + 3469 + ], + "in": [] + }, + "25209": { + "id": 25209, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + "ks": false, + "not": false, + "dn": "Dual Wield Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Weapon Critical Strike Chance while Dual Wielding" + ], + "g": 116, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6 + ], + "in": [ + 25209 + ] + }, + "51856": { + "id": 51856, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage" + ], + "g": 117, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59718, + 48513 + ], + "in": [ + 51856 + ] + }, + "39211": { + "id": 39211, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Melee Physical Damage" + ], + "g": 117, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39211, + 39211 + ] + }, + "5612": { + "id": 5612, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage" + ], + "g": 117, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39211, + 35568 + ], + "in": [ + 5612 + ] + }, + "48513": { + "id": 48513, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Melee Physical Damage" + ], + "g": 117, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39211 + ], + "in": [ + 48513 + ] + }, + "8419": { + "id": 8419, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png", + "ks": false, + "not": true, + "dn": "Painforged", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "reminderText": [ + "(Attacks that Trigger when you are Hit are Counterattacks)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+8% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + "40% increased Damage if you've taken no Damage from Hits Recently", + "Cannot be Stunned by Hits you Block", + "Your Counterattacks deal Double Damage" + ], + "g": 118, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24538, + 37623 + ], + "in": [ + 8419 + ] + }, + "48760": { + "id": 48760, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + "ks": false, + "not": false, + "dn": "One Handed Speed, Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "5% increased Attack Speed with One Handed Weapons" + ], + "g": 118, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15616 + ], + "in": [ + 48760 + ] + }, + "2598": { + "id": 2598, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png", + "ks": false, + "not": true, + "dn": "Versatile Combatant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Chance to Block Spell Damage is equal to Chance to Block Attack Damage\nMaximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage" + ], + "g": 118, + "o": 4, + "oidx": 29, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 2598 + ] + }, + "37623": { + "id": 37623, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + "ks": false, + "not": false, + "dn": "One Handed Speed, Block Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "5% increased Attack Speed with One Handed Weapons" + ], + "g": 118, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63490 + ], + "in": [ + 37623 + ] + }, + "15616": { + "id": 15616, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png", + "ks": false, + "not": true, + "dn": "Blood in the Eyes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "reminderText": [ + "(Maimed enemies have 30% reduced Movement Speed)", + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)", + "(Blinded enemies have their Chance to Hit halved)" + ], + "spc": [], + "sd": [ + "Attacks have 25% chance to cause Bleeding", + "Attacks Maim on Hit against Bleeding Enemies", + "10% chance to Blind with Hits against Bleeding Enemies", + "Enemies Maimed by you take 10% increased Physical Damage" + ], + "g": 118, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33179 + ], + "in": [ + 15616 + ] + }, + "1675": { + "id": 1675, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + "ks": false, + "not": false, + "dn": "One Handed Speed, Block Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "5% increased Attack Speed with One Handed Weapons" + ], + "g": 118, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8419 + ], + "in": [ + 1675 + ] + }, + "52575": { + "id": 52575, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png", + "ks": false, + "not": true, + "dn": "Outmatch and Outlast", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "25% chance to gain a Frenzy Charge on Kill with Main Hand", + "25% chance to gain an Endurance Charge on Kill with Off Hand", + "10% more Physical Damage while at maximum Frenzy Charges", + "10% reduced Physical Damage taken while at maximum Endurance Charges" + ], + "g": 118, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 52575 + ] + }, + "63490": { + "id": 63490, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png", + "ks": false, + "not": true, + "dn": "Violent Retaliation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+4% to maximum Chance to Block Attack Damage", + "8% increased Physical Damage for each time you've Blocked in the past 10 seconds", + "80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds", + "+1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds" + ], + "g": 118, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63490 + ] + }, + "33179": { + "id": 33179, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + "ks": false, + "not": false, + "dn": "One Handed Speed, Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "5% increased Attack Speed with One Handed Weapons" + ], + "g": 118, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27864 + ], + "in": [ + 33179 + ] + }, + "3651": { + "id": 3651, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + "ks": false, + "not": false, + "dn": "One Handed Speed and Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Attack Speed with One Handed Weapons", + "15% increased Damage with One Handed Weapons" + ], + "g": 118, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52575 + ], + "in": [ + 3651 + ] + }, + "24538": { + "id": 24538, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + "ks": false, + "not": false, + "dn": "One Handed Speed, Block Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "5% increased Attack Speed with One Handed Weapons" + ], + "g": 118, + "o": 4, + "oidx": 31, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2598 + ], + "in": [ + 24538 + ] + }, + "27864": { + "id": 27864, + "icon": "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png", + "ks": false, + "not": true, + "dn": "Gratuitous Violence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": false, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 25% chance to cause Bleeding", + "30% increased Damage with Hits and Ailments against Bleeding Enemies", + "Bleeding Enemies you Kill Explode, dealing 10% of\ntheir Maximum Life as Physical Damage", + "25% more Damage with Bleeding" + ], + "g": 118, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27864 + ] + }, + "32730": { + "id": 32730, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Gladiator", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Gladiator", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 118, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3651, + 1675, + 48760 + ], + "in": [ + 32730 + ] + }, + "37671": { + "id": 37671, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 119, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 32710, + 61320, + 21301, + 31703 + ], + "in": [ + 37671, + 37671, + 37671, + 37671 + ] + }, + "9695": { + "id": 9695, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour", + "+5% to all Elemental Resistances" + ], + "g": 120, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9695, + 9695 + ] + }, + "7162": { + "id": 7162, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 120, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9695, + 46636 + ], + "in": [ + 7162 + ] + }, + "42009": { + "id": 42009, + "icon": "Art/2DArt/SkillIcons/passives/armourmastery.png", + "ks": false, + "not": true, + "dn": "Soul of Steel", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Armour", + "+5% to all Elemental Resistances", + "4% additional Physical Damage Reduction" + ], + "g": 120, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9695 + ], + "in": [ + 42009 + ] + }, + "3951": { + "id": 3951, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + "ks": false, + "not": false, + "dn": "Armour Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 120, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "46636": { + "id": 46636, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 120, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42009 + ], + "in": [ + 46636 + ] + }, + "50338": { + "id": 50338, + "icon": "Art/2DArt/SkillIcons/passives/perfectaim.png", + "ks": false, + "not": true, + "dn": "Ballistic Mastery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Projectile Speed", + "15% increased Projectile Damage", + "+20 to Dexterity" + ], + "g": 121, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 38662, + 42964 + ], + "in": [ + 50338, + 50338, + 50338, + 50338 + ] + }, + "42760": { + "id": 42760, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 122, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 5456, + 55332, + 60398 + ], + "in": [ + 42760, + 42760, + 42760 + ] + }, + "24865": { + "id": 24865, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 123, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 6741, + 34031 + ], + "in": [ + 24865, + 24865 + ] + }, + "20551": { + "id": 20551, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 124, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58449 + ], + "in": [ + 20551 + ] + }, + "61198": { + "id": 61198, + "icon": "Art/2DArt/SkillIcons/passives/heartofthegladiator.png", + "ks": false, + "not": true, + "dn": "Heart of the Warrior", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to maximum Life", + "10% increased maximum Life", + "+10 to Strength" + ], + "g": 124, + "o": 2, + "oidx": 3, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 20551 + ], + "in": [ + 61198 + ] + }, + "5152": { + "id": 5152, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 124, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61198 + ], + "in": [ + 5152 + ] + }, + "39768": { + "id": 39768, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "4% reduced Mana Cost of Skills" + ], + "g": 124, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12795 + ], + "in": [ + 39768 + ] + }, + "32739": { + "id": 32739, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "4% reduced Mana Cost of Skills" + ], + "g": 124, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24383 + ], + "in": [ + 32739 + ] + }, + "12795": { + "id": 12795, + "icon": "Art/2DArt/SkillIcons/passives/precision.png", + "ks": false, + "not": true, + "dn": "Versatility", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed", + "20% increased Global Accuracy Rating", + "4% reduced Mana Cost of Skills", + "+20 to Dexterity and Intelligence" + ], + "g": 124, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 20, + "ia": 20, + "out": [ + 32739 + ], + "in": [ + 12795 + ] + }, + "94": { + "id": 94, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 125, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54142 + ], + "in": [ + 94 + ] + }, + "56149": { + "id": 56149, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Attack Physical Damage" + ], + "g": 125, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29870 + ], + "in": [ + 56149 + ] + }, + "720": { + "id": 720, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Attack Physical Damage" + ], + "g": 125, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56149 + ], + "in": [ + 720 + ] + }, + "6542": { + "id": 6542, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 125, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 94 + ], + "in": [ + 6542 + ] + }, + "60803": { + "id": 60803, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 125, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6542 + ], + "in": [ + 60803 + ] + }, + "29870": { + "id": 29870, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 125, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54142 + ], + "in": [ + 29870 + ] + }, + "22972": { + "id": 22972, + "icon": "Art/2DArt/SkillIcons/passives/wandslingersprowess.png", + "ks": false, + "not": true, + "dn": "Wandslinger", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Attack Speed with Wands", + "16% increased Damage with Wands", + "16% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 126, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 22972 + ] + }, + "50472": { + "id": 50472, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Accuracy Rating with Wands", + "10% increased Damage with Wands", + "10% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 126, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63067, + 11551 + ], + "in": [] + }, + "63067": { + "id": 63067, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Wands", + "15% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 126, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22972 + ], + "in": [ + 63067 + ] + }, + "30842": { + "id": 30842, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 127, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43412 + ], + "in": [ + 30842 + ] + }, + "34666": { + "id": 34666, + "icon": "Art/2DArt/SkillIcons/passives/executioner.png", + "ks": false, + "not": true, + "dn": "Destroyer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Physical Damage with Two Handed Melee Weapons", + "5% increased Attack Speed with Two Handed Melee Weapons", + "20% increased Accuracy Rating with Two Handed Melee Weapons", + "25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 127, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36972 + ], + "in": [ + 34666 + ] + }, + "36972": { + "id": 36972, + "icon": "Art/2DArt/SkillIcons/passives/2handedspeed.png", + "ks": false, + "not": false, + "dn": "Two Handed Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Two Handed Melee Weapons" + ], + "g": 127, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43303 + ], + "in": [ + 36972 + ] + }, + "43412": { + "id": 43412, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 127, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34666, + 34009 + ], + "in": [ + 43412 + ] + }, + "43303": { + "id": 43303, + "icon": "Art/2DArt/SkillIcons/passives/2handeddamage.png", + "ks": false, + "not": false, + "dn": "Two Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Two Handed Melee Weapons", + "12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon" + ], + "g": 127, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30842, + 34031 + ], + "in": [ + 43303 + ] + }, + "60592": { + "id": 60592, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Accuracy Rating", + "10% increased Critical Strike Chance" + ], + "g": 128, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 60592, + 60592 + ] + }, + "47484": { + "id": 47484, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": true, + "dn": "Depth Perception", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Global Accuracy Rating", + "+20 to Dexterity", + "20% increased Critical Strike Chance" + ], + "g": 128, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [], + "in": [ + 47484 + ] + }, + "35851": { + "id": 35851, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Accuracy Rating", + "10% increased Critical Strike Chance" + ], + "g": 128, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60592, + 47484 + ], + "in": [] + }, + "22285": { + "id": 22285, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 129, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 55649, + 53793, + 38508, + 62363 + ], + "in": [ + 22285 + ] + }, + "21693": { + "id": 21693, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage" + ], + "g": 130, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5613 + ], + "in": [ + 21693 + ] + }, + "53013": { + "id": 53013, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + "ks": false, + "not": true, + "dn": "Atrophy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Chaos Damage", + "4% increased Cast Speed with Chaos Skills", + "+8% to Chaos Resistance" + ], + "g": 130, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 53013 + ] + }, + "16874": { + "id": 16874, + "icon": "Art/2DArt/SkillIcons/passives/MasteryPhysicalAndChaos.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 130, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "34763": { + "id": 34763, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 130, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42907 + ], + "in": [ + 34763 + ] + }, + "30110": { + "id": 30110, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 130, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53013 + ], + "in": [ + 30110 + ] + }, + "42907": { + "id": 42907, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 130, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30110 + ], + "in": [ + 42907 + ] + }, + "5613": { + "id": 5613, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage" + ], + "g": 130, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38539 + ], + "in": [ + 5613 + ] + }, + "38539": { + "id": 38539, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage" + ], + "g": 130, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54713 + ], + "in": [ + 38539 + ] + }, + "54713": { + "id": 54713, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png", + "ks": false, + "not": true, + "dn": "Force Shaper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Global Physical Damage", + "Gain 5% of Physical Damage as Extra Chaos Damage" + ], + "g": 130, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 54713 + ] + }, + "23616": { + "id": 23616, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Physical Damage", + "10% increased Chaos Damage" + ], + "g": 130, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34763, + 21693 + ], + "in": [ + 23616 + ] + }, + "63843": { + "id": 63843, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 131, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [], + "in": [ + 63843, + 63843, + 63843, + 63843, + 63843 + ] + }, + "29294": { + "id": 29294, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Berserker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 132, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50024, + 48904, + 63583, + 8592 + ], + "in": [ + 29294 + ] + }, + "42861": { + "id": 42861, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "6% increased Attack Speed" + ], + "g": 132, + "o": 4, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24528 + ], + "in": [ + 42861 + ] + }, + "50024": { + "id": 50024, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Warcry Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "20% increased Warcry Duration" + ], + "g": 132, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32251 + ], + "in": [ + 50024 + ] + }, + "48904": { + "id": 48904, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Life Leeched per Second", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "10% increased Life Leeched per second" + ], + "g": 132, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9271 + ], + "in": [ + 48904 + ] + }, + "24528": { + "id": 24528, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png", + "ks": false, + "not": true, + "dn": "Crave the Slaughter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "reminderText": [ + "(Maximum Rage is 50)", + "(You lose 1 Rage every 0.5 seconds if you have not been Hit or gained Rage Recently)", + "(You gain the following effects for having Rage:", + "1% increased Attack Damage per 1 Rage", + "1% increased Attack Speed per 2 Rage", + "1% increased Movement Speed per 5 Rage", + "Lose 0.1% of your maximum Life per second per 1 Rage)" + ], + "spc": [], + "sd": [ + "Gain 1 Rage when you Kill an Enemy", + "10% chance to gain 1 Rage when you Hit a Rare or Unique Enemy" + ], + "g": 132, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24528, + 24528 + ] + }, + "9271": { + "id": 9271, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png", + "ks": false, + "not": true, + "dn": "Pain Reaver", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "1% of Attack Damage Leeched as Life", + "1% of Attack Damage Leeched as Mana", + "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently" + ], + "g": 132, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5865 + ], + "in": [ + 9271 + ] + }, + "8592": { + "id": 8592, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "6% increased Attack Speed" + ], + "g": 132, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59920 + ], + "in": [ + 8592 + ] + }, + "59920": { + "id": 59920, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png", + "ks": false, + "not": true, + "dn": "Aspect of Carnage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Damage taken", + "40% more Damage" + ], + "g": 132, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 59920 + ] + }, + "5865": { + "id": 5865, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Life Leeched per Second", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "10% increased Life Leeched per second" + ], + "g": 132, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38999 + ], + "in": [ + 5865 + ] + }, + "63583": { + "id": 63583, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "12% increased Attack Physical Damage", + "6% increased Attack Speed" + ], + "g": 132, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24528 + ], + "in": [ + 63583 + ] + }, + "32251": { + "id": 32251, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png", + "ks": false, + "not": true, + "dn": "War Bringer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "reminderText": [ + "(Maximum Rage is 50)", + "(You lose 1 Rage every 0.5 seconds if you have not been Hit or gained Rage Recently)", + "(You gain the following effects for having Rage:", + "1% increased Attack Damage per 1 Rage", + "1% increased Attack Speed per 2 Rage", + "1% increased Movement Speed per 5 Rage", + "Lose 0.1% of your maximum Life per second per 1 Rage)" + ], + "spc": [], + "sd": [ + "Recover 25% of Life and Mana when you use a Warcry", + "100% increased Warcry Duration", + "100% increased Warcry Cooldown Recovery Speed", + "Gain 5 Rage when you use a Warcry" + ], + "g": 132, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 32251 + ] + }, + "57560": { + "id": 57560, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png", + "ks": false, + "not": true, + "dn": "Rite of Ruin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "reminderText": [ + "(You gain the following effects for having Rage:", + "1% increased Attack Damage per 1 Rage", + "1% increased Attack Speed per 2 Rage", + "1% increased Movement Speed per 5 Rage", + "Lose 0.1% of your maximum Life per second per 1 Rage)" + ], + "spc": [], + "sd": [ + "Effects granted for having Rage are Doubled", + "Cannot be Stunned while you have at least 25 Rage" + ], + "g": 132, + "o": 4, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42861 + ], + "in": [] + }, + "38999": { + "id": 38999, + "icon": "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png", + "ks": false, + "not": true, + "dn": "Cloaked in Savagery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Berserker", + "isAscendancyStart": false, + "reminderText": [ + "(A Hit that removes at least 15% of Maximum Life is a Savage Hit)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "100% of Damage Leeched as Life if you've taken a Savage Hit Recently", + "50% increased Damage if you've taken a Savage Hit Recently", + "25% increased Attack Speed if you've taken a Savage Hit Recently" + ], + "g": 132, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38999 + ] + }, + "53456": { + "id": 53456, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 133, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 18182, + 21170 + ], + "in": [ + 53456, + 53456, + 53456 + ] + }, + "15868": { + "id": 15868, + "icon": "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Armour", + "4% increased maximum Life" + ], + "g": 134, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22627, + 36047 + ], + "in": [ + 15868 + ] + }, + "36047": { + "id": 36047, + "icon": "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Armour", + "4% increased maximum Life" + ], + "g": 134, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63048 + ], + "in": [ + 36047 + ] + }, + "63048": { + "id": 63048, + "icon": "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Armour", + "4% increased maximum Life" + ], + "g": 134, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50264, + 24383 + ], + "in": [ + 63048 + ] + }, + "50264": { + "id": 50264, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.8% of Life Regenerated per second" + ], + "g": 134, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15868 + ], + "in": [ + 50264 + ] + }, + "63723": { + "id": 63723, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 135, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 5233 + ], + "in": [ + 63723, + 63723, + 63723, + 63723 + ] + }, + "59036": { + "id": 59036, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTotem.png", + "ks": false, + "not": false, + "dn": "Totem Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 136, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "45366": { + "id": 45366, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20% to Critical Strike Multiplier with Totem Skills" + ], + "g": 136, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20142 + ], + "in": [ + 45366 + ] + }, + "17569": { + "id": 17569, + "icon": "Art/2DArt/SkillIcons/passives/totemrange.png", + "ks": false, + "not": false, + "dn": "Totem Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance with Totem Skills" + ], + "g": 136, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44562 + ], + "in": [ + 17569 + ] + }, + "44562": { + "id": 44562, + "icon": "Art/2DArt/SkillIcons/passives/totemrange.png", + "ks": false, + "not": true, + "dn": "Shaman's Dominion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "100% increased Global Critical Strike Chance if you've Summoned a Totem Recently", + "+20% to Critical Strike Multiplier with Totem Skills" + ], + "g": 136, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45366 + ], + "in": [ + 44562 + ] + }, + "33779": { + "id": 33779, + "icon": "Art/2DArt/SkillIcons/passives/totemrange.png", + "ks": false, + "not": false, + "dn": "Totem Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Damage", + "15% increased Critical Strike Chance with Totem Skills" + ], + "g": 136, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17569, + 14021 + ], + "in": [ + 33779 + ] + }, + "20142": { + "id": 20142, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20% to Critical Strike Multiplier with Totem Skills" + ], + "g": 136, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33779 + ], + "in": [ + 20142 + ] + }, + "55380": { + "id": 55380, + "icon": "Art/2DArt/SkillIcons/passives/cleverconstruction.png", + "ks": false, + "not": true, + "dn": "Clever Construction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Damage", + "20% increased Mine Damage", + "Traps cannot be Damaged for 5 seconds after being Thrown", + "Mines cannot be Damaged for 5 seconds after being Placed" + ], + "g": 137, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8027 + ], + "in": [ + 55380 + ] + }, + "45827": { + "id": 45827, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Trap Damage", + "16% increased Mine Damage" + ], + "g": 137, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12824 + ], + "in": [ + 45827 + ] + }, + "30319": { + "id": 30319, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage and Laying Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "4% increased Trap Throwing Speed", + "4% increased Mine Laying Speed" + ], + "g": 137, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32432 + ], + "in": [ + 30319 + ] + }, + "33777": { + "id": 33777, + "icon": "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + "ks": false, + "not": true, + "dn": "Devastating Devices", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "50% increased Critical Strike Chance with Traps", + "50% increased Critical Strike Chance with Mines", + "40% increased Trap Trigger Area of Effect", + "40% increased Mine Detonation Area of Effect" + ], + "g": 137, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1655 + ], + "in": [ + 33777 + ] + }, + "32432": { + "id": 32432, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage and Laying Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "10% increased Mine Damage", + "4% increased Trap Throwing Speed", + "4% increased Mine Laying Speed" + ], + "g": 137, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55380 + ], + "in": [ + 32432 + ] + }, + "28753": { + "id": 28753, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Trap Damage", + "14% increased Mine Damage" + ], + "g": 137, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30319, + 45827, + 56295 + ], + "in": [] + }, + "12824": { + "id": 12824, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Trap Damage", + "16% increased Mine Damage" + ], + "g": 137, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 12824, + 12824 + ] + }, + "21297": { + "id": 21297, + "icon": "Art/2DArt/SkillIcons/passives/highexplosives.png", + "ks": false, + "not": true, + "dn": "High Explosives", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Trigger Area of Effect", + "20% increased Mine Detonation Area of Effect", + "Trap Damage Penetrates 10% Elemental Resistances", + "Mine Damage Penetrates 10% Elemental Resistances" + ], + "g": 137, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1655, + 12824 + ], + "in": [] + }, + "8027": { + "id": 8027, + "icon": "Art/2DArt/SkillIcons/passives/trapsradius.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Traps", + "20% increased Critical Strike Chance with Mines" + ], + "g": 137, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33777 + ], + "in": [ + 8027 + ] + }, + "1655": { + "id": 1655, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier with Traps", + "+15% to Critical Strike Multiplier with Mines" + ], + "g": 137, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 1655, + 1655 + ] + }, + "65225": { + "id": 65225, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + "ks": false, + "not": false, + "dn": "Trap Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 137, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "3656": { + "id": 3656, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 138, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 58244, + 46896, + 27962 + ], + "in": [ + 3656, + 3656, + 3656 + ] + }, + "63425": { + "id": 63425, + "icon": "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png", + "ks": true, + "not": false, + "dn": "Zealot's Oath", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Tear my flesh and splinter my bones. You will never break my spirit." + ], + "spc": [], + "sd": [ + "Life Regeneration is applied to Energy Shield instead" + ], + "g": 139, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63425 + ] + }, + "65159": { + "id": 65159, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Spells Cast by Totems have 5% increased Cast Speed", + "Attacks used by Totems have 8% increased Attack Speed" + ], + "g": 140, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31520 + ], + "in": [ + 65159 + ] + }, + "63635": { + "id": 63635, + "icon": "Art/2DArt/SkillIcons/passives/totemicmastery.png", + "ks": false, + "not": true, + "dn": "Totemic Mastery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Totem Damage", + "16% increased Totem Life", + "16% increased Totem Duration", + "16% increased Totem Placement speed" + ], + "g": 140, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35910 + ], + "in": [ + 63635 + ] + }, + "35910": { + "id": 35910, + "icon": "Art/2DArt/SkillIcons/passives/totemlife.png", + "ks": false, + "not": false, + "dn": "Totem Life and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + ], + "g": 140, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11190 + ], + "in": [ + 35910 + ] + }, + "31520": { + "id": 31520, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Damage", + "Spells Cast by Totems have 3% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + ], + "g": 140, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63635 + ], + "in": [ + 31520 + ] + }, + "4300": { + "id": 4300, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Totem Damage" + ], + "g": 140, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65159 + ], + "in": [ + 4300, + 4300 + ] + }, + "11190": { + "id": 11190, + "icon": "Art/2DArt/SkillIcons/passives/totemlife.png", + "ks": false, + "not": false, + "dn": "Totem Life and Physical Damage Reduction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Totem Life", + "Totems have 10% additional Physical Damage Reduction" + ], + "g": 140, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4300 + ], + "in": [ + 11190 + ] + }, + "44354": { + "id": 44354, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTotem.png", + "ks": false, + "not": false, + "dn": "Totem Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 140, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "62697": { + "id": 62697, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage, Shock Duration and Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + ], + "spc": [], + "sd": [ + "8% increased Lightning Damage", + "30% increased Shock Duration on Enemies", + "5% chance to Shock" + ], + "g": 141, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13961 + ], + "in": [ + 62697 + ] + }, + "26557": { + "id": 26557, + "icon": "Art/2DArt/SkillIcons/passives/staticshield.png", + "ks": false, + "not": true, + "dn": "Static Blows", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + ], + "spc": [], + "sd": [ + "12% increased Lightning Damage", + "20% increased Shock Duration on Enemies", + "10% chance to Shock", + "15% increased Effect of Shock" + ], + "g": 141, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 26557 + ] + }, + "13961": { + "id": 13961, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage and Shock Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + ], + "spc": [], + "sd": [ + "8% increased Lightning Damage", + "5% chance to Shock" + ], + "g": 141, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26557 + ], + "in": [ + 13961 + ] + }, + "31931": { + "id": 31931, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 142, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 15064, + 15631 + ], + "in": [ + 31931, + 31931 + ] + }, + "15064": { + "id": 15064, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 142, + "o": 4, + "oidx": 30, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 60472 + ], + "in": [ + 15064, + 15064, + 15064, + 15064 + ] + }, + "30160": { + "id": 30160, + "icon": "Art/2DArt/SkillIcons/passives/fending.png", + "ks": false, + "not": true, + "dn": "Fending", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% chance to Knock Enemies Back on hit", + "25% increased Knockback Distance" + ], + "g": 143, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1252 + ], + "in": [] + }, + "1252": { + "id": 1252, + "icon": "Art/2DArt/SkillIcons/passives/knockback.png", + "ks": false, + "not": false, + "dn": "Knockback Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% chance to Knock Enemies Back on hit" + ], + "g": 143, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65456 + ], + "in": [ + 1252 + ] + }, + "65456": { + "id": 65456, + "icon": "Art/2DArt/SkillIcons/passives/knockback.png", + "ks": false, + "not": false, + "dn": "Knockback Distance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Knockback Distance" + ], + "g": 143, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14056 + ], + "in": [ + 65456 + ] + }, + "6633": { + "id": 6633, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Chance to Bleed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "10% increased Physical Damage with Maces", + "Attacks have 15% chance to cause Bleeding", + "10% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 144, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24772, + 24721 + ], + "in": [] + }, + "58541": { + "id": 58541, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Physical Damage with Maces", + "14% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 144, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26456, + 34400, + 24772 + ], + "in": [] + }, + "24772": { + "id": 24772, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage and Chance to Bleed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "10% increased Physical Damage with Maces", + "Attacks have 10% chance to cause Bleeding", + "10% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 144, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24772, + 24772 + ] + }, + "26456": { + "id": 26456, + "icon": "Art/2DArt/SkillIcons/passives/macedmg.png", + "ks": false, + "not": false, + "dn": "Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Physical Damage with Maces", + "16% increased Life Leeched per second", + "14% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 144, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 26456, + 26456 + ] + }, + "33141": { + "id": 33141, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + "ks": false, + "not": false, + "dn": "Mace Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 144, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "24721": { + "id": 24721, + "icon": "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png", + "ks": false, + "not": true, + "dn": "Bloody Bludgeon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Physical Damage with Maces", + "6% increased Attack Speed with Maces", + "0.4% of Physical Attack Damage Leeched as Life", + "30% increased Damage with Ailments from Attack Skills while wielding a Mace" + ], + "g": 144, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26456 + ], + "in": [ + 24721 + ] + }, + "36221": { + "id": 36221, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 145, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12412 + ], + "in": [ + 36221 + ] + }, + "19858": { + "id": 19858, + "icon": "Art/2DArt/SkillIcons/passives/arcaneefficiency.png", + "ks": false, + "not": true, + "dn": "Herbalism", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life", + "20% increased Life Recovery from Flasks", + "20% increased Flask Recovery rate" + ], + "g": 145, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9206 + ], + "in": [] + }, + "9206": { + "id": 9206, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 145, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36221, + 41866 + ], + "in": [ + 9206 + ] + }, + "10099": { + "id": 10099, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png", + "ks": false, + "not": false, + "dn": "Necromancer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Witch Ascendancy passives)" + ], + "spc": [], + "sd": [ + "20% increased Skill Effect Duration", + "Minions deal 30% increased Damage", + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you", + "Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies" + ], + "g": 146, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10099 + ] + }, + "7618": { + "id": 7618, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png", + "ks": false, + "not": true, + "dn": "Path of the Ranger", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Ranger's starting point" + ], + "g": 147, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45035, + 39821 + ], + "in": [ + 7618 + ] + }, + "38689": { + "id": 38689, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 147, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49532 + ], + "in": [ + 38689 + ] + }, + "42671": { + "id": 42671, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 147, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7618 + ], + "in": [ + 42671 + ] + }, + "49532": { + "id": 49532, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Ranger Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 147, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42671, + 8656, + 34567, + 9327 + ], + "in": [ + 49532 + ] + }, + "31598": { + "id": 31598, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+40 to Dexterity" + ], + "g": 147, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 40, + "ia": 0, + "out": [ + 38689 + ], + "in": [ + 31598 + ] + }, + "40229": { + "id": 40229, + "icon": "Art/2DArt/SkillIcons/passives/WarCryDuration.png", + "ks": false, + "not": false, + "dn": "Warcry Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Warcry Duration" + ], + "g": 148, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63380 + ], + "in": [ + 40229 + ] + }, + "37895": { + "id": 37895, + "icon": "Art/2DArt/SkillIcons/passives/WarCryEffect.png", + "ks": false, + "not": false, + "dn": "Warcry Buff Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Warcry Buff Effect" + ], + "g": 148, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31257 + ], + "in": [ + 37895 + ] + }, + "63380": { + "id": 63380, + "icon": "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + "ks": false, + "not": false, + "dn": "Warcry Cooldown Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Warcry Cooldown Recovery Speed" + ], + "g": 148, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37895, + 50422 + ], + "in": [ + 63380 + ] + }, + "54597": { + "id": 54597, + "icon": "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + "ks": false, + "not": false, + "dn": "Minion and Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 148, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "31257": { + "id": 31257, + "icon": "Art/2DArt/SkillIcons/passives/WordsOfGlory.png", + "ks": false, + "not": true, + "dn": "Words of Glory", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Warcry Duration", + "You and nearby allies have 6% increased Attack, Cast and Movement Speed if you've Warcried Recently", + "Warcries cost no Mana" + ], + "g": 148, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40229 + ], + "in": [ + 31257 + ] + }, + "4502": { + "id": 4502, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 149, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 3656, + 265 + ], + "in": [ + 4502, + 4502, + 4502 + ] + }, + "19711": { + "id": 19711, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 150, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 20010, + 17201, + 54872 + ], + "in": [ + 19711 + ] + }, + "44202": { + "id": 44202, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 151, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 29353, + 23027 + ], + "in": [] + }, + "33479": { + "id": 33479, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 152, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 10490, + 54267, + 7614 + ], + "in": [ + 33479 + ] + }, + "10490": { + "id": 10490, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 152, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 39085, + 47251 + ], + "in": [ + 10490, + 10490, + 10490 + ] + }, + "18103": { + "id": 18103, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 153, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 16544, + 54127 + ], + "in": [] + }, + "11859": { + "id": 11859, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 153, + "o": 2, + "oidx": 11, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 56001 + ], + "in": [ + 11859 + ] + }, + "29933": { + "id": 29933, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 153, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1325 + ], + "in": [ + 29933 + ] + }, + "31471": { + "id": 31471, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 153, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16544 + ], + "in": [ + 31471 + ] + }, + "1325": { + "id": 1325, + "icon": "Art/2DArt/SkillIcons/passives/golemsblood.png", + "ks": false, + "not": true, + "dn": "Golem's Blood", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life", + "1.6% of Life Regenerated per second" + ], + "g": 153, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31471 + ], + "in": [ + 1325 + ] + }, + "54127": { + "id": 54127, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 153, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11859 + ], + "in": [ + 54127 + ] + }, + "34567": { + "id": 34567, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png", + "ks": false, + "not": false, + "dn": "Deadeye", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Ranger Ascendancy passives)" + ], + "spc": [], + "sd": [ + "100% increased Global Accuracy Rating", + "Projectiles Pierce 2 additional Targets", + "Moving while Bleeding doesn't cause you to take extra Damage", + "Projectiles gain Damage as they travel further, dealing up\nto 50% increased Damage with Hits to targets", + "Skills fire an additional Projectile" + ], + "g": 154, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34567 + ] + }, + "43684": { + "id": 43684, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Poison and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 15% chance to cause Bleeding", + "10% chance to Poison on Hit" + ], + "g": 155, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59766 + ], + "in": [ + 43684 + ] + }, + "59180": { + "id": 59180, + "icon": "Art/2DArt/SkillIcons/passives/BloodMastery.png", + "ks": false, + "not": false, + "dn": "Bleeding Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 155, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "14629": { + "id": 14629, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Poison and Bleed Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Bleeding", + "15% increased Chaos Damage with Attack Skills" + ], + "g": 155, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13273, + 11364 + ], + "in": [ + 14629 + ] + }, + "59766": { + "id": 59766, + "icon": "Art/2DArt/SkillIcons/passives/BleedPoison.png", + "ks": false, + "not": true, + "dn": "Dirty Techniques", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Damage with Poison", + "50% increased Damage with Bleeding", + "20% increased Poison Duration", + "20% increased Bleeding Duration", + "25% increased Chaos Damage with Attack Skills" + ], + "g": 155, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 59766, + 59766 + ] + }, + "13273": { + "id": 13273, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Poison and Bleed Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage with Bleeding", + "20% increased Chaos Damage with Attack Skills" + ], + "g": 155, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59766 + ], + "in": [ + 13273 + ] + }, + "11364": { + "id": 11364, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Poison and Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 15% chance to cause Bleeding", + "10% chance to Poison on Hit" + ], + "g": 155, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43684 + ], + "in": [ + 11364 + ] + }, + "61306": { + "id": 61306, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 156, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 60942, + 63139, + 54142 + ], + "in": [ + 61306, + 61306, + 61306 + ] + }, + "27659": { + "id": 27659, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 157, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 37671 + ], + "in": [ + 27659, + 27659 + ] + }, + "14813": { + "id": 14813, + "icon": "Art/2DArt/SkillIcons/passives/Revelry.png", + "ks": false, + "not": true, + "dn": "Revelry", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to maximum Mana", + "15% increased maximum Mana", + "+2 Mana gained for each Enemy hit by your Attacks" + ], + "g": 158, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58545 + ], + "in": [ + 14813 + ] + }, + "4833": { + "id": 4833, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": true, + "dn": "Vigour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Endurance Charges" + ], + "g": 158, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37584 + ], + "in": [ + 4833 + ] + }, + "41706": { + "id": 41706, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Endurance Charge Duration" + ], + "g": 158, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4833 + ], + "in": [ + 41706 + ] + }, + "17383": { + "id": 17383, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 158, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14813 + ], + "in": [ + 17383 + ] + }, + "58545": { + "id": 58545, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 158, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24083 + ], + "in": [ + 58545 + ] + }, + "37584": { + "id": 37584, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Endurance Charge Duration" + ], + "g": 158, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24083 + ], + "in": [ + 37584 + ] + }, + "59728": { + "id": 59728, + "icon": "Art/2DArt/SkillIcons/passives/areaofeffect.png", + "ks": false, + "not": false, + "dn": "Area of Effect Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area Damage" + ], + "g": 159, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61308 + ], + "in": [ + 59728 + ] + }, + "22407": { + "id": 22407, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Wands", + "12% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 160, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32942 + ], + "in": [ + 22407 + ] + }, + "32942": { + "id": 32942, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Wands", + "12% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 160, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41476 + ], + "in": [ + 32942 + ] + }, + "64239": { + "id": 64239, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Wands", + "12% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 160, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22407, + 49605, + 64612 + ], + "in": [] + }, + "41476": { + "id": 41476, + "icon": "Art/2DArt/SkillIcons/passives/elderpower.png", + "ks": false, + "not": true, + "dn": "Elder Power", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Physical Damage with Wands", + "40% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 160, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 41476, + 41476 + ] + }, + "19098": { + "id": 19098, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Gain 10% of Wand Physical Damage as Extra Fire Damage" + ], + "g": 160, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41476 + ], + "in": [ + 19098 + ] + }, + "64612": { + "id": 64612, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Gain 10% of Wand Physical Damage as Extra Cold Damage" + ], + "g": 160, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19098 + ], + "in": [ + 64612 + ] + }, + "59959": { + "id": 59959, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + "ks": false, + "not": false, + "dn": "Wand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 160, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "41534": { + "id": 41534, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 161, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15435 + ], + "in": [ + 41534 + ] + }, + "54877": { + "id": 54877, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png", + "ks": false, + "not": true, + "dn": "Path of the Templar", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Templar's starting point" + ], + "g": 161, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63965, + 20228 + ], + "in": [ + 54877 + ] + }, + "22551": { + "id": 22551, + "icon": "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png", + "ks": false, + "not": false, + "dn": "Strength and Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+20 to Strength and Intelligence" + ], + "g": 161, + "o": 2, + "oidx": 4, + "sa": 20, + "da": 0, + "ia": 20, + "out": [ + 41534 + ], + "in": [ + 22551 + ] + }, + "57429": { + "id": 57429, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 161, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54877 + ], + "in": [ + 57429 + ] + }, + "15435": { + "id": 15435, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Templar Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 161, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57429, + 43962, + 42144, + 30919 + ], + "in": [ + 15435 + ] + }, + "57736": { + "id": 57736, + "icon": "Art/2DArt/SkillIcons/passives/auraeffect.png", + "ks": false, + "not": false, + "dn": "Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 162, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7594 + ], + "in": [ + 57736 + ] + }, + "65097": { + "id": 65097, + "icon": "Art/2DArt/SkillIcons/passives/leadership.png", + "ks": false, + "not": true, + "dn": "Leadership", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "50% increased Area of Effect of Aura Skills", + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 162, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 65097 + ] + }, + "7594": { + "id": 7594, + "icon": "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + "ks": false, + "not": false, + "dn": "Reduced Mana Reservation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% reduced Mana Reserved" + ], + "g": 162, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65097 + ], + "in": [ + 7594 + ] + }, + "12809": { + "id": 12809, + "icon": "Art/2DArt/SkillIcons/passives/berserking.png", + "ks": false, + "not": true, + "dn": "Berserking", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Speed" + ], + "g": 163, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27718 + ], + "in": [] + }, + "29292": { + "id": 29292, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 163, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27718, + 46578 + ], + "in": [] + }, + "27718": { + "id": 27718, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 163, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27718, + 27718 + ] + }, + "25831": { + "id": 25831, + "icon": "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + "ks": false, + "not": false, + "dn": "Reduced Mana Reservation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% reduced Mana Reserved" + ], + "g": 164, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5935 + ], + "in": [ + 25831 + ] + }, + "21974": { + "id": 21974, + "icon": "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + "ks": false, + "not": false, + "dn": "Reduced Mana Reservation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% reduced Mana Reserved" + ], + "g": 164, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25831 + ], + "in": [ + 21974 + ] + }, + "5935": { + "id": 5935, + "icon": "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + "ks": false, + "not": false, + "dn": "Aura Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Area of Effect of Aura Skills" + ], + "g": 164, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9392 + ], + "in": [ + 5935, + 5935 + ] + }, + "9392": { + "id": 9392, + "icon": "Art/2DArt/SkillIcons/passives/auraeffect.png", + "ks": false, + "not": false, + "dn": "Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 164, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32932 + ], + "in": [ + 9392 + ] + }, + "32932": { + "id": 32932, + "icon": "Art/2DArt/SkillIcons/passives/sovereignty.png", + "ks": false, + "not": true, + "dn": "Sovereignty", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% reduced Mana Reserved", + "10% increased effect of Non-Curse Auras from your Skills" + ], + "g": 164, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21974 + ], + "in": [ + 32932 + ] + }, + "25814": { + "id": 25814, + "icon": "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + "ks": false, + "not": false, + "dn": "Aura Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 164, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "35754": { + "id": 35754, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Ascendant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 165, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22551, + 58029, + 45403, + 31598, + 607, + 193 + ], + "in": [ + 35754 + ] + }, + "7335": { + "id": 7335, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Armour and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Armour", + "0.3% of Life Regenerated per second" + ], + "g": 166, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3167 + ], + "in": [ + 7335 + ] + }, + "6359": { + "id": 6359, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Armour" + ], + "g": 166, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21413 + ], + "in": [ + 6359 + ] + }, + "59290": { + "id": 59290, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + "ks": false, + "not": false, + "dn": "Armour Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 166, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "3167": { + "id": 3167, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second" + ], + "g": 166, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6359 + ], + "in": [ + 3167, + 3167 + ] + }, + "21413": { + "id": 21413, + "icon": "Art/2DArt/SkillIcons/passives/CombatStamina.png", + "ks": false, + "not": true, + "dn": "Combat Stamina", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Armour", + "5% increased maximum Life", + "1% of Life Regenerated per second" + ], + "g": 166, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7335 + ], + "in": [ + 21413 + ] + }, + "59252": { + "id": 59252, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 167, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 59606, + 19210 + ], + "in": [ + 59252, + 59252, + 59252 + ] + }, + "39841": { + "id": 39841, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 168, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 63447, + 36678, + 18663 + ], + "in": [ + 39841, + 39841 + ] + }, + "1403": { + "id": 1403, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + "ks": false, + "not": false, + "dn": "Fire Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 169, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "885": { + "id": 885, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fire Damage" + ], + "g": 169, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40291 + ], + "in": [ + 885, + 885 + ] + }, + "40291": { + "id": 40291, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage and Cast Speed with Fire Skills", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Fire Damage", + "4% increased Cast Speed with Fire Skills" + ], + "g": 169, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24324 + ], + "in": [ + 40291 + ] + }, + "24324": { + "id": 24324, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": true, + "dn": "Explosive Impact", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Fire Damage", + "8% increased Area of Effect" + ], + "g": 169, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24324, + 24324 + ] + }, + "37163": { + "id": 37163, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fire Damage" + ], + "g": 169, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24324, + 885 + ], + "in": [] + }, + "52714": { + "id": 52714, + "icon": "Art/2DArt/SkillIcons/passives/oxblood.png", + "ks": false, + "not": true, + "dn": "Prowess", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Strength" + ], + "g": 170, + "o": 0, + "oidx": 0, + "sa": 30, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 52714 + ] + }, + "64864": { + "id": 64864, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwield.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 171, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27959 + ], + "in": [ + 64864 + ] + }, + "27959": { + "id": 27959, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwield.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 171, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17659 + ], + "in": [ + 27959 + ] + }, + "15331": { + "id": 15331, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + ], + "g": 171, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35368 + ], + "in": [ + 15331 + ] + }, + "35368": { + "id": 35368, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + ], + "g": 171, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25609 + ], + "in": [ + 35368 + ] + }, + "17659": { + "id": 17659, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + ], + "g": 171, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15331 + ], + "in": [ + 17659, + 17659 + ] + }, + "25609": { + "id": 25609, + "icon": "Art/2DArt/SkillIcons/passives/arenalord.png", + "ks": false, + "not": true, + "dn": "Dark Arts", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Speed while Dual Wielding", + "8% increased Cast Speed while Dual Wielding", + "+20 to Dexterity" + ], + "g": 171, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 64864 + ], + "in": [ + 25609 + ] + }, + "9562": { + "id": 9562, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + "ks": false, + "not": false, + "dn": "Duel Wield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 171, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "29353": { + "id": 29353, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 172, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 50422, + 21929, + 35288 + ], + "in": [ + 29353, + 29353 + ] + }, + "4242": { + "id": 4242, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png", + "ks": false, + "not": true, + "dn": "Unstable Infusion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% chance to gain a Power Charge on Critical Strike", + "20% chance to gain a Power Charge on non-Critical Strike" + ], + "g": 173, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55686 + ], + "in": [ + 4242 + ] + }, + "23024": { + "id": 23024, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance, Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Damage over Time", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 23024, + 23024 + ] + }, + "6064": { + "id": 6064, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19083 + ], + "in": [ + 6064 + ] + }, + "12850": { + "id": 12850, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance, Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Power Charge Duration", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4242 + ], + "in": [ + 12850 + ] + }, + "55686": { + "id": 55686, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance, Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Power Charge Duration", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48239 + ], + "in": [ + 55686 + ] + }, + "48239": { + "id": 48239, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png", + "ks": false, + "not": true, + "dn": "Deadly Infusion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+8% to Critical Strike Multiplier per Power Charge", + "+2% Critical Strike Chance while at maximum Power Charges", + "+1 to Maximum Power Charges" + ], + "g": 173, + "o": 4, + "oidx": 21, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 48239 + ] + }, + "9014": { + "id": 9014, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21264 + ], + "in": [ + 9014 + ] + }, + "21264": { + "id": 21264, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + "ks": false, + "not": true, + "dn": "Ambush and Assassinate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "reminderText": [ + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + ], + "spc": [], + "sd": [ + "30% increased Damage with Hits against Enemies that are on Low Life", + "+40% to Critical Strike Multiplier against Enemies that are on Full Life", + "100% more Critical Strike Chance against Enemies that are on Full Life", + "100% more Critical Strike Chance against Enemies that are on Low Life", + "Critical Strikes have Culling Strike" + ], + "g": 173, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21264 + ] + }, + "19083": { + "id": 19083, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png", + "ks": false, + "not": true, + "dn": "Opportunistic", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "20% increased Movement Speed if you've Killed Recently", + "Damage from your Critical Strikes cannot be Reflected", + "100% increased Damage while there is only one nearby Enemy", + "You take no Extra Damage from Critical Strikes while there is only one nearby Enemy" + ], + "g": 173, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 19083 + ] + }, + "19598": { + "id": 19598, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png", + "ks": false, + "not": true, + "dn": "Toxic Delivery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% reduced Damage taken from Damage Over Time", + "Poison you inflict with Critical Strikes deals 30% more Damage", + "Gain 20% of Physical Damage as Extra Chaos Damage against\nPoisoned Enemies", + "Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill" + ], + "g": 173, + "o": 4, + "oidx": 36, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23024 + ], + "in": [] + }, + "33954": { + "id": 33954, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance, Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Damage over Time", + "15% increased Critical Strike Chance" + ], + "g": 173, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1945 + ], + "in": [ + 33954 + ] + }, + "1945": { + "id": 1945, + "icon": "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png", + "ks": false, + "not": true, + "dn": "Noxious Strike", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": false, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Maimed enemies have 30% reduced Movement Speed)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "40% chance to Poison on Hit", + "50% chance for Attacks to Maim on Hit against Poisoned Enemies", + "+0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%", + "5% increased Poison Duration for each Poison you have inflicted Recently" + ], + "g": 173, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23024 + ], + "in": [ + 1945 + ] + }, + "58229": { + "id": 58229, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Assassin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Assassin", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 173, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33954, + 12850, + 9014, + 6064 + ], + "in": [ + 58229 + ] + }, + "17566": { + "id": 17566, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating and Armour", + "+3% to all Elemental Resistances" + ], + "g": 174, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8544 + ], + "in": [ + 17566 + ] + }, + "23066": { + "id": 23066, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": true, + "dn": "Savagery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Frenzy Charges" + ], + "g": 174, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11397 + ], + "in": [ + 23066 + ] + }, + "11397": { + "id": 11397, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Frenzy Charge Duration" + ], + "g": 174, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11397, + 11397 + ] + }, + "49971": { + "id": 49971, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Frenzy Charge Duration" + ], + "g": 174, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23066, + 17201 + ], + "in": [] + }, + "49109": { + "id": 49109, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating and Armour", + "+3% to all Elemental Resistances" + ], + "g": 174, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17201 + ], + "in": [ + 49109 + ] + }, + "21435": { + "id": 21435, + "icon": "Art/2DArt/SkillIcons/passives/newevadepercentage.png", + "ks": false, + "not": true, + "dn": "Cloth and Chain", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Evasion Rating and Armour", + "+12% to all Elemental Resistances" + ], + "g": 174, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49109, + 17566 + ], + "in": [] + }, + "19506": { + "id": 19506, + "icon": "Art/2DArt/SkillIcons/passives/Hunter.png", + "ks": false, + "not": true, + "dn": "Path of the Hunter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to Accuracy Rating", + "12% increased Projectile Damage", + "+20 to Dexterity" + ], + "g": 175, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 57984 + ], + "in": [ + 19506 + ] + }, + "26523": { + "id": 26523, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 176, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 54415, + 32906 + ], + "in": [ + 26523, + 26523, + 26523 + ] + }, + "49900": { + "id": 49900, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 177, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 46277, + 10843 + ], + "in": [ + 49900, + 49900 + ] + }, + "41263": { + "id": 41263, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 178, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 41263 + ] + }, + "51923": { + "id": 51923, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 178, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 48778 + ], + "in": [ + 51923 + ] + }, + "48778": { + "id": 48778, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 178, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 37671, + 41263 + ], + "in": [ + 48778 + ] + }, + "38348": { + "id": 38348, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 179, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 60735, + 63843 + ], + "in": [] + }, + "16079": { + "id": 16079, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Evasion Per Frenzy Charge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Evasion Rating per Frenzy Charge" + ], + "g": 179, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20807 + ], + "in": [ + 16079 + ] + }, + "48614": { + "id": 48614, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": true, + "dn": "Fervour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Frenzy Charges" + ], + "g": 179, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16079 + ], + "in": [ + 48614 + ] + }, + "60735": { + "id": 60735, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 179, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 60735, + 60735 + ] + }, + "14292": { + "id": 14292, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 179, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 20807, + 60735 + ], + "in": [] + }, + "21758": { + "id": 21758, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Frenzy Charge Duration" + ], + "g": 179, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48614, + 63843 + ], + "in": [] + }, + "51782": { + "id": 51782, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Witch Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 180, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62162, + 10099, + 8281, + 12597 + ], + "in": [ + 51782 + ] + }, + "56722": { + "id": 56722, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", + "ks": false, + "not": true, + "dn": "Path of the Witch", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Witch's starting point" + ], + "g": 180, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57264, + 57226 + ], + "in": [ + 56722 + ] + }, + "2521": { + "id": 2521, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 180, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51782 + ], + "in": [ + 2521 + ] + }, + "62162": { + "id": 62162, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 180, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56722 + ], + "in": [ + 62162 + ] + }, + "58029": { + "id": 58029, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+40 to Intelligence" + ], + "g": 180, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 40, + "out": [ + 2521 + ], + "in": [ + 58029 + ] + }, + "48423": { + "id": 48423, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 181, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6204 + ], + "in": [ + 48423, + 48423 + ] + }, + "55906": { + "id": 55906, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.4% of Life Regenerated per second" + ], + "g": 181, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26740, + 6230 + ], + "in": [ + 55906 + ] + }, + "38450": { + "id": 38450, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Area of Effect" + ], + "g": 181, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38450 + ] + }, + "37690": { + "id": 37690, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 181, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48423 + ], + "in": [ + 37690 + ] + }, + "6204": { + "id": 6204, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 181, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63976 + ], + "in": [ + 6204 + ] + }, + "5560": { + "id": 5560, + "icon": "Art/2DArt/SkillIcons/passives/areaofeffect.png", + "ks": false, + "not": false, + "dn": "Area of Effect Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area Damage" + ], + "g": 181, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51291 + ], + "in": [ + 5560 + ] + }, + "51291": { + "id": 51291, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Area of Effect" + ], + "g": 181, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38450 + ], + "in": [ + 51291 + ] + }, + "26740": { + "id": 26740, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.3% of Life Regenerated per second" + ], + "g": 181, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63976 + ], + "in": [ + 26740 + ] + }, + "38048": { + "id": 38048, + "icon": "Art/2DArt/SkillIcons/passives/lifepercentage.png", + "ks": false, + "not": false, + "dn": "Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.3% of Life Regenerated per second" + ], + "g": 181, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55906 + ], + "in": [ + 38048 + ] + }, + "6230": { + "id": 6230, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 181, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48423 + ], + "in": [ + 6230 + ] + }, + "29994": { + "id": 29994, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased maximum Mana", + "20% increased Mana Regeneration Rate" + ], + "g": 182, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 29994, + 29994 + ] + }, + "1105": { + "id": 1105, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png", + "ks": false, + "not": true, + "dn": "Pursuit of Faith", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "100% increased Totem Duration", + "Can have up to 1 additional Totem summoned at a time", + "6% increased Damage per Enemy Killed by you or your Totems Recently", + "10% increased Attack and Cast Speed while you have a Totem" + ], + "g": 182, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14870 + ], + "in": [ + 1105 + ] + }, + "11046": { + "id": 11046, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased maximum Mana", + "20% increased Mana Regeneration Rate" + ], + "g": 182, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 922 + ], + "in": [ + 11046 + ] + }, + "60462": { + "id": 60462, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png", + "ks": false, + "not": true, + "dn": "Illuminated Devotion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "25% increased Area of Effect while you have Arcane Surge", + "0.5% of Spell Damage Leeched as Life while you have Arcane Surge", + "40% increased Spell Damage while you have Arcane Surge" + ], + "g": 182, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33167 + ], + "in": [ + 60462 + ] + }, + "34434": { + "id": 34434, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png", + "ks": false, + "not": true, + "dn": "Ritual of Awakening", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can have up to 1 additional Totem summoned at a time", + "50% increased Totem Placement speed", + "You Regenerate 0.5% of Mana per second per Totem", + "You and your Totems Regenerate 1% of Life per second per Totem" + ], + "g": 182, + "o": 4, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34434 + ] + }, + "922": { + "id": 922, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png", + "ks": false, + "not": true, + "dn": "Divine Guidance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+150 to maximum Mana", + "10% of Damage is taken from Mana before Life" + ], + "g": 182, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29994 + ], + "in": [ + 922 + ] + }, + "14870": { + "id": 14870, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Totem Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + ], + "g": 182, + "o": 4, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34434 + ], + "in": [ + 14870 + ] + }, + "44797": { + "id": 44797, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Spell Damage", + "20% increased Mana Regeneration Rate" + ], + "g": 182, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60462 + ], + "in": [ + 44797 + ] + }, + "26714": { + "id": 26714, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Totem Placement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + ], + "g": 182, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1105 + ], + "in": [ + 26714 + ] + }, + "22637": { + "id": 22637, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Power and Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Mana Regeneration Rate", + "20% increased Endurance Charge Duration", + "20% increased Power Charge Duration" + ], + "g": 182, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25651 + ], + "in": [ + 22637 + ] + }, + "29026": { + "id": 29026, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png", + "ks": false, + "not": true, + "dn": "Sanctuary of Thought", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "50% reduced Mana Cost of Skills", + "50% reduced Mana Cost of Skills while on Full Energy Shield", + "Gain 30% of Maximum Mana as Extra Maximum Energy Shield", + "10% less Mana Reservation of Skills" + ], + "g": 182, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29994 + ], + "in": [] + }, + "25651": { + "id": 25651, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png", + "ks": false, + "not": true, + "dn": "Conviction of Power", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "25% chance to gain an Endurance Charge when you gain a Power Charge", + "50% chance to gain a Power Charge when you place a Totem", + "15% chance to gain a Power Charge if you or your Totems kill an Enemy", + "5% reduced Elemental Damage taken while you have an Endurance Charge", + "Damage Penetrates 5% Elemental Resistances while you have a Power Charge" + ], + "g": 182, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 25651 + ] + }, + "33167": { + "id": 33167, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration, Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Spell Damage", + "20% increased Mana Regeneration Rate" + ], + "g": 182, + "o": 4, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40510 + ], + "in": [ + 33167 + ] + }, + "40510": { + "id": 40510, + "icon": "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png", + "ks": false, + "not": true, + "dn": "Arcane Blessing", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": false, + "reminderText": [ + "(Arcane Surge grants 10% more Spell Damage, 10% increased Cast Speed, and 0.5% of maximum Mana Regenerated per second, for 4 seconds)" + ], + "spc": [], + "sd": [ + "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + "Immune to Elemental Ailments while you have Arcane Surge" + ], + "g": 182, + "o": 4, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 40510 + ] + }, + "30940": { + "id": 30940, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Hierophant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Hierophant", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 182, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11046, + 22637, + 44797, + 26714 + ], + "in": [ + 30940 + ] + }, + "31703": { + "id": 31703, + "icon": "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", + "ks": true, + "not": false, + "dn": "Pain Attunement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Embrace the pain, drink it in. Your enemies will know your agony tenfold." + ], + "spc": [], + "sd": [ + "30% more Spell Damage when on Low Life" + ], + "g": 183, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 31703 + ] + }, + "26270": { + "id": 26270, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 184, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 29199, + 41190, + 25332, + 23083 + ], + "in": [ + 26270, + 26270, + 26270 + ] + }, + "6981": { + "id": 6981, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 185, + "o": 4, + "oidx": 10, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 36543 + ], + "in": [ + 6981 + ] + }, + "36543": { + "id": 36543, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 185, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 49412 + ], + "in": [ + 36543 + ] + }, + "33296": { + "id": 33296, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Spell Damage" + ], + "g": 186, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1957, + 36774 + ], + "in": [ + 33296 + ] + }, + "21929": { + "id": 21929, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 187, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38836 + ], + "in": [ + 21929 + ] + }, + "38836": { + "id": 38836, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Armour" + ], + "g": 187, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27137 + ], + "in": [ + 38836 + ] + }, + "27137": { + "id": 27137, + "icon": "Art/2DArt/SkillIcons/passives/Unwavering.png", + "ks": false, + "not": true, + "dn": "Indomitable", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "You take 20% reduced Extra Damage from Critical Strikes", + "30% increased Armour" + ], + "g": 187, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27137 + ] + }, + "35179": { + "id": 35179, + "icon": "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + "ks": false, + "not": false, + "dn": "Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Movement Speed" + ], + "g": 188, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15144 + ], + "in": [ + 35179 + ] + }, + "9009": { + "id": 9009, + "icon": "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + "ks": false, + "not": false, + "dn": "Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Movement Speed" + ], + "g": 188, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19506, + 60532 + ], + "in": [] + }, + "60532": { + "id": 60532, + "icon": "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + "ks": false, + "not": false, + "dn": "Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Movement Speed" + ], + "g": 188, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35179 + ], + "in": [ + 60532 + ] + }, + "23690": { + "id": 23690, + "icon": "Art/2DArt/SkillIcons/passives/arcaneradience.png", + "ks": false, + "not": true, + "dn": "Arcane Vision", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Accuracy Rating", + "Light Radius is based on Energy Shield instead of Life" + ], + "g": 189, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37671 + ], + "in": [] + }, + "34882": { + "id": 34882, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 190, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 34882, + 34882, + 34882 + ] + }, + "17206": { + "id": 17206, + "icon": "Art/2DArt/SkillIcons/passives/Pierce.png", + "ks": false, + "not": false, + "dn": "Pierce", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Projectiles Pierce an additional Target" + ], + "g": 191, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33374 + ], + "in": [ + 17206 + ] + }, + "10843": { + "id": 10843, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 191, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31222, + 33374 + ], + "in": [ + 10843 + ] + }, + "15211": { + "id": 15211, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + "ks": false, + "not": false, + "dn": "Bow Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 191, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "33374": { + "id": 33374, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 191, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33374, + 33374 + ] + }, + "31222": { + "id": 31222, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 191, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21228 + ], + "in": [ + 31222 + ] + }, + "21228": { + "id": 21228, + "icon": "Art/2DArt/SkillIcons/passives/PierceNoteable.png", + "ks": false, + "not": true, + "dn": "Piercing Shots", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Projectiles Pierce 2 additional Targets" + ], + "g": 191, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38947 + ], + "in": [ + 21228 + ] + }, + "38947": { + "id": 38947, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 191, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17206 + ], + "in": [ + 38947 + ] + }, + "4546": { + "id": 4546, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Mine Damage" + ], + "g": 192, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40409 + ], + "in": [ + 4546 + ] + }, + "4995": { + "id": 4995, + "icon": "Art/2DArt/SkillIcons/passives/trapsduration.png", + "ks": false, + "not": false, + "dn": "Mine Damage and Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Mine Damage", + "20% increased Mine Duration" + ], + "g": 192, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3726 + ], + "in": [ + 4995 + ] + }, + "9055": { + "id": 9055, + "icon": "Art/2DArt/SkillIcons/passives/volitilemines.png", + "ks": false, + "not": true, + "dn": "Volatile Mines", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Mine Damage", + "8% increased Area of Effect", + "Detonating Mines is Instant" + ], + "g": 192, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9055, + 9055 + ] + }, + "41027": { + "id": 41027, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Mine Laying Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Mine Laying Speed" + ], + "g": 192, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4995, + 4546 + ], + "in": [ + 41027 + ] + }, + "40409": { + "id": 40409, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Mine Damage" + ], + "g": 192, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9055 + ], + "in": [ + 40409 + ] + }, + "3726": { + "id": 3726, + "icon": "Art/2DArt/SkillIcons/passives/trapsmax.png", + "ks": false, + "not": false, + "dn": "Additional Mines", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Can have up to 1 additional Remote Mine placed at a time" + ], + "g": 192, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9055 + ], + "in": [ + 3726 + ] + }, + "63167": { + "id": 63167, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + "ks": false, + "not": false, + "dn": "Trap Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 192, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "59928": { + "id": 59928, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 193, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 63723 + ], + "in": [ + 59928, + 59928, + 59928 + ] + }, + "55414": { + "id": 55414, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + "ks": false, + "not": false, + "dn": "Dagger Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Daggers", + "12% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47422 + ], + "in": [ + 55414, + 55414 + ] + }, + "11489": { + "id": 11489, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + "ks": false, + "not": false, + "dn": "Dagger Critical Strike Chance and Multiplier, Poison Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Daggers", + "+15% to Critical Strike Multiplier with Daggers", + "10% increased Damage with Poison" + ], + "g": 194, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32227 + ], + "in": [ + 11489 + ] + }, + "44134": { + "id": 44134, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + "ks": false, + "not": false, + "dn": "Dagger Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Daggers", + "+15% to Critical Strike Multiplier with Daggers" + ], + "g": 194, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11489 + ], + "in": [ + 44134 + ] + }, + "36490": { + "id": 36490, + "icon": "Art/2DArt/SkillIcons/passives/flaying.png", + "ks": false, + "not": true, + "dn": "Flaying", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Daggers", + "10% increased Attack Speed with Daggers", + "24% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 36490 + ] + }, + "47422": { + "id": 47422, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Daggers", + "20% increased Critical Strike Chance with Daggers", + "10% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44134 + ], + "in": [ + 47422 + ] + }, + "32227": { + "id": 32227, + "icon": "Art/2DArt/SkillIcons/passives/adderstouch.png", + "ks": false, + "not": true, + "dn": "Adder's Touch", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "Critical Strikes with Daggers have a 40% chance to Poison the Enemy", + "+30% to Critical Strike Multiplier with Daggers", + "40% increased Damage with Poison" + ], + "g": 194, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 32227 + ] + }, + "22261": { + "id": 22261, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Daggers", + "3% increased Attack Speed with Daggers", + "10% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55414 + ], + "in": [ + 22261 + ] + }, + "56174": { + "id": 56174, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Daggers", + "3% increased Attack Speed with Daggers", + "10% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38864, + 22261 + ], + "in": [] + }, + "38864": { + "id": 38864, + "icon": "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Daggers", + "3% increased Attack Speed with Daggers", + "10% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 194, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36490 + ], + "in": [ + 38864 + ] + }, + "57001": { + "id": 57001, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + "ks": false, + "not": false, + "dn": "Dagger Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 194, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "2491": { + "id": 2491, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 195, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18901 + ], + "in": [] + }, + "18901": { + "id": 18901, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Melee Physical Damage", + "4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 195, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 18901, + 18901 + ] + }, + "62319": { + "id": 62319, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Melee Physical Damage", + "4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 195, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34400, + 18901 + ], + "in": [] + }, + "6108": { + "id": 6108, + "icon": "Art/2DArt/SkillIcons/passives/accuracysword.png", + "ks": false, + "not": false, + "dn": "Sword Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance with Swords", + "+12% to Critical Strike Multiplier with Swords" + ], + "g": 196, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1698 + ], + "in": [ + 6108 + ] + }, + "56509": { + "id": 56509, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Attack Speed, Chance To Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "8% increased Physical Damage with Swords", + "4% increased Attack Speed with Swords", + "10% chance to Poison on Hit", + "8% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56509, + 56509 + ] + }, + "54354": { + "id": 54354, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12412 + ], + "in": [ + 54354, + 54354 + ] + }, + "59151": { + "id": 59151, + "icon": "Art/2DArt/SkillIcons/passives/cruelblade.png", + "ks": false, + "not": true, + "dn": "Brutal Blade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "20% increased Physical Damage with Swords", + "8% increased Attack Speed with Swords", + "30% increased Damage with Ailments from Attack Skills while wielding a Sword", + "+20 to Strength" + ], + "g": 196, + "o": 3, + "oidx": 2, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 56509 + ], + "in": [] + }, + "52213": { + "id": 52213, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Swords", + "4% increased Attack Speed with Swords", + "8% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54354, + 12720 + ], + "in": [] + }, + "12720": { + "id": 12720, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Attack Speed, Chance to Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "8% increased Physical Damage with Swords", + "4% increased Attack Speed with Swords", + "10% chance to Poison on Hit", + "8% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56509 + ], + "in": [ + 12720 + ] + }, + "1698": { + "id": 1698, + "icon": "Art/2DArt/SkillIcons/passives/accuracysword.png", + "ks": false, + "not": false, + "dn": "Sword Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance with Swords", + "+12% to Critical Strike Multiplier with Swords" + ], + "g": 196, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29856 + ], + "in": [ + 1698 + ] + }, + "2021": { + "id": 2021, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + "ks": false, + "not": false, + "dn": "Sword Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 196, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "29856": { + "id": 29856, + "icon": "Art/2DArt/SkillIcons/passives/accuracysword.png", + "ks": false, + "not": false, + "dn": "Sword Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Swords", + "20% increased Critical Strike Chance with Swords", + "10% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54354 + ], + "in": [ + 29856 + ] + }, + "1568": { + "id": 1568, + "icon": "Art/2DArt/SkillIcons/passives/FatalBlade.png", + "ks": false, + "not": true, + "dn": "Fatal Blade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Swords", + "60% increased Critical Strike Chance with Swords", + "+30% to Critical Strike Multiplier with Swords", + "10% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 196, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6108 + ], + "in": [] + }, + "56029": { + "id": 56029, + "icon": "Art/2DArt/SkillIcons/passives/grace.png", + "ks": false, + "not": true, + "dn": "Agility", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Dexterity" + ], + "g": 197, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 30, + "ia": 0, + "out": [ + 42760 + ], + "in": [] + }, + "26096": { + "id": 26096, + "icon": "Art/2DArt/SkillIcons/passives/hatchetmaster.png", + "ks": false, + "not": true, + "dn": "Hatchet Master", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with Axes", + "8% increased Attack Speed with Axes", + "20% increased Evasion Rating", + "20% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 198, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 26096 + ] + }, + "42637": { + "id": 42637, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Axes", + "3% increased Attack Speed with Axes", + "8% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 198, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42637, + 42637 + ] + }, + "30030": { + "id": 30030, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Axes", + "3% increased Attack Speed with Axes", + "8% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 198, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42637, + 26096 + ], + "in": [] + }, + "61834": { + "id": 61834, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 199, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27656 + ], + "in": [ + 61834 + ] + }, + "55392": { + "id": 55392, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 200, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55085, + 53002 + ], + "in": [ + 55392 + ] + }, + "18703": { + "id": 18703, + "icon": "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png", + "ks": false, + "not": true, + "dn": "Graceful Assault", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + ], + "spc": [], + "sd": [ + "16% increased Attack Damage", + "25% increased Evasion Rating during Onslaught", + "10% chance to gain Onslaught for 4 seconds on Kill" + ], + "g": 200, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36675 + ], + "in": [ + 18703, + 18703 + ] + }, + "4944": { + "id": 4944, + "icon": "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + "ks": false, + "not": false, + "dn": "Melee Damage and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "8% increased Melee Damage" + ], + "g": 200, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18703 + ], + "in": [ + 4944 + ] + }, + "53002": { + "id": 53002, + "icon": "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + "ks": false, + "not": false, + "dn": "Melee Damage and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "8% increased Melee Damage" + ], + "g": 200, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4944 + ], + "in": [ + 53002 + ] + }, + "36675": { + "id": 36675, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + "ks": false, + "not": false, + "dn": "Evasion Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 200, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 36675 + ] + }, + "55085": { + "id": 55085, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 200, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18703 + ], + "in": [ + 55085 + ] + }, + "54268": { + "id": 54268, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": true, + "dn": "Blade Barrier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+3% Chance to Block Attack Damage while Dual Wielding", + "50% increased Block Recovery", + "18% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 18% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 54268 + ] + }, + "49547": { + "id": 49547, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwield.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 12% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8544, + 33089, + 56231 + ], + "in": [] + }, + "33089": { + "id": 33089, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33089, + 33089 + ] + }, + "15085": { + "id": 15085, + "icon": "Art/2DArt/SkillIcons/passives/ambidexterity.png", + "ks": false, + "not": true, + "dn": "Ambidexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "26% increased Attack Damage with Main Hand", + "20% increased Attack Speed with Off Hand", + "Attack Skills deal 26% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13807 + ], + "in": [] + }, + "57782": { + "id": 57782, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + "ks": false, + "not": false, + "dn": "Duel Wield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 201, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "13807": { + "id": 13807, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Weapon Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33089 + ], + "in": [ + 13807 + ] + }, + "56231": { + "id": 56231, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "6% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 6% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2392 + ], + "in": [ + 56231 + ] + }, + "2392": { + "id": 2392, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "6% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 6% increased Damage with Ailments while Dual Wielding" + ], + "g": 201, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54268 + ], + "in": [ + 2392 + ] + }, + "22088": { + "id": 22088, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png", + "ks": true, + "not": false, + "dn": "Elemental Overload", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "You are not a vanishing spark, but a patient ember waiting to seed a great fire." + ], + "spc": [], + "sd": [ + "40% more Elemental Damage if you've Crit in the past 8 seconds\nNo Critical Strike Multiplier\nNo Damage Multiplier for Ailments from Critical Strikes" + ], + "g": 202, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55332 + ], + "in": [] + }, + "18715": { + "id": 18715, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Fire Damage" + ], + "g": 203, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10893 + ], + "in": [ + 18715 + ] + }, + "60501": { + "id": 60501, + "icon": "Art/2DArt/SkillIcons/passives/hellfire.png", + "ks": false, + "not": true, + "dn": "Heart of Flame", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Fire Damage", + "Damage Penetrates 6% Fire Resistance" + ], + "g": 203, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10893 + ], + "in": [] + }, + "14040": { + "id": 14040, + "icon": "Art/2DArt/SkillIcons/passives/firedamageint.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Fire Damage" + ], + "g": 203, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18715 + ], + "in": [ + 14040 + ] + }, + "8624": { + "id": 8624, + "icon": "Art/2DArt/SkillIcons/passives/firedamageint.png", + "ks": false, + "not": false, + "dn": "Fire and Burning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fire Damage", + "10% increased Burning Damage" + ], + "g": 203, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61804 + ], + "in": [ + 8624 + ] + }, + "10893": { + "id": 10893, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Fire Damage" + ], + "g": 203, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10893, + 10893 + ] + }, + "11924": { + "id": 11924, + "icon": "Art/2DArt/SkillIcons/passives/BreathofFlames2.png", + "ks": false, + "not": true, + "dn": "Breath of Flames", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "20% increased Fire Damage", + "20% increased Ignite Duration on Enemies", + "20% increased Burning Damage", + "20% chance to Ignite" + ], + "g": 203, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11924 + ] + }, + "38789": { + "id": 38789, + "icon": "Art/2DArt/SkillIcons/passives/firedamageint.png", + "ks": false, + "not": false, + "dn": "Fire and Burning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fire Damage", + "10% increased Burning Damage" + ], + "g": 203, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11924 + ], + "in": [ + 38789 + ] + }, + "61804": { + "id": 61804, + "icon": "Art/2DArt/SkillIcons/passives/firedamageint.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Fire Damage" + ], + "g": 203, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44184, + 14040 + ], + "in": [ + 61804 + ] + }, + "13559": { + "id": 13559, + "icon": "Art/2DArt/SkillIcons/passives/firedamagestr.png", + "ks": false, + "not": false, + "dn": "Fire Damage and Ignite Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "10% increased Fire Damage", + "5% chance to Ignite" + ], + "g": 203, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8624, + 38789 + ], + "in": [] + }, + "42465": { + "id": 42465, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + "ks": false, + "not": false, + "dn": "Fire Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 203, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "50862": { + "id": 50862, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 204, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 44606, + 15405, + 4300, + 64816, + 3167 + ], + "in": [ + 50862, + 50862 + ] + }, + "44624": { + "id": 44624, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Axes", + "12% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 205, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31604, + 24865 + ], + "in": [ + 44624 + ] + }, + "31604": { + "id": 31604, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Life Leech Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Axes", + "8% increased Life Leeched per second", + "8% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 205, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26023 + ], + "in": [ + 31604 + ] + }, + "65131": { + "id": 65131, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Physical Damage with Axes", + "14% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 205, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44624 + ], + "in": [ + 65131 + ] + }, + "26023": { + "id": 26023, + "icon": "Art/2DArt/SkillIcons/passives/cleavage.png", + "ks": false, + "not": true, + "dn": "Splitting Strikes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "26% increased Physical Damage with Axes", + "6% increased Attack Speed with Axes", + "0.2% of Physical Attack Damage Leeched as Life", + "10% increased Life Leeched per second", + "26% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 205, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5065 + ], + "in": [ + 26023 + ] + }, + "59565": { + "id": 59565, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + "ks": false, + "not": false, + "dn": "Axe Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 205, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "5065": { + "id": 5065, + "icon": "Art/2DArt/SkillIcons/passives/damageaxe.png", + "ks": false, + "not": false, + "dn": "Axe Damage and Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Axes", + "0.2% of Physical Attack Damage Leeched as Life", + "10% increased Damage with Ailments from Attack Skills while wielding an Axe" + ], + "g": 205, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65131 + ], + "in": [ + 5065 + ] + }, + "22266": { + "id": 22266, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 206, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 60942, + 32555 + ], + "in": [ + 22266, + 22266 + ] + }, + "10829": { + "id": 10829, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 207, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 32091, + 18402, + 41967 + ], + "in": [ + 10829, + 10829, + 10829 + ] + }, + "16167": { + "id": 16167, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 207, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 10829, + 24472 + ], + "in": [ + 16167 + ] + }, + "53213": { + "id": 53213, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 208, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 61834, + 7112 + ], + "in": [] + }, + "37326": { + "id": 37326, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": true, + "dn": "Stamina", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Endurance Charges" + ], + "g": 209, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48109 + ], + "in": [ + 37326 + ] + }, + "48109": { + "id": 48109, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Life Regeneration per Endurance Charge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "0.2% of maximum Life Regenerated per second per Endurance Charge" + ], + "g": 209, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63723 + ], + "in": [ + 48109 + ] + }, + "38508": { + "id": 38508, + "icon": "Art/2DArt/SkillIcons/passives/chargestr.png", + "ks": false, + "not": false, + "dn": "Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Endurance Charge Duration" + ], + "g": 209, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37326 + ], + "in": [ + 38508 + ] + }, + "26725": { + "id": 26725, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 209, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62429 + ], + "in": [ + 26725 + ] + }, + "62429": { + "id": 62429, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 209, + "o": 2, + "oidx": 8, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 63723 + ], + "in": [ + 62429 + ] + }, + "62363": { + "id": 62363, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 209, + "o": 2, + "oidx": 4, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 26725 + ], + "in": [ + 62363 + ] + }, + "59005": { + "id": 59005, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 210, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61217 + ], + "in": [ + 59005 + ] + }, + "61217": { + "id": 61217, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 210, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49254 + ], + "in": [ + 61217 + ] + }, + "9294": { + "id": 9294, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Attack and Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Damage", + "Minions deal 6% increased Damage" + ], + "g": 210, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4568 + ], + "in": [ + 9294 + ] + }, + "4568": { + "id": 4568, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Attack and Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Damage", + "Minions deal 6% increased Damage" + ], + "g": 210, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35724 + ], + "in": [ + 4568 + ] + }, + "33923": { + "id": 33923, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 210, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59005 + ], + "in": [ + 33923 + ] + }, + "420": { + "id": 420, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Attack and Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Damage", + "Minions deal 6% increased Damage" + ], + "g": 210, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49254, + 9294 + ], + "in": [] + }, + "7920": { + "id": 7920, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Laying Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Trap Throwing Speed", + "4% increased Mine Laying Speed" + ], + "g": 211, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46965 + ], + "in": [ + 7920, + 7920 + ] + }, + "35283": { + "id": 35283, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance" + ], + "g": 211, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35894, + 7920 + ], + "in": [ + 35283 + ] + }, + "10763": { + "id": 10763, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance" + ], + "g": 211, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28754 + ], + "in": [ + 10763, + 10763 + ] + }, + "42686": { + "id": 42686, + "icon": "Art/2DArt/SkillIcons/passives/ElementalFocus.png", + "ks": false, + "not": true, + "dn": "Elemental Focus", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% chance to Avoid Elemental Ailments", + "10% increased Duration of Elemental Ailments on Enemies", + "16% increased Elemental Damage", + "10% increased Effect of non-Damaging Ailments on Enemies" + ], + "g": 211, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40644 + ], + "in": [ + 42686 + ] + }, + "28754": { + "id": 28754, + "icon": "Art/2DArt/SkillIcons/passives/newincreasedcritical.png", + "ks": false, + "not": true, + "dn": "Assassination", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+35% to Critical Strike Multiplier", + "30% increased Critical Strike Chance" + ], + "g": 211, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35283 + ], + "in": [ + 28754 + ] + }, + "60949": { + "id": 60949, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Trap Damage", + "14% increased Mine Damage" + ], + "g": 211, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10763, + 40644 + ], + "in": [ + 60949 + ] + }, + "46965": { + "id": 46965, + "icon": "Art/2DArt/SkillIcons/passives/saboteur.png", + "ks": false, + "not": true, + "dn": "Saboteur", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Trap Damage", + "30% increased Mine Damage", + "Can have up to 1 additional Trap placed at a time", + "Can have up to 1 additional Remote Mine placed at a time" + ], + "g": 211, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60949 + ], + "in": [ + 46965 + ] + }, + "21575": { + "id": 21575, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 211, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42686, + 7920 + ], + "in": [ + 21575 + ] + }, + "40644": { + "id": 40644, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 211, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24050 + ], + "in": [ + 40644, + 40644 + ] + }, + "64587": { + "id": 64587, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 212, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5197 + ], + "in": [ + 64587 + ] + }, + "6289": { + "id": 6289, + "icon": "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png", + "ks": false, + "not": true, + "dn": "Bloodless", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "Enemies Cannot Leech Life From you" + ], + "g": 212, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48287 + ], + "in": [] + }, + "5197": { + "id": 5197, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 212, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 487 + ], + "in": [ + 5197 + ] + }, + "48287": { + "id": 48287, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 212, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14930, + 64587 + ], + "in": [ + 48287 + ] + }, + "42875": { + "id": 42875, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 212, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "1571": { + "id": 1571, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 213, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5616, + 57819, + 6654 + ], + "in": [ + 1571 + ] + }, + "41866": { + "id": 41866, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 214, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 63843, + 60942 + ], + "in": [ + 41866, + 41866 + ] + }, + "31819": { + "id": 31819, + "icon": "Art/2DArt/SkillIcons/passives/manastr.png", + "ks": false, + "not": false, + "dn": "Mana and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Mana", + "3% reduced Mana Cost of Skills" + ], + "g": 215, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26866, + 46726 + ], + "in": [ + 31819 + ] + }, + "46726": { + "id": 46726, + "icon": "Art/2DArt/SkillIcons/passives/manastr.png", + "ks": false, + "not": false, + "dn": "Mana and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Mana", + "3% reduced Mana Cost of Skills" + ], + "g": 215, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 46726, + 46726, + 46726 + ] + }, + "38516": { + "id": 38516, + "icon": "Art/2DArt/SkillIcons/passives/Righteous Decree.png", + "ks": false, + "not": true, + "dn": "Righteous Decree", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "22% increased maximum Mana", + "6% reduced Mana Cost of Skills" + ], + "g": 215, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31819, + 46726, + 62303 + ], + "in": [] + }, + "36287": { + "id": 36287, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 216, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 1461, + 20807, + 15837, + 24203, + 54307 + ], + "in": [ + 36287 + ] + }, + "28548": { + "id": 28548, + "icon": "Art/2DArt/SkillIcons/passives/shieldrecovery.png", + "ks": false, + "not": false, + "dn": "Shield Spell Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while holding a Shield", + "40% increased Block Recovery" + ], + "g": 217, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65308, + 15021 + ], + "in": [] + }, + "65308": { + "id": 65308, + "icon": "Art/2DArt/SkillIcons/passives/barricade.png", + "ks": false, + "not": true, + "dn": "Deflection", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "+4% Chance to Block Spell Damage while holding a Shield", + "40% increased Defences from Equipped Shield", + "+4% Chance to Block Attack Damage while holding a Shield" + ], + "g": 217, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 65308 + ] + }, + "15021": { + "id": 15021, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block and Shield Defences", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "40% increased Defences from Equipped Shield", + "+1% Chance to Block Attack Damage while holding a Shield" + ], + "g": 217, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49900 + ], + "in": [ + 15021 + ] + }, + "40637": { + "id": 40637, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage" + ], + "g": 218, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 40637, + 40637 + ] + }, + "6949": { + "id": 6949, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield and Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + ], + "g": 218, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55643 + ], + "in": [ + 6949 + ] + }, + "55643": { + "id": 55643, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Energy Shield" + ], + "g": 218, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55643, + 55643 + ] + }, + "19374": { + "id": 19374, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Energy Shield" + ], + "g": 218, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6949 + ], + "in": [ + 19374 + ] + }, + "25222": { + "id": 25222, + "icon": "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + "ks": false, + "not": false, + "dn": "Minion Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + ], + "g": 218, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40637 + ], + "in": [ + 25222 + ] + }, + "9650": { + "id": 9650, + "icon": "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage" + ], + "g": 218, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25222 + ], + "in": [ + 9650 + ] + }, + "14021": { + "id": 14021, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 219, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 7938 + ], + "in": [ + 14021, + 14021, + 14021 + ] + }, + "55332": { + "id": 55332, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 219, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 14021, + 34157 + ], + "in": [ + 55332, + 55332 + ] + }, + "57278": { + "id": 57278, + "icon": "Art/2DArt/SkillIcons/passives/shieldenergyshield.png", + "ks": false, + "not": true, + "dn": "Mind Barrier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+6% Chance to Block Spell Damage while holding a Shield", + "30% increased Energy Shield from Equipped Shield" + ], + "g": 220, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34245 + ], + "in": [] + }, + "16971": { + "id": 16971, + "icon": "Art/2DArt/SkillIcons/passives/shieldblockchance.png", + "ks": false, + "not": false, + "dn": "Shield Spell Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while holding a Shield", + "40% increased Block Recovery" + ], + "g": 220, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34245 + ], + "in": [ + 16971 + ] + }, + "34245": { + "id": 34245, + "icon": "Art/2DArt/SkillIcons/passives/shieldenergyshield.png", + "ks": false, + "not": false, + "dn": "Shield Spell Block and Energy Shield on Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Spell Damage while holding a Shield", + "30% increased Energy Shield from Equipped Shield" + ], + "g": 220, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34245, + 34245 + ] + }, + "51883": { + "id": 51883, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + "ks": false, + "not": false, + "dn": "Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 220, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "61689": { + "id": 61689, + "icon": "Art/2DArt/SkillIcons/passives/trapsradius.png", + "ks": false, + "not": true, + "dn": "Blast Cascade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30% to Critical Strike Multiplier with Traps", + "+30% to Critical Strike Multiplier with Mines", + "15% chance to gain a Power Charge when your Trap is triggered by an Enemy", + "15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy" + ], + "g": 221, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35334 + ], + "in": [ + 61689 + ] + }, + "29549": { + "id": 29549, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier with Traps", + "+15% to Critical Strike Multiplier with Mines" + ], + "g": 221, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61689 + ], + "in": [ + 29549 + ] + }, + "2260": { + "id": 2260, + "icon": "Art/2DArt/SkillIcons/passives/trapsradius.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Traps", + "20% increased Critical Strike Chance with Mines" + ], + "g": 221, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29549 + ], + "in": [ + 2260, + 2260 + ] + }, + "35334": { + "id": 35334, + "icon": "Art/2DArt/SkillIcons/passives/trapsradius.png", + "ks": false, + "not": false, + "dn": "Trap and Mine Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Traps", + "20% increased Critical Strike Chance with Mines" + ], + "g": 221, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2260 + ], + "in": [ + 35334 + ] + }, + "13676": { + "id": 13676, + "icon": "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + "ks": false, + "not": false, + "dn": "Trap Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 221, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "63845": { + "id": 63845, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 222, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22497 + ], + "in": [ + 63845 + ] + }, + "8643": { + "id": 8643, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 222, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37078, + 63845 + ], + "in": [] + }, + "22497": { + "id": 22497, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 222, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2151 + ], + "in": [ + 22497 + ] + }, + "51440": { + "id": 51440, + "icon": "Art/2DArt/SkillIcons/passives/DruidicRite.png", + "ks": false, + "not": true, + "dn": "Druidic Rite", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15 to maximum Mana", + "15% increased maximum Mana", + "20% increased Flask Charges gained", + "20% increased Flask effect duration" + ], + "g": 223, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17421 + ], + "in": [ + 51440 + ] + }, + "29104": { + "id": 29104, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 223, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51440, + 64709 + ], + "in": [] + }, + "30955": { + "id": 30955, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed", + "2% increased Movement Speed" + ], + "g": 223, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64709 + ], + "in": [ + 30955 + ] + }, + "17421": { + "id": 17421, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 223, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61306 + ], + "in": [ + 17421 + ] + }, + "59146": { + "id": 59146, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed", + "2% increased Movement Speed" + ], + "g": 223, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61306, + 2715 + ], + "in": [] + }, + "2715": { + "id": 2715, + "icon": "Art/2DArt/SkillIcons/passives/quickstep.png", + "ks": false, + "not": true, + "dn": "Quickstep", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Speed", + "4% increased Movement Speed" + ], + "g": 223, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30955 + ], + "in": [ + 2715 + ] + }, + "31359": { + "id": 31359, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": true, + "dn": "Fatal Toxins", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Damage with Poison", + "10% increased Poison Duration", + "30% increased Chaos Damage with Attack Skills" + ], + "g": 224, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 31359, + 31359 + ] + }, + "1648": { + "id": 1648, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Poison Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage with Poison", + "10% increased Chaos Damage with Attack Skills" + ], + "g": 224, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1461, + 11811, + 37785 + ], + "in": [] + }, + "37785": { + "id": 37785, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Chance to Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "10% chance to Poison on Hit" + ], + "g": 224, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20127 + ], + "in": [ + 37785 + ] + }, + "20127": { + "id": 20127, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Chance to Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "10% chance to Poison on Hit" + ], + "g": 224, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31359 + ], + "in": [ + 20127 + ] + }, + "11811": { + "id": 11811, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Poison Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Poison", + "15% increased Chaos Damage with Attack Skills" + ], + "g": 224, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31359 + ], + "in": [ + 11811 + ] + }, + "10575": { + "id": 10575, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 225, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 60472, + 40508 + ], + "in": [ + 10575, + 10575, + 10575 + ] + }, + "58402": { + "id": 58402, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 225, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 10575, + 6764, + 59728 + ], + "in": [ + 58402, + 58402 + ] + }, + "29937": { + "id": 29937, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 226, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 6363, + 10661 + ], + "in": [ + 29937, + 29937 + ] + }, + "32091": { + "id": 32091, + "icon": "Art/2DArt/SkillIcons/passives/evade.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 227, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44103 + ], + "in": [ + 32091, + 32091 + ] + }, + "59650": { + "id": 59650, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield and Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased maximum Energy Shield", + "Minions have 8% increased maximum Life" + ], + "g": 228, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9650, + 19374, + 57226 + ], + "in": [] + }, + "12236": { + "id": 12236, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 12% increased Damage with Ailments while holding a Shield" + ], + "g": 229, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46730, + 34009 + ], + "in": [ + 12236 + ] + }, + "19782": { + "id": 19782, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Defences with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "40% increased Defences from Equipped Shield" + ], + "g": 229, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49538 + ], + "in": [ + 19782 + ] + }, + "49538": { + "id": 49538, + "icon": "Art/2DArt/SkillIcons/passives/shieldwall.png", + "ks": false, + "not": true, + "dn": "Defiance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "20% increased Physical Attack Damage while holding a Shield", + "25% increased Defences from Equipped Shield", + "Attack Skills deal 20% increased Damage with Ailments while holding a Shield", + "+3% Chance to Block Attack Damage while holding a Shield" + ], + "g": 229, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12236 + ], + "in": [ + 49538 + ] + }, + "25324": { + "id": 25324, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 12% increased Damage with Ailments while holding a Shield" + ], + "g": 229, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19782, + 34031 + ], + "in": [ + 25324 + ] + }, + "46730": { + "id": 46730, + "icon": "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage with Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 12% increased Damage with Ailments while holding a Shield" + ], + "g": 229, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25324 + ], + "in": [ + 46730 + ] + }, + "29199": { + "id": 29199, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 230, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 29199, + 29199, + 29199, + 29199 + ] + }, + "43193": { + "id": 43193, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + ], + "g": 231, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3154 + ], + "in": [ + 43193 + ] + }, + "48214": { + "id": 48214, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png", + "ks": false, + "not": true, + "dn": "Inevitable Judgement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "reminderText": [ + "(Ignoring Resistances means your Damage cannot be modified in any way by any Resistance stats)" + ], + "spc": [], + "sd": [ + "Critical Strikes ignore Enemy Monster Elemental Resistances", + "Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances" + ], + "g": 231, + "o": 4, + "oidx": 14, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 48214 + ] + }, + "662": { + "id": 662, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "+15% to Critical Strike Multiplier" + ], + "g": 231, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53884 + ], + "in": [ + 662 + ] + }, + "60769": { + "id": 60769, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png", + "ks": false, + "not": false, + "dn": "Elemental Damage and Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + ], + "g": 231, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40059 + ], + "in": [ + 60769 + ] + }, + "32816": { + "id": 32816, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png", + "ks": false, + "not": true, + "dn": "Pious Path", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "6% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground", + "25% increased Attack and Cast Speed while on Consecrated Ground", + "Immune to Elemental Ailments while on Consecrated Ground" + ], + "g": 231, + "o": 4, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 32816 + ] + }, + "57222": { + "id": 57222, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "10% increased Elemental Damage" + ], + "g": 231, + "o": 4, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32816 + ], + "in": [ + 57222 + ] + }, + "10635": { + "id": 10635, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.5% of Life Regenerated per second", + "10% increased Elemental Damage" + ], + "g": 231, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39790 + ], + "in": [ + 10635 + ] + }, + "37486": { + "id": 37486, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "+15% to Critical Strike Multiplier" + ], + "g": 231, + "o": 4, + "oidx": 12, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48214 + ], + "in": [ + 37486 + ] + }, + "40059": { + "id": 40059, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png", + "ks": false, + "not": true, + "dn": "Augury of Penitence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Nearby Enemies Take 16% increased Elemental Damage", + "Nearby Enemies deal 8% less Elemental Damage" + ], + "g": 231, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 40059 + ] + }, + "3154": { + "id": 3154, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png", + "ks": false, + "not": true, + "dn": "Instruments of Virtue", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "30% increased Spell Damage if you've Cast a Spell Recently", + "50% increased Attack Damage if you've Cast a Spell Recently", + "20% increased Attack Speed if you've Attacked Recently", + "30% increased Cast Speed if you've Attacked Recently" + ], + "g": 231, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 3154 + ] + }, + "61871": { + "id": 61871, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Inquisitor", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 231, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60769, + 10635, + 43193, + 662 + ], + "in": [ + 61871 + ] + }, + "32345": { + "id": 32345, + "icon": "Art/2DArt/SkillIcons/passives/grace.png", + "ks": false, + "not": true, + "dn": "Alacrity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Dexterity" + ], + "g": 232, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 30, + "ia": 0, + "out": [], + "in": [ + 32345 + ] + }, + "62817": { + "id": 62817, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/Headman.png", + "ks": false, + "not": true, + "dn": "Headsman", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "20% more Damage if you've Killed Recently", + "20% increased Area of Effect if you've Killed Recently", + "Cannot take Reflected Physical Damage" + ], + "g": 233, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15286 + ], + "in": [ + 62817 + ] + }, + "15286": { + "id": 15286, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Attack Speed", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 4, + "oidx": 36, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3184 + ], + "in": [ + 15286 + ] + }, + "34215": { + "id": 34215, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.2% of Attack Damage Leeched as Life", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 4, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10143 + ], + "in": [ + 34215 + ] + }, + "38180": { + "id": 38180, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/Impact.png", + "ks": false, + "not": true, + "dn": "Impact", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Single-target Melee attacks deal Splash Damage to surrounding targets", + "20% increased Area of Effect" + ], + "g": 233, + "o": 4, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 38180 + ] + }, + "61393": { + "id": 61393, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Reduced Enemy Stun Threshold", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% reduced Enemy Stun Threshold", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17315 + ], + "in": [ + 61393 + ] + }, + "42293": { + "id": 42293, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Attack Speed", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62817 + ], + "in": [ + 42293 + ] + }, + "45696": { + "id": 45696, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Life Leech", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "0.2% of Attack Damage Leeched as Life", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34484 + ], + "in": [ + 45696 + ] + }, + "20954": { + "id": 20954, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png", + "ks": false, + "not": false, + "dn": "Two Handed Damage, Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Area of Effect", + "14% increased Damage with Two Handed Weapons" + ], + "g": 233, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38180 + ], + "in": [ + 20954 + ] + }, + "3184": { + "id": 3184, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png", + "ks": false, + "not": true, + "dn": "Bane of Legends", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "reminderText": [ + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + ], + "spc": [], + "sd": [ + "Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy", + "Kill Enemies that have 20% or lower Life when Hit by your Skills" + ], + "g": 233, + "o": 4, + "oidx": 38, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 3184 + ] + }, + "17315": { + "id": 17315, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png", + "ks": false, + "not": true, + "dn": "Overwhelm", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "100% increased Stun Duration on Enemies", + "Cannot be Stunned", + "Your Damaging Hits always Stun Enemies that are on Full Life", + "20% chance to double Stun Duration" + ], + "g": 233, + "o": 4, + "oidx": 29, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 17315 + ] + }, + "34484": { + "id": 34484, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png", + "ks": false, + "not": true, + "dn": "Endless Hunger", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% of Overkill Damage is Leeched as Life", + "You are Immune to Bleeding while Leeching" + ], + "g": 233, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34215 + ], + "in": [ + 34484 + ] + }, + "10143": { + "id": 10143, + "icon": "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png", + "ks": false, + "not": true, + "dn": "Brutal Fervour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "100% increased Life Leeched per second", + "30% increased Damage while Leeching", + "Life Leech effects are not removed at Full Life" + ], + "g": 233, + "o": 4, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10143 + ] + }, + "33795": { + "id": 33795, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Slayer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Slayer", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 233, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42293, + 45696, + 20954, + 61393 + ], + "in": [ + 33795 + ] + }, + "20807": { + "id": 20807, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 234, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 12412 + ], + "in": [ + 20807, + 20807, + 20807, + 20807, + 20807, + 20807 + ] + }, + "32710": { + "id": 32710, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 235, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 10153, + 32345, + 4502, + 12379 + ], + "in": [ + 32710, + 32710, + 32710 + ] + }, + "58198": { + "id": 58198, + "icon": "Art/2DArt/SkillIcons/passives/breathofrime.png", + "ks": false, + "not": true, + "dn": "Fingers of Frost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Chill slows Enemies by 10% for 2 seconds)", + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + ], + "spc": [], + "sd": [ + "12% increased Cold Damage", + "Enemies Become Chilled as they Unfreeze", + "10% chance to Freeze Enemies which are Chilled", + "10% increased Effect of Chill" + ], + "g": 236, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 58198 + ] + }, + "44059": { + "id": 44059, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + "ks": false, + "not": false, + "dn": "Cold Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 236, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "58603": { + "id": 58603, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage, Freeze and Chill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Cold Damage", + "30% increased Chill Duration on Enemies", + "20% increased Freeze Duration on Enemies" + ], + "g": 236, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58198 + ], + "in": [ + 58603 + ] + }, + "14209": { + "id": 14209, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage and Chill Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Cold Damage", + "5% increased Effect of Chill" + ], + "g": 236, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21170, + 58603 + ], + "in": [] + }, + "21170": { + "id": 21170, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage, Freeze Chance and Chill Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + ], + "spc": [], + "sd": [ + "8% increased Cold Damage", + "5% chance to Freeze", + "5% increased Effect of Chill" + ], + "g": 236, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21170, + 21170 + ] + }, + "56370": { + "id": 56370, + "icon": "Art/2DArt/SkillIcons/passives/FortifyNode.png", + "ks": false, + "not": false, + "dn": "Melee Damage while Fortified", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage while you have Fortify", + "10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 237, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18552 + ], + "in": [ + 56370 + ] + }, + "18552": { + "id": 18552, + "icon": "Art/2DArt/SkillIcons/passives/FortifyNode.png", + "ks": false, + "not": false, + "dn": "Fortify Effect and Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Fortify duration", + "5% increased Effect of Fortify on you" + ], + "g": 237, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1340 + ], + "in": [ + 18552 + ] + }, + "1340": { + "id": 1340, + "icon": "Art/2DArt/SkillIcons/passives/FortifyNotable.png", + "ks": false, + "not": true, + "dn": "Rampart", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Armour while you have Fortify", + "15% increased Melee Physical Damage while you have Fortify", + "10% increased Effect of Fortify on you", + "15% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 237, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 1340 + ] + }, + "50515": { + "id": 50515, + "icon": "Art/2DArt/SkillIcons/passives/FortifyNode.png", + "ks": false, + "not": false, + "dn": "Melee Damage while Fortified", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage while you have Fortify", + "10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 237, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56370, + 24914 + ], + "in": [] + }, + "43195": { + "id": 43195, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png", + "ks": false, + "not": false, + "dn": "Slayer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Duelist Ascendancy passives)", + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "Culling Strike", + "20% increased Damage while Leeching", + "Life Leech effects are not removed at Full Life", + "20% increased Area of Effect if you've Killed Recently", + "Cannot take Reflected Physical Damage" + ], + "g": 238, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 43195 + ] + }, + "21835": { + "id": 21835, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 239, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35894, + 25058 + ], + "in": [] + }, + "59009": { + "id": 59009, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 239, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5823 + ], + "in": [ + 59009 + ] + }, + "1891": { + "id": 1891, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 239, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35894, + 52157 + ], + "in": [] + }, + "25058": { + "id": 25058, + "icon": "Art/2DArt/SkillIcons/passives/BloodSiphon.png", + "ks": false, + "not": true, + "dn": "Blood Siphon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life", + "+5 Life gained on Kill", + "+20 to Strength" + ], + "g": 239, + "o": 2, + "oidx": 3, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 9877 + ], + "in": [ + 25058 + ] + }, + "9877": { + "id": 9877, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 239, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5823 + ], + "in": [ + 9877 + ] + }, + "52157": { + "id": 52157, + "icon": "Art/2DArt/SkillIcons/passives/soulsyphon.png", + "ks": false, + "not": true, + "dn": "Soul Siphon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to maximum Mana", + "18% increased maximum Mana", + "+5 Mana gained on Kill" + ], + "g": 239, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59009 + ], + "in": [ + 52157 + ] + }, + "6580": { + "id": 6580, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 240, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [], + "in": [ + 6580, + 6580, + 6580, + 6580 + ] + }, + "54415": { + "id": 54415, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 241, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 6446 + ], + "in": [ + 54415 + ] + }, + "36281": { + "id": 36281, + "icon": "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png", + "ks": false, + "not": true, + "dn": "Primeval Force", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% reduced Reflected Elemental Damage taken", + "Damage with Weapons Penetrates 5% Elemental Resistance", + "20% increased Elemental Damage during any Flask Effect", + "20% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8434 + ], + "in": [ + 36281, + 36281 + ] + }, + "50150": { + "id": 50150, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage, Status Ailment Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "5% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36281 + ], + "in": [ + 50150 + ] + }, + "32477": { + "id": 32477, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30969 + ], + "in": [ + 32477 + ] + }, + "64878": { + "id": 64878, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45436, + 32477 + ], + "in": [ + 64878 + ] + }, + "8434": { + "id": 8434, + "icon": "Art/2DArt/SkillIcons/passives/ElementalMastery2.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 242, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8434 + ] + }, + "45436": { + "id": 45436, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage, Status Ailment Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "5% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50150 + ], + "in": [ + 45436 + ] + }, + "30969": { + "id": 30969, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Elemental Damage with Attack Skills" + ], + "g": 242, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36281 + ], + "in": [ + 30969 + ] + }, + "24362": { + "id": 24362, + "icon": "Art/2DArt/SkillIcons/passives/deepthoughts.png", + "ks": false, + "not": true, + "dn": "Deep Thoughts", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased maximum Mana", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + ], + "g": 243, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 60388, + 29781 + ], + "in": [] + }, + "29781": { + "id": 29781, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 243, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 29781, + 29781 + ] + }, + "60388": { + "id": 60388, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 243, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1031 + ], + "in": [ + 60388 + ] + }, + "2224": { + "id": 2224, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + "ks": false, + "not": false, + "dn": "Mana Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 243, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "21958": { + "id": 21958, + "icon": "Art/2DArt/SkillIcons/passives/thickskin.png", + "ks": false, + "not": true, + "dn": "Cruel Preparation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life", + "+5% to all Elemental Resistances" + ], + "g": 243, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14936 + ], + "in": [ + 21958 + ] + }, + "33755": { + "id": 33755, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 243, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1031, + 21958 + ], + "in": [] + }, + "14936": { + "id": 14936, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 243, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44184 + ], + "in": [ + 14936 + ] + }, + "59370": { + "id": 59370, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 244, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 63795 + ], + "in": [ + 59370 + ] + }, + "63795": { + "id": 63795, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 244, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 38662 + ], + "in": [ + 63795 + ] + }, + "4194": { + "id": 4194, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png", + "ks": false, + "not": false, + "dn": "Berserker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Marauder Ascendancy passives)", + "(Recently refers to the past 4 seconds)", + "(Maximum Rage is 50)", + "(You lose 1 Rage every 0.5 seconds if you have not been Hit or gained Rage Recently)", + "(You gain the following effects for having Rage:", + "1% increased Attack Damage per 1 Rage", + "1% increased Attack Speed per 2 Rage", + "1% increased Movement Speed per 5 Rage", + "Lose 0.1% of your maximum Life per second per 1 Rage)" + ], + "spc": [], + "sd": [ + "5% increased Damage taken", + "10% more Damage", + "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", + "Gain 1 Rage when you Kill an Enemy", + "Cannot be Stunned while you have at least 25 Rage" + ], + "g": 245, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 4194 + ] + }, + "1734": { + "id": 1734, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png", + "ks": false, + "not": true, + "dn": "Unflinching", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "30% chance to gain an Endurance Charge when you are Hit", + "25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges", + "Gain an Endurance Charge every second if you've been Hit Recently", + "+1 to Maximum Endurance Charges" + ], + "g": 246, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23972, + 62349 + ], + "in": [ + 1734 + ] + }, + "62349": { + "id": 62349, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png", + "ks": false, + "not": false, + "dn": "Armour, Stun Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Armour", + "20% increased Stun Duration on Enemies" + ], + "g": 246, + "o": 4, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62595 + ], + "in": [ + 62349 + ] + }, + "17765": { + "id": 17765, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Juggernaut", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 246, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32115, + 51998, + 49153, + 63417 + ], + "in": [ + 17765 + ] + }, + "23972": { + "id": 23972, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + "ks": false, + "not": false, + "dn": "Armour, Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Armour", + "18% increased Endurance Charge Duration" + ], + "g": 246, + "o": 4, + "oidx": 12, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 23972, + 23972 + ] + }, + "62595": { + "id": 62595, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png", + "ks": false, + "not": true, + "dn": "Unyielding", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Damage per Endurance Charge", + "5% increased Area of Effect per Endurance Charge", + "25% chance to gain an Endurance Charge when you Stun an Enemy", + "10% increased Stun Duration on Enemies per Endurance Charge" + ], + "g": 246, + "o": 4, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 62595 + ] + }, + "49153": { + "id": 49153, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + "ks": false, + "not": false, + "dn": "Armour, Endurance Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Armour", + "18% increased Endurance Charge Duration" + ], + "g": 246, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1734 + ], + "in": [ + 49153 + ] + }, + "32115": { + "id": 32115, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Armour, Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "6% increased Attack Speed", + "15% increased Armour" + ], + "g": 246, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44297 + ], + "in": [ + 32115 + ] + }, + "44297": { + "id": 44297, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png", + "ks": false, + "not": true, + "dn": "Undeniable", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+1000 to Accuracy Rating", + "1% increased Attack Speed per 200 Accuracy Rating", + "30% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", + "30% increased Damage if you've dealt a Critical Strike in the past 8 seconds", + "Gain Accuracy Rating equal to your Strength" + ], + "g": 246, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44297 + ] + }, + "56789": { + "id": 56789, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png", + "ks": false, + "not": true, + "dn": "Unrelenting", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "1% additional Physical Damage Reduction per Endurance Charge", + "8% reduced Elemental Damage taken while at Maximum Endurance Charges", + "+4% to Chaos Resistance per Endurance Charge" + ], + "g": 246, + "o": 4, + "oidx": 15, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23972 + ], + "in": [] + }, + "53816": { + "id": 53816, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png", + "ks": false, + "not": true, + "dn": "Unbreakable", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "2% of Life Regenerated per second", + "5% reduced Damage taken", + "Armour received from Body Armour is doubled", + "1.5% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second" + ], + "g": 247, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 53816 + ] + }, + "5819": { + "id": 5819, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png", + "ks": false, + "not": true, + "dn": "Unstoppable", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Movement Speed", + "Cannot be Stunned", + "You cannot be slowed to below base speed", + "Movement Speed cannot be modified to below base value" + ], + "g": 247, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 5819 + ] + }, + "63417": { + "id": 63417, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png", + "ks": false, + "not": false, + "dn": "Armour, Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Armour", + "4% increased Movement Speed" + ], + "g": 247, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5819 + ], + "in": [ + 63417 + ] + }, + "51998": { + "id": 51998, + "icon": "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png", + "ks": false, + "not": false, + "dn": "Armour, Stun Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Juggernaut", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Armour", + "20% increased Stun Duration on Enemies" + ], + "g": 247, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53816 + ], + "in": [ + 51998 + ] + }, + "22703": { + "id": 22703, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 248, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 14056 + ], + "in": [ + 22703 + ] + }, + "22473": { + "id": 22473, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 249, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10490, + 14211 + ], + "in": [ + 22473 + ] + }, + "49624": { + "id": 49624, + "icon": "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + "ks": false, + "not": true, + "dn": "Celerity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Evasion Rating", + "3% increased Movement Speed", + "5% increased Attack and Cast Speed" + ], + "g": 250, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 49624 + ] + }, + "43768": { + "id": 43768, + "icon": "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + "ks": false, + "not": false, + "dn": "Movement Speed and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "3% increased Movement Speed" + ], + "g": 250, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43170, + 22266 + ], + "in": [] + }, + "43170": { + "id": 43170, + "icon": "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + "ks": false, + "not": false, + "dn": "Movement Speed and Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "3% increased Movement Speed" + ], + "g": 250, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49624 + ], + "in": [ + 43170 + ] + }, + "8281": { + "id": 8281, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png", + "ks": false, + "not": false, + "dn": "Elementalist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Witch Ascendancy passives)" + ], + "spc": [], + "sd": [ + "Damage Penetrates 10% of Enemy Elemental Resistances", + "Cannot take Reflected Elemental Damage", + "40% increased Effect of Heralds on you", + "Shocks from your Hits always increase Damage taken by at least 10%", + "Can Summon up to 1 additional Golem at a time" + ], + "g": 251, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8281 + ] + }, + "46277": { + "id": 46277, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 252, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 56295, + 5629 + ], + "in": [ + 46277, + 46277, + 46277 + ] + }, + "62021": { + "id": 62021, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 62021, + 62021 + ] + }, + "65034": { + "id": 65034, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62021 + ], + "in": [ + 65034, + 65034 + ] + }, + "65167": { + "id": 65167, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13714 + ], + "in": [ + 65167 + ] + }, + "15073": { + "id": 15073, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42583, + 62021 + ], + "in": [] + }, + "42583": { + "id": 42583, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19939 + ], + "in": [ + 42583, + 42583 + ] + }, + "13714": { + "id": 13714, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 13714, + 13714, + 13714 + ] + }, + "12702": { + "id": 12702, + "icon": "Art/2DArt/SkillIcons/passives/Warrior.png", + "ks": false, + "not": true, + "dn": "Path of the Warrior", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage", + "+10 to Armour", + "+20 to Strength" + ], + "g": 253, + "o": 3, + "oidx": 2, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 42583 + ], + "in": [ + 12702 + ] + }, + "61787": { + "id": 61787, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 253, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "19939": { + "id": 19939, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 253, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65167 + ], + "in": [ + 19939 + ] + }, + "55485": { + "id": 55485, + "icon": "Art/2DArt/SkillIcons/passives/Constitution.png", + "ks": false, + "not": true, + "dn": "Constitution", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to maximum Life", + "14% increased maximum Life" + ], + "g": 253, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13714, + 65034 + ], + "in": [] + }, + "6237": { + "id": 6237, + "icon": "Art/2DArt/SkillIcons/passives/precision.png", + "ks": false, + "not": true, + "dn": "Precision", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Global Accuracy Rating", + "3% increased Movement Speed", + "3% increased Attack and Cast Speed", + "+20 to Dexterity" + ], + "g": 254, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 15599, + 44529 + ], + "in": [] + }, + "41472": { + "id": 41472, + "icon": "Art/2DArt/SkillIcons/passives/newtitanicmight.png", + "ks": false, + "not": true, + "dn": "Discipline and Training", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to maximum Life", + "10% increased maximum Life" + ], + "g": 254, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61471, + 44799, + 58453 + ], + "in": [ + 41472 + ] + }, + "15599": { + "id": 15599, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "3% increased Attack and Cast Speed" + ], + "g": 254, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 15599, + 15599 + ] + }, + "44529": { + "id": 44529, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Attack and Cast Speed, Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Global Accuracy Rating", + "3% increased Attack and Cast Speed" + ], + "g": 254, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49254 + ], + "in": [ + 44529 + ] + }, + "1203": { + "id": 1203, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 254, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41472, + 49254 + ], + "in": [] + }, + "61471": { + "id": 61471, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life" + ], + "g": 254, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26866 + ], + "in": [ + 61471 + ] + }, + "20812": { + "id": 20812, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating" + ], + "g": 255, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44103 + ], + "in": [ + 20812, + 20812 + ] + }, + "59220": { + "id": 59220, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance" + ], + "g": 256, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9469, + 20807 + ], + "in": [] + }, + "9469": { + "id": 9469, + "icon": "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + "ks": false, + "not": false, + "dn": "Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance" + ], + "g": 256, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9469, + 9469 + ] + }, + "65502": { + "id": 65502, + "icon": "Art/2DArt/SkillIcons/passives/heartseeker.png", + "ks": false, + "not": true, + "dn": "Heartseeker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30% to Critical Strike Multiplier" + ], + "g": 256, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9469 + ], + "in": [] + }, + "42900": { + "id": 42900, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Totem Damage" + ], + "g": 257, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24157, + 31875 + ], + "in": [] + }, + "24157": { + "id": 24157, + "icon": "Art/2DArt/SkillIcons/passives/totemdamage.png", + "ks": false, + "not": false, + "dn": "Totem Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Totem Damage" + ], + "g": 257, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53757 + ], + "in": [ + 24157 + ] + }, + "53757": { + "id": 53757, + "icon": "Art/2DArt/SkillIcons/passives/shamsnisticfury.png", + "ks": false, + "not": true, + "dn": "Shamanistic Fury", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Totem Damage", + "15% increased Totem Placement speed" + ], + "g": 257, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 53757 + ] + }, + "38805": { + "id": 38805, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect" + ], + "g": 258, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19635 + ], + "in": [ + 38805, + 38805 + ] + }, + "21075": { + "id": 21075, + "icon": "Art/2DArt/SkillIcons/passives/areaofeffect.png", + "ks": false, + "not": false, + "dn": "Area of Effect Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area Damage" + ], + "g": 258, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38805, + 38900 + ], + "in": [ + 21075 + ] + }, + "38900": { + "id": 38900, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": false, + "dn": "Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect" + ], + "g": 258, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38805 + ], + "in": [ + 38900, + 38900 + ] + }, + "37078": { + "id": 37078, + "icon": "Art/2DArt/SkillIcons/passives/SavantPath.png", + "ks": false, + "not": true, + "dn": "Path of the Savant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Spell Damage", + "+20 to maximum Mana", + "+20 to Intelligence" + ], + "g": 259, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 11430 + ], + "in": [ + 37078 + ] + }, + "61327": { + "id": 61327, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Weapon Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage with Attack Skills" + ], + "g": 260, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51404 + ], + "in": [ + 61327 + ] + }, + "51404": { + "id": 51404, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Weapon Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Cold Damage with Attack Skills" + ], + "g": 260, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 51404, + 51404 + ] + }, + "57199": { + "id": 57199, + "icon": "Art/2DArt/SkillIcons/passives/icebite.png", + "ks": false, + "not": true, + "dn": "Fangs of Frost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Damage with Weapons Penetrates 8% Cold Resistance", + "30% increased Cold Damage with Attack Skills", + "10% increased Effect of Chill" + ], + "g": 260, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61327 + ], + "in": [] + }, + "798": { + "id": 798, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 261, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8001 + ], + "in": [ + 798, + 798 + ] + }, + "4399": { + "id": 4399, + "icon": "Art/2DArt/SkillIcons/passives/newenergyshield.png", + "ks": false, + "not": true, + "dn": "Nullification", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "10% increased maximum Energy Shield", + "5% increased maximum Life", + "+8% to all Elemental Resistances" + ], + "g": 261, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 4399, + 4399 + ] + }, + "11018": { + "id": 11018, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 261, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4399, + 24050, + 798, + 58244 + ], + "in": [] + }, + "60259": { + "id": 60259, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + ], + "g": 261, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4399, + 798, + 13885 + ], + "in": [ + 60259 + ] + }, + "8001": { + "id": 8001, + "icon": "Art/2DArt/SkillIcons/passives/Sniper2.png", + "ks": false, + "not": true, + "dn": "Sniper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Speed", + "20% increased Projectile Damage" + ], + "g": 261, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8001 + ] + }, + "22627": { + "id": 22627, + "icon": "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Armour", + "5% increased maximum Life" + ], + "g": 262, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50904 + ], + "in": [ + 22627 + ] + }, + "43316": { + "id": 43316, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Physical Damage" + ], + "g": 263, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47065 + ], + "in": [ + 43316 + ] + }, + "19210": { + "id": 19210, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Physical Damage" + ], + "g": 263, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43316 + ], + "in": [ + 19210 + ] + }, + "47065": { + "id": 47065, + "icon": "Art/2DArt/SkillIcons/passives/MasterofForce.png", + "ks": false, + "not": true, + "dn": "Master of Force", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Global Physical Damage", + "10% reduced Reflected Physical Damage taken" + ], + "g": 263, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 47065 + ] + }, + "8938": { + "id": 8938, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 264, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 49978, + 56090 + ], + "in": [ + 8938, + 8938 + ] + }, + "11551": { + "id": 11551, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 265, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 11551, + 11551, + 11551 + ] + }, + "38176": { + "id": 38176, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 265, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 27415, + 11551, + 49651 + ], + "in": [ + 38176 + ] + }, + "27415": { + "id": 27415, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 265, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 27415, + 27415 + ] + }, + "57562": { + "id": 57562, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png", + "ks": false, + "not": false, + "dn": "One Hand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 266, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "23801": { + "id": 23801, + "icon": "Art/2DArt/SkillIcons/passives/onehanddamage.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with One Handed Melee Weapons", + "15% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 266, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46871 + ], + "in": [ + 23801 + ] + }, + "46871": { + "id": 46871, + "icon": "Art/2DArt/SkillIcons/passives/onehandspeed.png", + "ks": false, + "not": false, + "dn": "One Handed Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with One Handed Melee Weapons" + ], + "g": 266, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 46871, + 46871, + 46871 + ] + }, + "14486": { + "id": 14486, + "icon": "Art/2DArt/SkillIcons/passives/fencing.png", + "ks": false, + "not": true, + "dn": "Fencing", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with One Handed Melee Weapons", + "30% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 266, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25690 + ], + "in": [ + 14486 + ] + }, + "32993": { + "id": 32993, + "icon": "Art/2DArt/SkillIcons/passives/criticaldagger.png", + "ks": false, + "not": false, + "dn": "One Handed Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Critical Strike Chance with One Handed Melee Weapons" + ], + "g": 266, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57950, + 46871 + ], + "in": [] + }, + "25690": { + "id": 25690, + "icon": "Art/2DArt/SkillIcons/passives/onehandspeed.png", + "ks": false, + "not": false, + "dn": "One Handed Attack Speed and Ailment Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with One Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 266, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23801 + ], + "in": [ + 25690 + ] + }, + "57950": { + "id": 57950, + "icon": "Art/2DArt/SkillIcons/passives/criticaldagger.png", + "ks": false, + "not": false, + "dn": "One Handed Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Critical Strike Chance with One Handed Melee Weapons" + ], + "g": 266, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14486 + ], + "in": [ + 57950 + ] + }, + "50904": { + "id": 50904, + "icon": "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Armour", + "+16 to maximum Life" + ], + "g": 267, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6981 + ], + "in": [ + 50904, + 50904, + 50904 + ] + }, + "31628": { + "id": 31628, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+16 to maximum Life", + "16% increased Melee Physical Damage" + ], + "g": 267, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9511 + ], + "in": [ + 31628, + 31628, + 31628 + ] + }, + "47175": { + "id": 47175, + "icon": "Art/2DArt/SkillIcons/passives/blankStr.png", + "ks": false, + "not": false, + "dn": "MARAUDER", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 1 + ], + "sd": [], + "g": 267, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31628, + 50904, + 17765, + 24704, + 29294 + ], + "in": [ + 47175 + ] + }, + "64210": { + "id": 64210, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 268, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 26270, + 5935, + 63425 + ], + "in": [ + 64210, + 64210 + ] + }, + "2550": { + "id": 2550, + "icon": "Art/2DArt/SkillIcons/passives/arsonist.png", + "ks": false, + "not": true, + "dn": "Arsonist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Fire Damage", + "1% of Life Regenerated per second" + ], + "g": 269, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 2550 + ] + }, + "54396": { + "id": 54396, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Fire Damage" + ], + "g": 269, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2550 + ], + "in": [ + 54396 + ] + }, + "1550": { + "id": 1550, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Fire Damage" + ], + "g": 269, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54396, + 10221 + ], + "in": [] + }, + "14923": { + "id": 14923, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + "ks": false, + "not": false, + "dn": "Fire Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 269, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "62303": { + "id": 62303, + "icon": "Art/2DArt/SkillIcons/passives/manastr.png", + "ks": false, + "not": false, + "dn": "Mana and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Mana", + "3% reduced Mana Cost of Skills" + ], + "g": 270, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31931 + ], + "in": [ + 62303 + ] + }, + "14674": { + "id": 14674, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Curse Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Cast Speed for Curses" + ], + "g": 271, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22535 + ], + "in": [ + 14674 + ] + }, + "31973": { + "id": 31973, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Effect of your Curses" + ], + "g": 271, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30767 + ], + "in": [ + 31973 + ] + }, + "22535": { + "id": 22535, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png", + "ks": false, + "not": true, + "dn": "Whispers of Doom", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "You can apply an additional Curse" + ], + "g": 271, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31973 + ], + "in": [ + 22535 + ] + }, + "30767": { + "id": 30767, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Effect of your Curses" + ], + "g": 271, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6250 + ], + "in": [ + 30767 + ] + }, + "6250": { + "id": 6250, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Curse Duration" + ], + "g": 271, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39841, + 14674 + ], + "in": [ + 6250 + ] + }, + "2821": { + "id": 2821, + "icon": "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + "ks": false, + "not": false, + "dn": "Curse Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 271, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "49412": { + "id": 49412, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 272, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 21941, + 31080 + ], + "in": [ + 49412, + 49412 + ] + }, + "26294": { + "id": 26294, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": true, + "dn": "Bloodletting", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "40% increased Attack Damage against Bleeding Enemies", + "70% increased Damage with Bleeding" + ], + "g": 273, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17833 + ], + "in": [ + 26294 + ] + }, + "23199": { + "id": 23199, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage with Bleeding" + ], + "g": 273, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6741, + 60887 + ], + "in": [ + 23199 + ] + }, + "17833": { + "id": 17833, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 15% chance to cause Bleeding" + ], + "g": 273, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11568 + ], + "in": [ + 17833 + ] + }, + "60887": { + "id": 60887, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Damage with Bleeding" + ], + "g": 273, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26294 + ], + "in": [ + 60887 + ] + }, + "11568": { + "id": 11568, + "icon": "Art/2DArt/SkillIcons/passives/Blood2.png", + "ks": false, + "not": false, + "dn": "Bleed Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "Attacks have 15% chance to cause Bleeding" + ], + "g": 273, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23199 + ], + "in": [ + 11568 + ] + }, + "48958": { + "id": 48958, + "icon": "Art/2DArt/SkillIcons/passives/BloodMastery.png", + "ks": false, + "not": false, + "dn": "Bleeding Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 273, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "13885": { + "id": 13885, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 274, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 28012, + 40362 + ], + "in": [ + 13885, + 13885, + 13885 + ] + }, + "7112": { + "id": 7112, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 274, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 13885 + ], + "in": [ + 7112, + 7112 + ] + }, + "58244": { + "id": 58244, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 274, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 49308, + 7112 + ], + "in": [ + 58244, + 58244, + 58244 + ] + }, + "3644": { + "id": 3644, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 275, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 14930 + ], + "in": [ + 3644, + 3644, + 3644 + ] + }, + "34009": { + "id": 34009, + "icon": "Art/2DArt/SkillIcons/passives/Meleerange.png", + "ks": false, + "not": true, + "dn": "Master of the Arena", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "1% of Life Regenerated per second", + "8% increased Melee Physical Damage", + "+2 to Melee Weapon and Unarmed Attack range", + "+20 to Strength" + ], + "g": 276, + "o": 0, + "oidx": 0, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 51856, + 50360, + 18302, + 476 + ], + "in": [ + 34009, + 34009 + ] + }, + "16745": { + "id": 16745, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + ], + "g": 277, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19641 + ], + "in": [ + 16745 + ] + }, + "37419": { + "id": 37419, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + ], + "g": 277, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42264 + ], + "in": [ + 37419 + ] + }, + "32992": { + "id": 32992, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Block Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "+2% Chance to Block Attack Damage" + ], + "g": 277, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39728 + ], + "in": [ + 32992 + ] + }, + "409": { + "id": 409, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Guardian", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 277, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37419, + 32364, + 46952, + 32992, + 40010 + ], + "in": [ + 409 + ] + }, + "42264": { + "id": 42264, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png", + "ks": false, + "not": true, + "dn": "Radiant Faith", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Grants Armour equal to 160% of your Reserved Life to you and nearby Allies", + "Grants maximum Energy Shield equal to 15% of your Reserved Mana to\nyou and nearby Allies" + ], + "g": 277, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20050 + ], + "in": [ + 42264 + ] + }, + "4494": { + "id": 4494, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png", + "ks": false, + "not": true, + "dn": "Radiant Crusade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "You and Allies affected by your Aura Skills deal 20% increased Damage", + "10% more Damage while you have at least one nearby Ally", + "Herald of Purity has 40% increased Buff Effect", + "Summoned Sentinels of Purity have 50% increased Area of Effect" + ], + "g": 277, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16745 + ], + "in": [ + 4494 + ] + }, + "40010": { + "id": 40010, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + ], + "g": 277, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4494 + ], + "in": [ + 40010 + ] + }, + "55146": { + "id": 55146, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png", + "ks": false, + "not": true, + "dn": "Time of Need", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "25% reduced Effect of Curses on you", + "Every 5 seconds, remove Curses and Elemental Ailments from you", + "Every 5 seconds, 30% of Maximum Life Regenerated over one second" + ], + "g": 277, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55146 + ] + }, + "39728": { + "id": 39728, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png", + "ks": false, + "not": true, + "dn": "Bastion of Hope", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+50% Chance to Block Attack Damage for 2 seconds every 5 seconds", + "If you've Blocked in the past 10 seconds, you\nand nearby Allies cannot be Stunned", + "If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage", + "If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage" + ], + "g": 277, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39728 + ] + }, + "32364": { + "id": 32364, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "0.5% of Life Regenerated per second" + ], + "g": 277, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55146 + ], + "in": [ + 32364 + ] + }, + "46952": { + "id": 46952, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "20% increased Endurance, Frenzy and Power Charge Duration" + ], + "g": 277, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61372 + ], + "in": [ + 46952 + ] + }, + "20050": { + "id": 20050, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield, Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "14% increased Armour", + "6% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + ], + "g": 277, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64768 + ], + "in": [ + 20050 + ] + }, + "61372": { + "id": 61372, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png", + "ks": false, + "not": true, + "dn": "Harmony of Purpose", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", + "You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other", + "10% chance to gain a Power, Frenzy or Endurance Charge on Hit" + ], + "g": 277, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61372 + ] + }, + "64768": { + "id": 64768, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png", + "ks": false, + "not": true, + "dn": "Unwavering Faith", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Auras from your Skills grant +1% Physical Damage Reduction to you and Allies", + "Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to\nyou and Allies" + ], + "g": 277, + "o": 4, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 64768 + ] + }, + "19641": { + "id": 19641, + "icon": "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png", + "ks": false, + "not": true, + "dn": "Unwavering Crusade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Guardian", + "isAscendancyStart": false, + "reminderText": [ + "(Intimidated enemies take 10% increased Attack Damage)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "10% increased Area of Effect for each Summoned Sentinel of Purity", + "Summoned Sentinels use Crusade Slam", + "100% increased Minion Accuracy Rating", + "Minions Intimidate Enemies for 4 seconds on Hit", + "If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second" + ], + "g": 277, + "o": 4, + "oidx": 19, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 19641 + ] + }, + "40535": { + "id": 40535, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage" + ], + "g": 278, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7828, + 58449 + ], + "in": [ + 40535 + ] + }, + "30335": { + "id": 30335, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Melee Physical Damage" + ], + "g": 278, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40535 + ], + "in": [ + 30335 + ] + }, + "32480": { + "id": 32480, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Melee Physical Damage" + ], + "g": 278, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30335, + 33988 + ], + "in": [ + 32480 + ] + }, + "7828": { + "id": 7828, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Melee Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Melee Attack Speed" + ], + "g": 278, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32480 + ], + "in": [ + 7828 + ] + }, + "37504": { + "id": 37504, + "icon": "Art/2DArt/SkillIcons/passives/clawsofthepride.png", + "ks": false, + "not": true, + "dn": "Claws of the Pride", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Physical Damage with Claws", + "20% increased Accuracy Rating with Claws", + "40% increased Critical Strike Chance with Claws", + "+20% to Critical Strike Multiplier with Claws", + "16% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 279, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 37504 + ] + }, + "39447": { + "id": 39447, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Claws", + "3% increased Attack Speed with Claws", + "8% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 279, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37504 + ], + "in": [ + 39447 + ] + }, + "37776": { + "id": 37776, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Claws", + "3% increased Attack Speed with Claws", + "8% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 279, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39447, + 59252 + ], + "in": [] + }, + "56075": { + "id": 56075, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", + "ks": true, + "not": false, + "dn": "Eldritch Battery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "What need have I for defence when my enemies are reduced to ash and splinters?" + ], + "spc": [], + "sd": [ + "Spend Energy Shield before Mana for Skill Costs\nEnergy Shield protects Mana instead of Life" + ], + "g": 280, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56075 + ] + }, + "36222": { + "id": 36222, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 281, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47030, + 17201 + ], + "in": [ + 36222 + ] + }, + "52632": { + "id": 52632, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage and Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Speed", + "6% increased Projectile Damage" + ], + "g": 281, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36222 + ], + "in": [ + 52632 + ] + }, + "47030": { + "id": 47030, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 281, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30155 + ], + "in": [ + 47030 + ] + }, + "60002": { + "id": 60002, + "icon": "Art/2DArt/SkillIcons/passives/furybolts.png", + "ks": false, + "not": true, + "dn": "Fury Bolts", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Global Accuracy Rating", + "20% increased Projectile Damage", + "+20 to Strength" + ], + "g": 281, + "o": 2, + "oidx": 3, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 52632 + ], + "in": [ + 60002 + ] + }, + "30155": { + "id": 30155, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 281, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60002, + 48807 + ], + "in": [ + 30155 + ] + }, + "24383": { + "id": 24383, + "icon": "Art/2DArt/SkillIcons/passives/trollblood.png", + "ks": false, + "not": true, + "dn": "Warrior's Blood", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "1.8% of Life Regenerated per second", + "20% increased Stun Threshold", + "+20 to Strength" + ], + "g": 282, + "o": 0, + "oidx": 0, + "sa": 20, + "da": 0, + "ia": 0, + "out": [ + 49412, + 5152 + ], + "in": [ + 24383, + 24383, + 24383 + ] + }, + "58763": { + "id": 58763, + "icon": "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png", + "ks": false, + "not": false, + "dn": "Cold and Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Cold Damage", + "8% increased Lightning Damage" + ], + "g": 283, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63963 + ], + "in": [ + 58763, + 58763 + ] + }, + "63963": { + "id": 63963, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage and Chill Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Cold Damage", + "10% increased Effect of Chill" + ], + "g": 283, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63963, + 63963 + ] + }, + "7153": { + "id": 7153, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage and Shock Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Lightning Damage", + "10% increased Effect of Shock" + ], + "g": 283, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58763, + 32455 + ], + "in": [] + }, + "32455": { + "id": 32455, + "icon": "Art/2DArt/SkillIcons/passives/Storm Weaver.png", + "ks": false, + "not": true, + "dn": "Storm Weaver", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Cold Damage", + "25% increased Lightning Damage", + "20% increased Mana Regeneration Rate" + ], + "g": 283, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63963 + ], + "in": [ + 32455 + ] + }, + "38599": { + "id": 38599, + "icon": "Art/2DArt/SkillIcons/passives/ColdLightningMastery.png", + "ks": false, + "not": false, + "dn": "Elemental Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 283, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "11412": { + "id": 11412, + "icon": "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png", + "ks": false, + "not": true, + "dn": "Inspirational", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "You and nearby Allies deal 35% increased Damage", + "You and nearby Allies have 12% increased Movement Speed" + ], + "g": 284, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11412 + ] + }, + "35185": { + "id": 35185, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "14% increased Melee Damage", + "14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 284, + "o": 4, + "oidx": 31, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31700 + ], + "in": [ + 35185 + ] + }, + "61478": { + "id": 61478, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Taunt Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "20% increased Taunt Duration" + ], + "g": 284, + "o": 4, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56967 + ], + "in": [ + 61478 + ] + }, + "6982": { + "id": 6982, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Taunt Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "20% increased Taunt Duration" + ], + "g": 284, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35750 + ], + "in": [ + 6982 + ] + }, + "35750": { + "id": 35750, + "icon": "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png", + "ks": false, + "not": true, + "dn": "Conqueror", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)", + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + ], + "spc": [], + "sd": [ + "100% chance to Taunt on Hit", + "6% reduced Damage taken if you've Taunted an Enemy Recently", + "2% of Life Regenerated per second if you've Taunted an Enemy Recently", + "Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets" + ], + "g": 284, + "o": 4, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61478 + ], + "in": [ + 35750 + ] + }, + "43725": { + "id": 43725, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "14% increased Melee Damage", + "14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 284, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27604 + ], + "in": [ + 43725 + ] + }, + "60508": { + "id": 60508, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "14% increased Melee Damage", + "14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon" + ], + "g": 284, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33940 + ], + "in": [ + 60508 + ] + }, + "25111": { + "id": 25111, + "icon": "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png", + "ks": false, + "not": false, + "dn": "Armour and Evasion, Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating and Armour", + "5% increased effect of Non-Curse Auras from your Skills" + ], + "g": 284, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11412 + ], + "in": [ + 25111 + ] + }, + "31700": { + "id": 31700, + "icon": "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png", + "ks": false, + "not": true, + "dn": "Fortitude", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "reminderText": [ + "(Fortify grants 20% reduced Damage Taken from Hits)" + ], + "spc": [], + "sd": [ + "You have Fortify" + ], + "g": 284, + "o": 4, + "oidx": 29, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 31700 + ] + }, + "33940": { + "id": 33940, + "icon": "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png", + "ks": false, + "not": true, + "dn": "Unstoppable Hero", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Attack Speed while you have Fortify", + "30% increased Melee Damage while you have Fortify", + "+1000 to Armour and Evasion Rating while you have Fortify", + "Cannot be Stunned while you have Fortify" + ], + "g": 284, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35185 + ], + "in": [ + 33940 + ] + }, + "56967": { + "id": 56967, + "icon": "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png", + "ks": false, + "not": true, + "dn": "Worthy Foe", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Enemies you Taunt take 20% increased Damage", + "Enemies Taunted by you cannot Evade Attacks" + ], + "g": 284, + "o": 4, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56967 + ] + }, + "27604": { + "id": 27604, + "icon": "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png", + "ks": false, + "not": true, + "dn": "First to Strike, Last to Fall", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": false, + "reminderText": [ + "(Intimidated enemies take 10% increased Attack Damage)", + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction)" + ], + "spc": [], + "sd": [ + "Your Hits permanently Intimidate Enemies that are on Full Life", + "Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline", + "Remove all Ailments and Burning when you gain Adrenaline" + ], + "g": 284, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27604 + ] + }, + "24984": { + "id": 24984, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Champion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Champion", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 284, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6982, + 60508, + 25111, + 43725 + ], + "in": [ + 24984 + ] + }, + "12143": { + "id": 12143, + "icon": "Art/2DArt/SkillIcons/passives/influence.png", + "ks": false, + "not": true, + "dn": "Influence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased effect of Non-Curse Auras from your Skills" + ], + "g": 285, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55571 + ], + "in": [] + }, + "28859": { + "id": 28859, + "icon": "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + "ks": false, + "not": false, + "dn": "Reduced Mana Reservation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% reduced Mana Reserved" + ], + "g": 285, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60440 + ], + "in": [ + 28859 + ] + }, + "55571": { + "id": 55571, + "icon": "Art/2DArt/SkillIcons/passives/auraeffect.png", + "ks": false, + "not": false, + "dn": "Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 285, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28859 + ], + "in": [ + 55571 + ] + }, + "23881": { + "id": 23881, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 286, + "o": 4, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 26523 + ], + "in": [ + 23881 + ] + }, + "9511": { + "id": 9511, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 286, + "o": 4, + "oidx": 3, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 23881 + ], + "in": [ + 9511 + ] + }, + "49978": { + "id": 49978, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 287, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 35296, + 6538, + 39861 + ], + "in": [ + 49978, + 49978 + ] + }, + "36858": { + "id": 36858, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 288, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 60440, + 61653, + 53456, + 23616 + ], + "in": [ + 36858 + ] + }, + "25757": { + "id": 25757, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance for Spells" + ], + "g": 289, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61981 + ], + "in": [ + 25757 + ] + }, + "61981": { + "id": 61981, + "icon": "Art/2DArt/SkillIcons/passives/doomcast.png", + "ks": false, + "not": true, + "dn": "Doom Cast", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "60% increased Critical Strike Chance for Spells", + "+15% to Critical Strike Multiplier for Spells" + ], + "g": 289, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47507 + ], + "in": [ + 61981 + ] + }, + "49929": { + "id": 49929, + "icon": "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier for Spells" + ], + "g": 289, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60405 + ], + "in": [ + 49929 + ] + }, + "47507": { + "id": 47507, + "icon": "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier for Spells" + ], + "g": 289, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49929 + ], + "in": [ + 47507 + ] + }, + "60405": { + "id": 60405, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance for Spells" + ], + "g": 289, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25757, + 36858 + ], + "in": [ + 60405 + ] + }, + "43416": { + "id": 43416, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + "ks": false, + "not": false, + "dn": "Spell Critical Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 289, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "25237": { + "id": 25237, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana and Mana Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Mana", + "10% increased Mana Regeneration Rate" + ], + "g": 290, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10835 + ], + "in": [ + 25237 + ] + }, + "45680": { + "id": 45680, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 290, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25237, + 46092, + 10835 + ], + "in": [] + }, + "10835": { + "id": 10835, + "icon": "Art/2DArt/SkillIcons/passives/Dreamer.png", + "ks": false, + "not": true, + "dn": "Dreamer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased maximum Mana", + "15% increased Mana Regeneration Rate" + ], + "g": 290, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10835, + 10835 + ] + }, + "39718": { + "id": 39718, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 291, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 1529 + ], + "in": [ + 39718, + 39718, + 39718, + 39718 + ] + }, + "40867": { + "id": 40867, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 292, + "o": 4, + "oidx": 33, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 476 + ], + "in": [ + 40867 + ] + }, + "42911": { + "id": 42911, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 292, + "o": 4, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 40867 + ], + "in": [ + 42911 + ] + }, + "22893": { + "id": 22893, + "icon": "Art/2DArt/SkillIcons/passives/skillduration.png", + "ks": false, + "not": false, + "dn": "Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration" + ], + "g": 293, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53042 + ], + "in": [ + 22893 + ] + }, + "24472": { + "id": 24472, + "icon": "Art/2DArt/SkillIcons/passives/skillduration.png", + "ks": false, + "not": false, + "dn": "Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration" + ], + "g": 293, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 22893 + ], + "in": [ + 24472 + ] + }, + "53042": { + "id": 53042, + "icon": "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png", + "ks": false, + "not": true, + "dn": "Exceptional Performance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Skill Effect Duration" + ], + "g": 293, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 53042 + ] + }, + "6615": { + "id": 6615, + "icon": "Art/2DArt/SkillIcons/passives/sparkingattacks.png", + "ks": false, + "not": true, + "dn": "Arcing Blows", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Damage with Weapons Penetrates 8% Lightning Resistance", + "30% increased Lightning Damage with Attack Skills", + "10% increased Effect of Shock" + ], + "g": 294, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44339 + ], + "in": [] + }, + "37394": { + "id": 37394, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + "ks": false, + "not": false, + "dn": "Lightning Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 294, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "44339": { + "id": 44339, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Weapon Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Lightning Damage with Attack Skills" + ], + "g": 294, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44339, + 44339 + ] + }, + "12379": { + "id": 12379, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Lightning Damage" + ], + "g": 294, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44183, + 44339 + ], + "in": [ + 12379 + ] + }, + "44183": { + "id": 44183, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": false, + "dn": "Lightning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Lightning Damage" + ], + "g": 294, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7555 + ], + "in": [ + 44183 + ] + }, + "7555": { + "id": 7555, + "icon": "Art/2DArt/SkillIcons/passives/lightningint.png", + "ks": false, + "not": true, + "dn": "Crackling Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Lightning Damage", + "4% increased Cast Speed", + "+15% to Critical Strike Multiplier", + "10% increased Effect of Shock" + ], + "g": 294, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 7555 + ] + }, + "62662": { + "id": 62662, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Melee Physical Damage" + ], + "g": 295, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17674 + ], + "in": [ + 62662 + ] + }, + "17674": { + "id": 17674, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Melee Physical Damage" + ], + "g": 295, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13782 + ], + "in": [ + 17674 + ] + }, + "13782": { + "id": 13782, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Melee Physical Damage" + ], + "g": 295, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12702 + ], + "in": [ + 13782 + ] + }, + "56066": { + "id": 56066, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage with Wands" + ], + "g": 296, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39841 + ], + "in": [ + 56066, + 56066 + ] + }, + "54043": { + "id": 54043, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage with Wands" + ], + "g": 296, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30926 + ], + "in": [ + 54043 + ] + }, + "30926": { + "id": 30926, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage with Wands" + ], + "g": 296, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56066 + ], + "in": [ + 30926 + ] + }, + "11765": { + "id": 11765, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + "ks": false, + "not": false, + "dn": "Wand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 296, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "63944": { + "id": 63944, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": true, + "dn": "Prism Weave", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Speed with Wands", + "30% increased Elemental Damage with Wands" + ], + "g": 296, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54043 + ], + "in": [ + 63944 + ] + }, + "20844": { + "id": 20844, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Wands" + ], + "g": 296, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63944 + ], + "in": [ + 20844 + ] + }, + "62217": { + "id": 62217, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Wands" + ], + "g": 296, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20844, + 56066 + ], + "in": [] + }, + "44908": { + "id": 44908, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 297, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 50570, + 2913 + ], + "in": [ + 44908, + 44908, + 44908 + ] + }, + "42795": { + "id": 42795, + "icon": "Art/2DArt/SkillIcons/passives/arcane focus.png", + "ks": false, + "not": true, + "dn": "Arcane Focus", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + ], + "g": 298, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42795, + 42795 + ] + }, + "4432": { + "id": 4432, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield" + ], + "g": 298, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27929, + 42795 + ], + "in": [] + }, + "65203": { + "id": 65203, + "icon": "Art/2DArt/SkillIcons/passives/manaregeneration.png", + "ks": false, + "not": false, + "dn": "Mana and Mana Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + ], + "g": 298, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27163 + ], + "in": [ + 65203 + ] + }, + "48514": { + "id": 48514, + "icon": "Art/2DArt/SkillIcons/passives/manaregeneration.png", + "ks": false, + "not": false, + "dn": "Mana and Mana Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + ], + "g": 298, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7503 + ], + "in": [ + 48514 + ] + }, + "13753": { + "id": 13753, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield" + ], + "g": 298, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42795, + 7503 + ], + "in": [] + }, + "7503": { + "id": 7503, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield and Recovery, Mana Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate", + "5% increased Mana Regeneration Rate" + ], + "g": 298, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38176 + ], + "in": [ + 7503, + 7503 + ] + }, + "27163": { + "id": 27163, + "icon": "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png", + "ks": false, + "not": true, + "dn": "Arcane Will", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased maximum Mana", + "2 Mana Regenerated per second", + "20% increased Mana Recovery from Flasks" + ], + "g": 298, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48514 + ], + "in": [ + 27163 + ] + }, + "16544": { + "id": 16544, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 299, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 8544, + 24083 + ], + "in": [ + 16544, + 16544, + 16544 + ] + }, + "16243": { + "id": 16243, + "icon": "Art/2DArt/SkillIcons/passives/fussilade.png", + "ks": false, + "not": true, + "dn": "Fusillade", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Wand Damage per Power Charge" + ], + "g": 300, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48878, + 27879 + ], + "in": [] + }, + "51524": { + "id": 51524, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Attack Speed and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Attack Speed with Wands", + "15% increased Accuracy Rating with Wands" + ], + "g": 300, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51146 + ], + "in": [ + 51524 + ] + }, + "21030": { + "id": 21030, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + "ks": false, + "not": false, + "dn": "Wand Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 300, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "29552": { + "id": 29552, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Wands", + "15% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 300, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40840 + ], + "in": [ + 29552 + ] + }, + "39521": { + "id": 39521, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage with Wands", + "12% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 300, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49779, + 5296 + ], + "in": [ + 39521 + ] + }, + "40840": { + "id": 40840, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Wands", + "15% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 300, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63207 + ], + "in": [ + 40840 + ] + }, + "49779": { + "id": 49779, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage with Wands", + "15% increased Damage with Ailments from Attack Skills while wielding a Wand" + ], + "g": 300, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29552 + ], + "in": [ + 49779 + ] + }, + "48878": { + "id": 48878, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Attack Speed and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Attack Speed with Wands", + "15% increased Accuracy Rating with Wands" + ], + "g": 300, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51524 + ], + "in": [ + 48878 + ] + }, + "51146": { + "id": 51146, + "icon": "Art/2DArt/SkillIcons/passives/masterywand.png", + "ks": false, + "not": false, + "dn": "Wand Attack Speed and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Attack Speed with Wands", + "15% increased Accuracy Rating with Wands" + ], + "g": 300, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39521 + ], + "in": [ + 51146 + ] + }, + "63207": { + "id": 63207, + "icon": "Art/2DArt/SkillIcons/passives/TempestBlast.png", + "ks": false, + "not": true, + "dn": "Tempest Blast", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Gain 30% of Wand Physical Damage as Extra Lightning Damage" + ], + "g": 300, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63207, + 63207 + ] + }, + "52848": { + "id": 52848, + "icon": "Art/2DArt/SkillIcons/passives/WandCritical.png", + "ks": false, + "not": false, + "dn": "Wand Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + ], + "g": 300, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63207 + ], + "in": [ + 52848 + ] + }, + "2464": { + "id": 2464, + "icon": "Art/2DArt/SkillIcons/passives/WandCritical.png", + "ks": false, + "not": false, + "dn": "Wand Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + ], + "g": 300, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52848 + ], + "in": [ + 2464 + ] + }, + "27879": { + "id": 27879, + "icon": "Art/2DArt/SkillIcons/passives/WandCritical.png", + "ks": false, + "not": false, + "dn": "Wand Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + ], + "g": 300, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2464 + ], + "in": [ + 27879 + ] + }, + "39648": { + "id": 39648, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + ], + "g": 301, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39648, + 39648 + ] + }, + "17821": { + "id": 17821, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + ], + "g": 301, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39648 + ], + "in": [ + 17821 + ] + }, + "21330": { + "id": 21330, + "icon": "Art/2DArt/SkillIcons/passives/QuickRecovery.png", + "ks": false, + "not": true, + "dn": "Quick Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life", + "20% increased Mana Regeneration Rate", + "0.8% of Life Regenerated per second" + ], + "g": 301, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17821 + ], + "in": [] + }, + "39443": { + "id": 39443, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Daggers", + "20% increased Critical Strike Chance with Daggers", + "6% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 302, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56276 + ], + "in": [ + 39443 + ] + }, + "28758": { + "id": 28758, + "icon": "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Daggers", + "20% increased Critical Strike Chance with Daggers", + "6% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 302, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39443, + 4502 + ], + "in": [] + }, + "56276": { + "id": 56276, + "icon": "Art/2DArt/SkillIcons/passives/nightstalker.png", + "ks": false, + "not": true, + "dn": "Nightstalker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with Daggers", + "50% increased Critical Strike Chance with Daggers", + "20% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 302, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56276 + ] + }, + "10017": { + "id": 10017, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 303, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38344 + ], + "in": [ + 10017 + ] + }, + "41536": { + "id": 41536, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 303, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62712 + ], + "in": [ + 41536 + ] + }, + "62712": { + "id": 62712, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 303, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41250 + ], + "in": [ + 62712 + ] + }, + "41250": { + "id": 41250, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Projectile Damage" + ], + "g": 303, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50338 + ], + "in": [ + 41250 + ] + }, + "65033": { + "id": 65033, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 303, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 10017 + ], + "in": [ + 65033 + ] + }, + "38344": { + "id": 38344, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 303, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50338 + ], + "in": [ + 38344 + ] + }, + "56158": { + "id": 56158, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Spell Damage per Power Charge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Spell Damage per Power Charge" + ], + "g": 304, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 56158, + 56158 + ] + }, + "20528": { + "id": 20528, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": true, + "dn": "Instability", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Power Charges" + ], + "g": 304, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56158 + ], + "in": [ + 20528 + ] + }, + "53279": { + "id": 53279, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 304, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 19635 + ], + "in": [ + 53279 + ] + }, + "61419": { + "id": 61419, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 304, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53279 + ], + "in": [ + 61419 + ] + }, + "15117": { + "id": 15117, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 304, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 4367, + 61419 + ], + "in": [] + }, + "8302": { + "id": 8302, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Power Charge Duration" + ], + "g": 304, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20528 + ], + "in": [ + 8302 + ] + }, + "59718": { + "id": 59718, + "icon": "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + "ks": false, + "not": false, + "dn": "Armour, Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + ], + "g": 305, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 59718, + 59718 + ] + }, + "50306": { + "id": 50306, + "icon": "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + "ks": false, + "not": false, + "dn": "Armour, Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + ], + "g": 305, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35568 + ], + "in": [ + 50306 + ] + }, + "35568": { + "id": 35568, + "icon": "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + "ks": false, + "not": false, + "dn": "Armour, Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + ], + "g": 305, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59718 + ], + "in": [ + 35568, + 35568, + 35568 + ] + }, + "38662": { + "id": 38662, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 306, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 1529 + ], + "in": [ + 38662, + 38662, + 38662 + ] + }, + "19501": { + "id": 19501, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 307, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 17659 + ], + "in": [ + 19501, + 19501, + 19501 + ] + }, + "27611": { + "id": 27611, + "icon": "Art/2DArt/SkillIcons/passives/lordofthedead.png", + "ks": false, + "not": true, + "dn": "Lord of the Dead", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions deal 15% increased Damage", + "30% increased Minion Accuracy Rating", + "+1 to Maximum number of Zombies", + "+1 to Maximum number of Skeletons" + ], + "g": 308, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32024, + 60554, + 19635 + ], + "in": [] + }, + "32024": { + "id": 32024, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life" + ], + "g": 308, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27929 + ], + "in": [ + 32024, + 32024 + ] + }, + "60554": { + "id": 60554, + "icon": "Art/2DArt/SkillIcons/passives/miniondamage.png", + "ks": false, + "not": false, + "dn": "Minion Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions deal 10% increased Damage" + ], + "g": 308, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32024, + 11420 + ], + "in": [ + 60554 + ] + }, + "55676": { + "id": 55676, + "icon": "Art/2DArt/SkillIcons/passives/increased armor.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour", + "4% increased maximum Life" + ], + "g": 309, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5233 + ], + "in": [ + 55676 + ] + }, + "15835": { + "id": 15835, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 309, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "62017": { + "id": 62017, + "icon": "Art/2DArt/SkillIcons/passives/increased armor.png", + "ks": false, + "not": false, + "dn": "Life and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour", + "4% increased maximum Life" + ], + "g": 309, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33287, + 53793 + ], + "in": [] + }, + "33287": { + "id": 33287, + "icon": "Art/2DArt/SkillIcons/passives/increased armor.png", + "ks": false, + "not": true, + "dn": "Juggernaut", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Armour", + "6% increased maximum Life", + "20% increased Life Recovery from Flasks" + ], + "g": 309, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55676 + ], + "in": [ + 33287 + ] + }, + "36678": { + "id": 36678, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 310, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 42760, + 7444, + 20987 + ], + "in": [ + 36678, + 36678 + ] + }, + "32640": { + "id": 32640, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + "ks": false, + "not": false, + "dn": "Flask Effect and Charges Gained", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Flask Charges gained", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 32640, + 32640 + ] + }, + "32662": { + "id": 32662, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + "ks": false, + "not": false, + "dn": "Flask Effect, Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Chaos Damage", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40813 + ], + "in": [ + 32662 + ] + }, + "14156": { + "id": 14156, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + "ks": false, + "not": false, + "dn": "Flask Effect and Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased Flask effect duration", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 14156, + 14156 + ] + }, + "51101": { + "id": 51101, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png", + "ks": false, + "not": true, + "dn": "Nature's Adrenaline", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Movement Speed during any Flask Effect", + "20% increased Attack Speed during any Flask Effect" + ], + "g": 311, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14156 + ], + "in": [ + 51101 + ] + }, + "6038": { + "id": 6038, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png", + "ks": false, + "not": true, + "dn": "Veteran Bowyer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Gain 10% of Physical Damage as Extra Damage of a random Element", + "Damage Penetrates 10% Elemental Resistances", + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + ], + "g": 311, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6038 + ] + }, + "36242": { + "id": 36242, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + "ks": false, + "not": false, + "dn": "Flask Effect and Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased Flask effect duration", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 4, + "oidx": 31, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51101 + ], + "in": [ + 36242 + ] + }, + "63293": { + "id": 63293, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png", + "ks": false, + "not": true, + "dn": "Master Surgeon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "30% increased Life Recovery from Flasks", + "Removes Bleeding when you use a Flask", + "Gain a Flask Charge when you deal a Critical Strike" + ], + "g": 311, + "o": 4, + "oidx": 29, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36242 + ], + "in": [] + }, + "65296": { + "id": 65296, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png", + "ks": false, + "not": true, + "dn": "Nature's Boon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "6% reduced Elemental Damage taken", + "Flasks gain 3 Charges every 3 seconds", + "20% chance for your Flasks to not consume Charges" + ], + "g": 311, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32640 + ], + "in": [ + 65296 + ] + }, + "40631": { + "id": 40631, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + "ks": false, + "not": false, + "dn": "Flask Effect and Charges Gained", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Flask Charges gained", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 4, + "oidx": 39, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65296, + 61805 + ], + "in": [] + }, + "61805": { + "id": 61805, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png", + "ks": false, + "not": true, + "dn": "Master Alchemist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Immune to Elemental Ailments during any Flask Effect", + "40% increased Elemental Damage during any Flask Effect", + "20% chance to Freeze, Shock and Ignite during any Flask Effect" + ], + "g": 311, + "o": 4, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61805 + ] + }, + "59800": { + "id": 59800, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png", + "ks": false, + "not": false, + "dn": "Flask Effect, Attack Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Attack Damage", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6038 + ], + "in": [ + 59800 + ] + }, + "40813": { + "id": 40813, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png", + "ks": false, + "not": true, + "dn": "Nature's Reprisal", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "30% increased Chaos Damage", + "Chaos Skills have 50% increased Area of Effect", + "When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned" + ], + "g": 311, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20480 + ], + "in": [ + 40813 + ] + }, + "20480": { + "id": 20480, + "icon": "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + "ks": false, + "not": false, + "dn": "Flask Effect, Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Chaos Damage", + "5% increased effect of Flasks on you" + ], + "g": 311, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 20480, + 20480 + ] + }, + "64111": { + "id": 64111, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Pathfinder", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Pathfinder", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 311, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32662, + 59800, + 32640, + 14156 + ], + "in": [ + 64111 + ] + }, + "64235": { + "id": 64235, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating", + "+3% to all Elemental Resistances" + ], + "g": 312, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36287 + ], + "in": [ + 64235 + ] + }, + "37619": { + "id": 37619, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Evasion Rating", + "+3% to all Elemental Resistances" + ], + "g": 312, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5616, + 24133, + 64235 + ], + "in": [] + }, + "24133": { + "id": 24133, + "icon": "Art/2DArt/SkillIcons/passives/Survivalist.png", + "ks": false, + "not": true, + "dn": "Survivalist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Evasion Rating", + "+8% to all Elemental Resistances", + "+1% to maximum Cold Resistance" + ], + "g": 312, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24133 + ] + }, + "36774": { + "id": 36774, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Spell Damage" + ], + "g": 313, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17579 + ], + "in": [ + 36774 + ] + }, + "739": { + "id": 739, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Cast Speed" + ], + "g": 313, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18866 + ], + "in": [ + 739 + ] + }, + "1957": { + "id": 1957, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Cast Speed" + ], + "g": 313, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 739 + ], + "in": [ + 1957 + ] + }, + "21934": { + "id": 21934, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Spell Damage" + ], + "g": 313, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11420 + ], + "in": [ + 21934 + ] + }, + "18866": { + "id": 18866, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Cast Speed" + ], + "g": 313, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11420 + ], + "in": [ + 18866 + ] + }, + "17579": { + "id": 17579, + "icon": "Art/2DArt/SkillIcons/passives/damagespells.png", + "ks": false, + "not": false, + "dn": "Spell Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Spell Damage" + ], + "g": 313, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21934 + ], + "in": [ + 17579 + ] + }, + "8566": { + "id": 8566, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "10% increased Critical Strike Chance with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 314, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23471 + ], + "in": [ + 8566 + ] + }, + "34510": { + "id": 34510, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "10% increased Critical Strike Chance with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 314, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8566, + 49459 + ], + "in": [] + }, + "49459": { + "id": 49459, + "icon": "Art/2DArt/SkillIcons/passives/kingofthehill.png", + "ks": false, + "not": true, + "dn": "King of the Hill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "80% increased Critical Strike Chance with Bows", + "Knocks Back Enemies if you get a Critical Strike with a Bow" + ], + "g": 314, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 49459 + ] + }, + "4713": { + "id": 4713, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire and Burning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Fire Damage", + "12% increased Burning Damage" + ], + "g": 315, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6245 + ], + "in": [ + 4713, + 4713 + ] + }, + "29049": { + "id": 29049, + "icon": "Art/2DArt/SkillIcons/passives/pyromaniac.png", + "ks": false, + "not": true, + "dn": "Holy Fire", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Fire Damage", + "40% increased Burning Damage", + "15% chance to Ignite" + ], + "g": 315, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5916 + ], + "in": [] + }, + "5916": { + "id": 5916, + "icon": "Art/2DArt/SkillIcons/passives/firedamage.png", + "ks": false, + "not": false, + "dn": "Fire and Burning Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Fire Damage", + "12% increased Burning Damage" + ], + "g": 315, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4713 + ], + "in": [ + 5916 + ] + }, + "21524": { + "id": 21524, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + "ks": false, + "not": false, + "dn": "Fire Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 315, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "6245": { + "id": 6245, + "icon": "Art/2DArt/SkillIcons/passives/firedamagestr.png", + "ks": false, + "not": false, + "dn": "Fire Damage and Ignite Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "8% increased Fire Damage", + "5% chance to Ignite" + ], + "g": 315, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6245 + ] + }, + "52230": { + "id": 52230, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": true, + "dn": "Weathered Hunter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Global Accuracy Rating", + "+8% to all Elemental Resistances", + "+20 to Dexterity" + ], + "g": 316, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [], + "in": [ + 52230 + ] + }, + "29379": { + "id": 29379, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Accuracy Rating", + "+3% to all Elemental Resistances" + ], + "g": 316, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56589, + 43787 + ], + "in": [] + }, + "43787": { + "id": 43787, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Elemental Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Global Accuracy Rating", + "+3% to all Elemental Resistances" + ], + "g": 316, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52230 + ], + "in": [ + 43787 + ] + }, + "34513": { + "id": 34513, + "icon": "Art/2DArt/SkillIcons/passives/auraeffect.png", + "ks": false, + "not": false, + "dn": "Aura Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 317, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 24914 + ], + "in": [ + 34513 + ] + }, + "9995": { + "id": 9995, + "icon": "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + "ks": false, + "not": false, + "dn": "Aura Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Area of Effect of Aura Skills" + ], + "g": 317, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34513 + ], + "in": [ + 9995 + ] + }, + "33718": { + "id": 33718, + "icon": "Art/2DArt/SkillIcons/passives/Champion.png", + "ks": false, + "not": true, + "dn": "Champion of the Cause", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Area of Effect of Aura Skills", + "4% reduced Mana Reserved", + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 317, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9995 + ], + "in": [] + }, + "14603": { + "id": 14603, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png", + "ks": false, + "not": true, + "dn": "Flesh Binder", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own", + "Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second", + "Raised Zombies' Slam Attack has 100% increased Area of Effect", + "Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed", + "+2 to Maximum number of Zombies" + ], + "g": 318, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 14603 + ] + }, + "65153": { + "id": 65153, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png", + "ks": false, + "not": true, + "dn": "Soul Weaver", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Spectres have 100% increased maximum Life", + "Spectres have 100% increased Damage" + ], + "g": 318, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 65153 + ] + }, + "26298": { + "id": 26298, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + "ks": false, + "not": false, + "dn": "Minion Damage, Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11490 + ], + "in": [ + 26298 + ] + }, + "55646": { + "id": 55646, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65153 + ], + "in": [ + 55646 + ] + }, + "18309": { + "id": 18309, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14603 + ], + "in": [ + 18309 + ] + }, + "60547": { + "id": 60547, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + "ks": false, + "not": false, + "dn": "Minion Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54159 + ], + "in": [ + 60547 + ] + }, + "39818": { + "id": 39818, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + "ks": false, + "not": false, + "dn": "Minion Damage, Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48719 + ], + "in": [ + 39818 + ] + }, + "18574": { + "id": 18574, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png", + "ks": false, + "not": false, + "dn": "Minion Damage, Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "4% increased Cast Speed", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3554 + ], + "in": [ + 18574 + ] + }, + "5415": { + "id": 5415, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png", + "ks": false, + "not": false, + "dn": "Minion Damage, Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "4% increased Cast Speed", + "Minions deal 15% increased Damage" + ], + "g": 318, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36017 + ], + "in": [ + 5415 + ] + }, + "54159": { + "id": 54159, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png", + "ks": false, + "not": true, + "dn": "Invoker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Minions have 20% increased maximum Life", + "Minions deal 20% increased Damage", + "Minions Regenerate 2% Life per second", + "50% increased Convocation Cooldown Recovery Speed" + ], + "g": 318, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55646, + 18574, + 18309 + ], + "in": [ + 54159 + ] + }, + "48719": { + "id": 48719, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png", + "ks": false, + "not": true, + "dn": "Mistress of Sacrifice", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "20% increased Skill Effect Duration", + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you", + "40% increased Damage if you have consumed a corpse Recently", + "2% increased Attack and Cast Speed for each corpse consumed Recently" + ], + "g": 318, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 48719 + ] + }, + "3554": { + "id": 3554, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png", + "ks": false, + "not": true, + "dn": "Bone Sculptor", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Skeletons deal 40% increased Damage", + "Summon 2 additional Skeleton Warriors with Summon Skeleton", + "100% increased Skeleton Movement Speed", + "Summoned Skeletons' hits can't be Evaded", + "+2 to Maximum number of Skeletons" + ], + "g": 318, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 3554 + ] + }, + "36017": { + "id": 36017, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png", + "ks": false, + "not": true, + "dn": "Commander of Darkness", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies", + "You and Allies affected by your Aura Skills deal 30% increased Damage", + "You and Allies affected by your Aura Skills have +20% to all Elemental Resistances" + ], + "g": 318, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 36017 + ] + }, + "11490": { + "id": 11490, + "icon": "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png", + "ks": false, + "not": true, + "dn": "Puppet Master", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "Minions have 20% increased Movement Speed", + "30% increased Minion Duration", + "Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently", + "30% increased Minion Damage if you've used a Minion Skill Recently" + ], + "g": 318, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11490 + ] + }, + "60791": { + "id": 60791, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Necromancer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Necromancer", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 318, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60547, + 39818, + 5415, + 26298 + ], + "in": [ + 60791 + ] + }, + "35958": { + "id": 35958, + "icon": "Art/2DArt/SkillIcons/passives/bodysoul.png", + "ks": false, + "not": true, + "dn": "Faith and Steel", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Armour", + "10% increased maximum Energy Shield", + "+8% to all Elemental Resistances" + ], + "g": 319, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46897 + ], + "in": [ + 35958 + ] + }, + "5696": { + "id": 5696, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Power Charge Duration" + ], + "g": 319, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26270 + ], + "in": [ + 5696 + ] + }, + "34173": { + "id": 34173, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": true, + "dn": "Overcharge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Power Charges" + ], + "g": 319, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5696 + ], + "in": [ + 34173 + ] + }, + "46897": { + "id": 46897, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour", + "5% increased maximum Energy Shield" + ], + "g": 319, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26270 + ], + "in": [ + 46897 + ] + }, + "27575": { + "id": 27575, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Power Charge Duration" + ], + "g": 319, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34173, + 10575 + ], + "in": [] + }, + "40508": { + "id": 40508, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Armour", + "5% increased maximum Energy Shield" + ], + "g": 319, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35958 + ], + "in": [ + 40508 + ] + }, + "9432": { + "id": 9432, + "icon": "Art/2DArt/SkillIcons/passives/MentalRapidity.png", + "ks": false, + "not": true, + "dn": "Mental Rapidity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Cast Speed", + "20% increased Mana Regeneration Rate" + ], + "g": 320, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9432 + ] + }, + "54657": { + "id": 54657, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 320, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34157, + 9432 + ], + "in": [] + }, + "34157": { + "id": 34157, + "icon": "Art/2DArt/SkillIcons/passives/castspeed.png", + "ks": false, + "not": false, + "dn": "Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Cast Speed" + ], + "g": 320, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34157, + 34157 + ] + }, + "63447": { + "id": 63447, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 321, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 44184, + 21167 + ], + "in": [ + 63447, + 63447, + 63447 + ] + }, + "1405": { + "id": 1405, + "icon": "Art/2DArt/SkillIcons/passives/daggerpenetration.png", + "ks": false, + "not": true, + "dn": "From the Shadows", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Physical Damage with Daggers", + "20% increased Accuracy Rating with Daggers", + "60% increased Critical Strike Chance with Daggers", + "16% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 322, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15825 + ], + "in": [] + }, + "15825": { + "id": 15825, + "icon": "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Daggers", + "+12% to Critical Strike Multiplier with Daggers", + "6% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 322, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5802 + ], + "in": [ + 15825 + ] + }, + "5802": { + "id": 5802, + "icon": "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + "ks": false, + "not": false, + "dn": "Dagger Damage and Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Physical Damage with Daggers", + "+12% to Critical Strike Multiplier with Daggers", + "6% increased Damage with Ailments from Attack Skills while wielding a Dagger" + ], + "g": 322, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39718 + ], + "in": [ + 5802 + ] + }, + "35053": { + "id": 35053, + "icon": "Art/2DArt/SkillIcons/passives/damagesword.png", + "ks": false, + "not": false, + "dn": "Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Swords", + "12% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 323, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64024, + 43514, + 6741 + ], + "in": [] + }, + "57839": { + "id": 57839, + "icon": "Art/2DArt/SkillIcons/passives/legendaryswordsman.png", + "ks": false, + "not": true, + "dn": "Blade of Cunning", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "22% increased Physical Damage with Swords", + "8% increased Attack Speed with Swords", + "0.4% of Physical Attack Damage Leeched as Life", + "22% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 323, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43514 + ], + "in": [ + 57839 + ] + }, + "17754": { + "id": 17754, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + "ks": false, + "not": false, + "dn": "Sword Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 323, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "61050": { + "id": 61050, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Attack Speed and Life Leech Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Swords", + "10% increased Life Leeched per second" + ], + "g": 323, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57839 + ], + "in": [ + 61050 + ] + }, + "64024": { + "id": 64024, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + "ks": false, + "not": false, + "dn": "Sword Attack Speed and Life Leech Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed with Swords", + "10% increased Life Leeched per second" + ], + "g": 323, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61050 + ], + "in": [ + 64024 + ] + }, + "43514": { + "id": 43514, + "icon": "Art/2DArt/SkillIcons/passives/damagesword.png", + "ks": false, + "not": false, + "dn": "Sword Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Swords", + "10% increased Damage with Ailments from Attack Skills while wielding a Sword" + ], + "g": 323, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 43514, + 43514 + ] + }, + "60440": { + "id": 60440, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 324, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 11455, + 20077, + 25770 + ], + "in": [ + 60440, + 60440, + 60440 + ] + }, + "25411": { + "id": 25411, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": true, + "dn": "Infused", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Power Charges" + ], + "g": 325, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62177 + ], + "in": [ + 25411 + ] + }, + "42804": { + "id": 42804, + "icon": "Art/2DArt/SkillIcons/passives/minddrinker.png", + "ks": false, + "not": true, + "dn": "Mind Drinker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15 to maximum Mana", + "16% increased maximum Mana", + "0.4% of Attack Damage Leeched as Mana" + ], + "g": 325, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49308, + 63228 + ], + "in": [] + }, + "62177": { + "id": 62177, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Power Charge Duration" + ], + "g": 325, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18182 + ], + "in": [ + 62177 + ] + }, + "63228": { + "id": 63228, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 325, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18182 + ], + "in": [ + 63228 + ] + }, + "49308": { + "id": 49308, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 325, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 49308, + 49308 + ] + }, + "3537": { + "id": 3537, + "icon": "Art/2DArt/SkillIcons/passives/chargeint.png", + "ks": false, + "not": false, + "dn": "Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Power Charge Duration" + ], + "g": 325, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25411, + 58244 + ], + "in": [] + }, + "5502": { + "id": 5502, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + "ks": false, + "not": true, + "dn": "Wicked Ward", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+100 to maximum Energy Shield", + "Energy Shield Recharge is not interrupted by Damage if Recharge\nbegan Recently" + ], + "g": 326, + "o": 4, + "oidx": 17, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50935 + ], + "in": [ + 5502 + ] + }, + "18378": { + "id": 18378, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Occultist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 326, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48124, + 6728, + 31984, + 32417 + ], + "in": [ + 18378 + ] + }, + "32417": { + "id": 32417, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Chaos Damage", + "8% increased maximum Energy Shield" + ], + "g": 326, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27096 + ], + "in": [ + 32417 + ] + }, + "37492": { + "id": 37492, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png", + "ks": false, + "not": true, + "dn": "Vile Bastion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+150 to maximum Energy Shield", + "1% of Energy Shield Regenerated per second for each\nEnemy you or your Minions have Killed Recently, up to 30%", + "Cannot Be Stunned while you have Energy Shield" + ], + "g": 326, + "o": 4, + "oidx": 12, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 37492 + ] + }, + "31984": { + "id": 31984, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield", + "5% increased Effect of your Curses" + ], + "g": 326, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37127 + ], + "in": [ + 31984 + ] + }, + "17018": { + "id": 17018, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield", + "5% increased Effect of your Curses" + ], + "g": 326, + "o": 4, + "oidx": 26, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31344 + ], + "in": [ + 17018 + ] + }, + "37127": { + "id": 37127, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png", + "ks": false, + "not": true, + "dn": "Profane Bloom", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Your Curses can apply to Hexproof Enemies", + "Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" + ], + "g": 326, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17018 + ], + "in": [ + 37127 + ] + }, + "6728": { + "id": 6728, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Power Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield", + "18% increased Power Charge Duration" + ], + "g": 326, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62504 + ], + "in": [ + 6728 + ] + }, + "48124": { + "id": 48124, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Energy Shield Recharge Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + ], + "g": 326, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5502 + ], + "in": [ + 48124 + ] + }, + "50935": { + "id": 50935, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + "ks": false, + "not": false, + "dn": "Energy Shield, Energy Shield Recharge Rate", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "8% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + ], + "g": 326, + "o": 4, + "oidx": 14, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37492 + ], + "in": [ + 50935 + ] + }, + "31344": { + "id": 31344, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png", + "ks": false, + "not": true, + "dn": "Malediction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "reminderText": [ + "(Enemies with Malediction deal 10% reduced damage and take 10% increased damage)" + ], + "spc": [], + "sd": [ + "You can apply an additional Curse", + "15% increased Effect of your Curses", + "When you Kill an Enemy, for each Curse on that Enemy, gain 8%\nof Non-Chaos Damage as extra Chaos Damage for 4 seconds", + "Enemies you Curse have Malediction" + ], + "g": 326, + "o": 4, + "oidx": 28, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 31344 + ] + }, + "27096": { + "id": 27096, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png", + "ks": false, + "not": true, + "dn": "Void Beacon", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Nearby Enemies have -20% to Chaos Resistance", + "Nearby Enemies have 100% reduced Life Regeneration rate" + ], + "g": 326, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27096 + ] + }, + "62504": { + "id": 62504, + "icon": "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png", + "ks": false, + "not": true, + "dn": "Forbidden Power", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Occultist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "5% increased Area of Effect per Power Charge", + "5% increased Spell Damage per Power Charge", + "Gain a Power Charge after Spending a total of 200 Mana", + "+1 to Maximum Power Charges" + ], + "g": 326, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 62504 + ] + }, + "43015": { + "id": 43015, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Weapon Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 8% increased Damage with Ailments while Dual Wielding" + ], + "g": 327, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28084 + ], + "in": [ + 43015 + ] + }, + "26496": { + "id": 26496, + "icon": "Art/2DArt/SkillIcons/passives/twinslice.png", + "ks": false, + "not": true, + "dn": "Duality", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Weapon Damage while Dual Wielding", + "Attack Skills deal 24% increased Damage with Ailments while Dual Wielding" + ], + "g": 327, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43015 + ], + "in": [] + }, + "28084": { + "id": 28084, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + "ks": false, + "not": false, + "dn": "Dual Wield Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Weapon Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 8% increased Damage with Ailments while Dual Wielding" + ], + "g": 327, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46578 + ], + "in": [ + 28084 + ] + }, + "27283": { + "id": 27283, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 328, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 6580, + 19711 + ], + "in": [] + }, + "35724": { + "id": 35724, + "icon": "Art/2DArt/SkillIcons/passives/damage_blue.png", + "ks": false, + "not": false, + "dn": "Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage" + ], + "g": 329, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63965, + 33923 + ], + "in": [ + 35724 + ] + }, + "772": { + "id": 772, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + "ks": false, + "not": true, + "dn": "Shadow Ascendancy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": true, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(Choose one of the three attached options)" + ], + "spc": [], + "sd": [], + "g": 330, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43336, + 43122, + 6778, + 58827 + ], + "in": [ + 772 + ] + }, + "42546": { + "id": 42546, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 330, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 772 + ], + "in": [ + 42546 + ] + }, + "53992": { + "id": 53992, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png", + "ks": false, + "not": true, + "dn": "Path of the Shadow", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 2, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Can Allocate Passives from the Shadow's starting point" + ], + "g": 330, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45272, + 38129 + ], + "in": [ + 53992 + ] + }, + "43336": { + "id": 43336, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + "ks": false, + "not": false, + "dn": "Passive Point", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 1, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [], + "g": 330, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53992 + ], + "in": [ + 43336 + ] + }, + "45403": { + "id": 45403, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity and Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+20 to Dexterity and Intelligence" + ], + "g": 330, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 20, + "ia": 20, + "out": [ + 42546 + ], + "in": [ + 45403 + ] + }, + "8948": { + "id": 8948, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 331, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 27415, + 27659 + ], + "in": [ + 8948, + 8948 + ] + }, + "54791": { + "id": 54791, + "icon": "Art/2DArt/SkillIcons/passives/eagletalons.png", + "ks": false, + "not": true, + "dn": "Claws of the Magpie", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with Claws", + "15% increased Attack Speed with Claws", + "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws", + "20% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35384 + ], + "in": [ + 54791 + ] + }, + "5629": { + "id": 5629, + "icon": "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + "ks": false, + "not": false, + "dn": "Claw Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Claws", + "12% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36225 + ], + "in": [ + 5629, + 5629 + ] + }, + "529": { + "id": 529, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": true, + "dn": "Poisonous Fangs", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "20% increased Physical Damage with Claws", + "10% chance to Poison on Hit", + "30% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19228 + ], + "in": [ + 529 + ] + }, + "36801": { + "id": 36801, + "icon": "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Poison Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "12% increased Physical Damage with Claws", + "10% chance to Poison on Hit", + "12% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54791, + 529 + ], + "in": [] + }, + "28503": { + "id": 28503, + "icon": "Art/2DArt/SkillIcons/passives/soulraker.png", + "ks": false, + "not": true, + "dn": "Soul Raker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Physical Damage with Claws", + "1.2% of Attack Damage Leeched as Life", + "0.8% of Attack Damage Leeched as Mana", + "50% increased Life Leeched per second", + "20% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19228 + ], + "in": [ + 28503 + ] + }, + "35384": { + "id": 35384, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Claws", + "4% increased Attack Speed with Claws", + "8% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17908 + ], + "in": [ + 35384 + ] + }, + "49568": { + "id": 49568, + "icon": "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + "ks": false, + "not": false, + "dn": "Claw Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Claws", + "+15% to Critical Strike Multiplier with Claws" + ], + "g": 332, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30745 + ], + "in": [ + 49568 + ] + }, + "39979": { + "id": 39979, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + "ks": false, + "not": false, + "dn": "Claw Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 332, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "17908": { + "id": 17908, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Claws", + "4% increased Attack Speed with Claws", + "8% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25775 + ], + "in": [ + 17908 + ] + }, + "25775": { + "id": 25775, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Physical Damage with Claws", + "4% increased Attack Speed with Claws", + "8% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5629 + ], + "in": [ + 25775 + ] + }, + "36225": { + "id": 36225, + "icon": "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + "ks": false, + "not": false, + "dn": "Claw Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Claws", + "+15% to Critical Strike Multiplier with Claws" + ], + "g": 332, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49568 + ], + "in": [ + 36225 + ] + }, + "19228": { + "id": 19228, + "icon": "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + "ks": false, + "not": false, + "dn": "Claw Damage and Ailment Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Claws", + "25% increased Damage with Ailments from Attack Skills while wielding a Claw" + ], + "g": 332, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 19228, + 19228 + ] + }, + "30745": { + "id": 30745, + "icon": "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + "ks": false, + "not": false, + "dn": "Claw Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Claws", + "+15% to Critical Strike Multiplier with Claws" + ], + "g": 332, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28503 + ], + "in": [ + 30745 + ] + }, + "444": { + "id": 444, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 333, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 61306 + ], + "in": [ + 444 + ] + }, + "52904": { + "id": 52904, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 333, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 444 + ], + "in": [ + 52904 + ] + }, + "32514": { + "id": 32514, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Chance to Bleed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Bows", + "Bow Attacks have 15% chance to cause Bleeding", + "15% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12948, + 42720 + ], + "in": [] + }, + "51881": { + "id": 51881, + "icon": "Art/2DArt/SkillIcons/passives/deadlydraw.png", + "ks": false, + "not": true, + "dn": "Deadly Draw", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Bows", + "12% increased Attack Speed with Bows", + "20% increased Arrow Speed", + "12% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23912 + ], + "in": [] + }, + "38149": { + "id": 38149, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "10% increased Accuracy Rating with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55750, + 2185, + 20807 + ], + "in": [] + }, + "42720": { + "id": 42720, + "icon": "Art/2DArt/SkillIcons/passives/heavydraw.png", + "ks": false, + "not": true, + "dn": "Heavy Draw", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Physical Damage with Bows", + "10% reduced Enemy Stun Threshold with Bows", + "20% increased Stun Duration with Bows on Enemies", + "24% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42720 + ] + }, + "55750": { + "id": 55750, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Bows", + "15% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55750, + 55750 + ] + }, + "2185": { + "id": 2185, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "3% increased Attack Speed with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 2185, + 2185 + ] + }, + "23912": { + "id": 23912, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "3% increased Attack Speed with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39665 + ], + "in": [ + 23912 + ] + }, + "12948": { + "id": 12948, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Chance to Bleed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)" + ], + "spc": [], + "sd": [ + "15% increased Physical Damage with Bows", + "Bow Attacks have 10% chance to cause Bleeding", + "15% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55750 + ], + "in": [ + 12948 + ] + }, + "39665": { + "id": 39665, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with Bows", + "3% increased Attack Speed with Bows", + "10% increased Damage Over Time with Bow Skills" + ], + "g": 334, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 2185 + ], + "in": [ + 39665 + ] + }, + "64761": { + "id": 64761, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + "ks": false, + "not": false, + "dn": "Bow Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 334, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "1427": { + "id": 1427, + "icon": "Art/2DArt/SkillIcons/passives/chaosresist.png", + "ks": false, + "not": false, + "dn": "Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+6% to Chaos Resistance" + ], + "g": 335, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18707 + ], + "in": [ + 1427 + ] + }, + "58968": { + "id": 58968, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 335, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35296 + ], + "in": [ + 58968 + ] + }, + "35296": { + "id": 35296, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png", + "ks": false, + "not": false, + "dn": "Chaos Resistance and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Chaos Damage", + "+4% to Chaos Resistance" + ], + "g": 335, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51235 + ], + "in": [ + 35296, + 35296 + ] + }, + "51235": { + "id": 51235, + "icon": "Art/2DArt/SkillIcons/passives/chaosresist.png", + "ks": false, + "not": false, + "dn": "Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+6% to Chaos Resistance" + ], + "g": 335, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 1427 + ], + "in": [ + 51235 + ] + }, + "37663": { + "id": 37663, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 335, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58968 + ], + "in": [ + 37663 + ] + }, + "18707": { + "id": 18707, + "icon": "Art/2DArt/SkillIcons/passives/MethodMadess.png", + "ks": false, + "not": true, + "dn": "Method to the Madness", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "22% increased Chaos Damage", + "+8% to Chaos Resistance" + ], + "g": 335, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37663 + ], + "in": [ + 18707 + ] + }, + "55604": { + "id": 55604, + "icon": "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + "ks": false, + "not": false, + "dn": "Chaos Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 335, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "26471": { + "id": 26471, + "icon": "Art/2DArt/SkillIcons/passives/lightningdex.png", + "ks": false, + "not": false, + "dn": "Avoid Shock", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% chance to Avoid being Shocked" + ], + "g": 336, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40743, + 15837 + ], + "in": [] + }, + "55307": { + "id": 55307, + "icon": "Art/2DArt/SkillIcons/passives/avoidburning.png", + "ks": false, + "not": false, + "dn": "Avoid Ignite", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% chance to Avoid being Ignited" + ], + "g": 336, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15837 + ], + "in": [ + 55307 + ] + }, + "64241": { + "id": 64241, + "icon": "Art/2DArt/SkillIcons/passives/avoidchilling.png", + "ks": false, + "not": false, + "dn": "Avoid Freeze and Chill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% chance to Avoid being Chilled", + "30% chance to Avoid being Frozen" + ], + "g": 336, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40743 + ], + "in": [ + 64241 + ] + }, + "15837": { + "id": 15837, + "icon": "Art/2DArt/SkillIcons/passives/crystalskin.png", + "ks": false, + "not": false, + "dn": "Avoid Status Ailments", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% chance to Avoid Elemental Ailments" + ], + "g": 336, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64241 + ], + "in": [ + 15837, + 15837, + 15837 + ] + }, + "40743": { + "id": 40743, + "icon": "Art/2DArt/SkillIcons/passives/diamondskin.png", + "ks": false, + "not": true, + "dn": "Crystal Skin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% chance to Avoid Elemental Ailments" + ], + "g": 336, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55307 + ], + "in": [ + 40743, + 40743 + ] + }, + "21634": { + "id": 21634, + "icon": "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png", + "ks": false, + "not": true, + "dn": "Arcane Chemistry", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15 to maximum Mana", + "15% increased maximum Mana", + "25% increased Mana Recovery from Flasks", + "15% reduced Flask Charges used" + ], + "g": 337, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21634, + 21634 + ] + }, + "17546": { + "id": 17546, + "icon": "Art/2DArt/SkillIcons/passives/flaskint.png", + "ks": false, + "not": false, + "dn": "Mana and Flasks", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Mana", + "15% increased Mana Recovery from Flasks" + ], + "g": 337, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41967, + 21634 + ], + "in": [] + }, + "41967": { + "id": 41967, + "icon": "Art/2DArt/SkillIcons/passives/flaskint.png", + "ks": false, + "not": false, + "dn": "Mana and Flasks", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana", + "10% increased Mana Recovery from Flasks" + ], + "g": 337, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21634 + ], + "in": [ + 41967, + 41967 + ] + }, + "3533": { + "id": 3533, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + "ks": false, + "not": false, + "dn": "Life and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "3% reduced Mana Cost of Skills" + ], + "g": 338, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11088 + ], + "in": [ + 3533 + ] + }, + "7374": { + "id": 7374, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + "ks": false, + "not": false, + "dn": "Life and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "3% reduced Mana Cost of Skills" + ], + "g": 338, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44967 + ], + "in": [ + 7374 + ] + }, + "11088": { + "id": 11088, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + "ks": false, + "not": false, + "dn": "Life and Reduced Mana Cost", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "3% reduced Mana Cost of Skills" + ], + "g": 338, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7374 + ], + "in": [ + 11088 + ] + }, + "65108": { + "id": 65108, + "icon": "Art/2DArt/SkillIcons/passives/Unrelenting.png", + "ks": false, + "not": true, + "dn": "Tireless", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "6% reduced Mana Cost of Skills" + ], + "g": 338, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3533 + ], + "in": [] + }, + "4398": { + "id": 4398, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 338, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "60398": { + "id": 60398, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 339, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 39648 + ], + "in": [ + 60398, + 60398, + 60398, + 60398, + 60398 + ] + }, + "28330": { + "id": 28330, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 340, + "o": 4, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 19144 + ], + "in": [ + 28330, + 28330 + ] + }, + "46578": { + "id": 46578, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 340, + "o": 4, + "oidx": 33, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 28330, + 13714, + 30733 + ], + "in": [ + 46578, + 46578 + ] + }, + "61982": { + "id": 61982, + "icon": "Art/2DArt/SkillIcons/passives/graveintentions.png", + "ks": false, + "not": true, + "dn": "Grave Intentions", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have +15% to Chaos Resistance", + "+2 to Maximum number of Zombies", + "+1 to Maximum number of Skeletons" + ], + "g": 341, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61982 + ] + }, + "51517": { + "id": 51517, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life and Chaos Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 7% increased maximum Life", + "Minions have +5% to Chaos Resistance" + ], + "g": 341, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27659 + ], + "in": [ + 51517 + ] + }, + "49047": { + "id": 49047, + "icon": "Art/2DArt/SkillIcons/passives/minionlife.png", + "ks": false, + "not": false, + "dn": "Minion Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have 10% increased maximum Life" + ], + "g": 341, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51517, + 61982 + ], + "in": [] + }, + "30455": { + "id": 30455, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + ], + "g": 342, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 30455, + 30455 + ] + }, + "28658": { + "id": 28658, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Bows" + ], + "g": 342, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 28658, + 28658 + ] + }, + "14804": { + "id": 14804, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance with Bows" + ], + "g": 342, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28658, + 30455, + 32555 + ], + "in": [] + }, + "41119": { + "id": 41119, + "icon": "Art/2DArt/SkillIcons/passives/heartpierce.png", + "ks": false, + "not": true, + "dn": "Lethality", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Physical Damage with Bows", + "50% increased Critical Strike Chance with Bows", + "+30% to Critical Strike Multiplier with Bows", + "16% increased Damage Over Time with Bow Skills" + ], + "g": 342, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12794, + 28658 + ], + "in": [] + }, + "12794": { + "id": 12794, + "icon": "Art/2DArt/SkillIcons/passives/criticalbow.png", + "ks": false, + "not": false, + "dn": "Bow Critical Strike Chance and Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + ], + "g": 342, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30455 + ], + "in": [ + 12794 + ] + }, + "22755": { + "id": 22755, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + "ks": false, + "not": false, + "dn": "Bow Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 342, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "32117": { + "id": 32117, + "icon": "Art/2DArt/SkillIcons/passives/stundex.png", + "ks": false, + "not": false, + "dn": "Stun Avoidance and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "2% increased Movement Speed", + "8% chance to Avoid being Stunned" + ], + "g": 343, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65210 + ], + "in": [ + 32117 + ] + }, + "48099": { + "id": 48099, + "icon": "Art/2DArt/SkillIcons/passives/stundex.png", + "ks": false, + "not": false, + "dn": "Stun Avoidance and Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "2% increased Movement Speed", + "8% chance to Avoid being Stunned" + ], + "g": 343, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 65210, + 50338 + ], + "in": [] + }, + "65210": { + "id": 65210, + "icon": "Art/2DArt/SkillIcons/passives/HeartoftheOak.png", + "ks": false, + "not": true, + "dn": "Heart of Oak", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "20% chance to Avoid being Stunned", + "20% increased Stun and Block Recovery", + "1% of Life Regenerated per second" + ], + "g": 343, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 65210, + 65210 + ] + }, + "9373": { + "id": 9373, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 343, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9373, + 9373 + ] + }, + "25178": { + "id": 25178, + "icon": "Art/2DArt/SkillIcons/passives/animalspirit.png", + "ks": false, + "not": true, + "dn": "Primal Spirit", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased maximum Mana", + "20% increased Mana Regeneration Rate", + "20% increased Flask Charges gained", + "+20 to Strength and Intelligence" + ], + "g": 343, + "o": 2, + "oidx": 9, + "sa": 20, + "da": 0, + "ia": 20, + "out": [ + 9373 + ], + "in": [ + 25178 + ] + }, + "57240": { + "id": 57240, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 343, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25178, + 50338 + ], + "in": [] + }, + "39814": { + "id": 39814, + "icon": "Art/2DArt/SkillIcons/passives/trapsduration.png", + "ks": false, + "not": false, + "dn": "Trap Damage and Cooldown Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Trap Damage", + "5% increased Cooldown Recovery Speed for throwing Traps" + ], + "g": 344, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27190 + ], + "in": [ + 39814 + ] + }, + "25770": { + "id": 25770, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Trap Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Trap Damage" + ], + "g": 344, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39814 + ], + "in": [ + 25770 + ] + }, + "27190": { + "id": 27190, + "icon": "Art/2DArt/SkillIcons/passives/Trap.png", + "ks": false, + "not": true, + "dn": "Hasty Reconstruction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Trap Damage", + "10% increased Cooldown Recovery Speed for throwing Traps" + ], + "g": 344, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27190 + ] + }, + "17818": { + "id": 17818, + "icon": "Art/2DArt/SkillIcons/passives/CrimsonDance.png", + "ks": true, + "not": false, + "dn": "Crimson Dance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "My blade sings so sweetly, your body cannot help but weep." + ], + "spc": [], + "sd": [ + "You can inflict Bleeding on an Enemy up to 8 times\nYour Bleeding does not deal extra Damage while the Enemy is moving\n50% less Damage with Bleeding" + ], + "g": 345, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 17818 + ] + }, + "23407": { + "id": 23407, + "icon": "Art/2DArt/SkillIcons/passives/CritAilments.png", + "ks": true, + "not": false, + "dn": "Perfect Agony", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Your foes will beg not for their pitiful lives, but for a quick, merciful death." + ], + "spc": [], + "sd": [ + "Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value\n30% less Damage with Hits" + ], + "g": 346, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51786 + ], + "in": [] + }, + "18663": { + "id": 18663, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png", + "ks": true, + "not": false, + "dn": "Minion Instability", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Even in death, they have their uses. They just need a little encouragement." + ], + "spc": [], + "sd": [ + "Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies" + ], + "g": 347, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 18663 + ] + }, + "7444": { + "id": 7444, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 348, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 64210, + 44941, + 4713 + ], + "in": [ + 7444, + 7444 + ] + }, + "53493": { + "id": 53493, + "icon": "Art/2DArt/SkillIcons/passives/Annihilation.png", + "ks": false, + "not": true, + "dn": "Annihilation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "50% increased Critical Strike Chance for Spells", + "+15% to Critical Strike Multiplier for Spells" + ], + "g": 349, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16790 + ], + "in": [] + }, + "45035": { + "id": 45035, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Projectile Damage" + ], + "g": 350, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 59370, + 465 + ], + "in": [ + 45035, + 45035 + ] + }, + "50459": { + "id": 50459, + "icon": "Art/2DArt/SkillIcons/passives/blankDex.png", + "ks": false, + "not": false, + "dn": "RANGER", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 2 + ], + "sd": [], + "g": 350, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39821, + 45035, + 58427, + 64111, + 56856 + ], + "in": [ + 50459 + ] + }, + "39821": { + "id": 39821, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Evasion Rating", + "+12 to maximum Life" + ], + "g": 350, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 52904, + 2094 + ], + "in": [ + 39821, + 39821 + ] + }, + "487": { + "id": 487, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 351, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 7162 + ], + "in": [ + 487, + 487, + 487 + ] + }, + "24426": { + "id": 24426, + "icon": "Art/2DArt/SkillIcons/passives/ghostreaver.png", + "ks": true, + "not": false, + "dn": "Ghost Reaver", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "I will wear your ghost, and you will die twice: against me, and for me." + ], + "spc": [], + "sd": [ + "Life Leech is applied to Energy Shield instead\n50% less Energy Shield Recharge Rate" + ], + "g": 352, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53456 + ], + "in": [] + }, + "6799": { + "id": 6799, + "icon": "Art/2DArt/SkillIcons/passives/authority.png", + "ks": false, + "not": true, + "dn": "Charisma", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% reduced Mana Reserved", + "6% increased effect of Non-Curse Auras from your Skills" + ], + "g": 353, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6799 + ] + }, + "63194": { + "id": 63194, + "icon": "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + "ks": false, + "not": false, + "dn": "Reduced Mana Reservation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% reduced Mana Reserved" + ], + "g": 353, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6799 + ], + "in": [ + 63194 + ] + }, + "64265": { + "id": 64265, + "icon": "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + "ks": false, + "not": false, + "dn": "Aura Area of Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Area of Effect of Aura Skills" + ], + "g": 353, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63194 + ], + "in": [ + 64265 + ] + }, + "39725": { + "id": 39725, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed and Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Attack Speed", + "12% increased Global Accuracy Rating" + ], + "g": 354, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63649, + 24377 + ], + "in": [ + 39725, + 39725 + ] + }, + "50986": { + "id": 50986, + "icon": "Art/2DArt/SkillIcons/passives/damagedualwield.png", + "ks": false, + "not": false, + "dn": "DUELIST", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 4 + ], + "sd": [], + "g": 354, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39725, + 32730, + 24984, + 33795 + ], + "in": [ + 50986, + 50986 + ] + }, + "47389": { + "id": 47389, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Attack Physical Damage", + "+14 to maximum Life" + ], + "g": 354, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50986, + 42911, + 5612 + ], + "in": [ + 47389 + ] + }, + "8930": { + "id": 8930, + "icon": "Art/2DArt/SkillIcons/passives/flaskstr.png", + "ks": false, + "not": false, + "dn": "Life and Flasks", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased maximum Life", + "10% increased Life Recovery from Flasks" + ], + "g": 355, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42041 + ], + "in": [ + 8930 + ] + }, + "18402": { + "id": 18402, + "icon": "Art/2DArt/SkillIcons/passives/flaskstr.png", + "ks": false, + "not": false, + "dn": "Life and Flasks", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased maximum Life", + "10% increased Life Recovery from Flasks" + ], + "g": 355, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 8930 + ], + "in": [ + 18402 + ] + }, + "42041": { + "id": 42041, + "icon": "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png", + "ks": false, + "not": true, + "dn": "Profane Chemistry", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life", + "30% increased Life Recovery from Flasks" + ], + "g": 355, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42041 + ] + }, + "24914": { + "id": 24914, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 356, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 61262, + 17818 + ], + "in": [ + 24914, + 24914, + 24914 + ] + }, + "49621": { + "id": 49621, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": true, + "dn": "Acuity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed", + "20% increased Global Accuracy Rating", + "+20 to Dexterity" + ], + "g": 357, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 42104 + ], + "in": [] + }, + "57080": { + "id": 57080, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed", + "8% increased Global Accuracy Rating" + ], + "g": 357, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42104, + 20807 + ], + "in": [] + }, + "42104": { + "id": 42104, + "icon": "Art/2DArt/SkillIcons/passives/accuracydex.png", + "ks": false, + "not": false, + "dn": "Accuracy and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed", + "8% increased Global Accuracy Rating" + ], + "g": 357, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42104, + 42104 + ] + }, + "14211": { + "id": 14211, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42731 + ], + "in": [ + 14211 + ] + }, + "42731": { + "id": 42731, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11430 + ], + "in": [ + 42731 + ] + }, + "14182": { + "id": 14182, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11430 + ], + "in": [ + 14182 + ] + }, + "11430": { + "id": 11430, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11430, + 11430, + 11430 + ] + }, + "13322": { + "id": 13322, + "icon": "Art/2DArt/SkillIcons/passives/energyshield.png", + "ks": false, + "not": false, + "dn": "Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14182 + ], + "in": [ + 13322 + ] + }, + "128": { + "id": 128, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + "ks": false, + "not": false, + "dn": "Energy Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 358, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "3452": { + "id": 3452, + "icon": "Art/2DArt/SkillIcons/passives/foresight.png", + "ks": false, + "not": true, + "dn": "Foresight", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to maximum Energy Shield", + "14% increased maximum Energy Shield" + ], + "g": 358, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 60090, + 22473 + ], + "in": [] + }, + "48807": { + "id": 48807, + "icon": "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + "ks": false, + "not": true, + "dn": "Art of the Gladiator", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Speed", + "20% increased Global Accuracy Rating", + "Ignore all Movement Penalties from Armour", + "+20 to Dexterity" + ], + "g": 359, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 45227, + 25933, + 6580 + ], + "in": [ + 48807, + 48807, + 48807 + ] + }, + "26866": { + "id": 26866, + "icon": "Art/2DArt/SkillIcons/passives/bodysoul.png", + "ks": false, + "not": true, + "dn": "Sanctity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Armour", + "10% increased maximum Energy Shield", + "1% of Life Regenerated per second", + "+10 to Strength and Intelligence" + ], + "g": 360, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 10, + "out": [ + 44908, + 15599 + ], + "in": [ + 26866, + 26866, + 26866, + 26866 + ] + }, + "62225": { + "id": 62225, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage" + ], + "g": 361, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29061, + 45378 + ], + "in": [] + }, + "11597": { + "id": 11597, + "icon": "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png", + "ks": false, + "not": true, + "dn": "Avatar of the Chase", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "100% increased Onslaught Effect", + "20% increased Attack Damage during Onslaught", + "25% more chance to Evade Melee Attacks during Onslaught", + "25% more chance to Evade Projectile Attacks during Onslaught" + ], + "g": 362, + "o": 4, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12146 + ], + "in": [] + }, + "4849": { + "id": 4849, + "icon": "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png", + "ks": false, + "not": true, + "dn": "Rapid Assault", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "reminderText": [ + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + ], + "spc": [], + "sd": [ + "20% increased Attack Damage", + "10% chance to gain Onslaught for 10 Seconds when you Hit a Rare\nor Unique Enemy", + "Gain Onslaught for 10 seconds on Kill" + ], + "g": 362, + "o": 3, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27536 + ], + "in": [ + 4849 + ] + }, + "53421": { + "id": 53421, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png", + "ks": false, + "not": false, + "dn": "Evasion, Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "18% increased Frenzy Charge Duration" + ], + "g": 362, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16848 + ], + "in": [ + 53421 + ] + }, + "31364": { + "id": 31364, + "icon": "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png", + "ks": false, + "not": true, + "dn": "Way of the Poacher", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Attack Speed", + "20% chance to gain a Frenzy Charge on Kill", + "20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" + ], + "g": 362, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53421 + ], + "in": [ + 31364 + ] + }, + "5926": { + "id": 5926, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png", + "ks": false, + "not": false, + "dn": "Evasion, Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "18% increased Frenzy Charge Duration" + ], + "g": 362, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31364 + ], + "in": [ + 5926 + ] + }, + "16848": { + "id": 16848, + "icon": "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png", + "ks": false, + "not": true, + "dn": "Avatar of the Slaughter", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "2% increased Movement Speed per Frenzy Charge", + "3% increased Attack Speed per Frenzy Charge", + "3% increased Attack Damage per Frenzy Charge", + "+1 to Maximum Frenzy Charges" + ], + "g": 362, + "o": 4, + "oidx": 30, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 16848 + ] + }, + "27536": { + "id": 27536, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Evasion, Onslaught Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "20% increased Onslaught duration" + ], + "g": 362, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27536, + 27536 + ] + }, + "12146": { + "id": 12146, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png", + "ks": false, + "not": false, + "dn": "Evasion, Onslaught Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "20% increased Onslaught duration" + ], + "g": 362, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4849 + ], + "in": [ + 12146 + ] + }, + "24432": { + "id": 24432, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png", + "ks": false, + "not": false, + "dn": "Evasion, Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "3% increased Movement Speed" + ], + "g": 362, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33645 + ], + "in": [ + 24432 + ] + }, + "33645": { + "id": 33645, + "icon": "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png", + "ks": false, + "not": true, + "dn": "Quartz Infusion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "reminderText": [ + "(While you have Phasing, your movement is not blocked by Enemies)" + ], + "spc": [], + "sd": [ + "6% chance to Dodge Attack Hits", + "You have Phasing while at maximum Frenzy Charges", + "You have Phasing during Onslaught", + "Gain Phasing for 4 seconds on Kill" + ], + "g": 362, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15550 + ], + "in": [ + 33645 + ] + }, + "15550": { + "id": 15550, + "icon": "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png", + "ks": false, + "not": false, + "dn": "Evasion, Movement Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "15% increased Evasion Rating", + "3% increased Movement Speed" + ], + "g": 362, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55509 + ], + "in": [ + 15550 + ] + }, + "55509": { + "id": 55509, + "icon": "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png", + "ks": false, + "not": true, + "dn": "Avatar of the Veil", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "40% increased Elemental Damage", + "10% increased Movement Speed while Phasing", + "Immune to Elemental Ailments while Phasing", + "10% chance to Dodge Spell Hits while Phasing" + ], + "g": 362, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 55509 + ] + }, + "58427": { + "id": 58427, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Raider", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Raider", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 362, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27536, + 5926, + 24432 + ], + "in": [ + 58427 + ] + }, + "39790": { + "id": 39790, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png", + "ks": false, + "not": true, + "dn": "Sanctify", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "reminderText": [ + "(Allies standing on Consecrated Ground Regenerate a percentage of their Maximum Life per second)" + ], + "spc": [], + "sd": [ + "30% chance to create Consecrated Ground when Hit, lasting 8 seconds", + "Consecrated Ground you create grants 40% increased Damage to you and Allies", + "10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", + "30% chance to create Consecrated Ground on Kill, lasting 8 seconds" + ], + "g": 363, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57222 + ], + "in": [ + 39790 + ] + }, + "63933": { + "id": 63933, + "icon": "Art/2DArt/SkillIcons/passives/totemiczeal.png", + "ks": false, + "not": true, + "dn": "Totemic Zeal", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Totem Placement speed", + "Spells Cast by Totems have 6% increased Cast Speed", + "Attacks used by Totems have 10% increased Attack Speed" + ], + "g": 364, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63933 + ] + }, + "1696": { + "id": 1696, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Placement Speed and Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Totem Duration", + "15% increased Totem Placement speed" + ], + "g": 364, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25732, + 63933 + ], + "in": [] + }, + "25732": { + "id": 25732, + "icon": "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + "ks": false, + "not": false, + "dn": "Totem Duration, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Totem Duration", + "Spells Cast by Totems have 3% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + ], + "g": 364, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28330 + ], + "in": [ + 25732 + ] + }, + "6363": { + "id": 6363, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 365, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 42637, + 14629 + ], + "in": [ + 6363, + 6363 + ] + }, + "56143": { + "id": 56143, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life" + ], + "g": 366, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57539 + ], + "in": [ + 56143 + ] + }, + "9660": { + "id": 9660, + "icon": "Art/2DArt/SkillIcons/passives/mortalconviction.png", + "ks": false, + "not": true, + "dn": "Mortal Conviction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased maximum Life", + "50% less Mana Reserved" + ], + "g": 366, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9660 + ] + }, + "57539": { + "id": 57539, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life" + ], + "g": 366, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 9660 + ], + "in": [ + 57539 + ] + }, + "42800": { + "id": 42800, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 367, + "o": 4, + "oidx": 30, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 487, + 55871 + ], + "in": [ + 42800, + 42800, + 42800 + ] + }, + "3676": { + "id": 3676, + "icon": "Art/2DArt/SkillIcons/passives/flaskint.png", + "ks": false, + "not": false, + "dn": "Flask Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased effect of Flasks on you" + ], + "g": 368, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17790, + 27386 + ], + "in": [] + }, + "17790": { + "id": 17790, + "icon": "Art/2DArt/SkillIcons/passives/flaskint.png", + "ks": false, + "not": false, + "dn": "Flask Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased effect of Flasks on you" + ], + "g": 368, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19635 + ], + "in": [ + 17790 + ] + }, + "27386": { + "id": 27386, + "icon": "Art/2DArt/SkillIcons/passives/flaskint.png", + "ks": false, + "not": true, + "dn": "Alchemist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Flask effect duration", + "10% increased effect of Flasks on you" + ], + "g": 368, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27386 + ] + }, + "57196": { + "id": 57196, + "icon": "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + "ks": false, + "not": false, + "dn": "Flask Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 368, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "14056": { + "id": 14056, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 369, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 487, + 34601 + ], + "in": [ + 14056, + 14056, + 14056, + 14056, + 14056 + ] + }, + "9355": { + "id": 9355, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 370, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 49978 + ], + "in": [ + 9355 + ] + }, + "44967": { + "id": 44967, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 371, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 50422 + ], + "in": [ + 44967, + 44967 + ] + }, + "33988": { + "id": 33988, + "icon": "Art/2DArt/SkillIcons/passives/damagemelee.png", + "ks": false, + "not": false, + "dn": "Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Melee Physical Damage" + ], + "g": 372, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31628 + ], + "in": [ + 33988 + ] + }, + "6741": { + "id": 6741, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 373, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 14056 + ], + "in": [ + 6741, + 6741, + 6741 + ] + }, + "46092": { + "id": 46092, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 374, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 23540, + 51923, + 17849 + ], + "in": [ + 46092, + 46092, + 46092 + ] + }, + "18033": { + "id": 18033, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 374, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 46092, + 57736 + ], + "in": [ + 18033, + 18033 + ] + }, + "50197": { + "id": 50197, + "icon": "Art/2DArt/SkillIcons/passives/savant.png", + "ks": false, + "not": true, + "dn": "Ancestral Knowledge", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Intelligence" + ], + "g": 375, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 30, + "out": [], + "in": [ + 50197 + ] + }, + "47774": { + "id": 47774, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + "ks": false, + "not": false, + "dn": "Cold Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 376, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "43385": { + "id": 43385, + "icon": "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png", + "ks": false, + "not": true, + "dn": "Winter Spirit", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% of Physical Damage Converted to Cold Damage", + "16% increased Cold Damage with Attack Skills" + ], + "g": 376, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 43385 + ] + }, + "58474": { + "id": 58474, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Weapon Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% of Physical Damage Converted to Cold Damage", + "12% increased Cold Damage with Attack Skills" + ], + "g": 376, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43385 + ], + "in": [ + 58474 + ] + }, + "13202": { + "id": 13202, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Cold Damage" + ], + "g": 376, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 33196 + ], + "in": [ + 13202 + ] + }, + "17171": { + "id": 17171, + "icon": "Art/2DArt/SkillIcons/passives/newcolddamage.png", + "ks": false, + "not": true, + "dn": "Flash Freeze", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "24% increased Cold Damage", + "15% increased Projectile Speed", + "10% increased Effect of Chill" + ], + "g": 376, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13202 + ], + "in": [] + }, + "33196": { + "id": 33196, + "icon": "Art/2DArt/SkillIcons/passives/colddamage.png", + "ks": false, + "not": false, + "dn": "Cold Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Cold Damage" + ], + "g": 376, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58474 + ], + "in": [ + 33196, + 33196 + ] + }, + "42443": { + "id": 42443, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": true, + "dn": "Frenetic", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1 to Maximum Frenzy Charges" + ], + "g": 377, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3314 + ], + "in": [ + 42443 + ] + }, + "25260": { + "id": 25260, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life" + ], + "g": 377, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46277 + ], + "in": [ + 25260 + ] + }, + "3314": { + "id": 3314, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Frenzy Charge Duration" + ], + "g": 377, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46277 + ], + "in": [ + 3314 + ] + }, + "40362": { + "id": 40362, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life" + ], + "g": 377, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27788 + ], + "in": [ + 40362 + ] + }, + "27788": { + "id": 27788, + "icon": "Art/2DArt/SkillIcons/passives/lifeleech.png", + "ks": false, + "not": true, + "dn": "Blood Drinker", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "0.4% of Attack Damage Leeched as Life" + ], + "g": 377, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25260 + ], + "in": [ + 27788 + ] + }, + "21893": { + "id": 21893, + "icon": "Art/2DArt/SkillIcons/passives/chargedex.png", + "ks": false, + "not": false, + "dn": "Frenzy Charge Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "18% increased Frenzy Charge Duration" + ], + "g": 377, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42443, + 13885 + ], + "in": [] + }, + "44723": { + "id": 44723, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance for Spells" + ], + "g": 378, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19635 + ], + "in": [ + 44723, + 44723 + ] + }, + "1346": { + "id": 1346, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance for Spells" + ], + "g": 378, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11420, + 44723 + ], + "in": [ + 1346 + ] + }, + "16790": { + "id": 16790, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Critical Strike Chance for Spells" + ], + "g": 378, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44723, + 1346 + ], + "in": [ + 16790 + ] + }, + "32802": { + "id": 32802, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Poison Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage with Poison", + "10% increased Chaos Damage with Attack Skills" + ], + "g": 379, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25766 + ], + "in": [ + 32802, + 32802 + ] + }, + "25766": { + "id": 25766, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": false, + "dn": "Chance to Poison", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "10% chance to Poison on Hit" + ], + "g": 379, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 16236 + ], + "in": [ + 25766 + ] + }, + "16236": { + "id": 16236, + "icon": "Art/2DArt/SkillIcons/passives/Poison.png", + "ks": false, + "not": true, + "dn": "Toxic Strikes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + ], + "spc": [], + "sd": [ + "10% increased Poison Duration", + "10% chance to Poison on Hit", + "30% increased Chaos Damage with Attack Skills" + ], + "g": 379, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 32802 + ], + "in": [ + 16236 + ] + }, + "63398": { + "id": 63398, + "icon": "Art/2DArt/SkillIcons/passives/spellcritical.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Critical Strike Chance for Spells" + ], + "g": 380, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36452 + ], + "in": [ + 63398 + ] + }, + "36452": { + "id": 36452, + "icon": "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + "ks": false, + "not": false, + "dn": "Spell Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Critical Strike Multiplier for Spells" + ], + "g": 380, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7444 + ], + "in": [ + 36452 + ] + }, + "46842": { + "id": 46842, + "icon": "Art/2DArt/SkillIcons/passives/arcanepotency.png", + "ks": false, + "not": true, + "dn": "Arcane Potency", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "30% increased Critical Strike Chance for Spells", + "+30% to Critical Strike Multiplier for Spells" + ], + "g": 380, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63398 + ], + "in": [] + }, + "28012": { + "id": 28012, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 381, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 59252, + 46408, + 60592 + ], + "in": [ + 28012, + 28012 + ] + }, + "57197": { + "id": 57197, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png", + "ks": false, + "not": true, + "dn": "Pendulum of Destruction", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "reminderText": [ + "(These are consecutive)" + ], + "spc": [], + "sd": [ + "Gain 75% increased Area of Effect for 5 seconds", + "Gain 75% increased Elemental Damage for 5 seconds" + ], + "g": 382, + "o": 3, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19595 + ], + "in": [ + 57197 + ] + }, + "16023": { + "id": 16023, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Elementalist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": true, + "spc": [], + "sd": [], + "g": 382, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37114, + 27514, + 54279, + 6052 + ], + "in": [ + 16023 + ] + }, + "6052": { + "id": 6052, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + "ks": false, + "not": false, + "dn": "Elemental Damage and Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + ], + "g": 382, + "o": 3, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 4917 + ], + "in": [ + 6052 + ] + }, + "19595": { + "id": 19595, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + ], + "g": 382, + "o": 3, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61259 + ], + "in": [ + 19595 + ] + }, + "54279": { + "id": 54279, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + "ks": false, + "not": false, + "dn": "Elemental Damage and Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + ], + "g": 382, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 54279, + 54279 + ] + }, + "47873": { + "id": 47873, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + "ks": false, + "not": false, + "dn": "Elemental Damage and Resistances", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + ], + "g": 382, + "o": 4, + "oidx": 16, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 258 + ], + "in": [ + 47873 + ] + }, + "64588": { + "id": 64588, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png", + "ks": false, + "not": true, + "dn": "Beacon of Ruin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Elemental Ailments caused by your Skills spread to other nearby Enemies\nRadius: 18", + "Chills from your Hits always Slow by at least 10%", + "20% more Damage with Ignite", + "Shocks from your Hits always increase Damage taken by at least 20%" + ], + "g": 382, + "o": 4, + "oidx": 22, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 64588 + ] + }, + "18002": { + "id": 18002, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Status Ailment Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "5% chance to Freeze, Shock and Ignite" + ], + "g": 382, + "o": 4, + "oidx": 24, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64588 + ], + "in": [ + 18002 + ] + }, + "27514": { + "id": 27514, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Status Ailment Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "reminderText": [ + "(Freeze slows Enemies completely, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + ], + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "5% chance to Freeze, Shock and Ignite" + ], + "g": 382, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51391 + ], + "in": [ + 27514 + ] + }, + "37114": { + "id": 37114, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + "ks": false, + "not": false, + "dn": "Elemental Damage, Attack and Cast Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + ], + "g": 382, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57197 + ], + "in": [ + 37114 + ] + }, + "51391": { + "id": 51391, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png", + "ks": false, + "not": true, + "dn": "Shaper of Desolation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "reminderText": [ + "(These are consecutive)", + "(Each Conflux means all damage causes that Ailment)" + ], + "spc": [], + "sd": [ + "Every 14 seconds:\nGain Chilling Conflux for 4 seconds\nGain Shocking Conflux for 4 seconds\nGain Igniting Conflux for 4 seconds\nGain Chilling, Shocking and Igniting Conflux for 2 seconds" + ], + "g": 382, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18002 + ], + "in": [ + 51391 + ] + }, + "56461": { + "id": 56461, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png", + "ks": false, + "not": true, + "dn": "Liege of the Primordial", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Your Elemental Golems are Immune to Elemental Damage", + "20% increased Damage for each Summoned Golem", + "25% increased Effect of Buffs granted by your Golems for each Summoned Golem", + "Can Summon up to 1 additional Golem at a time" + ], + "g": 382, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 54279, + 47873 + ], + "in": [] + }, + "61259": { + "id": 61259, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png", + "ks": false, + "not": true, + "dn": "Mastermind of Discord", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "Damage penetrates 25% Cold Resistance while affected by Herald of Ice", + "Damage penetrates 25% Fire Resistance while affected by Herald of Ash", + "Damage penetrates 25% Lightning Resistance while affected by Herald of Thunder", + "25% increased Effect of Heralds on you", + "25% reduced Mana Reservation of Herald Skills" + ], + "g": 382, + "o": 3, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61259 + ] + }, + "4917": { + "id": 4917, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png", + "ks": false, + "not": true, + "dn": "Paragon of Calamity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "reminderText": [ + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "0.5% of Elemental Damage Leeched as Life", + "For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element", + "For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element", + "Cannot take Reflected Elemental Damage" + ], + "g": 382, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 4917 + ] + }, + "258": { + "id": 258, + "icon": "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png", + "ks": false, + "not": true, + "dn": "Elemancer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Elementalist", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "20% increased Golem Damage for each Golem you have Summoned", + "You cannot be Chilled or Frozen while you have an Ice Golem Summoned", + "You cannot be Ignited while you have a Flame Golem Summoned", + "You cannot be Shocked while you have a Lightning Golem Summoned", + "Can Summon up to 1 additional Golem at a time" + ], + "g": 382, + "o": 4, + "oidx": 18, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 258 + ] + }, + "57819": { + "id": 57819, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Attack Speed and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with Bows", + "15% increased Critical Strike Chance with Bows" + ], + "g": 383, + "o": 3, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 57819, + 57819 + ] + }, + "42964": { + "id": 42964, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage and Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Damage with Bows", + "3% increased Attack Speed with Bows", + "6% increased Damage Over Time with Bow Skills" + ], + "g": 383, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42964, + 42964 + ] + }, + "6654": { + "id": 6654, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Bows", + "15% increased Damage Over Time with Bow Skills" + ], + "g": 383, + "o": 3, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6654, + 6654 + ] + }, + "6913": { + "id": 6913, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Physical Damage with Bows", + "15% increased Damage Over Time with Bow Skills" + ], + "g": 383, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6654 + ], + "in": [ + 6913 + ] + }, + "65224": { + "id": 65224, + "icon": "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png", + "ks": false, + "not": true, + "dn": "Aspect of the Eagle", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage with Bows", + "20% increased Global Accuracy Rating", + "+10 to maximum Life", + "4% increased Movement Speed", + "20% increased Damage Over Time with Bow Skills" + ], + "g": 383, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 6913, + 42964, + 41380 + ], + "in": [] + }, + "41380": { + "id": 41380, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + "ks": false, + "not": false, + "dn": "Bow Attack Speed and Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with Bows", + "15% increased Critical Strike Chance with Bows" + ], + "g": 383, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57819 + ], + "in": [ + 41380 + ] + }, + "22618": { + "id": 22618, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Mana" + ], + "g": 384, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21033 + ], + "in": [ + 22618 + ] + }, + "21984": { + "id": 21984, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 384, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21984 + ] + }, + "21033": { + "id": 21033, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Mana" + ], + "g": 384, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21984 + ], + "in": [ + 21033 + ] + }, + "60302": { + "id": 60302, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": false, + "dn": "Dual Wield Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding" + ], + "g": 385, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37884 + ], + "in": [ + 60302 + ] + }, + "53225": { + "id": 53225, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png", + "ks": false, + "not": false, + "dn": "Dual Wield Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed while Dual Wielding" + ], + "g": 385, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53456, + 33363, + 60302 + ], + "in": [] + }, + "11784": { + "id": 11784, + "icon": "Art/2DArt/SkillIcons/passives/gemini.png", + "ks": false, + "not": true, + "dn": "Gemini", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding", + "20% increased Physical Weapon Damage while Dual Wielding", + "15% increased Accuracy Rating while Dual Wielding", + "Attack Skills deal 20% increased Damage with Ailments while Dual Wielding" + ], + "g": 385, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37884 + ], + "in": [ + 11784 + ] + }, + "33363": { + "id": 33363, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png", + "ks": false, + "not": false, + "dn": "Dual Wield Accuracy", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Accuracy Rating while Dual Wielding" + ], + "g": 385, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11784 + ], + "in": [ + 33363 + ] + }, + "37884": { + "id": 37884, + "icon": "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + "ks": false, + "not": false, + "dn": "Dual Wield Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding" + ], + "g": 385, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 37884, + 37884 + ] + }, + "10448": { + "id": 10448, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + "ks": false, + "not": false, + "dn": "Dual Wield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 385, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "26620": { + "id": 26620, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": true, + "dn": "Corruption", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Damage over Time", + "15% increased Chaos Damage" + ], + "g": 386, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 26620, + 26620 + ] + }, + "44362": { + "id": 44362, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage over Time" + ], + "g": 386, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26620 + ], + "in": [ + 44362 + ] + }, + "14003": { + "id": 14003, + "icon": "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + "ks": false, + "not": false, + "dn": "Chaos Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 386, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "21167": { + "id": 21167, + "icon": "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + "ks": false, + "not": false, + "dn": "Damage Over Time", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Damage over Time" + ], + "g": 386, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44362 + ], + "in": [ + 21167, + 21167 + ] + }, + "56671": { + "id": 56671, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 386, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47949, + 26620 + ], + "in": [] + }, + "47949": { + "id": 47949, + "icon": "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + "ks": false, + "not": false, + "dn": "Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Chaos Damage" + ], + "g": 386, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21167 + ], + "in": [ + 47949 + ] + }, + "31080": { + "id": 31080, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 387, + "o": 4, + "oidx": 23, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 43374, + 16380 + ], + "in": [ + 31080 + ] + }, + "15405": { + "id": 15405, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 388, + "o": 2, + "oidx": 8, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 33631 + ], + "in": [ + 15405, + 15405 + ] + }, + "33740": { + "id": 33740, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 388, + "o": 2, + "oidx": 4, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 46910, + 15405 + ], + "in": [] + }, + "33631": { + "id": 33631, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 388, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 33631 + ] + }, + "61072": { + "id": 61072, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png", + "ks": false, + "not": false, + "dn": "Juggernaut", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Marauder Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+1000 to Accuracy Rating", + "Cannot be Chilled", + "Cannot be Stunned", + "5% increased Damage per Endurance Charge", + "Gain an Endurance Charge every second if you've been Hit Recently" + ], + "g": 389, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61072 + ] + }, + "47312": { + "id": 47312, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 390, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55866, + 10490 + ], + "in": [] + }, + "55866": { + "id": 55866, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage" + ], + "g": 390, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45317 + ], + "in": [ + 55866 + ] + }, + "45317": { + "id": 45317, + "icon": "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png", + "ks": false, + "not": true, + "dn": "Ash, Frost and Storm", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Elemental Damage", + "10% reduced Reflected Elemental Damage taken" + ], + "g": 390, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 45317 + ] + }, + "42274": { + "id": 42274, + "icon": "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 390, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "19635": { + "id": 19635, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 391, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 11551, + 16971, + 8302 + ], + "in": [ + 19635, + 19635, + 19635, + 19635, + 19635, + 19635 + ] + }, + "61653": { + "id": 61653, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "4% increased maximum Life" + ], + "g": 392, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18769 + ], + "in": [ + 61653, + 61653 + ] + }, + "1822": { + "id": 1822, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "4% increased maximum Life" + ], + "g": 392, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 38190, + 4502 + ], + "in": [] + }, + "18769": { + "id": 18769, + "icon": "Art/2DArt/SkillIcons/passives/WritteninBlood.png", + "ks": false, + "not": true, + "dn": "Written in Blood", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Energy Shield", + "8% increased maximum Life", + "+10 to Strength" + ], + "g": 392, + "o": 2, + "oidx": 6, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 18769 + ] + }, + "38190": { + "id": 38190, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "4% increased maximum Life" + ], + "g": 392, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61653 + ], + "in": [ + 38190 + ] + }, + "57969": { + "id": 57969, + "icon": "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 392, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "4397": { + "id": 4397, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 393, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 33783, + 36542, + 11420 + ], + "in": [ + 4397 + ] + }, + "7614": { + "id": 7614, + "icon": "Art/2DArt/SkillIcons/passives/skillduration.png", + "ks": false, + "not": false, + "dn": "Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration" + ], + "g": 394, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 7614, + 7614 + ] + }, + "1006": { + "id": 1006, + "icon": "Art/2DArt/SkillIcons/passives/potencyofwill.png", + "ks": false, + "not": true, + "dn": "Potency of Will", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Skill Effect Duration" + ], + "g": 394, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13191 + ], + "in": [] + }, + "13191": { + "id": 13191, + "icon": "Art/2DArt/SkillIcons/passives/skillduration.png", + "ks": false, + "not": false, + "dn": "Skill Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Skill Effect Duration" + ], + "g": 394, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7614 + ], + "in": [ + 13191 + ] + }, + "64709": { + "id": 64709, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 395, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 60942, + 46871, + 3469, + 32802 + ], + "in": [ + 64709, + 64709 + ] + }, + "43162": { + "id": 43162, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Projectile Damage" + ], + "g": 396, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 23122 + ], + "in": [ + 43162, + 43162 + ] + }, + "20310": { + "id": 20310, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "30% increased Block Recovery" + ], + "g": 396, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 7903 + ], + "in": [ + 20310 + ] + }, + "39773": { + "id": 39773, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Projectile Damage" + ], + "g": 396, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43162 + ], + "in": [ + 39773 + ] + }, + "33508": { + "id": 33508, + "icon": "Art/2DArt/SkillIcons/passives/fireresist.png", + "ks": false, + "not": false, + "dn": "Fire Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+18% to Fire Resistance" + ], + "g": 396, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 36881 + ], + "in": [ + 33508 + ] + }, + "31683": { + "id": 31683, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 396, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 43162 + ], + "in": [ + 31683 + ] + }, + "36881": { + "id": 36881, + "icon": "Art/2DArt/SkillIcons/passives/coldresist.png", + "ks": false, + "not": false, + "dn": "Cold Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+18% to Cold Resistance" + ], + "g": 396, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35503, + 31683 + ], + "in": [ + 36881 + ] + }, + "35503": { + "id": 35503, + "icon": "Art/2DArt/SkillIcons/passives/lightningstr.png", + "ks": false, + "not": false, + "dn": "Lightning Resistance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+18% to Lightning Resistance" + ], + "g": 396, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19144 + ], + "in": [ + 35503 + ] + }, + "23122": { + "id": 23122, + "icon": "Art/2DArt/SkillIcons/passives/projectilespeed.png", + "ks": false, + "not": false, + "dn": "Projectile Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased Projectile Damage" + ], + "g": 396, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 23122, + 23122 + ] + }, + "7903": { + "id": 7903, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + ], + "g": 396, + "o": 3, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 7903 + ] + }, + "45887": { + "id": 45887, + "icon": "Art/2DArt/SkillIcons/passives/shieldblock.png", + "ks": false, + "not": false, + "dn": "Block and Block Recovery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "30% increased Block Recovery" + ], + "g": 396, + "o": 3, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 20310 + ], + "in": [ + 45887 + ] + }, + "31961": { + "id": 31961, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", + "ks": true, + "not": false, + "dn": "Resolute Technique", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Great tacticians learn that consistency often trumps potential." + ], + "spc": [], + "sd": [ + "Your hits can't be Evaded\nNever deal Critical Strikes" + ], + "g": 397, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63282 + ], + "in": [] + }, + "25763": { + "id": 25763, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 398, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 476, + 24865 + ], + "in": [] + }, + "11659": { + "id": 11659, + "icon": "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + "ks": false, + "not": false, + "dn": "Avoid Interruption while Casting", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% chance to Avoid interruption from Stuns while Casting" + ], + "g": 399, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27929, + 8135 + ], + "in": [] + }, + "48362": { + "id": 48362, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life", + "8% increased maximum Mana" + ], + "g": 399, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27203 + ], + "in": [ + 48362 + ] + }, + "8135": { + "id": 8135, + "icon": "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + "ks": false, + "not": true, + "dn": "Practical Application", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% chance to Avoid interruption from Stuns while Casting", + "+20 to Strength and Dexterity" + ], + "g": 399, + "o": 2, + "oidx": 6, + "sa": 20, + "da": 20, + "ia": 0, + "out": [ + 11128 + ], + "in": [ + 8135 + ] + }, + "11128": { + "id": 11128, + "icon": "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + "ks": false, + "not": false, + "dn": "Avoid Interruption while Casting", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% chance to Avoid interruption from Stuns while Casting" + ], + "g": 399, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 11420 + ], + "in": [ + 11128 + ] + }, + "2292": { + "id": 2292, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Life", + "8% increased maximum Mana" + ], + "g": 399, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27203 + ], + "in": [ + 2292 + ] + }, + "27203": { + "id": 27203, + "icon": "Art/2DArt/SkillIcons/passives/HeartandSoul.png", + "ks": false, + "not": true, + "dn": "Heart and Soul", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Life", + "12% increased maximum Mana" + ], + "g": 399, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 27203, + 27203 + ] + }, + "20228": { + "id": 20228, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana Regeneration and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+14 to maximum Life", + "20% increased Mana Regeneration Rate" + ], + "g": 400, + "o": 3, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61525 + ], + "in": [ + 20228, + 20228, + 20228 + ] + }, + "61525": { + "id": 61525, + "icon": "Art/2DArt/SkillIcons/passives/axedmgspeed.png", + "ks": false, + "not": false, + "dn": "TEMPLAR", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [ + 5 + ], + "sd": [], + "g": 400, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63965, + 61871, + 30940, + 409 + ], + "in": [ + 61525, + 61525 + ] + }, + "63965": { + "id": 63965, + "icon": "Art/2DArt/SkillIcons/passives/damage_blue.png", + "ks": false, + "not": false, + "dn": "Damage and Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Damage", + "+14 to maximum Mana" + ], + "g": 400, + "o": 3, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14151 + ], + "in": [ + 63965, + 63965, + 63965 + ] + }, + "29005": { + "id": 29005, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Armour", + "5% increased maximum Energy Shield" + ], + "g": 401, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17352 + ], + "in": [ + 29005 + ] + }, + "39631": { + "id": 39631, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Armour", + "5% increased maximum Energy Shield" + ], + "g": 401, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 29005 + ], + "in": [ + 39631 + ] + }, + "17251": { + "id": 17251, + "icon": "Art/2DArt/SkillIcons/passives/dmgreduction.png", + "ks": false, + "not": false, + "dn": "Armour and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Armour", + "5% increased maximum Energy Shield" + ], + "g": 401, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39631, + 26866 + ], + "in": [] + }, + "31758": { + "id": 31758, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Mana Regeneration Rate", + "0.4% of Life Regenerated per second" + ], + "g": 401, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 26866 + ], + "in": [ + 31758 + ] + }, + "42837": { + "id": 42837, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Mana Regeneration Rate", + "0.4% of Life Regenerated per second" + ], + "g": 401, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31758 + ], + "in": [ + 42837 + ] + }, + "23456": { + "id": 23456, + "icon": "Art/2DArt/SkillIcons/passives/lifemana.png", + "ks": false, + "not": false, + "dn": "Mana and Life Regeneration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Mana Regeneration Rate", + "0.4% of Life Regenerated per second" + ], + "g": 401, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42837 + ], + "in": [ + 23456 + ] + }, + "44606": { + "id": 44606, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 402, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 26523 + ], + "in": [ + 44606 + ] + }, + "23027": { + "id": 23027, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 403, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 29199 + ], + "in": [ + 23027, + 23027, + 23027, + 23027 + ] + }, + "5237": { + "id": 5237, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 404, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 6363, + 42178, + 58854, + 30679, + 51404 + ], + "in": [ + 5237 + ] + }, + "53558": { + "id": 53558, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while holding a Shield" + ], + "g": 405, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 57900 + ], + "in": [ + 53558 + ] + }, + "2355": { + "id": 2355, + "icon": "Art/2DArt/SkillIcons/passives/blockstr.png", + "ks": false, + "not": false, + "dn": "Shield Defences and Physical Attack Damage with Shields", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "10% increased Physical Attack Damage while holding a Shield", + "30% increased Defences from Equipped Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + ], + "g": 405, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53558 + ], + "in": [ + 2355 + ] + }, + "57900": { + "id": 57900, + "icon": "Art/2DArt/SkillIcons/passives/CommandofSteel.png", + "ks": false, + "not": true, + "dn": "Command of Steel", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "reminderText": [ + "(Defences are Armour, Evasion Rating and Energy Shield)" + ], + "spc": [], + "sd": [ + "20% increased Physical Attack Damage while holding a Shield", + "40% increased Defences from Equipped Shield", + "Attack Skills deal 20% increased Damage with Ailments while holding a Shield", + "+2% Chance to Block Attack Damage while holding a Shield" + ], + "g": 405, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 57900 + ] + }, + "7977": { + "id": 7977, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + "ks": false, + "not": false, + "dn": "Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 405, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "39023": { + "id": 39023, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Melee Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + ], + "g": 406, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58831 + ], + "in": [ + 39023 + ] + }, + "15678": { + "id": 15678, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Melee Critical Strike Multiplier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15% to Melee Critical Strike Multiplier" + ], + "g": 406, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37501 + ], + "in": [ + 15678 + ] + }, + "58831": { + "id": 58831, + "icon": "Art/2DArt/SkillIcons/passives/deadlyprecision.png", + "ks": false, + "not": true, + "dn": "Disemboweling", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "50% increased Melee Critical Strike Chance", + "+25% to Melee Critical Strike Multiplier" + ], + "g": 406, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15678 + ], + "in": [ + 58831 + ] + }, + "37501": { + "id": 37501, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Melee Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Melee Critical Strike Chance" + ], + "g": 406, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56355, + 63282 + ], + "in": [ + 37501 + ] + }, + "56355": { + "id": 56355, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Melee Critical Strike Chance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + ], + "g": 406, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39023 + ], + "in": [ + 56355 + ] + }, + "18368": { + "id": 18368, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + "ks": false, + "not": false, + "dn": "Melee Critical Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 406, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "44941": { + "id": 44941, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", + "ks": true, + "not": false, + "dn": "Avatar of Fire", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"" + ], + "spc": [], + "sd": [ + "50% of Physical, Cold and Lightning Damage Converted to Fire Damage\nDeal no Non-Fire Damage" + ], + "g": 407, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 44941 + ] + }, + "11455": { + "id": 11455, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", + "ks": true, + "not": false, + "dn": "Chaos Inoculation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Give up everything in pursuit of greatness - even life itself." + ], + "spc": [], + "sd": [ + "Maximum Life becomes 1, Immune to Chaos Damage" + ], + "g": 408, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 11455 + ] + }, + "56803": { + "id": 56803, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 409, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 62694 + ], + "in": [ + 56803 + ] + }, + "24377": { + "id": 24377, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 409, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35568, + 56803 + ], + "in": [ + 24377 + ] + }, + "62694": { + "id": 62694, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 409, + "o": 2, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45227 + ], + "in": [ + 62694 + ] + }, + "45227": { + "id": 45227, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed" + ], + "g": 409, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 50306 + ], + "in": [ + 45227, + 45227 + ] + }, + "34678": { + "id": 34678, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life" + ], + "g": 410, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34678, + 34678, + 34678 + ] + }, + "19069": { + "id": 19069, + "icon": "Art/2DArt/SkillIcons/passives/thickskin.png", + "ks": false, + "not": true, + "dn": "Thick Skin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Life", + "8% chance to Avoid Elemental Ailments" + ], + "g": 410, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34678 + ], + "in": [] + }, + "26528": { + "id": 26528, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life" + ], + "g": 410, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 58271, + 34678 + ], + "in": [] + }, + "58271": { + "id": 58271, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life" + ], + "g": 410, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 30679 + ], + "in": [ + 58271 + ] + }, + "2047": { + "id": 2047, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 410, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "27656": { + "id": 27656, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 411, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 56295 + ], + "in": [ + 27656 + ] + }, + "2913": { + "id": 2913, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 412, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 50862 + ], + "in": [ + 2913 + ] + }, + "63799": { + "id": 63799, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "3% increased maximum Life" + ], + "g": 413, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 61320 + ], + "in": [ + 63799 + ] + }, + "18865": { + "id": 18865, + "icon": "Art/2DArt/SkillIcons/passives/melding.png", + "ks": false, + "not": true, + "dn": "Melding", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Energy Shield", + "6% increased maximum Life" + ], + "g": 413, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 55247 + ], + "in": [] + }, + "55247": { + "id": 55247, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "3% increased maximum Life" + ], + "g": 413, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 63799 + ], + "in": [ + 55247 + ] + }, + "61320": { + "id": 61320, + "icon": "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased maximum Energy Shield", + "3% increased maximum Life" + ], + "g": 413, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 61320, + 61320 + ] + }, + "33166": { + "id": 33166, + "icon": "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png", + "ks": false, + "not": false, + "dn": "Life and Energy Shield Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 413, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "20546": { + "id": 20546, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 414, + "o": 4, + "oidx": 37, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 41518 + ], + "in": [ + 20546, + 20546, + 20546 + ] + }, + "63139": { + "id": 63139, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 415, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 63139, + 63139 + ] + }, + "10221": { + "id": 10221, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 416, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 6446, + 16756 + ], + "in": [ + 10221, + 10221 + ] + }, + "42144": { + "id": 42144, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png", + "ks": false, + "not": false, + "dn": "Hierophant", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Templar Ascendancy passives)", + "(Arcane Surge grants 10% more Spell Damage, 10% increased Cast Speed, and 0.5% of maximum Mana Regenerated per second, for 4 seconds)" + ], + "spc": [], + "sd": [ + "25% increased maximum Mana", + "Can have up to 1 additional Totem summoned at a time", + "8% of Damage is taken from Mana before Life", + "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + "20% increased Spell Damage while you have Arcane Surge" + ], + "g": 417, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 42144 + ] + }, + "4367": { + "id": 4367, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 418, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 19501, + 44184, + 56158 + ], + "in": [ + 4367, + 4367 + ] + }, + "7085": { + "id": 7085, + "icon": "Art/2DArt/SkillIcons/passives/blademistress.png", + "ks": false, + "not": true, + "dn": "Weapon Artistry", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "16% increased Attack Physical Damage", + "4% increased Attack Speed", + "+10 to Strength and Dexterity" + ], + "g": 419, + "o": 2, + "oidx": 6, + "sa": 10, + "da": 10, + "ia": 0, + "out": [ + 38072, + 1201 + ], + "in": [ + 7085 + ] + }, + "1201": { + "id": 1201, + "icon": "Art/2DArt/SkillIcons/passives/attackspeed.png", + "ks": false, + "not": false, + "dn": "Attack Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased Attack Speed" + ], + "g": 419, + "o": 2, + "oidx": 9, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31508 + ], + "in": [ + 1201 + ] + }, + "31508": { + "id": 31508, + "icon": "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png", + "ks": false, + "not": true, + "dn": "Aspect of the Lynx", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "16% increased Attack Physical Damage", + "4% increased Movement Speed", + "20% increased Critical Strike Chance", + "+10 to Dexterity and Intelligence" + ], + "g": 419, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 10, + "out": [ + 1571 + ], + "in": [ + 31508, + 31508 + ] + }, + "38072": { + "id": 38072, + "icon": "Art/2DArt/SkillIcons/passives/damage.png", + "ks": false, + "not": false, + "dn": "Physical Attack Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Attack Physical Damage" + ], + "g": 419, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31508, + 63843 + ], + "in": [ + 38072 + ] + }, + "18182": { + "id": 18182, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 420, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 55414 + ], + "in": [ + 18182, + 18182, + 18182, + 18182 + ] + }, + "61262": { + "id": 61262, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 421, + "o": 4, + "oidx": 30, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 24083, + 37800 + ], + "in": [ + 61262 + ] + }, + "6764": { + "id": 6764, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 422, + "o": 4, + "oidx": 33, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 40366 + ], + "in": [ + 6764, + 6764, + 6764 + ] + }, + "40366": { + "id": 40366, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 422, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 42760, + 885, + 58763 + ], + "in": [ + 40366 + ] + }, + "14930": { + "id": 14930, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 423, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 12926 + ], + "in": [ + 14930, + 14930, + 14930, + 14930 + ] + }, + "54922": { + "id": 54922, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png", + "ks": true, + "not": false, + "dn": "Arrow Dancing", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Let the whistling of arrows and stones be your music." + ], + "spc": [], + "sd": [ + "40% more chance to Evade Projectile Attacks\n20% less chance to Evade Melee Attacks" + ], + "g": 424, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 54922 + ] + }, + "53884": { + "id": 53884, + "icon": "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png", + "ks": false, + "not": true, + "dn": "Righteous Providence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "ascendancyName": "Inquisitor", + "isAscendancyStart": false, + "spc": [], + "sd": [ + "100% increased Critical Strike Chance against Enemies that are affected\nby no Elemental Ailments", + "+45% to Critical Strike Multiplier against Enemies that are affected\nby Elemental Ailments", + "20% increased Effect of non-Damaging Ailments on Enemies" + ], + "g": 425, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 37486 + ], + "in": [ + 53884 + ] + }, + "35556": { + "id": 35556, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 426, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 44908 + ], + "in": [ + 35556 + ] + }, + "39916": { + "id": 39916, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 426, + "o": 4, + "oidx": 17, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 35556, + 20228 + ], + "in": [] + }, + "49651": { + "id": 49651, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 427, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 41635, + 2260 + ], + "in": [ + 49651, + 49651 + ] + }, + "41635": { + "id": 41635, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 427, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 32710 + ], + "in": [ + 41635, + 41635, + 41635 + ] + }, + "56295": { + "id": 56295, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 428, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 18182 + ], + "in": [ + 56295, + 56295, + 56295 + ] + }, + "43374": { + "id": 43374, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 429, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 22703, + 22061, + 30691 + ], + "in": [ + 43374, + 43374 + ] + }, + "27609": { + "id": 27609, + "icon": "Art/2DArt/SkillIcons/passives/damagestaff.png", + "ks": false, + "not": false, + "dn": "Staff and Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Staves", + "12% increased Physical Damage with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace", + "12% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 430, + "o": 2, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44908, + 65491 + ], + "in": [ + 27609 + ] + }, + "65491": { + "id": 65491, + "icon": "Art/2DArt/SkillIcons/passives/damagestaff.png", + "ks": false, + "not": false, + "dn": "Staff and Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Staves", + "12% increased Physical Damage with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace", + "12% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 430, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 15005 + ], + "in": [ + 65491 + ] + }, + "5366": { + "id": 5366, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedstaff.png", + "ks": false, + "not": false, + "dn": "Staff and Mace Attack Speed and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with Staves", + "3% increased Attack Speed with Maces", + "10% increased Armour" + ], + "g": 430, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34363 + ], + "in": [ + 5366, + 5366 + ] + }, + "13454": { + "id": 13454, + "icon": "Art/2DArt/SkillIcons/passives/attackspeedstaff.png", + "ks": false, + "not": false, + "dn": "Staff and Mace Attack Speed and Armour", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% increased Attack Speed with Staves", + "3% increased Attack Speed with Maces", + "10% increased Armour" + ], + "g": 430, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 27609 + ], + "in": [ + 13454 + ] + }, + "34363": { + "id": 34363, + "icon": "Art/2DArt/SkillIcons/passives/BluntInstrument.png", + "ks": false, + "not": true, + "dn": "Blunt Instrument", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "28% increased Physical Damage with Staves", + "28% increased Physical Damage with Maces", + "30% increased Armour", + "28% increased Damage with Ailments from Attack Skills while wielding a Mace", + "28% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 430, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 13454 + ], + "in": [ + 34363 + ] + }, + "38905": { + "id": 38905, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupMaceAndStaff.png", + "ks": false, + "not": false, + "dn": "Blunt Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 430, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "15005": { + "id": 15005, + "icon": "Art/2DArt/SkillIcons/passives/damagestaff.png", + "ks": false, + "not": false, + "dn": "Staff and Mace Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Physical Damage with Staves", + "12% increased Physical Damage with Maces", + "12% increased Damage with Ailments from Attack Skills while wielding a Mace", + "12% increased Damage with Ailments from Attack Skills while wielding a Staff" + ], + "g": 430, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 5366 + ], + "in": [ + 15005 + ] + }, + "21301": { + "id": 21301, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 431, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 20546 + ], + "in": [ + 21301 + ] + }, + "34400": { + "id": 34400, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 432, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 24914, + 14930, + 14056, + 8879 + ], + "in": [ + 34400, + 34400 + ] + }, + "16775": { + "id": 16775, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 433, + "o": 4, + "oidx": 13, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 40126 + ], + "in": [ + 16775, + 16775 + ] + }, + "46910": { + "id": 46910, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 433, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 16775, + 65034, + 34906 + ], + "in": [ + 46910 + ] + }, + "9327": { + "id": 9327, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png", + "ks": false, + "not": false, + "dn": "Pathfinder", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Ranger Ascendancy passives)" + ], + "spc": [], + "sd": [ + "10% increased Movement Speed during any Flask Effect", + "10% increased Attack Speed during any Flask Effect", + "Flasks gain 3 Charges every 3 seconds", + "Damage Penetrates 6% of Enemy Elemental Resistances", + "15% chance for your Flasks to not consume Charges" + ], + "g": 434, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 9327 + ] + }, + "21941": { + "id": 21941, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 435, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 40653 + ], + "in": [ + 21941 + ] + }, + "10153": { + "id": 10153, + "icon": "Art/2DArt/SkillIcons/passives/oxblood.png", + "ks": false, + "not": true, + "dn": "Physique", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Strength" + ], + "g": 436, + "o": 0, + "oidx": 0, + "sa": 30, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10153 + ] + }, + "15631": { + "id": 15631, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 437, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 1593, + 5366, + 44967 + ], + "in": [ + 15631 + ] + }, + "31875": { + "id": 31875, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 438, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 4397, + 60398 + ], + "in": [ + 31875 + ] + }, + "53114": { + "id": 53114, + "icon": "Art/2DArt/SkillIcons/passives/revengeofthehunted.png", + "ks": false, + "not": true, + "dn": "Revenge of the Hunted", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage", + "18% increased Evasion Rating", + "8% increased maximum Life" + ], + "g": 439, + "o": 2, + "oidx": 8, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25067 + ], + "in": [ + 53114 + ] + }, + "45593": { + "id": 45593, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 439, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 53114 + ], + "in": [ + 45593 + ] + }, + "12801": { + "id": 12801, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 439, + "o": 2, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45593, + 8938 + ], + "in": [] + }, + "25067": { + "id": 25067, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 439, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31315 + ], + "in": [ + 25067 + ] + }, + "31315": { + "id": 31315, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Evasion and Life", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating", + "4% increased maximum Life" + ], + "g": 439, + "o": 2, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39718 + ], + "in": [ + 31315 + ] + }, + "36338": { + "id": 36338, + "icon": "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + "ks": false, + "not": false, + "dn": "Life Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 439, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "5408": { + "id": 5408, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 440, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 63139, + 56589, + 11497, + 2355 + ], + "in": [ + 5408, + 5408 + ] + }, + "30679": { + "id": 30679, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 441, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 22266, + 55392 + ], + "in": [ + 30679, + 30679 + ] + }, + "40132": { + "id": 40132, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating" + ], + "g": 442, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 46882 + ], + "in": [ + 40132 + ] + }, + "46882": { + "id": 46882, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 442, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 46882 + ] + }, + "58854": { + "id": 58854, + "icon": "Art/2DArt/SkillIcons/passives/evadepercentage.png", + "ks": false, + "not": false, + "dn": "Evasion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Evasion Rating" + ], + "g": 442, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 40132 + ], + "in": [ + 58854 + ] + }, + "12412": { + "id": 12412, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 443, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [], + "in": [ + 12412, + 12412, + 12412, + 12412, + 12412 + ] + }, + "56744": { + "id": 56744, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Acrobatics Improvement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% additional chance to Dodge Attack Hits" + ], + "g": 444, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12401, + 19320 + ], + "in": [] + }, + "12401": { + "id": 12401, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Acrobatics Improvement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% additional chance to Dodge Attack Hits" + ], + "g": 444, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 12401, + 12401 + ] + }, + "19320": { + "id": 19320, + "icon": "Art/2DArt/SkillIcons/passives/evasion.png", + "ks": false, + "not": false, + "dn": "Acrobatics Improvement", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "3% additional chance to Dodge Attack Hits" + ], + "g": 444, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 14914 + ], + "in": [ + 19320 + ] + }, + "34601": { + "id": 34601, + "icon": "Art/2DArt/SkillIcons/passives/grace.png", + "ks": false, + "not": true, + "dn": "Proficiency", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Dexterity" + ], + "g": 445, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 30, + "ia": 0, + "out": [], + "in": [ + 34601 + ] + }, + "20010": { + "id": 20010, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 446, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 23471, + 9171, + 10808 + ], + "in": [ + 20010 + ] + }, + "32245": { + "id": 32245, + "icon": "Art/2DArt/SkillIcons/passives/grace.png", + "ks": false, + "not": true, + "dn": "Expertise", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Dexterity" + ], + "g": 447, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 30, + "ia": 0, + "out": [ + 50422 + ], + "in": [] + }, + "23471": { + "id": 23471, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 448, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 56589, + 5237 + ], + "in": [ + 23471, + 23471, + 23471, + 23471, + 23471 + ] + }, + "47251": { + "id": 47251, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 449, + "o": 2, + "oidx": 6, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 7388 + ], + "in": [ + 47251 + ] + }, + "7388": { + "id": 7388, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 449, + "o": 2, + "oidx": 10, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 60398, + 36634 + ], + "in": [ + 7388 + ] + }, + "36634": { + "id": 36634, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 449, + "o": 2, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 36634 + ] + }, + "17735": { + "id": 17735, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 450, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 46340, + 13009 + ], + "in": [ + 17735, + 17735, + 17735 + ] + }, + "33545": { + "id": 33545, + "icon": "Art/2DArt/SkillIcons/passives/Harrier.png", + "ks": false, + "not": true, + "dn": "Harrier", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "9% increased Attack Speed", + "5% increased Cast Speed", + "5% increased Movement Speed" + ], + "g": 451, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18033, + 28574 + ], + "in": [ + 33545, + 33545 + ] + }, + "14914": { + "id": 14914, + "icon": "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png", + "ks": true, + "not": false, + "dn": "Phase Acrobatics", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "With enough practice, you can feel the spells coming before they're even cast." + ], + "spc": [], + "sd": [ + "30% Chance to Dodge Spell Hits" + ], + "g": 452, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 14914 + ] + }, + "27929": { + "id": 27929, + "icon": "Art/2DArt/SkillIcons/passives/deepwisdom.png", + "ks": false, + "not": true, + "dn": "Deep Wisdom", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+20 to maximum Energy Shield", + "+20 to maximum Mana", + "+20 to Intelligence" + ], + "g": 453, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 40637, + 55643, + 38900, + 2292, + 8948, + 65203 + ], + "in": [ + 27929, + 27929, + 27929 + ] + }, + "11420": { + "id": 11420, + "icon": "Art/2DArt/SkillIcons/passives/ElementalDominion2.png", + "ks": false, + "not": true, + "dn": "Arcanist's Dominion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Spell Damage", + "5% increased Cast Speed", + "+20 to Intelligence" + ], + "g": 454, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 48362 + ], + "in": [ + 11420, + 11420, + 11420, + 11420, + 11420, + 11420, + 11420 + ] + }, + "60180": { + "id": 60180, + "icon": "Art/2DArt/SkillIcons/passives/savant.png", + "ks": false, + "not": true, + "dn": "Thief's Craft", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Intelligence" + ], + "g": 455, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 30, + "out": [], + "in": [ + 60180 + ] + }, + "30691": { + "id": 30691, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 456, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 476 + ], + "in": [ + 30691 + ] + }, + "40907": { + "id": 40907, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", + "ks": true, + "not": false, + "dn": "Unwavering Stance", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Stand your ground, child, keep your senses. The pain is fleeting, but victory is forever." + ], + "spc": [], + "sd": [ + "Cannot Evade enemy Attacks\nCannot be Stunned" + ], + "g": 457, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42800 + ], + "in": [] + }, + "21602": { + "id": 21602, + "icon": "Art/2DArt/SkillIcons/passives/MineTrap.png", + "ks": false, + "not": true, + "dn": "Destructive Apparatus", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "25% increased Mine Damage", + "15% increased Mine Duration", + "8% increased Mine Laying Speed" + ], + "g": 458, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21602 + ] + }, + "33911": { + "id": 33911, + "icon": "Art/2DArt/SkillIcons/passives/trapsspeed.png", + "ks": false, + "not": false, + "dn": "Mine Damage and Laying Speed", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Mine Damage", + "6% increased Mine Laying Speed" + ], + "g": 458, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 17849, + 21602 + ], + "in": [] + }, + "17849": { + "id": 17849, + "icon": "Art/2DArt/SkillIcons/passives/trapdamage.png", + "ks": false, + "not": false, + "dn": "Mine Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Mine Damage" + ], + "g": 458, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 17849, + 17849 + ] + }, + "32210": { + "id": 32210, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 459, + "o": 4, + "oidx": 13, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 8948 + ], + "in": [ + 32210 + ] + }, + "21678": { + "id": 21678, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 459, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 32210 + ], + "in": [ + 21678 + ] + }, + "35737": { + "id": 35737, + "icon": "Art/2DArt/SkillIcons/passives/innerforce.png", + "ks": false, + "not": false, + "dn": "Charge on Kill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + ], + "g": 460, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 47471 + ], + "in": [ + 35737 + ] + }, + "47471": { + "id": 47471, + "icon": "Art/2DArt/SkillIcons/passives/innerforce.png", + "ks": false, + "not": true, + "dn": "Overcharged", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% chance to gain a Power, Frenzy or Endurance Charge on Kill" + ], + "g": 460, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 47471 + ] + }, + "31137": { + "id": 31137, + "icon": "Art/2DArt/SkillIcons/passives/innerforce.png", + "ks": false, + "not": false, + "dn": "Charge on Kill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + ], + "g": 460, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 35737 + ], + "in": [ + 31137 + ] + }, + "36542": { + "id": 36542, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 461, + "o": 4, + "oidx": 27, + "sa": 0, + "da": 0, + "ia": 10, + "out": [], + "in": [ + 36542, + 36542 + ] + }, + "37569": { + "id": 37569, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 461, + "o": 4, + "oidx": 20, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 36542, + 57264 + ], + "in": [] + }, + "5296": { + "id": 5296, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 462, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 33310, + 19501 + ], + "in": [ + 5296 + ] + }, + "12597": { + "id": 12597, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png", + "ks": false, + "not": false, + "dn": "Occultist", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Witch Ascendancy passives)" + ], + "spc": [], + "sd": [ + "You can apply an additional Curse", + "10% increased Effect of your Curses", + "1.5% of Energy Shield Regenerated per second", + "Cannot Be Stunned while you have Energy Shield" + ], + "g": 463, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 12597 + ] + }, + "49605": { + "id": 49605, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 464, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 32710, + 60440, + 34882, + 41027, + 22618 + ], + "in": [ + 49605 + ] + }, + "33310": { + "id": 33310, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 465, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 34882, + 56075, + 49651, + 62697 + ], + "in": [ + 33310 + ] + }, + "44184": { + "id": 44184, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 466, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 29781 + ], + "in": [ + 44184, + 44184, + 44184, + 44184 + ] + }, + "18025": { + "id": 18025, + "icon": "Art/2DArt/SkillIcons/passives/savant.png", + "ks": false, + "not": true, + "dn": "Hard Knocks", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+30 to Intelligence" + ], + "g": 467, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 30, + "out": [ + 14056 + ], + "in": [] + }, + "6538": { + "id": 6538, + "icon": "Art/2DArt/SkillIcons/passives/plusintelligence.png", + "ks": false, + "not": false, + "dn": "Intelligence", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Intelligence" + ], + "g": 468, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 10, + "out": [ + 38662, + 64265 + ], + "in": [ + 6538 + ] + }, + "38701": { + "id": 38701, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Mana" + ], + "g": 469, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18767 + ], + "in": [ + 38701 + ] + }, + "18767": { + "id": 18767, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Mana" + ], + "g": 469, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 48298 + ], + "in": [ + 18767 + ] + }, + "48298": { + "id": 48298, + "icon": "Art/2DArt/SkillIcons/passives/Inspiration.png", + "ks": false, + "not": true, + "dn": "Inspiration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+40 to maximum Mana", + "30% increased maximum Mana" + ], + "g": 469, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 48298 + ] + }, + "5823": { + "id": 5823, + "icon": "Art/2DArt/SkillIcons/passives/Coordination.png", + "ks": false, + "not": true, + "dn": "Coordination", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Speed", + "6% increased Cast Speed", + "+10 to Dexterity and Intelligence" + ], + "g": 470, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 10, + "out": [ + 4011, + 27276, + 30205, + 46289 + ], + "in": [ + 5823, + 5823, + 5823 + ] + }, + "55993": { + "id": 55993, + "icon": "Art/2DArt/SkillIcons/passives/elementaldamage.png", + "ks": false, + "not": false, + "dn": "Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Elemental Damage" + ], + "g": 471, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 18135 + ], + "in": [ + 55993 + ] + }, + "4011": { + "id": 4011, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 472, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 28012, + 9355 + ], + "in": [ + 4011, + 4011 + ] + }, + "49806": { + "id": 49806, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 473, + "o": 4, + "oidx": 7, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 6580 + ], + "in": [ + 49806 + ] + }, + "63649": { + "id": 63649, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 473, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 49806 + ], + "in": [ + 63649 + ] + }, + "60942": { + "id": 60942, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 474, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 33196 + ], + "in": [ + 60942, + 60942, + 60942, + 60942 + ] + }, + "17201": { + "id": 17201, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 475, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [], + "in": [ + 17201, + 17201, + 17201, + 17201, + 17201, + 17201 + ] + }, + "5616": { + "id": 5616, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 476, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 63843 + ], + "in": [ + 5616, + 5616, + 5616 + ] + }, + "1529": { + "id": 1529, + "icon": "Art/2DArt/SkillIcons/passives/plusdexterity.png", + "ks": false, + "not": false, + "dn": "Dexterity", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Dexterity" + ], + "g": 476, + "o": 4, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 0, + "out": [ + 5616 + ], + "in": [ + 1529, + 1529 + ] + }, + "54142": { + "id": 54142, + "icon": "Art/2DArt/SkillIcons/passives/finesse.png", + "ks": false, + "not": true, + "dn": "Finesse", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased Attack Speed", + "20% increased Global Accuracy Rating", + "+20 to Dexterity" + ], + "g": 477, + "o": 4, + "oidx": 10, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 9373, + 32117, + 18670, + 903 + ], + "in": [ + 54142, + 54142, + 54142 + ] + }, + "57052": { + "id": 57052, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png", + "ks": false, + "not": false, + "dn": "Chieftain", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Marauder Ascendancy passives)", + "(Recently refers to the past 4 seconds)", + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken, and lasts for 4 seconds)" + ], + "spc": [], + "sd": [ + "2% of Life Regenerated per second", + "10% increased Strength", + "1% of Damage dealt by your Totems is Leeched to you as Life", + "10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" + ], + "g": 478, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 57052 + ] + }, + "50422": { + "id": 50422, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 479, + "o": 4, + "oidx": 20, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 50197, + 50862, + 10221 + ], + "in": [ + 50422, + 50422, + 50422, + 50422 + ] + }, + "24083": { + "id": 24083, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 480, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 24083, + 24083, + 24083, + 24083, + 24083 + ] + }, + "50570": { + "id": 50570, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 481, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 31931 + ], + "in": [ + 50570 + ] + }, + "35894": { + "id": 35894, + "icon": "Art/2DArt/SkillIcons/passives/mentalacuity.png", + "ks": false, + "not": true, + "dn": "Trickery", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Damage", + "20% increased Critical Strike Chance", + "+10 to Dexterity and Intelligence" + ], + "g": 482, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 10, + "ia": 10, + "out": [ + 20546, + 21575 + ], + "in": [ + 35894, + 35894, + 35894, + 35894, + 35894 + ] + }, + "46408": { + "id": 46408, + "icon": "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + "ks": false, + "not": true, + "dn": "Fangs of the Viper", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "20% increased Global Physical Damage", + "20% increased Chaos Damage", + "5% increased Movement Speed", + "+20 to Dexterity" + ], + "g": 483, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 20, + "ia": 0, + "out": [ + 60259 + ], + "in": [ + 46408, + 46408, + 46408 + ] + }, + "45491": { + "id": 45491, + "icon": "Art/2DArt/SkillIcons/passives/onehandspeed.png", + "ks": false, + "not": false, + "dn": "One Handed Melee Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Physical Damage with One Handed Melee Weapons", + "10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon" + ], + "g": 484, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 41866, + 7085 + ], + "in": [ + 45491, + 45491 + ] + }, + "15711": { + "id": 15711, + "icon": "Art/2DArt/SkillIcons/passives/blastradius.png", + "ks": false, + "not": true, + "dn": "Blast Radius", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Area of Effect", + "20% increased Area Damage" + ], + "g": 485, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21075 + ], + "in": [] + }, + "23540": { + "id": 23540, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneConduit.png", + "ks": true, + "not": false, + "dn": "Conduit", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "To me, brave companions! Feel my radiance flow through you!" + ], + "spc": [], + "sd": [ + "Share Endurance, Frenzy and Power Charges with nearby party members" + ], + "g": 486, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 31137 + ], + "in": [ + 23540 + ] + }, + "54307": { + "id": 54307, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png", + "ks": true, + "not": false, + "dn": "Acrobatics", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Light and unadorned, like wind on water, you will be." + ], + "spc": [], + "sd": [ + "30% Chance to Dodge Attack Hits. 50% less Armour, 30% less Energy Shield, 30% less Chance to Block Spell and Attack Damage" + ], + "g": 487, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 12401 + ], + "in": [ + 54307 + ] + }, + "10661": { + "id": 10661, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", + "ks": true, + "not": false, + "dn": "Iron Reflexes", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Why should I dodge blows that I do not fear?" + ], + "spc": [], + "sd": [ + "Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating" + ], + "g": 488, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10661 + ] + }, + "57279": { + "id": 57279, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", + "ks": true, + "not": false, + "dn": "Blood Magic", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Lay open your veins, and draw power from your own spilled life." + ], + "spc": [], + "sd": [ + "Removes all mana. Spend Life instead of Mana for Skills" + ], + "g": 489, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 3644, + 56143 + ], + "in": [] + }, + "39085": { + "id": 39085, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", + "ks": true, + "not": false, + "dn": "Elemental Equilibrium", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "Balance is good in all things, but especially in the realm of magic." + ], + "spc": [], + "sd": [ + "Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements" + ], + "g": 490, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39085 + ] + }, + "20077": { + "id": 20077, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Duration", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "15% increased Curse Duration" + ], + "g": 491, + "o": 2, + "oidx": 7, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 42436 + ], + "in": [ + 20077 + ] + }, + "42436": { + "id": 42436, + "icon": "Art/2DArt/SkillIcons/passives/Corruption.png", + "ks": false, + "not": false, + "dn": "Curse Effect", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "5% increased Effect of your Curses" + ], + "g": 491, + "o": 2, + "oidx": 11, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39986 + ], + "in": [ + 42436 + ] + }, + "39986": { + "id": 39986, + "icon": "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png", + "ks": false, + "not": true, + "dn": "Hex Master", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "80% increased Curse Duration", + "40% increased Area of Effect of Curse Skills", + "5% increased Effect of your Curses" + ], + "g": 491, + "o": 2, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39986 + ] + }, + "32295": { + "id": 32295, + "icon": "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + "ks": false, + "not": false, + "dn": "Curse Mastery", + "m": true, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 491, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [] + }, + "56646": { + "id": 56646, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage with Attack Skills" + ], + "g": 492, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 39718 + ], + "in": [ + 56646 + ] + }, + "25511": { + "id": 25511, + "icon": "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + "ks": false, + "not": false, + "dn": "Weapon Elemental Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased Elemental Damage with Attack Skills" + ], + "g": 492, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 56646 + ], + "in": [ + 25511 + ] + }, + "4481": { + "id": 4481, + "icon": "Art/2DArt/SkillIcons/passives/ForceOfNature.png", + "ks": false, + "not": true, + "dn": "Forces of Nature", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Damage with Weapons Penetrates 6% Elemental Resistance", + "20% increased Elemental Damage with Attack Skills" + ], + "g": 492, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 25511 + ], + "in": [] + }, + "24050": { + "id": 24050, + "icon": "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png", + "ks": false, + "not": true, + "dn": "Coldhearted Calculation", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Attack Damage", + "12% increased Spell Damage", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + ], + "g": 493, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 20, + "out": [ + 3656, + 10763 + ], + "in": [ + 24050, + 24050 + ] + }, + "10808": { + "id": 10808, + "icon": "Art/2DArt/SkillIcons/passives/vaalpact.png", + "ks": true, + "not": false, + "dn": "Vaal Pact", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "flavourText": [ + "My ancestral pact was sealed. Forevermore, I would gain sustenance only from the ravaged flesh of my enemies." + ], + "spc": [], + "sd": [ + "Life Leeched per Second is doubled.\nMaximum Life Leech Rate is doubled.\nLife Regeneration has no effect." + ], + "g": 494, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 10808 + ] + }, + "18359": { + "id": 18359, + "icon": "Art/2DArt/SkillIcons/passives/minionblockchance.png", + "ks": false, + "not": false, + "dn": "Minion Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have +2% Chance to Block Attack Damage" + ], + "g": 495, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34306, + 45175 + ], + "in": [] + }, + "21973": { + "id": 21973, + "icon": "Art/2DArt/SkillIcons/passives/minionblockchance.png", + "ks": false, + "not": true, + "dn": "Decay Ward", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have +4% Chance to Block Attack Damage", + "Minions Recover 1% of their Maximum Life when they Block" + ], + "g": 495, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 21973 + ] + }, + "34306": { + "id": 34306, + "icon": "Art/2DArt/SkillIcons/passives/minionblockchance.png", + "ks": false, + "not": false, + "dn": "Minion Block", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "Minions have +2% Chance to Block Attack Damage" + ], + "g": 495, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 21973 + ], + "in": [ + 34306 + ] + }, + "41689": { + "id": 41689, + "icon": "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + "ks": false, + "not": false, + "dn": "Physical and Chaos Damage", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Global Physical Damage", + "12% increased Chaos Damage" + ], + "g": 496, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 45272, + 57248 + ], + "in": [ + 41689 + ] + }, + "49254": { + "id": 49254, + "icon": "Art/2DArt/SkillIcons/passives/Retribution.png", + "ks": false, + "not": true, + "dn": "Retribution", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Damage", + "Minions deal 10% increased Damage", + "5% increased Attack and Cast Speed", + "+10 to Strength and Intelligence" + ], + "g": 497, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 10, + "out": [ + 17735 + ], + "in": [ + 49254, + 49254, + 49254, + 49254, + 49254 + ] + }, + "19287": { + "id": 19287, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Life on Kill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+5 Life gained on Kill" + ], + "g": 498, + "o": 1, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 49379 + ], + "in": [ + 19287 + ] + }, + "61875": { + "id": 61875, + "icon": "Art/2DArt/SkillIcons/passives/life1.png", + "ks": false, + "not": false, + "dn": "Life and Life on Kill", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "4% increased maximum Life", + "+5 Life gained on Kill" + ], + "g": 498, + "o": 1, + "oidx": 2, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 19287 + ], + "in": [ + 61875 + ] + }, + "49379": { + "id": 49379, + "icon": "Art/2DArt/SkillIcons/passives/HiredKiller2.png", + "ks": false, + "not": true, + "dn": "Hired Killer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "6% increased maximum Life", + "+10 Life gained on Kill" + ], + "g": 498, + "o": 1, + "oidx": 4, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 49379 + ] + }, + "34907": { + "id": 34907, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "8% increased maximum Mana" + ], + "g": 499, + "o": 1, + "oidx": 5, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 51786, + 45067 + ], + "in": [ + 34907 + ] + }, + "28424": { + "id": 28424, + "icon": "Art/2DArt/SkillIcons/passives/mana.png", + "ks": false, + "not": false, + "dn": "Mana and Mana Gain on Killing Blow", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "10% increased maximum Mana", + "+5 Mana gained on Kill" + ], + "g": 499, + "o": 1, + "oidx": 1, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34907 + ], + "in": [ + 28424 + ] + }, + "45067": { + "id": 45067, + "icon": "Art/2DArt/SkillIcons/passives/ThrillKiller.png", + "ks": false, + "not": true, + "dn": "Thrill Killer", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+15 to maximum Mana", + "15% increased maximum Mana", + "+10 Mana gained on Kill" + ], + "g": 499, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 28424 + ], + "in": [ + 45067 + ] + }, + "6778": { + "id": 6778, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png", + "ks": false, + "not": false, + "dn": "Trickster", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Shadow Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "15% chance to gain a Frenzy Charge and a Power Charge on Kill", + "50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently", + "Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage", + "Cannot be Stunned if you haven't been Hit Recently", + "15 Mana Regenerated per second if you've used a Movement Skill Recently" + ], + "g": 500, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 6778 + ] + }, + "26196": { + "id": 26196, + "icon": "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + "ks": false, + "not": false, + "dn": "Jewel Socket", + "m": false, + "isJewelSocket": true, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [], + "g": 501, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 34171, + 37999 + ], + "in": [] + }, + "34171": { + "id": 34171, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 502, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 60472 + ], + "in": [ + 34171 + ] + }, + "43122": { + "id": 43122, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png", + "ks": false, + "not": false, + "dn": "Assassin", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Shadow Ascendancy passives)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Recently refers to the past 4 seconds)" + ], + "spc": [], + "sd": [ + "+1% to Critical Strike Chance", + "10% chance to gain a Power Charge on Critical Strike", + "40% chance to Poison on Hit", + "10% increased Movement Speed if you've Killed Recently", + "Damage from your Critical Strikes cannot be Reflected" + ], + "g": 503, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 43122 + ] + }, + "56001": { + "id": 56001, + "icon": "Art/2DArt/SkillIcons/passives/plusstrength.png", + "ks": false, + "not": false, + "dn": "Strength", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "+10 to Strength" + ], + "g": 504, + "o": 0, + "oidx": 0, + "sa": 10, + "da": 0, + "ia": 0, + "out": [ + 17201, + 34031, + 29933 + ], + "in": [ + 56001 + ] + }, + "58827": { + "id": 58827, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png", + "ks": false, + "not": false, + "dn": "Saboteur", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Shadow Ascendancy passives)", + "(Recently refers to the past 4 seconds)", + "(Blinded enemies have their Chance to Hit halved)" + ], + "spc": [], + "sd": [ + "30% increased Area of Effect", + "Damage Penetrates 6% of Enemy Elemental Resistances", + "1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%", + "1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%", + "25% chance to Blind Enemies on Hit" + ], + "g": 505, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 58827 + ] + }, + "8656": { + "id": 8656, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png", + "ks": false, + "not": false, + "dn": "Raider", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Ranger Ascendancy passives)", + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + ], + "spc": [], + "sd": [ + "20% increased Attack Damage", + "10% increased Movement Speed", + "4% chance to Dodge Attack Hits", + "You have Onslaught while on full Frenzy Charges", + "10% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" + ], + "g": 506, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 8656 + ] + }, + "34774": { + "id": 34774, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png", + "ks": false, + "not": false, + "dn": "Gladiator", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Duelist Ascendancy passives)", + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is higher while moving)", + "(Blinded enemies have their Chance to Hit halved)" + ], + "spc": [], + "sd": [ + "15% Chance to Block Spell Damage", + "+3% to maximum Chance to Block Attack Damage", + "Attacks have 25% chance to cause Bleeding", + "10% chance to Blind with Hits against Bleeding Enemies", + "15% more Damage with Bleeding" + ], + "g": 507, + "o": 1, + "oidx": 3, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 34774 + ] + }, + "39598": { + "id": 39598, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png", + "ks": false, + "not": false, + "dn": "Champion", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Duelist Ascendancy passives)", + "(Fortify grants 20% reduced Damage Taken from Hits)", + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)", + "(Intimidated enemies take 10% increased Attack Damage)" + ], + "spc": [], + "sd": [ + "10% chance to Fortify on Melee hit", + "Enemies you Taunt take 10% increased Damage", + "25% chance to Taunt on Hit", + "Your Hits permanently Intimidate Enemies that are on Full Life", + "You and nearby Allies have 8% increased Movement Speed" + ], + "g": 508, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 39598 + ] + }, + "43962": { + "id": 43962, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png", + "ks": false, + "not": false, + "dn": "Inquisitor", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Templar Ascendancy passives)", + "(Allies standing on Consecrated Ground Regenerate a percentage of their Maximum Life per second)", + "(Elemental Ailments are Ignite, Chill, Freeze and Shock)" + ], + "spc": [], + "sd": [ + "+30% to Critical Strike Multiplier against Enemies that are affected\nby Elemental Ailments", + "Damage Penetrates 6% of Enemy Elemental Resistances", + "10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", + "Immune to Elemental Ailments while on Consecrated Ground", + "Nearby Enemies Take 10% increased Elemental Damage" + ], + "g": 509, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 43962 + ] + }, + "30919": { + "id": 30919, + "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png", + "ks": false, + "not": false, + "dn": "Guardian", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": true, + "passivePointsGranted": 0, + "ascendancyName": "Ascendant", + "isAscendancyStart": false, + "reminderText": [ + "(You can only take one of the three Templar Ascendancy passives)" + ], + "spc": [], + "sd": [ + "25% reduced Effect of Curses on you", + "Auras from your Skills grant +1% Physical Damage Reduction to you and Allies", + "10% increased effect of Non-Curse Auras from your Skills", + "Every 5 seconds, 20% of Maximum Life Regenerated over one second", + "You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other" + ], + "g": 510, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [], + "in": [ + 30919 + ] + }, + "38129": { + "id": 38129, + "icon": "Art/2DArt/SkillIcons/passives/damage_blue.png", + "ks": false, + "not": false, + "dn": "Damage and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "14% increased Damage", + "+12 to maximum Energy Shield" + ], + "g": 511, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 44683, + 11334, + 63639 + ], + "in": [ + 38129 + ] + }, + "63639": { + "id": 63639, + "icon": "Art/2DArt/SkillIcons/passives/damage_blue.png", + "ks": false, + "not": false, + "dn": "Damage and Energy Shield", + "m": false, + "isJewelSocket": false, + "isMultipleChoice": false, + "isMultipleChoiceOption": false, + "passivePointsGranted": 0, + "spc": [], + "sd": [ + "12% increased Damage", + "+10 to maximum Energy Shield" + ], + "g": 512, + "o": 0, + "oidx": 0, + "sa": 0, + "da": 0, + "ia": 0, + "out": [ + 64501, + 62069 + ], + "in": [ + 63639 + ] + } + }, + "extraImages": { + "1": { + "x": -4076.37, + "y": 10.7747, + "image": "Art/2DArt/BaseClassIllustrations/Str.png" + }, + "2": { + "x": 1498.91, + "y": 108.247, + "image": "Art/2DArt/BaseClassIllustrations/Dex.png" + }, + "3": { + "x": -1533.64, + "y": -3304.37, + "image": "Art/2DArt/BaseClassIllustrations/Int.png" + }, + "4": { + "x": -1956.89, + "y": 1209.63, + "image": "Art/2DArt/BaseClassIllustrations/StrDex.png" + }, + "5": { + "x": -3268.73, + "y": -2930.86, + "image": "Art/2DArt/BaseClassIllustrations/StrInt.png" + }, + "6": { + "x": 1216.35, + "y": -3520.57, + "image": "Art/2DArt/BaseClassIllustrations/DexInt.png" + } + }, + "min_x": -10551, + "min_y": -7816, + "max_x": 9326, + "max_y": 8304, + "assets": { + "PSSkillFrame": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjowLCJzcCI6MC4xMjQ2fV0/72ad83edab/Skill_Frame_Unallocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjowLCJzcCI6MC4yMTA5fV0/e17b5ab11a/Skill_Frame_Unallocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjowLCJzcCI6MC4yOTcyfV0/f33502e71d/Skill_Frame_Unallocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjowLCJzcCI6MC4zODM1fV0/aa12322eb6/Skill_Frame_Unallocated.png" + }, + "PSSkillFrameHighlighted": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjoyLCJzcCI6MC4xMjQ2fV0/bde3b38765/Skill_Frame_CanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjoyLCJzcCI6MC4yMTA5fV0/bd8824d001/Skill_Frame_CanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjoyLCJzcCI6MC4yOTcyfV0/ff5544672a/Skill_Frame_CanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJmNWRhMmUyMjExOGFkY2NjYmQ2Yzk0Zjg4NTkzNDY4NiIseyJ0IjoyLCJzcCI6MC4zODM1fV0/07095ea2f1/Skill_Frame_CanAllocate.png" + }, + "PSSkillFrameActive": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJiMjc2Mjk0ODA5N2MyODUzOTQ1YWUzNTdhNDcxYzZlOCIseyJ0IjoxLCJzcCI6MC4xMjQ2fV0/3174f60d6b/Skill_Frame_Allocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJiMjc2Mjk0ODA5N2MyODUzOTQ1YWUzNTdhNDcxYzZlOCIseyJ0IjoxLCJzcCI6MC4yMTA5fV0/91e3fc4606/Skill_Frame_Allocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJiMjc2Mjk0ODA5N2MyODUzOTQ1YWUzNTdhNDcxYzZlOCIseyJ0IjoxLCJzcCI6MC4yOTcyfV0/337c5355d7/Skill_Frame_Allocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJiMjc2Mjk0ODA5N2MyODUzOTQ1YWUzNTdhNDcxYzZlOCIseyJ0IjoxLCJzcCI6MC4zODM1fV0/a70a46fca1/Skill_Frame_Allocated.png" + }, + "PSStartNodeBackgroundInactive": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCIyMDVmMTAwMzVmNzJhM2E3YmNjMDA0NzM3MTA3ZjhjNiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlblN0YXJ0Tm9kZUJhY2tncm91bmRJbmFjdGl2ZSIsInNwIjowLjEyNDZ9XQ/f9a03ff332/Start_Node_Background.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCIyMDVmMTAwMzVmNzJhM2E3YmNjMDA0NzM3MTA3ZjhjNiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlblN0YXJ0Tm9kZUJhY2tncm91bmRJbmFjdGl2ZSIsInNwIjowLjIxMDl9XQ/617d2dbff4/Start_Node_Background.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCIyMDVmMTAwMzVmNzJhM2E3YmNjMDA0NzM3MTA3ZjhjNiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlblN0YXJ0Tm9kZUJhY2tncm91bmRJbmFjdGl2ZSIsInNwIjowLjI5NzJ9XQ/4010d165aa/Start_Node_Background.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCIyMDVmMTAwMzVmNzJhM2E3YmNjMDA0NzM3MTA3ZjhjNiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlblN0YXJ0Tm9kZUJhY2tncm91bmRJbmFjdGl2ZSIsInNwIjowLjM4MzV9XQ/e9d1b70740/Start_Node_Background.gif" + }, + "KeystoneFrameUnallocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1ZDM1MTgyMGE0YjE4YTY3N2JjNzVmMzk1Y2FlZTM4MSIseyJ0IjozLCJzcCI6MC4xMjQ2fV0/304d933238/KeystoneFrameUnallocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1ZDM1MTgyMGE0YjE4YTY3N2JjNzVmMzk1Y2FlZTM4MSIseyJ0IjozLCJzcCI6MC4yMTA5fV0/3f9e0b49a8/KeystoneFrameUnallocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1ZDM1MTgyMGE0YjE4YTY3N2JjNzVmMzk1Y2FlZTM4MSIseyJ0IjozLCJzcCI6MC4yOTcyfV0/58d4b4f052/KeystoneFrameUnallocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1ZDM1MTgyMGE0YjE4YTY3N2JjNzVmMzk1Y2FlZTM4MSIseyJ0IjozLCJzcCI6MC4zODM1fV0/292a939e57/KeystoneFrameUnallocated.png" + }, + "KeystoneFrameCanAllocate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJmYmYyZDZiMmY5ZDk1NGViMDIzN2QxOTY3OTgyM2JkMCIseyJ0Ijo1LCJzcCI6MC4xMjQ2fV0/a6761a3a79/KeystoneFrameCanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJmYmYyZDZiMmY5ZDk1NGViMDIzN2QxOTY3OTgyM2JkMCIseyJ0Ijo1LCJzcCI6MC4yMTA5fV0/afb0c96057/KeystoneFrameCanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJmYmYyZDZiMmY5ZDk1NGViMDIzN2QxOTY3OTgyM2JkMCIseyJ0Ijo1LCJzcCI6MC4yOTcyfV0/1f568b637c/KeystoneFrameCanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJmYmYyZDZiMmY5ZDk1NGViMDIzN2QxOTY3OTgyM2JkMCIseyJ0Ijo1LCJzcCI6MC4zODM1fV0/3d089477c1/KeystoneFrameCanAllocate.png" + }, + "KeystoneFrameAllocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1MDI0ODI3YmFmOGFmY2I2ZmIxY2VjY2U3NWE3YTA4ZiIseyJ0Ijo0LCJzcCI6MC4xMjQ2fV0/10428a9d86/KeystoneFrameAllocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1MDI0ODI3YmFmOGFmY2I2ZmIxY2VjY2U3NWE3YTA4ZiIseyJ0Ijo0LCJzcCI6MC4yMTA5fV0/fc96d76fb7/KeystoneFrameAllocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1MDI0ODI3YmFmOGFmY2I2ZmIxY2VjY2U3NWE3YTA4ZiIseyJ0Ijo0LCJzcCI6MC4yOTcyfV0/421dbeb968/KeystoneFrameAllocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1MDI0ODI3YmFmOGFmY2I2ZmIxY2VjY2U3NWE3YTA4ZiIseyJ0Ijo0LCJzcCI6MC4zODM1fV0/1db0fa68eb/KeystoneFrameAllocated.png" + }, + "PSGroupBackground1": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJmMGE4YzQwOTA3MGY2ZWIzMTVjNTBiM2FjNTk0MDQwNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZFNtYWxsIiwic3AiOjAuMTI0Nn1d/0f7e275103/Group_Background_1.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJmMGE4YzQwOTA3MGY2ZWIzMTVjNTBiM2FjNTk0MDQwNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZFNtYWxsIiwic3AiOjAuMjEwOX1d/43e0aaa4d2/Group_Background_1.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJmMGE4YzQwOTA3MGY2ZWIzMTVjNTBiM2FjNTk0MDQwNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZFNtYWxsIiwic3AiOjAuMjk3Mn1d/51e172cb37/Group_Background_1.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJmMGE4YzQwOTA3MGY2ZWIzMTVjNTBiM2FjNTk0MDQwNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZFNtYWxsIiwic3AiOjAuMzgzNX1d/a76f468526/Group_Background_1.gif" + }, + "PSGroupBackground2": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI3ZjA0MjA4ZjRhYzVjNzM2MzYxYTJhODEwNmExODA0YSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZE1lZGl1bSIsInNwIjowLjEyNDZ9XQ/250000af3a/Group_Background_2.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI3ZjA0MjA4ZjRhYzVjNzM2MzYxYTJhODEwNmExODA0YSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZE1lZGl1bSIsInNwIjowLjIxMDl9XQ/881ac46499/Group_Background_2.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI3ZjA0MjA4ZjRhYzVjNzM2MzYxYTJhODEwNmExODA0YSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZE1lZGl1bSIsInNwIjowLjI5NzJ9XQ/c365a062aa/Group_Background_2.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI3ZjA0MjA4ZjRhYzVjNzM2MzYxYTJhODEwNmExODA0YSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZE1lZGl1bSIsInNwIjowLjM4MzV9XQ/c78d18bf52/Group_Background_2.gif" + }, + "PSGroupBackground3": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI3NGQ0NzNmYTVkYTA1NmM0MDg2NGZmNWIwZmM5N2ViZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZExhcmdlSGFsZiIsInNwIjowLjEyNDZ9XQ/c72b168551/Group_Background_3.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI3NGQ0NzNmYTVkYTA1NmM0MDg2NGZmNWIwZmM5N2ViZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZExhcmdlSGFsZiIsInNwIjowLjIxMDl9XQ/83e48309fd/Group_Background_3.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI3NGQ0NzNmYTVkYTA1NmM0MDg2NGZmNWIwZmM5N2ViZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZExhcmdlSGFsZiIsInNwIjowLjI5NzJ9XQ/dd7bb83206/Group_Background_3.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI3NGQ0NzNmYTVkYTA1NmM0MDg2NGZmNWIwZmM5N2ViZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL1Bhc3NpdmVTa2lsbFNjcmVlbkdyb3VwQmFja2dyb3VuZExhcmdlSGFsZiIsInNwIjowLjM4MzV9XQ/9c9cb54deb/Group_Background_3.gif" + }, + "Orbit1Normal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJiOGQ5ZmU5ODAwNmM0YWQwMzkxZTc0ZjcwNDViYmJjNiIseyJ0Ijo5LCJvIjoxLCJzcCI6MC4xMjQ2fV0/4b52cbcfe5/PSOrbit1Normal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJiOGQ5ZmU5ODAwNmM0YWQwMzkxZTc0ZjcwNDViYmJjNiIseyJ0Ijo5LCJvIjoxLCJzcCI6MC4yMTA5fV0/a921fd9377/PSOrbit1Normal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJiOGQ5ZmU5ODAwNmM0YWQwMzkxZTc0ZjcwNDViYmJjNiIseyJ0Ijo5LCJvIjoxLCJzcCI6MC4yOTcyfV0/c48f388ed3/PSOrbit1Normal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJiOGQ5ZmU5ODAwNmM0YWQwMzkxZTc0ZjcwNDViYmJjNiIseyJ0Ijo5LCJvIjoxLCJzcCI6MC4zODM1fV0/cc7405ea65/PSOrbit1Normal.png" + }, + "Orbit1Intermediate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIxZTdhNmJkNTM5ZmUxZWNmNGM3NzViNTY4YzhmYWIxMyIseyJ0IjoxMCwibyI6MSwic3AiOjAuMTI0Nn1d/618765f48c/Orbit1Intermediate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIxZTdhNmJkNTM5ZmUxZWNmNGM3NzViNTY4YzhmYWIxMyIseyJ0IjoxMCwibyI6MSwic3AiOjAuMjEwOX1d/0028f33815/Orbit1Intermediate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIxZTdhNmJkNTM5ZmUxZWNmNGM3NzViNTY4YzhmYWIxMyIseyJ0IjoxMCwibyI6MSwic3AiOjAuMjk3Mn1d/26d11641b1/Orbit1Intermediate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIxZTdhNmJkNTM5ZmUxZWNmNGM3NzViNTY4YzhmYWIxMyIseyJ0IjoxMCwibyI6MSwic3AiOjAuMzgzNX1d/b13b4ba632/Orbit1Intermediate.png" + }, + "Orbit1Active": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJjNzYzNTdkOGE1ZjQ5YzIyNjYyNjhhZTU1M2FhZjBiZCIseyJ0IjoxMSwibyI6MSwic3AiOjAuMTI0Nn1d/1002ed727c/Orbit1Active.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJjNzYzNTdkOGE1ZjQ5YzIyNjYyNjhhZTU1M2FhZjBiZCIseyJ0IjoxMSwibyI6MSwic3AiOjAuMjEwOX1d/a940d5deee/Orbit1Active.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJjNzYzNTdkOGE1ZjQ5YzIyNjYyNjhhZTU1M2FhZjBiZCIseyJ0IjoxMSwibyI6MSwic3AiOjAuMjk3Mn1d/08eac63d7d/Orbit1Active.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJjNzYzNTdkOGE1ZjQ5YzIyNjYyNjhhZTU1M2FhZjBiZCIseyJ0IjoxMSwibyI6MSwic3AiOjAuMzgzNX1d/e20f9b2f56/Orbit1Active.png" + }, + "Orbit2Normal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIyNDMwMzM2Y2IyNGVkYWU5YTE4NGNhMzU3MjU2MDQyYSIseyJ0Ijo5LCJvIjoyLCJzcCI6MC4xMjQ2fV0/80a126596c/Orbit2Normal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIyNDMwMzM2Y2IyNGVkYWU5YTE4NGNhMzU3MjU2MDQyYSIseyJ0Ijo5LCJvIjoyLCJzcCI6MC4yMTA5fV0/4864c1a5e6/Orbit2Normal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIyNDMwMzM2Y2IyNGVkYWU5YTE4NGNhMzU3MjU2MDQyYSIseyJ0Ijo5LCJvIjoyLCJzcCI6MC4yOTcyfV0/132bd3d937/Orbit2Normal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIyNDMwMzM2Y2IyNGVkYWU5YTE4NGNhMzU3MjU2MDQyYSIseyJ0Ijo5LCJvIjoyLCJzcCI6MC4zODM1fV0/6a2166b37d/Orbit2Normal.png" + }, + "Orbit2Intermediate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIyZTBlYTIyYTY4Y2Q3MDQ4ZDA2ZDQwNTU0MjhmYjM1YSIseyJ0IjoxMCwibyI6Miwic3AiOjAuMTI0Nn1d/f908cc7d65/Orbit2Intermediate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIyZTBlYTIyYTY4Y2Q3MDQ4ZDA2ZDQwNTU0MjhmYjM1YSIseyJ0IjoxMCwibyI6Miwic3AiOjAuMjEwOX1d/cd33c5dc84/Orbit2Intermediate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIyZTBlYTIyYTY4Y2Q3MDQ4ZDA2ZDQwNTU0MjhmYjM1YSIseyJ0IjoxMCwibyI6Miwic3AiOjAuMjk3Mn1d/42ee7042cd/Orbit2Intermediate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIyZTBlYTIyYTY4Y2Q3MDQ4ZDA2ZDQwNTU0MjhmYjM1YSIseyJ0IjoxMCwibyI6Miwic3AiOjAuMzgzNX1d/6fef0ff374/Orbit2Intermediate.png" + }, + "Orbit2Active": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhNmFhYWU1YjMzYTI0ZjBiYzFiODRmY2VkNWU5MDUzYSIseyJ0IjoxMSwibyI6Miwic3AiOjAuMTI0Nn1d/2068a14974/Orbit2Active.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhNmFhYWU1YjMzYTI0ZjBiYzFiODRmY2VkNWU5MDUzYSIseyJ0IjoxMSwibyI6Miwic3AiOjAuMjEwOX1d/550987375d/Orbit2Active.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhNmFhYWU1YjMzYTI0ZjBiYzFiODRmY2VkNWU5MDUzYSIseyJ0IjoxMSwibyI6Miwic3AiOjAuMjk3Mn1d/c90967df00/Orbit2Active.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhNmFhYWU1YjMzYTI0ZjBiYzFiODRmY2VkNWU5MDUzYSIseyJ0IjoxMSwibyI6Miwic3AiOjAuMzgzNX1d/d2e48d8707/Orbit2Active.png" + }, + "Orbit3Normal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4YjQzZTZmMjgzMTYyYWEyMTJkZWI2ZTBiMmIzZWY0OSIseyJ0Ijo5LCJvIjozLCJzcCI6MC4xMjQ2fV0/4039cd1ef6/Orbit3Normal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4YjQzZTZmMjgzMTYyYWEyMTJkZWI2ZTBiMmIzZWY0OSIseyJ0Ijo5LCJvIjozLCJzcCI6MC4yMTA5fV0/f9955ad9b0/Orbit3Normal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4YjQzZTZmMjgzMTYyYWEyMTJkZWI2ZTBiMmIzZWY0OSIseyJ0Ijo5LCJvIjozLCJzcCI6MC4yOTcyfV0/3254b74ca9/Orbit3Normal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4YjQzZTZmMjgzMTYyYWEyMTJkZWI2ZTBiMmIzZWY0OSIseyJ0Ijo5LCJvIjozLCJzcCI6MC4zODM1fV0/049b76dac1/Orbit3Normal.png" + }, + "Orbit3Intermediate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhNDVjYTVkYWVlMzMzNmEwNzdhZDdmZmU2MmU0NTY5MSIseyJ0IjoxMCwibyI6Mywic3AiOjAuMTI0Nn1d/9854b2de52/Orbit3Intermediate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhNDVjYTVkYWVlMzMzNmEwNzdhZDdmZmU2MmU0NTY5MSIseyJ0IjoxMCwibyI6Mywic3AiOjAuMjEwOX1d/5fd741e821/Orbit3Intermediate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhNDVjYTVkYWVlMzMzNmEwNzdhZDdmZmU2MmU0NTY5MSIseyJ0IjoxMCwibyI6Mywic3AiOjAuMjk3Mn1d/51abf65577/Orbit3Intermediate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhNDVjYTVkYWVlMzMzNmEwNzdhZDdmZmU2MmU0NTY5MSIseyJ0IjoxMCwibyI6Mywic3AiOjAuMzgzNX1d/2ddd51c8c0/Orbit3Intermediate.png" + }, + "Orbit3Active": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1MTcwZWMzOTI0YTRmMzUwNTdhMWUwZGIxNTliOTczZSIseyJ0IjoxMSwibyI6Mywic3AiOjAuMTI0Nn1d/86b2d1b864/Orbit3Active.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1MTcwZWMzOTI0YTRmMzUwNTdhMWUwZGIxNTliOTczZSIseyJ0IjoxMSwibyI6Mywic3AiOjAuMjEwOX1d/e7bc7886bb/Orbit3Active.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1MTcwZWMzOTI0YTRmMzUwNTdhMWUwZGIxNTliOTczZSIseyJ0IjoxMSwibyI6Mywic3AiOjAuMjk3Mn1d/91ca42f66c/Orbit3Active.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1MTcwZWMzOTI0YTRmMzUwNTdhMWUwZGIxNTliOTczZSIseyJ0IjoxMSwibyI6Mywic3AiOjAuMzgzNX1d/e18a85f3c6/Orbit3Active.png" + }, + "Orbit4Normal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJmNjI2YmI3NjExMTdjNjQwOTc4MzQ0YmQ5YmMyODk4NiIseyJ0Ijo5LCJvIjo0LCJzcCI6MC4xMjQ2fV0/1e531c0931/Orbit4Normal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJmNjI2YmI3NjExMTdjNjQwOTc4MzQ0YmQ5YmMyODk4NiIseyJ0Ijo5LCJvIjo0LCJzcCI6MC4yMTA5fV0/b2d7bec65a/Orbit4Normal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJmNjI2YmI3NjExMTdjNjQwOTc4MzQ0YmQ5YmMyODk4NiIseyJ0Ijo5LCJvIjo0LCJzcCI6MC4yOTcyfV0/96c768f6c5/Orbit4Normal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJmNjI2YmI3NjExMTdjNjQwOTc4MzQ0YmQ5YmMyODk4NiIseyJ0Ijo5LCJvIjo0LCJzcCI6MC4zODM1fV0/664059b2ce/Orbit4Normal.png" + }, + "Orbit4Intermediate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI0OTZjZTM1YTFhZTE2ZTUyY2EwMTFlMzhmZDkxODU5MiIseyJ0IjoxMCwibyI6NCwic3AiOjAuMTI0Nn1d/37aa18dd96/Orbit4Intermediate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI0OTZjZTM1YTFhZTE2ZTUyY2EwMTFlMzhmZDkxODU5MiIseyJ0IjoxMCwibyI6NCwic3AiOjAuMjEwOX1d/73899153da/Orbit4Intermediate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI0OTZjZTM1YTFhZTE2ZTUyY2EwMTFlMzhmZDkxODU5MiIseyJ0IjoxMCwibyI6NCwic3AiOjAuMjk3Mn1d/3b40138e89/Orbit4Intermediate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI0OTZjZTM1YTFhZTE2ZTUyY2EwMTFlMzhmZDkxODU5MiIseyJ0IjoxMCwibyI6NCwic3AiOjAuMzgzNX1d/a75b71e02d/Orbit4Intermediate.png" + }, + "Orbit4Active": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJjMzRlNzZmODUwYjE2Y2FlZTFjZjM0NjY0ZDgzN2EwNSIseyJ0IjoxMSwibyI6NCwic3AiOjAuMTI0Nn1d/278423ecfe/Orbit4Active.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJjMzRlNzZmODUwYjE2Y2FlZTFjZjM0NjY0ZDgzN2EwNSIseyJ0IjoxMSwibyI6NCwic3AiOjAuMjEwOX1d/ce58ab11df/Orbit4Active.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJjMzRlNzZmODUwYjE2Y2FlZTFjZjM0NjY0ZDgzN2EwNSIseyJ0IjoxMSwibyI6NCwic3AiOjAuMjk3Mn1d/a2b4d7ee84/Orbit4Active.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJjMzRlNzZmODUwYjE2Y2FlZTFjZjM0NjY0ZDgzN2EwNSIseyJ0IjoxMSwibyI6NCwic3AiOjAuMzgzNX1d/5cd2d72fb6/Orbit4Active.png" + }, + "LineConnectorNormal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJmMGE2MmM3MWZlYzYyZGJlNmFjOGMzYTFkNjkwNGJlMyIseyJ0IjoxMiwic3AiOjAuMTI0Nn1d/66550f9203/LineConnectorNormal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJmMGE2MmM3MWZlYzYyZGJlNmFjOGMzYTFkNjkwNGJlMyIseyJ0IjoxMiwic3AiOjAuMjEwOX1d/60d6bd7f92/LineConnectorNormal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJmMGE2MmM3MWZlYzYyZGJlNmFjOGMzYTFkNjkwNGJlMyIseyJ0IjoxMiwic3AiOjAuMjk3Mn1d/3a5d6dedf3/LineConnectorNormal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJmMGE2MmM3MWZlYzYyZGJlNmFjOGMzYTFkNjkwNGJlMyIseyJ0IjoxMiwic3AiOjAuMzgzNX1d/645bf9967c/LineConnectorNormal.png" + }, + "LineConnectorIntermediate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIwMmE2OWE2NTViNWYzMzk3OWZkMGIyODQ0ZDY0ZjUwNSIseyJ0IjoxMywic3AiOjAuMTI0Nn1d/3148b489e4/LineConnectorIntermediate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIwMmE2OWE2NTViNWYzMzk3OWZkMGIyODQ0ZDY0ZjUwNSIseyJ0IjoxMywic3AiOjAuMjEwOX1d/240ed0ae1d/LineConnectorIntermediate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIwMmE2OWE2NTViNWYzMzk3OWZkMGIyODQ0ZDY0ZjUwNSIseyJ0IjoxMywic3AiOjAuMjk3Mn1d/cee4bf7791/LineConnectorIntermediate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIwMmE2OWE2NTViNWYzMzk3OWZkMGIyODQ0ZDY0ZjUwNSIseyJ0IjoxMywic3AiOjAuMzgzNX1d/7b97fba063/LineConnectorIntermediate.png" + }, + "LineConnectorActive": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI0ZWNkZjAxNTAzMzk5OWE2NGE3MjkwODA0YzU1NDg3YyIseyJ0IjoxNCwic3AiOjAuMTI0Nn1d/1bbca7c274/LineConnectorActive.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI0ZWNkZjAxNTAzMzk5OWE2NGE3MjkwODA0YzU1NDg3YyIseyJ0IjoxNCwic3AiOjAuMjEwOX1d/c32db9308b/LineConnectorActive.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI0ZWNkZjAxNTAzMzk5OWE2NGE3MjkwODA0YzU1NDg3YyIseyJ0IjoxNCwic3AiOjAuMjk3Mn1d/25bdf43487/LineConnectorActive.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI0ZWNkZjAxNTAzMzk5OWE2NGE3MjkwODA0YzU1NDg3YyIseyJ0IjoxNCwic3AiOjAuMzgzNX1d/5dd51d0b32/LineConnectorActive.png" + }, + "PSLineDeco": { + "0.1246": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6ZmFsc2UsInNwIjowLjEyNDZ9XQ/0da310ba2b/Line_Deco.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6ZmFsc2UsInNwIjowLjIxMDl9XQ/e9ed9a714c/Line_Deco.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6ZmFsc2UsInNwIjowLjI5NzJ9XQ/89a24f407d/Line_Deco.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6ZmFsc2UsInNwIjowLjM4MzV9XQ/31f964e70d/Line_Deco.gif" + }, + "PSLineDecoHighlighted": { + "0.1246": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6dHJ1ZSwic3AiOjAuMTI0Nn1d/e6a0be7480/Line_Deco_Highlighted.gif", + "0.2109": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6dHJ1ZSwic3AiOjAuMjEwOX1d/572eb2909b/Line_Deco_Highlighted.gif", + "0.2972": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6dHJ1ZSwic3AiOjAuMjk3Mn1d/16692d1605/Line_Deco_Highlighted.gif", + "0.3835": "https://web.poecdn.com/gen/image/WzIwLDE0LHsiaCI6dHJ1ZSwic3AiOjAuMzgzNX1d/1c4f1bf06b/Line_Deco_Highlighted.gif" + }, + "centerduelist": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCIwMjJiZmEzZGRmMmMzYmVlNjMzMjI5MGZmOTY0ODUyZiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/7acb241199/StartNodeBackgroundStrDex.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCIwMjJiZmEzZGRmMmMzYmVlNjMzMjI5MGZmOTY0ODUyZiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/d5444943e9/StartNodeBackgroundStrDex.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCIwMjJiZmEzZGRmMmMzYmVlNjMzMjI5MGZmOTY0ODUyZiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/847b218f4b/StartNodeBackgroundStrDex.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCIwMjJiZmEzZGRmMmMzYmVlNjMzMjI5MGZmOTY0ODUyZiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/025b6ec0c5/StartNodeBackgroundStrDex.png" + }, + "centermarauder": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCIwYmQzMDUyMGExNzc1YzNlZDg1YjQxMTFkNGQxNTZkNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0clwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/1152f0294b/StartNodeBackgroundStr.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCIwYmQzMDUyMGExNzc1YzNlZDg1YjQxMTFkNGQxNTZkNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0clwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/f1d3ddef16/StartNodeBackgroundStr.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCIwYmQzMDUyMGExNzc1YzNlZDg1YjQxMTFkNGQxNTZkNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0clwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/72bbf79d7b/StartNodeBackgroundStr.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCIwYmQzMDUyMGExNzc1YzNlZDg1YjQxMTFkNGQxNTZkNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0clwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/16ff01bb16/StartNodeBackgroundStr.png" + }, + "centerranger": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCIxMzU3NzYwNGRmNDBlYmMwY2Y0NmRmMjI0YzRjYTY4NCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/41689c183c/StartNodeBackgroundDex.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCIxMzU3NzYwNGRmNDBlYmMwY2Y0NmRmMjI0YzRjYTY4NCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/b635dc1f99/StartNodeBackgroundDex.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCIxMzU3NzYwNGRmNDBlYmMwY2Y0NmRmMjI0YzRjYTY4NCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/f7bae459a3/StartNodeBackgroundDex.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCIxMzU3NzYwNGRmNDBlYmMwY2Y0NmRmMjI0YzRjYTY4NCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/e5979dc9db/StartNodeBackgroundDex.png" + }, + "centershadow": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJjZTQ1NmRhODRiMWNiOTZiMzU3YmQxYjM0MGU3YTI5MSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/1acc5344f5/StartNodeBackgroundDexInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJjZTQ1NmRhODRiMWNiOTZiMzU3YmQxYjM0MGU3YTI5MSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/9abb3266f6/StartNodeBackgroundDexInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJjZTQ1NmRhODRiMWNiOTZiMzU3YmQxYjM0MGU3YTI5MSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/be4d9e4397/StartNodeBackgroundDexInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJjZTQ1NmRhODRiMWNiOTZiMzU3YmQxYjM0MGU3YTI5MSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0RleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/0517561f23/StartNodeBackgroundDexInt.png" + }, + "centertemplar": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI1ZmM2ODdhMzE3OTI0NWFhM2UwMGE4MmY3ODMyNjgwOCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/b6a9443a5b/StartNodeBackgroundStrInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI1ZmM2ODdhMzE3OTI0NWFhM2UwMGE4MmY3ODMyNjgwOCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/406de52afa/StartNodeBackgroundStrInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI1ZmM2ODdhMzE3OTI0NWFhM2UwMGE4MmY3ODMyNjgwOCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/7010d180bd/StartNodeBackgroundStrInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI1ZmM2ODdhMzE3OTI0NWFhM2UwMGE4MmY3ODMyNjgwOCIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/7fd7426c30/StartNodeBackgroundStrInt.png" + }, + "centerwitch": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI0NmU1Yjg2ZTQ4NmNmZjhhMTdjYTJjOTgzNGZmNjdmNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0ludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/ea3483e43d/StartNodeBackgroundInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI0NmU1Yjg2ZTQ4NmNmZjhhMTdjYTJjOTgzNGZmNjdmNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0ludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/310b67b72c/StartNodeBackgroundInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI0NmU1Yjg2ZTQ4NmNmZjhhMTdjYTJjOTgzNGZmNjdmNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0ludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/e89ea2dd4a/StartNodeBackgroundInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI0NmU1Yjg2ZTQ4NmNmZjhhMTdjYTJjOTgzNGZmNjdmNSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL0ludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/b211e1b238/StartNodeBackgroundInt.png" + }, + "centerscion": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI4YmUzODc2NTljMzc3OGQ5NGQ2NDc3ZWFjMjEyZTA5MiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjEyNDZ9XQ/47b05cebae/StartNodeBackgroundStrDexInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI4YmUzODc2NTljMzc3OGQ5NGQ2NDc3ZWFjMjEyZTA5MiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjIxMDl9XQ/91fcf02e2b/StartNodeBackgroundStrDexInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI4YmUzODc2NTljMzc3OGQ5NGQ2NDc3ZWFjMjEyZTA5MiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjI5NzJ9XQ/3e12d9cfd8/StartNodeBackgroundStrDexInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI4YmUzODc2NTljMzc3OGQ5NGQ2NDc3ZWFjMjEyZTA5MiIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0NsYXNzZXNcL1N0ckRleEludFwvUGFzc2l2ZVNraWxsU2NyZWVuU3RhcnROb2RlQmFja2dyb3VuZCIsInNwIjowLjM4MzV9XQ/4519b0f2cd/StartNodeBackgroundStrDexInt.png" + }, + "PSPointsFrame": { + "1": "https://web.poecdn.com/gen/image/WzIxLCI3NDk1NTFmODZkODAwZjI3OTA1YmQ2MzNhOWY3OWNhNyIseyJpbWdUeXBlIjoiUGFzc2l2ZVNraWxsc1BhbmVsIiwiayI6IjJEQXJ0XC9VSUltYWdlc1wvSW5HYW1lXC9QYXNzaXZlU2tpbGxTY3JlZW5Qb2ludHNCYWNrZ3JvdW5kIiwic3AiOjF9XQ/312997efed/PointsBackground.gif" + }, + "NotableFrameUnallocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1N2RjM2RkZTQ2ZjdlMmIxYWNmOTcwOTdkYjc1OGE4YSIseyJ0Ijo2LCJzcCI6MC4xMjQ2fV0/8168f80fae/NotableFrameUnallocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1N2RjM2RkZTQ2ZjdlMmIxYWNmOTcwOTdkYjc1OGE4YSIseyJ0Ijo2LCJzcCI6MC4yMTA5fV0/e0d06b3478/NotableFrameUnallocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1N2RjM2RkZTQ2ZjdlMmIxYWNmOTcwOTdkYjc1OGE4YSIseyJ0Ijo2LCJzcCI6MC4yOTcyfV0/9750ae965e/NotableFrameUnallocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1N2RjM2RkZTQ2ZjdlMmIxYWNmOTcwOTdkYjc1OGE4YSIseyJ0Ijo2LCJzcCI6MC4zODM1fV0/8c8dfd98af/NotableFrameUnallocated.png" + }, + "NotableFrameCanAllocate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJkODNjODcwMThhYTU1ZDAyMjQ3OWI1YjFiMmM1NzQwNyIseyJ0Ijo4LCJzcCI6MC4xMjQ2fV0/3bf175f347/NotableFrameCanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJkODNjODcwMThhYTU1ZDAyMjQ3OWI1YjFiMmM1NzQwNyIseyJ0Ijo4LCJzcCI6MC4yMTA5fV0/da45ef9508/NotableFrameCanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJkODNjODcwMThhYTU1ZDAyMjQ3OWI1YjFiMmM1NzQwNyIseyJ0Ijo4LCJzcCI6MC4yOTcyfV0/583277eb1f/NotableFrameCanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJkODNjODcwMThhYTU1ZDAyMjQ3OWI1YjFiMmM1NzQwNyIseyJ0Ijo4LCJzcCI6MC4zODM1fV0/3de5c354a8/NotableFrameCanAllocate.png" + }, + "NotableFrameAllocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI3NDkzNWE4NTVkZDU3ZjNkMWIzMTIyMGVhMjFkMjJkZCIseyJ0Ijo3LCJzcCI6MC4xMjQ2fV0/4c821cd7f2/NotableFrameAllocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI3NDkzNWE4NTVkZDU3ZjNkMWIzMTIyMGVhMjFkMjJkZCIseyJ0Ijo3LCJzcCI6MC4yMTA5fV0/5643492b13/NotableFrameAllocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI3NDkzNWE4NTVkZDU3ZjNkMWIzMTIyMGVhMjFkMjJkZCIseyJ0Ijo3LCJzcCI6MC4yOTcyfV0/04fecc83eb/NotableFrameAllocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI3NDkzNWE4NTVkZDU3ZjNkMWIzMTIyMGVhMjFkMjJkZCIseyJ0Ijo3LCJzcCI6MC4zODM1fV0/6e3eaef7d9/NotableFrameAllocated.png" + }, + "JewelFrameUnallocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJjZmFjMWYwNGY1OWQzOGViYmUxMWVjN2NkYjI0MDg4NSIseyJ0IjoxNSwic3AiOjAuMTI0Nn1d/25ef18aa94/JewelFrameUnallocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJjZmFjMWYwNGY1OWQzOGViYmUxMWVjN2NkYjI0MDg4NSIseyJ0IjoxNSwic3AiOjAuMjEwOX1d/1cddd7d8d2/JewelFrameUnallocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJjZmFjMWYwNGY1OWQzOGViYmUxMWVjN2NkYjI0MDg4NSIseyJ0IjoxNSwic3AiOjAuMjk3Mn1d/10da104e1e/JewelFrameUnallocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJjZmFjMWYwNGY1OWQzOGViYmUxMWVjN2NkYjI0MDg4NSIseyJ0IjoxNSwic3AiOjAuMzgzNX1d/5b6986aa51/JewelFrameUnallocated.png" + }, + "JewelFrameCanAllocate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJiMzQzZWIxZjBiOTM4MDg1NDBmNDRjYTkwMjk0Yjk0YyIseyJ0IjoxNiwic3AiOjAuMTI0Nn1d/46d8ec1cd7/JewelFrameCanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJiMzQzZWIxZjBiOTM4MDg1NDBmNDRjYTkwMjk0Yjk0YyIseyJ0IjoxNiwic3AiOjAuMjEwOX1d/24f342fa22/JewelFrameCanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJiMzQzZWIxZjBiOTM4MDg1NDBmNDRjYTkwMjk0Yjk0YyIseyJ0IjoxNiwic3AiOjAuMjk3Mn1d/d1f01af96a/JewelFrameCanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJiMzQzZWIxZjBiOTM4MDg1NDBmNDRjYTkwMjk0Yjk0YyIseyJ0IjoxNiwic3AiOjAuMzgzNX1d/dcf1f4ddd5/JewelFrameCanAllocate.png" + }, + "JewelFrameAllocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJlZDliZTE3OGJkNjI3ZjYwNzg5ZTBhNjkzZTJkNTkyMSIseyJ0IjoxNywic3AiOjAuMTI0Nn1d/b6bea64aae/JewelFrameAllocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJlZDliZTE3OGJkNjI3ZjYwNzg5ZTBhNjkzZTJkNTkyMSIseyJ0IjoxNywic3AiOjAuMjEwOX1d/f49d51c8b0/JewelFrameAllocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJlZDliZTE3OGJkNjI3ZjYwNzg5ZTBhNjkzZTJkNTkyMSIseyJ0IjoxNywic3AiOjAuMjk3Mn1d/91a5e25513/JewelFrameAllocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJlZDliZTE3OGJkNjI3ZjYwNzg5ZTBhNjkzZTJkNTkyMSIseyJ0IjoxNywic3AiOjAuMzgzNX1d/7d80d0a333/JewelFrameAllocated.png" + }, + "JewelSocketActiveBlue": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhMTAwMmEzYzMwY2U0YWE0NjNlYTE2ODA2OTZkYjBmNiIseyJ0IjoxOCwic3AiOjAuMTI0Nn1d/00ebea0b46/JewelSocketActiveBlue.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhMTAwMmEzYzMwY2U0YWE0NjNlYTE2ODA2OTZkYjBmNiIseyJ0IjoxOCwic3AiOjAuMjEwOX1d/00e63533c9/JewelSocketActiveBlue.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhMTAwMmEzYzMwY2U0YWE0NjNlYTE2ODA2OTZkYjBmNiIseyJ0IjoxOCwic3AiOjAuMjk3Mn1d/de3b5d89d0/JewelSocketActiveBlue.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhMTAwMmEzYzMwY2U0YWE0NjNlYTE2ODA2OTZkYjBmNiIseyJ0IjoxOCwic3AiOjAuMzgzNX1d/19ae18c133/JewelSocketActiveBlue.png" + }, + "JewelSocketActiveGreen": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIzNjVhNDQzNzZhZTgwYWZmZDM2ZmM0YWQ4MGFlZDFhOSIseyJ0IjoxOSwic3AiOjAuMTI0Nn1d/1535d90b9b/JewelSocketActiveGreen.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIzNjVhNDQzNzZhZTgwYWZmZDM2ZmM0YWQ4MGFlZDFhOSIseyJ0IjoxOSwic3AiOjAuMjEwOX1d/9e78eba7f1/JewelSocketActiveGreen.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIzNjVhNDQzNzZhZTgwYWZmZDM2ZmM0YWQ4MGFlZDFhOSIseyJ0IjoxOSwic3AiOjAuMjk3Mn1d/e81be90cda/JewelSocketActiveGreen.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIzNjVhNDQzNzZhZTgwYWZmZDM2ZmM0YWQ4MGFlZDFhOSIseyJ0IjoxOSwic3AiOjAuMzgzNX1d/b1ffc6c846/JewelSocketActiveGreen.png" + }, + "JewelSocketActiveRed": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIxYzU1MzlhYjg0OTIwZTIwNTlkZWFmNDA3NTIyNzk1MCIseyJ0IjoyMCwic3AiOjAuMTI0Nn1d/4aacc3593d/JewelSocketActiveRed.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIxYzU1MzlhYjg0OTIwZTIwNTlkZWFmNDA3NTIyNzk1MCIseyJ0IjoyMCwic3AiOjAuMjEwOX1d/cd039c7fdb/JewelSocketActiveRed.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIxYzU1MzlhYjg0OTIwZTIwNTlkZWFmNDA3NTIyNzk1MCIseyJ0IjoyMCwic3AiOjAuMjk3Mn1d/1eeba04426/JewelSocketActiveRed.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIxYzU1MzlhYjg0OTIwZTIwNTlkZWFmNDA3NTIyNzk1MCIseyJ0IjoyMCwic3AiOjAuMzgzNX1d/311c08960c/JewelSocketActiveRed.png" + }, + "JewelSocketActivePrismatic": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhZDI2NmI2NThiMzExYWI0ODJjYTcxMDc2ODk1MGI3NSIseyJ0Ijo1MSwic3AiOjAuMTI0Nn1d/e4802cc036/JewelSocketActivePrismatic.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhZDI2NmI2NThiMzExYWI0ODJjYTcxMDc2ODk1MGI3NSIseyJ0Ijo1MSwic3AiOjAuMjEwOX1d/7802df07ca/JewelSocketActivePrismatic.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhZDI2NmI2NThiMzExYWI0ODJjYTcxMDc2ODk1MGI3NSIseyJ0Ijo1MSwic3AiOjAuMjk3Mn1d/aec43367f1/JewelSocketActivePrismatic.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhZDI2NmI2NThiMzExYWI0ODJjYTcxMDc2ODk1MGI3NSIseyJ0Ijo1MSwic3AiOjAuMzgzNX1d/9e57fe6eef/JewelSocketActivePrismatic.png" + }, + "JewelSocketActiveAbyss": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI5MmFiMjY4ZWFiMWQ4N2YxZDAxZWE0MzYzMGU2M2IyYiIseyJ0Ijo1MCwic3AiOjAuMTI0Nn1d/291a6277d8/JewelSocketActiveAbyss.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI5MmFiMjY4ZWFiMWQ4N2YxZDAxZWE0MzYzMGU2M2IyYiIseyJ0Ijo1MCwic3AiOjAuMjEwOX1d/e3152f88d3/JewelSocketActiveAbyss.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI5MmFiMjY4ZWFiMWQ4N2YxZDAxZWE0MzYzMGU2M2IyYiIseyJ0Ijo1MCwic3AiOjAuMjk3Mn1d/b8c544e6eb/JewelSocketActiveAbyss.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI5MmFiMjY4ZWFiMWQ4N2YxZDAxZWE0MzYzMGU2M2IyYiIseyJ0Ijo1MCwic3AiOjAuMzgzNX1d/2955b2dda1/JewelSocketActiveAbyss.png" + }, + "PassiveSkillScreenAscendancyButton": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI5MzNlMzg2ZDliY2ZiZTNkNTc2YTViMjRiZWNjMTVmYSIseyJ0IjoyMSwic3AiOjAuMTI0Nn1d/6659bbbfed/PassiveSkillScreenAscendancyButton.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI5MzNlMzg2ZDliY2ZiZTNkNTc2YTViMjRiZWNjMTVmYSIseyJ0IjoyMSwic3AiOjAuMjEwOX1d/2cdbf574c8/PassiveSkillScreenAscendancyButton.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI5MzNlMzg2ZDliY2ZiZTNkNTc2YTViMjRiZWNjMTVmYSIseyJ0IjoyMSwic3AiOjAuMjk3Mn1d/ee34cf84d2/PassiveSkillScreenAscendancyButton.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI5MzNlMzg2ZDliY2ZiZTNkNTc2YTViMjRiZWNjMTVmYSIseyJ0IjoyMSwic3AiOjAuMzgzNX1d/b9a84a2858/PassiveSkillScreenAscendancyButton.png" + }, + "PassiveSkillScreenAscendancyButtonHighlight": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJkY2ExZWE3MWMwOGE4OTQwYmZhMWQ1ZGQzYmRmODA1OCIseyJ0IjoyMiwic3AiOjAuMTI0Nn1d/cd136e28b4/PassiveSkillScreenAscendancyButtonHighlight.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJkY2ExZWE3MWMwOGE4OTQwYmZhMWQ1ZGQzYmRmODA1OCIseyJ0IjoyMiwic3AiOjAuMjEwOX1d/1f420985b9/PassiveSkillScreenAscendancyButtonHighlight.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJkY2ExZWE3MWMwOGE4OTQwYmZhMWQ1ZGQzYmRmODA1OCIseyJ0IjoyMiwic3AiOjAuMjk3Mn1d/5e66f4901a/PassiveSkillScreenAscendancyButtonHighlight.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJkY2ExZWE3MWMwOGE4OTQwYmZhMWQ1ZGQzYmRmODA1OCIseyJ0IjoyMiwic3AiOjAuMzgzNX1d/c7802ada29/PassiveSkillScreenAscendancyButtonHighlight.png" + }, + "PassiveSkillScreenAscendancyButtonPressed": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhMzUyNTQ0Y2E5ZDQzMTFlODlmOTM0MGJiOTg2MzMyZCIseyJ0IjoyMywic3AiOjAuMTI0Nn1d/493d9da644/PassiveSkillScreenAscendancyButtonPressed.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhMzUyNTQ0Y2E5ZDQzMTFlODlmOTM0MGJiOTg2MzMyZCIseyJ0IjoyMywic3AiOjAuMjEwOX1d/d38c26d64e/PassiveSkillScreenAscendancyButtonPressed.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhMzUyNTQ0Y2E5ZDQzMTFlODlmOTM0MGJiOTg2MzMyZCIseyJ0IjoyMywic3AiOjAuMjk3Mn1d/c12530a7f9/PassiveSkillScreenAscendancyButtonPressed.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhMzUyNTQ0Y2E5ZDQzMTFlODlmOTM0MGJiOTg2MzMyZCIseyJ0IjoyMywic3AiOjAuMzgzNX1d/9adcad23ec/PassiveSkillScreenAscendancyButtonPressed.png" + }, + "PassiveSkillScreenAscendancyFrameLargeAllocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4NDNkNzRkYmRhZDQ3YWY0OGJlMzBlMThlMzg4OWRkYiIseyJ0Ijo0Mywic3AiOjAuMTI0Nn1d/1d25787323/PassiveSkillScreenAscendancyFrameLargeAllocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4NDNkNzRkYmRhZDQ3YWY0OGJlMzBlMThlMzg4OWRkYiIseyJ0Ijo0Mywic3AiOjAuMjEwOX1d/a28cfabb05/PassiveSkillScreenAscendancyFrameLargeAllocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4NDNkNzRkYmRhZDQ3YWY0OGJlMzBlMThlMzg4OWRkYiIseyJ0Ijo0Mywic3AiOjAuMjk3Mn1d/f782ce58c8/PassiveSkillScreenAscendancyFrameLargeAllocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4NDNkNzRkYmRhZDQ3YWY0OGJlMzBlMThlMzg4OWRkYiIseyJ0Ijo0Mywic3AiOjAuMzgzNX1d/902daded90/PassiveSkillScreenAscendancyFrameLargeAllocated.png" + }, + "PassiveSkillScreenAscendancyFrameLargeCanAllocate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4ZWVlZWNiN2Y2YzJkYWYyZTcyY2M5ZTk4ZmRhYTEwZCIseyJ0Ijo0NCwic3AiOjAuMTI0Nn1d/75a412460a/PassiveSkillScreenAscendancyFrameLargeCanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4ZWVlZWNiN2Y2YzJkYWYyZTcyY2M5ZTk4ZmRhYTEwZCIseyJ0Ijo0NCwic3AiOjAuMjEwOX1d/c760d8d7e5/PassiveSkillScreenAscendancyFrameLargeCanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4ZWVlZWNiN2Y2YzJkYWYyZTcyY2M5ZTk4ZmRhYTEwZCIseyJ0Ijo0NCwic3AiOjAuMjk3Mn1d/e29f9c224c/PassiveSkillScreenAscendancyFrameLargeCanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4ZWVlZWNiN2Y2YzJkYWYyZTcyY2M5ZTk4ZmRhYTEwZCIseyJ0Ijo0NCwic3AiOjAuMzgzNX1d/1ec0f07f6e/PassiveSkillScreenAscendancyFrameLargeCanAllocate.png" + }, + "PassiveSkillScreenAscendancyFrameLargeNormal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJjMjNiNDE4OGNjOWIzMjEwYzc4M2I3YmZiZGMwMzk3MiIseyJ0Ijo0NSwic3AiOjAuMTI0Nn1d/b4e38cb8d2/PassiveSkillScreenAscendancyFrameLargeNormal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJjMjNiNDE4OGNjOWIzMjEwYzc4M2I3YmZiZGMwMzk3MiIseyJ0Ijo0NSwic3AiOjAuMjEwOX1d/98a7a22c29/PassiveSkillScreenAscendancyFrameLargeNormal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJjMjNiNDE4OGNjOWIzMjEwYzc4M2I3YmZiZGMwMzk3MiIseyJ0Ijo0NSwic3AiOjAuMjk3Mn1d/f5cd700f25/PassiveSkillScreenAscendancyFrameLargeNormal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJjMjNiNDE4OGNjOWIzMjEwYzc4M2I3YmZiZGMwMzk3MiIseyJ0Ijo0NSwic3AiOjAuMzgzNX1d/ac15ec8d9d/PassiveSkillScreenAscendancyFrameLargeNormal.png" + }, + "PassiveSkillScreenAscendancyFrameSmallAllocated": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIxZTVjMTdlMTYxZmJhZGI5ZGU1YmQyNWI2YzlkZWY1MCIseyJ0Ijo0Niwic3AiOjAuMTI0Nn1d/078d277868/PassiveSkillScreenAscendancyFrameSmallAllocated.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIxZTVjMTdlMTYxZmJhZGI5ZGU1YmQyNWI2YzlkZWY1MCIseyJ0Ijo0Niwic3AiOjAuMjEwOX1d/19cfd04004/PassiveSkillScreenAscendancyFrameSmallAllocated.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIxZTVjMTdlMTYxZmJhZGI5ZGU1YmQyNWI2YzlkZWY1MCIseyJ0Ijo0Niwic3AiOjAuMjk3Mn1d/a5bdaadcaa/PassiveSkillScreenAscendancyFrameSmallAllocated.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIxZTVjMTdlMTYxZmJhZGI5ZGU1YmQyNWI2YzlkZWY1MCIseyJ0Ijo0Niwic3AiOjAuMzgzNX1d/f623642bf6/PassiveSkillScreenAscendancyFrameSmallAllocated.png" + }, + "PassiveSkillScreenAscendancyFrameSmallCanAllocate": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1ZThlNTYzNDljYjRlMGM5YTI1ZGRmMTBiMDVjZGU4YyIseyJ0Ijo0Nywic3AiOjAuMTI0Nn1d/2917997df6/PassiveSkillScreenAscendancyFrameSmallCanAllocate.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1ZThlNTYzNDljYjRlMGM5YTI1ZGRmMTBiMDVjZGU4YyIseyJ0Ijo0Nywic3AiOjAuMjEwOX1d/67246f3ff7/PassiveSkillScreenAscendancyFrameSmallCanAllocate.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1ZThlNTYzNDljYjRlMGM5YTI1ZGRmMTBiMDVjZGU4YyIseyJ0Ijo0Nywic3AiOjAuMjk3Mn1d/d4f4683be2/PassiveSkillScreenAscendancyFrameSmallCanAllocate.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1ZThlNTYzNDljYjRlMGM5YTI1ZGRmMTBiMDVjZGU4YyIseyJ0Ijo0Nywic3AiOjAuMzgzNX1d/a590922153/PassiveSkillScreenAscendancyFrameSmallCanAllocate.png" + }, + "PassiveSkillScreenAscendancyFrameSmallNormal": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIwNDY3Zjk5MTk1MGFkZWU3ZmE4NWQzMzYwZTJkOWRhZSIseyJ0Ijo0OCwic3AiOjAuMTI0Nn1d/14f3d08b96/PassiveSkillScreenAscendancyFrameSmallNormal.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIwNDY3Zjk5MTk1MGFkZWU3ZmE4NWQzMzYwZTJkOWRhZSIseyJ0Ijo0OCwic3AiOjAuMjEwOX1d/8b468770bc/PassiveSkillScreenAscendancyFrameSmallNormal.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIwNDY3Zjk5MTk1MGFkZWU3ZmE4NWQzMzYwZTJkOWRhZSIseyJ0Ijo0OCwic3AiOjAuMjk3Mn1d/672b7269b4/PassiveSkillScreenAscendancyFrameSmallNormal.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIwNDY3Zjk5MTk1MGFkZWU3ZmE4NWQzMzYwZTJkOWRhZSIseyJ0Ijo0OCwic3AiOjAuMzgzNX1d/7b97e5b005/PassiveSkillScreenAscendancyFrameSmallNormal.png" + }, + "PassiveSkillScreenAscendancyMiddle": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJjMzMwYzE5MzQ1ZWI2Yjk0N2YwMTE3YmY2NTkwOTQzMyIseyJ0Ijo0OSwic3AiOjAuMTI0Nn1d/debca8295c/PassiveSkillScreenAscendancyMiddle.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJjMzMwYzE5MzQ1ZWI2Yjk0N2YwMTE3YmY2NTkwOTQzMyIseyJ0Ijo0OSwic3AiOjAuMjEwOX1d/564b57d8db/PassiveSkillScreenAscendancyMiddle.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJjMzMwYzE5MzQ1ZWI2Yjk0N2YwMTE3YmY2NTkwOTQzMyIseyJ0Ijo0OSwic3AiOjAuMjk3Mn1d/9be8c3ba7e/PassiveSkillScreenAscendancyMiddle.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJjMzMwYzE5MzQ1ZWI2Yjk0N2YwMTE3YmY2NTkwOTQzMyIseyJ0Ijo0OSwic3AiOjAuMzgzNX1d/f78cddcf9c/PassiveSkillScreenAscendancyMiddle.png" + }, + "ClassesRaider": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCIwMWQ5NzFlM2NhNmVmOGM2NTcyYzkwYWZhODBlMTFjMCIseyJ0IjoyOCwic3AiOjAuMTI0Nn1d/4da5e1d210/Raider.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCIwMWQ5NzFlM2NhNmVmOGM2NTcyYzkwYWZhODBlMTFjMCIseyJ0IjoyOCwic3AiOjAuMjEwOX1d/95a852277a/Raider.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCIwMWQ5NzFlM2NhNmVmOGM2NTcyYzkwYWZhODBlMTFjMCIseyJ0IjoyOCwic3AiOjAuMjk3Mn1d/61d70bb22c/Raider.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCIwMWQ5NzFlM2NhNmVmOGM2NTcyYzkwYWZhODBlMTFjMCIseyJ0IjoyOCwic3AiOjAuMzgzNX1d/8b6ba24772/Raider.png" + }, + "ClassesDeadeye": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJlZWI0NGY0Zjg2MjA5MDA5MGM4NTI3YjYxZWYyODVkMCIseyJ0IjoyOSwic3AiOjAuMTI0Nn1d/40568379ea/Deadeye.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJlZWI0NGY0Zjg2MjA5MDA5MGM4NTI3YjYxZWYyODVkMCIseyJ0IjoyOSwic3AiOjAuMjEwOX1d/96803a33a1/Deadeye.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJlZWI0NGY0Zjg2MjA5MDA5MGM4NTI3YjYxZWYyODVkMCIseyJ0IjoyOSwic3AiOjAuMjk3Mn1d/3a173f8959/Deadeye.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJlZWI0NGY0Zjg2MjA5MDA5MGM4NTI3YjYxZWYyODVkMCIseyJ0IjoyOSwic3AiOjAuMzgzNX1d/b436c7d724/Deadeye.png" + }, + "ClassesPathfinder": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJiZGViNGI4OGI0NWY1MjU5ZTQzMmIxMWVlM2E4ZmVkYiIseyJ0IjozMCwic3AiOjAuMTI0Nn1d/1cea3904dd/Pathfinder.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJiZGViNGI4OGI0NWY1MjU5ZTQzMmIxMWVlM2E4ZmVkYiIseyJ0IjozMCwic3AiOjAuMjEwOX1d/f54ae52ba5/Pathfinder.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJiZGViNGI4OGI0NWY1MjU5ZTQzMmIxMWVlM2E4ZmVkYiIseyJ0IjozMCwic3AiOjAuMjk3Mn1d/b90fc8ab45/Pathfinder.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJiZGViNGI4OGI0NWY1MjU5ZTQzMmIxMWVlM2E4ZmVkYiIseyJ0IjozMCwic3AiOjAuMzgzNX1d/01156cff4e/Pathfinder.png" + }, + "ClassesAssassin": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJiMWE2YmE0OTJmYzFiODVjMmFiMjQ2NzA3MWQwYmNhMyIseyJ0Ijo0MCwic3AiOjAuMTI0Nn1d/286b8d5e07/Assassin.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJiMWE2YmE0OTJmYzFiODVjMmFiMjQ2NzA3MWQwYmNhMyIseyJ0Ijo0MCwic3AiOjAuMjEwOX1d/50487bdab0/Assassin.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJiMWE2YmE0OTJmYzFiODVjMmFiMjQ2NzA3MWQwYmNhMyIseyJ0Ijo0MCwic3AiOjAuMjk3Mn1d/3b6200c76a/Assassin.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJiMWE2YmE0OTJmYzFiODVjMmFiMjQ2NzA3MWQwYmNhMyIseyJ0Ijo0MCwic3AiOjAuMzgzNX1d/7f9a11b932/Assassin.png" + }, + "ClassesTrickster": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJlOWVhNmJhMGVmMzhjOGVkZjg4MmEzYjEwMTNjY2JlNCIseyJ0Ijo0Miwic3AiOjAuMTI0Nn1d/e03caa166e/Trickster.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJlOWVhNmJhMGVmMzhjOGVkZjg4MmEzYjEwMTNjY2JlNCIseyJ0Ijo0Miwic3AiOjAuMjEwOX1d/45cb3a551c/Trickster.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJlOWVhNmJhMGVmMzhjOGVkZjg4MmEzYjEwMTNjY2JlNCIseyJ0Ijo0Miwic3AiOjAuMjk3Mn1d/1b686ab77f/Trickster.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJlOWVhNmJhMGVmMzhjOGVkZjg4MmEzYjEwMTNjY2JlNCIseyJ0Ijo0Miwic3AiOjAuMzgzNX1d/1e0edb5c8a/Trickster.png" + }, + "ClassesSaboteur": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI1YTMzNWUwMTY3NGRkZWQ3NjRlZGM3MDVkM2UxNGU1NSIseyJ0Ijo0MSwic3AiOjAuMTI0Nn1d/7e548e2493/Saboteur.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI1YTMzNWUwMTY3NGRkZWQ3NjRlZGM3MDVkM2UxNGU1NSIseyJ0Ijo0MSwic3AiOjAuMjEwOX1d/b36d4dae21/Saboteur.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI1YTMzNWUwMTY3NGRkZWQ3NjRlZGM3MDVkM2UxNGU1NSIseyJ0Ijo0MSwic3AiOjAuMjk3Mn1d/f48642e630/Saboteur.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI1YTMzNWUwMTY3NGRkZWQ3NjRlZGM3MDVkM2UxNGU1NSIseyJ0Ijo0MSwic3AiOjAuMzgzNX1d/4c485d7532/Saboteur.png" + }, + "ClassesOccultist": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI3YTE4MjJlNTg2YjJmNDllYTBlMzRmOWQyNDQ1MTI3MCIseyJ0IjozMSwic3AiOjAuMTI0Nn1d/9a2933ef9e/Occultist.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI3YTE4MjJlNTg2YjJmNDllYTBlMzRmOWQyNDQ1MTI3MCIseyJ0IjozMSwic3AiOjAuMjEwOX1d/7bce0e0fb8/Occultist.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI3YTE4MjJlNTg2YjJmNDllYTBlMzRmOWQyNDQ1MTI3MCIseyJ0IjozMSwic3AiOjAuMjk3Mn1d/3120a1d65a/Occultist.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI3YTE4MjJlNTg2YjJmNDllYTBlMzRmOWQyNDQ1MTI3MCIseyJ0IjozMSwic3AiOjAuMzgzNX1d/21ce87c7b9/Occultist.png" + }, + "ClassesElementalist": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI0ODhiMmU4YjE3MmVkMDY0ZDQ1ZmFhY2Q2ODM0YWNkYiIseyJ0IjozMiwic3AiOjAuMTI0Nn1d/e4d442af48/Elementalist.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI0ODhiMmU4YjE3MmVkMDY0ZDQ1ZmFhY2Q2ODM0YWNkYiIseyJ0IjozMiwic3AiOjAuMjEwOX1d/6473e4f7d8/Elementalist.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI0ODhiMmU4YjE3MmVkMDY0ZDQ1ZmFhY2Q2ODM0YWNkYiIseyJ0IjozMiwic3AiOjAuMjk3Mn1d/bcca0b29e6/Elementalist.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI0ODhiMmU4YjE3MmVkMDY0ZDQ1ZmFhY2Q2ODM0YWNkYiIseyJ0IjozMiwic3AiOjAuMzgzNX1d/c30cf1815e/Elementalist.png" + }, + "ClassesNecromancer": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI3MjgyOWExYmM4NDc3MTNkOWUwYTMxM2NiNDc4YzYxYiIseyJ0IjozMywic3AiOjAuMTI0Nn1d/d3f89d0900/Necromancer.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI3MjgyOWExYmM4NDc3MTNkOWUwYTMxM2NiNDc4YzYxYiIseyJ0IjozMywic3AiOjAuMjEwOX1d/a1418d9bd9/Necromancer.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI3MjgyOWExYmM4NDc3MTNkOWUwYTMxM2NiNDc4YzYxYiIseyJ0IjozMywic3AiOjAuMjk3Mn1d/68b9653de6/Necromancer.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI3MjgyOWExYmM4NDc3MTNkOWUwYTMxM2NiNDc4YzYxYiIseyJ0IjozMywic3AiOjAuMzgzNX1d/cbe275d252/Necromancer.png" + }, + "ClassesJuggernaut": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI5MjRmNzA3YTI0NDAyYzc3YjA0NDZkZGVlM2Y1NWVhNSIseyJ0IjoyNSwic3AiOjAuMTI0Nn1d/2db2ee8127/Juggernaut.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI5MjRmNzA3YTI0NDAyYzc3YjA0NDZkZGVlM2Y1NWVhNSIseyJ0IjoyNSwic3AiOjAuMjEwOX1d/e73139ecfa/Juggernaut.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI5MjRmNzA3YTI0NDAyYzc3YjA0NDZkZGVlM2Y1NWVhNSIseyJ0IjoyNSwic3AiOjAuMjk3Mn1d/ec99a0b7c5/Juggernaut.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI5MjRmNzA3YTI0NDAyYzc3YjA0NDZkZGVlM2Y1NWVhNSIseyJ0IjoyNSwic3AiOjAuMzgzNX1d/abda64f00b/Juggernaut.png" + }, + "ClassesBerserker": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJkYzM3MjliYjUyZmY5NzQ4YWQ4YTVlN2I3NDEwNDRmYSIseyJ0IjoyNiwic3AiOjAuMTI0Nn1d/7ed8619e5f/Berserker.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJkYzM3MjliYjUyZmY5NzQ4YWQ4YTVlN2I3NDEwNDRmYSIseyJ0IjoyNiwic3AiOjAuMjEwOX1d/cdef2a76f0/Berserker.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJkYzM3MjliYjUyZmY5NzQ4YWQ4YTVlN2I3NDEwNDRmYSIseyJ0IjoyNiwic3AiOjAuMjk3Mn1d/b2b593fe3c/Berserker.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJkYzM3MjliYjUyZmY5NzQ4YWQ4YTVlN2I3NDEwNDRmYSIseyJ0IjoyNiwic3AiOjAuMzgzNX1d/c4247e2b55/Berserker.png" + }, + "ClassesChieftain": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4MjA5YzJkNzI3ODk0YzA2YWVhYmVjZTQ2Y2RmNWNiNiIseyJ0IjoyNywic3AiOjAuMTI0Nn1d/23183b6c9e/Chieftain.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4MjA5YzJkNzI3ODk0YzA2YWVhYmVjZTQ2Y2RmNWNiNiIseyJ0IjoyNywic3AiOjAuMjEwOX1d/e1628a624f/Chieftain.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4MjA5YzJkNzI3ODk0YzA2YWVhYmVjZTQ2Y2RmNWNiNiIseyJ0IjoyNywic3AiOjAuMjk3Mn1d/2534628f4a/Chieftain.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4MjA5YzJkNzI3ODk0YzA2YWVhYmVjZTQ2Y2RmNWNiNiIseyJ0IjoyNywic3AiOjAuMzgzNX1d/d3ea6d7596/Chieftain.png" + }, + "ClassesSlayer": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhM2NiN2UzMGM0ZGEyMjM5ZTg1NjRlZDBmY2RmODMwNiIseyJ0IjozNCwic3AiOjAuMTI0Nn1d/ce9b53dead/Slayer.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhM2NiN2UzMGM0ZGEyMjM5ZTg1NjRlZDBmY2RmODMwNiIseyJ0IjozNCwic3AiOjAuMjEwOX1d/543d4ec1c3/Slayer.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhM2NiN2UzMGM0ZGEyMjM5ZTg1NjRlZDBmY2RmODMwNiIseyJ0IjozNCwic3AiOjAuMjk3Mn1d/76c1c2b9a6/Slayer.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhM2NiN2UzMGM0ZGEyMjM5ZTg1NjRlZDBmY2RmODMwNiIseyJ0IjozNCwic3AiOjAuMzgzNX1d/eb93dac107/Slayer.png" + }, + "ClassesGladiator": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4YTUwNjE4ZjZhNmEyY2NkODNiZDU1NDY5MmJlYjg5OCIseyJ0IjozNSwic3AiOjAuMTI0Nn1d/032e49d52f/Gladiator.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4YTUwNjE4ZjZhNmEyY2NkODNiZDU1NDY5MmJlYjg5OCIseyJ0IjozNSwic3AiOjAuMjEwOX1d/e02ebc57a6/Gladiator.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4YTUwNjE4ZjZhNmEyY2NkODNiZDU1NDY5MmJlYjg5OCIseyJ0IjozNSwic3AiOjAuMjk3Mn1d/b3ff9ec3aa/Gladiator.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4YTUwNjE4ZjZhNmEyY2NkODNiZDU1NDY5MmJlYjg5OCIseyJ0IjozNSwic3AiOjAuMzgzNX1d/5148df08b5/Gladiator.png" + }, + "ClassesChampion": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4ZDQ1NGNhZjBiNzMxMDk5MTZjODQ5NDcwYzk4NTc0YSIseyJ0IjozNiwic3AiOjAuMTI0Nn1d/2b6857642d/Champion.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4ZDQ1NGNhZjBiNzMxMDk5MTZjODQ5NDcwYzk4NTc0YSIseyJ0IjozNiwic3AiOjAuMjEwOX1d/5bd7d6d256/Champion.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4ZDQ1NGNhZjBiNzMxMDk5MTZjODQ5NDcwYzk4NTc0YSIseyJ0IjozNiwic3AiOjAuMjk3Mn1d/4b89027748/Champion.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4ZDQ1NGNhZjBiNzMxMDk5MTZjODQ5NDcwYzk4NTc0YSIseyJ0IjozNiwic3AiOjAuMzgzNX1d/4fc8856369/Champion.png" + }, + "ClassesAscendant": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJlMmUyYjI4NWU5Zjc4NTRmNTJkOTZhNTJmMTNiN2QzZSIseyJ0IjoyNCwic3AiOjAuMTI0Nn1d/a9bc21f78f/Ascendant.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJlMmUyYjI4NWU5Zjc4NTRmNTJkOTZhNTJmMTNiN2QzZSIseyJ0IjoyNCwic3AiOjAuMjEwOX1d/7b16f5b707/Ascendant.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJlMmUyYjI4NWU5Zjc4NTRmNTJkOTZhNTJmMTNiN2QzZSIseyJ0IjoyNCwic3AiOjAuMjk3Mn1d/609bc905e2/Ascendant.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJlMmUyYjI4NWU5Zjc4NTRmNTJkOTZhNTJmMTNiN2QzZSIseyJ0IjoyNCwic3AiOjAuMzgzNX1d/bcaf6c86bd/Ascendant.png" + }, + "ClassesInquisitor": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCJhMTEwM2MwOTQwZDZjOGIyODdhN2I4NjI1MGUyZDg0ZSIseyJ0IjozNywic3AiOjAuMTI0Nn1d/621ae371da/Inquisitor.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCJhMTEwM2MwOTQwZDZjOGIyODdhN2I4NjI1MGUyZDg0ZSIseyJ0IjozNywic3AiOjAuMjEwOX1d/1277741157/Inquisitor.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCJhMTEwM2MwOTQwZDZjOGIyODdhN2I4NjI1MGUyZDg0ZSIseyJ0IjozNywic3AiOjAuMjk3Mn1d/9a6a6b4bec/Inquisitor.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCJhMTEwM2MwOTQwZDZjOGIyODdhN2I4NjI1MGUyZDg0ZSIseyJ0IjozNywic3AiOjAuMzgzNX1d/afccb387d1/Inquisitor.png" + }, + "ClassesHierophant": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI4NzQ3MDZhMjE3NmE2ODcyZTU1MjBmNGFiMjY3YjZkOCIseyJ0IjozOCwic3AiOjAuMTI0Nn1d/75b2b50d64/Hierophant.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI4NzQ3MDZhMjE3NmE2ODcyZTU1MjBmNGFiMjY3YjZkOCIseyJ0IjozOCwic3AiOjAuMjEwOX1d/4ae3458b0d/Hierophant.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI4NzQ3MDZhMjE3NmE2ODcyZTU1MjBmNGFiMjY3YjZkOCIseyJ0IjozOCwic3AiOjAuMjk3Mn1d/3011d27ca0/Hierophant.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI4NzQ3MDZhMjE3NmE2ODcyZTU1MjBmNGFiMjY3YjZkOCIseyJ0IjozOCwic3AiOjAuMzgzNX1d/efd287ac42/Hierophant.png" + }, + "ClassesGuardian": { + "0.1246": "https://web.poecdn.com/gen/image/WzIyLCI2MWE5NDc0NTA1MmJiMWJmODdmYWQxMmVhNWEwMDNkYiIseyJ0IjozOSwic3AiOjAuMTI0Nn1d/8b8bbf4a30/Guardian.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIyLCI2MWE5NDc0NTA1MmJiMWJmODdmYWQxMmVhNWEwMDNkYiIseyJ0IjozOSwic3AiOjAuMjEwOX1d/c5f81ff448/Guardian.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIyLCI2MWE5NDc0NTA1MmJiMWJmODdmYWQxMmVhNWEwMDNkYiIseyJ0IjozOSwic3AiOjAuMjk3Mn1d/d79470bded/Guardian.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIyLCI2MWE5NDc0NTA1MmJiMWJmODdmYWQxMmVhNWEwMDNkYiIseyJ0IjozOSwic3AiOjAuMzgzNX1d/8c97e0c73c/Guardian.png" + }, + "Background1": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCI0ODRjMTBmZTljMjNhMmNkYjE2ZjBjNzkyYjE1MTRkZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9Db21tb25cL0JhY2tncm91bmQxIiwic3AiOjAuMTI0Nn1d/5c45fbabbf/Background1.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCI0ODRjMTBmZTljMjNhMmNkYjE2ZjBjNzkyYjE1MTRkZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9Db21tb25cL0JhY2tncm91bmQxIiwic3AiOjAuMjEwOX1d/1ac1b7b621/Background1.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCI0ODRjMTBmZTljMjNhMmNkYjE2ZjBjNzkyYjE1MTRkZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9Db21tb25cL0JhY2tncm91bmQxIiwic3AiOjAuMjk3Mn1d/4c3acf5b53/Background1.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCI0ODRjMTBmZTljMjNhMmNkYjE2ZjBjNzkyYjE1MTRkZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9Db21tb25cL0JhY2tncm91bmQxIiwic3AiOjAuMzgzNX1d/4e153fb8a2/Background1.png" + }, + "BackgroundDex": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJhMjM4ZTlmZjk2Yzc3YjQ2NmY5ZTNmODk3MzA3ZTg1YiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleCIsInNwIjowLjEyNDZ9XQ/991a0005a3/BackgroundDex.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJhMjM4ZTlmZjk2Yzc3YjQ2NmY5ZTNmODk3MzA3ZTg1YiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleCIsInNwIjowLjIxMDl9XQ/39ec69c245/BackgroundDex.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJhMjM4ZTlmZjk2Yzc3YjQ2NmY5ZTNmODk3MzA3ZTg1YiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleCIsInNwIjowLjI5NzJ9XQ/0f53fa3b2a/BackgroundDex.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJhMjM4ZTlmZjk2Yzc3YjQ2NmY5ZTNmODk3MzA3ZTg1YiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleCIsInNwIjowLjM4MzV9XQ/4a3d72c920/BackgroundDex.png" + }, + "BackgroundDexInt": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJlM2YxYTlkYWUwY2M1ZTgyOGNkMGI1NDgyYzQ3ZmMyMSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleEludCIsInNwIjowLjEyNDZ9XQ/adb470364f/BackgroundDexInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJlM2YxYTlkYWUwY2M1ZTgyOGNkMGI1NDgyYzQ3ZmMyMSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleEludCIsInNwIjowLjIxMDl9XQ/f869b80256/BackgroundDexInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJlM2YxYTlkYWUwY2M1ZTgyOGNkMGI1NDgyYzQ3ZmMyMSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleEludCIsInNwIjowLjI5NzJ9XQ/42f17819aa/BackgroundDexInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJlM2YxYTlkYWUwY2M1ZTgyOGNkMGI1NDgyYzQ3ZmMyMSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0RleEludCIsInNwIjowLjM4MzV9XQ/9ebf931fde/BackgroundDexInt.png" + }, + "BackgroundInt": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJkYzFhYzRkNGVkMmZiNzg3MzBjZWMzZjNkODhmYzM2NCIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0ludCIsInNwIjowLjEyNDZ9XQ/f554cb74bc/BackgroundInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJkYzFhYzRkNGVkMmZiNzg3MzBjZWMzZjNkODhmYzM2NCIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0ludCIsInNwIjowLjIxMDl9XQ/9583b2221e/BackgroundInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJkYzFhYzRkNGVkMmZiNzg3MzBjZWMzZjNkODhmYzM2NCIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0ludCIsInNwIjowLjI5NzJ9XQ/3d1d8e2bb6/BackgroundInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJkYzFhYzRkNGVkMmZiNzg3MzBjZWMzZjNkODhmYzM2NCIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL0ludCIsInNwIjowLjM4MzV9XQ/c991d1593a/BackgroundInt.png" + }, + "BackgroundStr": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJjMjZmYjU5YWVhMzE5OTZjZTViOTE1MWIxZjNlYWVjYiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ciIsInNwIjowLjEyNDZ9XQ/462da312ac/BackgroundStr.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJjMjZmYjU5YWVhMzE5OTZjZTViOTE1MWIxZjNlYWVjYiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ciIsInNwIjowLjIxMDl9XQ/55b4e294b4/BackgroundStr.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJjMjZmYjU5YWVhMzE5OTZjZTViOTE1MWIxZjNlYWVjYiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ciIsInNwIjowLjI5NzJ9XQ/ddb8f0a689/BackgroundStr.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJjMjZmYjU5YWVhMzE5OTZjZTViOTE1MWIxZjNlYWVjYiIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ciIsInNwIjowLjM4MzV9XQ/c1dce55c7c/BackgroundStr.png" + }, + "BackgroundStrDex": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCIyMTVmNjYzY2NiNTIxYmVlNzY1YjRhMzFkOWUyOWMzYSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckRleCIsInNwIjowLjEyNDZ9XQ/9ba90f8817/BackgroundStrDex.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCIyMTVmNjYzY2NiNTIxYmVlNzY1YjRhMzFkOWUyOWMzYSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckRleCIsInNwIjowLjIxMDl9XQ/b4d17c1c84/BackgroundStrDex.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCIyMTVmNjYzY2NiNTIxYmVlNzY1YjRhMzFkOWUyOWMzYSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckRleCIsInNwIjowLjI5NzJ9XQ/b3ded486e0/BackgroundStrDex.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCIyMTVmNjYzY2NiNTIxYmVlNzY1YjRhMzFkOWUyOWMzYSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckRleCIsInNwIjowLjM4MzV9XQ/8894a0afd6/BackgroundStrDex.png" + }, + "BackgroundStrInt": { + "0.1246": "https://web.poecdn.com/gen/image/WzIxLCJmNjgwYzk0NGNhMzU2Y2MzNmYzZGZiZmJlNTdjYmY1ZSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckludCIsInNwIjowLjEyNDZ9XQ/446fa9e68a/BackgroundStrInt.png", + "0.2109": "https://web.poecdn.com/gen/image/WzIxLCJmNjgwYzk0NGNhMzU2Y2MzNmYzZGZiZmJlNTdjYmY1ZSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckludCIsInNwIjowLjIxMDl9XQ/1afc737219/BackgroundStrInt.png", + "0.2972": "https://web.poecdn.com/gen/image/WzIxLCJmNjgwYzk0NGNhMzU2Y2MzNmYzZGZiZmJlNTdjYmY1ZSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckludCIsInNwIjowLjI5NzJ9XQ/5817b02960/BackgroundStrInt.png", + "0.3835": "https://web.poecdn.com/gen/image/WzIxLCJmNjgwYzk0NGNhMzU2Y2MzNmYzZGZiZmJlNTdjYmY1ZSIseyJrIjoiMkRBcnRcL0Jhc2VDbGFzc0lsbHVzdHJhdGlvbnNcL1N0ckludCIsInNwIjowLjM4MzV9XQ/fee3990d70/BackgroundStrInt.png" + }, + "imgPSFadeCorner": { + "1": "https://web.poecdn.com/gen/image/WzIxLCJiZGYwODUzYzNjNzc5NzZjNjUxNDgxNDM0OGVjODYxZSIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0ZhZGVDb3JuZXIiLCJzcCI6MX1d/2e8440cfeb/Fade_Corner.png" + }, + "imgPSFadeSide": { + "1": "https://web.poecdn.com/gen/image/WzIxLCI1NjIxOGVmZjZlYTMwYmFiMmI0NTUyODhhZDZjYzQzMyIseyJrIjoiMkRBcnRcL1VJSW1hZ2VzXC9JbkdhbWVcL0ZhZGVTaWRlIiwic3AiOjF9XQ/6e6aacf69a/Fade_Side.png" + } + }, + "constants": { + "classes": { + "StrClass": 1, + "DexClass": 2, + "IntClass": 3, + "StrDexClass": 4, + "StrIntClass": 5, + "DexIntClass": 6, + "StrDexIntClass": 0 + }, + "characterAttributes": { + "Strength": 0, + "Dexterity": 1, + "Intelligence": 2 + }, + "PSSCentreInnerRadius": 130, + "skillsPerOrbit": [ + 1, + 6, + 12, + 12, + 40 + ], + "orbitRadii": [ + 0, + 82, + 162, + 335, + 493 + ] + }, + "imageRoot": "https://web.poecdn.com/image/", + "skillSprites": { + "normalActive": [ + { + "filename": "skills-0.jpg?eb0eeef8ecbde5962d06bb7d97a6bf13", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 9, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 18, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 27, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 36, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 45, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 54, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 63, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 72, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 81, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 90, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 99, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 108, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 117, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 126, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 135, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 144, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 153, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 162, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 171, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 180, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 189, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 198, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 207, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 216, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 225, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 0, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 9, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 18, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 27, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 36, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 45, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 54, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 63, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 72, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 81, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 90, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 99, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 108, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 117, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 126, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 135, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 144, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 153, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 162, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 171, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 180, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 189, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 198, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 207, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 216, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 225, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 0, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 9, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 18, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 27, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 36, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 45, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 54, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 63, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 72, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 81, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 90, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 99, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 108, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 117, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 126, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 135, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 144, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 153, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 162, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 171, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 180, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 189, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 198, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 207, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 216, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 225, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 0, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 9, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 18, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 27, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 36, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 45, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 54, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 63, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 72, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 81, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 90, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 99, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 108, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 117, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 126, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 135, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 144, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 153, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 162, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 171, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 180, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 189, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 198, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 207, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 216, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 225, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 0, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 9, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 18, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 27, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 36, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 45, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 54, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 63, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 72, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 81, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 90, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 99, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 108, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 117, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 126, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 135, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 144, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 153, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 162, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 171, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 180, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 189, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 198, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 207, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 216, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 225, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 0, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 9, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 18, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 27, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 36, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 45, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 54, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 63, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 72, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 81, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 90, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 99, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 108, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 117, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 126, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 135, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 144, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 153, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 162, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 171, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 180, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 189, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 198, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 207, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 216, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 225, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 0, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 9, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 18, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 27, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 36, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 45, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 54, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 63, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 72, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 81, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 90, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 99, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 108, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 117, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 126, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 135, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 144, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 153, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 162, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 171, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 180, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 189, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 198, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 207, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 216, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 225, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 0, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 9, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 18, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 27, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 36, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 45, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 54, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 63, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 72, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 81, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 90, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 99, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 108, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 117, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 126, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 135, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 144, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 153, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 162, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 171, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 180, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 189, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 198, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 207, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 216, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 225, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 0, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 9, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 18, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 27, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 36, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 45, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 54, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 63, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 72, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 81, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 90, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 99, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 108, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 117, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 126, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 135, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 144, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 153, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 162, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 171, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 180, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 189, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 198, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 207, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 216, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 225, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 0, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 9, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 18, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 27, + "y": 81, + "w": 9, + "h": 9 + } + } + }, + { + "filename": "skills-1.jpg?8c6ffbfdb35a9bbda1602427c5cf8c83", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 15, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 30, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 45, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 60, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 75, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 90, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 105, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 120, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 135, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 150, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 165, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 180, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 195, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 210, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 225, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 240, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 255, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 270, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 285, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 300, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 315, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 330, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 345, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 360, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 375, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 390, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 405, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 0, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 15, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 30, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 45, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 60, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 75, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 90, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 105, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 120, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 135, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 150, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 165, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 180, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 195, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 210, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 225, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 240, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 255, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 270, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 285, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 300, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 315, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 330, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 345, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 360, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 375, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 390, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 405, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 0, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 15, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 30, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 45, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 60, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 75, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 90, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 105, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 120, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 135, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 150, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 165, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 180, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 195, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 210, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 225, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 240, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 255, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 270, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 285, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 300, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 315, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 330, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 345, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 360, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 375, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 390, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 405, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 0, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 15, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 30, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 45, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 60, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 75, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 90, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 105, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 120, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 135, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 150, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 165, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 180, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 195, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 210, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 225, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 240, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 255, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 270, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 285, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 300, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 315, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 330, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 345, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 360, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 375, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 390, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 405, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 0, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 15, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 30, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 45, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 60, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 75, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 90, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 105, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 120, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 135, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 150, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 165, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 180, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 195, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 210, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 225, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 240, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 255, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 270, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 285, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 300, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 315, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 330, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 345, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 360, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 375, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 390, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 405, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 0, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 15, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 30, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 45, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 60, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 75, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 90, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 105, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 120, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 135, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 150, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 165, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 180, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 195, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 210, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 225, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 240, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 255, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 270, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 285, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 300, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 315, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 330, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 345, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 360, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 375, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 390, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 405, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 0, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 15, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 30, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 45, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 60, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 75, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 90, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 105, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 120, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 135, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 150, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 165, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 180, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 195, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 210, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 225, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 240, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 255, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 270, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 285, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 300, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 315, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 330, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 345, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 360, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 375, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 390, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 405, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 0, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 15, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 30, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 45, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 60, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 75, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 90, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 105, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 120, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 135, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 150, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 165, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 180, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 195, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 210, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 225, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 240, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 255, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 270, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 285, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 300, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 315, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 330, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 345, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 360, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 375, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 390, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 405, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 0, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 15, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 30, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 45, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 60, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 75, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 90, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 105, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 120, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 135, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 150, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 165, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 180, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 195, + "y": 120, + "w": 15, + "h": 15 + } + } + }, + { + "filename": "skills-2.jpg?c8f1218ad1b81f76cd22bbba87c38f07", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 21, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 42, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 63, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 84, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 105, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 126, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 147, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 168, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 189, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 210, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 231, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 252, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 273, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 294, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 315, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 336, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 357, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 378, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 399, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 420, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 441, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 462, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 483, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 504, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 525, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 546, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 0, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 21, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 42, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 63, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 84, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 105, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 126, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 147, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 168, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 189, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 210, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 231, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 252, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 273, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 294, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 315, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 336, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 357, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 378, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 399, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 420, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 441, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 462, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 483, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 504, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 525, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 546, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 0, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 21, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 42, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 63, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 84, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 105, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 126, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 147, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 168, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 189, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 210, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 231, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 252, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 273, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 294, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 315, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 336, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 357, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 378, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 399, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 420, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 441, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 462, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 483, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 504, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 525, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 546, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 0, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 21, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 42, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 63, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 84, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 105, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 126, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 147, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 168, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 189, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 210, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 231, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 252, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 273, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 294, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 315, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 336, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 357, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 378, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 399, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 420, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 441, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 462, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 483, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 504, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 525, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 546, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 0, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 21, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 42, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 63, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 84, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 105, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 126, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 147, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 168, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 189, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 210, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 231, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 252, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 273, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 294, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 315, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 336, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 357, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 378, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 399, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 420, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 441, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 462, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 483, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 504, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 525, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 546, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 0, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 21, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 42, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 63, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 84, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 105, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 126, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 147, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 168, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 189, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 210, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 231, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 252, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 273, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 294, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 315, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 336, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 357, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 378, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 399, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 420, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 441, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 462, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 483, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 504, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 525, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 546, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 0, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 21, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 42, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 63, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 84, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 105, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 126, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 147, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 168, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 189, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 210, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 231, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 252, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 273, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 294, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 315, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 336, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 357, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 378, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 399, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 420, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 441, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 462, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 483, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 504, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 525, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 546, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 0, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 21, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 42, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 63, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 84, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 105, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 126, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 147, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 168, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 189, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 210, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 231, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 252, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 273, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 294, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 315, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 336, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 357, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 378, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 399, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 420, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 441, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 462, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 483, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 504, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 525, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 546, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 0, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 21, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 42, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 63, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 84, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 105, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 126, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 147, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 168, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 189, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 210, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 231, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 252, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 273, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 294, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 315, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 336, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 357, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 378, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 399, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 420, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 441, + "y": 168, + "w": 21, + "h": 21 + } + } + }, + { + "filename": "skills-3.jpg?5a0f9bdabbe5304853191064a6ec3030", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 27, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 54, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 81, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 108, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 135, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 162, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 189, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 216, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 243, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 270, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 297, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 324, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 351, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 378, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 405, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 432, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 459, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 486, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 513, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 540, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 567, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 594, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 621, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 648, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 675, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 702, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 729, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 0, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 27, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 54, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 81, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 108, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 135, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 162, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 189, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 216, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 243, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 270, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 297, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 324, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 351, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 378, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 405, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 432, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 459, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 486, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 513, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 540, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 567, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 594, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 621, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 648, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 675, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 702, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 729, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 0, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 27, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 54, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 81, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 108, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 135, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 162, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 189, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 216, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 243, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 270, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 297, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 324, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 351, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 378, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 405, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 432, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 459, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 486, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 513, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 540, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 567, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 594, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 621, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 648, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 675, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 702, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 729, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 0, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 27, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 54, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 81, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 108, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 135, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 162, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 189, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 216, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 243, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 270, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 297, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 324, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 351, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 378, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 405, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 432, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 459, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 486, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 513, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 540, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 567, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 594, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 621, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 648, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 675, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 702, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 729, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 0, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 27, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 54, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 81, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 108, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 135, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 162, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 189, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 216, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 243, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 270, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 297, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 324, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 351, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 378, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 405, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 432, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 459, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 486, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 513, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 540, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 567, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 594, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 621, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 648, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 675, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 702, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 729, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 0, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 27, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 54, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 81, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 108, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 135, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 162, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 189, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 216, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 243, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 270, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 297, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 324, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 351, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 378, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 405, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 432, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 459, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 486, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 513, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 540, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 567, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 594, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 621, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 648, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 675, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 702, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 729, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 0, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 27, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 54, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 81, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 108, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 135, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 162, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 189, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 216, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 243, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 270, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 297, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 324, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 351, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 378, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 405, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 432, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 459, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 486, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 513, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 540, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 567, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 594, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 621, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 648, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 675, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 702, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 729, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 0, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 27, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 54, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 81, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 108, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 135, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 162, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 189, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 216, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 243, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 270, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 297, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 324, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 351, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 378, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 405, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 432, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 459, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 486, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 513, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 540, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 567, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 594, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 621, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 648, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 675, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 702, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 729, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 0, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 27, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 54, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 81, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 108, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 135, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 162, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 189, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 216, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 243, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 270, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 297, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 324, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 351, + "y": 216, + "w": 27, + "h": 27 + } + } + } + ], + "notableActive": [ + { + "filename": "skills-0.jpg?eb0eeef8ecbde5962d06bb7d97a6bf13", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 12, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 24, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 36, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 48, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 60, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 72, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 84, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 96, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 108, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 120, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 132, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 144, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 156, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 168, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 180, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 192, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 204, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 216, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 228, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 12, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 24, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 36, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 48, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 60, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 72, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 84, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 96, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 108, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 120, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 132, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 144, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 156, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 168, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 180, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 192, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 204, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 216, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 228, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 12, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 24, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 36, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 48, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 60, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 72, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 84, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 96, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 108, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 120, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 132, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 144, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 156, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 168, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 180, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 192, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 204, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 216, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 228, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 12, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 24, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 36, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 48, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 60, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 72, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 84, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 96, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 108, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 120, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 132, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 144, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 156, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 168, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 180, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 192, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 204, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 216, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 228, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 12, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 24, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 36, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 48, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 60, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 72, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 84, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 96, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 108, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 120, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 132, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 144, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 156, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 168, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 180, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 192, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 204, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 216, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 228, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 12, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 24, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 36, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 48, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 60, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 72, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 84, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 96, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 108, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 120, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 132, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 144, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 156, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 168, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 180, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 192, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 204, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 216, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 228, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 12, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 24, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 36, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 48, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 60, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 72, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 84, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 96, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 108, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 120, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 132, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 144, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 156, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 168, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 180, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 192, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 204, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 216, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 228, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 12, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 24, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 36, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 48, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 60, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 72, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 84, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 96, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 108, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 120, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 132, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 144, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 156, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 168, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 180, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 192, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 204, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 216, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 228, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 12, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 24, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 36, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 48, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 60, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 72, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 84, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 96, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 108, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 120, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 132, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 144, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 156, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 168, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 180, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 192, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 204, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 216, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 228, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 12, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 24, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 36, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 48, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 60, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 72, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 84, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 96, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 108, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 120, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 132, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 144, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 156, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 168, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 180, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 192, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 204, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 216, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 228, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 12, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 24, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 36, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 48, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 60, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 72, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 84, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 96, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 108, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 120, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 132, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 144, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 156, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 168, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 180, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 192, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 204, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 216, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 228, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 12, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 24, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 36, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 48, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 60, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 72, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 84, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 96, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 108, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 120, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 132, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 144, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 156, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 168, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 180, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 192, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 204, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 216, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 228, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 12, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 24, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 36, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 48, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 60, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 72, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 84, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 96, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 108, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 120, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 132, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 144, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 156, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 168, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 180, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 192, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 204, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 216, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 228, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 12, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 24, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 36, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 48, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 60, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 72, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 84, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 96, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 108, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 120, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 132, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 144, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 156, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 168, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 180, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 192, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 204, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 216, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 228, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 12, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 24, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 36, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 48, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 60, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 72, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 84, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 96, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 108, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 120, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 132, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 144, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 156, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 168, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 180, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 192, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 204, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 216, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 228, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 12, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 24, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 36, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 48, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 60, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 72, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 84, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 96, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 108, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 120, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 132, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 144, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 156, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 168, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 180, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 192, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 204, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 216, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 228, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 12, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 24, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 36, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 48, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 60, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 72, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 84, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 96, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 108, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 120, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 132, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 144, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 156, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 168, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 180, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 192, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 204, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 216, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 228, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 12, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 24, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 36, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 48, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 60, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 72, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 84, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 96, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 108, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 120, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 132, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 144, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 156, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 168, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 180, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 192, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 204, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 216, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 228, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 12, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 24, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 36, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 48, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 60, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 72, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 84, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 96, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 108, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 120, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 132, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 144, + "y": 306, + "w": 12, + "h": 12 + } + } + }, + { + "filename": "skills-1.jpg?8c6ffbfdb35a9bbda1602427c5cf8c83", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 21, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 42, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 63, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 84, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 105, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 126, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 147, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 168, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 189, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 210, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 231, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 252, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 273, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 294, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 315, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 336, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 357, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 378, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 399, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 21, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 42, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 63, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 84, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 105, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 126, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 147, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 168, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 189, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 210, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 231, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 252, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 273, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 294, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 315, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 336, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 357, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 378, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 399, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 21, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 42, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 63, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 84, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 105, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 126, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 147, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 168, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 189, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 210, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 231, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 252, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 273, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 294, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 315, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 336, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 357, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 378, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 399, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 21, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 42, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 63, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 84, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 105, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 126, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 147, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 168, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 189, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 210, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 231, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 252, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 273, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 294, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 315, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 336, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 357, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 378, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 399, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 21, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 42, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 63, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 84, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 105, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 126, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 147, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 168, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 189, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 210, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 231, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 252, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 273, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 294, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 315, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 336, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 357, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 378, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 399, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 21, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 42, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 63, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 84, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 105, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 126, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 147, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 168, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 189, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 210, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 231, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 252, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 273, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 294, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 315, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 336, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 357, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 378, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 399, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 21, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 42, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 63, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 84, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 105, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 126, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 147, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 168, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 189, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 210, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 231, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 252, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 273, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 294, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 315, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 336, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 357, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 378, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 399, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 21, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 42, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 63, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 84, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 105, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 126, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 147, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 168, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 189, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 210, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 231, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 252, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 273, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 294, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 315, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 336, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 357, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 378, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 399, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 21, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 42, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 63, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 84, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 105, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 126, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 147, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 168, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 189, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 210, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 231, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 252, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 273, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 294, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 315, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 336, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 357, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 378, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 399, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 21, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 42, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 63, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 84, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 105, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 126, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 147, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 168, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 189, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 210, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 231, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 252, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 273, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 294, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 315, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 336, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 357, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 378, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 399, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 21, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 42, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 63, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 84, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 105, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 126, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 147, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 168, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 189, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 210, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 231, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 252, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 273, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 294, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 315, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 336, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 357, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 378, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 399, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 21, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 42, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 63, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 84, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 105, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 126, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 147, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 168, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 189, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 210, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 231, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 252, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 273, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 294, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 315, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 336, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 357, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 378, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 399, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 21, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 42, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 63, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 84, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 105, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 126, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 147, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 168, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 189, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 210, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 231, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 252, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 273, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 294, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 315, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 336, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 357, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 378, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 399, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 21, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 42, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 63, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 84, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 105, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 126, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 147, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 168, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 189, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 210, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 231, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 252, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 273, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 294, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 315, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 336, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 357, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 378, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 399, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 21, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 42, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 63, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 84, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 105, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 126, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 147, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 168, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 189, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 210, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 231, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 252, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 273, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 294, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 315, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 336, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 357, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 378, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 399, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 21, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 42, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 63, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 84, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 105, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 126, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 147, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 168, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 189, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 210, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 231, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 252, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 273, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 294, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 315, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 336, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 357, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 378, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 399, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 21, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 42, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 63, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 84, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 105, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 126, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 147, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 168, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 189, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 210, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 231, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 252, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 273, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 294, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 315, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 336, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 357, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 378, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 399, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 21, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 42, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 63, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 84, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 105, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 126, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 147, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 168, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 189, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 210, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 231, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 252, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 273, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 294, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 315, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 336, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 357, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 378, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 399, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 21, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 42, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 63, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 84, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 105, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 126, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 147, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 168, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 189, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 210, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 231, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 252, + "y": 513, + "w": 21, + "h": 21 + } + } + }, + { + "filename": "skills-2.jpg?c8f1218ad1b81f76cd22bbba87c38f07", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 29, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 58, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 87, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 116, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 145, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 174, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 203, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 232, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 261, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 290, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 319, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 348, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 377, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 406, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 435, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 464, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 493, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 522, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 551, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 29, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 58, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 87, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 116, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 145, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 174, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 203, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 232, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 261, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 290, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 319, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 348, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 377, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 406, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 435, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 464, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 493, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 522, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 551, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 29, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 58, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 87, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 116, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 145, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 174, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 203, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 232, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 261, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 290, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 319, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 348, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 377, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 406, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 435, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 464, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 493, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 522, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 551, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 29, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 58, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 87, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 116, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 145, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 174, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 203, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 232, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 261, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 290, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 319, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 348, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 377, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 406, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 435, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 464, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 493, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 522, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 551, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 29, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 58, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 87, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 116, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 145, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 174, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 203, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 232, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 261, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 290, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 319, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 348, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 377, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 406, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 435, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 464, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 493, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 522, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 551, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 29, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 58, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 87, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 116, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 145, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 174, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 203, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 232, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 261, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 290, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 319, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 348, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 377, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 406, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 435, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 464, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 493, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 522, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 551, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 29, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 58, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 87, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 116, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 145, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 174, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 203, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 232, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 261, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 290, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 319, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 348, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 377, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 406, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 435, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 464, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 493, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 522, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 551, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 29, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 58, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 87, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 116, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 145, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 174, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 203, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 232, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 261, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 290, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 319, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 348, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 377, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 406, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 435, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 464, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 493, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 522, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 551, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 29, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 58, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 87, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 116, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 145, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 174, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 203, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 232, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 261, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 290, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 319, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 348, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 377, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 406, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 435, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 464, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 493, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 522, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 551, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 29, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 58, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 87, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 116, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 145, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 174, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 203, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 232, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 261, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 290, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 319, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 348, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 377, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 406, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 435, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 464, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 493, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 522, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 551, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 29, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 58, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 87, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 116, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 145, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 174, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 203, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 232, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 261, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 290, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 319, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 348, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 377, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 406, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 435, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 464, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 493, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 522, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 551, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 29, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 58, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 87, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 116, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 145, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 174, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 203, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 232, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 261, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 290, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 319, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 348, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 377, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 406, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 435, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 464, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 493, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 522, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 551, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 29, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 58, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 87, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 116, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 145, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 174, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 203, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 232, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 261, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 290, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 319, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 348, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 377, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 406, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 435, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 464, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 493, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 522, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 551, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 29, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 58, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 87, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 116, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 145, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 174, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 203, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 232, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 261, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 290, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 319, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 348, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 377, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 406, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 435, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 464, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 493, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 522, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 551, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 29, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 58, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 87, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 116, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 145, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 174, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 203, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 232, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 261, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 290, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 319, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 348, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 377, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 406, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 435, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 464, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 493, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 522, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 551, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 29, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 58, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 87, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 116, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 145, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 174, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 203, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 232, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 261, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 290, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 319, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 348, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 377, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 406, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 435, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 464, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 493, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 522, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 551, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 29, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 58, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 87, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 116, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 145, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 174, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 203, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 232, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 261, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 290, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 319, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 348, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 377, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 406, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 435, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 464, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 493, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 522, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 551, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 29, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 58, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 87, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 116, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 145, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 174, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 203, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 232, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 261, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 290, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 319, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 348, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 377, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 406, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 435, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 464, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 493, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 522, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 551, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 29, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 58, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 87, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 116, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 145, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 174, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 203, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 232, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 261, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 290, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 319, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 348, + "y": 711, + "w": 29, + "h": 29 + } + } + }, + { + "filename": "skills-3.jpg?5a0f9bdabbe5304853191064a6ec3030", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 38, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 76, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 114, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 152, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 190, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 228, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 266, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 304, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 342, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 380, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 418, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 456, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 494, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 532, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 570, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 608, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 646, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 684, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 722, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 38, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 76, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 114, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 152, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 190, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 228, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 266, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 304, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 342, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 380, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 418, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 456, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 494, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 532, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 570, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 608, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 646, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 684, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 722, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 38, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 76, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 114, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 152, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 190, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 228, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 266, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 304, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 342, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 380, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 418, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 456, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 494, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 532, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 570, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 608, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 646, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 684, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 722, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 38, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 76, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 114, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 152, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 190, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 228, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 266, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 304, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 342, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 380, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 418, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 456, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 494, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 532, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 570, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 608, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 646, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 684, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 722, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 38, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 76, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 114, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 152, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 190, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 228, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 266, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 304, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 342, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 380, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 418, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 456, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 494, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 532, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 570, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 608, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 646, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 684, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 722, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 38, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 76, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 114, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 152, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 190, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 228, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 266, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 304, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 342, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 380, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 418, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 456, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 494, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 532, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 570, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 608, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 646, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 684, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 722, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 38, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 76, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 114, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 152, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 190, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 228, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 266, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 304, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 342, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 380, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 418, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 456, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 494, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 532, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 570, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 608, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 646, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 684, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 722, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 38, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 76, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 114, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 152, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 190, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 228, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 266, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 304, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 342, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 380, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 418, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 456, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 494, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 532, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 570, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 608, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 646, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 684, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 722, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 38, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 76, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 114, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 152, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 190, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 228, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 266, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 304, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 342, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 380, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 418, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 456, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 494, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 532, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 570, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 608, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 646, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 684, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 722, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 38, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 76, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 114, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 152, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 190, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 228, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 266, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 304, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 342, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 380, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 418, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 456, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 494, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 532, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 570, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 608, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 646, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 684, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 722, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 38, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 76, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 114, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 152, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 190, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 228, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 266, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 304, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 342, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 380, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 418, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 456, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 494, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 532, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 570, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 608, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 646, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 684, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 722, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 38, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 76, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 114, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 152, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 190, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 228, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 266, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 304, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 342, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 380, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 418, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 456, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 494, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 532, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 570, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 608, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 646, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 684, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 722, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 38, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 76, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 114, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 152, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 190, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 228, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 266, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 304, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 342, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 380, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 418, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 456, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 494, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 532, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 570, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 608, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 646, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 684, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 722, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 38, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 76, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 114, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 152, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 190, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 228, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 266, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 304, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 342, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 380, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 418, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 456, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 494, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 532, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 570, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 608, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 646, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 684, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 722, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 38, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 76, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 114, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 152, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 190, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 228, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 266, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 304, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 342, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 380, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 418, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 456, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 494, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 532, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 570, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 608, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 646, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 684, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 722, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 38, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 76, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 114, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 152, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 190, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 228, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 266, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 304, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 342, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 380, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 418, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 456, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 494, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 532, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 570, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 608, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 646, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 684, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 722, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 38, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 76, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 114, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 152, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 190, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 228, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 266, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 304, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 342, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 380, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 418, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 456, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 494, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 532, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 570, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 608, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 646, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 684, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 722, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 38, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 76, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 114, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 152, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 190, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 228, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 266, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 304, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 342, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 380, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 418, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 456, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 494, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 532, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 570, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 608, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 646, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 684, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 722, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 38, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 76, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 114, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 152, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 190, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 228, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 266, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 304, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 342, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 380, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 418, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 456, + "y": 927, + "w": 38, + "h": 38 + } + } + } + ], + "keystoneActive": [ + { + "filename": "skills-0.jpg?eb0eeef8ecbde5962d06bb7d97a6bf13", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 17, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 34, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 51, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 68, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 85, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 102, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 119, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 136, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 153, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 170, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 187, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 204, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 221, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 17, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 34, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 51, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 68, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 85, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 102, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 119, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 136, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 153, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 170, + "y": 336, + "w": 17, + "h": 18 + } + } + }, + { + "filename": "skills-1.jpg?8c6ffbfdb35a9bbda1602427c5cf8c83", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 29, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 58, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 87, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 116, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 145, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 174, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 203, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 232, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 261, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 290, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 319, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 348, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 377, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 29, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 58, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 87, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 116, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 145, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 174, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 203, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 232, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 261, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 290, + "y": 564, + "w": 29, + "h": 30 + } + } + }, + { + "filename": "skills-2.jpg?c8f1218ad1b81f76cd22bbba87c38f07", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 41, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 82, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 123, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 164, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 205, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 246, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 287, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 328, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 369, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 410, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 451, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 492, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 533, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 41, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 82, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 123, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 164, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 205, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 246, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 287, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 328, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 369, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 410, + "y": 782, + "w": 41, + "h": 42 + } + } + }, + { + "filename": "skills-3.jpg?5a0f9bdabbe5304853191064a6ec3030", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 53, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 106, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 159, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 212, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 265, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 318, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 371, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 424, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 477, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 530, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 583, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 636, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 689, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 53, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 106, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 159, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 212, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 265, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 318, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 371, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 424, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 477, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 530, + "y": 1019, + "w": 53, + "h": 54 + } + } + } + ], + "normalInactive": [ + { + "filename": "skills-disabled-0.jpg?84f3046e8740aec7ac09fef49ccb8869", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 9, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 18, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 27, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 36, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 45, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 54, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 63, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 72, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 81, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 90, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 99, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 108, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 117, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 126, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 135, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 144, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 153, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 162, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 171, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 180, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 189, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 198, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 207, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 216, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 225, + "y": 0, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 0, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 9, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 18, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 27, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 36, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 45, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 54, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 63, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 72, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 81, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 90, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 99, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 108, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 117, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 126, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 135, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 144, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 153, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 162, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 171, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 180, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 189, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 198, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 207, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 216, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 225, + "y": 9, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 0, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 9, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 18, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 27, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 36, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 45, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 54, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 63, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 72, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 81, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 90, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 99, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 108, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 117, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 126, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 135, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 144, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 153, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 162, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 171, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 180, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 189, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 198, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 207, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 216, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 225, + "y": 18, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 0, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 9, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 18, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 27, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 36, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 45, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 54, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 63, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 72, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 81, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 90, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 99, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 108, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 117, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 126, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 135, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 144, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 153, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 162, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 171, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 180, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 189, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 198, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 207, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 216, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 225, + "y": 27, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 0, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 9, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 18, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 27, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 36, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 45, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 54, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 63, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 72, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 81, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 90, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 99, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 108, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 117, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 126, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 135, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 144, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 153, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 162, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 171, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 180, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 189, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 198, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 207, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 216, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 225, + "y": 36, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 0, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 9, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 18, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 27, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 36, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 45, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 54, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 63, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 72, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 81, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 90, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 99, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 108, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 117, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 126, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 135, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 144, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 153, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 162, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 171, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 180, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 189, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 198, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 207, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 216, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 225, + "y": 45, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 0, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 9, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 18, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 27, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 36, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 45, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 54, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 63, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 72, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 81, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 90, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 99, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 108, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 117, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 126, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 135, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 144, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 153, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 162, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 171, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 180, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 189, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 198, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 207, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 216, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 225, + "y": 54, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 0, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 9, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 18, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 27, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 36, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 45, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 54, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 63, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 72, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 81, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 90, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 99, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 108, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 117, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 126, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 135, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 144, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 153, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 162, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 171, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 180, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 189, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 198, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 207, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 216, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 225, + "y": 63, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 0, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 9, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 18, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 27, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 36, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 45, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 54, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 63, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 72, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 81, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 90, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 99, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 108, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 117, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 126, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 135, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 144, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 153, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 162, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 171, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 180, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 189, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 198, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 207, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 216, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 225, + "y": 72, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 0, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 9, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 18, + "y": 81, + "w": 9, + "h": 9 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 27, + "y": 81, + "w": 9, + "h": 9 + } + } + }, + { + "filename": "skills-disabled-1.jpg?0316feae25c1fe7944576373a5729df2", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 15, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 30, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 45, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 60, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 75, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 90, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 105, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 120, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 135, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 150, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 165, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 180, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 195, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 210, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 225, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 240, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 255, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 270, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 285, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 300, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 315, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 330, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 345, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 360, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 375, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 390, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 405, + "y": 0, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 0, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 15, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 30, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 45, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 60, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 75, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 90, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 105, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 120, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 135, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 150, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 165, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 180, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 195, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 210, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 225, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 240, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 255, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 270, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 285, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 300, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 315, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 330, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 345, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 360, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 375, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 390, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 405, + "y": 15, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 0, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 15, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 30, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 45, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 60, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 75, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 90, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 105, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 120, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 135, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 150, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 165, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 180, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 195, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 210, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 225, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 240, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 255, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 270, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 285, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 300, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 315, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 330, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 345, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 360, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 375, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 390, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 405, + "y": 30, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 0, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 15, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 30, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 45, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 60, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 75, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 90, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 105, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 120, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 135, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 150, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 165, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 180, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 195, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 210, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 225, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 240, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 255, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 270, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 285, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 300, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 315, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 330, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 345, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 360, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 375, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 390, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 405, + "y": 45, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 0, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 15, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 30, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 45, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 60, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 75, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 90, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 105, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 120, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 135, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 150, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 165, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 180, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 195, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 210, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 225, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 240, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 255, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 270, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 285, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 300, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 315, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 330, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 345, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 360, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 375, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 390, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 405, + "y": 60, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 0, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 15, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 30, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 45, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 60, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 75, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 90, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 105, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 120, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 135, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 150, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 165, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 180, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 195, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 210, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 225, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 240, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 255, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 270, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 285, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 300, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 315, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 330, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 345, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 360, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 375, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 390, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 405, + "y": 75, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 0, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 15, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 30, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 45, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 60, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 75, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 90, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 105, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 120, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 135, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 150, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 165, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 180, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 195, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 210, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 225, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 240, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 255, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 270, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 285, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 300, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 315, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 330, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 345, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 360, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 375, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 390, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 405, + "y": 90, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 0, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 15, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 30, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 45, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 60, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 75, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 90, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 105, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 120, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 135, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 150, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 165, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 180, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 195, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 210, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 225, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 240, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 255, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 270, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 285, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 300, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 315, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 330, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 345, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 360, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 375, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 390, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 405, + "y": 105, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 0, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 15, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 30, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 45, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 60, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 75, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 90, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 105, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 120, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 135, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 150, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 165, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 180, + "y": 120, + "w": 15, + "h": 15 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 195, + "y": 120, + "w": 15, + "h": 15 + } + } + }, + { + "filename": "skills-disabled-2.jpg?cb8306f669d39bedb0daebbbcb16c087", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 21, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 42, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 63, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 84, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 105, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 126, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 147, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 168, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 189, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 210, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 231, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 252, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 273, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 294, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 315, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 336, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 357, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 378, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 399, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 420, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 441, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 462, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 483, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 504, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 525, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 546, + "y": 0, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 0, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 21, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 42, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 63, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 84, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 105, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 126, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 147, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 168, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 189, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 210, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 231, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 252, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 273, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 294, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 315, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 336, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 357, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 378, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 399, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 420, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 441, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 462, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 483, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 504, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 525, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 546, + "y": 21, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 0, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 21, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 42, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 63, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 84, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 105, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 126, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 147, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 168, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 189, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 210, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 231, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 252, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 273, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 294, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 315, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 336, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 357, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 378, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 399, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 420, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 441, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 462, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 483, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 504, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 525, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 546, + "y": 42, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 0, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 21, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 42, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 63, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 84, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 105, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 126, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 147, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 168, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 189, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 210, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 231, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 252, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 273, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 294, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 315, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 336, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 357, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 378, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 399, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 420, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 441, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 462, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 483, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 504, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 525, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 546, + "y": 63, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 0, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 21, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 42, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 63, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 84, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 105, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 126, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 147, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 168, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 189, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 210, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 231, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 252, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 273, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 294, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 315, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 336, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 357, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 378, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 399, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 420, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 441, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 462, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 483, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 504, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 525, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 546, + "y": 84, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 0, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 21, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 42, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 63, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 84, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 105, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 126, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 147, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 168, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 189, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 210, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 231, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 252, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 273, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 294, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 315, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 336, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 357, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 378, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 399, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 420, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 441, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 462, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 483, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 504, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 525, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 546, + "y": 105, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 0, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 21, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 42, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 63, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 84, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 105, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 126, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 147, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 168, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 189, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 210, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 231, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 252, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 273, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 294, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 315, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 336, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 357, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 378, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 399, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 420, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 441, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 462, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 483, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 504, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 525, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 546, + "y": 126, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 0, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 21, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 42, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 63, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 84, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 105, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 126, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 147, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 168, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 189, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 210, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 231, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 252, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 273, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 294, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 315, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 336, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 357, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 378, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 399, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 420, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 441, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 462, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 483, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 504, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 525, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 546, + "y": 147, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 0, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 21, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 42, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 63, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 84, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 105, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 126, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 147, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 168, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 189, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 210, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 231, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 252, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 273, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 294, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 315, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 336, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 357, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 378, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 399, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 420, + "y": 168, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 441, + "y": 168, + "w": 21, + "h": 21 + } + } + }, + { + "filename": "skills-disabled-3.jpg?fd8eedd7863f2235842b4126664cb4ac", + "coords": { + "Art/2DArt/SkillIcons/passives/plusstrength.png": { + "x": 0, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/critstrchnc.png": { + "x": 27, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracystaff.png": { + "x": 54, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/staffspeed.png": { + "x": 81, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stunstr.png": { + "x": 108, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 135, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 162, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/colddamage.png": { + "x": 189, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/elementaldamage.png": { + "x": 216, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusintelligence.png": { + "x": 243, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png": { + "x": 270, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/miniondamageBlue.png": { + "x": 297, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionattackspeed.png": { + "x": 324, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusdexterity.png": { + "x": 351, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/2handeddamage.png": { + "x": 378, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagemelee.png": { + "x": 405, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehanddamage.png": { + "x": 432, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeed.png": { + "x": 459, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifegainpertarget.png": { + "x": 486, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagestaff.png": { + "x": 513, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blockstaff.png": { + "x": 540, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemdamage.png": { + "x": 567, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemlife.png": { + "x": 594, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemplacementspeed.png": { + "x": 621, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemattackspeed.png": { + "x": 648, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapdamage.png": { + "x": 675, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalclaw.png": { + "x": 702, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagespells.png": { + "x": 729, + "y": 0, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png": { + "x": 0, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MasteryBlank.png": { + "x": 27, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/miniondamage.png": { + "x": 54, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracy2h.png": { + "x": 81, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddual.png": { + "x": 108, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 135, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DamageOverTime.png": { + "x": 162, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifepercentage.png": { + "x": 189, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 216, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blockstr.png": { + "x": 243, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningstr.png": { + "x": 270, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dmgreduction.png": { + "x": 297, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/fireresist.png": { + "x": 324, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/coldresist.png": { + "x": 351, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png": { + "x": 378, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png": { + "x": 405, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png": { + "x": 432, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png": { + "x": 459, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damage.png": { + "x": 486, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png": { + "x": 513, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png": { + "x": 540, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lifemana.png": { + "x": 567, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png": { + "x": 594, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterysword.png": { + "x": 621, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracysword.png": { + "x": 648, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/castspeed.png": { + "x": 675, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ElementalResistance2.png": { + "x": 702, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldblock.png": { + "x": 729, + "y": 27, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 0, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 27, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png": { + "x": 54, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedFrenzyChargeDuration.png": { + "x": 81, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedEvasionEnergyShield.png": { + "x": 108, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Trickster/IncreasedMana.png": { + "x": 135, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/mana.png": { + "x": 162, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamagestr.png": { + "x": 189, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png": { + "x": 216, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png": { + "x": 243, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png": { + "x": 270, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 297, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manastr.png": { + "x": 324, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsspeed.png": { + "x": 351, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 378, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MaceElemental.png": { + "x": 405, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png": { + "x": 432, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 459, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagesword.png": { + "x": 486, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/2handedspeed.png": { + "x": 513, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ClawDaggerSwordAttackDamage2.png": { + "x": 540, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionlife.png": { + "x": 567, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png": { + "x": 594, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/energyshield.png": { + "x": 621, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 648, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedaxe.png": { + "x": 675, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damageaxe.png": { + "x": 702, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png": { + "x": 729, + "y": 54, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png": { + "x": 0, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png": { + "x": 27, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalstrikechance.png": { + "x": 54, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evadepercentage.png": { + "x": 81, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evade.png": { + "x": 108, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/projectilespeed.png": { + "x": 135, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manaregeneration.png": { + "x": 162, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/tempdex.png": { + "x": 189, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 216, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damagedualwield.png": { + "x": 243, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png": { + "x": 270, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageCrit.png": { + "x": 297, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png": { + "x": 324, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedmace.png": { + "x": 351, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stunmace.png": { + "x": 378, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 405, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankInt.png": { + "x": 432, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryCooldown.png": { + "x": 459, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryDuration.png": { + "x": 486, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/tempint.png": { + "x": 513, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedbow.png": { + "x": 540, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png": { + "x": 567, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehandspeed.png": { + "x": 594, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/onehandaccuracy.png": { + "x": 621, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeed1h.png": { + "x": 648, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png": { + "x": 675, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png": { + "x": 702, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 729, + "y": 81, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage.png": { + "x": 0, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PhysicalChaosRedPurple.png": { + "x": 27, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png": { + "x": 54, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png": { + "x": 81, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png": { + "x": 108, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png": { + "x": 135, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 162, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/knockback.png": { + "x": 189, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png": { + "x": 216, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WarCryEffect.png": { + "x": 243, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png": { + "x": 270, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/areaofeffect.png": { + "x": 297, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png": { + "x": 324, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/auraeffect.png": { + "x": 351, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/manareservationreduction.png": { + "x": 378, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/auraareaofeffect.png": { + "x": 405, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/dualwieldspeedint.png": { + "x": 432, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png": { + "x": 459, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 486, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png": { + "x": 513, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png": { + "x": 540, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Pierce.png": { + "x": 567, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsduration.png": { + "x": 594, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/trapsmax.png": { + "x": 621, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerint.png": { + "x": 648, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png": { + "x": 675, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeeddagger.png": { + "x": 702, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png": { + "x": 729, + "y": 108, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/firedamageint.png": { + "x": 0, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldrecovery.png": { + "x": 27, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldblockchance.png": { + "x": 54, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 81, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 108, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png": { + "x": 135, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png": { + "x": 162, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png": { + "x": 189, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png": { + "x": 216, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png": { + "x": 243, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png": { + "x": 270, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgEvasionArmour.png": { + "x": 297, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png": { + "x": 324, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/FortifyNode.png": { + "x": 351, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png": { + "x": 378, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png": { + "x": 405, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png": { + "x": 432, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png": { + "x": 459, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png": { + "x": 486, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png": { + "x": 513, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png": { + "x": 540, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png": { + "x": 567, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png": { + "x": 594, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png": { + "x": 621, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticaldagger.png": { + "x": 648, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankStr.png": { + "x": 675, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png": { + "x": 702, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png": { + "x": 729, + "y": 135, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png": { + "x": 0, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png": { + "x": 27, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png": { + "x": 54, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedclaw.png": { + "x": 81, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png": { + "x": 108, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png": { + "x": 135, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png": { + "x": 162, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png": { + "x": 189, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png": { + "x": 216, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/spellcritical.png": { + "x": 243, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png": { + "x": 270, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/skillduration.png": { + "x": 297, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/WandCritical.png": { + "x": 324, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 351, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 378, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 405, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png": { + "x": 432, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png": { + "x": 459, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png": { + "x": 486, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectAttackDamage.png": { + "x": 513, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/criticalbow.png": { + "x": 540, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png": { + "x": 567, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png": { + "x": 594, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedCastSpeed.png": { + "x": 621, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/masterydaggerdex.png": { + "x": 648, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png": { + "x": 675, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png": { + "x": 702, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png": { + "x": 729, + "y": 162, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png": { + "x": 0, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/damage_blue.png": { + "x": 27, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png": { + "x": 54, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/clawmasterydex.png": { + "x": 81, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png": { + "x": 108, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/chaosresist.png": { + "x": 135, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamageandResist.png": { + "x": 162, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/lightningdex.png": { + "x": 189, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/avoidburning.png": { + "x": 216, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/avoidchilling.png": { + "x": 243, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 270, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 297, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png": { + "x": 324, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/stundex.png": { + "x": 351, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/blankDex.png": { + "x": 378, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/flaskstr.png": { + "x": 405, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedFrenzyChargeDuration.png": { + "x": 432, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedAttackSpeed.png": { + "x": 459, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Raider/IncreasedMovementSpeed.png": { + "x": 486, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png": { + "x": 513, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png": { + "x": 540, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png": { + "x": 567, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png": { + "x": 594, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png": { + "x": 621, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 648, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/axedmgspeed.png": { + "x": 675, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png": { + "x": 702, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/attackspeedstaff.png": { + "x": 729, + "y": 189, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png": { + "x": 0, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 27, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 54, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png": { + "x": 81, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png": { + "x": 108, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 135, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png": { + "x": 162, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png": { + "x": 189, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png": { + "x": 216, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png": { + "x": 243, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png": { + "x": 270, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png": { + "x": 297, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png": { + "x": 324, + "y": 216, + "w": 27, + "h": 27 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png": { + "x": 351, + "y": 216, + "w": 27, + "h": 27 + } + } + } + ], + "notableInactive": [ + { + "filename": "skills-disabled-0.jpg?84f3046e8740aec7ac09fef49ccb8869", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 12, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 24, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 36, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 48, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 60, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 72, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 84, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 96, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 108, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 120, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 132, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 144, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 156, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 168, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 180, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 192, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 204, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 216, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 228, + "y": 90, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 12, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 24, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 36, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 48, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 60, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 72, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 84, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 96, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 108, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 120, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 132, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 144, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 156, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 168, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 180, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 192, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 204, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 216, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 228, + "y": 102, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 12, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 24, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 36, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 48, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 60, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 72, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 84, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 96, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 108, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 120, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 132, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 144, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 156, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 168, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 180, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 192, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 204, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 216, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 228, + "y": 114, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 12, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 24, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 36, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 48, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 60, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 72, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 84, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 96, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 108, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 120, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 132, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 144, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 156, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 168, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 180, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 192, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 204, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 216, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 228, + "y": 126, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 12, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 24, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 36, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 48, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 60, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 72, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 84, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 96, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 108, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 120, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 132, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 144, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 156, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 168, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 180, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 192, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 204, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 216, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 228, + "y": 138, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 12, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 24, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 36, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 48, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 60, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 72, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 84, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 96, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 108, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 120, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 132, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 144, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 156, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 168, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 180, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 192, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 204, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 216, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 228, + "y": 150, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 12, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 24, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 36, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 48, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 60, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 72, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 84, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 96, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 108, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 120, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 132, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 144, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 156, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 168, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 180, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 192, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 204, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 216, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 228, + "y": 162, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 12, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 24, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 36, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 48, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 60, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 72, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 84, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 96, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 108, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 120, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 132, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 144, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 156, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 168, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 180, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 192, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 204, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 216, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 228, + "y": 174, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 12, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 24, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 36, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 48, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 60, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 72, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 84, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 96, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 108, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 120, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 132, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 144, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 156, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 168, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 180, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 192, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 204, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 216, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 228, + "y": 186, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 12, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 24, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 36, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 48, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 60, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 72, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 84, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 96, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 108, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 120, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 132, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 144, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 156, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 168, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 180, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 192, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 204, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 216, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 228, + "y": 198, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 12, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 24, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 36, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 48, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 60, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 72, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 84, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 96, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 108, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 120, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 132, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 144, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 156, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 168, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 180, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 192, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 204, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 216, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 228, + "y": 210, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 12, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 24, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 36, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 48, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 60, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 72, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 84, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 96, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 108, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 120, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 132, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 144, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 156, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 168, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 180, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 192, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 204, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 216, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 228, + "y": 222, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 12, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 24, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 36, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 48, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 60, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 72, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 84, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 96, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 108, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 120, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 132, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 144, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 156, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 168, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 180, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 192, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 204, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 216, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 228, + "y": 234, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 12, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 24, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 36, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 48, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 60, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 72, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 84, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 96, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 108, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 120, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 132, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 144, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 156, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 168, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 180, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 192, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 204, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 216, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 228, + "y": 246, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 12, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 24, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 36, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 48, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 60, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 72, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 84, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 96, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 108, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 120, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 132, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 144, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 156, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 168, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 180, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 192, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 204, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 216, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 228, + "y": 258, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 12, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 24, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 36, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 48, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 60, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 72, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 84, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 96, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 108, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 120, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 132, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 144, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 156, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 168, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 180, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 192, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 204, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 216, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 228, + "y": 270, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 12, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 24, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 36, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 48, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 60, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 72, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 84, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 96, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 108, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 120, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 132, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 144, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 156, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 168, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 180, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 192, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 204, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 216, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 228, + "y": 282, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 12, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 24, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 36, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 48, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 60, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 72, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 84, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 96, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 108, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 120, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 132, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 144, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 156, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 168, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 180, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 192, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 204, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 216, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 228, + "y": 294, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 12, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 24, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 36, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 48, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 60, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 72, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 84, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 96, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 108, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 120, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 132, + "y": 306, + "w": 12, + "h": 12 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 144, + "y": 306, + "w": 12, + "h": 12 + } + } + }, + { + "filename": "skills-disabled-1.jpg?0316feae25c1fe7944576373a5729df2", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 21, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 42, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 63, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 84, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 105, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 126, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 147, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 168, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 189, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 210, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 231, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 252, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 273, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 294, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 315, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 336, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 357, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 378, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 399, + "y": 135, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 21, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 42, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 63, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 84, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 105, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 126, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 147, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 168, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 189, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 210, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 231, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 252, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 273, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 294, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 315, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 336, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 357, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 378, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 399, + "y": 156, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 21, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 42, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 63, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 84, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 105, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 126, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 147, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 168, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 189, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 210, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 231, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 252, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 273, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 294, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 315, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 336, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 357, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 378, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 399, + "y": 177, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 21, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 42, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 63, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 84, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 105, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 126, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 147, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 168, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 189, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 210, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 231, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 252, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 273, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 294, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 315, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 336, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 357, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 378, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 399, + "y": 198, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 21, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 42, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 63, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 84, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 105, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 126, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 147, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 168, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 189, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 210, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 231, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 252, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 273, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 294, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 315, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 336, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 357, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 378, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 399, + "y": 219, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 21, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 42, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 63, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 84, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 105, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 126, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 147, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 168, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 189, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 210, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 231, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 252, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 273, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 294, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 315, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 336, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 357, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 378, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 399, + "y": 240, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 21, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 42, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 63, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 84, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 105, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 126, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 147, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 168, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 189, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 210, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 231, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 252, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 273, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 294, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 315, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 336, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 357, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 378, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 399, + "y": 261, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 21, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 42, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 63, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 84, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 105, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 126, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 147, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 168, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 189, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 210, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 231, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 252, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 273, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 294, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 315, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 336, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 357, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 378, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 399, + "y": 282, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 21, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 42, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 63, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 84, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 105, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 126, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 147, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 168, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 189, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 210, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 231, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 252, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 273, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 294, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 315, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 336, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 357, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 378, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 399, + "y": 303, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 21, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 42, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 63, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 84, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 105, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 126, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 147, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 168, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 189, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 210, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 231, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 252, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 273, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 294, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 315, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 336, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 357, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 378, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 399, + "y": 324, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 21, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 42, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 63, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 84, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 105, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 126, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 147, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 168, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 189, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 210, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 231, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 252, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 273, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 294, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 315, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 336, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 357, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 378, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 399, + "y": 345, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 21, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 42, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 63, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 84, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 105, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 126, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 147, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 168, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 189, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 210, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 231, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 252, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 273, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 294, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 315, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 336, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 357, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 378, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 399, + "y": 366, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 21, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 42, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 63, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 84, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 105, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 126, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 147, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 168, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 189, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 210, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 231, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 252, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 273, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 294, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 315, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 336, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 357, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 378, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 399, + "y": 387, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 21, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 42, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 63, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 84, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 105, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 126, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 147, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 168, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 189, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 210, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 231, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 252, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 273, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 294, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 315, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 336, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 357, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 378, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 399, + "y": 408, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 21, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 42, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 63, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 84, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 105, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 126, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 147, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 168, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 189, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 210, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 231, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 252, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 273, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 294, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 315, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 336, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 357, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 378, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 399, + "y": 429, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 21, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 42, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 63, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 84, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 105, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 126, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 147, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 168, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 189, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 210, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 231, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 252, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 273, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 294, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 315, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 336, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 357, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 378, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 399, + "y": 450, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 21, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 42, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 63, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 84, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 105, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 126, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 147, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 168, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 189, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 210, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 231, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 252, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 273, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 294, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 315, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 336, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 357, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 378, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 399, + "y": 471, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 21, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 42, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 63, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 84, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 105, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 126, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 147, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 168, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 189, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 210, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 231, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 252, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 273, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 294, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 315, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 336, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 357, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 378, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 399, + "y": 492, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 21, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 42, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 63, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 84, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 105, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 126, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 147, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 168, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 189, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 210, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 231, + "y": 513, + "w": 21, + "h": 21 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 252, + "y": 513, + "w": 21, + "h": 21 + } + } + }, + { + "filename": "skills-disabled-2.jpg?cb8306f669d39bedb0daebbbcb16c087", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 29, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 58, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 87, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 116, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 145, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 174, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 203, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 232, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 261, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 290, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 319, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 348, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 377, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 406, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 435, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 464, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 493, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 522, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 551, + "y": 189, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 29, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 58, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 87, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 116, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 145, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 174, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 203, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 232, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 261, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 290, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 319, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 348, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 377, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 406, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 435, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 464, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 493, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 522, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 551, + "y": 218, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 29, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 58, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 87, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 116, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 145, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 174, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 203, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 232, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 261, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 290, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 319, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 348, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 377, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 406, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 435, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 464, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 493, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 522, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 551, + "y": 247, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 29, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 58, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 87, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 116, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 145, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 174, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 203, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 232, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 261, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 290, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 319, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 348, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 377, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 406, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 435, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 464, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 493, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 522, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 551, + "y": 276, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 29, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 58, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 87, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 116, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 145, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 174, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 203, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 232, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 261, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 290, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 319, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 348, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 377, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 406, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 435, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 464, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 493, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 522, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 551, + "y": 305, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 29, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 58, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 87, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 116, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 145, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 174, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 203, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 232, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 261, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 290, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 319, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 348, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 377, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 406, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 435, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 464, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 493, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 522, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 551, + "y": 334, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 29, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 58, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 87, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 116, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 145, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 174, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 203, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 232, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 261, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 290, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 319, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 348, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 377, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 406, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 435, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 464, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 493, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 522, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 551, + "y": 363, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 29, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 58, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 87, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 116, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 145, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 174, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 203, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 232, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 261, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 290, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 319, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 348, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 377, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 406, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 435, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 464, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 493, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 522, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 551, + "y": 392, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 29, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 58, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 87, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 116, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 145, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 174, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 203, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 232, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 261, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 290, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 319, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 348, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 377, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 406, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 435, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 464, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 493, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 522, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 551, + "y": 421, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 29, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 58, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 87, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 116, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 145, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 174, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 203, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 232, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 261, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 290, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 319, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 348, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 377, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 406, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 435, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 464, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 493, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 522, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 551, + "y": 450, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 29, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 58, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 87, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 116, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 145, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 174, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 203, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 232, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 261, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 290, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 319, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 348, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 377, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 406, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 435, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 464, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 493, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 522, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 551, + "y": 479, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 29, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 58, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 87, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 116, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 145, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 174, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 203, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 232, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 261, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 290, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 319, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 348, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 377, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 406, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 435, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 464, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 493, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 522, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 551, + "y": 508, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 29, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 58, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 87, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 116, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 145, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 174, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 203, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 232, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 261, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 290, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 319, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 348, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 377, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 406, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 435, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 464, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 493, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 522, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 551, + "y": 537, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 29, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 58, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 87, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 116, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 145, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 174, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 203, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 232, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 261, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 290, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 319, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 348, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 377, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 406, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 435, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 464, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 493, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 522, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 551, + "y": 566, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 29, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 58, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 87, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 116, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 145, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 174, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 203, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 232, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 261, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 290, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 319, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 348, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 377, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 406, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 435, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 464, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 493, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 522, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 551, + "y": 595, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 29, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 58, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 87, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 116, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 145, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 174, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 203, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 232, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 261, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 290, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 319, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 348, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 377, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 406, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 435, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 464, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 493, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 522, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 551, + "y": 624, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 29, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 58, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 87, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 116, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 145, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 174, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 203, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 232, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 261, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 290, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 319, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 348, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 377, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 406, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 435, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 464, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 493, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 522, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 551, + "y": 653, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 29, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 58, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 87, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 116, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 145, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 174, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 203, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 232, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 261, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 290, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 319, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 348, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 377, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 406, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 435, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 464, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 493, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 522, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 551, + "y": 682, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 29, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 58, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 87, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 116, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 145, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 174, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 203, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 232, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 261, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 290, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 319, + "y": 711, + "w": 29, + "h": 29 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 348, + "y": 711, + "w": 29, + "h": 29 + } + } + }, + { + "filename": "skills-disabled-3.jpg?fd8eedd7863f2235842b4126664cb4ac", + "coords": { + "Art/2DArt/SkillIcons/passives/hammerblows.png": { + "x": 0, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/serpentstance.png": { + "x": 38, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/oxblood.png": { + "x": 76, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StunMastery.png": { + "x": 114, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/frostborn.png": { + "x": 152, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/stormborn.png": { + "x": 190, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flameborn.png": { + "x": 228, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SpiritualAid.png": { + "x": 266, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/RighteousArmy.png": { + "x": 304, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Redemption.png": { + "x": 342, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/butchery.png": { + "x": 380, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/strongarm.png": { + "x": 418, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/borntofight.png": { + "x": 456, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LustforCarnage.png": { + "x": 494, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/iceheart.png": { + "x": 532, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofRime2.png": { + "x": 570, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/whirlingstaff.png": { + "x": 608, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/stunstaff.png": { + "x": 646, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StaffCrit.png": { + "x": 684, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Sentinel.png": { + "x": 722, + "y": 243, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/eagletalons.png": { + "x": 0, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SpiritualCommand.png": { + "x": 38, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MartialExperience.png": { + "x": 76, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/preciseinterception.png": { + "x": 114, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartofthepanther.png": { + "x": 152, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/GrowthandDecay.png": { + "x": 190, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/amplify.png": { + "x": 228, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/armourmastery.png": { + "x": 266, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/crystalskin.png": { + "x": 304, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png": { + "x": 342, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png": { + "x": 380, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png": { + "x": 418, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/catalyse.png": { + "x": 456, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/elementalist.png": { + "x": 494, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LightOfDivinity.png": { + "x": 532, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png": { + "x": 570, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png": { + "x": 608, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png": { + "x": 646, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png": { + "x": 684, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresence.png": { + "x": 722, + "y": 281, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png": { + "x": 0, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/minddrinker.png": { + "x": 38, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lifeleech.png": { + "x": 76, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ByTheBlade.png": { + "x": 114, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/nimbleness.png": { + "x": 152, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/barricade.png": { + "x": 190, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/life1.png": { + "x": 228, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Blood2.png": { + "x": 266, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HarnessTheVoid.png": { + "x": 304, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png": { + "x": 342, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/CorruptedRecovery.png": { + "x": 380, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/SpiritSurge.png": { + "x": 418, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png": { + "x": 456, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png": { + "x": 494, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trickster/TricksterEssenceSurge.png": { + "x": 532, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BattleRouse.png": { + "x": 570, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/savant.png": { + "x": 608, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lightningint.png": { + "x": 646, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofLightening2.png": { + "x": 684, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trap2.png": { + "x": 722, + "y": 319, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lavalash.png": { + "x": 0, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png": { + "x": 38, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png": { + "x": 76, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png": { + "x": 114, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png": { + "x": 152, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png": { + "x": 190, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png": { + "x": 228, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png": { + "x": 266, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/titanicmight.png": { + "x": 304, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SkitteringRunes.png": { + "x": 342, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/manaconduit.png": { + "x": 380, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png": { + "x": 418, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ironwoodtotem.png": { + "x": 456, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Dynamo.png": { + "x": 494, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png": { + "x": 532, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png": { + "x": 570, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Shaper.png": { + "x": 608, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/eagleeye.png": { + "x": 646, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/galvanichammer.png": { + "x": 684, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blademaster.png": { + "x": 722, + "y": 357, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/razorsedge.png": { + "x": 0, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/wreckingball.png": { + "x": 38, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/reaver.png": { + "x": 76, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadlyDilettante.png": { + "x": 114, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/gravepact.png": { + "x": 152, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deathattunement.png": { + "x": 190, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png": { + "x": 228, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcane focus.png": { + "x": 266, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargestr.png": { + "x": 304, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/EssenceSurge.png": { + "x": 342, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/throatseeker.png": { + "x": 380, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fellingtheweak.png": { + "x": 418, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/hatchetmaster.png": { + "x": 456, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/bladebarrier.png": { + "x": 494, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Str.png": { + "x": 532, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/TrueStriker.png": { + "x": 570, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/evasion.png": { + "x": 608, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/swagger.png": { + "x": 646, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FastAndDeadly.png": { + "x": 684, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png": { + "x": 722, + "y": 395, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png": { + "x": 0, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png": { + "x": 38, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/EndlessMunitions.png": { + "x": 76, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/SharpAndVenomous.png": { + "x": 114, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DeadEye/PowerfulPrecision.png": { + "x": 152, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/skullcracking.png": { + "x": 190, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/macedmg.png": { + "x": 228, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mastersapper.png": { + "x": 266, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newenergyshield.png": { + "x": 304, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Battlecry.png": { + "x": 342, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Retaliation.png": { + "x": 380, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png": { + "x": 418, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/masterfletcher.png": { + "x": 456, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/starwalker.png": { + "x": 494, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CelestialPunishment.png": { + "x": 532, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/graveexpectations.png": { + "x": 570, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/swashbuckler.png": { + "x": 608, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Entropy.png": { + "x": 646, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png": { + "x": 684, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/StudiousCombatant.png": { + "x": 722, + "y": 433, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/scissorblades.png": { + "x": 0, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png": { + "x": 38, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png": { + "x": 76, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png": { + "x": 114, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADOutmatchOutlast.png": { + "x": 152, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png": { + "x": 190, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png": { + "x": 228, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/perfectaim.png": { + "x": 266, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartofthegladiator.png": { + "x": 304, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/precision.png": { + "x": 342, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/wandslingersprowess.png": { + "x": 380, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/executioner.png": { + "x": 418, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/accuracydex.png": { + "x": 456, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ChaosDamage2.png": { + "x": 494, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png": { + "x": 532, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png": { + "x": 570, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/PainReaver.png": { + "x": 608, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png": { + "x": 646, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png": { + "x": 684, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png": { + "x": 722, + "y": 471, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png": { + "x": 0, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemrange.png": { + "x": 38, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cleverconstruction.png": { + "x": 76, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png": { + "x": 114, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/highexplosives.png": { + "x": 152, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemicmastery.png": { + "x": 190, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/staticshield.png": { + "x": 228, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fending.png": { + "x": 266, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png": { + "x": 304, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcaneefficiency.png": { + "x": 342, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png": { + "x": 380, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WordsOfGlory.png": { + "x": 418, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/golemsblood.png": { + "x": 456, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BleedPoison.png": { + "x": 494, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Revelry.png": { + "x": 532, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/elderpower.png": { + "x": 570, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png": { + "x": 608, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/leadership.png": { + "x": 646, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/berserking.png": { + "x": 684, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/sovereignty.png": { + "x": 722, + "y": 509, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CombatStamina.png": { + "x": 0, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/firedamage.png": { + "x": 38, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arenalord.png": { + "x": 76, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png": { + "x": 114, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png": { + "x": 152, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png": { + "x": 190, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png": { + "x": 228, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png": { + "x": 266, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png": { + "x": 304, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargedex.png": { + "x": 342, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newevadepercentage.png": { + "x": 380, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hunter.png": { + "x": 418, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/Int.png": { + "x": 456, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png": { + "x": 494, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png": { + "x": 532, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png": { + "x": 570, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png": { + "x": 608, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png": { + "x": 646, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png": { + "x": 684, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png": { + "x": 722, + "y": 547, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Unwavering.png": { + "x": 0, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcaneradience.png": { + "x": 38, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PierceNoteable.png": { + "x": 76, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/volitilemines.png": { + "x": 114, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flaying.png": { + "x": 152, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/adderstouch.png": { + "x": 190, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cruelblade.png": { + "x": 228, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/FatalBlade.png": { + "x": 266, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/grace.png": { + "x": 304, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png": { + "x": 342, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/dualwieldblock.png": { + "x": 380, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ambidexterity.png": { + "x": 418, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/hellfire.png": { + "x": 456, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BreathofFlames2.png": { + "x": 494, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/cleavage.png": { + "x": 532, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ElementalFocus.png": { + "x": 570, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newincreasedcritical.png": { + "x": 608, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/saboteur.png": { + "x": 646, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png": { + "x": 684, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Righteous Decree.png": { + "x": 722, + "y": 585, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shieldenergyshield.png": { + "x": 0, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trapsradius.png": { + "x": 38, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/DruidicRite.png": { + "x": 76, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/quickstep.png": { + "x": 114, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Poison.png": { + "x": 152, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shieldwall.png": { + "x": 190, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png": { + "x": 228, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png": { + "x": 266, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png": { + "x": 304, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png": { + "x": 342, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Headman.png": { + "x": 380, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Impact.png": { + "x": 418, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png": { + "x": 456, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/Overwhelm.png": { + "x": 494, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png": { + "x": 532, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png": { + "x": 570, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/breathofrime.png": { + "x": 608, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/FortifyNotable.png": { + "x": 646, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BloodSiphon.png": { + "x": 684, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/soulsyphon.png": { + "x": 722, + "y": 623, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png": { + "x": 0, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deepthoughts.png": { + "x": 38, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/thickskin.png": { + "x": 76, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png": { + "x": 114, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png": { + "x": 152, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png": { + "x": 190, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png": { + "x": 228, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png": { + "x": 266, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png": { + "x": 304, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png": { + "x": 342, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Warrior.png": { + "x": 380, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Constitution.png": { + "x": 418, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newtitanicmight.png": { + "x": 456, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartseeker.png": { + "x": 494, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/shamsnisticfury.png": { + "x": 532, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/SavantPath.png": { + "x": 570, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/icebite.png": { + "x": 608, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Sniper2.png": { + "x": 646, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MasterofForce.png": { + "x": 684, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fencing.png": { + "x": 722, + "y": 661, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arsonist.png": { + "x": 0, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png": { + "x": 38, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Meleerange.png": { + "x": 76, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png": { + "x": 114, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png": { + "x": 152, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png": { + "x": 190, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png": { + "x": 228, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png": { + "x": 266, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png": { + "x": 304, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png": { + "x": 342, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/clawsofthepride.png": { + "x": 380, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/furybolts.png": { + "x": 418, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/trollblood.png": { + "x": 456, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Storm Weaver.png": { + "x": 494, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png": { + "x": 532, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Conqueror.png": { + "x": 570, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png": { + "x": 608, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png": { + "x": 646, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png": { + "x": 684, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png": { + "x": 722, + "y": 699, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/influence.png": { + "x": 0, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/doomcast.png": { + "x": 38, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Dreamer.png": { + "x": 76, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png": { + "x": 114, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/sparkingattacks.png": { + "x": 152, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/masterywand.png": { + "x": 190, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png": { + "x": 228, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/fussilade.png": { + "x": 266, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/TempestBlast.png": { + "x": 304, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/QuickRecovery.png": { + "x": 342, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/nightstalker.png": { + "x": 380, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/chargeint.png": { + "x": 418, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/lordofthedead.png": { + "x": 456, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/increased armor.png": { + "x": 494, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png": { + "x": 532, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterFletcher.png": { + "x": 570, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png": { + "x": 608, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png": { + "x": 646, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png": { + "x": 684, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png": { + "x": 722, + "y": 737, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Survivalist.png": { + "x": 0, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/kingofthehill.png": { + "x": 38, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/pyromaniac.png": { + "x": 76, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Champion.png": { + "x": 114, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/FleshBinder.png": { + "x": 152, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/SoulWeaver.png": { + "x": 190, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/BeaconOfCorruption.png": { + "x": 228, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png": { + "x": 266, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/VileOfferings.png": { + "x": 304, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png": { + "x": 342, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Necromancer/PupetMaster4.png": { + "x": 380, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/bodysoul.png": { + "x": 418, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MentalRapidity.png": { + "x": 456, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/daggerpenetration.png": { + "x": 494, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/legendaryswordsman.png": { + "x": 532, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png": { + "x": 570, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png": { + "x": 608, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png": { + "x": 646, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png": { + "x": 684, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png": { + "x": 722, + "y": 775, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png": { + "x": 0, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/twinslice.png": { + "x": 38, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png": { + "x": 76, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/soulraker.png": { + "x": 114, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deadlydraw.png": { + "x": 152, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heavydraw.png": { + "x": 190, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MethodMadess.png": { + "x": 228, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/diamondskin.png": { + "x": 266, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png": { + "x": 304, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Unrelenting.png": { + "x": 342, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/graveintentions.png": { + "x": 380, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/heartpierce.png": { + "x": 418, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HeartoftheOak.png": { + "x": 456, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/animalspirit.png": { + "x": 494, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Trap.png": { + "x": 532, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Annihilation.png": { + "x": 570, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/authority.png": { + "x": 608, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png": { + "x": 646, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/foresight.png": { + "x": 684, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newnewattackspeed.png": { + "x": 722, + "y": 813, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/RapidAssault.png": { + "x": 0, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfOnslaught.png": { + "x": 38, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfFrenzy.png": { + "x": 76, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/WayOfThePoacher.png": { + "x": 114, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/AvatarOfPhasing.png": { + "x": 152, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Raider/QuartzInfusion.png": { + "x": 190, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png": { + "x": 228, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/totemiczeal.png": { + "x": 266, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mortalconviction.png": { + "x": 304, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/flaskint.png": { + "x": 342, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png": { + "x": 380, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/newcolddamage.png": { + "x": 418, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/arcanepotency.png": { + "x": 456, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png": { + "x": 494, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/MaliciousInspiration.png": { + "x": 532, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElementalEnlightenment.png": { + "x": 570, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png": { + "x": 608, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png": { + "x": 646, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png": { + "x": 684, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png": { + "x": 722, + "y": 851, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png": { + "x": 0, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/gemini.png": { + "x": 38, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Corruption.png": { + "x": 76, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png": { + "x": 114, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/WritteninBlood.png": { + "x": 152, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/potencyofwill.png": { + "x": 190, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/castavoidinterruption.png": { + "x": 228, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HeartandSoul.png": { + "x": 266, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/CommandofSteel.png": { + "x": 304, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deadlyprecision.png": { + "x": 342, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/melding.png": { + "x": 380, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blademistress.png": { + "x": 418, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png": { + "x": 456, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png": { + "x": 494, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/BluntInstrument.png": { + "x": 532, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/revengeofthehunted.png": { + "x": 570, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Harrier.png": { + "x": 608, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/deepwisdom.png": { + "x": 646, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ElementalDominion2.png": { + "x": 684, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/MineTrap.png": { + "x": 722, + "y": 889, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/innerforce.png": { + "x": 0, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Inspiration.png": { + "x": 38, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Coordination.png": { + "x": 76, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/finesse.png": { + "x": 114, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/mentalacuity.png": { + "x": 152, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/blastradius.png": { + "x": 190, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png": { + "x": 228, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ForceOfNature.png": { + "x": 266, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png": { + "x": 304, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/minionblockchance.png": { + "x": 342, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/Retribution.png": { + "x": 380, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/HiredKiller2.png": { + "x": 418, + "y": 927, + "w": 38, + "h": 38 + }, + "Art/2DArt/SkillIcons/passives/ThrillKiller.png": { + "x": 456, + "y": 927, + "w": 38, + "h": 38 + } + } + } + ], + "keystoneInactive": [ + { + "filename": "skills-disabled-0.jpg?84f3046e8740aec7ac09fef49ccb8869", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 17, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 34, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 51, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 68, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 85, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 102, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 119, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 136, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 153, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 170, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 187, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 204, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 221, + "y": 318, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 17, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 34, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 51, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 68, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 85, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 102, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 119, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 136, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 153, + "y": 336, + "w": 17, + "h": 18 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 170, + "y": 336, + "w": 17, + "h": 18 + } + } + }, + { + "filename": "skills-disabled-1.jpg?0316feae25c1fe7944576373a5729df2", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 29, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 58, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 87, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 116, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 145, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 174, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 203, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 232, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 261, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 290, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 319, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 348, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 377, + "y": 534, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 29, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 58, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 87, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 116, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 145, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 174, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 203, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 232, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 261, + "y": 564, + "w": 29, + "h": 30 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 290, + "y": 564, + "w": 29, + "h": 30 + } + } + }, + { + "filename": "skills-disabled-2.jpg?cb8306f669d39bedb0daebbbcb16c087", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 41, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 82, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 123, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 164, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 205, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 246, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 287, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 328, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 369, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 410, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 451, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 492, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 533, + "y": 740, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 41, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 82, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 123, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 164, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 205, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 246, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 287, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 328, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 369, + "y": 782, + "w": 41, + "h": 42 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 410, + "y": 782, + "w": 41, + "h": 42 + } + } + }, + { + "filename": "skills-disabled-3.jpg?fd8eedd7863f2235842b4126664cb4ac", + "coords": { + "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png": { + "x": 0, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png": { + "x": 53, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/totemmax.png": { + "x": 106, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/heroicspirit.png": { + "x": 159, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png": { + "x": 212, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png": { + "x": 265, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png": { + "x": 318, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png": { + "x": 371, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png": { + "x": 424, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/CrimsonDance.png": { + "x": 477, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/CritAilments.png": { + "x": 530, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png": { + "x": 583, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/ghostreaver.png": { + "x": 636, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png": { + "x": 689, + "y": 965, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png": { + "x": 0, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png": { + "x": 53, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png": { + "x": 106, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystonePhaseAcrobatics.png": { + "x": 159, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png": { + "x": 212, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneConduit.png": { + "x": 265, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png": { + "x": 318, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png": { + "x": 371, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png": { + "x": 424, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png": { + "x": 477, + "y": 1019, + "w": 53, + "h": 54 + }, + "Art/2DArt/SkillIcons/passives/vaalpact.png": { + "x": 530, + "y": 1019, + "w": 53, + "h": 54 + } + } + } + ], + "mastery": [ + { + "filename": "groups-0.png?2aa63d1b67fede3a136c38abbce2cbd3", + "coords": { + "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png": { + "x": 0, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupStun.png": { + "x": 32, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MinionMastery.png": { + "x": 64, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png": { + "x": 96, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png": { + "x": 128, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryTotem.png": { + "x": 160, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png": { + "x": 192, + "y": 0, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryChaos.png": { + "x": 0, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png": { + "x": 32, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSwordAndAxe.png": { + "x": 64, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png": { + "x": 96, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png": { + "x": 128, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png": { + "x": 160, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupScepter.png": { + "x": 192, + "y": 32, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png": { + "x": 0, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryClawDaggerSword.png": { + "x": 32, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png": { + "x": 64, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupColdFire.png": { + "x": 96, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png": { + "x": 128, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png": { + "x": 160, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png": { + "x": 192, + "y": 64, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png": { + "x": 0, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png": { + "x": 32, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryTraps.png": { + "x": 64, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png": { + "x": 96, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/ElementalMastery2.png": { + "x": 128, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png": { + "x": 160, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png": { + "x": 192, + "y": 96, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryPhysicalAndChaos.png": { + "x": 0, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/WarcryMastery.png": { + "x": 32, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/BloodMastery.png": { + "x": 64, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png": { + "x": 96, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryAuras.png": { + "x": 128, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png": { + "x": 160, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png": { + "x": 192, + "y": 128, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryCurse.png": { + "x": 0, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/ColdLightningMastery.png": { + "x": 32, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png": { + "x": 64, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png": { + "x": 96, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryFlasks.png": { + "x": 128, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png": { + "x": 160, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png": { + "x": 192, + "y": 160, + "w": 32, + "h": 32 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMaceAndStaff.png": { + "x": 0, + "y": 192, + "w": 32, + "h": 32 + } + } + }, + { + "filename": "groups-1.png?645379acf0e98223810e43d4019f5f05", + "coords": { + "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png": { + "x": 0, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupStun.png": { + "x": 55, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MinionMastery.png": { + "x": 110, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png": { + "x": 165, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png": { + "x": 220, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryTotem.png": { + "x": 275, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png": { + "x": 330, + "y": 0, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryChaos.png": { + "x": 0, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png": { + "x": 55, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSwordAndAxe.png": { + "x": 110, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png": { + "x": 165, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png": { + "x": 220, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png": { + "x": 275, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupScepter.png": { + "x": 330, + "y": 55, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png": { + "x": 0, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryClawDaggerSword.png": { + "x": 55, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png": { + "x": 110, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupColdFire.png": { + "x": 165, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png": { + "x": 220, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png": { + "x": 275, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png": { + "x": 330, + "y": 110, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png": { + "x": 0, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png": { + "x": 55, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryTraps.png": { + "x": 110, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png": { + "x": 165, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/ElementalMastery2.png": { + "x": 220, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png": { + "x": 275, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png": { + "x": 330, + "y": 165, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryPhysicalAndChaos.png": { + "x": 0, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/WarcryMastery.png": { + "x": 55, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/BloodMastery.png": { + "x": 110, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png": { + "x": 165, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryAuras.png": { + "x": 220, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png": { + "x": 275, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png": { + "x": 330, + "y": 220, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryCurse.png": { + "x": 0, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/ColdLightningMastery.png": { + "x": 55, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png": { + "x": 110, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png": { + "x": 165, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryFlasks.png": { + "x": 220, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png": { + "x": 275, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png": { + "x": 330, + "y": 275, + "w": 55, + "h": 55 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMaceAndStaff.png": { + "x": 0, + "y": 330, + "w": 55, + "h": 55 + } + } + }, + { + "filename": "groups-2.png?eb914d8396494cf5e52a7ae910beb5e3", + "coords": { + "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png": { + "x": 0, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupStun.png": { + "x": 77, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MinionMastery.png": { + "x": 154, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png": { + "x": 231, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png": { + "x": 308, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryTotem.png": { + "x": 385, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png": { + "x": 462, + "y": 0, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryChaos.png": { + "x": 0, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png": { + "x": 77, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSwordAndAxe.png": { + "x": 154, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png": { + "x": 231, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png": { + "x": 308, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png": { + "x": 385, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupScepter.png": { + "x": 462, + "y": 77, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png": { + "x": 0, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryClawDaggerSword.png": { + "x": 77, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png": { + "x": 154, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupColdFire.png": { + "x": 231, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png": { + "x": 308, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png": { + "x": 385, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png": { + "x": 462, + "y": 154, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png": { + "x": 0, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png": { + "x": 77, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryTraps.png": { + "x": 154, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png": { + "x": 231, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/ElementalMastery2.png": { + "x": 308, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png": { + "x": 385, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png": { + "x": 462, + "y": 231, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryPhysicalAndChaos.png": { + "x": 0, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/WarcryMastery.png": { + "x": 77, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/BloodMastery.png": { + "x": 154, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png": { + "x": 231, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryAuras.png": { + "x": 308, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png": { + "x": 385, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png": { + "x": 462, + "y": 308, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryCurse.png": { + "x": 0, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/ColdLightningMastery.png": { + "x": 77, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png": { + "x": 154, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png": { + "x": 231, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryFlasks.png": { + "x": 308, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png": { + "x": 385, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png": { + "x": 462, + "y": 385, + "w": 77, + "h": 77 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMaceAndStaff.png": { + "x": 0, + "y": 462, + "w": 77, + "h": 77 + } + } + }, + { + "filename": "groups-3.png?aeeead61a2a32424059ebebb7fa29409", + "coords": { + "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png": { + "x": 0, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupStun.png": { + "x": 99, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MinionMastery.png": { + "x": 198, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png": { + "x": 297, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png": { + "x": 396, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryTotem.png": { + "x": 495, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png": { + "x": 594, + "y": 0, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryChaos.png": { + "x": 0, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png": { + "x": 99, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSwordAndAxe.png": { + "x": 198, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png": { + "x": 297, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png": { + "x": 396, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png": { + "x": 495, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupScepter.png": { + "x": 594, + "y": 99, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png": { + "x": 0, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryClawDaggerSword.png": { + "x": 99, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png": { + "x": 198, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupColdFire.png": { + "x": 297, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png": { + "x": 396, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png": { + "x": 495, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png": { + "x": 594, + "y": 198, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png": { + "x": 0, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png": { + "x": 99, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryTraps.png": { + "x": 198, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png": { + "x": 297, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/ElementalMastery2.png": { + "x": 396, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupOneHand.png": { + "x": 495, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png": { + "x": 594, + "y": 297, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryPhysicalAndChaos.png": { + "x": 0, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/WarcryMastery.png": { + "x": 99, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/BloodMastery.png": { + "x": 198, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png": { + "x": 297, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryAuras.png": { + "x": 396, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png": { + "x": 495, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png": { + "x": 594, + "y": 396, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryCurse.png": { + "x": 0, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/ColdLightningMastery.png": { + "x": 99, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png": { + "x": 198, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png": { + "x": 297, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryFlasks.png": { + "x": 396, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png": { + "x": 495, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryLifeAndEnergyShield.png": { + "x": 594, + "y": 495, + "w": 99, + "h": 99 + }, + "Art/2DArt/SkillIcons/passives/MasteryGroupMaceAndStaff.png": { + "x": 0, + "y": 594, + "w": 99, + "h": 99 + } + } + } + ] + }, + "imageZoomLevels": [ + 0.1246, + 0.2109, + 0.2972, + 0.3835 + ] +} \ No newline at end of file diff --git a/testing_tools/real_apis/large_data_set.py b/testing_tools/real_apis/large_data_set.py new file mode 100644 index 0000000..5179053 --- /dev/null +++ b/testing_tools/real_apis/large_data_set.py @@ -0,0 +1,41 @@ +import json +from datetime import datetime +from pathlib import Path + +from json_to_models.generator import MetadataGenerator +from json_to_models.models import compose_models +from json_to_models.models.attr import AttrsModelCodeGenerator +from json_to_models.models.base import generate_code +from json_to_models.registry import ModelRegistry + + +def load_data() -> dict: + with (Path(__file__) / ".." / ".." / "large_data_set.json").open() as f: + data = json.load(f) + return data + + +def main(): + data = load_data() + + start_t = datetime.now() + gen = MetadataGenerator( + dict_keys_regex=[r"^\d+(?:\.\d+)?$", r"^(?:[\w ]+/)+[\w ]+\.[\w ]+$"], + dict_keys_fields=["assets"] + ) + reg = ModelRegistry() + fields = gen.generate(data) + reg.process_meta_data(fields, model_name="SkillTree") + reg.merge_models(generator=gen) + reg.generate_names() + + structure = compose_models(reg.models_map) + code = generate_code(structure, AttrsModelCodeGenerator, class_generator_kwargs={"no_meta": True}) + print(code) + # with open("tmp.py", "w") as f: + # f.write(code) + print(f"{(datetime.now() - start_t).total_seconds():.4f} seconds") + + +if __name__ == '__main__': + main()